/* Extracted from index.html inline style blocks */


         /* --- Main Bar Styling --- */
         #top-announcement-bar-final {
             background-color: #1a1a1a;
             color: #ffffff;
             padding: 10px 15px;
             width: 100%;
             position: fixed;
             top: 0;
             left: 0;
             z-index: 1031;
             overflow: hidden;
             box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
         }
         
         /* Adjust body to account for fixed banner */
         body.main-layout {
             padding-top: 54px;
         }
         
         /* Remove extra padding when announcement is hidden */
         body.main-layout.announcement-hidden {
             padding-top: 0;
         }
      
         .announcement-content {
             display: flex;
             justify-content: space-between;
             align-items: center;
             width: 100%;
             max-width: 1200px;
             margin: 0 auto;
             gap: 15px;
             padding-right: 30px;
         }
      
         .announcement-text {
             font-size: 1rem;
             display: flex;
             align-items: center;
             flex-grow: 1;
             min-width: 0;
         }
      
         .announcement-text .fa-bolt {
             color: #ff0bac;
             margin-right: 12px;
             font-size: 1.2rem;
         }
         
         .static-text {
             opacity: 0.8;
             margin-right: 8px;
             white-space: nowrap;
         }
      
         .course-ticker-container {
             position: relative;
             height: 24px;
             flex-grow: 1;
             min-width: 0;
             overflow: hidden;
         }
         
         .course-name-ticker {
             font-weight: 600;
             color: #fff;
             display: block;
             white-space: nowrap;
             overflow: hidden;
             text-overflow: ellipsis;
             opacity: 0;
             transition: opacity 0.5s ease-in-out;
         }
         
         .course-name-ticker.fade-in { opacity: 1; }
         .course-name-ticker.fade-out { opacity: 0; }
      
         .btn-register-pulsing {
             background-color: #ff0bac;
             color: white;
             border: none;
             border-radius: 50px;
             padding: 10px 25px;
             font-weight: 700;
             text-transform: uppercase;
             font-size: 0.85rem;
             letter-spacing: 1px;
             white-space: nowrap;
             flex-shrink: 0;
             box-shadow: 0 0 0 0 rgba(255, 11, 172, 0.7);
             animation: pulse-animation 2s infinite;
             transition: all 0.3s ease;
         }
      
         .btn-register-pulsing:hover {
             animation: none;
             background-color: #e60a9b;
             transform: scale(1.05);
             color: white;
             text-decoration: none;
         }
      
         @keyframes pulse-animation {
             0% { box-shadow: 0 0 0 0 rgba(255, 11, 172, 0.7); }
             70% { box-shadow: 0 0 0 12px rgba(255, 11, 172, 0); }
             100% { box-shadow: 0 0 0 0 rgba(255, 11, 172, 0); }
         }
         
         .close-announcement {
             position: absolute;
             top: 50%;
             right: 10px;
             transform: translateY(-50%);
             background: transparent;
             border: none;
             color: white;
             font-size: 1.8rem;
             line-height: 1;
             opacity: 0.6;
             padding: 0 5px;
             cursor: pointer;
             transition: all 0.2s ease;
         }
         .close-announcement:hover {
             opacity: 1;
             transform: translateY(-50%) rotate(90deg);
         }
         
         @media (max-width: 767px) {
             .announcement-content { justify-content: center; }
             .announcement-text .static-text { display: none; }
             .announcement-text .fa-bolt { margin-right: 8px; }
             .btn-register-pulsing { padding: 8px 15px; font-size: 0.8rem; }
         }

         /* --- REFINED COURSE CAROUSEL STYLES --- */
         #courses .titlepage h2 { color: #343a40; }
         #courses .titlepage p { max-width: 600px; margin-left: auto; margin-right: auto; }
      
         #courseCarousel .carousel-control-prev,
         #courseCarousel .carousel-control-next {
             width: 40px; height: 40px; 
             background-color: rgba(255, 255, 255, 0.8); 
             border-radius: 50%;
             top: 50%; transform: translateY(-50%); 
             opacity: 0.8; transition: all 0.3s ease;
             z-index: 10;
             cursor: pointer;
             box-shadow: 0 2px 5px rgba(0,0,0,0.1);
         }
         #courseCarousel .carousel-control-prev { left: -15px; }
         #courseCarousel .carousel-control-next { right: -15px; }
      
         #courseCarousel .carousel-control-prev:hover,
         #courseCarousel .carousel-control-next:hover { 
             background-color: #ff0bac; 
             opacity: 1; 
             box-shadow: 0 4px 10px rgba(255, 11, 172, 0.3);
         }
         
         #courseCarousel .carousel-control-prev i,
         #courseCarousel .carousel-control-next i { 
             font-size: 18px; 
             color: #333; 
             line-height: 40px; 
         }
         #courseCarousel .carousel-control-prev:hover i,
         #courseCarousel .carousel-control-next:hover i {
             color: white;
         }
      
         .course-card {
             border: 1px solid #f0f0f0; 
             border-radius: 15px; /* Softer rounded corners */
             box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
             transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy transition */
             box-sizing: border-box !important;
             height: 100%; 
             min-height: 360px; /* Reduced height */
             background: white;
             overflow: hidden; /* Important for image zoom */
             display: flex;
             flex-direction: column;
         }

         .course-card:hover {
             transform: translateY(-8px);
             box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
             border-color: #ff0bac;
         }
      
         .course-card-img-container { 
             height: 180px; /* Slightly shorter image area */
             width: 100%;
             overflow: hidden;
             position: relative;
         }
         
         .course-card .card-img-top { 
             width: 100%; 
             height: 100%; 
             object-fit: cover; 
             transition: transform 0.6s ease;
         }
         
         /* Image Zoom on Hover */
         .course-card:hover .card-img-top {
             transform: scale(1.08);
         }
      
         .course-card .card-body { 
             padding: 1.25rem; 
             box-sizing: border-box;
             flex-grow: 1;
             display: flex;
             flex-direction: column;
             justify-content: space-between;
         }
         
         .course-card .card-title { 
             font-size: 1.15rem; 
             font-weight: 700; 
             color: #2c3e50; 
             margin-bottom: 0.5rem;
             /* Clamp text to 2 lines */
             display: -webkit-box;
             -webkit-line-clamp: 2;
             -webkit-box-orient: vertical;
             overflow: hidden;
         }

         .course-card .card-text {
             font-size: 0.9rem;
         }
         
         /* Improved Button Styling */
         .btn-learn-more {
             background-color: transparent; 
             border: 2px solid #ff0bac; 
             color: #ff0bac; 
             padding: 8px 20px;
             border-radius: 50px; 
             font-weight: 600; 
             text-transform: uppercase;
             font-size: 0.8rem;
             letter-spacing: 0.5px; 
             transition: all 0.3s ease;
             width: auto;
             align-self: center;
             margin-top: auto;
         }
         
         .btn-learn-more:hover, 
         .course-card:hover .btn-learn-more {
             background-color: #ff0bac; 
             color: white; 
             transform: translateY(-2px);
             box-shadow: 0 4px 10px rgba(255, 11, 172, 0.3);
         }
         
         @media (max-width: 992px) {
             #courseCarousel .carousel-control-prev { left: 5px; }
             #courseCarousel .carousel-control-next { right: 5px; }
         }

         /* --- NEW MODULE SECTION STYLES --- */
         .modules-section-wrapper {
            background: linear-gradient(180deg, #061021 0%, #071228 100%);
            color: #e7f3fb;
            /* Update: Removed bottom padding to eliminate gap with About section */
            padding: 80px 0 0 0;
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
         }
         
         .module-pill {
            background: rgba(255,255,255,0.05);
            padding: 6px 15px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.05);
            color: #9fb0c8;
            font-size: 0.9rem;
            display: inline-block;
            margin: 0 5px;
         }

         .module-card-dark {
            background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
            border: 1px solid rgba(255,255,255,0.05);
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 8px 22px rgba(2,6,23,0.6);
            height: 100%;
            transition: transform 0.3s ease, border-color 0.3s ease;
         }

         .module-card-dark:hover {
             transform: translateY(-5px);
             border-color: #7c3aed;
         }

         .module-card-dark h3 {
            color: #fff;
            font-size: 1.4rem;
            margin-bottom: 12px;
            font-weight: 600;
         }

         .module-desc {
            color: #9fb0c8;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
         }

         .module-list {
            padding-left: 20px;
            margin-bottom: 0;
         }

         .module-list li {
            color: #e7f3fb;
            margin-bottom: 8px;
            font-size: 0.95rem;
         }

         .module-footer-text {
             color: #9fb0c8;
             font-size: 0.9rem;
             margin-top: 30px;
             text-align: center;
             /* Ensure text has space but wrapper has no padding */
             margin-bottom: 30px; 
         }

         /* --- FACULTY SECTION STYLES --- */
         .faculty-section {
             /* Uniform Spacing Fix */
             padding: 80px 0;
             background-color: #ffffff; /* Clean light background */
         }
         
         .faculty-title h2 {
             font-weight: 700;
             color: #2c3e50;
             margin-bottom: 15px;
             font-size: 2rem;
         }
         
         .faculty-title p {
             color: #6c757d;
             max-width: 700px;
             margin: 0 auto 50px;
             font-size: 1.1rem;
         }

         .faculty-card {
             background: #fff;
             border-radius: 20px;
             overflow: hidden;
             box-shadow: 0 10px 30px rgba(0,0,0,0.05);
             transition: all 0.4s ease;
             border: 1px solid #f0f0f0;
             height: 100%;
             text-align: center;
             padding: 40px 30px;
             position: relative;
             z-index: 1;
         }

         .faculty-card:hover {
             transform: translateY(-10px);
             box-shadow: 0 20px 40px rgba(0,0,0,0.1);
             border-color: #ff0bac;
         }

         .faculty-img-wrapper {
             width: 140px;
             height: 140px;
             margin: 0 auto 25px;
             position: relative;
             border-radius: 50%;
             overflow: hidden;
             border: 4px solid #f8f9fa;
             box-shadow: 0 5px 15px rgba(0,0,0,0.1);
             transition: all 0.4s ease;
         }

         .faculty-card:hover .faculty-img-wrapper {
             border-color: #ff0bac;
             transform: scale(1.05);
         }

         .faculty-img {
             width: 100%;
             height: 100%;
             object-fit: cover;
         }

         .faculty-name {
             font-size: 1.4rem;
             font-weight: 700;
             color: #2c3e50;
             margin-bottom: 5px;
         }

         .faculty-role {
             color: #ff0bac;
             font-size: 0.9rem;
             font-weight: 600;
             text-transform: uppercase;
             letter-spacing: 1px;
             margin-bottom: 20px;
         }

         .faculty-bio {
             color: #6c757d;
             font-size: 0.95rem;
             line-height: 1.6;
             margin-bottom: 25px;
         }
         
         .faculty-badge {
             background: #fff0f9;
             padding: 8px 20px;
             border-radius: 30px;
             font-size: 0.85rem;
             color: #ff0bac;
             display: inline-block;
             font-weight: 600;
             border: 1px solid #ff0bac;
         }

         /* --- COURSES SECTION STYLES --- */
         .courses-section {
            background-color: #f8f9fa;
            /* Uniform Spacing Fix */
            padding: 80px 0;
            margin-top: 0; /* Removing inconsistent margin */
         }

         /* --- FAQ SECTION STYLES --- */
         .faq-home-section {
            padding: 80px 0;
            background:
               radial-gradient(circle at top left, rgba(255, 11, 172, 0.08), transparent 32%),
               linear-gradient(180deg, #fff8fd 0%, #ffffff 60%, #f4f9ff 100%);
         }

         .faq-shell {
            background: #ffffff;
            border-radius: 28px;
            padding: 50px;
            box-shadow: 0 22px 55px rgba(15, 23, 42, 0.08);
            border: 1px solid rgba(255, 11, 172, 0.08);
         }

         .faq-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: 999px;
            background: #fff0f9;
            color: #ff0bac;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 18px;
         }

         .faq-heading {
            font-size: 2.2rem;
            line-height: 1.2;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 14px;
         }

         .faq-subtext {
            color: #64748b;
            font-size: 1rem;
            line-height: 1.8;
            max-width: 520px;
            margin-bottom: 24px;
         }

         .faq-feature-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 24px;
         }

         .faq-feature-pill {
            display: inline-flex;
            align-items: center;
            padding: 10px 16px;
            border-radius: 999px;
            background: #f8fbff;
            border: 1px solid #d9e7f7;
            color: #0f2742;
            font-size: 0.88rem;
            font-weight: 600;
         }

         .faq-highlight-card {
            background: linear-gradient(145deg, #081224 0%, #142c4e 100%);
            color: #ffffff;
            border-radius: 24px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 20px 40px rgba(8, 18, 36, 0.2);
         }

         .faq-highlight-card h3 {
            color: #ffffff;
            font-size: 1.45rem;
            font-weight: 700;
            margin-bottom: 12px;
         }

         .faq-highlight-card p {
            color: rgba(255, 255, 255, 0.82);
            font-size: 0.98rem;
            line-height: 1.8;
            margin-bottom: 24px;
         }

         .faq-contact-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 180px;
            padding: 12px 22px;
            border-radius: 999px;
            background: #ffffff;
            color: #081224;
            font-size: 0.9rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
         }

         .faq-contact-link:hover {
            background: #ff0bac;
            color: #ffffff;
         }

         .faq-accordion {
            display: grid;
            gap: 16px;
         }

         .faq-item {
            background: #ffffff;
            border: 1px solid #e9eef5;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
         }

         .faq-item:hover {
            transform: translateY(-4px);
            border-color: rgba(255, 11, 172, 0.28);
            box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
         }

         .faq-item[open] {
            border-color: rgba(255, 11, 172, 0.4);
            box-shadow: 0 20px 40px rgba(255, 11, 172, 0.08);
         }

         .faq-item[open] .faq-question {
            color: #0f2742;
         }

         .faq-question {
            list-style: none;
            cursor: pointer;
            padding: 22px 60px 22px 24px;
            position: relative;
            font-size: 1.05rem;
            line-height: 1.5;
            font-weight: 600;
            color: #1e293b;
         }

         .faq-question-label {
            display: inline-flex;
            align-items: center;
            margin-bottom: 10px;
            padding: 5px 10px;
            border-radius: 999px;
            background: #fff3fb;
            color: #ff0bac;
            font-size: 0.74rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
         }

         .faq-item[open] .faq-question-label {
            background: #ff0bac;
            color: #ffffff;
         }

         .faq-question-text {
            display: block;
            padding-right: 10px;
         }

         .faq-question::-webkit-details-marker {
            display: none;
         }

         .faq-question::after {
            content: "+";
            position: absolute;
            top: 50%;
            right: 22px;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #fff0f9;
            color: #ff0bac;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            font-weight: 700;
            transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
         }

         .faq-item[open] .faq-question::after {
            content: "-";
            background: #ff0bac;
            color: #ffffff;
         }

         .faq-answer {
            padding: 0 24px 24px;
            color: #64748b;
            font-size: 0.98rem;
            line-height: 1.8;
         }

         /* --- ABOUT SECTION STYLES --- */
         .about {
            /* Update: Removed top padding to eliminate gap with Modules section */
            padding: 0 0 80px 0;
         }

         /* --- FLOATING CARDS SHARED STYLES --- */
         .floating-register-card, .floating-signup-form  {
             position: fixed;
             background: rgba(255, 255, 255, 0.85); /* Semi-transparent */
             backdrop-filter: blur(12px); /* Glass blur effect */
             -webkit-backdrop-filter: blur(12px);
             border-radius: 15px;
             box-shadow: 0 10px 40px rgba(0,0,0,0.15);
             padding: 20px;
             z-index: 9999;
             border: 1px solid rgba(255, 255, 255, 0.3);
             font-family: 'Poppins', sans-serif;
             transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
         }

         .floating-register-card {
             width: 300px;
             border-left: 5px solid #ff0bac;
             bottom: 25px;
             right: 25px;
             animation: slideInUp 0.8s ease-out;
         }

         .floating-signup-form {
             width: 320px;
             border-right: 5px solid #ff0bac;
             top: 175px; 
             right: 25px;
             animation: slideInDown 0.8s ease-out;
         }

         @keyframes slideInUp {
             from { transform: translateY(100px); opacity: 0; }
             to { transform: translateY(0); opacity: 1; }
         }

         @keyframes slideInDown {
             from { transform: translateY(-100px); opacity: 0; }
             to { transform: translateY(0); opacity: 1; }
         }

         .close-float-btn {
             position: absolute;
             top: 8px;
             right: 12px;
             background: none;
             border: none;
             font-size: 1.4rem;
             line-height: 1;
             color: #888;
             cursor: pointer;
             padding: 0;
             transition: color 0.3s;
         }
         
         .close-float-btn:hover { color: #333; }

         /* Float content styles */
         .float-card-content {
             display: flex;
             align-items: center;
             margin-bottom: 15px;
         }

         .float-icon {
             font-size: 2rem;
             color: #ff0bac;
             margin-right: 12px;
         }

         .float-text h5 {
             margin: 0 0 3px 0;
             font-weight: 700;
             color: #2c3e50;
             font-size: 1.1rem;
         }

         .float-text p {
             margin: 0;
             font-size: 0.85rem;
             color: #6c757d;
             line-height: 1.2;
         }

         .btn-register-float-action {
             display: block;
             width: 100%;
             background: linear-gradient(90deg, #ff0bac 0%, #2196f3 100%);
             color: white;
             text-align: center;
             padding: 10px;
             border-radius: 50px;
             font-weight: 700;
             text-transform: uppercase;
             font-size: 0.85rem;
             transition: all 0.3s ease;
             border: none;
             box-shadow: 0 4px 15px rgba(255, 11, 172, 0.2);
         }

         .btn-register-float-action:hover {
             transform: translateY(-3px);
             box-shadow: 0 8px 20px rgba(33, 150, 243, 0.4);
             color: white;
             text-decoration: none;
         }

         /* Form specific styles */
         .float-form-group {
             margin-bottom: 10px;
         }
         
         .float-form-control {
             width: 100%;
             padding: 8px 12px;
             border: 1px solid #ddd;
             border-radius: 5px;
             font-size: 0.9rem;
             outline: none;
             transition: border-color 0.3s;
             background: rgba(255,255,255,0.9);
         }
         
         .float-form-control:focus {
             border-color: #ff0bac;
         }
         
         .form-error-msg {
             color: #dc3545;
             font-size: 0.75rem;
             margin-top: 5px;
             display: none;
         }
         
         /* --- MOBILE OPTIMIZATION FOR FLOATING CARDS --- */
         @media (max-width: 768px) {
             /* Uniform Spacing Fix for Mobile - General */
             .faculty-section, 
             .courses-section {
                padding: 50px 0;
             }

             .faq-home-section {
                padding: 50px 0;
             }

             .faq-shell {
                padding: 28px 20px;
                border-radius: 22px;
             }

             .faq-heading {
                font-size: 1.75rem;
             }

             .faq-highlight-card {
                margin-bottom: 24px;
                padding: 24px;
             }

             .faq-feature-list {
                gap: 10px;
             }

             .faq-feature-pill {
                font-size: 0.8rem;
                padding: 9px 14px;
             }

             .faq-question {
                padding: 18px 54px 18px 18px;
                font-size: 0.98rem;
             }

             .faq-answer {
                padding: 0 18px 18px;
                font-size: 0.92rem;
             }

             /* Special Handling for Connected Sections on Mobile */
             .modules-section-wrapper {
                 padding: 50px 0 0 0;
             }
             
             .about {
                 padding: 0 0 50px 0;
             }

             /* Bottom Register Card Adjustments */
             .floating-register-card {
                 width: 60px;
                 height: 60px;
                 border-radius: 50%;
                 padding: 0;
                 display: flex;
                 justify-content: center;
                 align-items: center;
                 overflow: hidden;
                 cursor: pointer;
                 bottom: 25px; /* Bottom position */
                 right: 25px;
                 border: 2px solid #ff0bac;
                 border-left: none; /* Reset distinct border */
                 box-shadow: 0 5px 20px rgba(0,0,0,0.2);
             }

             /* Expanded State */
             .floating-register-card.expanded {
                 width: 90%;
                 height: auto;
                 border-radius: 15px;
                 padding: 20px;
                 bottom: 25px;
                 right: 5%;
                 display: block;
                 border: 1px solid rgba(255,255,255,0.3);
                 border-left: 5px solid #ff0bac;
             }

             /* Hide/Show elements based on state for Register Card */
             .floating-register-card:not(.expanded) .float-text,
             .floating-register-card:not(.expanded) .btn-register-float-action,
             .floating-register-card:not(.expanded) .close-float-btn {
                 display: none;
             }

             .floating-register-card:not(.expanded) .float-card-content {
                 margin: 0;
             }

             .floating-register-card:not(.expanded) .float-icon {
                 margin: 0;
                 font-size: 1.5rem;
             }

             /* Ensure content shows when expanded */
             .floating-register-card.expanded .float-text,
             .floating-register-card.expanded .btn-register-float-action,
             .floating-register-card.expanded .close-float-btn {
                 display: block;
             }

             .floating-register-card.expanded .float-card-content {
                 margin-bottom: 15px;
             }

             /* Signup Form - Collapsed State (Default on Mobile) */
             .floating-signup-form {
                 width: 60px;
                 height: 60px;
                 border-radius: 50%;
                 padding: 0;
                 display: flex;
                 justify-content: center;
                 align-items: center;
                 overflow: hidden;
                 cursor: pointer;
                 top: auto; 
                 bottom: 200px; /* Positioned above the bottom card */
                 right: 25px;
                 border: 2px solid #ff0bac;
                 border-right: none;
                 box-shadow: 0 5px 20px rgba(0,0,0,0.2);
                 z-index: 10000;
             }
             
             /* Signup Form - Expanded State */
             .floating-signup-form.expanded {
                 width: 90%;
                 height: auto;
                 border-radius: 15px;
                 padding: 20px;
                 top: 100px; 
                 bottom: auto;
                 right: 5%;
                 display: block;
                 border: 1px solid rgba(255,255,255,0.3);
                 border-right: 5px solid #ff0bac;
                 z-index: 10002;
             }

             /* Hide/Show elements based on state */
             .floating-signup-form:not(.expanded) .float-text,
             .floating-signup-form:not(.expanded) #signupFormContent,
             .floating-signup-form:not(.expanded) .close-float-btn {
                 display: none;
             }
             
             .floating-signup-form:not(.expanded) .float-card-content {
                 margin: 0;
             }
             
             .floating-signup-form:not(.expanded) .float-icon {
                 margin: 0;
                 font-size: 1.5rem;
             }
             
             /* Ensure content shows when expanded */
             .floating-signup-form.expanded .float-text,
             .floating-signup-form.expanded #signupFormContent,
             .floating-signup-form.expanded .close-float-btn {
                 display: block;
             }
             
             .floating-signup-form.expanded .float-card-content {
                 margin-bottom: 15px;
             }
         }

        .video-gallery-body-wrapper {
        box-sizing: border-box;
        }
        
        /* Video Gallery Unique Styles */
        .video-gallery-heading {
        font-family: 'Playfair Display', Georgia, serif;
        }
        
        .video-gallery-body {
        font-family: 'Outfit', system-ui, sans-serif;
        position: relative;
        padding: 78px 0 86px;
        background:
            radial-gradient(circle at top left, rgba(255, 11, 172, 0.09), transparent 24%),
            radial-gradient(circle at top right, rgba(33, 150, 243, 0.12), transparent 28%),
            linear-gradient(180deg, #ffffff 0%, #fff7fc 55%, #f3f9ff 100%);
        }

        .video-gallery-body::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.55)),
            radial-gradient(circle at 1px 1px, rgba(15, 39, 66, 0.08) 1px, transparent 0);
        background-size: auto, 22px 22px;
        opacity: 0.45;
        pointer-events: none;
        }

        .video-gallery-section-shell {
        position: relative;
        z-index: 1;
        max-width: 82rem;
        margin: 0 auto;
        padding: 0 1rem;
        }

        .video-gallery-intro {
        text-align: center;
        margin-bottom: 2.75rem;
        }

        .video-gallery-kicker {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 16px;
        margin-bottom: 1rem;
        border-radius: 999px;
        background: #fff0f9;
        color: #ff0bac;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        }
        
        .video-gallery-card {
        background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
        border-radius: 1.2rem;
        overflow: hidden;
        border: 1px solid #e3edf8;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        /* height: 100%; */
        height: 420px;
        text-decoration: none;
        }
        /* ===== Equal Height Fix (Safe Addition) ===== */

        .video-gallery-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        }

        .video-gallery-title {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        }

        .video-gallery-description {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        }
        
        .video-gallery-card:hover {
        box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
        border-color: rgba(255, 11, 172, 0.22);
        transform: translateY(-8px);
        }
        
        .video-gallery-thumbnail-wrapper {
        position: relative;
        aspect-ratio: 16 / 9;
        overflow: hidden;
        }
        
        .video-gallery-thumbnail {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
        }
        
        .video-gallery-card:hover .video-gallery-thumbnail {
        transform: scale(1.1);
        }
        
        .video-gallery-overlay {
        position: absolute;
        inset: 0;
        background-color: rgba(0, 0, 0, 0);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        }
        
        .video-gallery-card:hover .video-gallery-overlay {
        background: linear-gradient(180deg, rgba(9, 24, 47, 0.05), rgba(9, 24, 47, 0.28));
        }
        
        .video-gallery-play-button {
        width: 4rem;
        height: 4rem;
        border-radius: 50%;
        background: linear-gradient(135deg, #ff0bac 0%, #2196f3 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 14px 28px rgba(255, 11, 172, 0.24);
        }
        
        .video-gallery-card:hover .video-gallery-play-button {
        transform: scale(1.1);
        }
        
        .video-gallery-duration {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.35rem 0.65rem;
        border-radius: 999px;
        background-color: rgba(255, 255, 255, 0.92);
        color: #0f2742;
        font-size: 0.75rem;
        font-weight: 600;
        box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
        }
        
        .video-gallery-content {
        padding: 1.25rem;
        }
        
        .video-gallery-title {
        color: #16263d;
        font-size: 1.125rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        }
        
        .video-gallery-card:hover .video-gallery-title {
        text-decoration: underline;
        }
        
        .video-gallery-description {
        color: #62748a;
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
        }
        
        .video-gallery-stats {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #6b6b7b;
        font-size: 0.875rem;
        display: none !important;
        }
        
        /* ===== CAROUSEL WRAPPER ===== */
    .carousel-wrapper {
    position: relative;
    padding: 0 50px;
    box-sizing: border-box;
    }

    .carousel-track {
    overflow: hidden;
    width: 100%;
    }

    /* ===== SLIDER TRACK ===== */
    .video-gallery-grid {
    display: flex;
    transition: transform 0.5s ease;
    }

    /* ===== EACH PAGE (6 VIDEOS) ===== */
    .video-page {
    min-width: 100%;
    display: grid;

    /* Keep same structure as Page 1 */
    grid-template-columns: repeat(3, 1fr);

    gap: 1.5rem;
    padding: 0 1rem;

    align-items: start;   /* prevent vertical stretching */
    }


    /* Tablet */
    @media (max-width: 1024px) {
    .video-page {
        grid-template-columns: repeat(2, 280px);
        justify-content: center;
    }
    }

    /* Mobile */
    @media (max-width: 640px) {
    .video-page {
        grid-template-columns: 90%;
        justify-content: center;
    }
    }


    /* ===== ARROWS ===== */
    .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 36px;
    height: 36px;
    font-size: 16px;

    background: rgba(255,255,255,0.96);
    color: #102845;
    border: 1px solid #d8e5f2;

    border: none;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    line-height: 1;

    cursor: pointer;
    z-index: 10;

    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.12);
    transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    }

    .carousel-btn:hover {
    background: linear-gradient(135deg, #ff0bac 0%, #2196f3 100%);
    border-color: transparent;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    }
    .carousel-btn.left {
    left: 7px;
    }

    .carousel-btn.right {
    right: 7px;
    }
    @media (max-width: 640px) {

    .carousel-wrapper {
        padding: 0 38px;
    }

    .carousel-btn.left {
        left: 2px;
    }

    .carousel-btn.right {
        right: 2px;
    }

    .video-page {
        min-width: 100%;   /* force full width slide */
        padding: 0;        /* remove side padding for proper sliding */
    }

    .video-gallery-grid {
        width: 100%;
    }

    .video-gallery-body {
        padding: 56px 0 62px;
    }

    .video-gallery-heading {
        font-size: 1.7rem !important;
    }

    }
@view-transition { navigation: auto; }

    .ai-hero-root {
      position: relative;
      width: 100%;
      min-height: 100vh;
      overflow: hidden;
      font-family: 'Plus Jakarta Sans', sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* Static gradient background */
    .hero-gradient {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('https://res.cloudinary.com/dkijnqhbz/image/upload/v1773110944/Untitled_design_1_eijkde.svg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: fixed;
      z-index: 0;
    }

    .hero-gradient::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(10, 10, 20, 0.85) 0%, rgba(15, 23, 42, 0.85) 25%, rgba(25, 35, 80, 0.85) 50%, rgba(15, 20, 50, 0.85) 75%, rgba(10, 10, 20, 0.85) 100%);
      z-index: 1;
    }

    /* Main content wrapper */
    .hero-content-wrapper {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      padding: 60px 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    /* Left side content */
    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }



    .hero-title {
      font-size: 13px;
      font-weight: 700;
      line-height: 1.2;
      color: #ffffff;
      margin-bottom: 24px;
      letter-spacing: -0.5px;
    }

    .gradient-text {
      background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 50%, #3b82f6 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-subtitle {
      font-size: 18px;
      color: #cbd5e1;
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 500px;
      font-weight: 400;
    }

    /* CTA Button */
    .cta-button {
      position: relative;
      width: fit-content;
      display: inline-block;
      padding: 16px 40px;
      font-size: 20px;
      font-weight: 600;
      color: #ffffff;
      background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-family: 'Plus Jakarta Sans', sans-serif;
      text-decoration: none;
      transition: all 0.3s ease;
      overflow: hidden;
    }

    .button-text {
      position: relative;
      z-index: 2;
      display: block;
    }

    .button-glow {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
      border-radius: 8px;
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 1;
    }

    .cta-button:hover {
      color: #ffffff;
      text-decoration: none;
      transform: translateY(-2px);
      box-shadow: 0 0 30px rgba(34, 211, 238, 0.6), 0 0 60px rgba(6, 182, 212, 0.3);
    }

    .cta-button:active {
      transform: translateY(0);
    }

    /* Right side AI illustrations */
    .hero-right {
      position: relative;
      height: 500px;
    }

    .course-preview-container {
      position: relative;
      width: 100%;
      height: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: 240px 240px;
      gap: 20px;
    }

    .preview-image {
      border-radius: 12px;
      border: 2px solid rgba(34, 211, 238, 0.3);
      object-fit: cover;
      width: 100%;
      height: 100%;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .preview-1 {
      grid-column: 1;
      grid-row: 1 / 3;
    }

    .preview-2 {
      grid-column: 2;
      grid-row: 1;
    }

    .preview-3 {
      grid-column: 2;
      grid-row: 2;
    }

    .preview-image:hover {
      border-color: rgba(34, 211, 238, 0.8);
      box-shadow: 0 0 30px rgba(34, 211, 238, 0.4);
      transform: translateY(-8px);
    }

    /* Responsive design */
    @media (max-width: 1024px) {
      .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
      }

      .hero-right {
        height: auto;
      }

      .course-preview-container {
        grid-template-rows: 200px 200px;
      }

      .hero-title {
        font-size: 13px;
      }

      .hero-subtitle {
        font-size: 16px;
      }
    }

    @media (max-width: 768px) {
      .ai-hero-root {
        min-height: auto;
        padding: 40px 0;
      }

      .hero-content-wrapper {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 30px;
      }

      .hero-title {
        font-size: 13px;
        margin-bottom: 16px;
      }

      .hero-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
      }

      .hero-right {
        height: auto;
      }

      .course-preview-container {
        grid-template-rows: 180px 180px;
      }

      .ai-card {
        width: 110px;
        height: 110px;
        font-size: 36px;
      }

      .card-label {
        font-size: 12px;
      }
    }

    @media (max-width: 480px) {
      .hero-content-wrapper {
        padding: 30px 16px;
      }

      .hero-title {
        font-size: 13px;
        line-height: 1.3;
      }

      .hero-subtitle {
        font-size: 14px;
        line-height: 1.6;
      }

      .cta-button {
        padding: 14px 32px;
        font-size: 15px;
      }

      .hero-right {
        height: auto;
      }

      .course-preview-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 15px;
      }

      .preview-1 {
        grid-column: 1;
        grid-row: 1;
      }

      .preview-2 {
        grid-column: 1;
        grid-row: 2;
      }

      .preview-3 {
        grid-column: 1;
        grid-row: 3;
      }

      .preview-image {
        height: 160px;
      }

      .ai-card {
        width: 100px;
        height: 100px;
        font-size: 32px;
      }
    }

         /* Adjusted spacing for benefits section */
         .benefits-section {
            position: relative;
            overflow: hidden;
            background:
               radial-gradient(circle at top left, rgba(255, 11, 172, 0.14), transparent 30%),
               radial-gradient(circle at bottom right, rgba(33, 150, 243, 0.14), transparent 32%),
               linear-gradient(135deg, #fff7fc 0%, #ffffff 48%, #f4f9ff 100%);
            margin-top: 80px; /* Standard spacing from banner */
            margin-bottom: 80px; /* Standard spacing from next section */
            border-radius: 28px;
            padding: 68px 46px;
            border: 1px solid rgba(255, 11, 172, 0.08);
            box-shadow: 0 28px 60px rgba(15, 23, 42, 0.08);
         }

         .benefits-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(15, 39, 66, 0.06) 1px, transparent 1px);
            background-size: 22px 22px;
            opacity: 0.35;
            pointer-events: none;
         }

         .benefits-header {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 760px;
            margin: 0 auto 2.8rem;
         }

         .benefits-kicker {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px 16px;
            border-radius: 999px;
            background: #fff0f9;
            color: #ff0bac;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 1rem;
         }

         .benefits-subtitle {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #64748b;
            margin: 0 auto;
         }

         .section-title {
            font-size: 2.6rem;
            text-align: center;
            margin-bottom: 1rem;
            color: #16263d;
            line-height: 1.2;
         }

         .benefit-card {
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 2rem 1.5rem 1.7rem;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
            border-radius: 22px;
            background: rgba(255, 255, 255, 0.88);
            border: 1px solid #e7edf5;
            box-shadow: 0 18px 35px rgba(15, 23, 42, 0.06);
         }

         .benefit-card:hover {
            transform: translateY(-10px);
            background: #ffffff;
            box-shadow: 0 26px 48px rgba(15, 23, 42, 0.12);
         }

         .benefit-card-pink {
            background: linear-gradient(180deg, #fff0f7 0%, #ffffff 100%);
            border-color: #ffd1e9;
         }

         .benefit-card-blue {
            background: linear-gradient(180deg, #eef7ff 0%, #ffffff 100%);
            border-color: #cfe5fb;
         }

         .benefit-card-mint {
            background: linear-gradient(180deg, #effcf7 0%, #ffffff 100%);
            border-color: #cfeee0;
         }

         .benefit-card-peach {
            background: linear-gradient(180deg, #fff3ea 0%, #ffffff 100%);
            border-color: #ffd9c4;
         }

         .benefit-card-lavender {
            background: linear-gradient(180deg, #f4efff 0%, #ffffff 100%);
            border-color: #ddd3ff;
         }

         .benefit-card-lemon {
            background: linear-gradient(180deg, #fffbe8 0%, #ffffff 100%);
            border-color: #f4e3a6;
         }

         .benefit-card-pink:hover {
            border-color: #ff9fd1;
         }

         .benefit-card-blue:hover {
            border-color: #95c9f6;
         }

         .benefit-card-mint:hover {
            border-color: #8fdab7;
         }

         .benefit-card-peach:hover {
            border-color: #ffb98b;
         }

         .benefit-card-lavender:hover {
            border-color: #baa2ff;
         }

         .benefit-card-lemon:hover {
            border-color: #e6cc63;
         }

         .benefit-icon {
            width: 72px;
            height: 72px;
            margin: 0 auto 1.3rem;
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #ff0bac 0%, #2196f3 100%);
            color: #ffffff;
            font-size: 1.7rem;
            box-shadow: 0 18px 30px rgba(255, 11, 172, 0.22);
         }

         .benefit-card-pink .benefit-icon {
            background: linear-gradient(135deg, #ff8fbe 0%, #ff5fa2 100%);
            box-shadow: 0 18px 30px rgba(255, 95, 162, 0.25);
         }

         .benefit-card-blue .benefit-icon {
            background: linear-gradient(135deg, #7bc5ff 0%, #3b82f6 100%);
            box-shadow: 0 18px 30px rgba(59, 130, 246, 0.22);
         }

         .benefit-card-mint .benefit-icon {
            background: linear-gradient(135deg, #67d7b1 0%, #15b981 100%);
            box-shadow: 0 18px 30px rgba(21, 185, 129, 0.22);
         }

         .benefit-card-peach .benefit-icon {
            background: linear-gradient(135deg, #ffbe8a 0%, #fb8b5d 100%);
            box-shadow: 0 18px 30px rgba(251, 139, 93, 0.22);
         }

         .benefit-card-lavender .benefit-icon {
            background: linear-gradient(135deg, #c6a7ff 0%, #8b5cf6 100%);
            box-shadow: 0 18px 30px rgba(139, 92, 246, 0.22);
         }

         .benefit-card-lemon .benefit-icon {
            background: linear-gradient(135deg, #f6dc73 0%, #eab308 100%);
            box-shadow: 0 18px 30px rgba(234, 179, 8, 0.22);
         }

         .benefit-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #16263d;
            margin-bottom: 0.85rem;
         }

         .benefit-text {
            font-size: 1rem;
            line-height: 1.7;
            color: #62748a;
            margin-bottom: 0;
         }

         @media (max-width: 768px) {
            .benefits-section {
               padding: 2.5rem 1.2rem;
               margin-top: 50px;
               margin-bottom: 50px;
               border-radius: 22px;
            }

            .section-title {
               font-size: 1.75rem;
               margin-bottom: 0.8rem;
            }

            .benefits-subtitle {
               font-size: 0.95rem;
               line-height: 1.7;
            }

            .benefit-card {
               padding: 1.4rem 1rem;
               margin-bottom: 1.5rem;
            }

            .benefit-icon {
               width: 60px;
               height: 60px;
               font-size: 1.35rem;
               border-radius: 18px;
               margin-bottom: 1rem;
            }

            .benefit-title {
               font-size: 1.1rem;
            }

            .benefit-text {
               font-size: 0.9rem;
            }
         }
