

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

:root {
    --primary-gold: #d2ac67;
    --secondary-gray: #6d6e71;
    --dark-bg: #1a1a1a;
    --light-bg: #fafafa;
    --white: #ffffff;
    --text-light: #f5f5f5;
    --shadow: rgba(210, 172, 103, 0.3);
    --gradient-gold: linear-gradient(135deg, #d2ac67 0%, #f4d784 100%);
    --human-black: #2c2c2c;
    --human-dark: #1e1e1e;

}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--secondary-gray);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}


/* Floating Navbar */
.navbar {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 90%;
  max-width: 1200px;
 
  background: rgba(40 37 32 / 83%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(210, 172, 103, 0.2);
  border-radius: 50px;
  padding: 8px 20px;
  transition: all 0.3s ease;
  animation: float 6s ease-in-out infinite;
}



/* Mobile navbar adjustments */
/* @media (max-width: 768px) {
  .navbar {
      top: 5px;
      width: 95%;
      padding: 6px 15px;
  }

  .nav-menu {
      display: none;
  }

  .hamburger {
      display: flex;
  }
}

@keyframes float {

  0%,
  100% {
      transform: translateX(-50%) translateY(0px);
  }

  50% {
      transform: translateX(-50%) translateY(-10px);
  }
} */

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  width: 180px;
  height: 35px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(210, 172, 103, 0.5);
}

body.menu-open {
  overflow: hidden;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;

}

.nav-menu a {
  text-decoration: none;
  color:rgb(184, 184, 184);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 16px;
  border-radius: 25px;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}


.nav-menu a:hover {
  color: var(--primary-gold);
  background: rgba(210, 172, 103, 0.1);
}

.nav-menu a:hover::before {
  width: 80%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-gold);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.navbar {
  z-index: 1000;
}

.nav-menu {
  z-index: 999;
}

.nav-overlay {
  z-index: 998;
}

/* ... */

@media (max-width: 1024px),  (max-width: 1024px) and (orientation: landscape), 
(max-height: 500px) and (orientation: landscape) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    /* 🔻 FLAT STYLE: No layered panel look */
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    box-shadow: none;

    flex-direction: column;
    padding: 0.8rem 1.5rem;
    gap: 1rem;
    width: 100%;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-overlay,
  .nav-overlay.active {
    display: none !important;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}


/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 10px;
    padding-left: 0;
    display: none;
}

/* Mobile hero adjustments */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        height: 100vh;
        padding-top: 50px;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .hero p {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }
}




.hero-content {
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.1rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: -3rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
    margin-right: 1.9rem;
    margin-left: 1.9rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(210, 172, 103, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(210, 172, 103, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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




/* Common Section Styles */
.section {
    padding: 100px 0;
}

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

.section-title {
  font-family: 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-gray);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
}

* Mile Stone Section */
        .milestone-section-unique-xyz {
            margin-bottom: 80px;
            text-align: center;
        }

        .milestone-header-unique-abc {
            margin-bottom: 50px;
        }

        .milestone-icon-unique-def {
            width: 80px;
            height: 80px;
            background: var(--gradient-gold);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px var(--shadow);
        }

        .milestone-icon-unique-def img {
            width: 40px;
            height: 40px;
            filter: brightness(0) invert(1);
        }

        .milestone-title-unique-ghi {
            font-size: 2.5rem;
            color: var(--dark-bg);
            font-weight: 600;
            margin-bottom: 20px;
        }

        .milestone-description-unique-jkl {
            font-size: 1.1rem;
            color: var(--secondary-gray);
            line-height: 1.6;
            max-width: 700px;
            margin: 0 auto 40px;
            text-align: center;
        }

        .milestone-table-unique-mno {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin: 0 auto;
            max-width: 800px;
        }
       

        .milestone-table-unique-mno table {
            width: 100%;
            border-collapse: collapse;
        }

        .milestone-table-unique-mno th {
            background: var(--gradient-gold);
            color: var(--white);
            padding: 20px;
            font-size: 1.2rem;
            font-weight: 600;
            text-align: center;
        }
        @media (max-width: 768px) {
            .milestone-table-unique-mno th {
                max-width: 100%;
                font-size: 1rem;
                
            }
        }

        .milestone-table-unique-mno td {
            padding: 18px 20px;
            text-align: center;
            font-size: 1.1rem;
            border-bottom: 1px solid #eee;
            color: var(--dark-bg);
            font-weight: 500;
        }

        .milestone-table-unique-mno tr:nth-child(even) {
            background: var(--light-bg);
        }

        .milestone-table-unique-mno tr:hover {
            background: rgba(210, 172, 103, 0.1);
            transition: all 0.3s ease;
        }

        .milestone-table-unique-mno tr:last-child td {
            border-bottom: none;
        }


/* About Section */
.about {
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
  font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: var(--primary-gold);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
/* mobile adjustment */



/* Zen of iLearn - Creative Liquid Glass Cards */


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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-gold);
  margin-bottom: 2rem;
  font-weight: 700;
}

/* Zen of iLearn - Creative Liquid Glass Cards */
.zen-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.zen-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(210, 172, 103, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(244, 215, 132, 0.05) 0%, transparent 50%);
  animation: zenFlow 12s ease-in-out infinite;
}

@keyframes zenFlow {
  0%, 100% {
      transform: translateX(0) rotate(0deg);
  }
  50% {
      transform: translateX(20px) rotate(1deg);
  }
}

