/* The Wonder Minds - Custom Styles 
   CREATED BY uphar ABHISHEK CHAGANTI */
   
   
   
   /*cards css all program*/
   
   
      /* =================================
       * KEYFRAME ANIMATION
       * This makes the cards fade and slide in on load.
       * ================================= */
       
       
       /* --- New Dropdown Styles for CTA Buttons --- */
.cta-dropdown {
    position: relative;
    display: inline-block;
}

.cta-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    /* Start slightly lower for the slide-up animation */
    transform: translateX(-50%) translateY(20px); 
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    border-top: 4px solid var(--brand-pink); /* Adds a nice accent color */
}

/* The Hover Effect */
.cta-dropdown:hover .cta-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(15px); /* Final position */
}

/* Triangle/Arrow pointing up (Optional decorative element) */
.cta-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--brand-pink);
}

/* Links inside the dropdown */
.cta-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--tg-theme-secondary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.cta-dropdown-menu a:last-child {
    border-bottom: none;
}

.cta-dropdown-menu a:hover {
    background-color: #fff0f5; /* Light pink bg on hover */
    color: var(--brand-pink);
    padding-left: 25px; /* Slight movement to the right */
}
      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* We apply the animation to the columns for a staggered effect */
      .course-column {
        opacity: 0; /* Start hidden */
        animation: fadeInUp 0.6s ease-out forwards; /* Apply the animation */
      }

      /* Stagger the animation delay for each card */
      .course-column:nth-child(1) { animation-delay: 0.1s; }
      .course-column:nth-child(2) { animation-delay: 0.2s; }
      .course-column:nth-child(3) { animation-delay: 0.3s; }
      .course-column:nth-child(4) { animation-delay: 0.4s; }
      .course-column:nth-child(5) { animation-delay: 0.5s; }
      .course-column:nth-child(6) { animation-delay: 0.6s; }
      

      /* =================================
       * CARD STYLING & TRANSITIONS
       * ================================= */
      .course-card {
        border: 2px solid transparent; /* Prepare for the hover border */
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        text-decoration: none;
        color: #212529;
        overflow: hidden;
        /* A more "engaging" bouncy transition */
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      }

      .course-card:hover {
        /* Lift the card up and scale it slightly */
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        border-color: #6c63ff; /* Add the "glow" border */
      }

      /* Top image/icon area */
      .course-card-img-top {
        height: 150px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0; /* Remove padding to let image fill */
        background-color: #f1f3f5;
        overflow: hidden; /* This is crucial for the image zoom */
      }
      
      .course-card-img-top img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* <-- THIS IS THE CHANGED LINE */
        transition: transform 0.4s ease; /* Image transition */
      }
      
      /* Image zoom on hover */
      .course-card:hover .course-card-img-top img {
        transform: scale(1.0);
      }
      
      .course-card-img-top .icon {
        font-size: 3.5rem;
        color: #6c63ff; /* Added accent color */
      }

      .course-card .card-body {
        padding: 1.25rem;
      }

      .course-card .card-title {
        font-weight: 700;
        font-size: 1.15rem;
        height: 44px; 
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
      }

      /* Metadata (duration, price) */
      .course-meta {
        font-size: 0.9rem;
        font-weight: 500;
        color: #555;
      }
      
      .course-meta .fa-rupee-sign {
        font-size: 0.8rem;
      }
      
      .course-price {
        font-weight: 700;
        display: inline-block;
        transition: transform 0.3s ease;
      }
      
      /* Price scales up on hover */
      .course-card:hover .course-price {
         transform: scale(1.1);
         color: #000;
      }

      /* Author section at the bottom */
      .course-author {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #eee;
      }

      .author-img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #fff;
        box-shadow: 0 0 5px rgba(0,0,0,0.2);
      }
      
      .author-stack {
        display: flex;
        padding-left: 20px;
      }
      
      .author-stack .author-img {
        margin-left: -20px;
      }

      .author-info {
        margin-left: 12px;
        line-height: 1.3;
      }

      .author-info .name {
        font-weight: 600;
        font-size: 0.9rem;
        color: #333;
        transition: color 0.3s ease; /* Author name transition */
      }
      
      /* Author name changes color on hover */
      .course-card:hover .author-info .name {
        color: #6c63ff;
      }

      .author-info .title {
        font-size: 0.8rem;
        color: #666;
      }
:root {
    --primary-purple: hsl(270, 60%, 40%);
    --dark-purple: hsl(270, 50%, 20%);
    --light-purple: hsl(270, 60%, 60%);
    --pink-gradient-start: hsl(320, 70%, 60%);
    --pink-gradient-end: hsl(340, 70%, 50%);
    --warning-color: hsl(45, 100%, 60%);
    --text-white-75: hsla(0, 0%, 100%, 0.9);
    --section-padding: 80px;
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Button Styles */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--pink-gradient-start), var(--pink-gradient-end));
    border: none;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);        
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4); /* Purple shadow */
}

/* Dark purple button - used for secondary actions */
.btn-dark-purple {
    background-color: var(--dark-purple) !important;
    border-color: var(--dark-purple) !important;
    color: white !important;
    border-radius: 25px;                 
    padding: 8px 20px;
    font-weight: 600;                    
    transition: all 0.3s ease;           
}

/* Dark purple button hover effects */
.btn-dark-purple:hover {
    background-color: white !important;     
    border-color: var(--dark-purple) !important;
    color: var(--dark-purple) !important;   
    transform: translateY(-2px);            
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4); /* Purple shadow */
}

/* Dark purple button focus/active states for accessibility */
.btn-dark-purple:focus,
.btn-dark-purple:active {
    background-color: white !important;
    border-color: var(--dark-purple) !important;
    color: var(--dark-purple) !important;
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25); /* Purple focus ring */
}

.text-primary-custom {
    color: var(--primary-purple) !important;
}

.text-white-75 {
    color: var(--text-white-75);            
}


/* Purple gradient background for navigation sections */
.bg-dark-purple {
    background: linear-gradient(135deg, var(--dark-purple), var(--primary-purple)) !important;
}

/* Main navbar container - stacks contact bar and navigation vertically */
.navbar {
    flex-direction: column;                  
    padding: 0;                              
}

/* Top contact information bar */
.top-contact-bar {
    background: rgba(0, 0, 0, 0.2);         
    padding: 8px 0;                         
    font-size: 0.85rem;                     
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border */
    width: 100%;                            
}

/* Desktop contact bar compactness */
@media (min-width: 1025px) {
    .top-contact-bar {
        padding: 6px 0;
        font-size: 0.8rem;
    }
    
    .contact-info span {
        font-size: 0.8rem;
    }
    
    .contact-info i {
        font-size: 0.75rem;
    }
}

