/* colors */

.bg-blue-primary
{
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* reusable classes */

.p-x-50
{
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}





/* Base video styling */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

/* Desktop video - optimized to fill entire section */
.desktop-video {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vw;
    height: 120vh;
    min-width: 120%;
    min-height: 120%;
    transform: translate(-50%, -50%) scale(1.1);
    object-fit: cover;
    pointer-events: none;
    border: 0;
}

/* Mobile video - hidden by default */
.mobile-video {
    /* display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    border: 0; */
    width: 100% !important;
    height: 850px !important;
}

/* Desktop specific enhancement to eliminate gaps */
@media (min-width: 992px) {
    .desktop-video {
        width: 120vw !important;
        height: 120vh !important;
        min-width: 120% !important;
        min-height: 120% !important;
        transform: translate(-50%, -50%) scale(1.1) !important;
    }
}



/* Extra aggressive mobile fix for small screens */
/* @media (max-width: 768px) {
    .mobile-video {
       
         transform: translate(-50%, -45%)  !important;
        width: 150vw !important;
        height: 150vh !important;
    }
} */


.home-content {
    position: relative;
    z-index: 2;
}


@media (max-width: 991px) {
    .video-background > div {
        padding: 0 !important;
        height: 100vh !important;
    }
}


.video-background iframe {
    pointer-events: none;
}



/* accent & background */
:root{ --accent:#1e9ddb; }
.text-accent{color:var(--accent);}
.btn-accent{background:var(--accent);color:#fff;border:0;}
.btn-accent:hover{background:#0b6fa4}

/* section padding adjustment for smaller screens */
@media (max-width:767.98px){
  #admire-features{padding-top:80px;padding-bottom:80px;}
}

/* feature cards */
.feature-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px;
  text-align:center;
  padding:24px 18px;
  transition:.25s;
  gap: 14px;
}
.feature-card:hover{background:rgba(255,255,255,.12);transform:translateY(-4px);}
.feature-card .icon{width:40px;height:40px;margin-bottom:12px;}
.feature-card h6{font-size:0.9rem;margin-bottom:0;}

/* stats */
.stat-num{
  font-size:2.8rem;
  font-weight:700;
  color:var(--accent);
  line-height:1;
  text-align: center;
}
.stat-label{font-size:0.9rem;margin-bottom:0;}



/* ========== COLOR STRIPE ========== */
.color-stripe {
    height: 8px;
    background: linear-gradient(
        90deg,
        #c8b882 0%,
        #7dd3fc 25%,
        #fb7185 50%,
        #4ade80 75%,
        #6b7280 100%
    );
    border-radius: 4px;
    width: 60%;
}

/* ========== HERO CONTENT ========== */
.hero-content {
    max-width: 500px;
}

.highlight-text {
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    right: 0;
    height: 0.3em;
    background: #fef08a;
    z-index: -1;
    border-radius: 2px;
}

/* ========== BRAND BADGE ========== */
.brand-badge {
    margin-top: 2rem;
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: #4f46e5;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========== VIDEO TESTIMONIALS GRID ========== */
.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 20px;
    height: 100vh;
    overflow-y: auto;
}

/* ========== VIDEO CARD SIZES ========== */
.video-card.size-large {
    grid-row: span 3;
}

.video-card.size-medium {
    grid-row: span 2;
}

.video-card.size-small {
    grid-row: span 1;
}

/* ========== VIDEO CARD STYLING ========== */
.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* ========== VIDEO WRAPPER ========== */
.video-wrapper {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail {
    transform: scale(1.05);
}

/* ========== VIDEO OVERLAY ========== */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.1) 0%,
        rgba(0,0,0,0.3) 60%,
        rgba(0,0,0,0.6) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========== PLAY BUTTON ========== */
.play-button {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    color: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.play-button:hover {
    background: #4f46e5;
    color: white;
    transform: scale(1.1);
}

/* ========== VIDEO INFO ========== */
.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    color: white;
}

.rating {
    display: flex;
    gap: 1px;
}

.star {
    color: #fbbf24;
    font-size: 12px;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 2px 0;
    color: white;
}

.author-title {
    font-size: 11px;
    margin: 0;
    opacity: 0.9;
    color: white;
}

/* ========== CARD PREVIEW ========== */
.card-preview {
    padding: 12px 16px;
    font-size: 12px;
    line-height: 1.4;
    color: #4b5563;
    background: white;
    border-top: 1px solid #f3f4f6;
    -webkit-line-clamp: 3; /* Change to 2 for two lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 991.98px) {
    .video-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
        overflow-y: visible;
    }
    
    .video-card.size-large {
        grid-row: span 2;
    }
    
    .color-stripe {
        width: 80%;
    }
}

@media (max-width: 767.98px) {
    .video-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
    }
    
    .video-card.size-large,
    .video-card.size-medium,
    .video-card.size-small {
        grid-row: span 1;
        /* min-height: 280px; */
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .color-stripe {
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .video-card {
        min-height: 250px;
    }
    
    .card-preview {
        font-size: 11px;
        padding: 10px 12px;
    }
}


/* ----------  COLOUR STRIPE + UNDERLINE  ---------- */
.color-stripe{height:6px;width:60%;background:linear-gradient(90deg,#c8b882,#7dd3fc 25%,#fb7185 50%,#4ade80 75%,#6b7280);}
.underline{position:relative;}
.underline::after{content:'';position:absolute;inset:0 0 0 0;height:.35em;
  
  /* background:#ffe36e; */
  z-index:-1;margin-top:auto;border-radius:2px;}

/* ----------  BRAND BADGE  ---------- */
.brand-icon{width:44px;height:44px;background:#4f46e5;color:#fff;font-size:1.25rem;}
.brand-pill:hover .brand-icon{background:#3b3cd2;}

/* ----------  SCROLL COLUMNS  ---------- */
.scroll-col{
  height:550px;                 /* viewport of each conveyor */
  /* overflow:hidden; */
  position:relative;
  display:flex;flex-direction:column;gap:16px;
}
@media (max-width:991.98px){.scroll-col{height:400px;}}
@media (max-width:767.98px){.scroll-col{height:300px;}}

/* ----------  VIDEO CARD  ---------- */
.video-card{
  position:relative;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 4px 16px rgba(0,0,0,.08);
  flex:0 0 320px;               /* fixed height for cadence */
}
.video-card img{
  width:100%;height:100%;object-fit:cover;transition:transform .4s;
}
.video-card:hover img{transform:scale(1.05);}
.play{
  position:absolute;top:10px;left:10px;
  width:34px;height:34px;border:0;border-radius:50%;
  background:#ffffffcc;color:#000;display:flex;align-items:center;justify-content:center;font-size:1.2rem;
}
.play:hover{background:#4f46e5;color:#fff;}
.meta{
  position:absolute;bottom:0;left:0;right:0;
  background:linear-gradient(0deg,#000000aa,transparent 60%);
  color:#fff;font-size:.8rem;padding:8px 10px;line-height:1.25;
}
.stars{color:#fbbf24;letter-spacing:-.1em;}

/* ----------  AUTO-SCROLL ANIMATIONS  ---------- */
@keyframes scrollUp{0%{transform:translateY(0);}100%{transform:translateY(-50%);}}
@keyframes scrollDown{0%{transform:translateY(-50%);}100%{transform:translateY(0);}}

/* 40s cycle — edit to taste */
.auto-up{animation:scrollUp 40s linear infinite;}
.auto-down{animation:scrollDown 40s linear infinite;}

/* Pause on hover / touch */
.scroll-col:hover,
.scroll-col:has(.video-card:active){
  animation-play-state:paused;
}

/* ----------  RESPONSIVE STACKING  ---------- */
@media (max-width:991.98px){           /* two-panel layout */
  #video-wall .col-lg-4:nth-child(3){margin-top:0;}
}
@media (max-width:767.98px){           /* one column layout */
  #video-wall .col-lg-4{
     flex:0 0 100%;max-width:100%;margin-bottom:2rem;
  }
  .brand-pill{justify-content:center;}
}


.z-100{
    z-index: 100;
}

.disable-m-p{
   max-width: auto ;
}

.center-items{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}



/* --------------------------------------------------
   2.  TABLET & MOBILE  (<992 px)  —  H-SCROLL SECTION
---------------------------------------------------*/
@media (max-width: 991.98px){

  /* --- turn the whole .row into a snap-track --- */
  #video-wall .row.g-lg-4{
    flex-wrap:nowrap;           /* disable wrapping       */
    overflow-x:auto;            /* real horizontal scroll */
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
  }

  /* every direct col becomes a full-viewport “slide” */
  #video-wall .row.g-lg-4 > div{
    flex:0 0 100%;              /* 100 vw width           */
    max-width:100%;
    scroll-snap-align:start;    /* snap left edge         */
  }

  /* centre the Hero text when it’s in its own slide */
  .hero-content,
  .hero-content > *{text-align:center!important}

  /* hide the centre-gap col you used on desktop */
  #video-wall .col-lg-2:nth-child(2){display:none;}

  /* ------------------------------------------------
     2-A  change both conveyor columns to H-SCROLL
  -------------------------------------------------*/

  .scroll-col{
    flex-direction:row;         /* horizontal row of cards      */
    height:auto;                /* let height be natural         */
    overflow-x:auto;            /* we scroll sideways            */
    overflow-y:hidden;
    gap:12px;
    animation:none;             /* stop the Y-axis animation     */
  }
  .scroll-col::-webkit-scrollbar{display:none;}  /* hide bar */

  /* card width for mobile carousel */
  .video-card{flex:0 0 260px;}

  /* slow automatic leftward drift for first column */
  @keyframes scrollLeft{0%{transform:translateX(0);}
                        100%{transform:translateX(-50%);} }
  /* opposite direction for second column */
  @keyframes scrollRight{0%{transform:translateX(-50%);}
                         100%{transform:translateX(0);} }

  .auto-up{animation:scrollLeft 40s linear infinite;}
  .auto-down{animation:scrollRight 40s linear infinite;}

  /* pause horizontal drift on hover / touch-hold */
  .scroll-col:hover,
  .scroll-col:has(.video-card:active){
      animation-play-state:paused;
  }
}

/* --------------------------------------------------
   3.  SMALL PHONES (<768 px)  —  minor tweaks only
---------------------------------------------------*/
@media (max-width: 767.98px){
  .video-card{flex:0 0 220px;}          /* slightly narrower cards  */
  .scroll-col{gap:10px;}
  .card-preview{font-size:11px;padding:10px 12px;}
}


/* ========== DESKTOP/MOBILE VISIBILITY ========== */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 991.98px) {
  .desktop-only {
    display: none !important;
  }
  
  .mobile-only {
    display: block !important;
  }
}

/* ========== EXISTING DESKTOP STYLES (unchanged) ========== */
.color-stripe{height:6px;width:60%;background:linear-gradient(90deg,#c8b882,#7dd3fc 25%,#fb7185 50%,#4ade80 75%,#6b7280);}
.underline{position:relative;}
.underline::after{content:'';position:absolute;inset:0 0 0 0;height:.35em;
  /* background:#ffe36e; */
  z-index:-1;margin-top:auto;border-radius:2px;}

.brand-icon{width:44px;height:44px;background:#4f46e5;color:#fff;font-size:1.25rem;}
.brand-pill:hover .brand-icon{background:#3b3cd2;}

.scroll-col{
  height:550px;
  position:relative;
  display:flex;flex-direction:column;gap:16px;
}
@media (max-width:991.98px){.scroll-col{height:400px;}}
@media (max-width:767.98px){.scroll-col{height:300px;}}

.video-card{
  position:relative;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 4px 16px rgba(0,0,0,.08);
  flex:0 0 320px;
}
.video-card img{
  width:100%;height:100%;object-fit:cover;transition:transform .4s;
}
.video-card:hover img{transform:scale(1.05);}
.play{
  position:absolute;top:10px;left:10px;
  width:34px;height:34px;border:0;border-radius:50%;
  background:#ffffffcc;color:#000;display:flex;align-items:center;justify-content:center;font-size:1.2rem;
}
.play:hover{background:#4f46e5;color:#fff;}
.meta{
  position:absolute;bottom:0;left:0;right:0;
  background:linear-gradient(0deg,#000000aa,transparent 60%);
  color:#fff;font-size:.8rem;padding:8px 10px;line-height:1.25;
}
.stars{color:#fbbf24;letter-spacing:-.1em;}

@keyframes scrollUp{0%{transform:translateY(0);}100%{transform:translateY(-50%);}}
@keyframes scrollDown{0%{transform:translateY(-50%);}100%{transform:translateY(0);}}

.auto-up{animation:scrollUp 40s linear infinite;}
.auto-down{animation:scrollDown 40s linear infinite;}

.scroll-col:hover,
.scroll-col:has(.video-card:active){
  animation-play-state:paused;
}

.z-100{
    z-index: 100;
}

.disable-m-p{
   max-width: auto ;
}

.center-items{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* ========== MOBILE VERSION STYLES ========== */
#mobile-testimonials-header .color-stripe {
  width: 80px;
  height: 6px;
}

#mobile-testimonials-header .underline::after {
  /* background: #ffe36e; */
  height: 0.3em;
  bottom: 0.1em;
}

/* ========== HORIZONTAL SCROLLING TESTIMONIALS ========== */
.horizontal-testimonials-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0 20px;
}

.horizontal-testimonials-track {
  display: flex;
  gap: 20px;
  animation: scrollHorizontalSlow 60s linear infinite;
  width: max-content;
}

@keyframes scrollHorizontalSlow {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.horizontal-testimonials-track:hover {
  animation-play-state: paused;
}

/* ========== MOBILE TESTIMONIAL CARDS ========== */
.mobile-testimonial-card {
  flex: 0 0 300px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: grid;
  flex-direction: column;
}

.mobile-testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.mobile-testimonial-card .video-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.mobile-testimonial-card .video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.mobile-testimonial-card:hover .video-thumbnail {
  transform: scale(1.05);
}

.mobile-testimonial-card .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.3) 60%,
    rgba(0,0,0,0.6) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-testimonial-card .play-button {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  color: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.mobile-testimonial-card .play-button:hover {
  background: #4f46e5;
  color: white;
  transform: scale(1.15);
}

.mobile-testimonial-card .video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  color: white;
}

.mobile-testimonial-card .rating {
  display: flex;
  gap: 2px;
  margin-bottom: 6px;
}

.mobile-testimonial-card .star {
  color: #fbbf24;
  font-size: 14px;
}

.mobile-testimonial-card .author-name {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 3px 0;
  color: white;
}

.mobile-testimonial-card .author-title {
  font-size: 12px;
  margin: 0;
  opacity: 0.9;
  color: white;
}

.mobile-testimonial-card .card-preview {
  padding: 18px 20px;
  font-size: 14px;
  line-height: 1.5;
  color: #4b5563;
  background: white;
  border-top: 1px solid #f3f4f6;
  flex: 1;
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */
@media (max-width: 767.98px) {
  .horizontal-testimonials-wrapper {
    padding: 0 15px;
  }
  
  .horizontal-testimonials-track {
    gap: 16px;
  }
  
  .mobile-testimonial-card {
    flex: 0 0 280px;
  }
  
  .mobile-testimonial-card .video-wrapper {
    height: 200px;
  }
  
  .mobile-testimonial-card .card-preview {
    font-size: 13px;
    padding: 15px 18px;
  }
}

@media (max-width: 480px) {
  .mobile-testimonial-card {
    flex: 0 0 260px;
  }
  
  .mobile-testimonial-card .video-wrapper {
    height: 238px;
  }
  
  .mobile-testimonial-card .card-preview {
    font-size: 12px;
    padding: 12px 15px;
  }
}


/* ========== MODERN VARIABLES ========== */
:root {
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --blur-amount: 20px;
}

/* ========== SECTION BACKGROUND ========== */
#modules-curriculum {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  position: relative;
  padding-bottom: 50px;
}

.bg-animated-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* z-index: 1; */
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.orb-1 {
  width: 200px;
  height: 200px;
  background: var(--gradient-primary);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 150px;
  height: 150px;
  background: var(--gradient-accent);
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

.orb-3 {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  bottom: 20%;
  left: 30%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.gradient-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(255, 154, 158, 0.1) 0%, transparent 50%);
}

/* ========== GLASSMORPHISM CARDS ========== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--blur-amount));
  -webkit-backdrop-filter: blur(var(--blur-amount));
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--glass-shadow);
  position: relative;
  z-index: 2;
}

/* ========== HERO SECTION ========== */
.hero-badge {
  display: inline-flex;
  padding: 12px 24px;
  position: relative;
  overflow: hidden;
}

.badge-text {
  font-size: 14px;
  font-weight: 600;
  color: #6366f1;
  position: relative;
  z-index: 2;
}

.badge-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
  animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== EQUAL HEIGHT & WIDTH STATS CARDS ========== */
.stats-row {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.stats-row > div {
  display: flex;
}


.stat-card {
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 120px; /* Fixed height for all cards */
  min-height: 120px;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.stat-label {
  font-size: 12px;
  /* color: #fff !important; */
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */
@media (max-width: 767.98px) {
  .stat-card {
    height: 100px; /* Slightly smaller on mobile */
    min-height: 100px;
    padding: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 13px;
  }
}

@media (max-width: 575.98px) {
  .stat-card {
    height: 90px;
    min-height: 90px;
    padding: 16px;
  }
  
  .stat-number {
    font-size: 1.8rem;
    margin-bottom: 6px;
  }
  
  .stat-label {
    font-size: 12px;
  }
}


/* ========== BENTO GRID ========== */
/* ========== UPDATED BENTO GRID ========== */
.bento-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(5, 120px); /* Added one more row */
  gap: 16px;
  height: 500px; /* Increased height to accommodate new row */
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-medium {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-small {
  grid-column: span 1;
  grid-row: span 1;
}

/* ========== TALLER CARDS (4, 5, 6, 7) ========== */
.bento-tall {
  grid-column: span 1;
  grid-row: span 2; /* Double height - makes them taller */
}

/* ========== COMPACT VIEW MORE CARD ========== */
.bento-compact {
  grid-column: span 2;
  grid-row: span 1; /* Reduced height */
}

/* ========== MODULE CARDS ========== */
.module-card {
 position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 300px; /* Adjust as needed */
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.3s ease;
  cursor: pointer;
}

.module-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.module-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 300px; /* Adjust as needed */
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}

/* Background image covering entire card */
.module-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.module-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

/* Module overlay for badge */
.module-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
}

.module-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.8); /* Solid background initially */
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  transition: all 0.4s ease;
  pointer-events: auto;
}

/* Content section - initially solid background */
.module-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  
  /* Initial state - solid background */
  /* background: rgba(0, 0, 0, 0.8); */
  
  /* Border */
  border-radius: 0 0 16px 16px;
  
  /* Padding and spacing */
  padding: 20px;
  
  /* Text styling */
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  
  /* Transition for smooth effect */
  transition: all 0.4s ease;
}

.module-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: white;
  line-height: 1.2;
  transition: all 0.4s ease;
}

.module-faculty {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.4s ease;
}

/* HOVER EFFECTS - Glass effect only on hover */
.module-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.2);
}

.module-card:hover .module-bg-image {
  transform: scale(1.05);
}

.module-card:hover .module-content {
  /* Glass effect appears on hover */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: none;
}

.module-card:hover .module-badge {
  /* Glass effect for badge on hover */
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.module-card:hover .module-title {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.module-card:hover .module-faculty {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}


.module-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.module-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 60%;
}

.module-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.module-card:hover .module-image {
  transform: scale(1.1);
}

.module-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px;
}

.module-badge {
  background: rgba(255, 255, 255, 0.9);
  color: #1e293b;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.new-badge {
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
  animation: pulse 2s ease-in-out infinite;
  position: absolute;
    top: 10px;
    right: 10px;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.module-content {
  padding: 10px;
  height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.module-title {
  font-size: 14px;
  font-weight: 600;
  color: white;
  line-height: 1.3;
  margin-bottom: 8px;
}

.module-faculty {
  font-size: 12px;
  color: white;
  margin-bottom: 8px;
}

.module-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 500;
}

/* ========== VIEW MORE CARD (Tall Format) ========== */
.view-more-card.bento-tall {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.view-more-card.bento-tall:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Background section with gradient */
.view-more-background {
  position: relative;
  overflow: hidden;
  height: 60%;
}

.view-more-gradient {
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  transition: transform 0.6s ease;
}

.view-more-card:hover .view-more-gradient {
  transform: scale(1.1);
}

.view-more-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px;
}

.view-more-badge {
  background: rgba(255, 255, 255, 0.9);
  color: #1e293b;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.view-more-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(180deg); }
}

#modules-curriculum > div.container-fluid.py-120 > div.row.g-0.mx-0 > div.col-lg-6.desktop-tablet-only.px-4 > div
{
  padding-top: 10px;
}
/* Content section */
.view-more-content {
  padding: 16px;
  height: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
}

.view-more-title {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
  margin-bottom: 8px;
}

.view-more-subtitle {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 8px;
  line-height: 1.4;
}

.view-more-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.view-more-tags .tag {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 500;
}

/* Hover effects */
.view-more-card:hover .view-more-title {
  color: #667eea;
}

.view-more-card:hover .view-more-badge {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.05);
}

.view-more-card:hover .view-more-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .view-more-card.bento-tall {
    grid-column: span 1;
    grid-row: span 2;
  }
}

@media (max-width: 767.98px) {
  .view-more-card.bento-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .view-more-background {
    height: 65%;
  }
  
  .view-more-content {
    height: 35%;
    padding: 12px;
  }
}

/* ========== VIEW MORE CARD (Tall Format - Simplified) ========== */
.view-more-card.bento-tall {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  grid-column: span 1;  /* Same width as card 7 */
  grid-row: span 2;     /* Same height as card 7 */
}

.view-more-card.bento-tall:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Background section with blue gradient */
.view-more-background {
  position: relative;
  overflow: hidden;
  height: 75%; /* Increased to give more space to gradient */
  border-radius: 16px 16px 0px 0px;
}

.view-more-gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #667eea 100%); /* Blue gradient */
  transition: transform 0.6s ease;
}

.view-more-card:hover .view-more-gradient {
  transform: scale(1.1);
}

.view-more-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px;
}

.view-more-badge {
  background: rgba(255, 255, 255, 0.9);
  color: #1e293b;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.view-more-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(180deg); }
}

/* Simplified content section */
.view-more-content {
  padding: 16px;
  height: 35%; /* Reduced height */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center the title */
  align-items: center;
  background: white;
  text-align: center;
   border-radius: 0 0px 16px 16px;
}



.view-more-title {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
  margin: 0; /* Remove margin to prevent overflow */
}

/* Hover effects */
.view-more-card:hover .view-more-title {
  color: #4facfe; /* Match blue gradient */
}

.view-more-card:hover .view-more-badge {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.05);
}

.view-more-card:hover .view-more-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .view-more-card.bento-tall {
    grid-column: span 1;
    grid-row: span 2;
  }
}

@media (max-width: 767.98px) {
  .view-more-card.bento-tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .view-more-background {
    height: 70%;
  }
  
  .view-more-content {
    height: 30%;
    padding: 12px;
  }
  
  .view-more-title {
    font-size: 12px;
  }
}

/* ========== 14-MODULE GRID LAYOUT ========== */
.modules-grid-14 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-height: 650px;
  overflow-y: auto;
  padding-right: 10px;
  padding-left: 10px;
}

/* Scrollbar styling */
.modules-grid-14::-webkit-scrollbar {
  width: 8px;
}

.modules-grid-14::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

.modules-grid-14::-webkit-scrollbar-thumb {
  background: rgba(99, 102, 241, 0.3);
  border-radius: 4px;
}

.modules-grid-14::-webkit-scrollbar-thumb:hover {
  background: rgba(99, 102, 241, 0.5);
}

/* ========== CLICKABLE MODULE CARDS ========== */
.module-card.clickable {
  cursor: pointer;
  transition: all 0.3s ease;
  height: 200px;
}

.module-card.clickable:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.module-card.clickable.active {
  border: 2px solid #6366f1;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 991.98px) {
  .modules-grid-14 {
    grid-template-columns: repeat(2, 1fr);
    max-height: 500px;
  }
}

@media (max-width: 767.98px) {
  .modules-grid-14 {
    grid-template-columns: 1fr;
    max-height: 400px;
  }
  
  .module-card.clickable {
    height: 180px;
  }
}


/* ========== COMPACT VIEW MORE CARD ========== */
.view-more-card.bento-compact {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  padding: 16px;
}

.view-more-content {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.view-more-content .view-more-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.view-more-text {
  flex: 1;
  text-align: left;
}

.view-more-text h5 {
  color: white;
  margin-bottom: 4px;
  font-size: 16px;
}

.view-more-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  margin: 0;
}

.view-more-arrow {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease;
}

.view-more-card:hover .view-more-arrow {
  transform: translateX(4px);
}

.bento-item[data-module="4"] {
  height: 238px !important; /* Exact pixel height */
  grid-row: unset; /* Remove grid row control */
      padding-bottom: 20px;
}

.bento-item[data-module="5"] {
  height: 238px !important; /* Exact pixel height */
  grid-row: unset; /* Remove grid row control */
      padding-bottom: 20px;
}

.bento-item[data-module="6"] {
  height: 238px !important; /* Exact pixel height */
  grid-row: unset; /* Remove grid row control */
      padding-bottom: 20px;
}

/* Or create a custom class */
.bento-exact-height {
  height: 285px !important;
  grid-row: unset;
}

.bento-item[data-module="7"] {
    height: 238px !important;
    grid-row: unset;
    padding-bottom: 20px;
}
/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 991.98px) {
  .bento-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(8, 100px);
    height: 820px;
  }
  
  .bento-large {
    grid-column: span 2;
    grid-row: span 2;
  }
  
  .bento-medium {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .bento-tall {
    grid-column: span 1;
    grid-row: span 2;
  }
  
  .bento-compact {
    grid-column: span 2;
    grid-row: span 1;
     grid-column-start: 3; /* Position it in columns 3-4 */
  }
}

@media (max-width: 767.98px) {
  .bento-container {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(9, 120px);
    height: auto;
  }
  
  .bento-large,
  .bento-medium,
  .bento-tall,
  .bento-compact {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .view-more-content {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  
  .view-more-text {
    text-align: center;
  }
}

/* ========== CURRICULUM PANEL ========== */
.curriculum-panel {
  padding: 32px;
  height: 644px;
  
  overflow: auto !important;
}

.panel-header {
  margin-bottom: 32px;
  text-align: center;
}

.panel-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.panel-subtitle {
  color: #64748b;
  font-size: 14px;
}

/* ========== MODERN ACCORDION ========== */
.modern-accordion {
  margin-bottom: 32px;
}

.accordion-item {
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  border: none;
  transition: all 0.3s ease;
}

.accordion-item.active {
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15);
}

.accordion-button {
  background: transparent;
  border: none;
  padding: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  box-shadow: none;
  background: transparent;
}

.accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 12px;
  color: white;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.accordion-content {
  flex: 1;
}

.accordion-content h5 {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}

.faculty-tag {
  background: rgba(99, 102, 241, 0.1);
  color: #6366f1;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
}

.accordion-arrow {
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed) .accordion-arrow {
  transform: rotate(180deg);
}

/* ========== CURRICULUM PHASES ========== */
.accordion-body {
  padding: 0 20px 20px;
}

.phase-item {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(248, 250, 252, 0.8);
  border-radius: 12px;
  border-left: 4px solid var(--gradient-primary);
}

.phase-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.phase-badge {
  background: var(--gradient-primary);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.phase-title {
  font-weight: 600;
  color: #374151;
}

.phase-content {
  list-style: none;
  padding: 0;
  margin: 0;
}

.phase-content li {

  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

.phase-content li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: #6366f1;
  font-weight: bold;
}

.phase-content li ul li:before {
content: '→';

  position: absolute;
  left: 0;
  color: #6366f1;
  font-weight: bold;
}

.phase-content li ul li{
   position: relative;
  padding-left: 20px !important;
  margin-bottom: 8px;
}

.phase-content li ul li{
    list-style-type: none;
}

.phase-content li ul li
{
    padding-left:0px;
}

.phase-content ul li{
    list-style-type: none;
}

/* ========== MODERN BUTTON ========== */
.btn-modern {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
  color: white;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 991.98px) {
  .bento-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 100px);
    height: 620px;
  }
  
  .bento-large {
    grid-column: span 2;
    grid-row: span 2;
  }
  
  .bento-medium {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .curriculum-panel {
    margin-top: 40px;
    height: auto;
  }
  
  .stats-row {
    margin-bottom: 40px;
  }
}

@media (max-width: 767.98px) {
  .py-120 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .bento-container {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(8, 120px);
    height: auto;
  }
  
  .bento-large,
  .bento-medium,
  .bento-small {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .display-4 {
    font-size: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

/* ========== FULL WIDTH SECTION ========== */
.full-width-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 0;
}

.full-width-section .container-fluid {
  max-width: 100%;
  padding: 0;
}

/* ========== VISIBILITY CONTROLS ========== */
.desktop-tablet-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 767.98px) {
  .desktop-tablet-only {
    display: none !important;
  }
  
  .mobile-only {
    display: block !important;
  }
  
  /* Make accordion full width on mobile */
  .accordion-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  /* Adjust curriculum panel for mobile */
  .curriculum-panel {
    margin: 0;
    border-radius: 0;
    min-height: 100vh;
  }
  
  /* Remove hero section margins on mobile */
  .full-width-section .mb-100 {
    margin-bottom: 50px;
  }
}

/* ========== SECTION ADJUSTMENTS ========== */
.section-modern {
  padding-top: 0;
  padding-bottom: 0;
}

.py-120 {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* ========== EXISTING 14-MODULE GRID LAYOUT ========== */
.modules-grid-14 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-height: 650px;
  overflow-y: auto;
  padding-right: 10px;
}

/* ========== CLICKABLE MODULE CARDS ========== */
.module-card.clickable {
  cursor: pointer;
  transition: all 0.3s ease;
  height: 200px;
}

.module-card.clickable:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.module-card.clickable.active {
  border: 2px solid #6366f1;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}


/* ========== MODERN REGISTRATION FORM STYLES ========== */
.modern-registration-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* ========== GLASS CARD BASE ========== */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* ========== PRICING CARD ========== */
.pricing-card {
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.card-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.pricing-header p {
    color: #64748b;
    margin: 0;
}

.card-body {
    padding: 2rem;
}

/* ========== PRICE ROW ========== */
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 16px;
    margin-bottom: 2rem;
}

.price-label {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.label-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.label-desc {
    font-size: 0.875rem;
    color: #64748b;
}

.price-value {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: #6366f1;
}

.amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
}

/* ========== WORKSHOP SECTION ========== */
.workshop-section {
    margin-bottom: 2rem;
}

.section-header {
    margin-bottom: 1.5rem;
}

.section-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #64748b;
    margin: 0;
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1rem;
}

/* ========== WORKSHOP CARDS ========== */
.workshop-card {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    padding: 1.25rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.workshop-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.workshop-card.selected {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
}

.workshop-card.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: rgba(0, 0, 0, 0.02);
}

.workshop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.workshop-checkbox {
    position: relative;
}

.workshop-input {
    appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.workshop-input:checked {
    background: #6366f1;
    border-color: #6366f1;
}

.workshop-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.workshop-input:checked::after {
    content: "✓";
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.workshop-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #059669;
}

.workshop-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.workshop-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faculty-info, .location-info {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.faculty-label, .location-icon {
    color: #6b7280;
}

.faculty-name, .location-name {
    color: #374151;
    font-weight: 500;
}

.availability-info {
    margin-top: 0.25rem;
}

.slots-available {
    background: rgba(34, 197, 94, 0.1);
    color: #059669;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.slots-full {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* ========== PRICING SUMMARY ========== */
.pricing-summary {
    background: rgba(248, 250, 252, 0.8);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.summary-row:last-child {
    border-bottom: none;
}

.total-row {
    border-top: 2px solid rgba(99, 102, 241, 0.2);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.total-row .summary-label,
.total-row .summary-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}

.discount-amount {
    color: #059669;
}

/* ========== PAYMENT OPTIONS ========== */
.payment-options {
    margin: 2rem 0;
}

.payment-options h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.payment-choice {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-option {
    position: relative;
}

.payment-radio {
    appearance: none;
    position: absolute;
    opacity: 0;
}

.payment-label {
    display: block;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-radio:checked + .payment-label {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
}

.option-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.option-title {
    font-weight: 600;
    color: #1e293b;
}

.option-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #6366f1;
}

.option-desc {
    display: block;
    color: #64748b;
    margin-top: 0.25rem;
}

/* ========== COUPON SECTION ========== */
.coupon-section {
    margin: 1.5rem 0;
}

.coupon-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.coupon-checkbox {
    width: 20px;
    height: 20px;
    accent-color: #6366f1;
}

.coupon-label {
    font-weight: 500;
    color: #374151;
    cursor: pointer;
}

.coupon-input-group {
    display: flex;
    gap: 0.5rem;
}

.coupon-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.coupon-input:focus {
    outline: none;
    border-color: #6366f1;
}

.coupon-btn {
    padding: 0.75rem 1.5rem;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.coupon-btn:hover {
    background: #5856eb;
}

/* ========== CARD FOOTER ========== */
.card-footer {
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: flex-end;
}

.btn-continue, .btn-payment {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-continue:hover, .btn-payment:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* ========== PERSONAL INFO CARD ========== */
.personal-info-card {
    animation: slideInUp 0.5s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
}

.form-control {
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.final-payment-info {
    flex: 1;
}

.payment-summary {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-label {
    font-size: 1.1rem;
    font-weight: 600;
    /* color: #374151; */
}

.payment-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #10b981;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 991.98px) {
    .workshops-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-choice {
        gap: 0.75rem;
    }
    
    .option-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 767.98px) {
    .card-body, .card-header, .card-footer {
        padding: 1.5rem;
    }
    
    .pricing-header h3 {
        font-size: 1.5rem;
    }
    
    .amount {
        font-size: 1.75rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .coupon-input-group {
        flex-direction: column;
    }
    
    .payment-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}


.portfolio-section {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #1e293b;
  position: relative;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 2px;
}

/* Modern Tab Design */
.tabs-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-button {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 0.875rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #64748b;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tab-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.tab-button:hover::before {
  left: 100%;
}

.tab-button.active {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-color: #6366f1;
  color: white;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
  transform: translateY(-2px);
}

.tab-button:hover:not(.active) {
  border-color: #6366f1;
  color: #4f46e5;
  background: rgba(99,102,241,0.1);
  transform: translateY(-1px);
}

/* Tab Content */
.tab-content {
  /* display: none; */
  animation: fadeIn 0.5s ease-in;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Modern Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item,
.video-thumbnail {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-item:hover,
.video-thumbnail:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img,
.video-thumbnail img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover img,
.video-thumbnail:hover img {
  transform: scale(1.1);
}

/* Video Play Button */
.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: rgba(99, 102, 241, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.video-thumbnail:hover .play-button-overlay {
  transform: translate(-50%, -50%) scale(1.15);
  background: rgba(99, 102, 241, 1);
}

/* Modern Lightbox */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.hidden {
  display: none;
  opacity: 0;
}

.lightbox-content {
  position: relative;
  width: 95vw;
  max-width: 1200px;
  max-height: 90vh;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  animation: lightboxAppear 0.3s ease;
}

@keyframes lightboxAppear {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: rgba(239, 68, 68, 0.9);
  transform: scale(1.1);
}

.lightbox-media {
  width: 100%;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-media iframe,
.lightbox-media img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
  border-radius: 12px;
}

.lightbox-media iframe {
  height: 80vh;
  border-radius: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .section-heading {
    font-size: 2rem;
  }
  
  .tabs-container {
    gap: 0.5rem;
  }
  
  .tab-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .lightbox-content {
    width: 98vw;
    max-height: 95vh;
  }
  
  .lightbox-media {
    height: 70vh;
  }
  
  .lightbox-media iframe {
    height: 70vh;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-section {
    padding: 2rem 0.5rem;
  }
}

/* Focus styles for accessibility */
.gallery-item:focus,
.video-thumbnail:focus,
.tab-button:focus {
  outline: 3px solid #6366f1;
  outline-offset: 3px;
}


/* ========== 3-PART FORM LAYOUT ========== */
.three-part-form {
    width: 100%;
}

.form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 400px;
    gap: 2rem;
    align-items: start;
}

/* ========== GLASS CARD BASE ========== */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* ========== PART STYLING ========== */
.part {
    display: flex;
    flex-direction: column;
    height: fit-content;
    transition: all 0.3s ease;
}

.part:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.part-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.part-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.part-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.part-body {
    padding: 2rem;
    flex: 1;
}

.part-footer {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========== STICKY SUMMARY ========== */
.sticky-summary {
    position: sticky;
    top: 2rem;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

/* ========== PROGRAM DETAILS SECTION ========== */
.base-price-card {
    background: rgba(99, 102, 241, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.price-info p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: #6366f1;
}

.amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
}

/* ========== WORKSHOP SELECTION ========== */
.section-title h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.section-title p {
    color: #64748b;
    margin: 0 0 1.5rem 0;
}

.workshops-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.workshop-item {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.workshop-item:hover:not(.disabled) {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.workshop-item.selected {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
}

.workshop-item.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: rgba(0, 0, 0, 0.02);
}

.workshop-checkbox {
    flex-shrink: 0;
    position: relative;
    margin-top: 0.25rem;
}

.workshop-input {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.workshop-input:checked {
    background: #6366f1;
    border-color: #6366f1;
}

.checkbox-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.workshop-input:checked + .checkbox-label::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.workshop-info {
    flex: 1;
}

.workshop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.workshop-header h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.workshop-header .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #059669;
}

.workshop-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.875rem;
}

.faculty, .location {
    color: #64748b;
}

.availability.available {
    color: #059669;
    font-weight: 500;
}

.availability.full {
    color: #dc2626;
    font-weight: 500;
}

/* ========== PERSONAL INFO SECTION ========== */
.form-fields {
    display: grid;
    gap: 1.5rem;
    /* margin-bottom: 2rem; */
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
}

.form-control {
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* ========== COUPON SECTION ========== */
.coupon-section {
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    padding-top: 1.5rem;
}

.coupon-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.coupon-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #6366f1;
}

.coupon-label {
    font-weight: 500;
    color: #374151;
    cursor: pointer;
}

.coupon-input-group {
    display: flex;
    gap: 0.5rem;
}

.coupon-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.coupon-input:focus {
    outline: none;
    border-color: #6366f1;
}

.coupon-btn {
    padding: 0.75rem 1.5rem;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.coupon-btn:hover {
    background: #5856eb;
}

/* ========== PRICING SUMMARY SECTION ========== */
.price-breakdown {
    margin-bottom: 2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item .label {
    font-weight: 500;
    color: #64748b;
}

.price-item .value {
    font-weight: 600;
    color: #1e293b;
}

.subtotal-item {
    border-bottom: 2px solid rgba(99, 102, 241, 0.2);
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
}

.total-item {
    border-top: 2px solid rgba(99, 102, 241, 0.2);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.total-item .label,
.total-item .value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
}

.discount {
    color: #059669 !important;
}

/* ========== PAYMENT OPTIONS ========== */
.payment-options h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.payment-choice {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.payment-option {
    position: relative;
}

.payment-radio {
    appearance: none;
    position: absolute;
    opacity: 0;
}

.payment-option-label {
    display: block;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-radio:checked + .payment-option-label {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
}

.option-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.option-title {
    font-weight: 600;
    color: #1e293b;
}

.option-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #6366f1;
}

.option-note {
    display: block;
    color: #64748b;
    margin-top: 0.25rem;
    font-size: 0.75rem;
}

/* ========== FINAL PAYMENT ========== */
.final-payment {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.payment-highlight {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-label {
    /* color: rgba(255, 255, 255, 0.9); */
    font-weight: 600;
    font-size: 1.1rem;
}

.payment-amount {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
}

/* ========== PAYMENT BUTTON ========== */
.btn-payment-submit {
    width: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-payment-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
    .form-layout {
        grid-template-columns: 1fr 1fr 350px;
    }
}

@media (max-width: 991.98px) {
    .form-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sticky-summary {
        position: static;
        order: 3;
        max-height: none;
    }
    
    .personal-info {
        order: 2;
    }
}

@media (max-width: 767.98px) {
    .part-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .part-body {
        padding: 1.5rem;
    }
    
    .part-footer {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .workshop-item {
        padding: 1rem;
    }
    
    .form-layout {
        gap: 1.5rem;
    }
}

/* ========== 2-PART FORM LAYOUT ========== */
.two-part-form .form-layout {
    display: grid;
    grid-template-columns: 2fr 1fr; /* Program Details (2 parts) + Pricing (1 part) */
    gap: 2rem;
    align-items: start;
}

/* ========== GLASS CARD BASE ========== */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* ========== PART STYLING ========== */
.part {
    display: flex;
    flex-direction: column;
    height: fit-content;
    transition: all 0.3s ease;
}

.part:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.part-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.part-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.part-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.part-body {
    padding: 2rem;
    flex: 1;
}

.part-footer {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========== STICKY SUMMARY ========== */
.sticky-summary {
    position: sticky;
    top: 2rem;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

/* ========== PROGRAM SECTION ========== */
.base-price-card {
    background: rgba(99, 102, 241, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.price-info p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: #6366f1;
}

.amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
}

/* ========== WORKSHOP SELECTION ========== */
.section-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #64748b;
    margin: 0 0 1.5rem 0;
}

.workshop-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 450px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.workshop-item {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.workshop-item:hover:not(.disabled) {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.workshop-item.selected {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
}

.workshop-item.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: rgba(0, 0, 0, 0.02);
}

.workshop-checkbox {
    flex-shrink: 0;
    position: relative;
    margin-top: 0.25rem;
}

.workshop-input {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.workshop-input:checked {
    background: #6366f1;
    border-color: #6366f1;
}

.checkbox-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.workshop-input:checked + .checkbox-label::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.workshop-info {
    flex: 1;
}

.workshop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.workshop-header h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.workshop-header .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #059669;
}

.workshop-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
}

.faculty, .location {
    color: #64748b;
}

.availability.available {
    color: #059669;
    font-weight: 500;
}

.availability.full {
    color: #dc2626;
    font-weight: 500;
}

/* ========== COUPON SECTION ========== */
.coupon-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.coupon-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.coupon-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #6366f1;
}

.coupon-label {
    font-weight: 500;
    color: #374151;
    cursor: pointer;
}

.coupon-input-group {
    display: flex;
    gap: 0.5rem;
}

.coupon-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.coupon-input:focus {
    outline: none;
    border-color: #6366f1;
}

.coupon-btn {
    padding: 0.75rem 1.5rem;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.coupon-btn:hover {
    background: #5856eb;
}

/* ========== PRICING SUMMARY SECTION ========== */
.price-breakdown {
    margin-bottom: 2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item .label {
    font-weight: 500;
    color: #64748b;
}

.price-item .value {
    font-weight: 600;
    color: #1e293b;
}

.subtotal-item {
    border-bottom: 2px solid rgba(99, 102, 241, 0.2);
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
}

.total-item {
    border-top: 2px solid rgba(99, 102, 241, 0.2);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.total-item .label,
.total-item .value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
}

.discount {
    color: #059669 !important;
}

/* ========== PAYMENT OPTIONS ========== */
.payment-options h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.payment-choice {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.payment-option {
    position: relative;
}

.payment-radio {
    appearance: none;
    position: absolute;
    opacity: 0;
}

.payment-option-label {
    display: block;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-radio:checked + .payment-option-label {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
}

.option-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.option-title {
    font-weight: 600;
    color: #1e293b;
}

.option-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #6366f1;
}

.option-note {
    display: block;
    color: #64748b;
    margin-top: 0.25rem;
    font-size: 0.75rem;
}

/* ========== FINAL PAYMENT ========== */
.final-payment {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.payment-highlight {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-label {
    /* color: rgba(255, 255, 255, 0.9); */
    font-weight: 600;
    font-size: 1.1rem;
}
.option-items{
    display: flex;
    flex-direction: column;
    text-align: center;
}

.payment-amount {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
}

/* ========== IMPROVED PAYMENT BUTTON (SMALLER & ELEGANT) ========== */
.btn-pay-now {
    width: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem; /* Reduced from large padding */
    border-radius: 16px;
    font-size: 1rem; /* Reduced from 1.1rem */
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-pay-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.btn-pay-now:active {
    transform: translateY(0);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 991.98px) {
    .form-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sticky-summary {
        position: static;
        order: 2;
        max-height: none;
    }
}

@media (max-width: 767.98px) {
    .part-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .part-body {
        padding: 1.5rem;
    }
    
    .part-footer {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .workshop-item {
        padding: 1rem;
    }
    
    .form-layout {
        gap: 1.5rem;
    }
    
    .workshop-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ========== COMPACT SECTION STYLING ========== */
.compact-section {
    /* max-height: calc(100vh - 4rem); */
    overflow: hidden;
}

.compact-header {
    padding: 1.25rem 1.5rem 0.75rem;
}

.compact-header .part-icon {
    width: 40px;
    height: 40px;
}

.compact-header h3 {
    font-size: 1.25rem;
    margin: 0;
}

.compact-body {
    padding: 1rem 1.5rem 1.5rem;
}

/* ========== COMPACT BASE PRICE CARD ========== */
.compact-base-price {
    background: rgba(99, 102, 241, 0.05);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.compact-base-price .price-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.compact-base-price .price-info p {
    font-size: 0.75rem;
    color: #64748b;
    margin: 0;
}

.compact-base-price .amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
}

.compact-base-price .currency {
    font-size: 1rem;
    font-weight: 600;
    color: #6366f1;
}

/* ========== COMPACT SECTION HEADER ========== */
.compact-section-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.compact-section-header p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0 0 1rem 0;
}

/* ========== WORKSHOP CARDS GRID ========== */
.workshop-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.workshop-card {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    padding: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 120px;
    display: flex;
    flex-direction: column;
}

.workshop-card:hover:not(.disabled) {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.workshop-card.selected {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
}

.workshop-card.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: rgba(0, 0, 0, 0.02);
}

.workshop-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.workshop-checkbox {
    position: relative;
}

.workshop-input {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.workshop-input:checked {
    background: #6366f1;
    border-color: #6366f1;
}

.checkbox-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.workshop-input:checked + .checkbox-label::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 10px;
}

.workshop-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: #059669;
    line-height: 1;
}

.workshop-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.workshop-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.workshop-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.75rem;
}

.faculty {
    color: #64748b;
    font-weight: 500;
}

.location {
    color: #64748b;
}

.availability.available {
    color: #059669;
    font-weight: 500;
}

.availability.full {
    color: #dc2626;
    font-weight: 500;
}

/* ========== COMPACT COUPON SECTION ========== */
.compact-coupon {
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    padding-top: 1rem;
    margin-top: 0;
}

.coupon-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.coupon-checkbox {
    width: 16px;
    height: 16px;
    accent-color: #6366f1;
}

.coupon-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
}

.coupon-input-group {
    display: flex;
    gap: 0.5rem;
}

.coupon-input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: border-color 0.3s ease;
}

.coupon-input:focus {
    outline: none;
    border-color: #6366f1;
}

.coupon-btn {
    padding: 0.5rem 1rem;
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.coupon-btn:hover {
    background: #5856eb;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 991.98px) {
    .workshop-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .compact-body {
        padding: 0.75rem 1rem 1rem;
    }
    
    .workshop-cards-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .workshop-card {
        min-height: 100px;
        padding: 0.75rem;
    }
    
    .workshop-title {
        font-size: 0.85rem;
    }
    
    .workshop-details {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .compact-header {
        padding: 1rem 1rem 0.5rem;
    }
    
    .compact-body {
        padding: 0.5rem 1rem 1rem;
    }
    
    .workshop-card {
        min-height: 90px;
        padding: 0.625rem;
    }
}


/* ========== COMPACT PRICING SUMMARY ========== */
.compact-pricing {
    max-height: calc(100vh - 4rem);
    overflow: auto;
}

.compact-pricing-header {
    padding: 1rem 1.25rem 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.compact-pricing-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.compact-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.compact-pricing-body {
    padding: 0rem 1.25rem;
    flex: 1;
}

/* ========== COMPACT PRICE BREAKDOWN ========== */
.compact-breakdown {
    margin-bottom: 1.25rem;
}

.compact-breakdown .price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
}

.compact-breakdown .price-item:last-child {
    border-bottom: none;
}

.compact-breakdown .price-item .label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #64748b;
}

.compact-breakdown .price-item .value {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
}

.compact-breakdown .subtotal-item {
    border-bottom: 2px solid rgba(99, 102, 241, 0.2);
    padding-bottom: 0.75rem;
    margin-bottom: 0.25rem;
}

.compact-breakdown .total-item {
    border-top: 2px solid rgba(99, 102, 241, 0.2);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
}

.compact-breakdown .total-item .label,
.compact-breakdown .total-item .value {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
}

.compact-breakdown .discount {
    color: #059669 !important;
}

/* ========== COMPACT PAYMENT OPTIONS ========== */
.compact-payment h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.compact-payment .payment-choice {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.compact-payment .payment-option {
    position: relative;
}

.compact-payment .payment-radio {
    appearance: none;
    position: absolute;
    opacity: 0;
}

.compact-payment .payment-option-label {
    display: block;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 10px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.compact-payment .payment-radio:checked + .payment-option-label {
    border-color: #6366f1;
    background: rgba(99, 102, 241, 0.05);
}

.compact-payment .option-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.compact-payment .option-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
}

.compact-payment .option-amount {
    font-size: 0.9rem;
    font-weight: 700;
    color: #6366f1;
}

.compact-payment .option-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.compact-payment .option-note {
    font-size: 0.65rem;
    color: #64748b;
    margin-top: 0.125rem;
    line-height: 1;
}

/* ========== COMPACT FOOTER & BUTTON ========== */
.compact-footer {
    padding: 0.75rem 1.25rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.compact-btn {
    width: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.25rem; /* Reduced from 0.875rem */
    border-radius: 12px;
    font-size: 0.9rem; /* Reduced from 1rem */
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.compact-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.compact-btn:active {
    transform: translateY(0);
}

/* ========== RESPONSIVE COMPACT DESIGN ========== */
@media (max-width: 991.98px) {
    .compact-pricing {
        position: static;
        max-height: none;
    }
}

@media (max-width: 767.98px) {
    .compact-pricing-header {
        padding: 0.875rem 1rem 0.625rem;
    }
    
    .compact-pricing-body {
        padding: 0.875rem 1rem;
    }
    
    .compact-footer {
        padding: 0.625rem 1rem 0.875rem;
    }
    
    .compact-breakdown .price-item .label,
    .compact-breakdown .price-item .value {
        font-size: 0.8rem;
    }
    
    .compact-payment .option-title {
        font-size: 0.8rem;
    }
    
    .compact-payment .option-amount {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .compact-pricing-header {
        padding: 0.75rem 0.875rem 0.5rem;
    }
    
    .compact-pricing-body {
        padding: 0.75rem 0.875rem;
    }
    
    .compact-footer {
        padding: 0.5rem 0.875rem 0.75rem;
    }
    
    .compact-btn {
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
    }
}


@media (max-width: 767.98px) {
    .two-part-form .form-layout {
        grid-template-columns: 1fr; /* Single column for mobile */
        gap: 1rem;
    }
    
    .sticky-summary {
        position: static;
        order: 2;
        max-height: none;
    }
}


/* ========== MASONRY GALLERY LAYOUT ========== */
.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 200px;
  gap: 20px;
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.masonry-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Different Heights for Masonry Effect */
.masonry-item.tall {
  grid-row: span 2; /* Takes 2 row units */
}

.masonry-item.wide {
  grid-column: span 2; /* Takes 2 column units */
}

.masonry-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.masonry-item:hover img {
  transform: scale(1.1);
}


/* Hide items initially */
.masonry-item.hidden-item {
  display: none;
  opacity: 0;
  transform: translateY(20px);
}

/* Show hidden items when they have the 'show' class */
.masonry-item.hidden-item.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s ease forwards;
}

/* Animation for showing items */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Image Overlay */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%);
  display: flex;
  align-items: flex-end;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.masonry-item:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  padding: 1.5rem;
  color: white;
  pointer-events: auto;
}

.overlay-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
}

.overlay-content p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
}

/* Hidden Items */
.hidden-item {
  display: none;
}

.hidden-item.show {
  display: block;
  animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== SHOW MORE BUTTON ========== */
.show-more-container {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem 0;
}

.show-more-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.show-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
}

.show-more-btn.expanded .btn-icon {
  transform: rotate(180deg);
}

.show-more-btn.expanded .btn-text::after {
  content: " Less";
}

/* Force initial visibility rules */
.masonry-item {
  display: block !important;
  opacity: 1;
  visibility: visible;
}

.masonry-item.hidden-item {
  display: none !important;
  opacity: 0;
  visibility: hidden;
}

.masonry-item.hidden-item.show {
  display: block !important;
  opacity: 1;
  visibility: visible;
  animation: fadeInUp 0.6s ease forwards;
}

/* Override any mobile-specific hiding */
@media (max-width: 768px) {
  .masonry-item:not(.hidden-item) {
    display: block !important;
  }
  
  .masonry-item.hidden-item:not(.show) {
    display: none !important;
  }
}


/* ========== FACULTY MESSAGES SECTION ========== */
.faculty-messages-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.faculty-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faculty-header .section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e293b;
  position: relative;
}

.faculty-header .section-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ========== FACULTY VIDEO GRID ========== */
.faculty-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  padding: 0 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.faculty-video-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.faculty-video-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.faculty-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.faculty-video-card:hover img {
  transform: scale(1.1);
}

/* .play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(16, 185, 129, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
} */

.faculty-video-card:hover .play-button-overlay {
  transform: translate(-50%, -50%) scale(1.15);
  background: rgba(16, 185, 129, 1);
}

.faculty-info {
  padding: 1.5rem;
}

.faculty-info h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.5rem 0;
}

.faculty-info p {
  font-size: 0.9rem;
  color: #10b981;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
}

.message-topic {
  font-size: 0.875rem;
  color: #64748b;
  font-style: italic;
  line-height: 1.4;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 991.98px) {
  .masonry-gallery {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    padding: 1.5rem;
  }
  
  .faculty-video-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .masonry-gallery {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 1rem;
  }
  
  .masonry-item.wide {
    grid-column: span 1; /* Remove wide effect on mobile */
  }
  
  .faculty-video-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .faculty-header .section-heading {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
}

/* ========== LIGHTBOX NAVIGATION ========== */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: translateY(-50%) scale(0.9);
}

/* ========== LIGHTBOX COUNTER ========== */
.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* ========== RESPONSIVE NAVIGATION ========== */
@media (max-width: 767.98px) {
  .lightbox-nav {
    width: 45px;
    height: 45px;
  }
  
  .lightbox-prev {
    left: 15px;
  }
  
  .lightbox-next {
    right: 15px;
  }
  
  .lightbox-counter {
    bottom: 15px;
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/* ========== KEYBOARD NAVIGATION HINT ========== */
.lightbox-overlay.active .lightbox-content::after {
  content: 'Use ← → arrow keys or swipe to navigate';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  opacity: 0;
  animation: fadeInOut 3s ease;
  pointer-events: none;
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0; }
  20%, 80% { opacity: 1; }
}

/* ========== MODERN HOME SECTION - NEUTRAL COLORS ========== */
.home-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Override any existing overlays with neutral tones */
.bg-light-alpha-90::before {
    background-color: rgba(248, 250, 252, 0.92) !important;
    background: none;
}

/* ========== MODERN TITLE ========== */
.hs-title-modern {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1e293b;
    text-shadow: none;
}

.section-caption {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #094891 !important; 
    margin-bottom: 1.5rem;
}

/* ========== KEY FEATURES SECTION ========== */
.key-features-wrapper {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    /* padding: 2rem 1.5rem; */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.key-features-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 120px;
    gap: 14px;
    min-height:232px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: #f0f9ff;
    border: 2px solid #094891;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #094891;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: #094891;
    color: white;
    transform: scale(1.1);
}

.feature-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    line-height: 1.3;
}

.feature-separator {
    font-size: 1.5rem;
    font-weight: 300;
    color: #d1d5db;
    margin: 0 1rem;
}

/* ========== SECTION DESCRIPTION ========== */
.section-descr {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 90%;
}

/* ========== MODERN REGISTER BUTTON ========== */
.btn-register-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #094891;
    color: white;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgb(5 40 150 / 18%);
    border: none;
}

.btn-register-modern:hover {
    background-color: #094891;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(5, 150, 105, 0.4);
    color: white;
    text-decoration: none;
}

.btn-register-modern svg {
    transition: transform 0.3s ease;
}

.btn-register-modern:hover svg {
    transform: translateX(3px);
}

/* ========== MODERN STACK IMAGES ========== */
/*.stack-images-modern {
    position: relative;
    height: 500px;
    width: 100%;
}

.stack-images-1,
.stack-images-2,
.stack-images-3 {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 3px solid white;
}

.stack-images-1 {
    top: 0;
    right: 100px;
    width: 240px;
    height: 170px;
    z-index: 3;
}

.stack-images-2 {
    top: 120px;
    right: 0;
    width: 270px;
    height: 190px;
    z-index: 2;
}

.stack-images-3 {
    top: 240px;
    right: 80px;
    width: 250px;
    height: 180px;
    z-index: 1;
}

.stack-images-1:hover,
.stack-images-2:hover,
.stack-images-3:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stack-images-1 img,
.stack-images-2 img,
.stack-images-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
}*/

/* ========== RESPONSIVE DESIGN ========== */

/*@media (max-width: 991px) {
  .stack-images {
    display: none !important;
  }
}
*/
/*@media (max-width: 1199.98px) {
    .hs-title-modern {
        font-size: 2.8rem;
    }
    
    .stack-images-modern {
        height: 450px;
    }
    
    .stack-images-1 {
        width: 220px;
        height: 155px;
        right: 80px;
    }
    
    .stack-images-2 {
        width: 250px;
        height: 175px;
    }
    
    .stack-images-3 {
        width: 230px;
        height: 165px;
        right: 60px;
    }
}*/

@media (max-width: 991.98px) {
    .text-lg-start {
        text-align: center !important;
    }
    
    .hs-title-modern {
        font-size: 2.5rem;
    }
    
    .key-features-grid {
        justify-content: center;
    }
    
    .section-descr {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .hs-title-modern {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .section-caption {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
        margin-bottom: 1rem;
    }
    
    .key-features-wrapper {
        /* padding: 1.5rem 1rem; */
    }
    
    .key-features-grid {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .feature-separator {
        display: none;
    }
    
    .feature-card {
        min-width: auto;
        width: 100%;
    }
    
    .btn-register-modern {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .hs-title-modern {
        font-size: 1.75rem;
    }
    
    .section-caption {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .key-features-wrapper {
        /* padding: 1.25rem 0.75rem; */
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-text {
        font-size: 1rem;
    }
    
    .btn-register-modern {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ========== REFERRAL DISCOUNT STYLING ========== */
.discount-item .ref-name {
    color: #dc2626;
    font-weight: 500;
    font-size: 0.8rem;
}

.discount-item .coupon {
    color: #dc2626;
    font-weight: 500;
    font-size: 0.8rem;
}

.discount-item {
    background-color: rgba(220, 38, 38, 0.05);
    border-radius: 8px;
    padding: 0.75rem !important;
    margin: 0.5rem 0;
}

.discount-item .label {
    color: #dc2626 !important;
    font-weight: 600;
}

.discount-item .value {
    color: #dc2626 !important;
    font-weight: 700;
}

/* ========== FINAL PAYABLE AMOUNT ========== */
.final-item {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    color: white !important;
    border-radius: 8px;
    padding: 1rem !important;
    margin-top: 0.5rem;
        width: 100%;
    background: #667eea;
    color: white;
    border: none;
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex
;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.final-item .label,
.final-item .value {
 
    font-weight: 700;
}

/* ========== COUPON SECTION ========== */
.coupon-section {
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.coupon-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.coupon-checkbox {
    width: 16px;
    height: 16px;
    accent-color: #667eea;
}

.coupon-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
}

.coupon-input-group {
    display: flex;
    gap: 0.5rem;
}

.coupon-input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: border-color 0.3s ease;
}

.coupon-input:focus {
    outline: none;
    border-color: #667eea;
}

.coupon-btn {
    padding: 0.5rem 1rem;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.coupon-btn:hover {
    background: #5a67d8;
}

.redeem-checkbox {
    width: 16px;
    height: 16px;
    accent-color: #667eea;
}

.redeem-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
}

/* ========== REGISTRATION FORM ========== */
.registration-form {
    /* margin: 1.5rem 0;
    padding: 1rem 0; */
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}

.registration-form h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
}

.form-control {
    padding: 0.5rem 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
}

/* ========== PAYMENT SUMMARY ========== */
.payment-summary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 1rem;
    margin: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-label {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.payment-amount {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
}

/* ========== CONTINUE REGISTRATION BUTTON ========== */
.btn-continue {
    width: 100%;
    background: #667eea;
    color: white;
    border: none;
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-continue:hover {
    background: #5a67d8;
    transform: translateY(-1px);
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */
@media (max-width: 767.98px) {
    .registration-form .form-fields {
        gap: 0.75rem;
    }
    
    .form-control {
        padding: 0.625rem 0.75rem;
    }
    
    .payment-summary {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .coupon-input-group {
        flex-direction: column;
        gap: 0.75rem;
    }
}
/* ========== VIDEO POPUP STYLING ========== */
.video-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.video-popup-overlay.hidden {
  display: none;
}

.video-popup-content {
  background: white;
  border-radius: 20px;
  max-width: 900px;
  width: 90vw;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.video-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: white;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.video-popup-close:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.video-popup-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1.5rem;
  text-align: center;
}

.video-popup-header h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.video-popup-header p {
  margin: 0;
  opacity: 0.9;
  font-size: 1rem;
}

.video-popup-player {
  position: relative;
  background: black;
}

.video-popup-player video {
  width: 100%;
  height: auto;
  max-height: 60vh;
  display: block;
}

.video-popup-info {
  padding: 1.5rem;
  background: #f8fafc;
}

.doctor-info {
  text-align: center;
}

.doctor-info h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
}

.doctor-info p {
  margin: 0 0 1rem 0;
  color: #64748b;
  font-size: 1rem;
}

.rating {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}

.rating .star {
  color: #fbbf24;
  font-size: 1.2rem;
}

/* ========== TESTIMONIAL PLAY BUTTON HOVER ========== */
.testimonial-video {
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-video:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-video:hover .play-button {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.95);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 767.98px) {
  .video-popup-content {
    width: 95vw;
    max-height: 85vh;
    border-radius: 15px;
  }
  
  .video-popup-header {
    padding: 1rem;
  }
  
  .video-popup-header h3 {
    font-size: 1.25rem;
  }
  
  .video-popup-info {
    padding: 1rem;
  }
  
  .video-popup-player video {
    max-height: 50vh;
  }
  
  .video-popup-close {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}
/* ========== SINGLE FULL WIDTH IMAGE ========== */
.single-image-wrapper {
    position: relative;
    width: 100%;
    height: auto;
}

.full-width-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    /* box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15); */
    transition: all 0.3s ease;
    /* border: 3px solid white; */
}

.full-width-image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 991.98px) {
    .single-image-wrapper {
        display: none !important;
    }
}

/* ========== FULL WIDTH SECTION STYLING ========== */
.full-width-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */
@media (max-width: 767.98px) {
    .full-width-section .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.no-pad{
  padding:0 !important;
}

.testimonials-pad{
  padding: 64px;
}

@media (max-width: 1024px) {
    #faculty > div > div.row.position-relative.mb-80.mb-sm-40.wow.fadeInUp.no-animate {
      display: grid; 
      grid-template-columns: 50% 50%;
    }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .grid-cols-4{
  display: grid !important;
  grid-template-columns: 33% 33% 33%!important;
}
}

 /* #faculty > div > div.row.position-relative.mb-80.mb-sm-40.wow.fadeInUp.no-animate , #faculty > div > div.row.position-relative.wow.fadeInUp.no-animate {
       display: grid; 
         grid-template-columns:  25% 25% 25% 25% ;
    }

 #faculty > div > div.row.position-relative.mb-80.mb-sm-40.wow.fadeInUp.animated , #faculty > div > div.row.position-relative.wow.fadeInUp.no-animate{
       display: grid !important; 
        grid-template-columns:  25% 25% 25% 25% ;
    } */


    @media (max-width: 768px) {
  .grid-cols-4{
  display: grid !important;
  grid-template-columns: 33% 33% 33% !important;
}
}
.min-97{
  min-height: 97px;
}

.fs-md{
  font-size: 14px;
  margin:0 !important;
}

.grid-cols-4{
  display: grid !important;
  
}

  @media (min-width: 768px) {
  .grid-cols-4{
 
  grid-template-columns: 25% 25% 25% 25% !important;
}
  }
.flex{
  display: flex;
}

.center-div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: 232px;
}

/* #faculty > div > div
{
  display: none !important;
  background-color: #000;
} */
/* ========== ENHANCED TEXT TESTIMONIAL CARDS ========== */
.testimonial-card.text-testimonial {
  background: white;
  border-radius: 16px;
  /* Enhanced box shadow for text testimonials */
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15), 
              0 4px 12px rgba(0, 0, 0, 0.08);

  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(102, 126, 234, 0.1);
}

.testimonial-card.text-testimonial:hover {
  transform: translateY(-5px);
  /* Enhanced hover shadow for text testimonials */
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25), 
              0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: rgba(102, 126, 234, 0.2);
}

.text-testimonial-wrapper {
  padding: 1.5rem;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-icon {
  color: #667eea;
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.testimonial-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #374151;
  font-style: italic;
  margin-bottom: 1rem;
  font-weight: 500;
}

.testimonial-footer {
  margin-top: auto;
}

.testimonial-footer .author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.25rem;
}

/* Different author title colors for text vs video testimonials */
.testimonial-card.text-testimonial .testimonial-footer .author-title,
.testimonial-card.text-testimonial .author-title {
  font-size: 0.8rem;
  color: #667eea; /* Blue color for text testimonials */
  margin: 0;
  font-weight: 500;
}

/* Keep video testimonial author titles white */
.video-card.testimonial-video .author-title {
  color: white; /* White color for video testimonials */
  font-size: 0.8rem;
  margin: 0;
}

.testimonial-footer .rating {
  display: flex;
  gap: 0.1rem;
  margin-bottom: 0.5rem;
}

.testimonial-footer .rating .star {
  color: #fbbf24;
  font-size: 0.9rem;
}

/* ========== VIDEO TESTIMONIAL CARDS (keep original styling) ========== */
.video-card.testimonial-video {
  /* Keep original box shadow for video cards */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.video-card.testimonial-video:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ========== MOBILE TESTIMONIAL CARDS ========== */
.mobile-testimonial-card.text-testimonial {
  background: white;
  border-radius: 16px;
  /* Enhanced mobile box shadow for text testimonials */
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.12), 
              0 3px 10px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(102, 126, 234, 0.08);
}

.mobile-testimonial-card.text-testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2), 
              0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Mobile text testimonial author title color */
.mobile-testimonial-card.text-testimonial .author-title {
  color: #667eea !important; /* Blue color for mobile text testimonials */
  font-weight: 500;
}

/* ========== POPUP STYLING UPDATES ========== */
.testimonial-popup-info .doctor-info p {
  margin: 0 0 1rem 0;
  font-size: 1rem;
}

/* Dynamic color for popup doctor title based on testimonial type */
.testimonial-popup-content[data-testimonial-type="text"] .doctor-info p {
  color: #667eea; /* Blue for text testimonials in popup */
  font-weight: 500;
}

.testimonial-popup-content[data-testimonial-type="video"] .doctor-info p {
  color: #64748b; /* Original color for video testimonials in popup */
}

/* ========== RESPONSIVE ENHANCEMENTS ========== */
@media (max-width: 767.98px) {
  .testimonial-card.text-testimonial {
    /* Adjusted mobile shadow */
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.12), 
                0 3px 10px rgba(0, 0, 0, 0.06);
  }
  
  .testimonial-card.text-testimonial:hover {
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.18), 
                0 5px 15px rgba(0, 0, 0, 0.08);
  }
  
  .text-testimonial-wrapper {
    padding: 1.25rem;
    min-height: 200px;
  }
}

/* ========== ADDITIONAL VISUAL ENHANCEMENTS ========== */
.testimonial-card.text-testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card.text-testimonial:hover::before {
  opacity: 1;
}

/* Subtle background gradient for text testimonials */
.text-testimonial-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
  pointer-events: none;
  border-radius: 16px;
}

/* ========== TEXT POPUP CONTENT ========== */
.testimonial-popup-text {
  padding: 2rem;
  background: #f8fafc;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-popup-wrapper {
  text-align: center;
  position: relative;
  max-width: 600px;
}

.large-quote-icon {
  color: #667eea;
  opacity: 0.2;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.full-testimonial-text {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #374151;
  font-style: italic;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

/* Dynamic popup styling based on testimonial type */
.testimonial-popup-content[data-testimonial-type="text"] .doctor-info p {
  color: #667eea;
  font-weight: 500;
}

.testimonial-popup-content[data-testimonial-type="video"] .doctor-info p {
  color: #64748b;
}

@media (max-width: 767.98px) {
  .testimonial-popup-text {
    padding: 1.5rem;
  }
  
  .full-testimonial-text {
    font-size: 1.1rem;
  }
}

/* ========== TESTIMONIAL POPUP OVERLAY ========== */
.testimonial-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.testimonial-popup-overlay.hidden {
  display: none !important;
}

.testimonial-popup-content {
  background: white;
  border-radius: 20px;
  max-width: 900px;
  width: 90vw;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  z-index: 10000;
}

.testimonial-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: white;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
}

.testimonial-popup-close:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.testimonial-popup-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1.5rem;
  text-align: center;
}

.testimonial-popup-header h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.testimonial-popup-header p {
  margin: 0;
  opacity: 0.9;
  font-size: 1rem;
}

/* ========== TEXT POPUP CONTENT ========== */
.testimonial-popup-text {
  padding: 69px;
  background: #f8fafc;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.testimonials-mobile-footer{
  color: white;
    text-align: center;
    background: linear-gradient(135deg, rgb(102, 126, 234) 0%, rgb(118, 75, 162) 100%);
    border-radius: 20px;
    color: white;
}
.testimonials-mobile-footer > h6{
  color: white !important;
}

.text-popup-wrapper {
  text-align: center;
  position: relative;
  max-width: 600px;
}

.large-quote-icon {
  color: #667eea;
  opacity: 0.2;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.full-testimonial-text {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #374151;
  font-style: italic;
  font-weight: 500;
  margin: 0;
  text-align: center;
  max-height: 361px;
  overflow-y: scroll;
}

/* ========== VIDEO POPUP CONTENT ========== */
.testimonial-popup-video {
  position: relative;
  background: black;
}

.testimonial-popup-video video {
  width: 100%;
  height: auto;
  max-height: 60vh;
  display: block;
}

/* ========== POPUP DOCTOR INFO ========== */
.testimonial-popup-info {
  padding: 1.5rem;
  background: #f8fafc;
}

.doctor-info {
  text-align: center;
}

.doctor-info h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
}

.doctor-info p {
  margin: 0 0 1rem 0;
  color: #64748b;
  font-size: 1rem;
}

.doctor-info .rating {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}

.doctor-info .rating .star {
  color: #fbbf24;
  font-size: 1.2rem;
}

/* Dynamic color for popup doctor title based on testimonial type */
.testimonial-popup-content[data-testimonial-type="text"] .doctor-info p {
  color: #667eea;
  font-weight: 500;
}

.testimonial-popup-content[data-testimonial-type="video"] .doctor-info p {
  color: #64748b;
}

   :root {
    --track-height: 160px;
    --track-width: 4px;
    --thumb-height: 14px;
    --gap: 16px;
    --right-offset: 22px;
    --top-offset: 32vh;
    --muted: rgba(0,0,0,.18);
    --text: #111;
  }

  .scroll-indicator {
    position: fixed;
    right: var(--right-offset, 22px);
    top: var(--top-offset, 32vh);
    height: var(--track-height, 160px);
    display: grid;
    align-items: center;
    gap: var(--gap, 16px);
    grid-auto-flow: column;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;                       /* hidden by default */
    transition: opacity 0.3s ease;    /* smooth fade */
  }

  .scroll-indicator.show {
    opacity: 1;                       /* visible when scrolling */
  }

  .scroll-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 12px;
    letter-spacing: .4em;
    color: var(--text, #111);
    user-select: none;
    font-weight: 600;
  }

  .track {
    position: relative;
    height: var(--track-height, 160px);
    width: var(--track-width, 4px);
    background: var(--muted, rgba(0,0,0,.18));
    border-radius: 999px;
    overflow: hidden;
  }

  .thumb {
    position: absolute;
    left: 0;
    width: 100%;
    height: var(--thumb-height, 14px);
    background: #111;
    border-radius: 2px;
    transform: translateY(0);
    will-change: transform;
  }

  @media (max-width: 640px) {
    .scroll-indicator { display: none; }
  }

.cookie-banner{
      background: none !important;
      /* display: flex; */
      align-items: center;
      justify-content: center;
}
.cookie-banner-inner{
  background-color: #fff;
  max-width: 90% !important;
      max-height: 100%;
    overflow-y: auto;
}
/* Desktop: Show first 8 items, hide the rest */
.masonry-gallery .masonry-item {
  display: block;
}

.masonry-gallery .masonry-item:nth-child(n+9) {
  display: none;
}

/* Always show the show more button */
.show-more-container {
  display: block;
  text-align: center;
  margin-top: 1rem;
}

/* Mobile: Show only first 2 items */
@media (max-width: 768px) {
  .masonry-gallery .masonry-item {
    display: none;
  }
  
  .masonry-gallery .masonry-item:nth-child(-n+2) {
    display: block;
  }
}

.testimonial-banner-section {
  background: #fff;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
 margin-top: 30px;
}

.testimonial-banner-container {
  /* width: 90%;
  max-width: 940px; */
  background: #fff;
  /* border: 2px solid #007bff;
  border-radius: 16px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 36px;
  margin: 32px auto;
  color: #2c3e50;
  /* box-shadow: 0 8px 24px rgba(0, 123, 255, 0.15); */
  flex-wrap: wrap;
}

.testimonial-banner-left {
  flex: 2 1 320px;
  min-width: 200px;
  text-align: left;
  font-size: 1.2rem;
  font-family: 'Georgia', serif;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 0;
  padding-right: 20px;
}

.testimonial-banner-main strong {
  color: #007bff;
  font-weight: 700;
}

.testimonial-banner-main em {
  color: #28a745;
  font-style: normal;
  font-weight: 600;
  background: rgba(40, 167, 69, 0.1);
  padding: 2px 4px;
  border-radius: 4px;
}

.testimonial-banner-right {
  flex: 1 1 280px;
  min-width: 250px;
  text-align: left;
  margin-left: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-banner-author-card {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(0, 123, 255, 0.1);
}

.testimonial-banner-image {
  margin-right: 16px;
  flex-shrink: 0;
}

.author-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #007bff;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.testimonial-banner-info {
  flex: 1;
}

.testimonial-banner-label {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 4px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonial-banner-author {
  margin-bottom: 4px;
}

.testimonial-banner-mail {
  font-size: 1.1rem;
  color: #007bff;
  font-weight: 700;
  text-decoration: none;
}

.testimonial-banner-role {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.testimonial-banner-org {
  display: inline-flex;
  align-items: center;
  background: #007bff;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.org-icon {
  font-size: 14px;
  margin-right: 6px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .testimonial-banner-container {
    flex-direction: column;
    padding: 20px 16px;
  }
  
  .testimonial-banner-left {
    padding-right: 0;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.1rem;
  }
  
  .testimonial-banner-right {
    margin-left: 0;
    width: 100%;
  }
  
  .testimonial-banner-author-card {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }
  
  .testimonial-banner-image {
    margin-right: 0;
    margin-bottom: 16px;
  }
  
  .author-photo {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .testimonial-banner-container {
    padding: 16px 12px;
  }
  
  .testimonial-banner-left {
    font-size: 1rem;
  }
  
  .author-photo {
    width: 60px;
    height: 60px;
  }
  
  .testimonial-banner-author-card {
    padding: 12px;
  }
}
#referearn{
  padding-top: 0px !important;
}
#faculty{
  padding-bottom: 0px;
}

/* ========== RADIO BUTTON STYLING - FIXED ========== */
.final-item {
    padding: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.final-item .label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #374151;
    transition: all 0.3s ease;
}

/* Hide default radio button */
.final-item .label input[type="radio"] {
    display: none;
}

/* Custom radio button - UNSELECTED STATE */
.final-item .label .radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: white;
}

/* SELECTED STATE - Clear highlighting */
.final-item:has(input[type="radio"]:checked) {
    background: linear-gradient(135deg, #667eea15, #764ba215);
    border: 2px solid #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.final-item:has(input[type="radio"]:checked) .label {
    color: #667eea;
    font-weight: 600;
}

.final-item:has(input[type="radio"]:checked) .value.final {
    color: #667eea;
    font-weight: 700;
}

/* Radio button when CHECKED - Very clear */
.final-item .label input[type="radio"]:checked + .radio-custom {
    border: 3px solid #667eea;
    background: #667eea;
    transform: scale(1.1);
}

/* Inner white dot when checked - Very visible */
.final-item .label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

/* UNSELECTED STATE - Clearly different */
.final-item:not(:has(input[type="radio"]:checked)) {
    background: #f9fafb;
    border: 2px solid #e5e7eb;
}

.final-item:not(:has(input[type="radio"]:checked)) .label {
    color: #6b7280;
}

.final-item:not(:has(input[type="radio"]:checked)) .value.final {
    color: #9ca3af;
}

/* Hover effect for unselected items */
.final-item:not(:has(input[type="radio"]:checked)):hover {
    border-color: #d1d5db;
    background: #f3f4f6;
}

.final-item:not(:has(input[type="radio"]:checked)):hover .label {
    color: #374151;
}

/* Focus state */
.final-item .label input[type="radio"]:focus + .radio-custom {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 767.98px) {
    .final-item {
        padding: 0.75rem;
    }
    
    .final-item .label {
        font-size: 0.9rem;
    }
    
    .final-item .label .radio-custom {
        width: 18px;
        height: 18px;
        margin-right: 10px;
    }
    
    .final-item .label input[type="radio"]:checked + .radio-custom::after {
        width: 6px;
        height: 6px;
    }
    .testimonial-popup-content{
      width: 90%;
    }
}

 /* ===================== ELIGIBILITY SECTION =====================  */
.eligible-glass-card {
  background: rgba(255, 255, 255, 0.75); /* frosted white */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  color: #1e293b; /* dark slate text */
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.eligible-glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.eligible-glass-card h4 {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.eligible-glass-card ul {
  padding-left: 1.2rem;
  list-style: disc;
  color: gray;
}

.eligible-glass-card ul li {
  margin-bottom: 0.6rem;
  font-size: 1rem;
  font-weight: 500;
}

.eligibility-list {
  list-style: none !important;   /* removes default bullet */
  padding-left: 0;
  margin: 0;
}
.eligibility-list li {
  position: relative;
  padding-left: 1.5rem;  /* space for arrow */
  margin-bottom: 0.75rem;
}
.eligibility-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #6366f1;
  font-weight: bold;
}

#testimonialVideoPlayer{
  height: 472px  !important;
  width: 100% !important ;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Navigation Controls */
.testimonial-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 1000;
}

.nav-btn {
  background: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  pointer-events: all;
  margin: 0 20px;
}

.nav-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Auto-scroll Controls */
.auto-scroll-controls {
  position: absolute;
  top: 20px;
  right: 60px;
  z-index: 1000;
}

.auto-scroll-toggle {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 25px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
}

.auto-scroll-toggle:hover {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.auto-scroll-toggle.active {
  background: #007bff;
  color: white;
}

.auto-scroll-toggle.active .play-icon {
  display: none;
}

.auto-scroll-toggle.active .pause-icon {
  display: block !important;
}

.auto-scroll-toggle.active .auto-scroll-text::after {
  content: "ing";
}

/* Progress Indicator */
.testimonial-progress {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

/* Progress Bar for Auto-scroll */
.auto-scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #007bff;
  transition: width 0.1s linear;
  z-index: 1001;
}
/* Enhanced lightbox content for smooth transitions */
.lightbox-content {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Prevent text selection during swipe */
.lightbox-media img,
.lightbox-media iframe {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

/* Touch action for better swipe performance */
.lightbox-media {
  touch-action: pan-x pinch-zoom;
}
/* Enable horizontal scrolling for mobile testimonials */
.horizontal-testimonials-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch; /* iOS smooth scrolling */
}

.horizontal-testimonials-wrapper::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.horizontal-testimonials-wrapper.dragging {
  cursor: grabbing;
}

.horizontal-testimonials-track {
  display: flex;
  width: max-content;
  animation: none; /* Disable any existing animations */
}

/* Ensure cards don't interfere with scrolling */
.mobile-testimonial-card {
  flex-shrink: 0;
  pointer-events: auto;
}

.mobile-testimonial-card .play-button {
  pointer-events: auto;
  z-index: 10;
}

/* Mobile devices (max-width: 767px) */
@media screen and (max-width: 767px) {
  .testimonial-text {
    max-height: 200px;
    overflow-y: auto;
  }
}

/* Tablets (768px to 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .testimonial-text {
    max-height:300px;
    overflow-y: auto;
  }
}


/* Enhanced lightbox content for smooth transitions */
.lightbox-content {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Prevent text selection during swipe */
.lightbox-media img,
.lightbox-media iframe {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

/* Touch action for better swipe performance */
.lightbox-media {
  touch-action: pan-x pinch-zoom;
}

#organizers > div > div:nth-child(4) > div.col-lg-3.mb-md-60 > div > div > img{
  margin-top: 30px !important;
}

#organizers > div > div.row.wow.fadeInUp.animated.no-animate > div.col-lg-9.col-xl-9{
   margin-top: 30px !important;
}


/* ========== SOCIAL MEDIA CONNECT SECTION ========== */
/* ========== SOCIAL MEDIA CONNECT SECTION - BLUE THEME ========== */
.social-connect-section {
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.social-connect-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1.5" fill="rgba(255,255,255,0.05)"/></svg>');
  pointer-events: none;
}

.social-connect-section .container {
  position: relative;
  z-index: 1;
}

.connect-heading {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.social-icons-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  color: #1e40af;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s ease;
}

.social-icon:hover::before {
  left: 100%;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Individual platform colors on hover */
.social-icon.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  color: white;
}

.social-icon.facebook:hover {
  background: #1877f2;
  color: white;
}

.social-icon.twitter:hover {
  background: #000;
  color: white;
}

.social-icon.youtube:hover {
  background: #ff0000;
  color: white;
}

.social-icon.linkedin:hover {
  background: #0077b5;
  color: white;
}

.social-icon svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-icon:hover svg {
  transform: scale(1.1);
}

.connect-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

.connect-text strong {
  color: white;
  font-weight: 700;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  .connect-heading {
    font-size: 1.5rem;
  }
  
  .social-icons-wrapper {
    gap: 1.5rem;
  }
  
  .social-icon {
    width: 45px;
    height: 45px;
  }
  
  .social-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .connect-text {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .social-icons-wrapper {
    gap: 1rem;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
  }
  
  .social-icon svg {
    width: 18px;
    height: 18px;
  }
}

/* Video Background Fixes */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* .video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.78vh; 
    transform: translate(-50%, -50%);
    pointer-events: none;
} */

/* Mobile-specific video adjustments */
@media (max-width: 768px) {
    .home-section {
        padding-top: 20px; /* Account for fixed navigation height */
        min-height: calc(100vh - 123px);
    }
    .min-height-100vh{
      min-height: auto !important;
    }
    .center-items{
      align-items: center !important;
    justify-content: center;
    display: flex
;
    }
    /* .video-background iframe {
        width: 100%;
        height: 100%;
        min-height: calc(100vh - 80px);
        object-fit: cover;
    } */
    
    .mobile-video {
        display: block !important;
    }
    
    .desktop-video {
        display: none !important;
    }
    
    /* Ensure container doesn't overlap with fixed nav */
    .container.min-height-100vh {
        min-height: calc(100vh - 80px);
        padding-top: 20px;
    }
    .pb-mb-180{
      padding-bottom: 120px !important;
    }
}

/* Desktop video display */
@media (min-width: 769px) {
    .mobile-video {
        display: none !important;
    }
    
    .desktop-video {
        display: block !important;
    }
}

/* Navigation adjustments for mobile */
@media (max-width: 768px) {
    .main-nav.stick-fixed {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        height: 80px; /* Define explicit height */
    }
}

/* Responsive breakpoint - switch to mobile video */
@media (max-width: 991px) {
    .desktop-video {
        display: none !important;
    }
    .video-background{
      top:0;left:0;z-index:-1;overflow:hidden;position: fixed;
    /* top: -25px; */
    left: 0;
    width: 100%;
    height: 100% !important;
    z-index: -1;
    overflow: hidden;
    }

    #home > div.owl-wrapper-outer.autoHeight{
      height: auto !important;
    }
    
    /* .mobile-video {
        display: block !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: 150vw !important;
        height: 150vh !important;
        min-width: 100% !important;
        min-height: 100% !important;
        max-width: none !important;
        max-height: none !important;
        transform: translate(-50%, -50%) scale(1.5) !important;
        object-fit: cover !important;
    } */
}