.zen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}

.zen-card {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 25px;
  padding: 2.5rem;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(210, 172, 103, 0.1);
  opacity: 1;
  transform: translateY(0);
}

.zen-card.hidden {
  display: none;
}

.zen-card.show-animation {
  animation: slideInUp 0.6s ease-out forwards;
}

@keyframes slideInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.zen-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, transparent 0%, rgba(210, 172, 103, 0.3) 50%, transparent 100%);
  border-radius: 25px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.zen-card:hover::before {
  opacity: 1;
}

.zen-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 25px 50px rgba(210, 172, 103, 0.2);
}

.zen-illustration {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  opacity: 0.1;
  transition: all 0.3s ease;
}

.zen-card:hover .zen-illustration {
  opacity: 0.2;
  transform: scale(1.1);
}

.zen-svg {
  width: 100%;
  height: 100%;
  color: var(--primary-gold);
}

.zen-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-gold) 0%, #f4d784 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(210, 172, 103, 0.3);
  transition: all 0.4s ease;
}

.zen-card:hover .zen-icon {
  transform: rotateZ(-5deg) scale(1.05);
  box-shadow: 0 15px 35px rgba(210, 172, 103, 0.4);
}

.zen-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary-gold);
  font-weight: 600;
}

.zen-card p {
  line-height: 1.7;
  color: var(--secondary-gray);
  font-size: 1rem;
}

/* See More Button */
.see-more-container {
  text-align: center;
  margin-top: 3rem;
  position: relative;
  z-index: 3;
}

.see-more-btn {
  background: linear-gradient(135deg, var(--primary-gold) 0%, #f4d784 100%);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(210, 172, 103, 0.3);
  position: relative;
  overflow: hidden;
}

.see-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.see-more-btn:hover::before {
  left: 100%;
}

.see-more-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(210, 172, 103, 0.4);
}

.see-more-btn:active {
  transform: translateY(-1px) scale(1.02);
}

.see-more-btn.expanded {
  background: linear-gradient(135deg, #6c757d 0%, #8a8e94 100%);
}

/* Responsive */
@media (max-width: 768px) {
  .zen-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
  
  .zen-card {
      padding: 2rem;
  }
  
  .section-title {
      font-size: 2rem;
  }
}


/* Key Highlights - Different Liquid Glass Style */
.highlights {
    background: var(--dark-bg);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    display: none;
}

.highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(210, 172, 103, 0.03) 0%, rgba(244, 215, 132, 0.03) 50%, transparent 100%);
    animation: highlightFlow 15s linear infinite;
}

@keyframes highlightFlow {
    0% {
        transform: translateX(-30px) translateY(0);
    }

    25% {
        transform: translateX(0) translateY(-15px);
    }

    50% {
        transform: translateX(30px) translateY(0);
    }

    75% {
        transform: translateX(0) translateY(15px);
    }

    100% {
        transform: translateX(-30px) translateY(0);
    }
}

.highlights .section-title {
    color: var(--text-light);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(210, 172, 103, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.highlight-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.highlight-card:hover::after {
    left: 100%;
}

.highlight-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(210, 172, 103, 0.4);
    box-shadow: 0 20px 40px rgba(210, 172, 103, 0.15);
}

.highlight-number {
  font-family: 'Inter', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 20px;
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-number {
    opacity: 0.5;
    transform: scale(1.1);
}

.highlight-card h4 {
  font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-gold);
    font-weight: 600;
}

.highlight-card p {
    line-height: 1.7;
    color: var(--text-light);
    opacity: 0.9;
}


/* Grid container for cards */

/* Grid container for cards */
.courses .courses-title {
  color: var(--text-dark);
}

.custom-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  grid-template-rows: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  padding: 0 10px;
  max-width: 1200px;
  margin: auto;
  align-items: stretch; /* Stretch all cards to match tallest */
  height: 1300px;
}

.custom-card {
  display: flex;
  flex-direction: column;

  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeUp 0.6s forwards;
  height: 100%; /* key: let it expand fully */
}

.custom-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 32px #d5c19a;
}

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

.custom-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  flex-shrink: 0;
}

.custom-card-content {
  margin-top: 0%;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 0;

}

.custom-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.custom-card-list {
  padding-left: 20px;
  margin: 0;
  list-style: none;
}

.custom-card-list li {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 6px;
  position: relative;
  padding-left: 16px;
}

.custom-card-list li::before {
  content: '✔';
  color: #2b8a3e;
  position: absolute;
  left: 0;
  font-size: 0.85rem;
}
@media (max-width: 2000px) {
  .custom-card {
    height: 600px;
  }
  .custom-cards-container {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    height: auto;
  }
}

@media (max-width: 1200px) {
  .custom-card {
    height: 600px;
  
  }
  .custom-cards-container {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    height: auto;
  }
}

@media (max-width: 968px) {
  .custom-card {
    height: 600px;
  }
  .custom-cards-container {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .custom-card {
    height: 600px;
  }
  .custom-cards-container {
    grid-template-rows: 1fr; 
    height: auto;
  }
}

@media (max-width: 768px) {
  .custom-cards-container {
    grid-template-rows: 1fr 1fr ;
    height: auto;
  }
  .custom-card {
    height: 600px;
  }
}


@media (max-width: 480px) {
  .custom-card img {
    height: 150px;
  }
  .custom-cards-container {
    grid-template-rows: 1fr 1fr;
    height: auto;
  }
  

  .custom-card-title {
    font-size: 1.1rem;
  }
}
  /* FAQ Section  */

  .faq-section {
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 60px;
    padding: 0 2rem;
    position: relative;
}



.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(210, 172, 103, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(210, 172, 103, 0.1);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(210, 172, 103, 0.2), transparent);
    transition: left 0.6s ease;
}

