
    /* header */
     * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
        background: linear-gradient(135deg, #d6dcd6 0%, #e8f0e8 100%);
          /* background: linear-gradient(120deg, rgb(233, 234, 235), #cdcfd2e9); */
      color: #333;
      line-height: 1.6;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    

   header {
  background:linear-gradient(120deg, rgba(7, 76, 56, 0.899), #6f958ce9);
  color: white;
  padding: 10px 0 10px;
  text-align: center;
  position: relative;
  margin-bottom: 0;
}

/* Gradient bottom border */
header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(120deg, rgba(7, 76, 56, 0.899), #6f958ce9);
}


    .header-top {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .logo {
        border-radius: 4px;
      position: absolute;
      left:-10%;
      top: 70%;
      transform: translateY(-50%);
      height: 90px;
    }

    header h1 {
      font-size: 2.3rem;
    }

    header a {
      font-size: 1rem;
      margin-top: 0;
      color: #f5f5f5;
      text-decoration: none;
    }

    header a:hover {
      color: #666;
      transition: 0.3s all;
    }

    /* Menu */
    nav.menu {
      margin-top: 15px;
    }

    nav.menu ul {
      list-style: none;
      display: flex;
      justify-content: center;
      gap: 30px;
    }

    nav.menu ul li a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      padding: 5px 2px;
      transition: background-color 0.3s ease;
    }

    nav.menu ul li a:hover {
   
        background:linear-gradient(135deg, #d4af37 0%, #f4df9f 100%);
            color:#2a5e2a;
            border-radius: 4px;
    }

    /* Hamburger Menu Icon */
    .hamburger {
      display: none;
      position: absolute;
      top: 20px;
      right: 30px;
      cursor: pointer;
      flex-direction: column;
      gap: 5px;
    }

    .hamburger span {
      display: block;
      width: 25px;
      height: 3px;
      background-color: white;
    }

    /* Responsive Styles */
    <!-- @media (max-width: 768px) {
      .logo {
        left: 30px;
        height: 60px;
      }
    } -->

      /* Responsive Styles */
       @media (max-width: 1368px) {
      .logo {
      left:-3%;
 
      }
             header h1 {
      font-size: 2.0rem;
    }
    }

       @media (max-width: 1068px) {
        .logo {
      left:-2%;
 
      }
             header h1 {
      font-size: 1.6rem;
    }
    }

    @media (max-width: 768px) {
                header h1 {
      font-size: 1.3rem;
      
    }
      .logo {
        
 /* left:0%; */
        left: 30px;
        height: 60px;
      }
    }

    @media (max-width: 450px) {
      .logo {
        left: 0px;
        height: 55px;
         top: 10%;
      transform: translateY(-10%);
      }
      .hamburger {
        margin-top: 5px;
        display: flex;

      }
       header h1 {
        font-size: 1.3rem;
        margin-left: 100px;margin-right: 100px;}
      
   


      nav.menu {
        display: none;
        margin-top: 10px;
      }

      nav.menu.active {
        display: block;
      }

      nav.menu ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        background-color: linear-gradient(to left, rgb(156, 158, 158), #3d8e7b);
        padding: 10px 0;
      }
    }

 
         /* header */
.landing_backgrd {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}



.landing_backgrd img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}



.landing_text {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -30%);
  color: rgba(29, 42, 35, 0.882);
  text-align: center;
  padding: 25px;
  border-radius: 10px;
  width: 1200px;
  max-height: 100%;
  z-index: 3; 
}

.landing_text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    height: 100%;
    border-radius: 10px;
    background: rgba(247, 244, 244, 0.322);
 z-index: -1; 
}

.landing_text span {
    position: relative;
  opacity: 0;
  display: inline-block;
  animation: fadeIn 0.03s forwards;
}
    /* black theme */
 /* .landing_backgrd {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}

.landing_backgrd img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.landing_backgrd::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); 
}

.landing_text {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -30%);
  color: white;
  text-align: center;
  padding: 25px;
  border-radius: 10px;
  width: 1200px;
  max-height: 100%;
  z-index: 2; 
}

.landing_text span {
  opacity: 0;
  display: inline-block;
  animation: fadeIn 0.03s forwards;
} */


