 * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
          background-color: #fafafa;
        font-family: Arial, sans-serif;
      }

     

      .slider-container {
        position: relative;
        height: 100%;
        overflow: hidden;
      }

      .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }

      .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
      }

      .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgb(0 0 0 / 16%);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: white;
        padding: 20px;
      }

      .overlay h1 {
        font-size: 36px;
        margin-bottom: 20px;
      }

      .overlay p {
        font-size: 18px;
        margin-bottom: 20px;
        max-width: 600px;
      }

      .btn {
        background-color: #00a8ff;
        color: white;
        padding: 10px 20px;
        text-decoration: none;
        font-weight: bold;
        border-radius: 5px;
      }

      .slick-dots {
        bottom: 10px;
      }

      .slick-slide {
        display: none;
      }

      .slick-active {
        display: block;
      }

      .presentation {
        padding: 60px 20px;
        display: flex;
        justify-content: space-between;
        background-color: #f9f9f9;
      }

.presentation .box {
        border-radius: 25px;
    color:#ffff;
    margin-left: 50px;
    bottom: 160px;
    position: relative;
    display: block;
    width: 100%;
    padding: 20px;
    background-color: #b7a800;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 350px;
}
.box1 {
    margin-left: 50px;
    position: relative;
    display: block;
    bottom: 50px;
}
.container1 {
    position: relative;
    display: block;
    bottom: 60px;
    margin: 20px 0;
    font-family: Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.card1 {
  margin: 20px 0;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.card1:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.card1 h3 {
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 1.2em;
  color: #b7a80c;
}

.card1 h3 i {
  margin-right: 10px;
  color: #00a8ff;
}

.card1 .arrow1 {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.card1.active .arrow1 {
  transform: rotate(90deg);
}

.card1 .content1 {
  display: none;
  margin-top: 10px;
}

.card1.active .content1 {
  display: block;
}

.card1 img {
  max-width: 100%;
  height: auto;
  margin-top: 10px;
  border-radius: 5px;
}

.info-subtitle, .studies-subtitle, .transformation-subtitle, .development-subtitle, .distribution-subtitle, .training-subtitle {
  font-style: italic;
  color: #555;
  display: block;
  margin-top: 5px;
}

.original-content, .additional-content {
  margin-bottom: 20px;
}

.example-box, .stats-box, .video-box, .testimonial-box {
  background-color: #f9f9f9;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 15px;
}

.example-box h4, .stats-box h4, .video-box h4, .testimonial-box h4 {
  color: #00a8ff;
  margin-bottom: 10px;
}

.testimonial-box blockquote {
  font-style: italic;
  border-left: 3px solid #00a8ff;
  padding-left: 10px;
  margin: 0;
}

.subtitle {
  font-weight: bold;
  margin-top: 15px;
  color: #333;
}
.video-container {
    margin: auto;
    display: block;
    position: relative;
    max-width: 60vw;
    width: 1000px;
    aspect-ratio: 16 / 9;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    border-radius: 20px;

    overflow: hidden;
}

        .video-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(
                from 0deg,
                transparent 0deg 340deg,
                #00ffff 360deg
            );
            animation: rotate 10s linear infinite;
        }

        .video-container::after {
            content: '';
            position: absolute;
            inset: 3px;
            background: #000033;
            border-radius: 17px;
            z-index: 1;
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        .video-presentation {
            position: relative;
            z-index: 2;
            width: 100%;
            height: 100%;
            overflow: hidden;
            border-radius: 15px;
        }

        .youtube-video {
            width: 100%;
            height: 100%;
            border: none;
        }

        @media (max-width: 768px) {
            .video-container {
                width: 90vw;
            }
        }
/* Responsive design */
@media (max-width: 768px) {
  .card1 h3 {
    font-size: 1em;
  }
  
  .example-box, .stats-box, .video-box, .testimonial-box {
    padding: 10px;
  }
}

/* Animation for content appearance */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.card1.active .content1 {
  animation: fadeIn 0.5s ease-in-out;
}