.faq-item:hover::before {
    left: 100%;
}

.faq-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(210, 172, 103, 0.25);
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.95);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(210, 172, 103, 0.2);
    border-color: var(--primary-gold);
}

.faq-question {
    width: 100%;
    padding: 2rem 2.5rem;
    background: none;
    border: none;
    color: var(--darker-bg);
    font-size: 1.25rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    color: var(--primary-gold);
}

.faq-icon {
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(210, 172, 103, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(210, 172, 103, 0.3);
    color: var(--darker-bg);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--primary-gold);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    padding: 0 2.5rem 2rem;
}

.faq-answer p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-top: 1rem;
}

.faq-answer a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.faq-answer a:hover {
    color: var(--darker-bg);
}



/* Responsive design */
@media (max-width: 768px) {
    .faq-section {
        padding: 0 1rem;
    }

    .faq-question {
        padding: 1.5rem 1.5rem;
        font-size: 1.1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
        padding-bottom: 2rem;
    }

    .faq-answer p {
        font-size: 1rem;
    }
}

/* Scroll reveal animation */
.faq-item {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s ease forwards;
}

.faq-item:nth-child(2) { animation-delay: 0.1s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-item:nth-child(4) { animation-delay: 0.3s; }
.faq-item:nth-child(5) { animation-delay: 0.4s; }

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


/* Testimonials - Card Format with Images */


    h2.client-title {
        text-align: center;
        color: #333;
        font-size: 2.8rem;
        margin-top: 60px;
        position: relative;
      }
  
      h2.client-title::after {
        content: '';
        display: block;
        width: 70px;
        height: 4px;
        background: #d4a762;
        margin: 15px auto;
        border-radius: 3px;
      }
  
      .client-testimonials-wrapper {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 24px;
        padding: 30px 20px 40px;
        scroll-behavior: smooth;
      }
  
      .client-testimonials-wrapper::-webkit-scrollbar {
        height: 10px;
      }
  
      .client-testimonials-wrapper::-webkit-scrollbar-thumb {
        background: #d4a762;
        border-radius: 10px;
      }
  
      .client-testimonials-wrapper::-webkit-scrollbar-track {
        background: transparent;
      }
  
      .client-testimonial-card {
        flex: 0 0 320px;
        scroll-snap-align: start;
        background: white;
        border-radius: 20px;
        padding: 25px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
        transition: all 0.4s ease;
        opacity: 0;
        transform: translateY(20px);
        animation: floatUp 0.8s ease forwards;
      }
  
      .client-testimonial-card:hover {
        transform: translateY(-8px) rotateX(2deg) rotateY(2deg);
        box-shadow: 0 12px 30px rgba(212, 167, 98, 0.25);
      }
  
      @keyframes floatUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
  
      .client-header {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
      }
  
      .client-avatar {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(135deg, #d2ac67, #6d6e71);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 20px;
        flex-shrink: 0;
      }
  
      .client-header img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #d2ac67;
      }
  
      .client-name {
        font-weight: 600;
        font-size: 18px;
        color: #333;
      }
  
      .client-role {
        font-size: 14px;
        color: #d4a762;
      }
  
      .client-feedback {
        font-size: 15px;
        line-height: 1.7;
        color: #555;
        font-style: italic;
        margin-bottom: 12px;
      }
  
      .client-rating {
        color: #ffc107;
        font-size: 18px;
      }
  
      .client-tag {
        display: inline-block;
        background: #fcecd2;
        color: #d4a762;
        font-size: 13px;
        padding: 4px 10px;
        border-radius: 20px;
        margin-top: 5px;
      }
  
      @media (max-width: 768px) {
        .client-testimonial-card {
          flex: 0 0 80%;
        }
  
        h2.client-title {
          font-size: 2rem;
        }
      }
      

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
  font-family: 'Inter', sans-serif;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1600px) {
  .container {
      padding: 0 1rem;
  }
  .logo {
    width: 170px;
    height: 35px;
  }
  
  
  
}
@media (max-width: 1400px) {
  .container {
      padding: 0 1rem;
      
  }
  .logo {
    width: 125px;
    height: 30px;
    
  }

  .navbar {
      width: 95%;
      padding: 20px;
      font-size: 0.9rem;
      
  }
  
}
@media (max-width: 1300px) {
  .container {
      padding: 0 1rem;
  }
 

  .navbar {
      width: 95%;
      padding: 18px;
      font-size: 0.8rem;
      
  }
  .logo {
    width: 100px;
    height: 20px;   
}
}
  
@media (max-width: 1200px) {
  .container {
      padding: 0 1rem;
  }
  .logo {
    width: 90px;
    height: 20px;
   
  }

  .navbar {
      width: 95%;
      padding: 16px;
      font-size: 0.65rem;
      
  }
}

@media (max-width: 1100px) {
  .container {
      padding: 0 1rem;
  }
  .logo {
    width: 80px;
    height: 20px;   
  }

  .navbar {
      width: 95%;
      padding: 14px;
      font-size: 0.56rem;
      
  }
}