@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.landing_text h2 {
  font-size: 3rem;
  margin-bottom: 5px;
}

.landing_text p {
    margin-top: -1%;
  font-size: 1.5rem;
  line-height: 1.0;
}
   .highlight-yellow {

 color: rgba(126, 104, 31, 0.967); 

  margin-top: 10px;
  font-size:1.3rem ;
}


@media(max-width:1000px){
    .landing_text {
        
  width: 100%;
}
}
@media (max-width: 450px) {
  .landing_backgrd img {
    height: 680px;
  }

  .landing_text {
    top: 0%;
    max-width: 100%;
    max-height: 100%;
    left: 0%;
    transform: translate(0%, 0%);
    padding: 10px;
  }

  .landing_text h2 {
    max-width: 100%;
    font-size: 1.8rem;
    color: rgba(9, 79, 17, 0.822);
  }

  .landing_text p {
    font-size: 1.03rem;
  }
     /* .highlight-yellow {
        border-radius: 10px;
   
  background: linear-gradient(120deg, rgba(7, 76, 56, 0.89), #6f958ce9, rgba(7, 76, 56, 0.89));
  background-size: 200% 200%;
  background-position: left center;
  animation: moveGradient 8s ease-in-out infinite alternate;
  color: rgba(247, 249, 247, 0.918); 
  margin-top: 10px;
  font-size:1.1rem ;
  border-bottom-left-radius: -10%;
} */
.highlight-yellow {
  border-radius: 10px;
  background: linear-gradient(
    120deg,
    rgba(2, 28, 20, 0.96),
    rgba(107, 108, 107, 0.387),
    rgba(21, 66, 54, 0.96),
    rgba(123, 120, 120, 0.784),
    rgba(2, 28, 20, 0.96)
  );
  background-size: 400% 400%;
  background-position: 0% 50%;
  animation: moveGradient 4s ease-in-out infinite alternate;
  color: rgba(247, 249, 247, 0.95);
  margin-top: 10px;
  font-size: 1.1rem;
  padding: 10px 20px;
  border-bottom-left-radius: 10px;
}


@keyframes moveGradient {
  0% {
    background-position: 0% 0%;
  }
  100% {
 background-position: 100% 50%;
  }
}


}