/* Mobile contact bar compactness */
@media (max-width: 1024px) {
    .top-contact-bar {
        padding: 5px 0;
        font-size: 0.75rem;
    }
    
    .contact-info span {
        font-size: 0.75rem;
    }
    
    .contact-info i {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .top-contact-bar {
        padding: 3px 0;
        font-size: 0.7rem;
    }
    
    .contact-info span {
        font-size: 0.7rem;
    }
    
    .contact-info i {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .top-contact-bar {
        padding: 2px 0;
        font-size: 0.65rem;
    }
    
    .contact-info span {
        font-size: 0.65rem;
    }
    
    .contact-info i {
        font-size: 0.6rem;
    }
}

.contact-info span {
    color: var(--text-white-75);
    font-size: 0.85rem;
}

.contact-info i {
    color: var(--warning-color);
}

.contact-left {
    flex-wrap: wrap;
}

.contact-right {
    white-space: nowrap;
}

.contact-item {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-text {
    transition: opacity 0.3s ease;
}

/* Mobile contact info - hide text, show icons only */
@media (max-width: 768px) {
    .contact-text {
        opacity: 0;
        position: fixed;
        background: rgba(0, 0, 0, 0.9);
        padding: 15px 20px;
        border-radius: 10px;
        white-space: nowrap;
        z-index: 10000;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        pointer-events: none;
        font-size: 1rem;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
        color: white;
        text-align: center;
        max-width: 95vw;
        word-break: break-all;
        white-space: normal;
        line-height: 1.4;
        border: 2px solid var(--warning-color);
    }
    
    .contact-item:hover .contact-text {
        opacity: 1;
        pointer-events: auto;
    }
    
    .contact-item {
        margin: 0 8px !important;
        position: relative;
        cursor: pointer;
        touch-action: manipulation;
    }
    
    .contact-left {
        gap: 5px;
    }
    
    .contact-info {
        justify-content: space-around !important;
    }
}

@media (max-width: 480px) {
    .contact-text {
        font-size: 0.9rem;
        padding: 12px 16px;
        max-width: 90vw;
    }
}

/* Main Navigation Content */
.main-nav-content {
    padding: 10px 15px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Desktop and tablet navigation compactness */
@media (min-width: 1025px) {
    .main-nav-content {
        padding: 8px 15px;
    }
    
    .brand {
        font-size: 1.3rem !important;
    }
    
    .brand-logo {
        width: 50px !important;
        height: 35px !important;
        margin-right: 10px !important;
    }
    
    .nav-buttons .btn-login,
    .nav-buttons .btn-join {
        padding: 8px 18px !important;
        font-size: 0.9rem !important;
    }
}

/* Mobile navigation compactness */
@media (max-width: 1024px) {
    .main-nav-content {
        padding: 6px 15px;
    }
    
    .brand {
        font-size: 1.1rem !important;
    }
    
    .brand-logo {
        width: 42px !important;
        height: 30px !important;
        margin-right: 8px !important;
    }
    
    .nav-buttons .btn-login,
    .nav-buttons .btn-join {
        padding: 6px 14px !important;
        font-size: 0.8rem !important;
    }
}

@media (max-width: 768px) {
    .main-nav-content {
        padding: 5px 12px;
    }
    
    .brand {
        font-size: 1rem !important;
    }
    
    .brand-logo {
        width: 26px !important;
        height: 26px !important;
        margin-right: 5px !important;
    }
    
    .nav-buttons .btn-login,
    .nav-buttons .btn-join {
        padding: 5px 10px !important;
        font-size: 0.75rem !important;
        border-radius: 20px !important;
    }
    
    .nav-items .nav-item {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 480px) {
    .main-nav-content {
        padding: 3px 8px;
    }
    
    .brand {
        font-size: 0.9rem !important;
    }
    
    .brand-logo {
        width: 32px !important;
        height: 22px !important;
        margin-right: 6px !important;
    }
}

/* Progressive navbar visibility based on screen width */
.progressive-nav {
    margin: 0;
    list-style: none;
    padding: 0;
}

/* Hide navbar toggler and mobile menu by default */
.navbar-toggler {
    display: none;
}

.navbar-collapse {
    display: none;
}



/* Progressive Navigation Styles */
.progressive-navbar {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--dark-purple) 0%, hsl(270, 40%, 15%) 100%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Contact Bar */
.contact-bar {
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-left {
    display: flex;
    gap: 20px;
}

.contact-item {
    color: #ffffff;
    opacity: 0.9;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-item i {
    color: #ffd700;
    font-size: 0.8rem;
    margin-right: 5px;
}

/* Main Navigation */
.main-nav {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  overflow: hidden;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}

.nav-left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}


.brand {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.brand-logo {
    width: 70px;
    height: 40px;
    margin-right: 12px;
}

.footer-brand-logo {
    width: 42px;
    height: 30px;
}

.footer-column.brand {
  display: flex;
  flex-direction: column;
align-items: flex-start; /* aligns content to the red line */
}

.footer-brand-name {
  margin: 0;
  padding: 0;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
}

.footer-brand-link {
  display: flex;
  align-items: center;
  gap: 0px; /* reduce space between logo and name */
  text-decoration: none;
  color: #fff;
  margin-bottom: 2px; /* reduce space below brand name */
}



.edvicon-logo:hover {
  transform: scale(1.2); 
    outline: 2px;solid #FFF2EF;
  /* outline-offset: 1px; space between image and outline */
  box-shadow: 0 0 0 2px ##ffd700; /* outer border-like */
  height: 22px;
 width: 83px;

}

.footer-tagline {
  font-size: 13px; /* Or 16px if that's intended from your previous image's !important rule */
  font-style: italic;
  color: #aaa;
  margin-top: 2px;
  margin-bottom: 8px;
  display: flex; /* Make it a flex container */
  flex-direction: row; /* Keep items in a row */
  flex-wrap: wrap; /* Allow items to wrap to the next line if not enough space */
  align-items: center; /* Vertically align items in the middle of the line */
  justify-content: center; /* Center the content horizontally within its available space */
  text-align: center; /* Center the text itself, useful if it wraps */
  /* You might also want to add some padding-left/right or max-width if it's too wide */
  padding: 0 10px; /* Example: Add some horizontal padding */
}

.edvicon-logo {
  height: 20px; /* Set a fixed height for the logo */
  width: auto; /* Let the width adjust proportionally */
  margin-left: 6px; /* Space between "by" and the logo */
  /* Ensure the image doesn't get too big if the container is large */
  max-width: 100%; 
  transition: 0.5s;
}

.footer-description {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
  max-width: 400px;
  text-align: left;
  margin-top: 25px;
}

.footer-social-link {
    color: #ffd700 !important;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    align-items: center;
}

.footer-social-link:hover {
    color: #ffffff !important;
}



.footer-brand-link:hover {
    color: #ffd700;
    text-decoration: none;
    opacity: 0.9;
}

.footer-tagline {
  display: flex;
  flex-direction: row;     /* From the popup in your image */
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  
  /* Other styles from your image */
  font-size: 13px;      /* This is being overridden to 16px !important */
  font-style: italic;
  color: #aaa;
  margin-top: 2px;
  margin-bottom: 8px;
}


.nav-items {
  display: flex;
  flex: 1 1 0%;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 17px;
  text-overflow: ellipsis;
  min-width: 0;
  align-items: center;
  overflow: visible;
  /* flex-grow: 1;
  flex-shrink: 1; */
  /* margin: 0 60px; */
}



.nav-item {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
    padding: 0 5px;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
}

.nav-link:hover,
.nav-item.active {
    opacity: 1;
    color: #ffd700;
  font-weight: bold;
  border-bottom: 2px solid #ffc107;
}

.nav-link.active {
  color: #ffd700 !important;
  font-weight: bold;
  border-bottom: 2px solid #ffc107;
}

.nav-link{
    color: white;
}

/* Style for small icon buttons */
.nav-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;         /* remove underline */
  color: white;                /* inherit from parent */
  padding: 6px;
  width: 60px;
  background-color: transparent;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.nav-icon-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.icon-with-label {
  display: flex;
  flex-direction: column;
  align-items: center; /* small gap between icon and label */
}

.icon-with-label i {
  font-size: 20px;
  color: white;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 5px; /* spacing below icon */
}

.icon-with-label .label {
  font-size: 12px;
  font-weight: 500;
  color: white;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

.sticky-top-bar {
  position: relative;
  top: 0;
  background: #1c0f33;
  z-index: 100;
  padding: 10px 15px;
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  overflow: visible !important;
}

.sticky-top-bar.container{
    position: relative;
    overflow: visible !important;
    z-index: 101;
}


.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  z-index: 0;
  
}

.hero-section .carousel .carousel-item video {
  border-radius: 12px;
}



/* When scrolled — make it fixed */
.sticky-top-bar.stuck {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.sticky-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.container {
  max-width: 1200px; /* or whatever you're using elsewhere */
  margin: 0 auto;
  padding: 0 20px;
}

#mainButtons {
  display: none; /* Default hidden, JS will clone it */
}


.sticky-left-group {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-start; /* ⬅️ keeps everything to the left */
}

.sticky-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: white;
  text-decoration: none;
}

.sticky-brand img {
  width: 30px;
  height: auto;
}

.sticky-brand-name {
  font-weight: 600;
  color: white;
}

/* LOGO + NAME transition setup */
/* === LOGO + BRAND NAME (starts hidden) === */
#scrollLogo {
  opacity: 0;
  transform: translateX(-50px);
  pointer-events: none;
  visibility: hidden;
  position: absolute;  /* ✅ completely removes from layout */
  transition: transform 0.6s ease, opacity 0.6s ease, visibility 0s linear 0.6s;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* When we want it to appear */
#scrollLogo.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  visibility: visible;
  position: relative; /* ✅ back in layout */
  transition-delay: 0s;
}

/* === NAV ITEMS === */
#nav-items {
  display: flex;
  flex: 1;
  gap: 10px;
  justify-content: flex-start; /* ✅ prevents centering */
  transform: translateX(0);
  transition: transform 0.6s ease;
}

/* Slide right when logo appears */
#nav-items.shift-right {
  transform: translateX(0);     /* You can tweak this distance */
}

/* Reset to left when logo hides */
#nav-items.shift-left {
  transform: translateX(0);
}

.nav-buttons {
    display: flex;
    align-items: center; 
    gap: 12px;
    flex-shrink: 0;

}

.btn-login {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-login:hover {
    background: #ffffff;
    color: #667eea;
}

.btn-join {
    background: #ffd700;
    border: 2px solid #ffd700;
    color: #333;
    padding: 10px 20px;              /* slightly taller for balance */
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1;                  /* prevents vertical stretching */
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-join:hover {
    text-decoration: none;
    color: #333;
}

.btn-join:hover {
    background: #ffed4e;
    border-color: #ffed4e;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s;
}



/* Contact bar responsive */
@media (max-width: 768px) {
    .contact-left {
        gap: 10px;
    }
    
    .contact-text {
        display: none;
    }
    
    .contact-item i {
        margin-right: 0;
    }
    
    .contact-item:hover .contact-text {
        display: block;
        position: absolute;
        background: rgba(0, 0, 0, 0.9);
        padding: 8px 12px;
        border-radius: 5px;
        white-space: nowrap;
        z-index: 10000;
        top: 150%;
        right: 0;
        font-size: 0.75rem;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.2);
        min-width: max-content;
    }
    
    .contact-right .contact-item:hover .contact-text {
        right: 0;
        left: auto;
    }
    
    .contact-left .contact-item:hover .contact-text {
        left: 0;
        right: auto;
    }
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--warning-color) !important;
}

/* Hero Section */
/*.hero-section {*/
    /* background: linear-gradient(135deg, #A855F7 0%, #EC4899 50%, #F472B6 100%); */
/*    background: #ffffff;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    min-height: 100vh;*/
/*    padding-top: 50px;*/
/*    padding-bottom: 50px;*/
/*    margin-bottom: 0;*/
/*    display: flex;*/
/*    align-items: center;*/
/*}*/

/*.hero-section::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    background: linear-gradient(135deg, */
/*        rgba(255,255,255,0.3) 0%, */
/*        rgba(255,255,255,0.1) 30%, */
/*        rgba(255,255,255,0.05) 60%, */
/*        transparent 100%);*/
/*    pointer-events: none;*/
/*    z-index: 1;*/
/*}*/

/*.hero-section .container {*/
/*    position: relative;*/
/*    z-index: 2;*/
/*}*/

/*.hero-title {*/
/*    font-size: 3.5rem;*/
/*    font-weight: 700;*/
/*    line-height: 1.2;*/
/*    color: #8074a1;*/
/*}*/

/*.hero-title .highlight {*/
/*    color: #370a77;*/
/*}*/

/*.hero-title .wisdom-text {*/
/*    color: #9E1C60;*/
/*    font-weight: 800;*/
    
/*}*/

/*.hero-subtitle {*/
/*    font-size: 1.2rem;*/
/*    line-height: 1.8;*/
/*    font-style: italic;*/
/*    color: black;*/
/*}*/

/*.hero-buttons .btn {*/
/*    border-radius: 25px;*/
/*    padding: 12px 30px;*/
/*    font-weight: 600;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.hero-buttons .btn:hover {*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);*/
/*}*/

/* Specific styling for Watch Our Story button */
/*.hero-buttons .btn-outline-light {*/
/*    background: var(--dark-purple);*/
/*    color: white;*/
/*    border: 2px solid var(--dark-purple);*/
/*}*/

/*.hero-buttons .btn-outline-light:hover {*/
/*    background: white;*/
/*    color: var(--dark-purple);*/
/*    border: 2px solid var(--dark-purple);*/
/*}*/

/* Hero Image */
/*.hero-image {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: flex-start;*/
/*    height: 100%;*/
/*    padding-top: 40px;*/
/*}*/

/*.hero-main-image {*/
/*    max-width: 100%;*/
/*    height: auto;*/
/*    max-height: 550px;*/
/*    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));*/
/*    object-fit: contain;*/
/*    object-position: center top;*/
/*}*/

/* Responsive adjustments */
/*@media (max-width: 992px) {*/
/*    .hero-main-image {*/
/*        max-width: 70%;*/
/*    }*/
/*}*/

/*@media (max-width: 768px) {*/
/*    .hero-main-image {*/
/*        max-width: 60%;*/
/*        margin-top: 30px;*/
/*    }*/
/*}*/

/*@media (max-width: 576px) {*/
/*    .hero-main-image {*/
/*        max-width: 80%;*/
/*    }*/
/*}*/

/*.hero-wave {*/
/*    position: absolute;*/
/*    bottom: -1px;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 50px;*/
/*    background: white;*/
/*}*/

/* Statistics Section */
.stats-section {
    padding: 40px 0 40px 0;
    position: relative;
    z-index: 10;
    background: #f0f0f0;
    margin-top: -50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.stat-item {
    padding: 30px 20px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 15px 0 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Features Section */
.features-section {
    padding: var(--section-padding) 0;
    background-color:#f1f1f1;
}


.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.feature-description {
    color: #666;
    margin-bottom: 20px;
}

.feature-link {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-link:hover {
    color: var(--light-purple);
}

/* Testimonial Section */
.testimonial-section {
    padding: var(--section-padding) 0;
}

.testimonial-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #555;
    line-height: 1.8;
    position: relative;
    padding-left: 30px;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--primary-purple);
    opacity: 0.3;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: #333;
}

.author-title {
    color: #666;
}

.testimonial-image img {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.cta-section {
    /* background: linear-gradient(135deg, var(--pink-gradient-start) 0%, var(--pink-gradient-end) 100%); */
    background: #725CAD;
    padding: var(--section-padding) 0;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.cta-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
}

.cta-buttons .btn {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Newsletter Section */
.newsletter-section {
    background: var(--dark-purple);
    padding: 40px 0;
}

.newsletter-title {
    font-weight: 600;
    margin: 0;
}

.newsletter-subtitle {
    font-size: 0.95rem;
    margin: 0;
}

.newsletter-form .form-control {
    border-radius: 25px 0 0 25px;
    border: none;
    padding: 12px 20px;
}

.newsletter-form .btn {
    border-radius: 0 25px 25px 0;
    padding: 12px 25px;
    font-weight: 600;
}


/* Partners Section Animations */
@keyframes infiniteScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partners-section .container {
    overflow: hidden;
    position: relative;
}

.partners-carousel {
    display: flex;
    animation: infiniteScroll 20s linear infinite;
    width: fit-content;
}

.partner-logo {
    min-width: 250px;
    max-width: 250px;
    margin-right: 30px;
    flex-shrink: 0;
}

.partner-placeholder {
    transition: transform 0.3s ease;
    width: 100%;
    height: 120px;
}

.partner-placeholder:hover {
    transform: translateY(-5px);
}

/* Pause animation on hover */
.partners-carousel:hover {
    animation-play-state: paused;
}

/* CSS Version: 1749194900 */

/* Announcement Bar */
.announcement-bar, .announcement-bar *, .announcement-content, .announcement-content * {
    color: #ffffff !important;
}

/* Section Titles */
.footer-section-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Links Lists */
.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffd700;
}

/* Contact List */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-item i {
    color: #ffd700;
    width: 16px;
    font-size: 0.9rem;
}

.footer-contact-item a,
.footer-contact-item span {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

/* RESPONSIVE FOOTER WITH FLEXBOX */
.footer-section {
    background: #1a0f3a;
    padding: 40px 0 20px;
    color: white;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: flex-start;
}

.footer-column {
    flex: 0 1 20%;
    min-width: 160px;
    max-width: 220px;
}

.footer-column.brand {
    flex: 0 1 30%;
    min-width: 240px;
    max-width: 350px;
    display: flex !important;
    flex-direction: column !important;
}

.footer-brand-link {
    display: flex !important;
    align-items: center !important;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px !important;
    width: 100% !important;
    order: 1 !important;
}

.footer-brand-logo {
    width: 42px;
    height: 30px;
    margin-right: 12px;
    flex-shrink: 0;
}

.footer-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px !important;
    width: 100% !important;
    display: block !important;
    font-weight: normal;
    order: 2 !important;
}

.footer-social-links {
    display: flex !important;
    gap: 12px;
    margin-top: auto !important;
    order: 3 !important;
}

.footer-social-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    color: #ffd700;
}

.footer-column-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 0;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffd700;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-icon {
    color: #ffd700;
    width: 16px;
    font-size: 0.9rem;
}

.footer-contact-link,
.footer-contact-text {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: #ffd700;
}

.footer-contact-button {
    margin-top: 15px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-size: 0.9rem;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: #ffd700;
}

/* Responsive Design */
@media (max-width: 1000px) {
    .footer-column {
        flex: 0 1 45%;
        min-width: 200px;
    }
    
    .footer-column.brand {
        flex: 0 1 100%;
        min-width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        gap: 15px;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-column {
        flex: 1;
        min-width: 120px;
        max-width: none;
        font-size: 0.85rem;
    }
    
    .footer-column.brand {
        flex: 0 1 35%;
        min-width: 140px;
        max-width: none;
        margin-bottom: 0;
    }
    
    .footer-brand-link {
        font-size: 1.1rem;
    }
    
    .footer-description {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .footer-column-title {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .footer-link {
        font-size: 0.8rem;
        padding: 3px 0;
    }
    
    .footer-contact-item {
        margin-bottom: 8px;
    }
    
    .footer-contact-link,
    .footer-contact-text {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .footer-legal-links {
        justify-content: center;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        gap: 10px;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-column {
        flex: 1;
        min-width: 90px;
        max-width: none;
        font-size: 0.8rem;
    }
    
    .footer-column.brand {
        flex: 0 1 30%;
        min-width: 100px;
        max-width: none;
    }
    
    .footer-brand-link {
        font-size: 1rem;
    }
    
    .footer-brand-logo {
        width: 30px;
        height: 22px;
        margin-right: 6px;
    }
    
    .footer-description {
        font-size: 0.75rem;
    }
    
    .footer-column-title {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .footer-link,
    .footer-contact-link,
    .footer-contact-text {
        font-size: 0.8rem;
    }
    
    .footer-social-link {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .footer-section .container .footer-horizontal-forced,
    .footer-horizontal-forced {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 2px !important;
        width: 100% !important;
        align-items: flex-start !important;
    }
    
    .footer-section .footer-horizontal-forced .footer-col-1,
    .footer-section .footer-horizontal-forced .footer-col-2, 
    .footer-section .footer-horizontal-forced .footer-col-3,
    .footer-section .footer-horizontal-forced .footer-col-4,
    .footer-col-1,
    .footer-col-2, 
    .footer-col-3,
    .footer-col-4 {
        padding: 0 1px !important;
        flex: 1 !important;
        min-width: 0 !important;
        display: block !important;
        width: auto !important;
        max-width: none !important;
    }
    
    .footer-links-horizontal li {
        font-size: 0.6rem !important;
        margin-bottom: 0.1rem !important;
    }
    
    .footer-links-horizontal a {
        font-size: 0.6rem !important;
    }
    
    .footer-brand-logo {
        width: 30px !important;
        height: 22px !important;
    }
}

/* Extra small screens - maintain horizontal layout */
@media (max-width: 480px) {
    .footer-horizontal-forced {
        gap: 1px !important;
        overflow-x: hidden !important;
    }
    
    .footer-col-1,
    .footer-col-2, 
    .footer-col-3,
    .footer-col-4 {
        padding: 0 1px !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }
    
    .footer-col-1 h5,
    .footer-col-2 h6,
    .footer-col-3 h6,
    .footer-col-4 h6 {
        font-size: 0.65rem !important;
        margin-bottom: 0.2rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    
    .footer-links-horizontal li {
        font-size: 0.55rem !important;
        margin-bottom: 0.05rem !important;
        line-height: 1.1 !important;
    }
    
    .footer-links-horizontal a {
        font-size: 0.55rem !important;
        line-height: 1.1 !important;
    }
    
    .footer-brand-logo {
        width: 24px !important;
        height: 18px !important;
        margin-right: 3px !important;
    }
}

/* Very small screens - ultra compact horizontal layout */
@media (max-width: 360px) {
    .footer-horizontal-forced {
        gap: 0px !important;
    }
    
    .footer-col-1,
    .footer-col-2, 
    .footer-col-3,
    .footer-col-4 {
        padding: 0 !important;
    }
    
    .footer-col-1 h5,
    .footer-col-2 h6,
    .footer-col-3 h6,
    .footer-col-4 h6 {
        font-size: 0.6rem !important;
        margin-bottom: 0.1rem !important;
    }
    
    .footer-links-horizontal li {
        font-size: 0.5rem !important;
        margin-bottom: 0.02rem !important;
        line-height: 1.0 !important;
    }
    
    .footer-links-horizontal a {
        font-size: 0.5rem !important;
        line-height: 1.0 !important;
    }
    
    .footer-brand-logo {
        width: 20px !important;
        height: 15px !important;
        margin-right: 2px !important;
    }
    

    .footer-col-2 .footer-links-horizontal li:nth-child(n+4),
    .footer-col-3 .footer-links-horizontal li:nth-child(n+3),
    .footer-col-4 .footer-links-horizontal li:nth-child(n+2) {
        display: none !important;
    }
}

.footer-heading-responsive {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-links-compact {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links-compact li {
    margin-bottom: 0.3rem;
    font-size: 0.8rem;
}

.footer-links-compact a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.8rem;
}

.footer-links-compact a:hover {
    color: #ffd700;
}

.footer-contact-compact {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-contact-compact li {
    font-size: 0.75rem;
    margin-bottom: 0.2rem;
}

.contact-link-responsive {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.75rem;
}

.contact-link-responsive:hover {
    color: #ffd700;
}

.contact-text-responsive {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.75rem;
}

.brand-name-responsive {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Mobile specific adjustments */
@media (max-width: 576px) {
    
    .footer-heading-responsive {
        font-size: 0.7rem;
        margin-bottom: 0.3rem;
        font-weight: 700;
    }
    
    .footer-links-compact li {
        margin-bottom: 0.1rem;
        font-size: 0.6rem;
        line-height: 1.2;
    }
    
    .footer-links-compact a {
        font-size: 0.6rem;
        line-height: 1.2;
    }
    
    .footer-contact-compact li {
        font-size: 0.55rem;
        line-height: 1.2;
        margin-bottom: 0.1rem;
    }
    
    .contact-link-responsive {
        font-size: 0.55rem;
        line-height: 1.2;
    }
    
    .contact-text-responsive {
        font-size: 0.55rem;
        line-height: 1.2;
    }
    
    .brand-name-responsive {
        font-size: 0.65rem;
        line-height: 1.1;
    }
    
    .footer-brand-logo {
        width: 24px;
        height: 18px;
        margin-right: 4px;
    }
    
    .footer-description {
        display: none !important;
    }
    
    .social-links {
        display: none !important;
    }
}

/* Tablet adjustments */
@media (min-width: 577px) and (max-width: 768px) {
    .footer-heading-responsive {
        font-size: 0.85rem;
    }
    
    .footer-links-compact a {
        font-size: 0.75rem;
    }
    
    .contact-link-responsive {
        font-size: 0.7rem;
    }
}

.footer-logo {
    width: 50px;
    height: 40px;
    margin-right: 10px;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.contact-info i {
    color: var(--primary-purple);
    width: 16px;
}

.contact-icon {
    color: #FFC107 !important;
    font-size: 1rem;
}

.btn-get-in-touch {
    background: linear-gradient(135deg, #E91E63 0%, #9C27B0 100%);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-get-in-touch:hover {
    background: linear-gradient(135deg, #C2185B 0%, #7B1FA2 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
    color: white;
}

/* Programs Newsletter Section */
.newsletter-section-programs {
    position: relative;
    overflow: hidden;
}

.newsletter-form-programs .input-group {
    border-radius: 50px !important;
    overflow: hidden !important;
    background: white !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    border: none !important;
}
/* --- ICON AND BOX POSITIONS (This is what fixes the stacking) --- */
.animated-box.box-1 { 
    width: 60px; height: 60px; 
    top: 1px; left: 1px; /* START: Top-Left Corner (1px) */
    animation-delay: 0s; animation-duration: 18s; --shimmer-delay: 0.5s;
}
.animated-box.box-2 { 
    width: 80px; height: 80px; 
    top: 1px; right: 1px; /* START: Top-Right Corner (1px) */
    animation-delay: 1s; animation-duration: 18s; --shimmer-delay: 1.5s;
}
.animated-icon.icon-3 { 
    font-size: 50px; 
    top: 1px; left: 1px; /* START: Top-Left Corner (1px) */
    animation-delay: 2s; animation-duration: 15s; 
}
.animated-box.box-4 { 
    width: 70px; height: 70px; 
    top: 1px; right: 1px; /* START: Top-Right Corner (1px) */
    animation-delay: 3s; animation-duration: 18s; --shimmer-delay: 2s;
}

/* RANDOMIZED ENTRANCE (Default settings for the rest of the icons) */

.animated-icon.icon-1 { top: 20%; left: 80%; animation-delay: 4s; animation-duration: 15s; }
.animated-icon.icon-2 { bottom: 10%; left: 5%; animation-delay: 5s; animation-duration: 15s; }
.animated-icon.icon-5 { bottom: 30%; right: 5%; animation-delay: 6s; animation-duration: 15s; }
.animated-icon.icon-6 { top: 65%; left: 15%; animation-delay: 7s; animation-duration: 15s; }
.animated-icon.icon-7 { bottom: 25%; left: 45%; animation-delay: 8s; animation-duration: 15s; }
.animated-icon.icon-8 { top: 35%; right: 75%; animation-delay: 9s; animation-duration: 15s; }
.animated-icon.icon-9 { bottom: 50%; right: 50%; animation-delay: 10s; animation-duration: 15s; }
.animated-icon.icon-10 { top: 70%; left: 60%; animation-delay: 11s; animation-duration: 15s; }
.animated-box.box-5 { width: 90px; height: 90px; top: 50%; left: 40%; animation-delay: 12s; animation-duration: 18s; --shimmer-delay: 1s;}
.animated-box.box-6 { width: 40px; height: 40px; top: 5%; right: 30%; animation-delay: 13s; animation-duration: 18s; --shimmer-delay: 2.5s;}
.animated-icon.icon-4 { top: 5%; left: 50%; animation-delay: 14s; animation-duration: 15s; }
.animated-icon.icon-11 { top: 15%; left: 35%; animation-delay: 15s; animation-duration: 15s; }
.animated-icon.icon-12 { bottom: 15%; right: 35%; animation-delay: 16s; animation-duration: 15s; }
.animated-icon.icon-13 { top: 85%; left: 5%; animation-delay: 17s; animation-duration: 15s; }
.animated-icon.icon-14 { bottom: 80%; right: 5%; animation-delay: 18s; animation-duration: 15s; }
.animated-icon.icon-15 { top: 55%; left: 5%; animation-delay: 19s; animation-duration: 15s; }
.animated-icon.icon-16 { bottom: 55%; right: 5%; animation-delay: 20s; animation-duration: 15s; }
.animated-icon.icon-17 { top: 45%; left: 75%; animation-delay: 21s; animation-duration: 15s; }
.animated-icon.icon-18 { bottom: 40%; left: 80%; animation-delay: 22s; animation-duration: 15s; }
.animated-icon.icon-19 { top: 75%; right: 20%; animation-delay: 23s; animation-duration: 15s; }
.animated-icon.icon-20 { bottom: 5%; left: 55%; animation-delay: 24s; animation-duration: 15s; }

/* Ensure content stays on top of the animation background */
.gallery-hero-section .container { z-index: 10; position: relative; }
/* Gallery Styles */
.gallery-hero-section {
        background: linear-gradient(135deg, var(--pink-gradient-start) 0%, hsl(330 -20% -55% / 1) 100%);
    padding: 100px 0 80px;
    margin-top: 1px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.gallery-hero-section .hero-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.gallery-hero-section .hero-description {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.05rem;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    line-height: 1.6;
}

.gallery-section {
    background: #f8f9fa;
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(74, 21, 75, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.gallery-content h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.gallery-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.gallery-image {
  width: 100%;
  height: 250px; /* Adjust height as per your design */
  object-fit: cover;
  border-radius: 12px; /* Optional rounded corners */
}

.cta-section-gallery {
    background: linear-gradient(135deg, var(--pink-gradient-start) 0%, var(--pink-gradient-end) 100%);
    position: relative;
}

/* Gallery Responsive Styles */
@media (max-width: 1200px) {
    .gallery-hero-section {
        padding: 90px 0 70px;
        min-height: 360px;
    }
    
    .gallery-hero-section h1 {
        font-size: 2.5rem;
    }
    
    .gallery-image {
        height: 220px;
    }
}

@media (max-width: 992px) {
    .gallery-hero-section {
        padding: 80px 0 60px;
        min-height: 320px;
    }
    
    .gallery-hero-section h1 {
        font-size: 2.2rem;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .gallery-content h5 {
        font-size: 1.2rem;
    }
    
    .cta-section-gallery {
        padding: 60px 0;
    }
    
    .cta-section-gallery h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .gallery-hero-section {
        padding: 70px 0 50px;
        margin-top: 100px;
        min-height: 280px;
    }
    
    .gallery-hero-section h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .gallery-hero-section .hero-subtitle {
        font-size: 1rem;
    }
    
    .gallery-hero-section .hero-description {
        font-size: 0.95rem;
    }
    
    .gallery-hero-section .hero-description {
        font-size: 0.95rem;
    }
    
    .gallery-image {
        height: 180px;
    }
    
    .gallery-item {
        margin-bottom: 20px;
    }
    
    .gallery-content {
        padding: 15px;
    }
    
    .gallery-content h5 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .gallery-content p {
        font-size: 0.85rem;
    }
    
    .cta-section-gallery {
        padding: 50px 0;
    }
    
    .cta-section-gallery h2 {
        font-size: 1.7rem;
        margin-bottom: 20px;
    }
    
    .cta-section-gallery p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .gallery-hero-section {
        padding: 40px 0 20px;
        margin-top: 90px;
        min-height: 200px;
    }
    
    .gallery-hero-section h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .gallery-hero-section .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .gallery-hero-section .hero-description {
        font-size: 0.85rem;
    }
    
    .gallery-hero-section .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .gallery-hero-section .hero-description {
        font-size: 0.9rem;
    }
    
    .gallery-section {
        padding: 40px 0;
    }
    
    .gallery-image {
        height: 160px;
    }
    
    .gallery-item {
        margin-bottom: 15px;
    }
    
    .gallery-content {
        padding: 12px;
    }
    
    .gallery-content h5 {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .gallery-content p {
        font-size: 0.8rem;
    }
    
    .cta-section-gallery {
        padding: 40px 0;
    }
    
    .cta-section-gallery h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .cta-section-gallery p {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .cta-section-gallery .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    

    .newsletter-section {
        padding: 40px 0;
        background: var(--dark-purple) !important;
    }
    
    .newsletter-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
        color: white !important;
    }
    
    .newsletter-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    .newsletter-form .input-group {
        max-width: 100%;
        margin: 0;
    }
    
    .newsletter-form .form-control {
        padding: 15px 20px;
        font-size: 1rem;
        border-radius: 25px 0 0 25px;
    }
    
    .newsletter-form .btn {
        padding: 15px 25px;
        font-size: 1rem;
        border-radius: 0 25px 25px 0;
    }
}

@media (max-width: 480px) {
    .gallery-hero-section {
        padding: 35px 0 20px;
        margin-top: px;
        min-height: 160px;
    }
    
    .gallery-hero-section h1 {
        font-size: 1.4rem;
    }
    
    .gallery-image {
        height: 140px;
    }
    
    .gallery-content h5 {
        font-size: 0.95rem;
    }
    
    .gallery-content p {
        font-size: 0.75rem;
    }
    
    .cta-section-gallery h2 {
        font-size: 1.3rem;
    }
    
    .cta-section-gallery .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* iPhone specific breakpoints */
@media (max-width: 414px) and (min-width: 376px) {
    .gallery-hero-section {
        padding: 30px 0 15px;
        margin-top: 80px;
        min-height: 160px;
    }
    
    .gallery-hero-section h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .gallery-hero-section .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .gallery-hero-section .hero-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 390px) and (min-width: 361px) {
    .gallery-hero-section {
        padding: 28px 0 15px;
        margin-top: 0px;
        min-height: 150px;
    }
    
    .gallery-hero-section h1 {
        font-size: 1.45rem;
        line-height: 1.2;
    }
    
    .gallery-hero-section .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .gallery-hero-section .hero-description {
        font-size: 0.75rem;
    }
}

@media (max-width: 375px) and (min-width: 321px) {
    .gallery-hero-section {
        padding: 25px 0 15px;
        margin-top: 80px;
        min-height: 140px;
    }
    
    .gallery-hero-section h1 {
        font-size: 1.4rem;
        line-height: 1.2;
    }
    
    .gallery-hero-section .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .gallery-hero-section .hero-description {
        font-size: 0.75rem;
    }
}

@media (max-width: 320px) {
    .gallery-hero-section {
        padding: 22px 0 12px;
        margin-top: 80px;
        min-height: 130px;
    }
    
    .gallery-hero-section h1 {
        font-size: 1.3rem;
        line-height: 1.2;
    }
    
    .gallery-hero-section .hero-subtitle {
        font-size: 0.75rem;
    }
    
    .gallery-hero-section .hero-description {
        font-size: 0.7rem;
    }
    
    .gallery-image {
        height: 120px;
    }
    
    .gallery-content {
        padding: 10px;
    }
    
    .cta-section-gallery h2 {
        font-size: 1.2rem;
    }
    
    .cta-section-gallery p {
        font-size: 0.85rem;
    }
}

.newsletter-input {
    border: none !important;
    padding: 15px 25px !important;
    font-size: 1rem !important;
    background: transparent !important;
    box-shadow: none !important;
}

.newsletter-input:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.newsletter-subscribe-btn {
    background: #FFC107 !important;
    border: none !important;
    color: #333 !important;
    padding: 15px 30px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

.newsletter-subscribe-btn:hover {
    background: #FFB300 !important;
    color: #333 !important;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255, 193, 7, 0.3);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-size: 0.9rem;
}

.footer-description {
    line-height: 1.8;
    max-width: 100%;
    word-wrap: normal;
    white-space: normal;
    overflow-wrap: normal;
    font-weight: normal;
    word-break: normal;
    hyphens: none;
}

.social-links .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links .social-link:hover {
    background: var(--primary-purple);
    transform: translateY(-2px);
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-white-75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    color: var(--text-white-75);
    margin-bottom: 12px;
}

.footer-contact a {
    color: var(--text-white-75);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: white;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 30px;
}

.footer-copyright {
    font-size: 0.9rem;
}

.footer-legal a {
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white !important;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding-top: 140px;
    }
    
    .contact-info {
        padding: 5px 0;
    }
    
    .top-contact-bar {
        padding: 5px 0;
    }
    
    .main-nav-content {
        padding: 8px 15px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .hero-buttons {
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .feature-card {
        margin-bottom: 30px;
    }
    
    .hero-section {
        min-height: 80vh;
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .hero-content {
        margin-top: 20px;
    }
    

    .footer-brand {
        width: 100%;
        min-width: 0;
    }
    
    .footer-brand h5 {
        font-size: 1.2rem;
        line-height: 1.4;
        width: 100%;
    }
    
    .footer-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        width: 100%;
        min-width: 0;
    }
    
    .footer-section {
        padding: 40px 0 20px;
    }
    
    .footer-section .col-lg-4 {
        width: 100%;
        min-width: 0;
    }
    

    .contact-text {
        opacity: 0 !important;
        position: absolute !important;
        background: var(--dark-purple) !important;
        padding: 5px 10px !important;
        border-radius: 5px !important;
        white-space: nowrap !important;
        z-index: 1000 !important;
        top: 100% !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        pointer-events: none !important;
        font-size: 0.7rem !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
    }
    
    .contact-item:hover .contact-text {
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .top-contact-bar {
        padding: 4px 0;
    }
    
    .stats-section {
        margin-top: 20px;
    }
    
    .section-title {
        margin-top: 20px;
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    

    .newsletter-section {
        padding: 50px 0 !important;
        background: var(--dark-purple) !important;
        margin: 0 !important;
    }
    
    .newsletter-section .container {
        padding: 0 20px !important;
    }
    
    .newsletter-section .row {
        margin: 0 !important;
    }
    
    .newsletter-section .col-lg-6 {
        padding: 0 !important;
        margin-bottom: 25px !important;
    }
    
    .newsletter-title {
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
        color: white !important;
        text-align: center !important;
        font-weight: 600 !important;
    }
    
    .newsletter-subtitle {
        font-size: 1rem !important;
        margin-bottom: 30px !important;
        color: rgba(255, 255, 255, 0.9) !important;
        text-align: center !important;
        line-height: 1.5 !important;
        padding: 0 10px !important;
    }
    
    .newsletter-form {
        padding: 0 10px !important;
    }
    
    .newsletter-form .input-group {
        flex-direction: column !important;
        max-width: 100% !important;
        margin: 0 !important;
        background: none !important;
    }
    
    .newsletter-form .form-control {
        border-radius: 25px !important;
        margin-bottom: 15px !important;
        padding: 15px 20px !important;
        font-size: 1rem !important;
        border: none !important;
        background: white !important;
        width: 100% !important;
    }
    
    .newsletter-form .btn {
        border-radius: 25px !important;
        width: 100% !important;
        padding: 15px 25px !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        background: #FFC107 !important;
        border: none !important;
        color: #333 !important;
    }
    
    .hero-section {
        min-height: 70vh;
        padding-top: 90px;
        padding-bottom: 30px;
    }
    
    .hero-content {
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .hero-title {
        margin-top: 15px;
        font-family: "Poppins", sans-serif;
    }
    
    .stats-section {
        margin-top: 30px;
        padding-top: 40px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-top: 10px;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    

    .footer-brand {
        width: 100% !important;
        max-width: 100% !important;
        overflow: visible !important;
    }
    
    .footer-brand h5 {
        font-size: 1.1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .footer-brand-logo {
        width: 35px;
        height: 35px;
    }
    
    .footer-description {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
        text-align: left;
        word-wrap: normal !important;
        white-space: normal !important;
        overflow-wrap: normal !important;
        word-break: normal !important;
        hyphens: none !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
        overflow: visible !important;
    }
    
    .footer-section .col-lg-4 {
        margin-bottom: 2rem;
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
    }
    
    .footer-section .col-lg-2,
    .footer-section .col-lg-3 {
        margin-bottom: 1.5rem;
    }
}

/* Animation for smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Focus states for accessibility */
.btn:focus,
.form-control:focus {
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.25);
    outline: none;
}

/* About Us Page Styles */
.about-hero-section {
    background: linear-gradient(135deg, #A855F7 0%, #EC4899 50%, #F472B6 100%);
    position: relative;
    overflow: hidden;
    padding: 0;
    margin-bottom: 0;
    height: auto;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.3) 0%, 
        rgba(255,255,255,0.1) 30%, 
        rgba(255,255,255,0.05) 60%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.about-hero-section .container {
    position: relative;
    z-index: 2;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
}

.unlocking-section {
    background: #f8f9fa;
    padding: 80px 0;
    margin-top: 0;
}

.feature-box {
    padding: 20px 0;
}

.feature-icon-small {
    font-size: 2rem;
}

.feature-title-small {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.feature-desc-small {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Timeline Section */
.timeline-section {
    background: linear-gradient(135deg, #6B46C1 0%, #9333EA 100%);
    padding: 80px 0;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #22C55E 0%, #16A34A 30%, #06B6D4 50%, #3B82F6 70%, #EF4444 85%, #F59E0B 100%);
    border-radius: 3px;
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: 120px;
    display: flex;
    align-items: center;
    min-height: 120px;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #1F2937;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10;
    border: 3px solid white;
}

.timeline-content {
    width: 380px;
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 120px;
    margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 120px;
    margin-right: 0;
}

.timeline-node {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.timeline-item:nth-child(1) .timeline-node {
    background: linear-gradient(135deg, #22C55E, #16A34A);
}

.timeline-item:nth-child(2) .timeline-node {
    background: linear-gradient(135deg, #06B6D4, #0891B2);
}

.timeline-item:nth-child(3) .timeline-node {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
}

.timeline-item:nth-child(4) .timeline-node {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.timeline-item:nth-child(5) .timeline-node {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.timeline-item:nth-child(6) .timeline-node {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.timeline-node i {
    font-size: 2rem;
    color: white;
}

.timeline-content h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.4rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
}

.timeline-content h4 i {
    margin-right: 12px;
    background: linear-gradient(135deg, #FDE047, #F59E0B);
    color: #1F2937;
    padding: 8px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.timeline-badge {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.timeline-badge::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.5s ease;
}

.timeline-badge:hover::before {
    left: 100%;
}

.timeline-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.timeline-item:nth-child(1) .timeline-badge {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.timeline-item:nth-child(2) .timeline-badge {
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.timeline-item:nth-child(3) .timeline-badge {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.timeline-item:nth-child(4) .timeline-badge {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.timeline-item:nth-child(5) .timeline-badge {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.timeline-item:nth-child(6) .timeline-badge {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

/* Founding Members Section */
.founding-members-section {
    background: #f0fdf4;
}

.member-card {
    padding: 35px 25px;
    background: #fafafa;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.15);
    background: #f8f8f8;
}

/* Founding Members and Advisory Board image scaling 
   Updated: June 6, 2025 - Applied consistent 1.1x scaling to all founding member and advisory board images
   for better visibility and consistency within circular frames
*/
.founding-members-section .member-image img,
.advisory-board-section .member-image img {
    transform: scale(1.1);
}

/* Specific adjustment for Prof. Narendra Singh's image 
   Updated: June 6, 2025 - Fine-tuned positioning to show complete head within circular frame
   - Scale: 1.1x (consistent with other founding members)
   - Position: 50% vertical (balanced to show top of head and complete face)
   - Previous iterations: 70% -> 85% -> 60% -> 45% -> 40% -> 55% -> final 50%
*/
.founding-members-section .member-image img[alt="Prof. Narendra Singh"] {
    transform: scale(1.1);
    object-position: center 25%;
}

.member-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0; /* Prevent shrinking */
    transition: border-color 0.3s ease;
}

.member-card:hover .member-image {
    border-color: #6f42c1;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Specific styling for Core Team section to ensure uniform dimensions */
.core-team-section .member-image {
    width: 140px !important;
    height: 140px !important;
    min-width: 140px;
    min-height: 140px;
    max-width: 140px;
    max-height: 140px;
    margin: 0 auto 25px;
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: block;
    position: relative;
    transition: border-color 0.3s ease;
}

.core-team-section .member-card:hover .member-image {
    border-color: #6f42c1;
}

.core-team-section .member-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

/* Specific styling for Sourabh Pithode's image - already circular */
.core-team-section .member-image img[alt="Sourabh Pithode"] {
    transform: scale(1.15);
    object-position: center center;
}

/* Specific styling for Uphar Mishra's image */
.core-team-section .member-image img[alt="Uphar Mishra"] {
    transform: scale(1.2);
    object-position: center 30%;
}

/* Specific styling for Sunil Kumar's image */
.core-team-section .member-image img[alt="Sunil Kumar"] {
    transform: scale(1.1);
    object-position: center 25%;
}

/* Specific styling for Yash Shrivastava's image */
.core-team-section .member-image img[alt="Yash Shrivastava"] {
    transform: scale(1.1);
    object-position: center 20%;
}

/* Specific styling for Sai Abhishek's image */
.core-team-section .member-image img[alt="Sai Abhishek Chaganti"] {
    transform: scale(1.0);
    object-position: center 30%;
}

/* Specific styling for Shrutika Kanojia's image */
.core-team-section .member-image img[alt="Shrutika Kanojia"] {
    transform: scale(1.2);
    object-position: center 5%;
}



/* Core Team member cards with proper height and text containment */
.core-team-section .member-card {
    padding: 30px 20px;
    background: #fafafa;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 380px !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border: 1px solid rgba(139, 92, 246, 0.1);
    overflow: hidden;
}

.core-team-section .member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.15);
    background: #f8f8f8;
}

/* Core Team text styling for better containment */
.core-team-section .member-name {
    font-weight: 700;
    color: #2d1b69;
    margin-bottom: 8px;
    font-size: 1.2rem;
    line-height: 1.3;
}

.core-team-section .member-title {
    color: #8B5CF6;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.3;
}

.core-team-section .member-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.5;
    /* flex-grow: 1; */
    /* display: flex; */
    /* align-items: flex-start; */
    /* text-align: flex-start; */
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.member-name {
    font-weight: 700;
    color: #2d1b69;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.member-title {
    color: #8B5CF6;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1rem;
}

.member-description {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
    flex-grow: 1;
    /* display: flex; */
    /* align-items: center; */
    /* text-align: center; */
    margin: 0;
}

/* Values Section */
.values-section {
    background: #faf5ff;
}

.value-card {
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.value-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.value-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* About CTA Section */
.about-cta-section {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--light-purple) 100%);
    padding: 80px 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .progressive-navbar .main-nav {
        padding: 10px 0;
    }
    
    .progressive-navbar .navbar-brand {
        font-size: 1.3rem;
    }
    
    .mobile-menu-toggle {
        padding: 5px;
    }
    
    .mobile-menu {
        top: 100%;
        padding: 20px;
    }
    
    .mobile-menu a {
        padding: 12px 0;
        font-size: 1rem;
    }
    

    .hero-section .d-flex {
        min-height: 100px !important;
        padding: 60px 15px 0 15px !important;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem !important;
        max-width: 100% !important;
    }
    

    .unlocking-section {
        padding: 60px 0 !important;
    }
    
    .feature-box {
        margin-bottom: 30px;
    }
    

    .timeline-section {
        padding: 60px 0 !important;
    }
    
    .timeline::before {
        left: 30px;
        width: 4px;
    }
    
    .timeline {
        max-width: 100%;
        padding: 0 15px;
        margin: 0;
    }
    
    .timeline-item {
        flex-direction: row !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        margin-left: 0;
        margin-bottom: 80px;
        position: relative;
    }
    
    .timeline-content {
        width: calc(100% - 80px) !important;
        margin: 0 0 0 80px !important;
        padding: 25px 20px;
        position: relative;
    }
    
    .timeline-content h4 {
        font-size: 1.3rem;
        flex-direction: row;
        text-align: left;
        align-items: center;
    }
    
    .timeline-content h4 i {
        margin-bottom: 0;
        margin-right: 12px;
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .timeline-node {
        left: 30px !important;
        top: 30px !important;
        width: 50px;
        height: 50px;
        transform: translate(-50%, 0);
        position: absolute;
    }
    
    .timeline-node i {
        font-size: 1.3rem;
    }
    
    .timeline-year {
        left: 30px;
        top: 90px;
        transform: translateX(-50%);
        font-size: 0.75rem;
        padding: 4px 10px;
        position: absolute;
    }
    
    .timeline-badge {
        padding: 8px 16px;
        font-size: 0.75rem;
        margin-top: 15px;
    }
    

    .member-card {
        height: auto !important;
        margin-bottom: 30px;
        padding: 25px 20px;
    }
    
    .member-image {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }
    
    .member-name {
        font-size: 1.1rem;
    }
    
    /* .member-description {
        font-size: 0.8rem;
        align-items: flex-start;
    } */
    

    .value-card {
        margin-bottom: 30px;
        height: auto !important;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Large Desktop Responsive */
@media (max-width: 1440px) and (min-width: 1201px) {
    .hero-section .d-flex {
        min-height: 140px !important;
        padding: 90px 20px 0 20px !important;
    }
    
    .hero-title {
        font-size: 3.2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.15rem !important;
    }
}

/* Tablet and Small Desktop Responsive */
@media (max-width: 1200px) and (min-width: 1025px) {
    .hero-section .d-flex {
        min-height: 130px !important;
        padding: 75px 20px 0 20px !important;
    }
    
    .hero-title {
        font-size: 3rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
}

/* Small Tablet Portrait */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-section .d-flex {
        min-height: 120px !important;
        padding: 65px 20px 0 20px !important;
    }
    
    .hero-title {
        font-size: 2.8rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.05rem !important;
    }
}

/* Timeline adjustments for different screen sizes */
@media (max-width: 1440px) and (min-width: 1025px) {
    .timeline-content {
        width: 320px;
        padding: 22px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        margin-right: 110px;
        margin-left: 0;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 110px;
        margin-right: 0;
    }
    
    .timeline-node {
        width: 75px;
        height: 75px;
    }
    
    .timeline-year {
        font-size: 0.9rem;
        padding: 7px 15px;
    }
    
    .member-card {
        height: 400px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .timeline-content {
        width: 280px;
        padding: 18px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        margin-right: 90px;
        margin-left: 0;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 90px;
        margin-right: 0;
    }
    
    .timeline-node {
        width: 65px;
        height: 65px;
    }
    
    .timeline-year {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
    
    .member-card {
        height: 360px;
    }
}

/* Small Tablet Responsive */
@media (max-width: 900px) and (min-width: 769px) {
    .timeline-content {
        width: 250px;
        padding: 18px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content {
        margin-right: 90px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 90px;
    }
    
    .timeline-content h4 {
        font-size: 1.1rem;
    }
    
    .timeline-content h4 i {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
}

/* Custom scrollbar
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-purple);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--light-purple);
} */

/* About Hero Responsive Styles */
.about-hero-responsive {
    padding-top: 200px;
    padding-bottom: 60px;
}

/* Large Desktop */
@media (min-width: 1441px) {
    .about-hero-responsive {
        padding-top: 240px;
        padding-bottom: 80px;
    }
    
    .about-hero-responsive .hero-title {
        font-size: 4.5rem !important;
        line-height: 1.1;
    }
    
    .about-hero-responsive .hero-subtitle {
        font-size: 1.4rem !important;
        line-height: 1.7;
        max-width: 900px;
        margin: 0 auto;
    }
}

/* Desktop */
@media (max-width: 1440px) and (min-width: 1201px) {
    .about-hero-responsive {
        padding-top: 220px;
        padding-bottom: 70px;
    }
    
    .about-hero-responsive .hero-title {
        font-size: 4rem !important;
        line-height: 1.1;
    }
    
    .about-hero-responsive .hero-subtitle {
        font-size: 1.3rem !important;
        line-height: 1.7;
        max-width: 850px;
        margin: 0 auto;
    }
}

/* Medium Desktop */
@media (max-width: 1200px) and (min-width: 1025px) {
    .about-hero-responsive {
        padding-top: 180px;
        padding-bottom: 60px;
    }
    
    .about-hero-responsive .hero-title {
        font-size: 3.5rem !important;
        line-height: 1.2;
    }
    
    .about-hero-responsive .hero-subtitle {
        font-size: 1.2rem !important;
        line-height: 1.6;
        max-width: 800px;
        margin: 0 auto;
    }
}

/* Small Desktop / Large Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .about-hero-responsive {
        padding-top: 120px;
        padding-bottom: 30px;
    }
    
    .about-hero-responsive .hero-title {
        font-size: 3rem !important;
        line-height: 1.2;
        margin-bottom: 18px;
    }
    
    .about-hero-responsive .hero-subtitle {
        font-size: 1.15rem !important;
        line-height: 1.5;
        max-width: 700px;
        margin: 0 auto;
    }
}

/* Tablet */
@media (max-width: 768px) and (min-width: 481px) {
    .about-hero-responsive {
        padding-top: 100px;
        padding-bottom: 20px;
    }
    
    .about-hero-responsive .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.1;
        margin-bottom: 15px;
    }
    
    .about-hero-responsive .hero-subtitle {
        font-size: 1.05rem !important;
        line-height: 1.4;
        max-width: 600px;
        margin: 0 auto;
        padding: 0 15px;
    }
}

/* iPhone Pro Max & Similar Large Phones */
@media (max-width: 480px) and (min-width: 415px) {
    .about-hero-responsive {
        padding-top: 80px;
        padding-bottom: 12px;
    }
    
    .about-hero-responsive .hero-title {
        font-size: 2.1rem !important;
        line-height: 1.1;
        margin-bottom: 10px;
    }
    
    .about-hero-responsive .hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.3;
        max-width: 420px;
        margin: 0 auto;
        padding: 0 18px;
    }
}

/* iPhone Standard & Similar Medium Phones */
@media (max-width: 414px) and (min-width: 376px) {
    .about-hero-responsive {
        padding-top: 75px;
        padding-bottom: 10px;
    }
    
    .about-hero-responsive .hero-title {
        font-size: 2rem !important;
        line-height: 1.1;
        margin-bottom: 8px;
    }
    
    .about-hero-responsive .hero-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.3;
        max-width: 380px;
        margin: 0 auto;
        padding: 0 16px;
    }
}

/* iPhone SE & Small Mobile */
@media (max-width: 375px) {
    .about-hero-responsive {
        padding-top: 70px;
        padding-bottom: 8px;
    }
    
    .about-hero-responsive .hero-title {
        font-size: 1.9rem !important;
        line-height: 1.1;
        margin-bottom: 6px;
    }
    
    .about-hero-responsive .hero-subtitle {
        font-size: 0.85rem !important;
        line-height: 1.25;
        max-width: 350px;
        margin: 0 auto;
        padding: 0 15px;
    }
}

/* Contact Page Responsive Styles */
.contact-hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    margin-top: 60px;
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Page Hero Section */
.contact-hero-section {
    background: linear-gradient(135deg, #e843c4 0%, #d63297 100%);
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    border-top: none;
    top: -10px;
}

/* Programs Page Hero Section */
.programs-hero-section {
    background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
    min-height: 500px;
    display: flex;
    align-items: center;
    border-top: none;
    top: -10px;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.3) 0%, 
        rgba(255,255,255,0.1) 30%, 
        rgba(255,255,255,0.05) 60%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.contact-hero-section .container {
    position: relative;
    z-index: 2;
}

.programs-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.3) 0%, 
        rgba(255,255,255,0.1) 30%, 
        rgba(255,255,255,0.05) 60%, 
        transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.programs-hero-section .container {
    position: relative;
    z-index: 2;
}

/* Programs Page Styles */
.hero-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.category-btn {
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 600;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.category-btn.active {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
}

.program-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.program-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(168, 85, 247, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.program-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.program-content {
    padding: 25px;
}

.program-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.program-subtitle {
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.program-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.program-details {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #666;
}

.detail-item i {
    color: var(--primary-purple);
    margin-right: 5px;
    font-size: 0.8rem;
}

.program-features {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.program-features li {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.program-features li::before {
    content: "•";
    color: var(--primary-purple);
    position: absolute;
    left: 0;
}

.program-highlights {
    margin-bottom: 25px;
}

.highlight-tag {
    display: inline-block;
    background: rgba(168, 85, 247, 0.1);
    color: var(--primary-purple);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin: 2px 5px 2px 0;
}

.program-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-enroll {
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 600;
    flex: 1;
    min-width: 120px;
}

.btn-learn-more {
    border: 2px solid var(--primary-purple);
    color: var(--primary-purple);
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 600;
    background: transparent;
    flex: 1;
    min-width: 120px;
}

.btn-learn-more:hover {
    background: var(--primary-purple);
    color: white;
}

.section-label {
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

.feature-item {
    padding: 30px 20px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 2rem;
}

.feature-item h4 {
    font-weight: 600;
    color: #333;
    margin: 20px 0 15px;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-item {
    padding: 20px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 20px;
    color: var(--primary-purple);
    font-size: 1.5rem;
}

.step-item h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.step-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.cta-buttons .btn {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1rem;
}

.newsletter-form .input-group {
    max-width: 400px;
    margin-left: auto;
}

.newsletter-form .form-control {
    border-radius: 25px 0 0 25px;
    border: none;
    padding: 12px 20px;
}

.newsletter-form .btn {
    border-radius: 0 25px 25px 0;
    padding: 12px 25px;
    font-weight: 600;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    width: 50px;
    height: 40px;
}

.brand-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: normal;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: var(--primary-purple);
    color: white;
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.contact-info i {
    color: var(--primary-purple);
    width: 20px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 40px 0 20px;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
    justify-content: end;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

.contact-hero-title {
    margin-top: 80px !important;
    padding-top: 40px !important;
}

/* Seamless connection between announcement bar and contact hero */
body .contact-hero {
    margin-top: 0 !important;
    border-top: none !important;
    position: relative !important;
    top: -10px !important;
}

@media (max-width: 1199px) {
    .contact-hero {
        padding: 0 0 60px !important;
        min-height: 280px !important;
    }
    
    .contact-hero-title {
        font-size: 2.8rem !important;
        margin-top: 70px !important;
        padding-top: 35px !important;
    }
    
    .contact-hero-subtitle {
        font-size: 1.15rem !important;
    }
}

@media (max-width: 991px) {
    .contact-hero {
        padding: 0 0 40px !important;
        min-height: 250px !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .contact-hero .container {
        width: 100% !important;
    }
    
    .contact-hero-title {
        font-size: 2.2rem !important;
        margin-top: 60px !important;
        margin-bottom: 15px !important;
        padding-top: 30px !important;
    }
    
    .contact-hero-subtitle {
        font-size: 1rem !important;
        max-width: 500px !important;
        padding: 0 20px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        padding: 0 0 35px !important;
        min-height: 220px !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .contact-hero .container {
        width: 100% !important;
    }
    
    .contact-hero-title {
        font-size: 1.8rem !important;
        margin-top: 50px !important;
        margin-bottom: 12px !important;
        line-height: 1.2 !important;
        padding: 25px 15px 0 15px;
    }
    
    .contact-hero-subtitle {
        font-size: 0.9rem !important;
        max-width: 400px !important;
        padding: 0 15px;
        line-height: 1.4 !important;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .contact-hero {
        padding: 0 0 40px !important;
        min-height: 200px !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .contact-hero .container {
        width: 100% !important;
    }
    
    .contact-hero-title {
        font-size: 1.5rem !important;
        margin-top: 40px !important;
        margin-bottom: 15px !important;
        line-height: 1.2 !important;
        padding: 20px 15px 0 15px;
    }
    
    .contact-hero-subtitle {
        font-size: 0.9rem !important;
        max-width: 320px !important;
        padding: 0 15px;
        line-height: 1.4 !important;
        margin: 0 auto;
    }
}

@media (max-width: 414px) {
    .contact-hero {
        padding: 0 0 35px !important;
        min-height: 180px !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .contact-hero .container {
        width: 100% !important;
    }
    
    .contact-hero-title {
        font-size: 1.3rem !important;
        margin-top: 35px !important;
        margin-bottom: 12px !important;
        padding: 18px 10px 0 10px;
        line-height: 1.2 !important;
    }
    
    .contact-hero-subtitle {
        font-size: 0.85rem !important;
        max-width: 280px !important;
        padding: 0 10px;
        margin: 0 auto;
        line-height: 1.3 !important;
    }
}

@media (max-width: 375px) {
    .contact-hero {
        padding: 0 0 30px !important;
        min-height: 160px !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .contact-hero .container {
        width: 100% !important;
    }
    
    .contact-hero-title {
        font-size: 1.2rem !important;
        margin-top: 30px !important;
        margin-bottom: 10px !important;
        padding: 15px 12px 0 12px;
        line-height: 1.2 !important;
    }
    
    .contact-hero-subtitle {
        font-size: 0.8rem !important;
        max-width: 260px !important;
        padding: 0 12px;
        margin: 0 auto;
        line-height: 1.3 !important;
    }
}

/* Contact Content Section Responsive */
@media (max-width: 991px) {
    .contact-content-section {
        padding: 50px 0 !important;
    }
}

@media (max-width: 767px) {
    .contact-content-section {
        padding: 30px 0 !important;
    }
    
    .contact-info-card {
        padding: 25px 20px !important;
        margin-bottom: 25px !important;
    }
    
    .contact-info-card h3 {
        font-size: 1.4rem !important;
        text-align: center !important;
        margin-bottom: 15px !important;
    }
    
    .contact-info-item {
        flex-direction: row !important;
        text-align: left !important;
        margin-bottom: 15px !important;
        padding: 12px !important;
    }
    
    .contact-info-icon {
        margin-right: 12px !important;
        width: 40px !important;
        height: 40px !important;
        flex-shrink: 0;
    }
    
    .contact-form-card {
        padding: 25px 20px !important;
    }
}

@media (max-width: 575px) {
    .contact-content-section {
        padding: 25px 0 !important;
    }
    
    .contact-info-card {
        padding: 20px 15px !important;
        margin-bottom: 20px !important;
    }
    
    .contact-info-card h3 {
        font-size: 1.3rem !important;
    }
    
    .contact-info-item {
        padding: 10px 8px !important;
        margin-bottom: 12px !important;
    }
    
    .contact-info-icon {
        width: 35px !important;
        height: 35px !important;
        margin-right: 10px !important;
    }
    
    .contact-form-card {
        padding: 20px 15px !important;
    }
    
    .form-control, .form-select, textarea {
        padding: 12px 15px !important;
        font-size: 0.9rem !important;
        border-radius: 8px !important;
    }
    
    .btn {
        padding: 12px 25px !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 414px) {
    .contact-content-section {
        padding: 20px 0 !important;
    }
    
    .contact-info-card {
        padding: 18px 12px !important;
        margin-bottom: 18px !important;
    }
    
    .contact-info-card h3 {
        font-size: 1.2rem !important;
    }
    
    .contact-info-item {
        padding: 8px 6px !important;
        margin-bottom: 10px !important;
        border-radius: 8px !important;
    }
    
    .contact-info-icon {
        width: 32px !important;
        height: 32px !important;
        margin-right: 8px !important;
    }
    
    .contact-form-card {
        padding: 18px 12px !important;
    }
    
    .form-control, .form-select, textarea {
        padding: 10px 12px !important;
        font-size: 0.85rem !important;
        border-radius: 6px !important;
    }
}

/* Contact Info Text Overflow Fix */
.contact-info-item {
    width: 100%;
    max-width: 100%;
}

.contact-info-item p {
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    white-space: normal;
    line-height: 1.4;
}

.contact-info-card {
    max-width: 100%;
    overflow: hidden;
}

@media (max-width: 991px) {
    .contact-info-item p {
        white-space: normal !important;
        word-break: break-word;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 767px) {
    .contact-info-item p {
        font-size: 0.85rem !important;
        white-space: normal !important;
        word-break: break-all;
    }
}

@media (max-width: 575px) {
    .contact-info-item p {
        font-size: 0.8rem !important;
        line-height: 1.3;
        white-space: normal !important;
    }
}

@media (max-width: 414px) {
    .contact-info-item p {
        font-size: 0.75rem !important;
    }
}

/* Form Heading Responsive Styles */
.form-heading {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.form-heading-container {
    background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 50%, #6b46c1 100%);
    padding: 20px 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(76, 29, 149, 0.4);
}

.form-header-section {
    text-align: center;
    margin-bottom: 35px;
}

@media (max-width: 991px) {
    .form-heading {
        font-size: 1.8rem !important;
    }
    
    .form-heading-container {
        padding: 18px 25px !important;
        margin-bottom: 18px !important;
    }
    
    .form-header-section {
        margin-bottom: 30px !important;
    }
    
    .form-header-section p {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 767px) {
    .form-heading {
        font-size: 1.6rem !important;
        letter-spacing: -0.3px !important;
    }
    
    .form-heading-container {
        padding: 16px 20px !important;
        margin-bottom: 16px !important;
        border-radius: 12px !important;
    }
    
    .form-header-section {
        margin-bottom: 25px !important;
    }
    
    .form-header-section p {
        font-size: 0.9rem !important;
        padding: 0 10px;
    }
}

@media (max-width: 575px) {
    .form-heading {
        font-size: 1.4rem !important;
        letter-spacing: -0.2px !important;
    }
    
    .form-heading-container {
        padding: 14px 18px !important;
        margin-bottom: 14px !important;
        border-radius: 10px !important;
    }
    
    .form-header-section {
        margin-bottom: 20px !important;
    }
    
    .form-header-section p {
        font-size: 0.85rem !important;
        line-height: 1.4;
    }
}

@media (max-width: 414px) {
    .form-heading {
        font-size: 1.3rem !important;
    }
    
    .form-heading-container {
        padding: 12px 15px !important;
        margin-bottom: 12px !important;
    }
    
    .form-header-section p {
        font-size: 0.8rem !important;
    }
}

@media screen and (max-width: 480px) {
  #form-modal .modal-content {
    width: 90% !important;
    margin: 10% auto !important;
    padding: 20px !important;
    border-radius: 15px !important;
  }

  #form-modal h2 {
    font-size: 1.3rem !important;
    text-align: center !important;
  }

  #form-modal input,
  #form-modal button {
    font-size: 14px !important;
    padding: 12px !important;
  }

  #form-modal .close {
    font-size: 24px !important;
    top: 10px;
    right: 15px;
  }
}

/* === Modal Popup Styles === */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: #fff;
    margin: 8% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}

#brochure-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#brochure-form input,
#brochure-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

#brochure-form button[type="submit"] {
    background-color: #e843c4;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

#brochure-form button[type="submit"]:hover {
    background-color: #d63297;
}

.mobile-btn-login {
    background: linear-gradient(135deg, #e843c4 0%, #d63297 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 10px;
    width: 100%;
}

/* Certificate Section */
.certificate-section {
  background-color: #f8f9fa;
}

/* Certificate Template Styles */
.certificate-template {
  border: 2px dashed #ccc;
  padding: 30px;
  position: relative;
}

.certificate-template h2 {
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.student-name {
  font-size: 1.75rem;
}

.program-title {
  font-size: 1.25rem;
}

.signature hr {
  margin: 10px auto;
}

/* Responsive Fix
@media (max-width: 992px) {
  .certificate-template {
    margin-bottom: 30px;
  }
} */

/* ≥ 1200px: Show all items */
@media (min-width: 1200px) {
  .nav-items {
    display: flex !important;
  }

  .item-1, .item-2, .item-3, .item-4, .item-5, .item-6, .item-7 {
    display: inline-flex !important;
  }

  .hamburger {
    display: none !important;
  }
}

/* ≤ 900px: Hide all nav-items */
@media (max-width: 750px) {
  .nav-items {
    display: none !important;
  }
}

/* Always show buttons and hamburger when items are hidden */
@media (max-width: 550px) {
  .nav-buttons {
    display: none !important;
  }

  .hamburger {
    display: inline-flex !important;
  }
}

/* Ensure both columns align at top in Certificate page*/
.auth-cert,
.gen-cert {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Optionally enforce consistent padding/margin for headers */
.auth-cert h4,
.gen-cert h4 {
  margin-bottom: 1.5rem;
}

.btn-validate-green {
  background-color: #28a745; /* Bootstrap green */
  color: white;
  border: none;
}

.btn-validate-green:hover {
  background-color: #218838;
  color: white;
}

.bg-light-green {
  background-color: #e6f9ec !important;
}

.bg-light-pink {
  background-color: #ffe6f0 !important;
}

.nav-bottom {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  gap: 1rem;
}


/* Additional custom styles for enhanced animations and effects */
.robot-illustration {
    width: 100%;
    max-width: 400px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

.small-robot-illustration {
    width: 100%;
    max-width: 300px;
    height: auto;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.feature-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 85, 247, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
}

.program-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.2);
}

.program-image {
    background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.age-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #6B46C1;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.program-icon {
    font-size: 4rem;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.program-content {
    padding: 30px 25px;
}

.program-title {
    color: #2D1B69;
    font-weight: 700;
    margin-bottom: 8px;
}

.program-subtitle {
    color: #8B5CF6;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.program-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.program-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-features li {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.program-features li::before {
    content: "✓";
    color: #10B981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.value-card {
    background: rgba(168, 85, 247, 0.05);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 85, 247, 0.1);
}

.value-card:hover {
    background: rgba(168, 85, 247, 0.1);
    transform: translateX(10px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #A855F7, #EC4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.value-title {
    color: #2D1B69;
    font-weight: 600;
    margin-bottom: 10px;
}

.value-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.contact-item-cta {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.contact-icon {
    color: #FFC107;
    font-size: 1.1rem;
}

.robot-container {
    position: relative;
}

.robot-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Who Can Join Section Styles */
.who-can-join-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(168, 85, 247, 0.1);
}

.who-can-join-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.2);
}

.who-can-join-header {
    background: linear-gradient(135deg, #A855F7 0%, #EC4899 100%);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.age-badge-new {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #6B46C1;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.icon-container {
    font-size: 4rem;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.who-can-join-content {
    padding: 30px 25px;
}

.grade-title {
    color: #2D1B69;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.grade-subtitle {
    color: #8B5CF6;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.grade-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.grade-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.grade-features li {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.grade-features li::before {
    content: "✓";
    color: #10B981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .robot-illustration {
        max-width: 70%;
    }
}

@media (max-width: 768px) {
    .robot-illustration {
        max-width: 60%;
        margin-top: 30px;
    }
    
    .who-can-join-card {
        margin-bottom: 30px;
    }
    
    .value-card {
        text-align: center;
    }
    
    .value-card .d-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .value-icon {
        margin-bottom: 15px;
        margin-right: 0 !important;
    }
    
    .contact-info-cta .d-flex {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .robot-illustration {
        max-width: 80%;
    }
}

/* Component Cards for Composite Lab */
.component-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(168, 85, 247, 0.1);
}

.component-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.15);
}

.component-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #A855F7, #EC4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.component-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.component-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: center;
}

.component-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.component-features li {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 6px;
    padding-left: 15px;
    position: relative;
    text-align: left;
}

.component-features li::before {
    content: "•";
    color: #A855F7;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Benefit Cards */
.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(168, 85, 247, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #A855F7, #EC4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.benefit-list li::before {
    content: "✓";
    color: #10B981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.arrow-icon {
  display: inline-block;
  font-size: 1.5rem;   /* Adjust size here */
  transform: translateY(2px);  /* Move upward */
  margin-left: 2px;
  color: #fff;
  pointer-events: none;
}

/* GEAR Process Section */
.gear-process-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.gear-process-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(107, 70, 193, 0.1);
    height: 100%;
}

.gear-process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(107, 70, 193, 0.2);
}

.gear-process-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6B46C1, #A855F7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.gear-process-title {
    color: #6B46C1;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.gear-process-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Ensure parent can position dropdown absolutely */
.nav-item.dropdown-hover {
  position: relative;
}

/* Style and position the dropdown menu outside the navbar */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1050; /* Make sure it's above everything else */
  display: none;
  min-width: 200px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  margin: 0;
  list-style: none;
}

/* Show dropdown on hover */
.dropdown-hover:hover .dropdown-menu {
  display: block;
}

/* Style links inside dropdown */
.dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  color: #333;
  text-decoration: none;
}

/* Hover effect for dropdown items */
.dropdown-menu li a:hover {
  background-color: #f1f1f1;
  color: #6b21a8;
}

/* Flip caret on hover */
.dropdown-hover:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

/* Prevent clipping from parent containers */
.nav-items,
.nav-item {
  overflow: visible !important;
  white-space: normal !important;
}

@media only screen and (max-width: 770px) {
  /* Hide the main navbar that contains hamburger and possibly logo */
  .nav-wrapper {
    display: none !important;
  }

  /* Show sticky bar always at top with no animation or scroll trigger */
  .sticky-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    animation: none !important;
    transition: none !important;
  }

  .sticky-top-bar .logo,
  .sticky-top-bar .brand-name,
  .sticky-top-bar .logo-wrapper,
  .sticky-brand,
  .sticky-brand-name,
  .sticky-brand img {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    visibility: visible !important;
    display: inline-block !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .sticky-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    background-color: #1a093a;
    animation: none !important;
    transition: none !important;
    padding: 10px 20px; /* ✅ Add padding to align content */
    box-sizing: border-box;
  }

  .sticky-top-bar .logo,
  .sticky-top-bar .brand-name,
  .sticky-brand,
  .sticky-brand-name,
  .cart-icon,
  .btn-download,
  .btn-join,
  .sticky-hamburger {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .sticky-top-bar .hamburger {
    display: flex !important;
  }

  .sticky-top-bar .hamburger span {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

 #mainButtons {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    transform: none !important;
  }


  .nav-wrapper,.nav-items,.contact-bar {
    display: none !important;
  }


  #stickyButtons {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    position: relative;
    margin-left: auto;
    margin-right: 20px; /* ✅ Adjust spacing to match scroll layout */
  }
}






.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: #1e0a47;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu-content {
  padding: 20px;
  overflow-y: auto;
  flex-grow: 1;
  max-height: 80vh;
}

.mobile-link {
  display: block;
  padding: 14px 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

/* Dropdown section spacing */
.dropdown-section {
  margin-bottom: 15px;
}

/* Dropdown toggle button */
.dropdown-toggle {
  background: transparent;
  color: white;
  border: none;
  width: 100%;
  text-align: left;
  font-weight: 600;
  padding: 12px 16px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
}

/* Custom caret icon */
.dropdown-toggle .custom-caret {
  display: inline-block;
  margin-left: 10px;
  transition: transform 0.3s ease;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid white;
}

/* Submenu container */
.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background-color: #2c0b5b; /* darker purple */
  border-radius: 10px;
  margin: 8px 10px;
}

/* Show submenu when active */
.submenu.show {
  max-height: 600px;
  padding: 10px;
}

/* Individual submenu links */
.submenu a {
  display: block;
  padding: 10px 15px;
  color: #ffffff;
  text-decoration: none;
  background-color: #3c1c7a;
  margin-bottom: 8px;
  border-radius: 6px;
  transition: background 0.3s;
}

.submenu a:hover {
  background-color: #5a2ecb;
}


.dropdown-toggle .arrow-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.dropdown-toggle.expanded .arrow-icon {
  transform: rotate(180deg);
}

.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100vh;
}


/* Overlay */
#menuOverlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75); /* Darker overlay */
  backdrop-filter: blur(4px); /* Adds a blur effect */
  z-index: 9999;
  display: none;
}

#menuOverlay.show {
  display: block;
}

.mobile-action-buttons {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-download
{
  padding: 12px;
  font-size: 20px;
  border-radius: 30px;
  font-weight: 700;
  border: none;
  text-align: center;
  background: linear-gradient(45deg, #f875fc, #2bd9e2);
  color: #1e0a47;
}

#mobileMenu .btn-join {
  display: block;
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  border: none;
  background: #ffd700;
  color: #1e0a47;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Remove Bootstrap's default caret from dropdown-toggle */
.mobile-menu .dropdown-toggle::after {
  display: none !important;
}

/* Custom caret styling */
.custom-caret {
  display: inline-block;
  margin-left: auto;
  transition: transform 0.3s ease;
  width: 8px;
  height: 8px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg); /* pointing down */
  margin-right: 12px;
}

/* Flip the caret when dropdown is open */
.dropdown-toggle[aria-expanded="true"] .custom-caret {
  transform: rotate(-135deg); /* pointing up */
}

#menuOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* dimmed background */
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

#menuOverlay.show {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
    position: fixed;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  width: 100%;

}

body {
  overflow: auto !important;
  height: auto;
  position: static;
}

html {
  overflow-x: hidden;
}

/* html::-webkit-scrollbar,
html::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-track {
  all: unset;
}

@media (min-width: 769px) {
  html::-webkit-scrollbar {
    width: 8px;
  }

  html::-webkit-scrollbar-thumb {
    background-color: #ff3cac;
    border-radius: 6px;
  }

  html::-webkit-scrollbar-track {
    background: transparent;
  }
} */

/**/ new navbar code with pop up*/





/* Glowing Text Effect */
.glowing-text {
  color: #fff; /* Initial text color */
  animation: glow 1.5s infinite alternate; /* Apply glowing animation */
  text-shadow: 0 0 5px #00f, 0 0 10px #00f, 0 0 15px #00f, 0 0 20px #00f; /* Initial glow effect */
  padding: 5px 10px; /* Add some padding around the text */
  border-radius: 5px; /* Slightly rounded corners */
  font-weight: bold; /* Make the text bold */
  font-size: smaller;
}

/* Keyframe animation for the glow effect */
@keyframes glow {
  0% {
    text-shadow: 0 0 5px #ff6ec4, 0 0 10px #ff6ec4, 0 0 15px #ff6ec4; /* Pink glow */
  }
  50% {
    text-shadow: 0 0 10px #7873f5, 0 0 20px #7873f5, 0 0 30px #7873f5; /* Purple glow */
  }
  100% {
    text-shadow: 0 0 5px #ff6ec4, 0 0 10px #ff6ec4, 0 0 15px #ff6ec4; /* Pink glow again */
  }
}

/* Optional: Adjust for mobile view if needed */
@media (max-width: 768px) {
  .mobile-menu .glowing-text {
    margin-left: 0; /* Remove left margin on mobile */
    text-align: center; /* Center the text */
    display: block; /* Make it a block element */
    padding: 10px 0; /* Add vertical padding */
  }
}

/* Base style for the burst badge */
.new-burst-badge {
    display: inline-block;
    background-color: red; /* Red background as per image */
    color: yellow; /* Yellow text as per image */
    font-weight: bold;
    font-size: 0.7rem; /* Smaller font size for the badge */
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 5px; /* Space from the "Shark Tank Junior" text */
    position: relative;
    /* Create the burst shape using pseudo-elements */
    clip-path: polygon(
        0% 20%, 15% 0%, 50% 0%, 85% 0%, 100% 20%,
        100% 50%, 100% 80%, 85% 100%, 50% 100%, 15% 100%,
        0% 80%, 0% 50%
    ); /* A simpler polygon for a burst effect */
    transform: rotate(5deg); /* Slightly rotate for a dynamic look */
    animation: popAndRotate 1.5s infinite alternate ease-in-out; /* Pop and rotate animation */
}

/* Specific styling for the badge in dropdown menus */
.new-burst-badge-dropdown {
    /* Inherit most styles from .new-burst-badge */
    display: inline-block; /* Ensure it's treated as a block for positioning */
    background-color: red;
    color: yellow;
    font-weight: bold;
    font-size: 0.85rem; /* Even smaller in dropdown */
    padding: 2px 5px;
    margin-left: 8px; /* Adjust spacing in dropdown */
    clip-path: polygon(
        0% 20%, 15% 0%, 50% 0%, 85% 0%, 100% 20%,
        100% 50%, 100% 80%, 85% 100%, 50% 100%, 15% 100%,
        0% 80%, 0% 50%
    );
    transform: rotate(5deg);
    animation: popAndRotate 1.5s infinite alternate ease-in-out;
}

/* Specific styling for the badge in mobile menu */
.new-burst-badge-mobile {
    /* Inherit most styles from .new-burst-badge */
    display: inline-block;
    background-color: red;
    color: yellow;
    font-weight: bold;
    font-size: 0.85rem; /* Similar to dropdown for mobile */
    padding: 2px 5px;
    margin-left: 8px; /* Adjust spacing in mobile dropdown */
    clip-path: polygon(
        0% 20%, 15% 0%, 50% 0%, 85% 0%, 100% 20%,
        100% 50%, 100% 80%, 85% 100%, 50% 100%, 15% 100%,
        0% 80%, 0% 50%
    );
    transform: rotate(5deg);
    animation: popAndRotate 1.5s infinite alternate ease-in-out;
}

/* Animation for popping and subtle rotation */
@keyframes popAndRotate {
    0% {
        transform: scale(1) rotate(5deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.1) rotate(-5deg); /* Pop out and rotate slightly in other direction */
        opacity: 0.9;
    }
    100% {
        transform: scale(1) rotate(5deg);
        opacity: 1;
    }
}

/* Container for the link and the badge */
.nav-item-with-badge {
    position: relative; /* Crucial for absolute positioning of the badge */
    display: inline-flex; /* Use flex to keep content in a row */
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center the text and badge horizontally */
    margin-left: 20px; /* Adjust spacing from 'About Us' */
    margin-right: 15px; /* Add some space before next item */
}

/* Style for the "New!" badge when placed below */
.new-burst-badge-below {
    display: inline-block;
    background-color: red; /* Red background */
    color: yellow; /* Yellow text */
    font-weight: bold;
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 2px;
    position: absolute; /* Position absolutely within .nav-item-with-badge */
    /* Fine-tune these values to match the red box in the image */
    top: 35px; /* Adjust this to move it down */
    left: 88%; /* Center horizontally relative to parent */
    transform: translateX(-50%) rotate(5deg); /* Center and rotate */
    white-space: nowrap; /* Prevent text from wrapping */
    z-index: 10; /* Ensure it's on top */
    clip-path: polygon(
        0% 20%, 15% 0%, 50% 0%, 85% 0%, 100% 20%,
        100% 50%, 100% 80%, 85% 100%, 50% 100%, 15% 100%,
        0% 80%, 0% 50%
    ); /* Burst shape */
    animation: popAndRotate 1.5s infinite alternate ease-in-out; /* Pop and rotate animation */
}



//* Style for the "New!" badge when placed below */
.new-burst-badge-below {
    display: inline-block;
    background-color: red; /* Red background */
    color: yellow; /* Yellow text */
    font-weight: bold;
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 2px;
    position: absolute; /* Position absolutely within .nav-item-with-badge */
    /* Fine-tune these values to match the red box in the image */
    top: 35px; /* Adjust this to move it down */
    left: 30%; /* Center horizontally relative to parent */
    transform: translateX(-50%) rotate(5deg); /* Center and rotate */
    white-space: nowrap; /* Prevent text from wrapping */
    z-index: 10; /* Ensure it's on top */
    clip-path: polygon(
        0% 20%, 15% 0%, 50% 0%, 85% 0%, 100% 20%,
        100% 50%, 100% 80%, 85% 100%, 50% 100%, 15% 100%,
        0% 80%, 0% 50%
    ); /* Burst shape */
    animation: popAndRotate 1.5s infinite alternate ease-in-out; /* Pop and rotate animation */
}

.hustle-nav-item .hustle-link {
 display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  padding: 8px 10px;
  font-size: 14px;
}

.mega-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100vw; /* Use entire viewport width */
  max-width: 1140px; /* Override the 1320px limit */
  margin: 0 !important; /* Remove default margins */
  padding: 20px 30px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1000;
  justify-content: flex-start;
}


/* Show on hover */
.mega-parent:hover .mega-menu {
  display: flex;
}

/* Grid layout for the cards */
.card-grid {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  flex-wrap: nowrap;
  overflow-x: auto;
  width: 100%;
  max-width: 100vw;
  padding-left: 0px;
}

/* But mega menus (Programs & Products) need static so child can align to viewport */
.nav-item.dropdown-hover.mega-parent {
  position: static;
}

/* Individual card */
.dropdown-card {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 5px;
  text-align: center;
  width: 160px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  align-items: center;
}

.dropdown-card:hover {
  transform: translateY(-5px);
}

/* Card image */
.dropdown-card img {
  width: 150px;
  height: 150px;
  margin-bottom: 5px;
  object-fit: contain;
}

/* Card text */
.dropdown-card span {
  font-size: 18px;
  color: #222;
  font-weight: 500;
  display: block;
}

/* Ensure links look clean */
.card-link {
  text-decoration: none;
}

.hamburger,
.sticky-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  position: absolute;
  right: 20px; /* Push to the edge */
  top: 50%;
  transform: translateY(-50%);
  z-index: 1001;
}