@media (max-width: 1024px) {
  .container {
      padding: 0 1rem;
  }

  .navbar {
      width: 95%;
      padding: 8px 15px;
      
  }

  .logo {
      width: 100px;
      height: 25px;      
  }

  .nav-menu {
      position: fixed;
      top: 70px;
      right: 0;
      width: 100%;
      height: auto; /* ✅ Only take space needed */
      background: #363636;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 1.5rem 0; /* Enough space top & bottom */
      margin: 0;
      box-sizing: border-box;
      transform: translateX(100%);
      transition: transform 0.3s ease;
      z-index: 999;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px 20px 0 0;
      list-style: none;
      border-radius: 20px;
      display: none;
  }

  .nav-menu.active {
      transform: translateX(0%);
      visibility: visible;
      display: flex;
  }

  .nav-menu li {
      /* padding: 0.5rem 0; */
      width: 100%;
      text-align: center;
  }

  .nav-menu a {
      display: block;
      width: 100%;
      padding: 0.5rem 0;
      text-decoration: none;
      color: white;
      font-size: 1rem;
  }

  .hamburger {
      display: flex;
  }

  .section {
      padding: 60px 0;
  }

  .hero-content {
      padding: 0 1rem;
  }

  .about-content {
      grid-template-columns: 1fr;
      gap: 2rem;
  }

  .about-image {
      order: -1;
  }

  .zen-grid,
  .highlights-grid,
  .courses-grid,
  .testimonials-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }

  .zen-card,
  .highlight-card,
  .course-card,
  .testimonial-card {
      padding: 1.5rem;
  }

  .cta-button {
      padding: 12px 30px;
      font-size: 0.9rem;
  }
}




/* Medium Mobile (321px – 375px) */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.95rem;
    }
   

    .section-title {
        font-size: 1.8rem;
    }

    .zen-card,
    .highlight-card,
    .course-card,
    .testimonial-card {
        padding: 1.2rem;
    }

    .zen-card-icon,
    .course-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Small Mobile (≤ 320px) */