/* .landing_backgrd {
  position: relative;
  width: 100%;
  margin-bottom: 10px;
}

.landing_backgrd img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

.landing_backgrd::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.landing_text {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -30%);
  color: white;
  text-align: center;
  padding: 25px;
  border-radius: 10px;
  width: 100px;
  max-height: 100%;
  z-index: 2;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.landing_text h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

@media(max-width:1000px){
  .landing_text {
    width: 100%;
  }
}

@media (max-width: 450px) {
  .landing_backgrd img {
    height: 550px;
  }

  .landing_text {
    top: 5%;
    max-width: 100%;
    left: 0%;
    transform: translate(0%, 0%);
    padding: 15px;
  }

  .landing_text h2 {
    font-size: 1.8rem;
  }

 
} */

        .price-tag {
            background: linear-gradient(135deg, #d4af37 0%, #f4df9f 100%);
            color: #2a5e2a;
            display: inline-block;
            padding: 10px 20px;
            font-size: 1.5rem;
            font-weight: bold;
            border-radius: 5px;
            margin: 20px 0;
        }
        
        /* .course-highlight {
            background: white;
            width: 50%;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            text-align: center;
        } */
        
      .course-name {
    font-size: 1.8rem;
    color: #2a5e2a;
    /* background: linear-gradient(to left, rgb(140, 142, 142), #122f28);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    margin-bottom: 20px;
}

        .features {
            text-align: left;
            margin: 20px 0;
        }
        
        .features li {
            margin-bottom: 10px;
            list-style-position: inside;
            color: #2a5e2a;
        }
        
        .note {
            font-style: italic;
            color: #2a5e2a;
            margin: 20px 0;
            text-align: left;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .btn {
            padding: 12px 30px;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }
        
        .btn-primary {
              background: linear-gradient(120deg, rgba(7, 76, 56, 0.899), #6f958ce9);
            color: white;
        }
        
        .btn-secondary {
           background: linear-gradient(135deg, #d4af37 0%, #f4df9f 100%);
            color: #2a5e2a;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Flex Container */
.course-section {
  display: flex;
  justify-content: space-between;
  /* align-items: flex-start; */
  gap: 30px;
  padding: 30px;
  flex-wrap: wrap;
}

/* Left Panel: Course Highlight */
.course-highlight {
  background: rgb(238, 237, 237);
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
}

/* Right Panel: Image */
.ganntechniqImage {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ganntechniqImage img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive Design for <= 450px */
@media screen and (max-width: 450px) {
  .course-section {
    flex-direction: column;
    padding: 0px;
  }

  .ganntechniqImage {
    display: none;
  }

  .course-highlight {
    margin:0%;
    height: 60%;
    width: 100%;
    padding: 20px;
  }
}



/* 
gann zig-zag module */
       .gann-course-section {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px 30px;
            text-align: center;
            background: #eeeeee44;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            position: relative;
        }

        .header-container {
            background:  linear-gradient(120deg, rgba(7, 76, 56, 0.899), #6f958ce9);
            padding: 40px 20px;
            margin: 0 -20px;
            border-radius: 16px 16px 0 0;
            margin-bottom: 60px;
            position: relative;
        }

   .title {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
 
    background: linear-gradient(to left, rgb(242, 243, 243), #b7b8b7); 
       /* background: linear-gradient(to left, 
        rgb(174, 175, 175) 0%, 
        #ffc107 100%); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Optional for Firefox */
    background-clip: text;
    color: transparent;
}

        .title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 2px;
        }

        .subtitle {
            font-size: 1.1em;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }

        .course-modules {
            display: flex;
            flex-direction: column;
            gap: 25px;
            align-items: center;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .ganncourse-module {
            background: #f0efef;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(38, 44, 42, 0.677);
            text-align: left;
            position: relative;
            overflow: hidden;
            min-height: 180px;
            width: 90%;
            max-width: 800px;
            border-left: 4px solid #676968;
            transition: all 0.3s ease;
        }

        .ganncourse-module:first-child {
            margin-top: -80px;
        }

        .ganncourse-module:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(48, 92, 80, 0.961);
        }

        /* Alternate module positions for larger screens */
        @media (min-width: 992px) {
            .ganncourse-module:nth-child(odd) {
                margin-right: auto;
                margin-left: 0;
            }
            .ganncourse-module:nth-child(even) {
                margin-left: auto;
                margin-right: 0;
            }
        }
/* 
        .ganncourse-module h3  {
            font-size: 1.3em;
            margin-bottom: 15px;
            padding: 0px 3px;
                color:#2a5e2a;
           background:linear-gradient(135deg, #d4af37 0%, #f4df9f 100%);
           
background: linear-gradient(135deg, #afaead 0%, #e2dfda 100%);
            display: flex;
            align-items: center;
            border-radius: 50px;
        } */
.ganncourse-module h3 {
  font-size: 1.3em;
  margin-bottom: 15px;
  padding: 8px 20px;
  color: #1f4322;
  background: linear-gradient(
    135deg,
    rgba(60, 60, 60, 0.95),          /* dark silver/gray */
    rgba(255, 255, 255, 0.15),       /* subtle shimmer */
    rgba(100, 100, 100, 0.95),       /* mid-tone metallic */
    rgba(255, 255, 255, 0.15),       /* subtle shimmer */
    rgba(60, 60, 60, 0.95)           /* dark silver base again */
  );
  background-size: 400% 400%;
  background-position: 0% 50%;
  animation: silverShimmer 6s ease-in-out infinite alternate;
  display: flex;
  align-items: center;
  border-radius: 50px;
}

@keyframes silverShimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}


        .ganncourse-module h3::before {
            content: '';
            display: inline-block;
            width: 12px;
            height: 12px;
          background: linear-gradient(to left, 
       
        #06211c 0%, 
        #b2b1af 100%);
            border-radius: 50%;
       
            margin-right: 10px;
        }

        .ganncourse-module p {
            font-size: 1em;
            color: #34495e;
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .module-content {
            max-height: 120px;
            overflow: hidden;
            transition: max-height 0.4s ease;
            position: relative;
        }

        /* Fade-out effect for collapsed state */
        .module-content::after {
            content: '';
            position: absolute;
            
            bottom: 0;
            left: 0;
            right: 0;
            height: 50px;
            background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255, 255, 255, 0.508));
            transition: opacity 0.8s ease;
            opacity: 1;
        }

        .ganncourse-module.active .module-content::after {
            opacity: 0;
        }

        .ganncourse-module.active .module-content {
            max-height: 2000px;
        }

        .expand-btn {
            position: absolute;
            bottom: 15px;
            right: 20px;
            font-size: 20px;
            color: #3d8e7b;
            cursor: pointer;
            background: rgba(61, 142, 123, 0.1);
            padding: 8px;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            outline: none;
            transition: all 0.3s;
            z-index: 2;
        }

        .expand-btn:hover {
            background: rgba(61, 142, 123, 0.2);
            transform: scale(1.1);
        }

        .expand-btn i {
            transition: transform 0.3s;
        }

        .ganncourse-module.active .expand-btn i {
            transform: rotate(360deg);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .gann-course-section {
                margin: 30px 15px;
                padding: 0 15px 25px;
            }
            
            .header-container {
                padding: 30px 15px;
                margin-bottom: 50px;
            }
            
            .title {
                font-size: 1.8em;
            }
            
            .subtitle {
                font-size: 1em;
                padding: 0 10px;
            }
            
            .course-modules {
                padding: 0;
            }
            
            .ganncourse-module {
                width: 100%;
                padding: 20px;
            }
            
            .ganncourse-module:first-child {
                margin-top: -60px;
            }
        }

        @media (max-width: 480px) {
        .gann-course-section {
                margin: 20px 0px;
           padding: 0 20px 20px;
           width:100%;
            }
            
            .header-container {
                padding: 25px 10px;
                margin-bottom: 40px;
            }
            
            .title {
                font-size: 1.6em;
            }
            
            .ganncourse-module {
                padding: 18px;
              
     
        }
           
        
            
            .ganncourse-module:first-child {
                margin-top: -60px;
            }
            
            .ganncourse-module h3 {
                font-size: 1.2em;
            }
            
            .ganncourse-module p {
                font-size: 0.95em;
            }
        }










        
        /* .course-modules {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 40px;
        } */
        

        
        footer {
       background: linear-gradient(120deg, rgba(7, 76, 56, 0.899), #6f958ce9);
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 50px;
        }
        
        @media (max-width: 768px) {
            .cta-buttons {
                flex-direction: column;
            }
            
            .course-modules {
                grid-template-columns: 1fr;
            }
            
            .video-grid {
                grid-template-columns: 1fr;
            }
        }

        








/* featured videos */
                    .video-section {
            width: 100%;
               background: linear-gradient(120deg, rgba(7, 76, 56, 0.899), #6f958ce9);
            padding: 40px 0;
            overflow: hidden;
            border-radius: 20px;
        }

        .desktop-video-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .section-video-header {
            text-align: center;
            margin-bottom: 30px;
            background: linear-gradient(to left, rgb(242, 243, 243), #b7b8b7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-transform: uppercase;
            font-size: 28px;
            font-weight: 700;
            position: relative;
        }

          .section-video-header::after {
           
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 180px;
            height: 4px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 2px;
        }
        .slider-container {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .slider-wrapper {
            position: relative;
            width: 100%;
            height: 420px; /* Fixed height to prevent jumping */
        }

        .slide-section {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 20px;
            opacity: 0;
            transform: translateX(20px);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            pointer-events: none;
        }

        .slide-section.active {
            opacity: 1;
            transform: translateX(0);
            pointer-events: all;
            z-index: 1;
        }

        .slide-section.slide-out-left {
            transform: translateX(-20px);
            opacity: 0;
        }

        .slide-section.slide-out-right {
            transform: translateX(20px);
            opacity: 0;
        }

        .video-card {
            margin-top: 20px;
            width: calc(50% - 10px);
            max-width: 380px;
            height: 350px;
            position: relative;
        }

        .video-card-inner {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 100, 80, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            height: 100%;
            position: relative;
            z-index: 1;
        }

        .video-card-inner:hover {
            transform: scale(1.03);
            box-shadow: 0 12px 15px rgba(175, 197, 193, 0.817);
            z-index: 2;
        }

        .thumbnail-container {
            position: relative;
            width: 100%;
            padding-top: 56.25%;
            overflow: hidden;
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
        }

        .thumbnail {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s;
        }

        .video-card-inner:hover .thumbnail {
            transform: scale(1.05);
        }

        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 48px;
            opacity: 0.8;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            transition: all 0.3s;
        }

        .video-card-inner:hover .play-icon {
            transform: translate(-50%, -50%) scale(1.1);
            opacity: 1;
        }

        .video-info {
            padding: 15px;
            position: relative;
            z-index: 2;
            background: white;
        }

        .video-title {
            font-weight: 600;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 3em;
        }

        .video-meta {
            display: flex;
            align-items: center;
            color: #606060;
            font-size: 14px;
        }

        .channel-logo {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            margin-right: 8px;
            object-fit: cover;
        }

        .views {
            margin-left: auto;
        }

        /* .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background: #e3eeec;
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-arrow:hover {
            background: #ffc107;
            transform: translateY(-50%) scale(1.1);
        }

        .slider-arrow:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: translateY(-50%);
        }

        .slider-arrow:disabled:hover {
            background: #0a8c72;
            transform: translateY(-50%);
        }*/

        .left-arrow {
         display: none;
        }

        .right-arrow {
            display: none;
        } 

        /* Modal styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            width: 80%;
            max-width: 900px;
            position: relative;
        }

        .close-modal {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 30px;
            cursor: pointer;
        }

        .modal-iframe {
            width: 100%;
            height: 0;
            padding-bottom: 56.25%;
            position: relative;
        }

        .modal-iframe iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 8px;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 10px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: all 0.3s;
        }

        .dot.active {
            background:linear-gradient(135deg, #d4af37 0%, #f4df9f 100%);
            transform: scale(1.2);
        }
        /* Mobile Layout */
        .mobile-video-container {
            display: none;
            position: relative;
            width: 100%;
            height: 100vh;
            max-height: 100vh;
            flex-direction: column;
            background: #f5f5f5;
            overflow: hidden;
        }

        .mobile-header, .mobile-footer {
            width: 100%;
            flex-shrink: 0;
            z-index: 100;
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .mobile-header {
            position: sticky;
            top: 0;
        }

        .mobile-footer {
            position: sticky;
            bottom: 0;
        }

        .mobile-header img, .mobile-footer img {
            width: 100%;
            display: block;
        }

        .mobile-video-scroll {
            flex-grow: 1;
            overflow-y: auto;
            padding: 15px;
            background-color: #fff;
            -webkit-overflow-scrolling: touch;
        }

        .mobile-video-grid {
            display: flex;
            flex-direction: column;
            gap: 0px;
        }

        /* Common Video Card Styles */
     


   /* Responsive */
@media (max-width: 768px) {
    .desktop-video-container {
        display: none;
    }

        .video-card {
            width: 100%;
            height: 310px;
            margin-bottom: 0;
        }

        .video-card::after{
              content: '';
  position: absolute;
  bottom: 0;
  left: 0%;
  height: 10px;
  width: 100%;
  background: linear-gradient(135deg, rgb(29, 53, 40), #cdd1cf);
  border-radius: 100px;
        }
    

 

     .video-info {
            padding: 18px;
        }
    .mobile-video-container {
        display: flex;
        flex-direction: column;
        height: 90vh;
    }

    .mobile-header {
        position: static;
    }
      .mobile-header p{
         font-weight: bold;
        padding: 0px 0px;
        margin: 0;
        background: #ffffff;
        font-size: 30px;
        text-align: center;
          
          
    background: linear-gradient(135deg, rgb(29, 53, 40), #cdd1cf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Optional for Firefox */
    background-clip: text;
    }

    .mobile-video-scroll {
        flex-grow: 1;
        overflow-y: auto;
        padding: 15px;
    }
    

} 

        @media (min-width: 769px) {
            .mobile-video-container {
                display: none;
            }
        }







    :root {
            --primary: #0a8c72;
            --primary-dark: #07634f;
            --secondary: #3d8e7b;
            --accent: #25D366;
            --accent-dark: #1DA851;
            --danger: #D44638;
            --danger-dark: #B53A2E;
            --text-dark: #122f28;
            --text-light: #f8f9fa;
        }


         /* ===== Registration Section Styles ===== */
       /* Payment Section Styles */
        .payment-section {
            background: linear-gradient(135deg, #afaead 0%, #e2dfda 100%);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .payment-container {
            display: flex;
            flex-wrap: wrap;
            background: rgb(236, 236, 235);
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin: 20px;
        }

        /* Payment Content */
        .payment-content {
            flex: 1;
            min-width: 300px;
            padding: 30px;
            display: flex;
            flex-direction: column;
        }

        .payment-title {
            text-align: center;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 15px;
        }

        .payment-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        /* International Buyers Section */
        .international-section {
            background: #ffffff00;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .section-title {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        
        .contact-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 15px;
        }

        .btn {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 14px 25px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            flex: 1;
            min-width: 200px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border: none;
            cursor: pointer;
            text-align: center;
        }

        .btn-whatsapp {
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            color: white;
        }

        .btn-email {
            background: linear-gradient(135deg, var(--danger), var(--danger-dark));
            color: white;
        }

        .btn-whatsapp:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(37, 211, 102, 0.3);
        }

        .btn-email:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(212, 70, 56, 0.3);
        }

        .btn i {
            font-size: 20px;
            margin-right: 10px;
        }

        /* Domestic Buyers Section */
        .domestic-section {
            margin-bottom: 30px;
        }

        .payment-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .payment-details {
            flex: 1;
            min-width: 300px;
        }

        .payment-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .payment-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: white;
            font-size: 18px;
            box-shadow: 0 4px 8px rgba(10, 140, 114, 0.2);
        }

        .payment-description {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .payment-summary {
            background: #ffffff00;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px dashed #e0e0e0;
        }

        .summary-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .summary-name {
            color: #555;
            font-weight: 500;
        }

        .summary-price {
            font-weight: 600;
            color: var(--text-dark);
        }

        .summary-total .summary-name,
        .summary-total .summary-price {
            font-weight: 700;
            color: var(--primary);
            font-size: 18px;
        }

        .btn-payment {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            width: 100%;
            padding: 16px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 700;
            margin-top: 20px;
            box-shadow: 0 4px 8px rgba(10, 140, 114, 0.3);
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn-payment:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(10, 140, 114, 0.4);
        }

        /* Important Notes Integrated in Payment */
        .payment-notes {
            background: rgba(171, 211, 203, 0.1);
            border-left: 6px solid var(--primary);
            padding: 20px;
            border-radius: 8px 8px 8px 8px;
            margin-top: 30px;
        }

        .notes-title {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .notes-content {
            color: #555;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .btn-notes {
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            color: white;
            padding: 12px 20px;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
            box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
            text-align: center;
            width: 100%;
        }

        .btn-notes:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(37, 211, 102, 0.4);
        }

        /* Sidebar Section */
        .sidebar {
            width: 40%;
            min-width: 300px;
            background:  linear-gradient(120deg, rgba(7, 76, 56, 0.899), #6f958ce9);
            color: white;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .sidebar-content {
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .social-links {
            margin-bottom: 30px;
        }

        .sidebar-title {
            background: linear-gradient(90deg, white, #e0f2f1);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 22px;
            margin-bottom: 20px;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }

        .sidebar-title:after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 35px;
            height: 3px;
            background: white;
            border-radius: 2px;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .social-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s;
            font-size: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .social-icon:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .contact-method {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .contact-icon {
            margin-right: 15px;
            margin-top: 4px;
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
        }

        .contact-text {
            margin: 0;
            font-size: 16px;
            font-weight: 500;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
        }

        .sidebar-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin-top: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            object-fit: cover;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .payment-container { flex-direction: column; }
                
            .sidebar { width: 100%; padding: 30px; }
                
            .payment-content { padding: 30px; }
                 
        }

        @media (max-width: 768px) {
            .gann-container { padding: 0 15px; }
                
            .payment-title { font-size: 24px; }
                
            .section-title, .sidebar-title { font-size: 20px; }
                
            .contact-buttons { flex-direction: column; }
                
            .btn { width: 100%; }
            
            .payment-wrapper { flex-direction: column; }
        }

        @media (max-width: 480px) {
            .payment-section { margin: 0px; border-radius: 15px; }
                
            .payment-notes{ margin-top: 10px;}
      
            .payment-container { margin: 5px;}
                
            .payment-content, .sidebar { padding: 5px; width:100%; }
                
            .payment-title { font-size: 22px; margin-bottom: 20px; }
               
            .payment-description { font-size: 16px; }
                
            .summary-name, .summary-price { font-size: 14px; }
                
            .contact-text { font-size: 14px; }
               
            .btn i { font-size: 18px; margin-right: 8px; }  

            .payment-details { min-width: 200px; }

            .sidebar {width: 100%; padding: 20px; }
            

   
            
           
           
          
       
            
        }

.hidden {
  opacity: 0.5;
  transform: translateY(-50px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1.5s ease, transform 1.5s ease, visibility 1.5s ease;
}

.visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: opacity 1.5s ease, transform 1.5s ease, visibility 1.5s ease;
}

/* visible slide */
.hiddenSlide{
  opacity: 0.5;
  transform: translateX(-50px); /* Slide from the left */
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1.5s ease, transform 1.5s ease, visibility 1.5s ease;
}

.visibleSlide {
  opacity: 1;
  transform: translateX(0); /* Move to original position */
  visibility: visible;
  pointer-events: auto;
  transition: opacity 1.5s ease, transform 1.5s ease, visibility 1.5s ease;
}
.span-style{
    color: blue;
}

/* Add this to your existing CSS */
.payment-section {
    scroll-margin-top: 100px; /* Adjust based on your header height */
}

@keyframes highlight {
    0% { background-color: rgba(0, 109, 92, 0.1); }
    100% { background-color: transparent; }
}

#course-payment {
    animation: highlight 1.5s ease;
}

.learnVid {
  display: inline-block;
  color: #d9b628; 
   /* Blue color for link */
  cursor: pointer;
  font-weight: bold;
  text-decoration: underline;
  margin-left: 5px;
  transition: all 0.2s ease;
  padding: 2px 5px;
  border-radius: 3px;
}

.learnVid:hover {
  color: #183621;/* Darker blue on hover */
  background-color: #f0f7ff; /* Light blue background on hover */
  text-decoration: none;
}

.learnVid:active {
  transform: scale(0.98); /* Slight press effect */
}