@media (max-width: 320px) {
    .container {
        padding: 0 0.8rem;
    }

    .navbar {
        padding: 6px 12px;
    }

    .logo {
        font-size: 1.3rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .zen-card,
    .highlight-card,
    .course-card,
    .testimonial-card {
        padding: 1rem;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 0.85rem;
    }

    .zen-card h4,
    .highlight-card h4,
    .course-card h4 {
        font-size: 1.1rem;
    }
}

/* Tablet (768px and up) */
@media (min-width: 768px) and (max-width: 1024px) {
    .zen-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop (1025px and up) */
@media (min-width: 1025px) {
    .zen-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .courses-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}



  @keyframes sparkle {
    0%, 100% {
      opacity: 0;
      transform: scale(0);
    }
    50% {
      opacity: 1;
      transform: scale(1);
    }
  }






/* Logo Carousel */

/* 💻 Default: Desktop & Large Screens */
.logo-carousel-container {
    padding: 40px 0;
    background: #fff;
    overflow: hidden;
  }
  
  /* .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    color: #222;
  }
   */
  .logo-carousel {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px; /* space between title and carousel */
  }
  
  .logo-track {
    display: flex;
    animation: scroll-left 30s linear infinite;
    width: fit-content;
  }
  
  .logo-track.reverse {
    animation: scroll-right 35s linear infinite;
  }
  
  .logo-item {
    flex: 0 0 auto;
    margin: 0 30px;
    transition: transform 0.3s ease;
  }
  
  .logo-item img {
    height: 80px;
    object-fit: contain;
    transition: transform 0.5s ease, filter 0.3s ease;
  }
  
  .logo-item:hover img {
    transform: scale(1.1);
    filter: brightness(1.2);
  }
  
  /* 🎞 Animation Keyframes */
  @keyframes scroll-left {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  @keyframes scroll-right {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0%);
    }
  }
  
  /* 📱 Tablet (768px and below) */
  @media (max-width: 768px) {
    .logo-item img {
      height: 40px;
      margin: 0 20px;
    }
  
    /* .section-title {
      font-size: 1.7rem;
    }
   */
    .logo-carousel {
      gap: 18px;
    }
  }
  
  /* 📱 Mobile (480px and below) */
  @media (max-width: 480px) {
    .logo-carousel-container {
      padding: 15px 0;
    }
  
    /* .section-title {
      font-size: 1.3rem;
      margin-bottom: 15px;
    }
   */
    .logo-carousel {
      gap: 16px;
      margin-top: 16px;
    }
  
    .logo-item {
      margin: 0 10px;
    }
  
    .logo-item img {
      height: 30px;
    }
  
    .logo-item:hover img {
      transform: scale(1.05);
      filter: brightness(1.1);
    }
  }
  
  /* 📱 Small Phones (320px and below) */
  @media (max-width: 320px) {
    .logo-carousel-container {
      padding: 10px 0;
    }
/*   
    .section-title {
      font-size: 1.1rem;
      margin-bottom: 12px;
    }
   */
    .logo-carousel {
      gap: 12px;
      margin-top: 14px;
    }
  
    .logo-item {
      margin: 0 6px;
    }
  
    .logo-item img {
      height: 24px;
    }
  
    .logo-item:hover img {
      transform: scale(1.03);
      filter: brightness(1.05);
    }
  }




 /* Social Media Section */
 .social-section,.social-section1 {
    text-align: center;
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin: 2rem auto;
    max-width: 800px;
  }
  
  .section-title {
    font-size: 2rem;
    color: var(--primary-gold, #d4af37);
    margin-bottom: 20px;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .social-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--primary-gold, #d4af37);
    transition: transform 0.3s ease, background 0.3s ease;
    overflow: hidden;
  }
  
  .social-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  
  .social-icon:hover {
    transform: scale(1.15);
    background: var(--primary-gold, #d4af37);
  }
  
  .social-icon:hover img {
    transform: scale(1.1);
  }

  @media (max-width: 768px) {
   
   
}
  
  /* Responsive */
  /* 🟡 Tablets and below */
@media (max-width: 768px) {
    .section-title {
      font-size: 1.7rem;
     
    }
  
    .social-icon {
      width: 46px;
      height: 46px;
    }
  
    .social-icon img {
      width: 22px;
      height: 22px;
    }

  
    
    
  }
  
  /* 🔵 Mobile */
  @media (max-width: 480px) {
    .section-title {
      font-size: 1.5rem;
     
    }
  
    .social-icon {
      width: 42px;
      height: 42px;
    }
  
    .social-icon img {
      width: 20px;
      height: 20px;
    }

   
    
  }
  
  /* 🔴 Very Small Phones */
  @media (max-width: 320px) {
    .section-title {
      font-size: 1.2rem;
      margin-bottom: 15px;
      
    }
  
    .social-icons {
      gap: 14px;
    }
  
    .social-icon {
      width: 38px;
      height: 38px;
    }
  
    .social-icon img {
      width: 18px;
      height: 18px;
    }
  
    .social-icon:hover {
      transform: scale(1.08);
    }
  
    .social-icon:hover img {
      transform: scale(1.05);
    }

   
  }

  /* careers-section  */
  
 .careers-section,.careers-section1 {
  text-align: center;
  padding: 40px 0;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  margin: 2rem auto;
  max-width: 1115px;
}

.section-title {
  font-size: 2rem;
  color: var(--primary-gold, #d4af37);
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--primary-gold, #d4af37);
  transition: transform 0.3s ease, background 0.3s ease;
  overflow: hidden;
}

.social-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.15);
  background: var(--primary-gold, #d4af37);
}

.social-icon:hover img {
  transform: scale(1.1);
}

@media (max-width: 1024px) {
 
 
}

/* Responsive */
/* 🟡 Tablets and below */
@media (max-width: 1024px) {
  .section-title {
    font-size: 1.7rem;
   
  }

  .social-icon {
    width: 46px;
    height: 46px;
  }

  .social-icon img {
    width: 22px;
    height: 22px;
  }
  .careers-section,.careers-section1 {
    margin: 10px;
  }


  
  
}

/* 🔵 Mobile */
@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
   
  }

  .social-icon {
    width: 42px;
    height: 42px;
  }

  .social-icon img {
    width: 20px;
    height: 20px;
  }
  .careers-section,.careers-section1 {
    margin: 10px;
  }

 
  
}

/* 🔴 Very Small Phones */
@media (max-width: 320px) {
  .section-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    
  }

  .social-icons {
    gap: 14px;
  }

  .social-icon {
    width: 38px;
    height: 38px;
  }

  .social-icon img {
    width: 18px;
    height: 18px;
  }

  .social-icon:hover {
    transform: scale(1.08);
  }

  .social-icon:hover img {
    transform: scale(1.05);
  }
  .careers-section,.careers-section1 {
    margin: 10px;
  }

 
}





  /* mobile highlights section */
  .ilearn_highlights_main_section {
    background: var(--dark-bg);
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 2rem 0;
}

.ilearn_highlights_main_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(210, 172, 103, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(210, 172, 103, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.ilearn_main_section_title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 4rem;
    background: var(--gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: ilearn_main_title_glow 3s ease-in-out infinite alternate;
    position: relative;
    z-index: 2;
}

@keyframes ilearn_main_title_glow {
    0% {
        text-shadow: 0 0 10px rgba(210, 172, 103, 0.3);
    }
    100% {
        text-shadow: 0 0 15px rgba(210, 172, 103, 0.5);
    }
}

/* Slider Container */
.ilearn_main_highlight_slider {
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 10px;
    
}

/* Track to hold all cards - FIXED */
.ilearn_main_highlight_track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    padding: 0;
    width: fit-content; /* This ensures proper width calculation */
}

/* Individual Card - FIXED */
.ilearn_main_highlight_card {
    min-width: 900px; /* Fixed width instead of 100vw */
    max-width: 900px; /* Ensure consistent width */
    width: 900px; /* Explicit width */
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--shadow);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    margin: 0;
    backdrop-filter: blur(14px);
    box-shadow: 0 0 15px rgba(210, 172, 103, 0.08);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0; /* Prevent shrinking */
}

.ilearn_main_highlight_card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(210, 172, 103, 0.05), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
    opacity: 0;
}

/* Hover Effect */
.ilearn_main_highlight_card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 20px rgba(210, 172, 103, 0.15);
    border-color: var(--primary-gold);
}

.ilearn_main_highlight_card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

/* Highlight Number */
.ilearn_main_highlight_number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    display: inline-block;
    background: rgba(210, 172, 103, 0.10);
    width: 3.5rem;
    height: 3.5rem;
    line-height: 3.5rem;
    text-align: center;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    animation: ilearn_main_number_pulse 2s ease-in-out infinite;
}

@keyframes ilearn_main_number_pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Title Text */
.ilearn_main_highlight_card h4 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
    position: relative;
    z-index: 2;
    animation: ilearn_main_text_fade_in 0.8s ease-out forwards;
    opacity: 0;
}

/* Description Text */
.ilearn_main_highlight_card p {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.6;
    max-width: 95%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: ilearn_main_text_fade_in 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

@keyframes ilearn_main_text_fade_in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation Container */
.ilearn_main_slider_navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 3;
}

.ilearn_main_nav_button {
    background: var(--gradient-gold);
    color: var(--dark-bg);
    border: none;
    padding: 0.8rem 1.4rem;
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 10px rgba(210, 172, 103, 0.15);
    position: relative;
    overflow: hidden;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ilearn_main_nav_button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.ilearn_main_nav_button:hover {
    background: var(--primary-gold);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(210, 172, 103, 0.25);
}

.ilearn_main_nav_button:hover::before {
    left: 100%;
}

.ilearn_main_nav_button:active {
    transform: scale(0.95);
}

/* Indicator Dots */
.ilearn_main_slider_indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 3;
}

.ilearn_main_indicator_dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(210, 172, 103, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ilearn_main_indicator_dot.ilearn_main_active_dot {
    background: var(--primary-gold);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(210, 172, 103, 0.4);
}

.ilearn_main_indicator_dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.ilearn_main_indicator_dot:hover::before {
    transform: scale(1);
}

/* Progress Bar */
.ilearn_main_progress_container {
    width: 100%;
    height: 4px;
    background: rgba(210, 172, 103, 0.2);
    border-radius: 2px;
    margin-top: 1rem;
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.ilearn_main_progress_bar {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 2px;
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ilearn_main_progress_bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: ilearn_main_progress_shine 2s ease-in-out infinite;
}

@keyframes ilearn_main_progress_shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsive Styles */
@media (min-width: 1370px) {
    .ilearn_highlights_main_section {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .ilearn_main_highlight_card {
        /* Calcs for 900px screens: 100vw - 4rem (2rem on each side) */
        min-width: calc(100vw - 4rem);
        max-width: calc(100vw - 4rem);
        width: calc(100vw - 4rem);
        margin: 0 2rem; /* Consistent margins */
    }
}

@media (max-width: 768px) {
    .ilearn_main_highlight_card {
        padding: 1.2rem 1rem; /* Reduced padding */
        /* Calcs for 768px screens: 100vw - 2rem (1rem on each side) */
        min-width: calc(100vw - 2rem);
        max-width: calc(100vw - 2rem);
        width: calc(100vw - 2rem);
        margin: 0 1rem; /* Adjusted margins */
    }

    .ilearn_main_highlight_card h4 {
        font-size: 1rem; /* Smaller title font */
    }

    .ilearn_main_highlight_card p {
        font-size: 0.85rem; /* Smaller description font */
    }

    .ilearn_main_highlight_number {
        font-size: 1.5rem; /* Smaller number font */
        width: 2.5rem;
        height: 2.5rem;
        line-height: 2.5rem;
    }

    .ilearn_main_nav_button {
        font-size: 1rem; /* Smaller nav button font */
        padding: 0.4rem 0.9rem;
        min-width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .ilearn_main_highlight_card {
        padding: 1rem 0.8rem; /* Further reduced padding */
        /* Calcs for 480px screens: 100vw - 1rem (0.5rem on each side) */
        min-width: calc(100vw - 1rem);
        max-width: calc(100vw - 1rem);
        width: calc(100vw - 1rem);
        margin: 0 0.5rem; /* Further adjusted margins */
    }

    .ilearn_main_highlight_card h4 {
        font-size: 0.95rem; /* Even smaller title font */
    }

    .ilearn_main_highlight_card p {
        font-size: 0.8rem; /* Even smaller description font */
    }

    .ilearn_main_highlight_number {
        font-size: 1.4rem; /* Even smaller number font */
        width: 2.2rem;
        height: 2.2rem;
        line-height: 2.2rem;
    }

    .ilearn_main_nav_button {
        font-size: 0.95rem; /* Even smaller nav button font */
        padding: 0.3rem 0.7rem;
        min-width: 38px;
        height: 38px;
    }
}

/* Card entrance animation */
.ilearn_main_highlight_card.ilearn_main_card_visible {
    animation: ilearn_main_card_entrance 0.8s ease-out forwards;
}

@keyframes ilearn_main_card_entrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Smooth transitions for all elements */
* {
    transition: all 0.3s ease;
}

@media (max-width: 1371px) {
  #highlights1 {
    display: none !important;
  }
}


/* logo */
/* Logo Styling */
.logo {
  display: flex;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Logo Image Size */
.logo img {
  width: 140px;
  height: auto;
  object-fit: contain;
  display: block;
}






/* Main Container */
.milestone_container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 35px var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
 
}

/* Fixed Title for Desktop */
.title {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  backdrop-filter: blur(15px);
  text-align: center;
  font-size: 2.2em;
  font-weight: bold;
  color: var(--primary-gold);
  margin: 0;
  text-shadow: 2px 2px 4px var(--shadow);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Fixed Title for Mobile Swiper */
.fixed-title {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(15px);
  padding: 15px 20px;
  border-bottom: 2px solid var(--primary-gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: none;
  transform: translateZ(0);
}

.fixed-title h1 {
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  color: var(--primary-gold);
  margin: 0;
  text-shadow: 2px 2px 4px var(--shadow);
  letter-spacing: 0.5px;
}

.fixed-title .subtitle {
  text-align: center;
  font-size: 0.9em;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 5px;
  font-weight: 500;
}

/* Add top padding to container when fixed title is active */
.milestone_container.with-fixed-title {
  padding-top: 120px; /* Account for fixed title height on desktop */
}

/* ==========================================
 DESKTOP & TABLET STATIC ONE-ROW LAYOUT
 ========================================== */

/* Static container for desktop and tablet */
.pyramid-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  padding: 30px 0;
  width: 100%;
  /* Remove all animation properties */
}

.year-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  position: relative;
  flex: 1;
  min-width: 0; /* Allow flexbox to shrink items */
  max-width: calc((100% - 80px) / 5); /* Distribute evenly across 5 items with gaps */
}

/* Remove duplicate class as we no longer need seamless scrolling */
.year-row.duplicate {
  display: none; /* Hide duplicates for static layout */
}

.year-row .step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-gold), #ffd700);
  color: var(--dark-bg);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2em;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4), 0 0 0 3px rgba(255, 255, 255, 0.2);
  z-index: 3;
  border: 2px solid var(--white);
  transition: all 0.3s ease;
}

.year-row .step-number:hover {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6), 0 0 0 4px rgba(255, 255, 255, 0.3);
}

/* Year Card Styling - Responsive for one row */
.year-card {
  background: var(--gradient-gold);
  color: var(--dark-bg);
  padding: 20px 15px;
  border-radius: 15px;
  width: 100%;
  box-shadow: 0 8px 25px var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  border: 2px solid var(--white);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  margin-top: 25px;
  backdrop-filter: blur(5px);
}

.year-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px var(--shadow);
  border-color: rgba(255, 255, 255, 0.8);
}

.year-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.year-subtitle {
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark-bg);
  opacity: 0.9;
}

.year-details {
  font-size: 0.9em;
  line-height: 1.3;
  opacity: 0.85;
}

/* ==========================================
 PEOPLE VISUALIZATION - Responsive for one row
 ========================================== */

.people-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(250, 245, 245, 0.937);
  padding: 12px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 2px solid var(--primary-gold);
  box-shadow: 0 6px 25px var(--shadow);
  min-height: 120px;
  max-height: 180px;
  overflow-y: auto;
  width: 100%;
}

/* Person Icon Base - Smaller for one row layout */
.person-icon {
  width: 18px;
  height: 28px;
  position: relative;
  animation: bounceIn 0.6s ease forwards;
  opacity: 0;
  cursor: pointer;
  transition: transform 0.2s ease;
  margin: 1px;
}

.person-icon:hover {
  transform: scale(1.1);
}

.person-icon:nth-child(n) {
  animation-delay: calc(0.02s * var(--i, 1));
}

/* Bounce Animation */
@keyframes bounceIn {
  0% {
      opacity: 0;
      transform: scale(0.3) translateY(15px);
  }
  50% {
      opacity: 1;
      transform: scale(1.05) translateY(-3px);
  }
  100% {
      opacity: 1;
      transform: scale(1) translateY(0);
  }
}

/* ==========================================
 MALE FIGURE STYLING - Adjusted for smaller size
 ========================================== */

.male .head {
  width: 10px;
  height: 10px;
  background: var(--human-black);
  border-radius: 50%;
  margin: 0 auto 2px;
  border: 1px solid var(--human-dark);
}

.male .torso {
  width: 14px;
  height: 18px;
  background: var(--human-black);
  margin: 0 auto 2px;
  border-radius: 6px 6px 2px 2px;
  border: 1px solid var(--human-dark);
}

.male .arms {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 2px;
  background: var(--human-black);
  border-radius: 2px;
}

.male .legs {
  display: flex;
  justify-content: space-between;
  width: 10px;
  margin: 0 auto;
}

.male .leg {
  width: 3px;
  height: 14px;
  background: var(--human-black);
  border-radius: 0 0 2px 2px;
  border: 1px solid var(--human-dark);
  border-top: none;
}

/* ==========================================
 SCROLL INDICATOR - Hide for static layout
 ========================================== */

.scroll-indicator {
  display: none; /* Hide scroll indicator for static layout */
}

/* ==========================================
 STEP COUNTER
 ========================================== */

.step-counter {
  display: block;
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-gold);
  font-size: 1.2em;
  font-weight: 600;
}

/* ==========================================
 TABLET RESPONSIVE ADJUSTMENTS
 ========================================== */

@media (min-width: 769px) and (max-width: 1199px) {
  .pyramid-container {
    gap: 15px;
    padding: 25px 0;
  }
  
  .year-row {
    gap: 20px;
    max-width: calc((100% - 60px) / 5);
  }
  
  .year-card {
    padding: 18px 12px;
    min-height: 130px;
  }
  
  .year-title {
    font-size: 1.3em;
  }
  
  .year-subtitle {
    font-size: 0.75em;
  }
  
  .year-details {
    font-size: 0.85em;
  }
  
  .people-container {
    min-height: 110px;
    max-height: 160px;
    padding: 10px;
    gap: 4px;
  }
  
  .person-icon {
    width: 26px;
    height: 45px;
  }
  
  .male .head {
    width: 9px;
    height: 9px;
  }
  
  .male .torso {
    width: 12px;
    height: 16px;
  }
  
  .male .arms {
    width: 20px;
    top: 12px;
  }
  
  .male .legs {
    width: 9px;
  }
  
  .male .leg {
    width: 3px;
    height: 12px;
  }
}

/* ==========================================
 LARGE SCREEN OPTIMIZATIONS
 ========================================== */

@media (min-width: 1200px) {
  .pyramid-container {
    gap: 25px;
    padding: 35px 0;
  }
  
  .year-row {
    gap: 30px;
    max-width: calc((100% - 100px) / 5);
  }
  
  .year-card {
    padding: 25px 20px;
    min-height: 150px;
  }
  
  .year-title {
    font-size: 1.6em;
  }
  
  .year-subtitle {
    font-size: 1.1em;
  }
  
  .year-details {
    font-size: 0.95em;
  }
  
  .people-container {
    min-height: 140px;
    max-height: 200px;
    padding: 15px;
    gap: 8px;
  }
  
  .person-icon {
    width: 22px;
    height: 45px;
  }
  
  .male .head {
    width: 12px;
    height: 12px;
  }
  
  .male .torso {
    width: 16px;
    height: 22px;
  }
  
  .male .arms {
    width: 26px;
    height: 2px;
    top: 16px;
  }
  
  .male .legs {
    width: 12px;
  }
  
  .male .leg {
    width: 4px;
    height: 16px;
  }
}

/* ==========================================
 MOBILE SWIPER STYLES (unchanged)
 ========================================== */

.swiper-container {
  display: none;
  width: 100%;
  padding: 20px 0 50px;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.swiper-wrapper {
  position: relative;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 10px;
}

.swiper-slide .year-card {
  width: 100%;
  min-width: unset;
  margin-bottom: 15px;
}

.swiper-slide .people-container {
  width: 100%;
  min-height: 120px;
  padding: 15px;
}

/* ==========================================
 ENHANCED SWIPER PAGINATION (unchanged)
 ========================================== */

.swiper-pagination {
  bottom: 15px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  position: relative !important;
}

.swiper-pagination-bullet {
  background: linear-gradient(135deg, var(--primary-gold), #ffd700) !important;
  opacity: 0.4 !important;
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  margin: 0 4px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  cursor: pointer !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 3px 12px rgba(255, 215, 0, 0.3) !important;
  position: relative !important;
  z-index: 2 !important;
}

.swiper-pagination-bullet:hover {
  opacity: 0.8 !important;
  transform: scale(1.1) !important;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5) !important;
}

.swiper-pagination-bullet-active {
  opacity: 1 !important;
  transform: scale(1.4) !important;
  background: linear-gradient(135deg, #ffd700, #ffed4e) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6), 
              0 0 0 4px rgba(255, 255, 255, 0.2) !important;
  animation: activePulse 2s infinite !important;
}

@keyframes activePulse {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6), 
                0 0 0 4px rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.8), 
                0 0 0 6px rgba(255, 255, 255, 0.3);
  }
}

/* ==========================================
 PROGRESS INDICATOR
 ========================================== */

.progress-indicator {
  display: none;
  text-align: center;
  margin-bottom: 20px;
  color: var(--white);
  font-size: 1.1em;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 10px;
}

/* ==========================================
 RESPONSIVE DESIGN - MOBILE (unchanged)
 ========================================== */

@media (max-width: 768px) {
  .pyramid-container {
      display: none;
  }

  .swiper-container {
      display: block;
  }

  .progress-indicator {
      display: block;
  }
  
  .scroll-indicator {
      display: none;
  }
  
  .step-counter {
      display: none;
  }

  .title {
      font-size: 1.6em;
  }
  
  .fixed-title {
      display: block;
  }

  .milestone_container.with-fixed-title {
      padding-top: 100px;
  }

  .container {
      padding: 20px;
  }

  .person-icon {
      width: 35px;
      height: 60px;
  }

  .male .head {
      width: 14px;
      height: 14px;
  }

  .male .torso {
      width: 18px;
      height: 24px;
  }

  .male .arms {
      width: 30px;
      height: 3px;
  }

  .male .legs {
      width: 14px;
  }

  .male .leg {
      width: 5px;
      height: 18px;
  }
}

/* ==========================================
 RESPONSIVE DESIGN - SMALL MOBILE (unchanged)
 ========================================== */

@media (max-width: 480px) {
  .title {
      font-size: 1.2em;
  }
  .milestone_container {
      padding: 5px;
      width: 500px;
  }
  
  .milestone_container.with-fixed-title {
      padding-top: 90px;
  }

  .fixed-title {
      padding: 12px 15px;
  }
  
  .fixed-title h1 {
      font-size: 1.6em;
  }
  
  .fixed-title .subtitle {
      font-size: 0.8em;
  }

  .year-card {
      padding: 15px 18px;
      margin-top:40px;
  }

  .year-title {
      font-size: 1.4em;
  }

  .year-subtitle,
  .year-details {
      font-size: 0.95em;
  }

  .person-icon {
      width: 30px;
      height: 55px;
  }

  .male .head {
      width: 12px;
      height: 12px;
  }

  .male .torso {
      width: 16px;
      height: 20px;
  }

  .male .arms {
      width: 26px;
      height: 2px;
  }

  .male .legs {
      width: 12px;
  }

  .male .leg {
      width: 4px;
      height: 16px;
  }
}

@media (max-width: 1100px) {
    .person-icon {
        width: 16px;
        height: 25px;
    }
    
  }