/* ==========================================================================
   Techno 2026 - New Header & Navigation Styles
   Theme Red: #a72a33 (Matches official CLC Tecno logo)
   ========================================================================== */

:root {
   --theme-red: #a72a33;
   --theme-red-hover: #8e1f26;
   --theme-red-light: rgba(167, 42, 51, 0.08);
   --topbar-navy: #162654;
   --nav-text: #475569;
   --dark-text: #000
}

body {
   font-family: 'Poppins', sans-serif;
   background-color: #fcfcfd;
   margin: 0;
   padding: 0;
}

/* ==========================================================================
   Top Announcement / Support Bar (#162654)
   ========================================================================== */
.new-top-bar {
   background-color: var(--topbar-navy);
   color: #ffffff;
   font-size: 12.5px;
   padding: 12px 0;
   font-weight: 400;
   border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.new-top-bar a {
   color: #d8e0f0;
   text-decoration: none;
   transition: color 0.2s ease;
}

.new-top-bar a:hover {
   color: #ffffff;
}

.new-top-pill {
   display: inline-flex;
   align-items: center;
   gap: 5px;
   padding: 2px 10px;
   border: 1px solid #eab308;
   border-radius: 50px;
   color: #facc15;
   font-size: 11.5px;
   font-weight: 600;
   background: rgba(234, 179, 8, 0.08);
}

.new-top-slogan {
   color: #cbd5e1;
   font-size: 12.5px;
   margin-left: 10px;
}

.new-top-phone {
   display: inline-flex;
   align-items: center;
   gap: 7px;
   color: #e2e8f0;
   font-size: 12.5px;
   text-decoration: none;
}

.new-top-phone:hover {
   color: #ffffff;
}

.new-top-phone i {
   color: #facc15;
}

.new-top-divider {
   color: rgba(255, 255, 255, 0.25);
   margin: 0 12px;
}

.new-top-whatsapp {
   display: inline-flex;
   align-items: center;
   gap: 7px;
   color: #e2e8f0;
   font-size: 12.5px;
   text-decoration: none;
}

.new-top-whatsapp:hover {
   color: #ffffff;
}

.new-top-whatsapp i {
   color: #25d366;
}

/* ==========================================================================
   Main Header Navigation Bar
   ========================================================================== */
.new-header-nav {
   background: #ffffff;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
   position: sticky;
   top: 0;
   z-index: 1050;
   transition: all 0.3s ease;
   border-bottom: 1px solid #edf0f5;
   padding: 0;
}

.new-header-logo img {
   max-height: 48px;
   width: auto;
   object-fit: contain;
   transition: transform 0.25s ease;
}

.new-header-logo:hover img {
   transform: scale(1.02);
}

/* ==========================================================================
   Navigation Menu Items
   ========================================================================== */
.new-nav-menu {
   display: flex;
   align-items: center;
   list-style: none;
   margin: 0;
   padding: 0;
   gap: 2px;
}

.new-nav-item {
   position: relative;
}

.new-nav-link {
   position: relative;
   display: inline-flex;
   align-items: center;
   gap: 5px;
   padding: 24px 13px;
   font-size: 14.5px;
   font-weight: 500;
   color: var(--dark-text);
   text-decoration: none;
   transition: color 0.2s ease;
}

.new-nav-link::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 13px;
   right: 13px;
   height: 3px;
   background-color: var(--theme-red);
   border-radius: 3px 3px 0 0;
   opacity: 0;
   transform: scaleX(0);
   transition: all 0.25s ease;
}

.new-nav-link:hover,
.new-nav-item:hover>.new-nav-link,
.new-nav-link.active {
   color: var(--theme-red);
   font-weight: 600;
}

.new-nav-link:hover::after,
.new-nav-item:hover>.new-nav-link::after,
.new-nav-link.active::after {
   opacity: 1;
   transform: scaleX(1);
}

/* ==========================================================================
   Dropdown Menus
   ========================================================================== */
.new-dropdown-menu {
   position: absolute;
   top: 100%;
   left: 0;
   background: #ffffff;
   min-width: 210px;
   border-radius: 10px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   border: 1px solid #f0f2f5;
   padding: 8px 0;
   opacity: 0;
   visibility: hidden;
   transform: translateY(10px);
   transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
   z-index: 1100;
   list-style: none;
}

.new-nav-item:hover .new-dropdown-menu {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
}

.new-dropdown-item {
   display: flex;
   align-items: center;
   padding: 9px 18px;
   font-size: 13.5px;
   font-weight: 500;
   color: #374151;
   text-decoration: none;
   transition: all 0.2s ease;
}

.new-dropdown-item:hover {
   color: var(--theme-red);
   background-color: var(--theme-red-light);
   padding-left: 22px;
}

/* ==========================================================================
   Action Buttons (Theme Logo Red #a72a33)
   ========================================================================== */
.new-header-actions {
   display: flex;
   align-items: center;
   justify-content: flex-end;
   gap: 12px;
}

/* ==========================================================================
   Student Login Button (Enabled vs Disabled CSS)
   ========================================================================== */

/* 1. ENABLED STATE: Active outlined button with Theme Red #a72a33 */
.btn-student-login,
.btn-student-login.enabled {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 8px 20px;
   font-size: 14px;
   font-weight: 600;
   color: var(--theme-red);
   border: 1.5px solid var(--theme-red);
   border-radius: 7px;
   background: transparent;
   text-decoration: none;
   cursor: pointer;
   transition: all 0.25s ease;
}

.btn-student-login i,
.btn-student-login.enabled i {
   font-size: 16px;
}

.btn-student-login:hover,
.btn-student-login.enabled:hover {
   background-color: var(--theme-red);
   color: #ffffff !important;
   transform: translateY(-1px);
   box-shadow: 0 4px 14px rgba(167, 42, 51, 0.25);
}

/* 2. DISABLED STATE: Muted gray, not-allowed cursor, clickable for notice */
.btn-student-login.disabled,
.btn-student-login[disabled],
.btn-disabled {
   color: #94a3b8 !important;
   border-color: #cbd5e1 !important;
   background-color: #f1f5f9 !important;
   cursor: not-allowed !important;
   opacity: 0.85;
   transform: none !important;
   box-shadow: none !important;
   text-decoration: none !important;
}

.btn-student-login.disabled i,
.btn-student-login[disabled] i,
.btn-disabled i {
   color: #94a3b8 !important;
}

.btn-student-login.disabled:hover,
.btn-student-login[disabled]:hover,
.btn-disabled:hover {
   background-color: #e2e8f0 !important;
   color: #64748b !important;
   border-color: #94a3b8 !important;
   transform: none !important;
   box-shadow: none !important;
}

/* ==========================================================================
   Inactive Student Login Alert Toast / Modal Styles
   ========================================================================== */
.login-error-toast {
   position: fixed;
   top: 30px;
   right: 30px;
   z-index: 99999;
   background: #ffffff;
   border-left: 5px solid #e11d48;
   border-radius: 8px;
   padding: 16px 20px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
   display: flex;
   align-items: center;
   gap: 14px;
   max-width: 380px;
   transform: translateX(120%);
   transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.login-error-toast.show {
   transform: translateX(0);
}

.login-error-toast i.icon-alert {
   color: #e11d48;
   font-size: 24px;
   flex-shrink: 0;
}

.login-error-toast .toast-title {
   font-size: 14px;
   font-weight: 700;
   color: #1e293b;
   margin-bottom: 2px;
}

.login-error-toast .toast-desc {
   font-size: 13px;
   color: #64748b;
   line-height: 1.4;
}

.login-error-toast .toast-close-btn {
   background: transparent;
   border: none;
   color: #94a3b8;
   cursor: pointer;
   font-size: 16px;
   padding: 0 4px;
   margin-left: auto;
   transition: color 0.2s ease;
}

.login-error-toast .toast-close-btn:hover {
   color: #1e293b;
}

/* ==========================================================================
   Creative Inactive Modal Popup (Spacious & Modern Design)
   ========================================================================== */
.creative-inactive-modal .modal-dialog {
   max-width: 500px;
}

.creative-inactive-modal .modal-content {
   border-radius: 24px;
   border: none;
   box-shadow: 0 25px 70px -15px rgba(22, 38, 84, 0.28), 0 0 0 1px rgba(0, 0, 0, 0.04);
   background: #ffffff;
   position: relative;
   overflow: hidden;
}

/* Creative top color accent strip */
.creative-inactive-modal .modal-content::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 6px;
   background: linear-gradient(90deg, #162654 0%, #a72a33 50%, #e11d48 100%);
}

.creative-inactive-modal .modal-body {
   padding: 44px 34px 34px 34px;
   text-align: center;
}

/* Floating custom close button */
.creative-inactive-modal .modal-close-icon {
   position: absolute;
   top: 18px;
   right: 18px;
   width: 36px;
   height: 36px;
   border-radius: 50%;
   background: #f1f5f9;
   border: none;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #64748b;
   font-size: 15px;
   cursor: pointer;
   transition: all 0.2s ease;
   z-index: 10;
}

.creative-inactive-modal .modal-close-icon:hover {
   background: #e2e8f0;
   color: #0f172a;
   transform: rotate(90deg);
}

/* Animated Pulsing Icon Badge */
.creative-modal-icon-wrap {
   position: relative;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 20px;
}

.creative-modal-icon-outer {
   width: 88px;
   height: 88px;
   border-radius: 50%;
   background: rgba(167, 42, 51, 0.08);
   display: flex;
   align-items: center;
   justify-content: center;
   animation: pulseHalo 2.5s infinite ease-in-out;
}

@keyframes pulseHalo {

   0%,
   100% {
      transform: scale(1);
      background: rgba(167, 42, 51, 0.08);
   }

   50% {
      transform: scale(1.08);
      background: rgba(167, 42, 51, 0.15);
   }
}

.creative-modal-icon-inner {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   background: linear-gradient(135deg, #a72a33 0%, #78171d 100%);
   display: flex;
   align-items: center;
   justify-content: center;
   color: #ffffff;
   font-size: 24px;
   box-shadow: 0 10px 24px rgba(167, 42, 51, 0.35);
}

/* Status pill indicator */
.creative-modal-badge {
   display: inline-flex;
   align-items: center;
   gap: 7px;
   padding: 6px 15px;
   background: #fff1f2;
   border: 1px solid #fecdd3;
   border-radius: 50px;
   color: #be123c;
   font-size: 12px;
   font-weight: 600;
   margin-bottom: 14px;
   letter-spacing: 0.2px;
}

.creative-modal-badge .badge-ping {
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background-color: #e11d48;
   box-shadow: 0 0 0 2px rgba(225, 29, 72, 0.25);
   animation: pingDot 1.5s infinite;
}

@keyframes pingDot {

   0%,
   100% {
      transform: scale(1);
      opacity: 1;
   }

   50% {
      transform: scale(1.3);
      opacity: 0.6;
   }
}

/* Modal Title & Text */
.creative-modal-title {
   font-family: 'Sora', sans-serif;
   font-size: 22px;
   font-weight: 700;
   color: #162654;
   margin-bottom: 12px;
   letter-spacing: -0.3px;
}

.creative-modal-desc {
   font-size: 14px;
   color: #64748b;
   line-height: 1.65;
   max-width: 410px;
   margin: 0 auto 22px;
}

/* Assistance / Helpline Box */
.creative-modal-help-card {
   background: #f8fafc;
   border: 1px solid #e2e8f0;
   border-radius: 14px;
   padding: 14px 18px;
   margin-bottom: 24px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   text-align: left;
}

.creative-modal-help-info .help-label {
   font-size: 11px;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   color: #94a3b8;
   margin-bottom: 2px;
}

.creative-modal-help-info .help-val {
   font-size: 14px;
   font-weight: 700;
   color: #162654;
   display: flex;
   align-items: center;
   gap: 6px;
}

.creative-modal-help-info .help-val a {
   color: #162654;
   text-decoration: none;
}

/* Creative Action Buttons - 2 Centered Buttons with Theme Red Design */
.creative-modal-actions {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 16px;
   flex-wrap: wrap;
   margin-top: 6px;
}

.btn-modal-call {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 12px 28px;
   border-radius: 50px;
   background: linear-gradient(135deg, #a72a33 0%, #872629 100%);
   color: #ffffff !important;
   font-size: 14.5px;
   font-weight: 600;
   text-decoration: none;
   border: 1.5px solid transparent;
   box-shadow: 0 6px 18px rgba(167, 42, 51, 0.32);
   transition: all 0.25s ease;
   min-width: 170px;
}

.btn-modal-call:hover {
   background: linear-gradient(135deg, #b8333d 0%, #9a252d 100%);
   transform: translateY(-2px);
   box-shadow: 0 8px 22px rgba(167, 42, 51, 0.42);
   color: #fff;
}

.btn-modal-whatsapp {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   padding: 12px 28px;
   border-radius: 50px;
   background: #ffffff;
   color: var(--theme-red) !important;
   font-size: 14.5px;
   font-weight: 600;
   text-decoration: none;
   border: 1.5px solid var(--theme-red);
   box-shadow: 0 4px 14px rgba(167, 42, 51, 0.12);
   transition: all 0.25s ease;
   min-width: 170px;
}

.btn-modal-whatsapp:hover {
   background: #fff5f5;
   border-color: #872629;
   color: #872629 !important;
   transform: translateY(-2px);
   box-shadow: 0 6px 18px rgba(167, 42, 51, 0.22);
}

.btn-modal-whatsapp i {
   color: #25d366;
   font-size: 17px;
}

/* Register Now - Solid Pill in Theme Logo Red */
.btn-register-now {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 9px 24px;
   font-size: 14px;
   font-weight: 600;
   color: #ffffff !important;
   background: linear-gradient(135deg, #872629 0%, #9d282f 100%);
   border: 1.5px solid var(--theme-red);
   border-radius: 7px;
   text-decoration: none;
   box-shadow: 0 4px 14px rgba(167, 42, 51, 0.28);
   transition: all 0.25s ease;
}

.btn-register-now:hover {
   background-color: var(--theme-red-hover);
   border-color: var(--theme-red-hover);
   transform: translateY(-1px);
   box-shadow: 0 6px 18px rgba(167, 42, 51, 0.38);
   color: #ffffff !important;
}

.btn-register-now i {
   font-size: 12px;
   transition: transform 0.2s ease;
}

.btn-register-now:hover i {
   transform: translateX(3px);
}

/* ==========================================================================
   Mobile Header & Offcanvas Menu
   ========================================================================== */
.mobile-menu-toggler {
   display: none;
   background: none;
   border: none;
   font-size: 22px;
   color: var(--theme-red);
   padding: 6px 10px;
   cursor: pointer;
}

.offcanvas-new-header {
   width: 320px;
}

.offcanvas-new-header .offcanvas-header {
   border-bottom: 1px solid #f0f0f0;
   padding: 16px 20px;
}

.offcanvas-new-header .accordion-button:not(.collapsed) {
   color: var(--theme-red);
   background-color: var(--theme-red-light);
   box-shadow: none;
}

.offcanvas-new-header .accordion-button {
   font-weight: 600;
   font-size: 15px;
}

.offcanvas-new-header .accordion-item {
   border: none;
   border-bottom: 1px solid #f1f1f1;
}

.mobile-nav-link {
   display: block;
   padding: 12px 18px;
   font-size: 15px;
   font-weight: 600;
   color: #2c3e50;
   text-decoration: none;
   border-bottom: 1px solid #f1f1f1;
   transition: background 0.2s ease;
}

.mobile-nav-link:hover {
   background-color: var(--theme-red-light);
   color: var(--theme-red);
}

.mobile-sub-list {
   list-style: none;
   padding: 6px 0 6px 15px;
   margin: 0;
}

.mobile-sub-list li a {
   display: block;
   padding: 8px 12px;
   font-size: 14px;
   color: #4b5563;
   text-decoration: none;
   transition: color 0.2s ease;
}

.mobile-sub-list li a:hover {
   color: var(--theme-red);
}

/* Responsive Breakpoints */
@media (max-width: 1199px) {
   .new-nav-link {
      padding: 20px 9px;
      font-size: 13.5px;
   }
}

@media (max-width: 991px) {
   .new-header-nav {
      padding: 12px 0 !important;
   }

   .new-header-nav .container {
      padding-left: 18px !important;
      padding-right: 18px !important;
   }

   .new-header-logo img {
      max-height: 44px !important;
      width: auto !important;
      display: block;
   }

   .desktop-nav-container,
   .desktop-actions {
      display: none !important;
   }

   .mobile-menu-toggler {
      display: inline-flex !important;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: #f8fafc;
      border: 1.5px solid #e2e8f0;
      color: #a72a33;
      font-size: 20px;
      padding: 0;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      transition: all 0.2s ease;
   }

   .mobile-menu-toggler:active {
      transform: scale(0.92);
      background: #fee2e2;
      color: #a72a33;
      border-color: #fca5a5;
   }
}

@media (max-width: 576px) {
   .new-header-nav {
      padding: 10px 0 !important;
   }

   .new-header-nav .container {
      padding-left: 16px !important;
      padding-right: 16px !important;
   }

   .new-header-logo img {
      max-height: 40px !important;
   }

   .mobile-menu-toggler {
      width: 40px !important;
      height: 40px !important;
      font-size: 18px !important;
      border-radius: 10px !important;
   }
}

/* ==========================================================================
   Hero Section Styling (Matching user screenshot)
   ========================================================================== */
.new-hero-section {
   position: relative;
   background-color: #fff9f9;
   background-image: linear-gradient(135deg, rgba(255, 248, 248, 0.94) 0%, rgba(255, 252, 252, 0.86) 50%, rgba(255, 255, 255, 0.35) 100%), url('../img/img-26/hero-bg-image.png');
   background-size: cover;
   background-position: center right;
   background-repeat: no-repeat;
   padding: 70px 0 80px 0;
   min-height: 85vh;
   display: flex;
   align-items: center;
   overflow: hidden;
}

/* Subtle glow / light blur effect on top-left */
.new-hero-section::before {
   content: '';
   position: absolute;
   top: -120px;
   left: -120px;
   width: 480px;
   height: 480px;
   background: radial-gradient(circle, rgba(254, 226, 226, 0.75) 0%, rgba(255, 255, 255, 0) 70%);
   border-radius: 50%;
   pointer-events: none;
   z-index: 1;
}

.hero-content-wrap {
   position: relative;
   z-index: 2;
   max-width: 680px;
}

/* 1. Top Pill Badge */
.hero-top-badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 6px 18px;
   background: rgba(255, 255, 255, 0.85);
   backdrop-filter: blur(8px);
   border: 1px solid #c7d2fe;
   border-radius: 50px;
   font-size: 11.5px;
   font-weight: 700;
   letter-spacing: 0.8px;
   color: #1e293b;
   text-transform: uppercase;
   margin-bottom: 22px;
   box-shadow: 0 2px 8px rgba(99, 102, 241, 0.08);
}

.hero-top-badge .badge-dot-red {
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background-color: #dc2626;
   box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.25);
   animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

   0%,
   100% {
      transform: scale(1);
      opacity: 1;
   }

   50% {
      transform: scale(1.3);
      opacity: 0.7;
   }
}

/* 2. Main Headline */
.hero-main-title {
   font-family: 'Sora', sans-serif;
   font-size: 56px;
   font-weight: 800;
   line-height: 1.12;
   color: #162654;
   margin-bottom: 18px;
   letter-spacing: -1.2px;
}

.hero-main-title .highlight-red {
   color: #c81e2b;
   display: block;
}

/* 3. Subtitle / Target Audience */
.hero-subtitle {
   font-size: 16.5px;
   line-height: 1.65;
   color: #475569;
   margin-bottom: 26px;
   max-width: 600px;
}

.hero-subtitle strong {
   color: #1e293b;
   font-weight: 700;
}

/* 4. Three Feature Chips */
.hero-chips-wrap {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 12px;
   margin-bottom: 34px;
}

.hero-chip-item {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 8px 16px;
   background: #eff6ff;
   border: 1px solid #dbeafe;
   border-radius: 8px;
   font-size: 13.5px;
   font-weight: 600;
   color: #1e3a8a;
   transition: all 0.2s ease;
}

.hero-chip-item:hover {
   transform: translateY(-1px);
   box-shadow: 0 4px 10px rgba(30, 58, 138, 0.08);
}

.hero-chip-item i {
   font-size: 14px;
}

/* 5. Action Buttons Row */
.hero-actions-row {
   display: flex;
   align-items: center;
   gap: 16px;
   flex-wrap: wrap;
   margin-bottom: 16px;
}

.btn-hero-register {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 14px 30px;
   background: linear-gradient(135deg, #c81e2b 0%, #9e1823 100%);
   border: 1.5px solid transparent;
   border-radius: 10px;
   color: #ffffff !important;
   font-size: 15.5px;
   font-weight: 700;
   text-decoration: none;
   box-shadow: 0 8px 24px rgba(200, 30, 43, 0.35);
   transition: all 0.25s ease;
}

.btn-hero-register:hover {
   background: linear-gradient(135deg, #db2432 0%, #b01c27 100%);
   transform: translateY(-2px);
   box-shadow: 0 10px 28px rgba(200, 30, 43, 0.45);
   color: #ffffff !important;
}

.btn-hero-result {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 14px 30px;
   background: #ffffff;
   border: 2px solid #162654;
   border-radius: 10px;
   color: #162654 !important;
   font-size: 15.5px;
   font-weight: 700;
   text-decoration: none;
   box-shadow: 0 4px 14px rgba(22, 38, 84, 0.08);
   transition: all 0.25s ease;
}

.btn-hero-result:hover {
   background: #162654;
   color: #ffffff !important;
   transform: translateY(-2px);
   box-shadow: 0 8px 22px rgba(22, 38, 84, 0.22);
}

/* 6. Link below buttons */
.hero-mock-link {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   font-size: 14.5px;
   font-weight: 600;
   color: #1e293b;
   text-decoration: underline;
   text-underline-offset: 4px;
   margin-bottom: 36px;
   transition: color 0.2s ease;
}

.hero-mock-link:hover {
   color: #c81e2b;
}

.hero-mock-link i {
   font-size: 12px;
   text-decoration: none;
}

/* 7. Three Stats Cards (Exact match to user screenshot Image 2) */
.hero-stats-row {
   display: flex;
   align-items: stretch;
   gap: 16px;
   max-width: 680px;
   margin-top: 10px;
}

.hero-stat-card {
   flex: 1;
   background: #ffffff;
   border: 1px solid #eef2f6;
   border-radius: 18px;
   padding: 16px 20px;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
   display: flex;
   flex-direction: column;
   justify-content: center;
   transition: all 0.25s ease;
}

.hero-stat-card:hover {
   transform: translateY(-2px);
   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.hero-stat-card .hero-stat-number {
   font-family: 'Sora', sans-serif;
   font-size: 28px;
   font-weight: 800;
   color: #0b1528;
   line-height: 1.15;
   margin-bottom: 6px;
   letter-spacing: -0.6px;
}

.hero-stat-card .hero-stat-number.text-red {
   color: #b91c1c !important;
}

.hero-stat-card .hero-stat-number.text-green {
   color: #00b871 !important;
}

.hero-stat-card .hero-stat-label {
   font-size: 11px;
   font-weight: 700;
   color: #556476;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   line-height: 1.35;
   margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
   .new-hero-section {
      padding: 50px 0 60px 0;
      min-height: auto;
      background-position: center;
   }

   .hero-main-title {
      font-size: 42px;
   }

   .hero-stats-row {
      gap: 14px;
   }
}

@media (max-width: 576px) {
   .hero-main-title {
      font-size: 34px;
   }

   .hero-chips-wrap {
      flex-direction: column;
      align-items: flex-start;
   }

   .hero-actions-row {
      flex-direction: column;
      width: 100%;
   }

   .btn-hero-register,
   .btn-hero-result {
      width: 100%;
      justify-content: center;
   }

   .hero-stats-row {
      flex-direction: column;
      gap: 18px;
   }
}

/* ==========================================================================
   Hero Right Side - Creative 3D Layered PNG Showcase (Full Height Spanning)
   ========================================================================== */
.hero-pattern-stage {
   position: relative;
   width: 100%;
   height: 680px;
   min-height: 680px;
   max-width: 580px;
   margin-left: auto;
   z-index: 2;
}

/* Ambient Soft Glowing Aura Spanning the Column */
.hero-pattern-stage::before {
   content: '';
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 520px;
   height: 620px;
   background: radial-gradient(ellipse at center, rgba(167, 42, 51, 0.10) 0%, rgba(22, 38, 84, 0.06) 55%, transparent 75%);
   border-radius: 50%;
   pointer-events: none;
   z-index: 1;
}

/* Pure Transparent PNG Items - NO artificial white bg or borders */
.pattern-item {
   position: absolute;
   background: transparent !important;
   border: none !important;
   border-radius: 0 !important;
   box-shadow: none !important;
   overflow: visible !important;
   transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   cursor: pointer;
}

.pattern-item img {
   width: 100%;
   height: auto;
   display: block;
   filter: drop-shadow(0 14px 28px rgba(22, 38, 84, 0.16));
   transition: transform 0.35s ease, filter 0.35s ease;
}

.pattern-item:hover {
   transform: scale(1.08) translateY(-8px) !important;
   z-index: 25 !important;
   opacity: 1 !important;
}

.pattern-item:hover img {
   filter: drop-shadow(0 25px 45px rgba(22, 38, 84, 0.28));
}

/* --- TIER 1: Top Zone (Aligns with Top Badge & Title, Y = 0 to 180px) --- */
/* 1. Top-Left Medium (Y=10px) */
.item-pos-1 {
   width: 195px;
   top: 10px;
   left: 0px;
   z-index: 6;
   transform: rotate(-7deg);
   animation: floatSlow 5s ease-in-out infinite;
}

/* 2. Top Center-Right Prominent Anchor (Y=0px) */
.item-pos-2 {
   width: 250px;
   top: 0px;
   right: 45px;
   z-index: 8;
   transform: rotate(5deg);
   animation: floatFast 4.4s ease-in-out infinite 0.3s;
}

/* 3. Top Far-Right Satellite Accent (Y=35px) */
.item-pos-3 {
   width: 135px;
   top: 35px;
   right: -15px;
   z-index: 5;
   transform: rotate(10deg) scale(0.9);
   opacity: 0.82;
   animation: floatSlow 4.8s ease-in-out infinite 0.7s;
}

/* --- TIER 2: Upper-Middle Zone (Aligns with Headline & Subtitle, Y = 170 to 350px) --- */
/* 4. Centerpiece Showcase (Largest Focal Card, Y=170px) */
.item-pos-4 {
   width: 290px;
   top: 170px;
   left: 140px;
   z-index: 12;
   animation: floatSlow 5.2s ease-in-out infinite;
}

.item-pos-4 img {
   filter: drop-shadow(0 20px 40px rgba(22, 38, 84, 0.24));
}

/* 5. Mid-Left Satellite (Y=195px) */
.item-pos-5 {
   width: 175px;
   top: 195px;
   left: -10px;
   z-index: 7;
   transform: rotate(6deg);
   animation: floatFast 4.2s ease-in-out infinite 0.5s;
}

/* 6. Mid-Right Satellite (Y=230px) */
.item-pos-6 {
   width: 215px;
   top: 230px;
   right: 10px;
   z-index: 8;
   transform: rotate(-6deg);
   animation: floatSlow 4.6s ease-in-out infinite 0.2s;
}

/* --- TIER 3: Lower-Middle Zone (Aligns with Chips & Buttons, Y = 350 to 500px) --- */
/* 7. Lower-Left Anchor (Y=360px) */
.item-pos-7 {
   width: 235px;
   top: 360px;
   left: 25px;
   z-index: 9;
   transform: rotate(-5deg);
   animation: floatFast 4.5s ease-in-out infinite 0.4s;
}

/* 8. Lower-Right Medium (Y=380px) */
.item-pos-8 {
   width: 210px;
   top: 380px;
   right: 30px;
   z-index: 8;
   transform: rotate(6deg);
   animation: floatSlow 5.4s ease-in-out infinite 1s;
}

/* 9. Lower Far-Right Satellite (Y=440px) */
.item-pos-9 {
   width: 135px;
   top: 440px;
   right: -15px;
   z-index: 6;
   transform: rotate(-9deg) scale(0.9);
   opacity: 0.85;
   animation: floatFast 4s ease-in-out infinite 0.8s;
}

/* --- TIER 4: Bottom Zone (Aligns with Stat Cards ₹65 Cr+, 30+ Yrs, Top 40%, Y = 500 to 680px) --- */
/* 10. Bottom Prominent Anchor (Y=495px) */
.item-pos-10 {
   width: 260px;
   top: 495px;
   left: 155px;
   z-index: 11;
   transform: rotate(3deg);
   animation: floatSlow 5s ease-in-out infinite 0.6s;
}

/* Floating Keyframes */
@keyframes floatSlow {

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

   50% {
      transform: translateY(-8px);
   }
}

@keyframes floatFast {

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

   50% {
      transform: translateY(-5px);
   }
}

/* Responsive adjustments */
@media (max-width: 1199px) {
   .hero-pattern-stage {
      height: 620px;
      min-height: 620px;
      transform: scale(0.92);
      transform-origin: right center;
   }
}

@media (max-width: 991px) {
   .hero-pattern-stage {
      height: 520px;
      min-height: 520px;
      max-width: 480px;
      margin: 40px auto 0 auto;
      transform: scale(0.85);
      transform-origin: center center;
   }
}

@media (max-width: 576px) {
   .hero-pattern-stage {
      height: 420px;
      min-height: 420px;
      max-width: 360px;
      transform: scale(0.72);
      transform-origin: top center;
      margin-bottom: -50px;
   }
}

/* Floating Keyframes */
@keyframes floatSlow {

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

   50% {
      transform: translateY(-8px);
   }
}

@keyframes floatFast {

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

   50% {
      transform: translateY(-5px);
   }
}

/* Responsive adjustments */
@media (max-width: 1199px) {
   .hero-pattern-stage {
      height: 480px;
      transform: scale(0.92);
      transform-origin: right center;
   }
}

@media (max-width: 991px) {
   .hero-pattern-stage {
      height: 460px;
      max-width: 460px;
      margin: 40px auto 0 auto;
      transform: scale(0.95);
      transform-origin: center center;
   }
}

@media (max-width: 576px) {
   .hero-pattern-stage {
      height: 360px;
      max-width: 340px;
      transform: scale(0.75);
      transform-origin: top center;
      margin-bottom: -50px;
   }
}

/* ==========================================================================
   Foundational Pedagogy Section (Unlocking True Potential - Refined)
   ========================================================================== */
.pedagogy-section {
   padding: 100px 0 110px 0;
   background: radial-gradient(circle at 12% 20%, rgba(37, 99, 235, 0.04) 0%, transparent 45%),
      radial-gradient(circle at 88% 80%, rgba(167, 42, 51, 0.04) 0%, transparent 45%),
      #ffffff;
   border-top: 1px solid rgba(0, 0, 0, 0.04);
   border-bottom: 1px solid rgba(0, 0, 0, 0.04);
   position: relative;
   overflow: hidden;
}

.pedagogy-header {
   text-align: center;
   max-width: 820px;
   margin: 0 auto 60px auto;
}

.pedagogy-badge {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 7px 22px;
   background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(167, 42, 51, 0.08) 100%);
   border: 1px solid rgba(37, 99, 235, 0.16);
   color: #1e3a8a;
   border-radius: 50px;
   font-size: 11.5px;
   font-weight: 800;
   letter-spacing: 0.8px;
   text-transform: uppercase;
   margin-bottom: 18px;
   box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.pedagogy-title {
   font-family: 'Sora', sans-serif;
   font-size: 42px;
   font-weight: 800;
   color: #162654;
   line-height: 1.22;
   margin-bottom: 16px;
   letter-spacing: -0.8px;
}

.pedagogy-desc {
   font-size: 16px;
   color: #64748b;
   line-height: 1.65;
   margin: 0 auto;
   max-width: 740px;
}

/* Pedagogy Feature Cards (Refined Micro-Gradient & Top Accent) */
.pedagogy-card {
   background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
   border: 1.5px solid #edf2f7;
   border-radius: 26px;
   padding: 36px 30px;
   box-shadow: 0 12px 35px rgba(22, 38, 84, 0.04), 0 2px 6px rgba(0, 0, 0, 0.02);
   height: 100%;
   display: flex;
   flex-direction: column;
   position: relative;
   overflow: hidden;
   transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pedagogy-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 24px 50px rgba(22, 38, 84, 0.1);
}

.pedagogy-card.card-blue:hover {
   border-color: #bfdbfe;
}

.pedagogy-card.card-red:hover {
   border-color: #fecdd3;
}

.pedagogy-card.card-green:hover {
   border-color: #bbf7d0;
}

/* Top Accent Bar */
.pedagogy-accent-bar {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 4px;
}

.pedagogy-card.card-blue .pedagogy-accent-bar {
   background: linear-gradient(90deg, #2563eb 0%, #60a5fa 100%);
}

.pedagogy-card.card-red .pedagogy-accent-bar {
   background: linear-gradient(90deg, #a72a33 0%, #f87171 100%);
}

.pedagogy-card.card-green .pedagogy-accent-bar {
   background: linear-gradient(90deg, #059669 0%, #34d399 100%);
}

/* Card Header Row */
.pedagogy-card-header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 24px;
}

/* Icon Badges */
.pedagogy-icon-box {
   width: 58px;
   height: 58px;
   border-radius: 18px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 22px;
   transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pedagogy-card:hover .pedagogy-icon-box {
   transform: scale(1.1) rotate(-4deg);
}

.pedagogy-card.card-blue .pedagogy-icon-box {
   background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
   color: #2563eb;
   border: 1px solid #bfdbfe;
   box-shadow: 0 8px 20px rgba(37, 99, 235, 0.16);
}

.pedagogy-card.card-red .pedagogy-icon-box {
   background: linear-gradient(135deg, #fff1f2 0%, #fee2e2 100%);
   color: #a72a33;
   border: 1px solid #fecdd3;
   box-shadow: 0 8px 20px rgba(167, 42, 51, 0.16);
}

.pedagogy-card.card-green .pedagogy-icon-box {
   background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
   color: #059669;
   border: 1px solid #bbf7d0;
   box-shadow: 0 8px 20px rgba(5, 150, 105, 0.16);
}

.pedagogy-icon-box svg {
   width: 26px;
   height: 26px;
   stroke: currentColor;
   display: block;
}

.pedagogy-step-num {
   font-family: 'Sora', sans-serif;
   font-size: 13px;
   font-weight: 800;
   color: #94a3b8;
   background: #f8fafc;
   border: 1px solid #eef2f6;
   border-radius: 50px;
   padding: 4px 12px;
   letter-spacing: 0.5px;
}

/* Card Content */
.pedagogy-card-title {
   font-family: 'Sora', sans-serif;
   font-size: 23px;
   font-weight: 800;
   color: #162654;
   margin-bottom: 12px;
   letter-spacing: -0.4px;
}

.pedagogy-card-desc {
   font-size: 14.5px;
   color: #64748b;
   line-height: 1.65;
   margin-bottom: 24px;
}

/* Inner Points Box */
.pedagogy-points-box {
   border-radius: 16px;
   padding: 16px 18px;
   margin-bottom: 28px;
   margin-top: auto;
   display: flex;
   flex-direction: column;
   gap: 10px;
}

.pedagogy-card.card-blue .pedagogy-points-box {
   background: #f8faff;
   border: 1px solid #e0e7ff;
}

.pedagogy-card.card-red .pedagogy-points-box {
   background: #fff8f8;
   border: 1px solid #fee2e2;
}

.pedagogy-card.card-green .pedagogy-points-box {
   background: #f6fdf9;
   border: 1px solid #dcfce7;
}

.pedagogy-point {
   display: flex;
   align-items: center;
   gap: 10px;
   font-size: 13px;
   font-weight: 700;
}

.pedagogy-card.card-blue .pedagogy-point {
   color: #1e3a8a;
}

.pedagogy-card.card-red .pedagogy-point {
   color: #991b1b;
}

.pedagogy-card.card-green .pedagogy-point {
   color: #065f46;
}

.pedagogy-point i {
   font-size: 15px;
   flex-shrink: 0;
}

/* Bottom Action Links (Refined Interactive Pill Buttons) */
.pedagogy-link {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 12px 18px;
   border-radius: 12px;
   font-size: 13px;
   font-weight: 700;
   text-decoration: none;
   transition: all 0.25s ease;
}

.pedagogy-card.card-blue .pedagogy-link {
   background: #eff6ff;
   color: #1e40af;
   border: 1px solid #dbeafe;
}

.pedagogy-card.card-blue .pedagogy-link:hover {
   background: #2563eb;
   color: #ffffff;
   border-color: #2563eb;
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.pedagogy-card.card-red .pedagogy-link {
   background: #fff1f2;
   color: #991b1b;
   border: 1px solid #fecdd3;
}

.pedagogy-card.card-red .pedagogy-link:hover {
   background: #a72a33;
   color: #ffffff;
   border-color: #a72a33;
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(167, 42, 51, 0.3);
}

.pedagogy-card.card-green .pedagogy-link {
   background: #f0fdf4;
   color: #065f46;
   border: 1px solid #bbf7d0;
}

.pedagogy-card.card-green .pedagogy-link:hover {
   background: #059669;
   color: #ffffff;
   border-color: #059669;
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

.pedagogy-link i {
   font-size: 12px;
   transition: transform 0.2s ease;
}

.pedagogy-link:hover i {
   transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
   .pedagogy-section {
      padding: 70px 0 80px 0;
   }

   .pedagogy-title {
      font-size: 32px;
   }
}

@media (max-width: 576px) {
   .pedagogy-title {
      font-size: 26px;
   }

   .pedagogy-card {
      padding: 30px 24px;
   }
}

/* ==========================================================================
   Innovative 4-Pillar & Heritage Triptych Section ("How CLC Tecno is Beneficial")
   ========================================================================== */
.benefits-section {
   padding: 105px 0 115px 0;
   background: radial-gradient(circle at 50% 0%, #fff6f6 0%, #fcfdfe 40%, #f8fafc 100%);
   position: relative;
   overflow: hidden;
}

/* Background grid ornament */
.benefits-section::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-image: radial-gradient(rgba(22, 38, 84, 0.04) 1px, transparent 1px);
   background-size: 32px 32px;
   pointer-events: none;
}

/* Section Header */
.benefits-header-v2 {
   text-align: center;
   max-width: 880px;
   margin: 0 auto 50px auto;
   position: relative;
   z-index: 2;
}

.heritage-super-pill {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 7px 22px;
   background: #ffffff;
   color: #a72a33;
   border: 1.5px solid #fee2e2;
   border-radius: 50px;
   font-size: 11.5px;
   font-weight: 800;
   letter-spacing: 1px;
   text-transform: uppercase;
   margin-bottom: 20px;
   box-shadow: 0 6px 20px rgba(167, 42, 51, 0.08);
}

.benefits-main-title {
   font-family: 'Sora', sans-serif;
   font-size: 42px;
   font-weight: 800;
   color: #162654;
   line-height: 1.22;
   margin-bottom: 16px;
   letter-spacing: -0.8px;
}

.benefits-main-title span.text-gradient-red {
   background: linear-gradient(135deg, #a72a33 0%, #dc2626 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

.benefits-lead-text {
   font-size: 16px;
   color: #64748b;
   line-height: 1.65;
   max-width: 760px;
   margin: 0 auto;
}

/* ==========================================================================
   Center Stage: 3-Panel Heritage Triptych Gallery
   ========================================================================== */
.heritage-triptych-wrap {
   position: relative;
   z-index: 2;
   margin-bottom: 50px;
}

.triptych-grid {
   display: grid;
   grid-template-columns: 1.2fr 1fr 1.2fr;
   gap: 20px;
   align-items: stretch;
}

.triptych-panel {
   position: relative;
   border-radius: 22px;
   overflow: hidden;
   box-shadow: 0 14px 35px rgba(22, 38, 84, 0.08);
   border: 1px solid rgba(255, 255, 255, 0.8);
   background: #ffffff;
   transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
   height: 280px;
}

.triptych-panel:hover {
   transform: translateY(-6px);
   box-shadow: 0 22px 50px rgba(22, 38, 84, 0.14);
}

.triptych-panel img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   transition: transform 0.5s ease;
}

.triptych-panel:hover img {
   transform: scale(1.05);
}

.triptych-overlay {
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   padding: 20px 22px;
   background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.88) 100%);
   color: #ffffff;
   z-index: 2;
}

.triptych-badge {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   font-size: 10.5px;
   font-weight: 800;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   padding: 4px 10px;
   border-radius: 50px;
   margin-bottom: 6px;
   background: rgba(255, 255, 255, 0.2);
   backdrop-filter: blur(8px);
}

.triptych-overlay h5 {
   font-family: 'Sora', sans-serif;
   font-size: 15px;
   font-weight: 700;
   margin: 0;
   line-height: 1.35;
}

/* Center Emblem Panel */
.triptych-center-emblem {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   padding: 24px;
   background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
   border: 2px solid #fecdd3;
   text-align: center;
}

.triptych-center-emblem img {
   width: auto;
   max-width: 85%;
   max-height: 170px;
   object-fit: contain;
   margin-bottom: 12px;
   transition: transform 0.4s ease;
}

.triptych-center-emblem:hover img {
   transform: scale(1.08);
}

.emblem-pulse-tag {
   background: #fee2e2;
   color: #a72a33;
   font-size: 11px;
   font-weight: 800;
   padding: 5px 14px;
   border-radius: 50px;
   display: inline-flex;
   align-items: center;
   gap: 6px;
}

/* ==========================================================================
   The 4 Transformative Pillars (Full-Width 4-Column Grid)
   ========================================================================== */
.pillars-row {
   position: relative;
   z-index: 2;
}

.pillar-card {
   background: #ffffff;
   border-radius: 22px;
   padding: 32px 24px 26px 24px;
   box-shadow: 0 10px 30px rgba(22, 38, 84, 0.05);
   border: 1.5px solid #f1f5f9;
   position: relative;
   overflow: hidden;
   height: 100%;
   display: flex;
   flex-direction: column;
   transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pillar-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 20px 45px rgba(22, 38, 84, 0.12);
}

/* Top colored accent line */
.pillar-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 4px;
   transition: height 0.3s ease;
}

.pillar-card:hover::before {
   height: 6px;
}

/* Watermark Number in Top Right */
.pillar-number {
   position: absolute;
   top: 14px;
   right: 18px;
   font-family: 'Sora', sans-serif;
   font-size: 42px;
   font-weight: 900;
   line-height: 1;
   opacity: 0.12;
   user-select: none;
   transition: opacity 0.3s ease;
}

.pillar-card:hover .pillar-number {
   opacity: 0.22;
}

/* Pillar Icon */
.pillar-icon-box {
   width: 52px;
   height: 52px;
   border-radius: 16px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 22px;
   margin-bottom: 20px;
}

/* Pillar Title & Desc */
.pillar-title {
   font-family: 'Sora', sans-serif;
   font-size: 19px;
   font-weight: 800;
   color: #162654;
   margin-bottom: 12px;
   line-height: 1.3;
}

.pillar-desc {
   font-size: 13.5px;
   color: #64748b;
   line-height: 1.6;
   margin-bottom: 20px;
}

/* Feature Check Points */
.pillar-features {
   list-style: none;
   padding: 0;
   margin: 0 0 22px 0;
   display: flex;
   flex-direction: column;
   gap: 9px;
}

.pillar-features li {
   font-size: 12.5px;
   font-weight: 600;
   display: flex;
   align-items: center;
   gap: 8px;
}

.pillar-features li i {
   font-size: 13px;
   flex-shrink: 0;
}

/* Bottom Tag */
.pillar-bottom-tag {
   margin-top: auto;
   display: inline-flex;
   align-items: center;
   justify-content: space-between;
   font-size: 11.5px;
   font-weight: 700;
   padding: 6px 12px;
   border-radius: 8px;
   text-transform: uppercase;
   letter-spacing: 0.4px;
}

/* Distinct Themes for Each Pillar */
/* Pillar 1: Red */
.pillar-card.pillar-red::before {
   background: #a72a33;
}

.pillar-card.pillar-red .pillar-number {
   color: #a72a33;
}

.pillar-card.pillar-red .pillar-icon-box {
   background: #fee2e2;
   color: #a72a33;
}

.pillar-card.pillar-red .pillar-features li {
   color: #7f1d1d;
}

.pillar-card.pillar-red .pillar-features li i {
   color: #dc2626;
}

.pillar-card.pillar-red .pillar-bottom-tag {
   background: #fff5f5;
   color: #a72a33;
   border: 1px solid #fecdd3;
}

/* Pillar 2: Navy */
.pillar-card.pillar-navy::before {
   background: #162654;
}

.pillar-card.pillar-navy .pillar-number {
   color: #162654;
}

.pillar-card.pillar-navy .pillar-icon-box {
   background: #e0e7ff;
   color: #1e3a8a;
}

.pillar-card.pillar-navy .pillar-features li {
   color: #1e293b;
}

.pillar-card.pillar-navy .pillar-features li i {
   color: #2563eb;
}

.pillar-card.pillar-navy .pillar-bottom-tag {
   background: #f8faff;
   color: #1e3a8a;
   border: 1px solid #dbeafe;
}

/* Pillar 3: Amber */
.pillar-card.pillar-amber::before {
   background: #d97706;
}

.pillar-card.pillar-amber .pillar-number {
   color: #d97706;
}

.pillar-card.pillar-amber .pillar-icon-box {
   background: #fef3c7;
   color: #b45309;
}

.pillar-card.pillar-amber .pillar-features li {
   color: #78350f;
}

.pillar-card.pillar-amber .pillar-features li i {
   color: #d97706;
}

.pillar-card.pillar-amber .pillar-bottom-tag {
   background: #fffbeb;
   color: #b45309;
   border: 1px solid #fde68a;
}

/* Pillar 4: Emerald */
.pillar-card.pillar-emerald::before {
   background: #059669;
}

.pillar-card.pillar-emerald .pillar-number {
   color: #059669;
}

.pillar-card.pillar-emerald .pillar-icon-box {
   background: #dcfce7;
   color: #059669;
}

.pillar-card.pillar-emerald .pillar-features li {
   color: #064e3b;
}

.pillar-card.pillar-emerald .pillar-features li i {
   color: #059669;
}

.pillar-card.pillar-emerald .pillar-bottom-tag {
   background: #f0fdf4;
   color: #065f46;
   border: 1px solid #bbf7d0;
}

/* ==========================================================================
   Bottom Action Strip
   ========================================================================== */
.benefits-action-strip {
   margin-top: 45px;
   background: #ffffff;
   border: 1px solid #eef2f6;
   border-radius: 20px;
   padding: 18px 28px;
   box-shadow: 0 10px 30px rgba(22, 38, 84, 0.04);
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 16px;
   position: relative;
   z-index: 2;
}

.action-strip-text {
   display: flex;
   align-items: center;
   gap: 12px;
}

.action-strip-text i {
   font-size: 24px;
   color: #a72a33;
}

.action-strip-text span {
   font-size: 15px;
   font-weight: 700;
   color: #162654;
}

.action-strip-links {
   display: flex;
   align-items: center;
   gap: 14px;
}

.action-btn-register {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 10px 24px;
   background: linear-gradient(135deg, #a72a33 0%, #872629 100%);
   color: #ffffff;
   border-radius: 50px;
   font-size: 13px;
   font-weight: 700;
   text-decoration: none;
   box-shadow: 0 4px 14px rgba(167, 42, 51, 0.25);
   transition: all 0.25s ease;
}

.action-btn-register:hover {
   color: #ffffff;
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(167, 42, 51, 0.35);
}

.action-link-helpline {
   font-size: 13px;
   font-weight: 700;
   color: #162654;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 8px 16px;
   border-radius: 50px;
   background: #f8fafc;
   transition: background 0.2s ease;
}

.action-link-helpline:hover {
   background: #f1f5f9;
   color: #a72a33;
}

/* Responsive */
@media (max-width: 991px) {
   .benefits-section {
      padding: 70px 0 80px 0;
   }

   .benefits-main-title {
      font-size: 32px;
   }

   .triptych-grid {
      grid-template-columns: 1fr;
      gap: 16px;
   }

   .triptych-panel {
      height: 220px;
   }

   .triptych-center-emblem {
      height: auto;
      padding: 30px 20px;
   }

   .benefits-action-strip {
      flex-direction: column;
      text-align: center;
      justify-content: center;
   }

   .action-strip-text {
      flex-direction: column;
   }
}

@media (max-width: 576px) {
   .benefits-main-title {
      font-size: 26px;
   }

   .pillar-card {
      padding: 26px 20px;
   }
}

/* ==========================================================================
   Creative "Who Can Apply & Online Registration" Section (100% Full-Width Section Design)
   ========================================================================== */
.about-exam-section {
   width: 100%;
   padding: 100px 0 115px 0;
   background: linear-gradient(180deg, #fffbf7 0%, #fff4ec 50%, #fffbf7 100%);
   border-top: 1px solid rgba(254, 215, 170, 0.45);
   border-bottom: 1px solid rgba(254, 215, 170, 0.45);
   position: relative;
   overflow: hidden;
}

.about-exam-section::before {
   content: '';
   position: absolute;
   top: -80px;
   left: -80px;
   width: 500px;
   height: 500px;
   background: radial-gradient(circle, rgba(251, 146, 60, 0.12) 0%, transparent 70%);
   border-radius: 50%;
   pointer-events: none;
}

.about-exam-section::after {
   content: '';
   position: absolute;
   bottom: -80px;
   right: -80px;
   width: 500px;
   height: 500px;
   background: radial-gradient(circle, rgba(167, 42, 51, 0.07) 0%, transparent 70%);
   border-radius: 50%;
   pointer-events: none;
}

.about-exam-section>.container {
   position: relative;
   z-index: 2;
}

/* --- Left Column: Dream International Tour Visual --- */
.tour-visual-wrapper {
   position: relative;
   text-align: center;
   padding: 20px 10px;
}

.tour-airplane-img {
   width: 100%;
   max-width: 440px;
   height: auto;
   display: inline-block;
   filter: drop-shadow(0 20px 35px rgba(22, 38, 84, 0.16));
   animation: floatTour 5s ease-in-out infinite;
   transition: transform 0.4s ease;
}

.tour-airplane-img:hover {
   transform: scale(1.04) rotate(1deg);
}

@keyframes floatTour {

   0%,
   100% {
      transform: translateY(0px) rotate(0deg);
   }

   50% {
      transform: translateY(-10px) rotate(-1deg);
   }
}

/* Destination Pill Chips */
.tour-destinations-row {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   gap: 8px;
   margin-top: 24px;
}

.tour-dest-pill {
   background: #ffffff;
   border: 1.5px solid #fee2e2;
   box-shadow: 0 4px 12px rgba(167, 42, 51, 0.08);
   border-radius: 50px;
   padding: 6px 14px;
   font-size: 12px;
   font-weight: 700;
   color: #162654;
   display: inline-flex;
   align-items: center;
   gap: 6px;
}

.tour-dest-pill i {
   color: #a72a33;
}

.tour-feature-tag {
   margin-top: 14px;
   font-size: 12.5px;
   font-weight: 700;
   color: #a72a33;
   display: inline-flex;
   align-items: center;
   gap: 6px;
}

/* --- Right Column: Eligibility & Info --- */
.about-exam-header {
   margin-bottom: 24px;
}

.exam-badge {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 6px 18px;
   background: linear-gradient(135deg, #a72a33 0%, #872629 100%);
   color: #ffffff;
   border-radius: 50px;
   font-size: 11px;
   font-weight: 800;
   letter-spacing: 0.8px;
   text-transform: uppercase;
   margin-bottom: 16px;
   box-shadow: 0 4px 12px rgba(167, 42, 51, 0.25);
}

.about-exam-title {
   font-family: 'Sora', sans-serif;
   font-size: 38px;
   font-weight: 800;
   color: #162654;
   margin-bottom: 14px;
   letter-spacing: -0.6px;
}

/* Eligibility Details Card */
.eligibility-box {
   background: #ffffff;
   border: 1.5px solid #fee8de;
   border-radius: 22px;
   padding: 26px 28px;
   margin-bottom: 22px;
   box-shadow: 0 10px 30px rgba(167, 42, 51, 0.04);
}

.eligibility-subhead {
   font-size: 13.5px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   color: #64748b;
   margin-bottom: 12px;
   display: flex;
   align-items: center;
   gap: 6px;
}

/* Class Badges Chips */
.class-badges-wrap {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   margin-bottom: 14px;
}

.class-badge-chip {
   background: #ffffff;
   border: 1px solid #e2e8f0;
   color: #1e293b;
   font-size: 12.5px;
   font-weight: 700;
   padding: 6px 14px;
   border-radius: 10px;
   transition: all 0.2s ease;
}

.class-badge-chip:hover {
   background: #f8fafc;
   border-color: #cbd5e1;
   transform: translateY(-2px);
}

.class-badge-chip.highlight {
   background: #fee2e2;
   border-color: #fecdd3;
   color: #a72a33;
   font-weight: 800;
}

.boards-info-row {
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 13px;
   font-weight: 600;
   color: #475569;
   padding-top: 10px;
   border-top: 1px dashed #fed7aa;
}

.boards-info-row i {
   color: #16a34a;
   font-size: 14px;
}

/* Registration Header Strip */
.online-reg-strip {
   background: #ffffff;
   border: 1.5px solid #fee8de;
   border-radius: 20px;
   padding: 20px 24px;
   margin-bottom: 10px;
   box-shadow: 0 10px 30px rgba(167, 42, 51, 0.04);
}

.online-reg-title {
   font-family: 'Sora', sans-serif;
   font-size: 20px;
   font-weight: 800;
   color: #162654;
   margin-bottom: 6px;
   display: flex;
   align-items: center;
   gap: 8px;
}

.online-reg-title i {
   color: #a72a33;
   font-size: 19px;
}

.online-reg-desc {
   font-size: 13.5px;
   color: #64748b;
   line-height: 1.55;
   margin: 0;
}

.online-reg-desc a {
   color: #a72a33;
   font-weight: 700;
   text-decoration: underline;
}

/* ==========================================================================
   4-Step Interactive Registration Roadmap
   ========================================================================== */
.reg-steps-row {
   position: relative;
   z-index: 2;
}

.reg-step-card {
   background: #ffffff;
   border: 1.5px solid #fee8de;
   border-radius: 22px;
   padding: 28px 20px;
   height: 100%;
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   position: relative;
   transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   box-shadow: 0 10px 28px rgba(22, 38, 84, 0.04);
}

.reg-step-card:hover {
   transform: translateY(-8px);
   border-color: #fecdd3;
   box-shadow: 0 20px 45px rgba(167, 42, 51, 0.12);
}

.reg-step-badge {
   font-size: 10px;
   font-weight: 800;
   letter-spacing: 0.5px;
   text-transform: uppercase;
   padding: 3px 10px;
   background: #fee2e2;
   color: #a72a33;
   border-radius: 50px;
   margin-bottom: 12px;
}

.reg-step-icon {
   width: 58px;
   height: 58px;
   border-radius: 16px;
   background: #fff8f6;
   border: 1px solid #fee8de;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 8px;
   margin-bottom: 14px;
   transition: transform 0.3s ease;
}

.reg-step-card:hover .reg-step-icon {
   transform: scale(1.1);
}

.reg-step-icon img {
   width: 100%;
   height: 100%;
   object-fit: contain;
   display: block;
}

.reg-step-title {
   font-family: 'Sora', sans-serif;
   font-size: 15.5px;
   font-weight: 700;
   color: #162654;
   margin-bottom: 8px;
}

.reg-step-desc {
   font-size: 12.5px;
   color: #64748b;
   line-height: 1.5;
   margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
   .about-exam-section {
      padding: 60px 0 70px 0;
   }

   .about-exam-title {
      font-size: 30px;
   }

   .tour-visual-wrapper {
      margin-bottom: 30px;
   }
}

@media (max-width: 576px) {
   .about-exam-title {
      font-size: 24px;
   }

   .class-badges-wrap {
      gap: 6px;
   }

   .class-badge-chip {
      font-size: 11.5px;
      padding: 5px 10px;
   }

   .reg-step-card {
      padding: 20px 16px;
   }
}

/* ==========================================================================
   Creative Exam Detail & Mega Rewards Section
   ========================================================================== */
.exam-detail-section {
   padding: 105px 0 115px 0;
   background: radial-gradient(circle at 50% 0%, #fffbf8 0%, #fbfcfe 50%, #f8fafc 100%);
   position: relative;
   overflow: hidden;
}

/* Section Header */
.exam-detail-header {
   text-align: center;
   max-width: 780px;
   margin: 0 auto 50px auto;
}

.exam-detail-super-pill {
   display: inline-flex;
   align-items: center;
   gap: 7px;
   padding: 6px 20px;
   background: #fee2e2;
   color: #a72a33;
   border: 1px solid #fecdd3;
   border-radius: 50px;
   font-size: 11.5px;
   font-weight: 800;
   letter-spacing: 0.8px;
   text-transform: uppercase;
   margin-bottom: 14px;
}

.exam-detail-title {
   font-family: 'Sora', sans-serif;
   font-size: 38px;
   font-weight: 800;
   color: #162654;
   letter-spacing: -0.6px;
   margin-bottom: 12px;
}

.exam-detail-desc {
   font-size: 15px;
   color: #64748b;
   line-height: 1.6;
   margin: 0;
}

/* --- Left Column: Exam Phases & Dates Container --- */
.schedule-card-wrapper {
   background: #ffffff;
   border: 1.5px solid #f1f5f9;
   border-radius: 28px;
   padding: 34px 30px;
   box-shadow: 0 16px 45px rgba(22, 38, 84, 0.05);
   height: 100%;
   display: flex;
   flex-direction: column;
   transition: all 0.35s ease;
}

.schedule-card-wrapper:hover {
   box-shadow: 0 22px 55px rgba(22, 38, 84, 0.09);
   border-color: #fed7aa;
}

/* Phase Tabs / Badges Header */
.phases-badge-pill {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
   border: 1px solid #fed7aa;
   border-radius: 50px;
   padding: 8px 22px;
   font-family: 'Sora', sans-serif;
   font-size: 13.5px;
   font-weight: 800;
   color: #c2410c;
   margin-bottom: 24px;
   width: 100%;
}

.phase-separator {
   opacity: 0.4;
}

/* Phase Block 1 (Online) */
.phase-block {
   margin-bottom: 28px;
}

.phase-block-head {
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 8px;
   margin-bottom: 16px;
}

.phase-name {
   font-family: 'Sora', sans-serif;
   font-size: 16px;
   font-weight: 800;
   color: #162654;
   display: flex;
   align-items: center;
   gap: 8px;
}

.phase-name i {
   color: #a72a33;
}

.phase-time-pill {
   background: #f8fafc;
   border: 1px solid #e2e8f0;
   border-radius: 50px;
   padding: 4px 12px;
   font-size: 11.5px;
   font-weight: 700;
   color: #475569;
   display: inline-flex;
   align-items: center;
   gap: 5px;
}

/* Dates Grid for Phase 1 (Online) */
.dates-grid-online {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 12px;
}

.online-date-card {
   background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
   border: 1px solid #bfdbfe;
   border-radius: 16px;
   padding: 14px 18px;
   display: flex;
   align-items: center;
   gap: 14px;
   transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   box-shadow: 0 4px 12px rgba(37, 99, 235, 0.04);
}

.online-date-card:hover {
   transform: translateY(-3px);
   border-color: #93c5fd;
   box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}

.online-date-card .date-icon-img {
   width: 36px;
   height: 36px;
   object-fit: contain;
   flex-shrink: 0;
   margin: 0;
}

.online-date-text h6 {
   font-family: 'Sora', sans-serif;
   font-size: 15.5px;
   font-weight: 800;
   color: #1e3a8a;
   margin: 0 0 2px 0;
   line-height: 1.2;
}

.online-date-text span {
   font-size: 11px;
   color: #2563eb;
   font-weight: 700;
}

/* Online Slots Breakdown Strip */
.online-slots-strip {
   display: flex;
   flex-direction: column;
   gap: 8px;
   margin-top: 12px;
}

.slot-schedule-item {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   padding: 10px 16px;
   border-radius: 14px;
   transition: all 0.25s ease;
}

.slot-schedule-item:hover {
   transform: translateY(-2px);
   box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.slot-item-junior {
   background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
   border: 1px solid #bbf7d0;
}

.slot-item-senior {
   background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
   border: 1px solid #fed7aa;
}

.slot-class-title {
   display: flex;
   align-items: center;
   gap: 8px;
   font-family: 'Sora', sans-serif;
   font-size: 12.5px;
   font-weight: 800;
   color: #0f172a;
}

.slot-item-junior .slot-class-title i {
   color: #16a34a;
}

.slot-item-senior .slot-class-title i {
   color: #ea580c;
}

.slot-badges-group {
   display: flex;
   align-items: center;
   gap: 8px;
}

.slot-badge-chip {
   background: rgba(255, 255, 255, 0.95);
   border: 1px solid rgba(0, 0, 0, 0.06);
   padding: 4px 10px;
   border-radius: 8px;
   font-size: 11.5px;
   color: #334155;
   display: inline-flex;
   align-items: center;
   gap: 4px;
   box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.slot-badge-chip strong {
   color: #a72a33;
   font-family: 'Sora', sans-serif;
   font-weight: 800;
   font-size: 11px;
}

/* Phase Block 2 (Offline) */
.phase-block-offline {
   margin-top: auto;
   padding-top: 20px;
   border-top: 1.5px dashed #e2e8f0;
}

.dates-grid-offline {
   display: grid;
   grid-template-columns: 1fr 1.3fr;
   gap: 12px;
}

.qualifier-card {
   background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
   border: 1px solid #bbf7d0;
   border-radius: 16px;
   padding: 14px 16px;
   display: flex;
   align-items: center;
   gap: 12px;
}

.qualifier-icon-img {
   width: 36px;
   height: 36px;
   object-fit: contain;
   flex-shrink: 0;
}

.qualifier-text h6 {
   font-family: 'Sora', sans-serif;
   font-size: 13.5px;
   font-weight: 800;
   color: #166534;
   margin: 0 0 2px 0;
}

.qualifier-text p {
   font-size: 11px;
   color: #15803d;
   margin: 0;
}

.offline-date-card {
   background: linear-gradient(135deg, #fee2e2 0%, #fecdd3 100%);
   border: 1px solid #fda4af;
   border-radius: 16px;
   padding: 14px 16px;
   display: flex;
   align-items: center;
   gap: 12px;
}


.offline-date-card .date-icon-img {
   margin: 0;
   width: 36px;
   height: 36px;
   flex-shrink: 0;
}

.offline-date-text h6 {
   font-family: 'Sora', sans-serif;
   font-size: 14px;
   font-weight: 800;
   color: #991b1b;
   margin: 0 0 2px 0;
}

.offline-date-text span {
   font-size: 11px;
   color: #b91c1c;
   font-weight: 600;
}

/* Exam Center Location Bar */
.exam-center-strip {
   margin-top: 14px;
}

.exam-center-link-card {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   padding: 11px 16px;
   background: #f8fafc;
   border: 1.5px solid #e2e8f0;
   border-radius: 14px;
   text-decoration: none;
   transition: all 0.25s ease;
}

.exam-center-link-card:hover {
   background: #eff6ff;
   border-color: #93c5fd;
   box-shadow: 0 6px 18px rgba(37, 99, 235, 0.08);
   transform: translateY(-1px);
}

.exam-center-left {
   display: flex;
   align-items: center;
   gap: 12px;
   min-width: 0;
}

.exam-center-pin {
   color: #dc2626;
   font-size: 20px;
   flex-shrink: 0;
}

.exam-center-info {
   display: flex;
   flex-direction: column;
   gap: 2px;
   min-width: 0;
}

.exam-center-label {
   font-family: 'Sora', sans-serif;
   font-size: 11px;
   font-weight: 700;
   color: #1e3a8a;
   text-transform: uppercase;
   letter-spacing: 0.4px;
}

.exam-center-address {
   font-size: 12px;
   font-weight: 600;
   color: #1e293b;
   line-height: 1.35;
}

.exam-center-contact {
   font-size: 11px;
   color: #64748b;
}

.exam-center-dir-btn {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   background: #1e3a8a;
   color: #ffffff;
   font-family: 'Sora', sans-serif;
   font-size: 11.5px;
   font-weight: 700;
   padding: 7px 14px;
   border-radius: 8px;
   flex-shrink: 0;
   transition: background 0.2s ease;
}

.exam-center-link-card:hover .exam-center-dir-btn {
   background: #2563eb;
}

@media (max-width: 576px) {
   .exam-center-link-card {
      flex-direction: column;
      align-items: flex-start;
   }
   .exam-center-dir-btn {
      width: 100%;
      justify-content: center;
      margin-top: 4px;
   }
}

/* --- Right Column: The 4 Grand Reward Cards (2x2 Grid) --- */
.rewards-grid-row {
   height: 100%;
}

.reward-card {
   background: #ffffff;
   border-radius: 24px;
   padding: 30px 24px;
   text-align: center;
   height: 100%;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   position: relative;
   overflow: hidden;
   transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   box-shadow: 0 12px 35px rgba(22, 38, 84, 0.05);
}

.reward-card:hover {
   transform: translateY(-8px);
}

/* Card Variants with Curated Palettes */
.reward-card-scholarship {
   border: 1.5px solid #fee2e2;
   background: linear-gradient(160deg, #ffffff 0%, #fff8f8 100%);
}

.reward-card-scholarship:hover {
   box-shadow: 0 20px 45px rgba(167, 42, 51, 0.14);
   border-color: #fca5a5;
}

.reward-card-pool {
   border: 1.5px solid #dbeafe;
   background: linear-gradient(160deg, #ffffff 0%, #f6faff 100%);
}

.reward-card-pool:hover {
   box-shadow: 0 20px 45px rgba(37, 99, 235, 0.14);
   border-color: #93c5fd;
}

.reward-card-trip {
   border: 1.5px solid #ffedd5;
   background: linear-gradient(160deg, #ffffff 0%, #fff9f5 100%);
}

.reward-card-trip:hover {
   box-shadow: 0 20px 45px rgba(234, 88, 12, 0.14);
   border-color: #fdba74;
}

.reward-card-cash {
   border: 1.5px solid #dcfce7;
   background: linear-gradient(160deg, #ffffff 0%, #f6fef9 100%);
}

.reward-card-cash:hover {
   box-shadow: 0 20px 45px rgba(22, 163, 74, 0.14);
   border-color: #86efac;
}

/* Reward Icon Container */
.reward-icon-wrap {
   width: 76px;
   height: 76px;
   border-radius: 24px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 18px;
   padding: 12px;
   transition: transform 0.3s ease;
}

.reward-card:hover .reward-icon-wrap {
   transform: scale(1.12);
}

.reward-card-scholarship .reward-icon-wrap {
   background: #fff1f2;
   border: 1px solid #ffe4e6;
}

.reward-card-pool .reward-icon-wrap {
   background: #eff6ff;
   border: 1px solid #dbeafe;
}

.reward-card-trip .reward-icon-wrap {
   background: #fff7ed;
   border: 1px solid #ffedd5;
}

.reward-card-cash .reward-icon-wrap {
   background: #f0fdf4;
   border: 1px solid #dcfce7;
}

.reward-icon-wrap img {
   width: 100%;
   height: 100%;
   object-fit: contain;
   display: block;
}

/* Reward Content */
.reward-number {
   font-family: 'Sora', sans-serif;
   font-size: 28px;
   font-weight: 800;
   line-height: 1.2;
   margin-bottom: 6px;
}

.reward-card-scholarship .reward-number {
   color: #a72a33;
}

.reward-card-pool .reward-number {
   color: #1e40af;
}

.reward-card-trip .reward-number {
   color: #c2410c;
   font-size: 19px;
   line-height: 1.3;
}

.reward-card-cash .reward-number {
   color: #15803d;
}

.reward-label {
   font-family: 'Sora', sans-serif;
   font-size: 12px;
   font-weight: 800;
   letter-spacing: 0.8px;
   text-transform: uppercase;
   color: #475569;
   margin-bottom: 4px;
}

.reward-desc-mini {
   font-size: 12px;
   color: #64748b;
   margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
   .exam-detail-section {
      padding: 75px 0 85px 0;
   }

   .exam-detail-title {
      font-size: 30px;
   }

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

   .dates-grid-offline {
      grid-template-columns: 1fr;
   }

   .schedule-card-wrapper {
      margin-bottom: 24px;
   }
}

@media (max-width: 576px) {
   .exam-detail-title {
      font-size: 25px;
   }

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

   .phases-badge-pill {
      font-size: 12px;
      padding: 7px 14px;
   }

   .reward-card {
      padding: 24px 18px;
   }

   .reward-number {
      font-size: 24px;
   }

   .reward-card-trip .reward-number {
      font-size: 17px;
   }
}

/* ==========================================================================
   Curriculum Architecture (Syllabus & Pattern) Section
   ========================================================================== */
.curriculum-section {
   padding: 95px 0 115px 0;
   background: #fbfcfe;
   position: relative;
}

/* Header Area */
.curriculum-header-row {
   display: flex;
   justify-content: space-between;
   align-items: flex-end;
   flex-wrap: wrap;
   gap: 24px;
   margin-bottom: 45px;
}

.curriculum-header-left {
   max-width: 720px;
}

.curriculum-badge {
   display: inline-block;
   background: #e0e7ff;
   color: #3730a3;
   font-size: 11px;
   font-weight: 800;
   letter-spacing: 0.8px;
   text-transform: uppercase;
   padding: 5px 14px;
   border-radius: 50px;
   margin-bottom: 12px;
}

.curriculum-title {
   font-family: 'Sora', sans-serif;
   font-size: 44px;
   font-weight: 800;
   color: #0f172a;
   letter-spacing: -0.8px;
   line-height: 1.15;
   margin-bottom: 12px;
}

.curriculum-lead {
   font-size: 14.5px;
   color: #64748b;
   line-height: 1.6;
   margin: 0;
}

.btn-blueprint-download {
   background: #ffffff;
   border: 1.5px solid #1e3a8a;
   color: #1e3a8a;
   font-family: 'Sora', sans-serif;
   font-size: 13.5px;
   font-weight: 700;
   padding: 11px 22px;
   border-radius: 10px;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   transition: all 0.25s ease;
   box-shadow: 0 4px 12px rgba(30, 58, 138, 0.04);
}

.btn-blueprint-download:hover {
   background: #1e3a8a;
   color: #ffffff;
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(30, 58, 138, 0.16);
}

/* Base Card Style */
.curriculum-card {
   background: #ffffff;
   border: 1.5px solid #eef2f6;
   border-radius: 20px;
   padding: 26px 22px;
   height: 100%;
   display: flex;
   flex-direction: column;
   text-decoration: none;
   color: inherit;
   transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   box-shadow: 0 6px 20px rgba(15, 23, 42, 0.03);
   position: relative;
}

.curriculum-card:hover {
   transform: translateY(-5px);
   border-color: #cbd5e1;
   box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
   color: inherit;
}

/* Roman Numeral Badge */
.roman-badge {
   width: 44px;
   height: 44px;
   border-radius: 12px;
   background: #eef4ff;
   color: #1e3a8a;
   font-family: 'Sora', sans-serif;
   font-size: 15px;
   font-weight: 800;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 18px;
   transition: transform 0.25s ease;
}

.curriculum-card:hover .roman-badge {
   transform: scale(1.08);
}

/* Class X Badge */
.roman-badge.badge-red {
   background: #fce7e7;
   color: #dc2626;
}

/* Class XII Badge */
.roman-badge.badge-navy {
   background: #0f2b5c;
   color: #ffffff;
}

/* Card Typography */
.curriculum-class-title {
   font-family: 'Sora', sans-serif;
   font-size: 20px;
   font-weight: 800;
   color: #0f172a;
   margin-bottom: 6px;
}

.curriculum-sub-desc {
   font-size: 12px;
   color: #64748b;
   line-height: 1.5;
   margin-bottom: 18px;
   min-height: 36px;
}

/* Bullet Points List */
.curriculum-bullet-list {
   list-style: none;
   padding: 0;
   margin: 0 0 22px 0;
   display: flex;
   flex-direction: column;
   gap: 7px;
}

.curriculum-bullet-list li {
   font-size: 12.5px;
   color: #334155;
   display: flex;
   align-items: center;
   gap: 7px;
   line-height: 1.4;
}

.bullet-dot {
   width: 6px;
   height: 6px;
   border-radius: 50%;
   background: #10b981;
   flex-shrink: 0;
}

.bullet-dot.dot-red {
   background: #ef4444;
}

/* Bottom Action Link Row */
.curriculum-card-footer {
   margin-top: auto;
   padding-top: 14px;
   border-top: 1px solid #f1f5f9;
   display: flex;
   align-items: center;
   justify-content: space-between;
   font-family: 'Sora', sans-serif;
   font-size: 12.5px;
   font-weight: 700;
   color: #1e3a8a;
   transition: color 0.2s ease;
}

.curriculum-card-footer.footer-red {
   color: #dc2626;
}

.curriculum-card-footer i {
   font-size: 13px;
   transition: transform 0.25s ease;
}

.curriculum-card:hover .curriculum-card-footer i {
   transform: translateX(4px);
}

/* ==========================================================================
   Class XII Featured Double-Width Card (col-lg-6)
   ========================================================================== */
.card-featured-xii {
   border: 1.5px solid #bfdbfe;
   background: #ffffff;
}

.card-featured-xii:hover {
   border-color: #60a5fa;
   box-shadow: 0 20px 45px rgba(30, 58, 138, 0.12);
}

.featured-top-bar {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 6px;
   flex-wrap: wrap;
   width: 100%;
   margin-bottom: 18px;
}

.featured-top-bar .roman-badge {
   margin-bottom: 0;
}

.critical-scholarship-tag {
   background: #fef9c3;
   color: #854d0e;
   font-family: 'Sora', sans-serif;
   font-size: 10px;
   font-weight: 800;
   letter-spacing: 0.4px;
   text-transform: uppercase;
   padding: 4px 9px;
   border-radius: 50px;
   border: 1px solid #fef08a;
   white-space: nowrap;
}

.card-featured-xii .curriculum-card-footer span {
   font-size: 11.5px;
   line-height: 1.35;
}

/* 2-Column Bullets for XII */
.curriculum-bullet-grid-2col {
   list-style: none;
   padding: 0;
   margin: 0 0 22px 0;
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 8px 18px;
}

.curriculum-bullet-grid-2col li {
   font-size: 12.5px;
   color: #334155;
   display: flex;
   align-items: center;
   gap: 7px;
   line-height: 1.4;
}

/* Responsive */
@media (max-width: 991px) {
   .curriculum-title {
      font-size: 34px;
   }

   .curriculum-header-row {
      flex-direction: column;
      align-items: flex-start;
   }

   .curriculum-sub-desc {
      min-height: auto;
   }
}

@media (max-width: 576px) {
   .curriculum-title {
      font-size: 28px;
   }

   .curriculum-bullet-grid-2col {
      grid-template-columns: 1fr;
   }
}

/* ==========================================================================
   Side-by-Side Creative FAQ Layout (Matching Exact Mockup)
   ========================================================================== */
.faq-mockup-section {
   padding: 105px 0 120px 0;
   background: #ffffff;
   position: relative;
}

/* Left Sidebar Sticky */
.faq-sidebar-sticky {
   position: sticky;
   top: 110px;
   padding-right: 25px;
}

.faq-brand-title {
   font-family: 'Sora', sans-serif;
   font-size: 46px;
   font-weight: 800;
   color: #162654;
   line-height: 1.15;
   letter-spacing: -0.8px;
   margin-bottom: 18px;
}

.text-maroon {
   color: #a72a33;
}

.faq-sidebar-sub {
   font-size: 14.5px;
   color: #64748b;
   line-height: 1.65;
   margin-bottom: 40px;
}

/* Support Box */
.faq-support-box {
   background: #f8fafc;
   border: 1.5px solid #eef2f6;
   border-radius: 24px;
   padding: 28px 24px;
   box-shadow: 0 8px 24px rgba(22, 38, 84, 0.03);
}

.support-box-top {
   display: flex;
   align-items: center;
   gap: 16px;
   margin-bottom: 22px;
}

.support-avatar-pod {
   width: 52px;
   height: 52px;
   border-radius: 50%;
   background: #fee2e2;
   color: #a72a33;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 20px;
   flex-shrink: 0;
}

.support-text h5 {
   font-family: 'Sora', sans-serif;
   font-size: 16px;
   font-weight: 800;
   color: #162654;
   margin: 0 0 3px 0;
}

.support-text p {
   font-size: 12.5px;
   color: #64748b;
   margin: 0;
}

.btn-support-call {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   width: 100%;
   background: #162654;
   color: #ffffff;
   border-radius: 12px;
   padding: 13px 20px;
   font-family: 'Sora', sans-serif;
   font-size: 14px;
   font-weight: 700;
   text-decoration: none;
   transition: all 0.25s ease;
   margin-bottom: 14px;
}

.btn-support-call:hover {
   background: #a72a33;
   color: #ffffff;
   transform: translateY(-2px);
   box-shadow: 0 8px 20px rgba(167, 42, 51, 0.2);
}

.support-mail-note {
   font-size: 12px;
   color: #64748b;
   text-align: center;
}

.support-mail-note a {
   color: #162654;
   font-weight: 700;
   text-decoration: underline;
}

/* Right Column: Stack of Rounded Pill Accordions */
.faq-capsule-item {
   background: #ffffff;
   border: 1.5px solid #eef2f6;
   border-radius: 18px;
   margin-bottom: 14px;
   overflow: hidden;
   transition: all 0.25s ease;
   box-shadow: 0 4px 14px rgba(15, 23, 42, 0.02);
}

.faq-capsule-item:hover {
   border-color: #cbd5e1;
   box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.faq-capsule-item[open] {
   border-color: #cbd5e1;
   box-shadow: 0 10px 25px rgba(22, 38, 84, 0.06);
}

.faq-capsule-item summary {
   list-style: none;
   cursor: pointer;
   padding: 20px 24px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   font-family: 'Sora', sans-serif;
   font-size: 15.5px;
   font-weight: 700;
   color: #162654;
   transition: color 0.2s ease;
   user-select: none;
}

.faq-capsule-item summary::-webkit-details-marker {
   display: none;
}

.faq-capsule-item summary:hover {
   color: #a72a33;
}

.faq-capsule-item[open] summary {
   color: #162654;
}

.faq-capsule-q {
   flex-grow: 1;
}

.faq-capsule-icon {
   width: 28px;
   height: 28px;
   border-radius: 50%;
   background: #f8fafc;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 12px;
   color: #94a3b8;
   flex-shrink: 0;
   transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}

.faq-capsule-item:hover .faq-capsule-icon {
   color: #162654;
   background: #f1f5f9;
}

.faq-capsule-item[open] .faq-capsule-icon {
   transform: rotate(180deg);
   background: #eef2f6;
   color: #162654;
}

.faq-capsule-ans {
   padding: 0 24px 22px 24px;
   font-size: 14.5px;
   line-height: 1.7;
   color: #475569;
}

.faq-capsule-ans ul {
   margin: 8px 0 0 0;
   padding-left: 20px;
}

.faq-capsule-ans li {
   margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 991px) {
   .faq-sidebar-sticky {
      position: static;
      margin-bottom: 45px;
      padding-right: 0;
   }

   .faq-brand-title {
      font-size: 36px;
   }
}

@media (max-width: 576px) {
   .faq-brand-title {
      font-size: 30px;
   }

   .faq-capsule-item summary {
      padding: 16px 18px;
      font-size: 14px;
   }

   .faq-capsule-ans {
      padding: 0 18px 18px 18px;
      font-size: 13.5px;
   }
}

/* ==========================================================================
   Ultra-Creative Testimonial & Hall of Fame Section (Bento + Carousel + Spotlight)
   ========================================================================== */
.testimonial-showcase-section {
   padding: 110px 0 130px 0;
   background: radial-gradient(circle at 50% 0%, #fffcf8 0%, #fbfcfe 40%, #f8fafc 100%);
   position: relative;
   overflow: hidden;
}

.testimonial-showcase-section::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 1px;
   background: linear-gradient(90deg, transparent 0%, rgba(167, 42, 51, 0.25) 50%, transparent 100%);
}

.testimonial-header-v2 {
   text-align: center;
   max-width: 840px;
   margin: 0 auto 50px auto;
}

.testimonial-super-pill {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 7px 24px;
   background: linear-gradient(135deg, #fee2e2 0%, #ffedd5 100%);
   color: #a72a33;
   border: 1px solid #fed7aa;
   border-radius: 50px;
   font-size: 11.5px;
   font-weight: 800;
   letter-spacing: 0.8px;
   text-transform: uppercase;
   margin-bottom: 16px;
   box-shadow: 0 4px 14px rgba(167, 42, 51, 0.08);
}

.testimonial-title-v2 {
   font-family: 'Sora', sans-serif;
   font-size: 46px;
   font-weight: 800;
   color: #162654;
   letter-spacing: -0.8px;
   line-height: 1.18;
   margin-bottom: 14px;
}

.testimonial-desc-v2 {
   font-size: 15.5px;
   color: #64748b;
   line-height: 1.65;
   margin: 0 auto;
}

/* ==========================================================================
   PART 1: Champions Spotlight Bento Grid
   ========================================================================== */
.champions-spotlight-bento {
   margin-bottom: 75px;
}

/* Grand Hero Card (Ojal Rao) */
.hero-spotlight-card {
   background: linear-gradient(145deg, #0e1a38 0%, #162654 60%, #1e3575 100%);
   border-radius: 30px;
   padding: 40px;
   color: #ffffff;
   position: relative;
   overflow: hidden;
   box-shadow: 0 25px 65px rgba(22, 38, 84, 0.22);
   border: 1px solid rgba(255, 255, 255, 0.12);
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}

.hero-spotlight-card::after {
   content: '';
   position: absolute;
   top: -120px;
   right: -120px;
   width: 350px;
   height: 350px;
   border-radius: 50%;
   background: radial-gradient(circle, rgba(220, 38, 38, 0.25) 0%, transparent 70%);
   pointer-events: none;
}

.hero-crest-badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(10px);
   border: 1px solid rgba(255, 255, 255, 0.2);
   padding: 6px 16px;
   border-radius: 50px;
   font-size: 11px;
   font-weight: 800;
   color: #fef08a;
   letter-spacing: 0.6px;
   text-transform: uppercase;
   margin-bottom: 25px;
}

.hero-profile-flex {
   display: flex;
   align-items: center;
   gap: 22px;
   margin-bottom: 25px;
}

.hero-avatar-pod {
   position: relative;
   width: 105px;
   height: 105px;
   border-radius: 50%;
   flex-shrink: 0;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero-avatar-pod img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 50%;
   border: 3px solid #f59e0b;
}

.hero-mini-badge {
   position: absolute;
   bottom: -4px;
   right: -4px;
   width: 32px;
   height: 32px;
   border-radius: 50%;
   background: #a72a33;
   color: #ffffff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 13px;
   border: 2px solid #ffffff;
}

.hero-student-meta h3 {
   font-family: 'Sora', sans-serif;
   font-size: 26px;
   font-weight: 800;
   color: #ffffff;
   margin: 0 0 5px 0;
}

.hero-college-pill {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   background: rgba(245, 158, 11, 0.15);
   border: 1px solid rgba(245, 158, 11, 0.35);
   color: #fbbf24;
   padding: 3px 12px;
   border-radius: 50px;
   font-size: 12px;
   font-weight: 800;
   margin-bottom: 8px;
}

.hero-student-meta p {
   font-size: 13px;
   color: #cbd5e1;
   margin: 0;
}

/* Score Callout Ribbon */
.hero-score-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 14px;
   background: rgba(255, 255, 255, 0.05);
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: 18px;
   padding: 16px 20px;
   margin-bottom: 25px;
}

.score-box-item {
   display: flex;
   flex-direction: column;
}

.score-num-big {
   font-family: 'Sora', sans-serif;
   font-size: 28px;
   font-weight: 800;
   color: #fef08a;
   line-height: 1;
   margin-bottom: 4px;
}

.score-num-big span {
   font-size: 14px;
   color: #94a3b8;
   font-weight: 600;
}

.score-label-sub {
   font-size: 11px;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   color: #cbd5e1;
   font-weight: 700;
}

/* Quote Area */
.hero-quote-block {
   position: relative;
   margin-bottom: 24px;
}

.quote-decor-mark {
   font-family: 'Sora', sans-serif;
   font-size: 55px;
   line-height: 1;
   color: rgba(255, 255, 255, 0.15);
   position: absolute;
   top: -16px;
   left: -6px;
   pointer-events: none;
}

.hero-quote-block p {
   font-size: 14.5px;
   line-height: 1.7;
   color: #e2e8f0;
   margin: 0;
   position: relative;
   z-index: 1;
}

.hero-footer-strip {
   display: flex;
   align-items: center;
   justify-content: space-between;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top: 18px;
   font-size: 12px;
   color: #cbd5e1;
}

.hero-stars {
   color: #fbbf24;
   font-size: 13px;
   letter-spacing: 2px;
}

/* Right Stack Cards (Prashant & Shreyanshi) */
.prodigy-card {
   background: #ffffff;
   border: 1.5px solid #eef2f6;
   border-radius: 24px;
   padding: 26px;
   box-shadow: 0 12px 35px rgba(22, 38, 84, 0.06);
   transition: all 0.3s ease;
   position: relative;
   overflow: hidden;
}

.prodigy-card:first-child {
   margin-bottom: 24px;
}

.prodigy-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 20px 45px rgba(22, 38, 84, 0.12);
   border-color: #cbd5e1;
}

.prodigy-top-flex {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 16px;
}

.prodigy-badge-pill {
   font-family: 'Sora', sans-serif;
   font-size: 11px;
   font-weight: 800;
   text-transform: uppercase;
   letter-spacing: 0.6px;
   padding: 4px 12px;
   border-radius: 50px;
}

.badge-navy {
   background: #e0e7ff;
   color: #1e3a8a;
}

.badge-crimson {
   background: #fee2e2;
   color: #991b1b;
}

.prodigy-destination {
   font-size: 11.5px;
   font-weight: 800;
   color: #162654;
   display: flex;
   align-items: center;
   gap: 5px;
}

.prodigy-body-flex {
   display: flex;
   align-items: flex-start;
   gap: 16px;
   margin-bottom: 14px;
}

.prodigy-avatar {
   width: 68px;
   height: 68px;
   border-radius: 18px;
   object-fit: cover;
   border: 2px solid #e2e8f0;
   flex-shrink: 0;
}

.prodigy-info h4 {
   font-family: 'Sora', sans-serif;
   font-size: 17px;
   font-weight: 800;
   color: #162654;
   margin: 0 0 3px 0;
}

.prodigy-score-tag {
   display: inline-block;
   font-size: 12.5px;
   font-weight: 800;
   color: #a72a33;
   margin-bottom: 6px;
}

.prodigy-quote-snip {
   font-size: 13px;
   line-height: 1.6;
   color: #475569;
   margin: 0;
}

.prodigy-footer {
   display: flex;
   align-items: center;
   justify-content: space-between;
   border-top: 1px solid #f1f5f9;
   padding-top: 12px;
   font-size: 11.5px;
   color: #64748b;
}

/* ==========================================================================
   PART 2: Filterable Champions Wall / Carousel
   ========================================================================== */
.wall-header-wrap {
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 20px;
   margin-bottom: 28px;
}

.wall-header-left h3 {
   font-family: 'Sora', sans-serif;
   font-size: 24px;
   font-weight: 800;
   color: #162654;
   margin: 0 0 4px 0;
}

.wall-header-left p {
   font-size: 13.5px;
   color: #64748b;
   margin: 0;
}

/* Filter Tabs */
.champion-filter-tabs {
   display: flex;
   align-items: center;
   gap: 8px;
   flex-wrap: wrap;
}

.filter-tab-btn {
   background: #ffffff;
   border: 1.5px solid #e2e8f0;
   color: #475569;
   font-family: 'Sora', sans-serif;
   font-size: 12px;
   font-weight: 700;
   padding: 7px 18px;
   border-radius: 50px;
   cursor: pointer;
   transition: all 0.25s ease;
}

.filter-tab-btn:hover {
   border-color: #cbd5e1;
   color: #162654;
}

.filter-tab-btn.active {
   background: #162654;
   border-color: #162654;
   color: #ffffff;
   box-shadow: 0 4px 14px rgba(22, 38, 84, 0.15);
}

/* Carousel / Showcase Container */
.testimonial-carousel-wrapper {
   position: relative;
   overflow: hidden;
   padding: 10px 4px 30px 4px;
}

.testimonial-slider-track {
   display: flex;
   gap: 24px;
   transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Individual Champion Poster Card */
.champion-poster-card {
   flex: 0 0 calc(33.333% - 16px);
   background: #ffffff;
   border-radius: 26px;
   border: 1.5px solid #eef2f6;
   box-shadow: 0 14px 38px rgba(22, 38, 84, 0.06);
   overflow: hidden;
   position: relative;
   transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   display: flex;
   flex-direction: column;
}

.champion-poster-card:hover {
   transform: translateY(-9px);
   box-shadow: 0 24px 55px rgba(22, 38, 84, 0.12);
   border-color: #fca5a5;
}

.champion-card-top-tag {
   padding: 14px 20px;
   background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
   border-bottom: 1px solid #e2e8f0;
   display: flex;
   align-items: center;
   justify-content: space-between;
}

.tag-exam-label {
   font-family: 'Sora', sans-serif;
   font-size: 11px;
   font-weight: 800;
   letter-spacing: 0.6px;
   text-transform: uppercase;
   color: #a72a33;
   display: flex;
   align-items: center;
   gap: 6px;
}

.tag-score-badge {
   background: #fee2e2;
   color: #991b1b;
   font-size: 10.5px;
   font-weight: 800;
   padding: 3px 10px;
   border-radius: 50px;
}

.tag-score-badge.badge-blue {
   background: #dbeafe;
   color: #1e40af;
}

.tag-score-badge.badge-gold {
   background: #fef3c7;
   color: #92400e;
}

.champion-card-img-wrap {
   position: relative;
   overflow: hidden;
   background: #ffffff;
   line-height: 0;
   cursor: pointer;
}

.champion-card-img-wrap img {
   width: 100%;
   height: auto;
   display: block;
   transition: transform 0.4s ease;
}

.champion-poster-card:hover .champion-card-img-wrap img {
   transform: scale(1.02);
}

.champion-card-footer {
   padding: 14px 20px;
   background: #ffffff;
   border-top: 1px solid #f1f5f9;
   display: flex;
   align-items: center;
   justify-content: space-between;
   font-size: 11.5px;
   color: #64748b;
}

.verified-student-tag {
   color: #16a34a;
   font-weight: 700;
   display: flex;
   align-items: center;
   gap: 5px;
}

.tecno-alumni-tag {
   font-weight: 700;
   color: #162654;
}

/* Slider Controls */
.testimonial-controls-bar {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 20px;
   margin-top: 30px;
}

.slider-arrow-btn {
   width: 48px;
   height: 48px;
   border-radius: 50%;
   background: #ffffff;
   border: 1.5px solid #e2e8f0;
   color: #162654;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 16px;
   cursor: pointer;
   transition: all 0.25s ease;
   box-shadow: 0 4px 14px rgba(22, 38, 84, 0.05);
}

.slider-arrow-btn:hover {
   background: #a72a33;
   color: #ffffff;
   border-color: #a72a33;
   transform: scale(1.08);
   box-shadow: 0 8px 20px rgba(167, 42, 51, 0.2);
}

.slider-dots-container {
   display: flex;
   align-items: center;
   gap: 8px;
}

.slider-dot {
   width: 10px;
   height: 10px;
   border-radius: 50%;
   background: #cbd5e1;
   cursor: pointer;
   transition: all 0.3s ease;
}

.slider-dot.active {
   width: 32px;
   border-radius: 20px;
   background: #a72a33;
}

/* ==========================================================================
   PART 3: Live Verification Ticker Bar
   ========================================================================== */
.testimonial-metrics-ticker {
   margin-top: 65px;
   background: #ffffff;
   border: 1.5px solid #e2e8f0;
   border-radius: 26px;
   padding: 28px 40px;
   box-shadow: 0 16px 45px rgba(22, 38, 84, 0.05);
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 24px;
}

.metric-ticker-col {
   display: flex;
   align-items: center;
   gap: 16px;
}

.metric-ticker-icon {
   width: 52px;
   height: 52px;
   border-radius: 16px;
   background: #fee2e2;
   color: #a72a33;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 22px;
   flex-shrink: 0;
}

.metric-ticker-icon.icon-blue {
   background: #dbeafe;
   color: #1e40af;
}

.metric-ticker-icon.icon-gold {
   background: #fef3c7;
   color: #d97706;
}

.metric-ticker-icon.icon-green {
   background: #dcfce7;
   color: #15803d;
}

.metric-ticker-data h4 {
   font-family: 'Sora', sans-serif;
   font-size: 22px;
   font-weight: 800;
   color: #162654;
   margin: 0 0 2px 0;
}

.metric-ticker-data p {
   font-size: 12.5px;
   color: #64748b;
   margin: 0;
   font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
   .testimonial-title-v2 {
      font-size: 36px;
   }

   .hero-spotlight-card {
      margin-bottom: 30px;
      padding: 30px 24px;
   }

   .champion-poster-card {
      flex: 0 0 calc(50% - 12px);
   }

   .testimonial-metrics-ticker {
      grid-template-columns: repeat(2, 1fr);
      padding: 24px 20px;
   }
}

@media (max-width: 576px) {
   .testimonial-title-v2 {
      font-size: 28px;
   }

   .hero-profile-flex {
      flex-direction: column;
      text-align: center;
   }

   .hero-score-grid {
      grid-template-columns: 1fr;
   }

   .champion-poster-card {
      flex: 0 0 100%;
   }

   .testimonial-metrics-ticker {
      grid-template-columns: 1fr;
   }
}

/* ==========================================================================
   Ultra-Creative Premium Footer (Rich Glassmorphism + Pattern + Specular Highlights)
   ========================================================================== */
.footer-creative-v2 {
   background-color: #070d18;
   background-image:
      radial-gradient(rgba(255, 255, 255, 0.09) 1.5px, transparent 1.5px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
      linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
   background-size: 28px 28px, 56px 56px, 56px 56px;
   position: relative;
   color: #94a3b8;
   padding-top: 85px;
   padding-bottom: 35px;
   overflow: hidden;
}

.footer-creative-v2::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 2px;
   background: linear-gradient(90deg, transparent 0%, #a72a33 30%, #3b82f6 70%, transparent 100%);
   box-shadow: 0 0 18px rgba(167, 42, 51, 0.7);
   z-index: 3;
}

/* Ambient Colorful Orbs for Real Glassmorphic Refraction */
.glass-ambient-orb {
   position: absolute;
   border-radius: 50%;
   pointer-events: none;
   z-index: 1;
   filter: blur(85px);
   opacity: 0.65;
}

.glass-orb-crimson {
   width: 420px;
   height: 420px;
   background: radial-gradient(circle, #a72a33 0%, rgba(167, 42, 51, 0) 70%);
   top: 40px;
   right: 5%;
}

.glass-orb-sapphire {
   width: 480px;
   height: 480px;
   background: radial-gradient(circle, #2563eb 0%, rgba(37, 99, 235, 0) 70%);
   bottom: 80px;
   left: 3%;
}

.glass-orb-gold {
   width: 340px;
   height: 340px;
   background: radial-gradient(circle, #f59e0b 0%, rgba(245, 158, 11, 0) 70%);
   top: 35%;
   left: 40%;
}

.footer-creative-v2>.container {
   position: relative;
   z-index: 2;
}

/* 1. Floating Glassmorphic Quick-Contact Dock */
.footer-glass-dock {
   background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
   border: 1px solid rgba(255, 255, 255, 0.16);
   backdrop-filter: blur(25px) saturate(180%);
   -webkit-backdrop-filter: blur(25px) saturate(180%);
   border-radius: 24px;
   padding: 10px 14px;
   margin-bottom: 60px;
   box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4),
      inset 0 1px 1px rgba(255, 255, 255, 0.35);
   position: relative;
   overflow: hidden;
}

.footer-glass-dock::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 1px;
   background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.dock-item {
   display: flex;
   align-items: center;
   gap: 16px;
   padding: 18px 24px;
   border-right: 1px solid rgba(255, 255, 255, 0.08);
   transition: all 0.25s ease;
}

.dock-item:hover {
   background: rgba(255, 255, 255, 0.04);
   border-radius: 16px;
}

.dock-icon-wrap {
   width: 46px;
   height: 46px;
   border-radius: 14px;
   background: rgba(167, 42, 51, 0.25);
   color: #f87171;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 19px;
   flex-shrink: 0;
   border: 1px solid rgba(167, 42, 51, 0.4);
   box-shadow: 0 4px 14px rgba(167, 42, 51, 0.3);
}

.dock-icon-wrap.icon-blue {
   background: rgba(37, 99, 235, 0.25);
   color: #60a5fa;
   border-color: rgba(37, 99, 235, 0.4);
   box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.dock-icon-wrap.icon-amber {
   background: rgba(217, 119, 6, 0.25);
   color: #fbbf24;
   border-color: rgba(217, 119, 6, 0.4);
   box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
}

.dock-icon-wrap.icon-green {
   background: rgba(16, 185, 129, 0.25);
   color: #34d399;
   border-color: rgba(16, 185, 129, 0.4);
   box-shadow: 0 4px 14px rgba(16, 185, 129, 0.3);
}

.dock-text {
   display: flex;
   flex-direction: column;
}

.dock-label {
   font-family: 'Sora', sans-serif;
   font-size: 11px;
   font-weight: 800;
   text-transform: uppercase;
   letter-spacing: 0.6px;
   color: #94a3b8;
   margin-bottom: 2px;
   display: flex;
   align-items: center;
   gap: 6px;
}

.dock-pulse-dot {
   width: 6px;
   height: 6px;
   border-radius: 50%;
   background: #22c55e;
   display: inline-block;
   box-shadow: 0 0 8px #22c55e;
}

.dock-value {
   font-size: 14.5px;
   font-weight: 700;
   color: #ffffff;
   text-decoration: none;
   transition: color 0.2s ease;
   line-height: 1.3;
}

.dock-value:hover {
   color: #f87171;
}

.dock-sub {
   font-size: 11.5px;
   color: #64748b;
   margin-top: 2px;
}

/* 2. Main Navigation Row & Brand */
.footer-main-nav-row {
   margin-bottom: 45px;
}

.footer-brand-showcase {
   padding-right: 25px;
}

.footer-brand-logos {
   display: flex;
   align-items: center;
   gap: 16px;
   margin-bottom: 18px;
}

.footer-logo-badge {
   background: #ffffff;
   border-radius: 12px;
   padding: 6px 14px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.footer-logo-badge img {
   height: 44px;
   width: auto;
   object-fit: contain;
}

.footer-tecno-img {
   height: 38px;
   width: auto;
   object-fit: contain;
}

.footer-brand-desc {
   font-size: 13.5px;
   line-height: 1.7;
   color: #94a3b8;
   margin-bottom: 20px;
}

.footer-trust-chips {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   margin-bottom: 22px;
}

.footer-chip {
   background: rgba(255, 255, 255, 0.07);
   border: 1px solid rgba(255, 255, 255, 0.15);
   padding: 5px 14px;
   border-radius: 50px;
   font-size: 11.5px;
   font-weight: 700;
   color: #cbd5e1;
   display: inline-flex;
   align-items: center;
   gap: 6px;
   backdrop-filter: blur(10px);
   box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

/* Social Buttons */
.footer-social-strip {
   display: flex;
   align-items: center;
   gap: 10px;
}

.footer-social-btn {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.07);
   border: 1px solid rgba(255, 255, 255, 0.16);
   display: flex;
   align-items: center;
   justify-content: center;
   color: #cbd5e1;
   font-size: 15px;
   text-decoration: none;
   transition: all 0.25s ease;
   backdrop-filter: blur(10px);
   box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.footer-social-btn:hover {
   background: #a72a33;
   color: #ffffff;
   border-color: #a72a33;
   transform: translateY(-3px);
   box-shadow: 0 8px 20px rgba(167, 42, 51, 0.55);
}

/* 3. Navigation Columns (Clean & Open) */
.footer-col-title {
   font-family: 'Sora', sans-serif;
   font-size: 16px;
   font-weight: 800;
   color: #ffffff;
   letter-spacing: 0.5px;
   margin-bottom: 20px;
   position: relative;
   display: inline-block;
}

.footer-col-title::after {
   content: '';
   position: absolute;
   left: 0;
   bottom: -6px;
   width: 24px;
   height: 2.5px;
   background: #a72a33;
   border-radius: 2px;
}

.footer-links-list {
   list-style: none;
   padding: 0;
   margin: 0;
}

.footer-links-list li {
   margin-bottom: 11px;
}

.footer-links-list li a {
   color: #cbd5e1;
   font-size: 13.5px;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   transition: all 0.22s ease;
}

.footer-links-list li a:hover {
   color: #ffffff;
   transform: translateX(5px);
}

.footer-links-list li a i {
   font-size: 9px;
   color: #a72a33;
   transition: transform 0.2s ease;
}

.footer-links-list li a:hover i {
   transform: translateX(2px);
}

/* 4. Bottom Glass Copyright Bar */
.footer-bottom-bar-v2 {
   padding: 22px 28px;
   background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.015) 100%);
   border: 1px solid rgba(255, 255, 255, 0.12);
   border-radius: 18px;
   backdrop-filter: blur(20px);
   -webkit-backdrop-filter: blur(20px);
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 15px;
   font-size: 13.5px;
   color: #ffffff;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
      inset 0 1px 1px rgba(255, 255, 255, 0.18);
}

.footer-copy-text {
   color: #ffffff !important;
   font-weight: 500;
   line-height: 1.6;
}

.crafted-by-link {
   text-decoration: none !important;
   background: linear-gradient(135deg, #38bdf8 0%, #818cf8 45%, #f472b6 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   display: inline-block;
   font-weight: 700;
   letter-spacing: 0.3px;
   transition: all 0.3s ease;
}

.crafted-by-link:hover {
   text-decoration: none !important;
   filter: brightness(1.25) drop-shadow(0 2px 10px rgba(129, 140, 248, 0.45));
   transform: translateY(-1px);
}

.footer-bottom-links {
   display: flex;
   align-items: center;
   gap: 12px;
}

.footer-policy-pill {
   background: rgba(255, 255, 255, 0.09);
   border: 1px solid rgba(255, 255, 255, 0.22);
   padding: 6px 16px;
   border-radius: 50px;
   color: #ffffff !important;
   text-decoration: none;
   font-size: 12.5px;
   font-weight: 600;
   transition: all 0.2s ease;
   backdrop-filter: blur(8px);
}

.footer-policy-pill:hover {
   background: rgba(255, 255, 255, 0.22);
   color: #ffffff !important;
   border-color: rgba(255, 255, 255, 0.5);
   box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
   transform: translateY(-1px);
}

/* Floating WhatsApp Button */
.float-whatsapp-btn {
   position: fixed;
   width: 56px;
   height: 56px;
   bottom: 30px;
   right: 30px;
   background-color: #25d366;
   color: #FFF;
   border-radius: 50%;
   text-align: center;
   font-size: 28px;
   box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
   z-index: 1000;
   display: flex;
   justify-content: center;
   align-items: center;
   text-decoration: none;
   transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-whatsapp-btn:hover {
   color: #ffffff;
   transform: scale(1.12);
   box-shadow: 0 14px 35px rgba(37, 211, 102, 0.65);
}

/* Scroll To Top Button */
.scroll-top-btn {
   position: fixed;
   width: 46px;
   height: 46px;
   bottom: 96px;
   right: 35px;
   background: rgba(22, 38, 84, 0.85);
   color: #ffffff;
   border-radius: 14px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 16px;
   border: 1px solid rgba(255, 255, 255, 0.2);
   backdrop-filter: blur(10px);
   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
   cursor: pointer;
   opacity: 0;
   pointer-events: none;
   transition: all 0.3s ease;
   z-index: 999;
}

.scroll-top-btn.visible {
   opacity: 1;
   pointer-events: auto;
}

.scroll-top-btn:hover {
   background: #a72a33;
   color: #ffffff;
   transform: translateY(-3px);
   box-shadow: 0 10px 25px rgba(167, 42, 51, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
   .dock-item {
      border-right: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
   }

   .dock-item:last-child {
      border-bottom: none;
   }

   .footer-brand-showcase {
      padding-right: 0;
      margin-bottom: 30px;
   }
}

@media (max-width: 767px) {
   .footer-bottom-bar-v2 {
      flex-direction: column;
      align-items: flex-start;
      padding: 18px 20px;
   }

   .float-whatsapp-btn {
      bottom: 20px;
      right: 20px;
      width: 50px;
      height: 50px;
      font-size: 24px;
   }

   .scroll-top-btn {
      bottom: 80px;
      right: 22px;
   }
}

.footer-glass-dock {
   margin-bottom: 40px;
}

/* ==========================================================================
   Creative About Us Page Styling (about.php)
   ========================================================================== */

/* 1. Modern About Hero Section */
.about-hero-section {
   position: relative;
   background: linear-gradient(135deg, #162654 0%, #1a1e36 45%, #7a1f26 100%);
   padding: 85px 0 100px 0;
   color: #ffffff;
   overflow: hidden;
   border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Glowing Ambient Blobs */
.about-hero-section::before {
   content: '';
   position: absolute;
   top: -120px;
   right: -80px;
   width: 450px;
   height: 450px;
   background: radial-gradient(circle, rgba(167, 42, 51, 0.35) 0%, rgba(22, 38, 84, 0) 70%);
   border-radius: 50%;
   pointer-events: none;
}

.about-hero-section::after {
   content: '';
   position: absolute;
   bottom: -100px;
   left: -60px;
   width: 400px;
   height: 400px;
   background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
   border-radius: 50%;
   pointer-events: none;
}

.about-hero-content {
   position: relative;
   z-index: 3;
}

.about-hero-badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 7px 20px;
   background: rgba(255, 255, 255, 0.12);
   backdrop-filter: blur(12px);
   border: 1px solid rgba(255, 255, 255, 0.22);
   border-radius: 50px;
   font-size: 12.5px;
   font-weight: 700;
   letter-spacing: 0.6px;
   color: #facc15;
   text-transform: uppercase;
   margin-bottom: 20px;
   box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.about-hero-title {
   font-family: 'Sora', sans-serif;
   font-size: 52px;
   font-weight: 800;
   letter-spacing: -1.2px;
   line-height: 1.15;
   color: #ffffff;
   margin-bottom: 16px;
}

.about-hero-title .text-gradient,
.about-hero-title .highlight-gradient-red {
   background: linear-gradient(135deg, #ffffff 0%, #fca5a5 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   font-weight: 800;
}

.about-breadcrumb-nav {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   background: rgba(15, 23, 42, 0.4);
   backdrop-filter: blur(8px);
   padding: 6px 18px;
   border-radius: 50px;
   border: 1px solid rgba(255, 255, 255, 0.12);
   font-size: 13.5px;
   font-weight: 500;
   color: #cbd5e1;
}

.about-breadcrumb-nav a {
   color: #93c5fd;
   text-decoration: none;
   transition: color 0.2s ease;
}

.about-breadcrumb-nav a:hover {
   color: #ffffff;
}

.about-breadcrumb-nav .slash {
   color: #e11d48;
   font-weight: 700;
}

/* Quick Stat Strip overlay inside About Hero */
.about-hero-stats-strip {
   margin-top: 48px;
   position: relative;
   z-index: 4;
}

.about-stat-box {
   background: rgba(255, 255, 255, 0.07);
   backdrop-filter: blur(16px);
   border: 1px solid rgba(255, 255, 255, 0.15);
   border-radius: 20px;
   padding: 22px 24px;
   text-align: center;
   transition: all 0.3s ease;
   height: 100%;
}

.about-stat-box:hover {
   transform: translateY(-4px);
   background: rgba(255, 255, 255, 0.12);
   border-color: rgba(255, 255, 255, 0.3);
   box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.about-stat-num {
   font-family: 'Sora', sans-serif;
   font-size: 32px;
   font-weight: 800;
   color: #facc15;
   line-height: 1.1;
   margin-bottom: 6px;
}

.about-stat-label {
   font-size: 12px;
   font-weight: 700;
   color: #e2e8f0;
   text-transform: uppercase;
   letter-spacing: 0.6px;
   margin: 0;
}

/* 2. Director's Message & Legacy Section (Ultra-Creative Redesign) */
.about-legacy-section {
   padding: 110px 0;
   background: linear-gradient(180deg, #ffffff 0%, #fdfbfb 50%, #ffffff 100%);
   position: relative;
   overflow: hidden;
}

/* Background Subtle Dot Pattern Overlay */
.about-legacy-section::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
   background-size: 24px 24px;
   opacity: 0.35;
   pointer-events: none;
}

/* 3D Multi-Layered Stage */
.director-creative-stage {
   position: relative;
   padding: 20px;
   max-width: 440px;
   margin: 0 auto;
}

.stage-glow-aura {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 380px;
   height: 480px;
   background: radial-gradient(circle, rgba(167, 42, 51, 0.14) 0%, rgba(22, 38, 84, 0.08) 60%, transparent 80%);
   border-radius: 50%;
   filter: blur(20px);
   pointer-events: none;
   z-index: 1;
}

/* Main Director Frame */
.director-main-frame {
   position: relative;
   z-index: 3;
   border-radius: 28px;
   overflow: hidden;
   border: 4px solid #ffffff;
   box-shadow: 0 25px 60px -15px rgba(22, 38, 84, 0.28), 0 0 0 1px rgba(0, 0, 0, 0.06);
   background: #ffffff;
   transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.director-main-frame:hover {
   transform: translateY(-6px) scale(1.01);
   box-shadow: 0 35px 75px -15px rgba(167, 42, 51, 0.32);
}

.director-main-frame img {
   width: 100%;
   height: 480px;
   object-fit: cover;
   object-position: top center;
   display: block;
}

/* Floating Trust Pill Top Left */
.floating-trust-pill {
   position: absolute;
   top: -10px;
   left: -10px;
   z-index: 5;
   background: #ffffff;
   border: 1px solid #e2e8f0;
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
   border-radius: 50px;
   padding: 8px 18px;
   display: flex;
   align-items: center;
   gap: 8px;
   font-size: 12.5px;
   font-weight: 700;
   color: #1e293b;
   animation: floatBadge 4s ease-in-out infinite;
}

/* Floating Emblem Top Right */
.floating-emblem-badge {
   position: absolute;
   top: 30px;
   right: -25px;
   z-index: 5;
   width: 90px;
   height: 90px;
   border-radius: 50%;
   background: #ffffff;
   border: 3px solid #ffffff;
   box-shadow: 0 12px 30px rgba(167, 42, 51, 0.25);
   padding: 6px;
   display: flex;
   align-items: center;
   justify-content: center;
   animation: floatBadge 4.5s ease-in-out infinite 0.5s;
}

.floating-emblem-badge img {
   width: 100%;
   height: auto;
}

@keyframes floatBadge {

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

   50% {
      transform: translateY(-8px);
   }
}

/* Floating Glassmorphism Card Bottom */
.director-glass-card {
   position: absolute;
   bottom: -15px;
   left: 10px;
   right: 10px;
   z-index: 6;
   background: rgba(22, 38, 84, 0.92);
   backdrop-filter: blur(14px);
   border: 1px solid rgba(255, 255, 255, 0.22);
   border-radius: 20px;
   padding: 16px 20px;
   color: #ffffff;
   display: flex;
   align-items: center;
   gap: 14px;
   box-shadow: 0 16px 40px rgba(15, 23, 42, 0.35);
}

.glass-icon-circle {
   width: 44px;
   height: 44px;
   border-radius: 12px;
   background: linear-gradient(135deg, #a72a33 0%, #e11d48 100%);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 18px;
   color: #ffffff;
   box-shadow: 0 6px 16px rgba(225, 29, 72, 0.4);
   flex-shrink: 0;
}

.glass-card-info h6 {
   font-family: 'Sora', sans-serif;
   font-size: 15px;
   font-weight: 700;
   color: #ffffff;
   margin-bottom: 2px;
}

.glass-card-info p {
   font-size: 12px;
   color: #cbd5e1;
   margin: 0;
}

/* Right Content Styling */
.about-legacy-content {
   position: relative;
   z-index: 3;
}

.creative-message-badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 6px 18px;
   background: #fff1f2;
   border: 1px solid #fecdd3;
   border-radius: 50px;
   color: #be123c;
   font-size: 12px;
   font-weight: 800;
   letter-spacing: 0.6px;
   text-transform: uppercase;
}

.badge-ping-dot {
   width: 8px;
   height: 8px;
   border-radius: 50%;
   background-color: #e11d48;
   box-shadow: 0 0 0 2px rgba(225, 29, 72, 0.3);
   animation: pingDot 1.5s infinite;
}

.legacy-main-title {
   font-family: 'Sora', sans-serif;
   font-size: 42px;
   font-weight: 800;
   color: #162654;
   line-height: 1.2;
   margin: 14px 0 18px 0;
   letter-spacing: -0.8px;
}

.highlight-gradient-red {
   background: linear-gradient(135deg, #a72a33 0%, #e11d48 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

.legacy-intro-lead {
   font-size: 16.5px;
   line-height: 1.7;
   color: #334155;
   margin-bottom: 24px;
}

/* 3 Pillar Cards Grid */
.director-pillar-card {
   background: #ffffff;
   border: 1.5px solid #edf2f7;
   border-radius: 16px;
   padding: 16px 14px;
   height: 100%;
   transition: all 0.25s ease;
   box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
}

.director-pillar-card:hover {
   transform: translateY(-3px);
   border-color: #fecdd3;
   box-shadow: 0 8px 20px rgba(167, 42, 51, 0.08);
}

.pillar-icon-box {
   width: 38px;
   height: 38px;
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 16px;
   margin-bottom: 10px;
}

.pillar-icon-box.bg-red {
   background: #fff1f2;
   color: #be123c;
}

.pillar-icon-box.bg-blue {
   background: #eff6ff;
   color: #1d4ed8;
}

.pillar-icon-box.bg-gold {
   background: #fefce8;
   color: #ca8a04;
}

.director-pillar-card h6 {
   font-family: 'Sora', sans-serif;
   font-size: 13.5px;
   font-weight: 700;
   color: #162654;
   margin-bottom: 4px;
}

.director-pillar-card p {
   font-size: 11.5px;
   color: #64748b;
   line-height: 1.4;
   margin: 0;
}

/* Dynamic Quote Box */
.creative-quote-box {
   position: relative;
   background: linear-gradient(135deg, rgba(167, 42, 51, 0.04) 0%, rgba(22, 38, 84, 0.05) 100%);
   border-left: 4px solid var(--theme-red);
   border-radius: 0 16px 16px 0;
   padding: 22px 24px 22px 54px;
   margin: 24px 0;
}

.creative-quote-box .quote-symbol {
   position: absolute;
   top: 18px;
   left: 18px;
   font-size: 24px;
   color: var(--theme-red);
   opacity: 0.6;
}

.creative-quote-box p {
   font-size: 15px;
   line-height: 1.65;
   color: #1e293b;
   font-style: italic;
   font-weight: 500;
   margin: 0;
}

/* Expandable Letter Button */
.legacy-details-wrap {
   border: 1px solid #e2e8f0;
   border-radius: 16px;
   overflow: hidden;
   background: #ffffff;
   box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
   transition: all 0.3s ease;
}

.legacy-details-wrap summary {
   list-style: none;
   padding: 16px 22px;
   font-size: 14.5px;
   font-weight: 700;
   color: var(--theme-red);
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: space-between;
   background: #fff8f8;
   transition: background 0.2s ease;
}

.legacy-details-wrap summary:hover {
   background: #fff0f0;
}

.legacy-details-wrap summary::-webkit-details-marker {
   display: none;
}

.legacy-details-wrap[open] summary {
   border-bottom: 1px solid #fee2e2;
   background: #fff0f0;
}

.legacy-details-body {
   padding: 24px;
   font-size: 14.5px;
   line-height: 1.7;
   color: #475569;
}

/* Director Signature Bar */
.director-signature-bar {
   background: linear-gradient(135deg, #162654 0%, #1a1e36 100%);
   border-radius: 20px;
   padding: 18px 24px;
   margin-top: 28px;
   color: #ffffff;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
   flex-wrap: wrap;
   box-shadow: 0 10px 30px rgba(22, 38, 84, 0.2);
}

.signature-left {
   display: flex;
   align-items: center;
   gap: 14px;
}

.signature-avatar-ring {
   position: relative;
   width: 52px;
   height: 52px;
   border-radius: 50%;
   border: 2px solid #facc15;
   padding: 2px;
   flex-shrink: 0;
}

.signature-avatar-ring img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 50%;
   display: block;
}

.signature-avatar-ring .active-dot {
   position: absolute;
   bottom: 2px;
   right: 2px;
   width: 10px;
   height: 10px;
   border-radius: 50%;
   background: #22c55e;
   border: 2px solid #162654;
}

.signature-text h5 {
   font-family: 'Sora', sans-serif;
   font-size: 16px;
   font-weight: 700;
   color: #ffffff;
   margin-bottom: 2px;
}

.signature-text span {
   font-size: 12px;
   color: #cbd5e1;
}

.signature-tagline {
   background: rgba(255, 255, 255, 0.1);
   border: 1px solid rgba(255, 255, 255, 0.15);
   border-radius: 50px;
   padding: 6px 16px;
   font-size: 12.5px;
   font-weight: 600;
   color: #fef08a;
}



.signature-info h6 {
   font-family: 'Sora', sans-serif;
   font-size: 16px;
   font-weight: 700;
   color: #162654;
   margin: 0;
}

.signature-info p {
   font-size: 13px;
   color: #64748b;
   margin: 0;
}

/* 3. Innovations & Pedagogy Section (Spacious & Filled Cards Grid) */
.about-innovations-section {
   padding: 90px 0 100px 0;
   background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
   border-top: 1px solid #e2e8f0;
   border-bottom: 1px solid #e2e8f0;
   position: relative;
}

.innovations-header {
   text-align: center;
   max-width: 780px;
   margin: 0 auto 50px auto;
}

.bento-super-badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 6px 18px;
   background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
   border: 1px solid #bfdbfe;
   color: #1e40af;
   border-radius: 50px;
   font-size: 11.5px;
   font-weight: 800;
   letter-spacing: 0.5px;
   text-transform: uppercase;
   margin-bottom: 14px;
   box-shadow: 0 4px 14px rgba(30, 64, 175, 0.08);
}

.innovations-header h2 {
   font-family: 'Sora', sans-serif;
   font-size: 38px;
   font-weight: 800;
   color: #162654;
   margin-bottom: 10px;
   letter-spacing: -0.6px;
}

.innovations-header p {
   font-size: 15.5px;
   color: #64748b;
   line-height: 1.6;
   margin: 0;
}

/* Spacious, Taller & Filled Bento Card */
.bento-card-master {
   background: #ffffff;
   border: 1.5px solid #edf2f7;
   border-radius: 24px;
   padding: 34px 28px;
   min-height: 330px;
   height: 100%;
   position: relative;
   overflow: hidden;
   transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   box-shadow: 0 8px 24px rgba(22, 38, 84, 0.04);
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}

.bento-card-master:hover {
   transform: translateY(-5px);
   box-shadow: 0 16px 38px rgba(22, 38, 84, 0.1);
}

.bento-card-master.theme-red:hover {
   border-color: #fecdd3;
}

.bento-card-master.theme-green:hover {
   border-color: #a7f3d0;
}

.bento-card-master.theme-gold:hover {
   border-color: #fef08a;
}

.bento-card-master.theme-purple:hover {
   border-color: #ddd6fe;
}

.bento-badge-pill {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 4px 14px;
   border-radius: 50px;
   font-size: 11px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   margin-bottom: 14px;
   width: fit-content;
}

.bento-badge-pill.pill-red {
   background: #fff1f2;
   color: #be123c;
   border: 1px solid #fecdd3;
}

.bento-badge-pill.pill-green {
   background: #ecfdf5;
   color: #047857;
   border: 1px solid #a7f3d0;
}

.bento-badge-pill.pill-gold {
   background: #fefce8;
   color: #a16207;
   border: 1px solid #fef08a;
}

.bento-badge-pill.pill-purple {
   background: #f5f3ff;
   color: #6d28d9;
   border: 1px solid #ddd6fe;
}

.bento-icon-box {
   width: 50px;
   height: 50px;
   border-radius: 14px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 22px;
   margin-bottom: 16px;
}

.bento-icon-box.icon-red {
   background: linear-gradient(135deg, #fff1f2 0%, #fee2e2 100%);
   color: var(--theme-red);
   border: 1px solid #fecdd3;
}

.bento-icon-box.icon-green {
   background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
   color: #059669;
   border: 1px solid #a7f3d0;
}

.bento-icon-box.icon-gold {
   background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
   color: #ca8a04;
   border: 1px solid #fef08a;
}

.bento-icon-box.icon-purple {
   background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
   color: #7c3aed;
   border: 1px solid #ddd6fe;
}

.bento-card-title {
   font-family: 'Sora', sans-serif;
   font-size: 19px;
   font-weight: 800;
   color: #162654;
   margin-bottom: 12px;
   letter-spacing: -0.3px;
}

.bento-card-desc {
   font-size: 14.5px;
   line-height: 1.65;
   color: #64748b;
   margin-bottom: 20px;
}

.bento-tag-row {
   display: flex;
   align-items: center;
   gap: 8px;
   flex-wrap: wrap;
   margin-top: auto;
   padding-top: 18px;
   border-top: 1px solid #f1f5f9;
}

.bento-tag-item {
   display: inline-flex;
   align-items: center;
   gap: 5px;
   font-size: 11.5px;
   font-weight: 700;
   color: #334155;
   background: #f8fafc;
   padding: 4px 12px;
   border-radius: 50px;
   border: 1px solid #e2e8f0;
}

/* Matching Taller Visual Stage Showcase Right */
.bento-visual-stage {
   position: relative;
   border-radius: 24px;
   overflow: hidden;
   height: 400px;
   min-height: 100%;
   box-shadow: 0 16px 40px rgba(22, 38, 84, 0.16);
   border: 3px solid #ffffff;
   background: #162654;
}

.bento-visual-stage img.stage-main-bg {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center top;
   display: block;
   transition: transform 0.4s ease;
}

.bento-visual-stage:hover img.stage-main-bg {
   transform: scale(1.04);
}

.stage-gradient-overlay {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: linear-gradient(180deg, rgba(22, 38, 84, 0.05) 0%, rgba(22, 38, 84, 0.8) 100%);
   pointer-events: none;
}

.bento-emblem-badge {
   position: absolute;
   top: 14px;
   right: 14px;
   z-index: 5;
   width: 60px;
   height: 60px;
   border-radius: 50%;
   background: #ffffff;
   padding: 4px;
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
   border: 2px solid #ffffff;
}

.bento-emblem-badge img {
   width: 100%;
   height: auto;
}

.bento-glass-info-banner {
   position: absolute;
   bottom: 16px;
   left: 16px;
   right: 16px;
   z-index: 5;
   background: rgba(15, 23, 42, 0.45);
   -webkit-backdrop-filter: blur(16px) saturate(180%);
   backdrop-filter: blur(16px) saturate(180%);
   border: 1px solid rgba(255, 255, 255, 0.3);
   border-radius: 16px;
   padding: 14px 18px;
   color: #ffffff;
   display: flex;
   align-items: center;
   gap: 14px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.bento-glass-info-banner .info-avatar {
   width: 42px;
   height: 42px;
   border-radius: 50%;
   object-fit: cover;
   border: 2px solid #facc15;
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
   flex-shrink: 0;
}

.bento-glass-info-banner h6 {
   font-family: 'Sora', sans-serif;
   font-size: 14px;
   font-weight: 700;
   color: #ffffff;
   margin-bottom: 2px;
   text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.bento-glass-info-banner p {
   font-size: 11.5px;
   font-weight: 500;
   color: #fef08a;
   margin: 0;
   text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.collage-img-card:hover img {
   transform: scale(1.06);
}

.collage-img-card.large-main {
   grid-column: span 2;
   height: 280px;
}

.collage-img-card.small-sub {
   height: 180px;
}

/* 4. Our Inspiration & Leadership Section */
.about-inspiration-section {
   padding: 100px 0;
   background: #ffffff;
}

.inspiration-card-master {
   background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
   border: 1.5px solid #e2e8f0;
   border-radius: 26px;
   padding: 36px 30px;
   box-shadow: 0 12px 35px rgba(22, 38, 84, 0.05);
   text-align: left;
   height: 100%;
}

.inspiration-header-title {
   font-family: 'Sora', sans-serif;
   font-size: 24px;
   font-weight: 800;
   color: #162654;
   margin-bottom: 20px;
   position: relative;
   display: block;
   text-align: left;
}

.inspiration-header-title::after {
   content: '';
   display: block;
   width: 50px;
   height: 3.5px;
   background: var(--theme-red);
   margin: 8px 0 0 0;
   border-radius: 2px;
}

.inspiration-img-wrap {
   border-radius: 20px;
   overflow: hidden;
   margin: 0 auto 20px auto;
   max-width: 320px;
   box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
   border: 4px solid #ffffff;
}

.inspiration-img-wrap img {
   width: 100%;
   height: auto;
   display: block;
   transition: transform 0.3s ease;
}

.inspiration-img-wrap:hover img {
   transform: scale(1.05);
}

/* Career Foundation Grid Cards */
.career-card-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 16px;
   margin-top: 20px;
}

.career-item-card {
   border-radius: 16px;
   overflow: hidden;
   box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
   border: 2px solid #ffffff;
   transition: all 0.3s ease;
}

.career-item-card:hover {
   transform: translateY(-4px) scale(1.02);
   box-shadow: 0 12px 28px rgba(167, 42, 51, 0.15);
}

.career-item-card img {
   width: 100%;
   height: auto;
   display: block;
}

/* 5. Topper Testimonials Section */
.about-testimonials-section {
   padding: 100px 0;
   background: linear-gradient(180deg, #162654 0%, #0f172a 100%);
   color: #ffffff;
   position: relative;
}

.testimonials-header {
   text-align: center;
   max-width: 740px;
   margin: 0 auto 60px auto;
}

.testimonials-header .testimonial-badge {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 6px 20px;
   background: rgba(255, 255, 255, 0.1);
   border: 1px solid rgba(255, 255, 255, 0.2);
   color: #facc15;
   border-radius: 50px;
   font-size: 12px;
   font-weight: 700;
   letter-spacing: 0.6px;
   text-transform: uppercase;
   margin-bottom: 16px;
}

.testimonials-header h2 {
   font-family: 'Sora', sans-serif;
   font-size: 40px;
   font-weight: 800;
   color: #ffffff;
   margin-bottom: 14px;
}

.testimonials-header p {
   font-size: 15.5px;
   color: #94a3b8;
   line-height: 1.6;
}

.about-testimonial-card {
   background: rgba(255, 255, 255, 0.05);
   backdrop-filter: blur(12px);
   border: 1px solid rgba(255, 255, 255, 0.12);
   border-radius: 22px;
   padding: 28px 24px;
   height: 100%;
   display: flex;
   flex-direction: column;
   transition: all 0.3s ease;
}

.about-testimonial-card:hover {
   transform: translateY(-6px);
   background: rgba(255, 255, 255, 0.08);
   border-color: rgba(255, 255, 255, 0.25);
   box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.topper-stars {
   color: #f59e0b;
   font-size: 13px;
   display: flex;
   gap: 4px;
   margin-bottom: 16px;
}

.topper-quote {
   font-size: 14.5px;
   color: #e2e8f0;
   line-height: 1.65;
   font-style: italic;
   margin-bottom: 24px;
   flex-grow: 1;
}

.topper-profile-row {
   display: flex;
   align-items: center;
   gap: 14px;
   padding-top: 16px;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.topper-avatar {
   width: 50px;
   height: 50px;
   border-radius: 50%;
   object-fit: cover;
   border: 2px solid var(--theme-red);
}

.topper-details h5 {
   font-family: 'Sora', sans-serif;
   font-size: 15.5px;
   font-weight: 700;
   color: #ffffff;
   margin-bottom: 2px;
}

.topper-details .score-badge {
   display: inline-block;
   padding: 2px 10px;
   background: rgba(239, 68, 68, 0.2);
   border: 1px solid rgba(239, 68, 68, 0.4);
   color: #fca5a5;
   border-radius: 50px;
   font-size: 11.5px;
   font-weight: 700;
}

/* 6. High-Converting Bottom CTA Strip */
.about-cta-section {
   padding: 70px 0;
   background: linear-gradient(135deg, #a72a33 0%, #872629 100%);
   color: #ffffff;
   position: relative;
   overflow: hidden;
}

.about-cta-content {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 30px;
   flex-wrap: wrap;
}

.about-cta-text h3 {
   font-family: 'Sora', sans-serif;
   font-size: 32px;
   font-weight: 800;
   margin-bottom: 8px;
   color: #ffffff;
}

.about-cta-text p {
   font-size: 15.5px;
   color: #fecdd3;
   margin: 0;
}

.about-cta-buttons-stacked {
   display: flex;
   flex-direction: column;
   gap: 12px;
   width: 100%;
   max-width: 340px;
}

.btn-cta-white {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 13px 26px;
   background: #ffffff;
   color: var(--theme-red) !important;
   font-size: 14.5px;
   font-weight: 700;
   border-radius: 10px;
   text-decoration: none;
   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
   transition: all 0.25s ease;
   width: 100%;
}

.btn-cta-white:hover {
   background: #fff1f2;
   transform: translateY(-2px);
   box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.btn-cta-outline {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 13px 26px;
   background: transparent;
   color: #ffffff !important;
   border: 2px solid rgba(255, 255, 255, 0.6);
   font-size: 14.5px;
   font-weight: 700;
   border-radius: 10px;
   text-decoration: none;
   transition: all 0.25s ease;
   width: 100%;
}

.btn-cta-outline:hover {
   background: rgba(255, 255, 255, 0.15);
   border-color: #ffffff;
   transform: translateY(-2px);
}

/* ==========================================================================
   7. Dedicated Message Page (.message-page-section) Custom Styles
   ========================================================================== */
.message-page-section {
   padding: 90px 0;
   background: #ffffff;
   position: relative;
   overflow: hidden;
}

.message-oval-badge {
   display: inline-block;
   padding: 7px 22px;
   background: var(--theme-red);
   color: #ffffff;
   font-family: 'Sora', sans-serif;
   font-size: 12px;
   font-weight: 800;
   letter-spacing: 0.8px;
   text-transform: uppercase;
   border-radius: 50px;
   margin-bottom: 18px;
   box-shadow: 0 4px 14px rgba(167, 42, 51, 0.25);
}

.message-section-title {
   font-family: 'Sora', sans-serif;
   font-size: 42px;
   font-weight: 900;
   color: #111827;
   letter-spacing: -0.8px;
   margin-bottom: 24px;
   text-transform: uppercase;
}

.message-lead-text {
   font-size: 16.5px;
   font-weight: 600;
   color: #1e293b;
   line-height: 1.7;
   margin-bottom: 16px;
}

.message-body-text {
   font-size: 15px;
   color: #475569;
   line-height: 1.75;
   margin-bottom: 20px;
}

.message-highlight-card {
   background: linear-gradient(135deg, #fff1f2 0%, #fff7ed 100%);
   border-left: 4px solid var(--theme-red);
   border-radius: 0 18px 18px 0;
   padding: 22px 26px;
   margin: 24px 0;
   box-shadow: 0 6px 20px rgba(167, 42, 51, 0.05);
}

.message-highlight-card p {
   font-size: 15px;
   line-height: 1.7;
   color: #1e293b;
   font-weight: 500;
   margin: 0;
}

/* 3D Boss Stage Right Column */
.message-boss-stage {
   position: relative;
   display: flex;
   justify-content: center;
   align-items: flex-end;
   min-height: 540px;
}

.boss-bg-block {
   position: absolute;
   bottom: 0;
   right: 0;
   width: 78%;
   height: 92%;
   background: linear-gradient(180deg, #dbeafe 0%, #e0e7ff 100%);
   border-radius: 32px 32px 32px 32px;
   z-index: 1;
   box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.8), 0 20px 40px rgba(22, 38, 84, 0.08);
}

.boss-standing-img {
   position: relative;
   z-index: 2;
   max-width: 100%;
   height: auto;
   max-height: 560px;
   object-fit: contain;
   filter: drop-shadow(0 15px 30px rgba(22, 38, 84, 0.2));
}

/* ==========================================================================
   8. Dedicated Cash Prize Page (.prize-page-section) Custom Styles
   ========================================================================== */
.prize-page-section {
   padding: 80px 0 100px 0;
   background: #f8fafc;
   position: relative;
}

.prize-table-card {
   background: #ffffff;
   border-radius: 24px;
   border: 1.5px solid #e2e8f0;
   box-shadow: 0 16px 45px rgba(22, 38, 84, 0.08);
   overflow: hidden;
   padding: 0;
   margin-bottom: 50px;
}

.prize-matrix-table {
   width: 100%;
   margin-bottom: 0;
   border-collapse: collapse;
}

.prize-matrix-table thead tr {
   background: linear-gradient(135deg, #162654 0%, #1a2a5c 100%) !important;
}

.prize-matrix-table th {
   font-family: 'Sora', sans-serif;
   font-size: 14.5px;
   font-weight: 800;
   padding: 18px 16px;
   text-align: center;
   border: none !important;
   background: #162654 !important;
   color: #ffffff !important;
   vertical-align: middle;
   border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.prize-matrix-table th:last-child {
   border-right: none !important;
}

.prize-matrix-table th:first-child {
   text-align: center;
   background: #a72a33 !important;
   color: #ffffff !important;
   font-size: 15px;
   letter-spacing: 0.3px;
}

.prize-matrix-table tbody tr {
   transition: all 0.2s ease;
}

.prize-matrix-table tbody tr:nth-child(even) {
   background: #f8fafc;
}

.prize-matrix-table tbody tr:hover {
   background: #fff0f1 !important;
}

.prize-matrix-table td {
   padding: 16px 14px;
   text-align: center;
   font-size: 14.5px;
   font-weight: 600;
   color: #334155;
   vertical-align: middle;
   border-bottom: 1px solid #f1f5f9;
   border-right: 1px solid #f1f5f9;
}

.prize-matrix-table td:last-child {
   border-right: none;
}

.prize-matrix-table td:first-child {
   font-family: 'Sora', sans-serif;
   font-weight: 800;
   color: #162654;
   background: rgba(22, 38, 84, 0.03);
   border-right: 2px solid #e2e8f0;
}

/* Highlighted Prize Cells */
.prize-matrix-table td.highlight-top {
   background: rgba(34, 197, 94, 0.06);
}

.prize-matrix-table td.highlight-red {
   background: rgba(167, 42, 51, 0.04);
}

/* 3 Prize Highlight Top Feature Cards */
.prize-top-card {
   background: #ffffff;
   border: 1.5px solid #e2e8f0;
   border-radius: 20px;
   padding: 24px 20px;
   box-shadow: 0 10px 30px rgba(22, 38, 84, 0.05);
   text-align: center;
   transition: all 0.3s ease;
   position: relative;
   overflow: hidden;
   height: 100%;
}

.prize-top-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 16px 38px rgba(22, 38, 84, 0.12);
}

.prize-top-card.card-gold {
   border-color: #fef08a;
   background: linear-gradient(180deg, #ffffff 0%, #fefce8 100%);
}

.prize-top-card.card-red {
   border-color: #fecdd3;
   background: linear-gradient(180deg, #ffffff 0%, #fff1f2 100%);
}

.prize-top-card.card-blue {
   border-color: #bfdbfe;
   background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
}

.prize-top-badge {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 4px 14px;
   border-radius: 50px;
   font-size: 11px;
   font-weight: 800;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   margin-bottom: 12px;
}

.card-gold .prize-top-badge {
   background: #fef08a;
   color: #854d0e;
}

.card-red .prize-top-badge {
   background: #fee2e2;
   color: #991b1b;
}

.card-blue .prize-top-badge {
   background: #dbeafe;
   color: #1e40af;
}

.prize-top-amount {
   font-family: 'Sora', sans-serif;
   font-size: 32px;
   font-weight: 900;
   margin-bottom: 4px;
}

.card-gold .prize-top-amount {
   color: #15803d;
}

.card-red .prize-top-amount {
   color: var(--theme-red);
}

.card-blue .prize-top-amount {
   color: #1d4ed8;
}

.prize-top-sub {
   font-size: 13px;
   color: #64748b;
   font-weight: 600;
   margin: 0;
}

.rank-badge-gold {
   display: inline-flex;
   align-items: center;
   gap: 4px;
   padding: 5px 14px;
   background: linear-gradient(135deg, #fef08a 0%, #facc15 100%);
   color: #713f12;
   font-weight: 800;
   border-radius: 50px;
   font-size: 14px;
   box-shadow: 0 4px 12px rgba(250, 204, 21, 0.3);
}

.rank-badge-silver {
   display: inline-flex;
   align-items: center;
   gap: 4px;
   padding: 4px 12px;
   background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
   color: #334155;
   font-weight: 700;
   border-radius: 50px;
   font-size: 13.5px;
}

.rank-badge-bronze {
   display: inline-flex;
   align-items: center;
   gap: 4px;
   padding: 4px 12px;
   background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
   color: #9a3412;
   font-weight: 700;
   border-radius: 50px;
   font-size: 13.5px;
}

.prize-na-text {
   color: #94a3b8;
   font-weight: 500;
   font-size: 13px;
}

/* Payout Schedule Cards */
.installment-schedule-card {
   background: #ffffff;
   border-radius: 20px;
   border: 1.5px solid #e2e8f0;
   padding: 24px 28px;
   box-shadow: 0 10px 30px rgba(22, 38, 84, 0.04);
   display: flex;
   align-items: center;
   gap: 20px;
   transition: all 0.3s ease;
   height: 100%;
}

.installment-schedule-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 16px 36px rgba(22, 38, 84, 0.1);
   border-color: #bfdbfe;
}

.installment-icon-box {
   width: 56px;
   height: 56px;
   border-radius: 16px;
   background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
   color: var(--topbar-navy);
   font-size: 24px;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
}

.installment-schedule-card.stage-2 .installment-icon-box {
   background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
   color: #059669;
}

.installment-info h5 {
   font-family: 'Sora', sans-serif;
   font-size: 16.5px;
   font-weight: 800;
   color: #162654;
   margin-bottom: 4px;
}

.installment-info .date-pill {
   display: inline-block;
   padding: 3px 12px;
   background: #f1f5f9;
   color: var(--theme-red);
   font-weight: 700;
   border-radius: 50px;
   font-size: 12.5px;
   margin-bottom: 4px;
}

.installment-info p {
   font-size: 13.5px;
   color: #64748b;
   margin: 0;
}

/* Category Criteria Cards */
.criteria-master-card {
   background: #ffffff;
   border-radius: 22px;
   border: 1.5px solid #e2e8f0;
   padding: 30px 26px;
   box-shadow: 0 10px 30px rgba(22, 38, 84, 0.04);
   height: 100%;
   transition: all 0.3s ease;
}

.criteria-master-card:hover {
   transform: translateY(-4px);
   border-color: #cbd5e1;
   box-shadow: 0 16px 36px rgba(22, 38, 84, 0.08);
}

.criteria-header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   margin-bottom: 16px;
   padding-bottom: 16px;
   border-bottom: 1px solid #f1f5f9;
}

.criteria-header h4 {
   font-family: 'Sora', sans-serif;
   font-size: 18px;
   font-weight: 800;
   color: #162654;
   margin: 0;
}

.criteria-badge-pill {
   padding: 4px 14px;
   background: #eff6ff;
   color: #1d4ed8;
   border: 1px solid #bfdbfe;
   border-radius: 50px;
   font-size: 12px;
   font-weight: 700;
}

.criteria-list {
   list-style: none;
   padding: 0;
   margin: 0;
}

.criteria-list li {
   position: relative;
   padding-left: 26px;
   font-size: 14px;
   color: #475569;
   line-height: 1.6;
   margin-bottom: 12px;
}

.criteria-list li:last-child {
   margin-bottom: 0;
}

.criteria-list li::before {
   content: '\f00c';
   font-family: 'Font Awesome 6 Free';
   font-weight: 900;
   position: absolute;
   left: 0;
   top: 2px;
   color: #059669;
   font-size: 13px;
}

/* Modern Terms & Conditions 4-Card Bento Grid */
.terms-card-item {
   background: #ffffff;
   border-radius: 22px;
   border: 1.5px solid #edf2f7;
   padding: 28px 24px;
   box-shadow: 0 10px 30px rgba(22, 38, 84, 0.04);
   transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   position: relative;
   overflow: hidden;
}

.terms-card-item:hover {
   transform: translateY(-5px);
   box-shadow: 0 16px 38px rgba(22, 38, 84, 0.1);
}

.terms-card-item.card-border-red:hover {
   border-color: #fecdd3;
}

.terms-card-item.card-border-blue:hover {
   border-color: #bfdbfe;
}

.terms-card-item.card-border-amber:hover {
   border-color: #fde68a;
}

.terms-card-item.card-border-emerald:hover {
   border-color: #a7f3d0;
}

.terms-card-top {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 18px;
}

.terms-icon-circle {
   width: 50px;
   height: 50px;
   border-radius: 14px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 22px;
}

.terms-icon-circle.icon-red {
   background: linear-gradient(135deg, #fff1f2 0%, #fee2e2 100%);
   color: var(--theme-red);
}

.terms-icon-circle.icon-blue {
   background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
   color: #1d4ed8;
}

.terms-icon-circle.icon-amber {
   background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
   color: #ca8a04;
}

.terms-icon-circle.icon-emerald {
   background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
   color: #059669;
}

.terms-step-num {
   font-family: 'Sora', sans-serif;
   font-size: 28px;
   font-weight: 900;
   color: #e2e8f0;
   line-height: 1;
}

.terms-card-pill {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 4px 12px;
   border-radius: 50px;
   font-size: 11px;
   font-weight: 800;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   margin-bottom: 12px;
   width: fit-content;
}

.pill-red {
   background: #fff1f2;
   color: #be123c;
}

.pill-blue {
   background: #eff6ff;
   color: #1d4ed8;
}

.pill-amber {
   background: #fefce8;
   color: #a16207;
}

.pill-emerald {
   background: #ecfdf5;
   color: #047857;
}

.terms-card-title {
   font-family: 'Sora', sans-serif;
   font-size: 18px;
   font-weight: 800;
   color: #162654;
   margin-bottom: 10px;
}

.terms-card-desc {
   font-size: 14px;
   color: #64748b;
   line-height: 1.65;
   margin-bottom: 20px;
}

.terms-card-tag {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   font-size: 12px;
   font-weight: 700;
   color: #1e293b;
   background: #f8fafc;
   border: 1px solid #e2e8f0;
   padding: 5px 14px;
   border-radius: 50px;
   margin-top: auto;
   width: fit-content;
}

/* Notice Ribbon at Bottom */
.terms-notice-ribbon {
   background: linear-gradient(135deg, #162654 0%, #1e1b4b 100%);
   border-radius: 18px;
   padding: 18px 24px;
   color: #ffffff;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
   flex-wrap: wrap;
   margin-top: 28px;
   box-shadow: 0 10px 30px rgba(22, 38, 84, 0.15);
}

.terms-notice-left {
   display: flex;
   align-items: center;
   gap: 12px;
}

.terms-notice-left i {
   font-size: 22px;
   color: #facc15;
}

.terms-notice-left p {
   font-size: 14px;
   color: #e2e8f0;
   margin: 0;
}

.terms-notice-btn {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 8px 18px;
   background: rgba(255, 255, 255, 0.15);
   border: 1px solid rgba(255, 255, 255, 0.25);
   border-radius: 50px;
   color: #ffffff !important;
   font-size: 13px;
   font-weight: 700;
   text-decoration: none;
   transition: all 0.25s ease;
}

.terms-notice-btn:hover {
   background: #ffffff;
   color: var(--theme-red) !important;
}

/* ==========================================================================
   9. Dedicated Reward Page (.reward-page-section) Custom Styles
   ========================================================================== */
.reward-page-section {
   padding: 90px 0;
   background: #f8fafc;
   position: relative;
}

.reward-item-card {
   background: #ffffff;
   border: 1.5px solid #edf2f7;
   border-radius: 24px;
   padding: 36px 28px;
   box-shadow: 0 12px 35px rgba(22, 38, 84, 0.05);
   transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   position: relative;
   overflow: hidden;
}

.reward-item-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 20px 45px rgba(22, 38, 84, 0.12);
}

.reward-item-card.border-gold:hover {
   border-color: #facc15;
}

.reward-item-card.border-purple:hover {
   border-color: #c084fc;
}

.reward-item-card.border-cyan:hover {
   border-color: #38bdf8;
}

.reward-item-card.border-crimson:hover {
   border-color: #f87171;
}

.reward-icon-box {
   width: 68px;
   height: 68px;
   border-radius: 20px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 30px;
   margin-bottom: 22px;
   box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.reward-icon-box.icon-gold {
   background: linear-gradient(135deg, #fefce8 0%, #fef08a 100%);
   color: #ca8a04;
}

.reward-icon-box.icon-purple {
   background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
   color: #9333ea;
}

.reward-icon-box.icon-cyan {
   background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
   color: #0284c7;
}

.reward-icon-box.icon-crimson {
   background: linear-gradient(135deg, #fff1f2 0%, #fee2e2 100%);
   color: #e11d48;
}

.reward-pill-badge {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 4px 14px;
   border-radius: 50px;
   font-size: 11px;
   font-weight: 800;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   margin-bottom: 14px;
   width: fit-content;
}

.badge-gold {
   background: #fefce8;
   color: #854d0e;
   border: 1px solid #fef08a;
}

.badge-purple {
   background: #faf5ff;
   color: #6b21a8;
   border: 1px solid #e9d5ff;
}

.badge-cyan {
   background: #f0f9ff;
   color: #075985;
   border: 1px solid #bae6fd;
}

.badge-crimson {
   background: #fff1f2;
   color: #9f1239;
   border: 1px solid #fecdd3;
}

.reward-item-title {
   font-family: 'Sora', sans-serif;
   font-size: 22px;
   font-weight: 800;
   color: #162654;
   margin-bottom: 12px;
}

.reward-item-desc {
   font-size: 14.5px;
   color: #64748b;
   line-height: 1.65;
   margin-bottom: 22px;
}

.reward-bottom-badge {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   font-size: 12px;
   font-weight: 700;
   color: #334155;
   background: #f8fafc;
   border: 1px solid #e2e8f0;
   padding: 6px 14px;
   border-radius: 50px;
   width: fit-content;
}

/* Grand Ceremony Section */
.reward-ceremony-section {
   padding: 100px 0;
   background: #ffffff;
   position: relative;
}

.ceremony-content-wrap h2 {
   font-family: 'Sora', sans-serif;
   font-size: 38px;
   font-weight: 800;
   color: #162654;
   margin-bottom: 18px;
}

.ceremony-lead-text {
   font-size: 16px;
   color: #475569;
   line-height: 1.7;
   margin-bottom: 24px;
}

.ceremony-points-list {
   list-style: none;
   padding: 0;
   margin: 0 0 28px 0;
}

.ceremony-points-list li {
   position: relative;
   padding-left: 32px;
   font-size: 15px;
   color: #334155;
   font-weight: 600;
   line-height: 1.6;
   margin-bottom: 14px;
}

.ceremony-points-list li i {
   position: absolute;
   left: 0;
   top: 3px;
   color: var(--theme-red);
   font-size: 18px;
}

/* Policy Highlight Cards */
.reward-policy-card {
   background: #ffffff;
   border-radius: 20px;
   border: 1.5px solid #e2e8f0;
   padding: 26px 22px;
   box-shadow: 0 8px 24px rgba(22, 38, 84, 0.04);
   height: 100%;
   transition: all 0.3s ease;
}

.reward-policy-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 14px 32px rgba(22, 38, 84, 0.08);
   border-color: #cbd5e1;
}

.reward-policy-header {
   display: flex;
   align-items: center;
   gap: 14px;
   margin-bottom: 14px;
}

.reward-policy-header i {
   width: 44px;
   height: 44px;
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 20px;
}

.reward-policy-header h5 {
   font-family: 'Sora', sans-serif;
   font-size: 16px;
   font-weight: 800;
   color: #162654;
   margin: 0;
}

.reward-policy-card p {
   font-size: 13.5px;
   color: #64748b;
   line-height: 1.65;
   margin: 0;
}

/* ==========================================================================
   10. Dedicated Scholarship Page (.scholarship-page-section) Custom Styles
   ========================================================================== */
.scholarship-page-section {
   padding: 90px 0;
   background: #f8fafc;
   position: relative;
}

.scholarship-tier-card {
   background: #ffffff;
   border: 1.5px solid #edf2f7;
   border-radius: 24px;
   padding: 34px 26px;
   box-shadow: 0 12px 35px rgba(22, 38, 84, 0.05);
   transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   position: relative;
   overflow: hidden;
}

.scholarship-tier-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 20px 45px rgba(22, 38, 84, 0.12);
}

.scholarship-tier-card.tier-gold:hover {
   border-color: #facc15;
}

.scholarship-tier-card.tier-crimson:hover {
   border-color: #f87171;
}

.scholarship-tier-card.tier-blue:hover {
   border-color: #60a5fa;
}

.scholarship-tier-card.tier-emerald:hover {
   border-color: #34d399;
}

.scholarship-top-flex {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 18px;
}

.scholarship-icon-box {
   width: 58px;
   height: 58px;
   border-radius: 16px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 26px;
}

.scholarship-icon-box.icon-gold {
   background: linear-gradient(135deg, #fefce8 0%, #fef08a 100%);
   color: #ca8a04;
}

.scholarship-icon-box.icon-crimson {
   background: linear-gradient(135deg, #fff1f2 0%, #fee2e2 100%);
   color: #e11d48;
}

.scholarship-icon-box.icon-blue {
   background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
   color: #1d4ed8;
}

.scholarship-icon-box.icon-emerald {
   background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
   color: #059669;
}

.scholarship-percent-text {
   font-family: 'Sora', sans-serif;
   font-size: 32px;
   font-weight: 900;
   line-height: 1;
}

.tier-gold .scholarship-percent-text {
   color: #ca8a04;
}

.tier-crimson .scholarship-percent-text {
   color: var(--theme-red);
}

.tier-blue .scholarship-percent-text {
   color: #1d4ed8;
}

.tier-emerald .scholarship-percent-text {
   color: #059669;
}

.scholarship-tier-title {
   font-family: 'Sora', sans-serif;
   font-size: 20px;
   font-weight: 800;
   color: #162654;
   margin-bottom: 10px;
}

.scholarship-tier-desc {
   font-size: 14.5px;
   color: #64748b;
   line-height: 1.65;
   margin-bottom: 20px;
}

.scholarship-bottom-tag {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   font-size: 12px;
   font-weight: 700;
   color: #1e293b;
   background: #f8fafc;
   border: 1px solid #e2e8f0;
   padding: 5px 14px;
   border-radius: 50px;
   width: fit-content;
}

/* Scholarship Rules Cards */
.scholarship-rule-card {
   background: #ffffff;
   border-radius: 20px;
   border: 1.5px solid #e2e8f0;
   padding: 26px 22px;
   box-shadow: 0 8px 24px rgba(22, 38, 84, 0.04);
   height: 100%;
   transition: all 0.3s ease;
}

.scholarship-rule-card:hover {
   transform: translateY(-4px);
   box-shadow: 0 14px 32px rgba(22, 38, 84, 0.08);
   border-color: #cbd5e1;
}

.scholarship-rule-header {
   display: flex;
   align-items: center;
   gap: 14px;
   margin-bottom: 14px;
}

.scholarship-rule-header i {
   width: 44px;
   height: 44px;
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 20px;
}

.scholarship-rule-header h5 {
   font-family: 'Sora', sans-serif;
   font-size: 16px;
   font-weight: 800;
   color: #162654;
   margin: 0;
}

.scholarship-rule-card p {
   font-size: 13.5px;
   color: #64748b;
   line-height: 1.65;
   margin: 0;
}

/* Detailed Scholarship Conditions Listing Card */
.clc-banner-highlight {
   background: linear-gradient(135deg, #162654 0%, #1a1e36 100%);
   border-radius: 24px;
   padding: 30px 32px;
   color: #ffffff;
   display: flex;
   align-items: center;
   gap: 24px;
   box-shadow: 0 12px 35px rgba(22, 38, 84, 0.15);
   margin-bottom: 36px;
}

.clc-banner-logo {
   width: 90px;
   height: auto;
   background: #ffffff;
   border-radius: 16px;
   padding: 10px;
   flex-shrink: 0;
   box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.clc-banner-text h4 {
   font-family: 'Sora', sans-serif;
   font-size: 19px;
   font-weight: 800;
   color: #ffffff;
   margin-bottom: 6px;
}

.clc-banner-text p {
   font-size: 14.5px;
   color: #fecdd3;
   margin: 0;
   line-height: 1.6;
}

.scholarship-listing-card {
   background: #ffffff;
   border-radius: 24px;
   border: 1.5px solid #edf2f7;
   padding: 36px 32px;
   box-shadow: 0 12px 35px rgba(22, 38, 84, 0.05);
   margin-bottom: 30px;
}

.scholarship-listing-header {
   display: flex;
   align-items: center;
   gap: 14px;
   padding-bottom: 20px;
   margin-bottom: 24px;
   border-bottom: 2px solid #f1f5f9;
}

.scholarship-listing-header i {
   width: 46px;
   height: 46px;
   border-radius: 14px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 22px;
}

.scholarship-listing-header h3 {
   font-family: 'Sora', sans-serif;
   font-size: 22px;
   font-weight: 800;
   color: #162654;
   margin: 0;
}

.scholarship-listing-ul {
   list-style: none;
   padding: 0;
   margin: 0;
}

.scholarship-listing-item {
   display: flex;
   align-items: flex-start;
   gap: 16px;
   padding: 14px 16px;
   border-radius: 14px;
   transition: background 0.2s ease;
   border-bottom: 1px solid #f8fafc;
}

.scholarship-listing-item:last-child {
   border-bottom: none;
}

.scholarship-listing-item:hover {
   background: #fff8f8;
}

.scholarship-item-icon {
   width: 26px;
   height: 26px;
   border-radius: 50%;
   background: rgba(167, 42, 51, 0.1);
   color: var(--theme-red);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 12px;
   flex-shrink: 0;
   margin-top: 3px;
}

.scholarship-item-text {
   font-size: 15px;
   color: #334155;
   line-height: 1.7;
   margin: 0;
}

/* ==========================================================================
   11. Dedicated International Edu Trip Page (.trip-page-section) Custom Styles
   ========================================================================== */
.trip-page-section {
   padding: 90px 0;
   background: #f8fafc;
   position: relative;
}

.trip-dest-card {
   background: #ffffff;
   border: 1.5px solid #edf2f7;
   border-radius: 24px;
   padding: 34px 26px;
   box-shadow: 0 12px 35px rgba(22, 38, 84, 0.05);
   transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   position: relative;
   overflow: hidden;
}

.trip-dest-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 20px 45px rgba(22, 38, 84, 0.12);
}

.trip-dest-card.dest-dubai:hover {
   border-color: #facc15;
}

.trip-dest-card.dest-singapore:hover {
   border-color: #34d399;
}

.trip-dest-card.dest-hongkong:hover {
   border-color: #60a5fa;
}

.dest-icon-box {
   width: 64px;
   height: 64px;
   border-radius: 18px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 28px;
   margin-bottom: 20px;
}

.dest-dubai .dest-icon-box {
   background: linear-gradient(135deg, #fefce8 0%, #fef08a 100%);
   color: #ca8a04;
}

.dest-singapore .dest-icon-box {
   background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
   color: #059669;
}

.dest-hongkong .dest-icon-box {
   background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
   color: #1d4ed8;
}

.dest-pill-badge {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 4px 12px;
   border-radius: 50px;
   font-size: 11px;
   font-weight: 800;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   margin-bottom: 12px;
   width: fit-content;
}

.badge-dubai {
   background: #fefce8;
   color: #854d0e;
   border: 1px solid #fef08a;
}

.badge-singapore {
   background: #ecfdf5;
   color: #047857;
   border: 1px solid #a7f3d0;
}

.badge-hongkong {
   background: #eff6ff;
   color: #1e40af;
   border: 1px solid #bfdbfe;
}

.trip-dest-title {
   font-family: 'Sora', sans-serif;
   font-size: 22px;
   font-weight: 800;
   color: #162654;
   margin-bottom: 10px;
}

.trip-dest-desc {
   font-size: 14.5px;
   color: #64748b;
   line-height: 1.65;
   margin-bottom: 20px;
}

.trip-dest-highlights {
   list-style: none;
   padding: 0;
   margin: 0 0 20px 0;
}

.trip-dest-highlights li {
   font-size: 13.5px;
   color: #334155;
   font-weight: 600;
   margin-bottom: 8px;
   display: flex;
   align-items: center;
   gap: 8px;
}

.trip-dest-highlights li i {
   font-size: 12px;
}

.trip-dest-tag {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   font-size: 12px;
   font-weight: 700;
   color: #1e293b;
   background: #f8fafc;
   border: 1px solid #e2e8f0;
   padding: 6px 14px;
   border-radius: 50px;
   width: fit-content;
}

/* Coverage Comparison Boxes */
.trip-coverage-card {
   background: #ffffff;
   border-radius: 22px;
   border: 1.5px solid #edf2f7;
   padding: 30px 26px;
   box-shadow: 0 10px 30px rgba(22, 38, 84, 0.04);
   height: 100%;
}

.trip-coverage-card.coverage-clc {
   border-color: #a7f3d0;
   background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
}

.trip-coverage-card.coverage-personal {
   border-color: #fed7aa;
   background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
}

.coverage-header {
   display: flex;
   align-items: center;
   gap: 14px;
   margin-bottom: 20px;
   padding-bottom: 16px;
   border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.coverage-header i {
   width: 48px;
   height: 48px;
   border-radius: 14px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 22px;
}

.coverage-clc .coverage-header i {
   background: #dcfce7;
   color: #15803d;
}

.coverage-personal .coverage-header i {
   background: #ffedd5;
   color: #c2410c;
}

.coverage-header h4 {
   font-family: 'Sora', sans-serif;
   font-size: 19px;
   font-weight: 800;
   color: #162654;
   margin: 0;
}

.coverage-list {
   list-style: none;
   padding: 0;
   margin: 0;
}

.coverage-list li {
   font-size: 14.5px;
   color: #334155;
   line-height: 1.6;
   margin-bottom: 12px;
   display: flex;
   align-items: flex-start;
   gap: 10px;
}

.coverage-list li:last-child {
   margin-bottom: 0;
}

.coverage-clc .coverage-list li i {
   color: #16a34a;
   margin-top: 4px;
}

.coverage-personal .coverage-list li i {
   color: #ea580c;
   margin-top: 4px;
}

/* 3D Visual Airplane Stage */
.trip-airplane-stage {
   position: relative;
   border-radius: 24px;
   overflow: hidden;
   background: linear-gradient(135deg, #162654 0%, #1e1b4b 100%);
   border: 3px solid #ffffff;
   box-shadow: 0 16px 40px rgba(22, 38, 84, 0.16);
   padding: 30px;
   text-align: center;
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
}

.trip-airplane-stage img {
   max-width: 90%;
   height: auto;
   object-fit: contain;
   transition: transform 0.4s ease;
   filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
}

.trip-airplane-stage:hover img {
   transform: scale(1.05) translateY(-6px);
}

/* Responsive Styles for About Page */

@media (max-width: 991px) {
   .about-hero-title {
      font-size: 40px;
   }

   .about-legacy-content {
      padding-left: 0;
      margin-top: 36px;
   }

   .legacy-main-title {
      font-size: 30px;
   }

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

   .about-cta-content {
      flex-direction: column;
      text-align: center;
      justify-content: center;
   }

   .about-cta-buttons {
      justify-content: center;
   }
}

@media (max-width: 576px) {
   .about-hero-title {
      font-size: 32px;
   }

   .about-hero-section {
      padding: 60px 0 80px 0;
   }

   .career-card-grid {
      grid-template-columns: 1fr;
   }

   .btn-cta-white,
   .btn-cta-outline {
      width: 100%;
      justify-content: center;
   }
}

/* ==========================================================================
   Exam Center Directory Styles
   ========================================================================== */
.center-search-card {
   background: #ffffff;
   border-radius: 20px;
   border: 1px solid rgba(22, 38, 84, 0.08);
   box-shadow: 0 15px 40px rgba(22, 38, 84, 0.06);
   padding: 32px;
   position: relative;
   z-index: 2;
   margin-top: -35px;
}

.center-search-input-wrap {
   position: relative;
   display: flex;
   align-items: center;
}

.center-search-input-wrap i.search-icon {
   position: absolute;
   left: 20px;
   font-size: 18px;
   color: #94a3b8;
   pointer-events: none;
   transition: color 0.2s ease;
}

.center-search-input {
   width: 100%;
   height: 58px;
   padding: 12px 50px 12px 52px;
   border-radius: 14px;
   border: 2px solid #e2e8f0;
   background: #f8fafc;
   font-family: 'Poppins', sans-serif;
   font-size: 15px;
   font-weight: 500;
   color: #1e293b;
   transition: all 0.25s ease;
}

.center-search-input:focus {
   outline: none;
   background: #ffffff;
   border-color: #a72a33;
   box-shadow: 0 0 0 4px rgba(167, 42, 51, 0.12);
}

.center-search-input-wrap:focus-within i.search-icon {
   color: #a72a33;
}

.center-search-clear {
   position: absolute;
   right: 18px;
   top: 50%;
   transform: translateY(-50%);
   background: none;
   border: none;
   color: #94a3b8;
   font-size: 16px;
   cursor: pointer;
   display: none;
   padding: 4px;
   line-height: 1;
}

.center-search-clear:hover {
   color: #a72a33;
}

.state-filter-scroll {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   margin-top: 20px;
}

.state-pill-btn {
   display: inline-flex;
   align-items: center;
   gap: 7px;
   padding: 7px 16px;
   border-radius: 50px;
   border: 1px solid #e2e8f0;
   background: #f8fafc;
   color: #334155;
   font-family: 'Poppins', sans-serif;
   font-size: 13px;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.2s ease;
}

.state-pill-btn:hover {
   background: #fee2e2;
   color: #a72a33;
   border-color: #fca5a5;
}

.state-pill-btn.active {
   background: #a72a33;
   color: #ffffff;
   border-color: #a72a33;
   box-shadow: 0 4px 12px rgba(167, 42, 51, 0.25);
}

.state-pill-count {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 11px;
   font-weight: 700;
   padding: 2px 7px;
   border-radius: 50px;
   background: rgba(0, 0, 0, 0.06);
   color: inherit;
}

.state-pill-btn.active .state-pill-count {
   background: rgba(255, 255, 255, 0.25);
   color: #ffffff;
}

.center-table-card {
   background: #ffffff;
   border-radius: 20px;
   border: 1px solid rgba(22, 38, 84, 0.08);
   box-shadow: 0 15px 40px rgba(22, 38, 84, 0.06);
   overflow: hidden;
}

.center-table-modern {
   width: 100%;
   margin-bottom: 0;
   border-collapse: separate;
   border-spacing: 0;
}

.center-table-modern thead th {
   background: linear-gradient(135deg, #162654 0%, #1e3a8a 100%);
   color: #ffffff;
   font-family: 'Sora', sans-serif;
   font-size: 13.5px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.6px;
   padding: 16px 20px;
   border: none;
   white-space: nowrap;
}

.center-table-modern thead th:first-child {
   border-top-left-radius: 0;
}

.center-table-modern thead th:last-child {
   border-top-right-radius: 0;
}

.center-table-modern tbody tr {
   transition: background 0.18s ease;
}

.center-table-modern tbody tr:nth-child(even) {
   background: #fbfcfe;
}

.center-table-modern tbody tr:hover {
   background: #fff5f5 !important;
}

.center-table-modern tbody td {
   padding: 15px 20px;
   vertical-align: middle;
   font-family: 'Poppins', sans-serif;
   font-size: 14.5px;
   color: #1e293b;
   border-bottom: 1px solid #f1f5f9;
}

.center-id-badge {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 32px;
   height: 32px;
   border-radius: 8px;
   background: #f1f5f9;
   color: #475569;
   font-weight: 700;
   font-size: 12.5px;
}

.center-state-badge {
   display: inline-flex;
   align-items: center;
   gap: 5px;
   background: #eff6ff;
   border: 1px solid #bfdbfe;
   color: #1d4ed8;
   font-weight: 600;
   font-size: 12.5px;
   padding: 4px 10px;
   border-radius: 6px;
   white-space: nowrap;
}

.center-name-text {
   font-weight: 600;
   color: #162654;
   display: flex;
   align-items: center;
   gap: 8px;
}

.center-name-text i {
   color: #a72a33;
   font-size: 13px;
}

.center-district-text {
   color: #475569;
   font-weight: 500;
   display: flex;
   align-items: center;
   gap: 6px;
}

.center-district-text i {
   color: #94a3b8;
   font-size: 12px;
}

.center-code-pill {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   background: linear-gradient(135deg, rgba(167, 42, 51, 0.08) 0%, rgba(22, 38, 84, 0.08) 100%);
   border: 1px solid rgba(167, 42, 51, 0.25);
   color: #a72a33;
   font-weight: 700;
   font-size: 13px;
   padding: 5px 14px;
   border-radius: 50px;
   letter-spacing: 0.5px;
   font-family: 'Sora', sans-serif;
}

.center-code-pill i {
   font-size: 11px;
}

.center-info-strip {
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
   gap: 12px;
   margin-bottom: 16px;
   color: #64748b;
   font-size: 14px;
}

.center-info-strip strong {
   color: #162654;
}

.center-page-btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 38px;
   height: 38px;
   border-radius: 10px;
   border: 1px solid #e2e8f0;
   background: #ffffff;
   color: #334155;
   font-weight: 600;
   font-size: 14px;
   cursor: pointer;
   transition: all 0.2s ease;
   margin: 0 3px;
}

.center-page-btn:hover {
   background: #fee2e2;
   color: #a72a33;
   border-color: #fca5a5;
}

.center-page-btn.active {
   background: #a72a33;
   color: #ffffff;
   border-color: #a72a33;
   box-shadow: 0 4px 10px rgba(167, 42, 51, 0.25);
}

.center-page-btn:disabled {
   opacity: 0.4;
   cursor: not-allowed;
   pointer-events: none;
}

.no-center-found {
   text-align: center;
   padding: 60px 20px;
}

.no-center-icon {
   width: 70px;
   height: 70px;
   border-radius: 50%;
   background: #fee2e2;
   color: #a72a33;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 28px;
   margin-bottom: 16px;
}

.center-guidance-box {
   background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
   border-radius: 16px;
   border: 1px solid #dbeafe;
   padding: 24px 28px;
}

.center-guidance-box h5 {
   font-family: 'Sora', sans-serif;
   font-weight: 700;
   color: #162654;
   font-size: 17px;
   margin-bottom: 8px;
}

.center-guidance-box p {
   color: #475569;
   font-size: 14px;
   margin-bottom: 0;
   line-height: 1.6;
}

/* ==========================================================================
   Exam Center Directory Mobile Responsive Styles (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {

   /* Search Card */
   .center-search-card {
      padding: 18px 14px !important;
      margin-top: -15px !important;
      border-radius: 16px !important;
   }

   .center-search-card h3 {
      font-size: 17px !important;
      line-height: 1.3 !important;
   }

   .center-search-input {
      height: 48px !important;
      font-size: 13px !important;
      padding: 10px 38px 10px 42px !important;
      border-radius: 12px !important;
   }

   .center-search-input-wrap i.search-icon {
      left: 15px !important;
      font-size: 15px !important;
   }

   .center-search-clear {
      right: 12px !important;
      font-size: 14px !important;
   }

   /* State Filter Pills - Swipeable Chip Bar */
   .state-filter-scroll {
      display: flex !important;
      flex-wrap: nowrap !important;
      overflow-x: auto !important;
      -webkit-overflow-scrolling: touch !important;
      gap: 7px !important;
      margin-top: 14px !important;
      margin-left: -6px !important;
      margin-right: -6px !important;
      padding-bottom: 6px !important;
      scrollbar-width: none !important;
   }

   .state-filter-scroll::-webkit-scrollbar {
      display: none !important;
   }

   .state-pill-btn {
      flex-shrink: 0 !important;
      padding: 6px 13px !important;
      font-size: 12px !important;
      border-radius: 50px !important;
      white-space: nowrap !important;
   }

   .state-pill-count {
      font-size: 10px !important;
      padding: 1px 6px !important;
   }

   /* Results Info Strip */
   .center-info-strip {
      flex-direction: column !important;
      align-items: flex-start !important;
      gap: 10px !important;
      font-size: 12.5px !important;
      margin-bottom: 12px !important;
   }

   .center-info-strip>div:last-child {
      width: 100% !important;
      display: flex !important;
      justify-content: space-between !important;
      align-items: center !important;
   }

   /* Table & Container */
   .center-table-card {
      border-radius: 16px !important;
   }

   .table-responsive {
      -webkit-overflow-scrolling: touch !important;
   }

   .center-table-modern {
      min-width: 540px !important;
   }

   .center-table-modern thead th {
      padding: 12px 14px !important;
      font-size: 12px !important;
      letter-spacing: 0.4px !important;
   }

   .center-table-modern tbody td {
      padding: 11px 14px !important;
      font-size: 13px !important;
   }

   .center-id-badge {
      width: 26px !important;
      height: 26px !important;
      font-size: 11px !important;
      border-radius: 6px !important;
   }

   .center-state-badge {
      font-size: 11px !important;
      padding: 3px 8px !important;
      border-radius: 6px !important;
   }

   .center-name-text {
      font-size: 13.5px !important;
   }

   .center-district-text {
      font-size: 12.5px !important;
   }

   .center-code-pill {
      font-size: 11.5px !important;
      padding: 4px 10px !important;
   }

   /* Table Swipe Hint */
   .center-table-scroll-hint {
      display: block !important;
      font-size: 12px !important;
      color: #64748b !important;
      text-align: center !important;
      margin-top: 6px !important;
      margin-bottom: 12px !important;
   }

   /* Pagination Footer */
   #paginationWrapper {
      flex-direction: column !important;
      align-items: center !important;
      gap: 12px !important;
      padding: 14px !important;
   }

   #pageRangeInfo {
      font-size: 12px !important;
      text-align: center !important;
      width: 100% !important;
   }

   #paginationControls {
      justify-content: center !important;
      flex-wrap: wrap !important;
      gap: 3px !important;
      width: 100% !important;
   }

   .center-page-btn {
      width: 33px !important;
      height: 33px !important;
      font-size: 12px !important;
      border-radius: 8px !important;
      margin: 0 1px !important;
   }

   /* Guidance Boxes */
   .center-guidance-box {
      padding: 18px 16px !important;
      border-radius: 14px !important;
   }

   .center-guidance-box h5 {
      font-size: 15px !important;
      margin-bottom: 6px !important;
   }

   .center-guidance-box p {
      font-size: 12.5px !important;
      line-height: 1.5 !important;
   }

   .center-guidance-box>div>div:first-child {
      width: 38px !important;
      height: 38px !important;
      font-size: 17px !important;
      border-radius: 10px !important;
   }
}

.center-table-scroll-hint {
   display: none;
}

/* ==========================================================================
   Class Syllabus & Sample Papers Styles
   ========================================================================== */
.class-switcher-bar {
   display: flex;
   align-items: center;
   justify-content: center;
   flex-wrap: wrap;
   gap: 8px;
   margin-bottom: 30px;
}

.class-switcher-btn {
   display: inline-flex;
   align-items: center;
   padding: 8px 18px;
   border-radius: 50px;
   border: 1px solid #e2e8f0;
   background: #ffffff;
   color: #334155;
   font-family: 'Poppins', sans-serif;
   font-size: 13.5px;
   font-weight: 600;
   text-decoration: none;
   transition: all 0.25s ease;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.class-switcher-btn:hover {
   background: #fee2e2;
   color: #a72a33;
   border-color: #fca5a5;
   transform: translateY(-2px);
}

.class-switcher-btn.active {
   background: #a72a33;
   color: #ffffff;
   border-color: #a72a33;
   box-shadow: 0 6px 18px rgba(167, 42, 51, 0.3);
}

.syllabus-tabs-nav {
   display: flex;
   gap: 12px;
   overflow-x: auto;
   padding-bottom: 12px;
   margin-bottom: 24px;
   scrollbar-width: thin;
}

.syllabus-tab-pill {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 12px 24px;
   border-radius: 14px;
   border: 1px solid #e2e8f0;
   background: #ffffff;
   color: #1e293b;
   font-family: 'Sora', sans-serif;
   font-size: 14px;
   font-weight: 700;
   cursor: pointer;
   white-space: nowrap;
   transition: all 0.25s ease;
   box-shadow: 0 4px 12px rgba(22, 38, 84, 0.04);
}

.syllabus-tab-pill .tab-icon-wrap {
   width: 34px;
   height: 34px;
   border-radius: 8px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 15px;
   transition: all 0.2s ease;
}

.syllabus-tab-pill:hover {
   transform: translateY(-2px);
   border-color: #cbd5e1;
}

.syllabus-tab-pill.active {
   background: #162654;
   color: #ffffff;
   border-color: #162654;
   box-shadow: 0 8px 24px rgba(22, 38, 84, 0.2);
}

.syllabus-tab-pill.active .tab-icon-wrap {
   background: #a72a33 !important;
   color: #ffffff !important;
}

.syllabus-pane-card {
   background: #ffffff;
   border-radius: 24px;
   border: 1px solid rgba(22, 38, 84, 0.08);
   box-shadow: 0 15px 40px rgba(22, 38, 84, 0.06);
   padding: 36px;
   margin-bottom: 40px;
}

.syllabus-subject-header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 16px;
   padding-bottom: 24px;
   margin-bottom: 28px;
   border-bottom: 1px solid #f1f5f9;
}

.syllabus-subject-title {
   display: flex;
   align-items: center;
   gap: 14px;
}

.syllabus-subject-title h3 {
   font-family: 'Sora', sans-serif;
   font-weight: 800;
   font-size: 24px;
   color: #162654;
   margin-bottom: 0;
}

.syllabus-subject-badge {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 5px 14px;
   border-radius: 50px;
   font-size: 12px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.5px;
}

.syllabus-topics-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 16px;
}

@media (max-width: 767px) {
   .syllabus-topics-grid {
      grid-template-columns: 1fr;
   }
}

.syllabus-topic-card {
   display: flex;
   align-items: center;
   gap: 14px;
   padding: 16px 20px;
   border-radius: 14px;
   background: #f8fafc;
   border: 1px solid #e2e8f0;
   transition: all 0.25s ease;
}

.syllabus-topic-card:hover {
   background: #ffffff;
   border-color: #fca5a5;
   box-shadow: 0 8px 20px rgba(167, 42, 51, 0.08);
   transform: translateX(4px);
}

.topic-num-badge {
   width: 32px;
   height: 32px;
   border-radius: 8px;
   background: #ffffff;
   border: 1px solid #e2e8f0;
   color: #64748b;
   font-weight: 800;
   font-size: 13px;
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
   font-family: 'Sora', sans-serif;
}

.syllabus-topic-card:hover .topic-num-badge {
   background: #a72a33;
   color: #ffffff;
   border-color: #a72a33;
}

.topic-title-text {
   font-family: 'Poppins', sans-serif;
   font-size: 15px;
   font-weight: 600;
   color: #1e293b;
   margin-bottom: 0;
}

/* Sample Paper Modern Cards */
.sample-paper-card-v2 {
   background: #ffffff;
   border-radius: 20px;
   border: 1px solid rgba(22, 38, 84, 0.08);
   box-shadow: 0 12px 35px rgba(22, 38, 84, 0.06);
   padding: 26px;
   text-align: center;
   transition: all 0.3s ease;
   position: relative;
   display: flex;
   flex-direction: column;
   height: 100%;
}

.sample-paper-card-v2:hover {
   transform: translateY(-8px);
   box-shadow: 0 20px 45px rgba(22, 38, 84, 0.12);
   border-color: rgba(167, 42, 51, 0.25);
}

.sample-paper-book-cover {
   position: relative;
   margin: 0 auto 18px auto;
   max-width: 130px;
   transition: transform 0.3s ease;
}

.sample-paper-book-cover img {
   width: 100%;
   height: auto;
   border-radius: 10px;
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.sample-paper-card-v2:hover .sample-paper-book-cover img {
   transform: scale(1.05) rotate(-2deg);
}

.sample-paper-badge {
   display: inline-block;
   padding: 4px 12px;
   border-radius: 50px;
   font-size: 11.5px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   margin-bottom: 10px;
}

.sample-paper-title {
   font-family: 'Sora', sans-serif;
   font-size: 18px;
   font-weight: 700;
   color: #162654;
   margin-bottom: 6px;
}

.sample-paper-desc {
   font-size: 13px;
   color: #64748b;
   margin-bottom: 20px;
   flex-grow: 1;
}

.sample-paper-btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   width: 100%;
   padding: 12px 18px;
   border-radius: 12px;
   background: linear-gradient(135deg, #162654 0%, #1e3a8a 100%);
   color: #ffffff;
   font-family: 'Sora', sans-serif;
   font-size: 13.5px;
   font-weight: 700;
   text-decoration: none;
   transition: all 0.25s ease;
}

.sample-paper-btn:hover {
   background: linear-gradient(135deg, #a72a33 0%, #871f27 100%);
   color: #ffffff;
   box-shadow: 0 6px 18px rgba(167, 42, 51, 0.35);
}

/* Exam Pattern Strip */
.exam-pattern-strip {
   background: #ffffff;
   border-radius: 20px;
   border: 1px solid rgba(22, 38, 84, 0.08);
   box-shadow: 0 10px 30px rgba(22, 38, 84, 0.05);
   padding: 24px 30px;
   margin-bottom: 40px;
}

.exam-pattern-item {
   display: flex;
   align-items: center;
   gap: 14px;
}

.exam-pattern-icon {
   width: 46px;
   height: 46px;
   border-radius: 12px;
   background: #fee2e2;
   color: #a72a33;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 20px;
   flex-shrink: 0;
}

.exam-pattern-label {
   font-size: 12px;
   color: #64748b;
   text-transform: uppercase;
   font-weight: 700;
   letter-spacing: 0.5px;
   margin-bottom: 2px;
}

.exam-pattern-val {
   font-family: 'Sora', sans-serif;
   font-size: 17px;
   font-weight: 800;
   color: #162654;
   margin-bottom: 0;
}

/* ==========================================================================
   Class Syllabus & Sample Papers Mobile Responsive Styles (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {

   /* Quick Class Switcher Bar */
   .class-switcher-bar {
      display: flex !important;
      flex-wrap: nowrap !important;
      overflow-x: auto !important;
      -webkit-overflow-scrolling: touch;
      justify-content: flex-start !important;
      gap: 8px !important;
      padding: 6px 12px 14px 12px !important;
      margin-left: -12px !important;
      margin-right: -12px !important;
      margin-bottom: 20px !important;
      scrollbar-width: none !important;
   }

   .class-switcher-bar::-webkit-scrollbar {
      display: none !important;
   }

   .class-switcher-btn {
      flex-shrink: 0 !important;
      padding: 7px 16px !important;
      font-size: 12.5px !important;
      border-radius: 50px !important;
      white-space: nowrap !important;
   }

   /* Exam Pattern Blueprint Strip */
   .exam-pattern-item {
      display: flex !important;
      align-items: center !important;
      gap: 10px !important;
      padding: 10px 12px !important;
      background: #f8fafc !important;
      border-radius: 12px !important;
      border: 1px solid #e2e8f0 !important;
      height: 100% !important;
   }

   .exam-pattern-icon {
      width: 36px !important;
      height: 36px !important;
      font-size: 15px !important;
      border-radius: 9px !important;
      flex-shrink: 0 !important;
   }

   .exam-pattern-label {
      font-size: 10px !important;
      letter-spacing: 0.3px !important;
      margin-bottom: 2px !important;
      line-height: 1.2 !important;
   }

   .exam-pattern-val {
      font-size: 13px !important;
      line-height: 1.25 !important;
   }

   /* Subject Tabs Navigation Strip */
   .syllabus-tabs-nav {
      display: flex !important;
      flex-wrap: nowrap !important;
      overflow-x: auto !important;
      -webkit-overflow-scrolling: touch;
      justify-content: flex-start !important;
      gap: 8px !important;
      padding: 4px 6px 12px 6px !important;
      margin-left: -8px !important;
      margin-right: -8px !important;
      margin-bottom: 18px !important;
      scrollbar-width: none !important;
   }

   .syllabus-tabs-nav::-webkit-scrollbar {
      display: none !important;
   }

   .syllabus-tab-pill {
      flex-shrink: 0 !important;
      padding: 8px 16px !important;
      border-radius: 12px !important;
      font-size: 13px !important;
      gap: 8px !important;
      white-space: nowrap !important;
   }

   .syllabus-tab-pill .tab-icon-wrap {
      width: 28px !important;
      height: 28px !important;
      font-size: 13px !important;
      border-radius: 7px !important;
   }

   /* Syllabus Subject Pane Card */
   .syllabus-pane-card {
      padding: 18px 14px !important;
      border-radius: 18px !important;
      margin-bottom: 25px !important;
      border: 1px solid rgba(22, 38, 84, 0.08) !important;
      box-shadow: 0 10px 30px rgba(22, 38, 84, 0.04) !important;
   }

   .syllabus-subject-header {
      flex-direction: column !important;
      align-items: flex-start !important;
      gap: 12px !important;
      padding-bottom: 14px !important;
      margin-bottom: 16px !important;
      border-bottom: 1px solid #f1f5f9 !important;
   }

   .syllabus-subject-title {
      gap: 10px !important;
      width: 100% !important;
   }

   .syllabus-subject-title>div:first-child {
      width: 38px !important;
      height: 38px !important;
      border-radius: 10px !important;
      font-size: 17px !important;
      flex-shrink: 0 !important;
   }

   .syllabus-subject-title h3 {
      font-size: 18px !important;
      line-height: 1.25 !important;
      margin-bottom: 2px !important;
   }

   .syllabus-subject-title span.small {
      font-size: 11.5px !important;
      display: block !important;
      line-height: 1.35 !important;
   }

   .syllabus-subject-badge {
      font-size: 10.5px !important;
      padding: 4px 11px !important;
      border-radius: 50px !important;
      align-self: flex-start !important;
   }

   /* Topics List Grid */
   .syllabus-topics-grid {
      grid-template-columns: 1fr !important;
      gap: 9px !important;
   }

   .syllabus-topic-card {
      padding: 11px 13px !important;
      border-radius: 12px !important;
      gap: 10px !important;
      background: #f8fafc !important;
   }

   .topic-num-badge {
      width: 26px !important;
      height: 26px !important;
      font-size: 11px !important;
      border-radius: 6px !important;
      flex-shrink: 0 !important;
   }

   .topic-title-text {
      font-size: 13px !important;
      line-height: 1.35 !important;
      color: #1e293b !important;
   }

   /* Sample Paper Cards Mobile Horizontal Touch Slider */
   .sample-papers-mobile-slider,
   .row:has(> div > .sample-paper-card-v2) {
      display: flex !important;
      flex-wrap: nowrap !important;
      overflow-x: auto !important;
      -webkit-overflow-scrolling: touch !important;
      scroll-snap-type: x mandatory !important;
      gap: 14px !important;
      padding: 8px 14px 20px 14px !important;
      margin-left: -12px !important;
      margin-right: -12px !important;
      scrollbar-width: none !important;
   }

   .sample-papers-mobile-slider::-webkit-scrollbar,
   .row:has(> div > .sample-paper-card-v2)::-webkit-scrollbar {
      display: none !important;
   }

   .sample-papers-mobile-slider>[class*="col-"],
   .row:has(> div > .sample-paper-card-v2)>[class*="col-"] {
      flex: 0 0 78% !important;
      max-width: 78% !important;
      scroll-snap-align: center !important;
      padding: 0 !important;
   }

   .sample-paper-card-v2 {
      padding: 18px 14px !important;
      border-radius: 18px !important;
      height: 100% !important;
      box-shadow: 0 8px 25px rgba(22, 38, 84, 0.05) !important;
   }

   .sample-paper-book-cover {
      max-width: 100px !important;
      margin-bottom: 12px !important;
   }

   .sample-paper-badge {
      font-size: 10px !important;
      padding: 3px 10px !important;
      margin-bottom: 6px !important;
   }

   .sample-paper-title {
      font-size: 15.5px !important;
      margin-bottom: 4px !important;
   }

   .sample-paper-desc {
      font-size: 12px !important;
      line-height: 1.4 !important;
      margin-bottom: 14px !important;
   }

   .sample-paper-btn {
      padding: 10px 14px !important;
      font-size: 12.5px !important;
      border-radius: 10px !important;
   }

   .sample-papers-swipe-hint {
      display: block !important;
      font-size: 12px !important;
      color: #64748b !important;
      text-align: center !important;
      margin-top: -6px !important;
      margin-bottom: 18px !important;
   }
}

/* Hide swipe hint by default on desktop */
.sample-papers-swipe-hint {
   display: none;
}

/* ==========================================================================
   Photo Gallery Modern Styles
   ========================================================================== */
.gallery-toolbar-card {
   background: #ffffff;
   border-radius: 20px;
   padding: 20px 28px;
   border: 1px solid rgba(22, 38, 84, 0.08);
   box-shadow: 0 10px 30px rgba(22, 38, 84, 0.04);
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 18px;
   margin-bottom: 35px;
}

.gallery-filter-pills {
   display: flex;
   align-items: center;
   gap: 10px;
   flex-wrap: wrap;
}

.gallery-pill {
   padding: 9px 20px;
   border-radius: 50px;
   font-family: 'Sora', sans-serif;
   font-size: 13.5px;
   font-weight: 700;
   color: #475569;
   background: #f1f5f9;
   border: 1px solid transparent;
   cursor: pointer;
   transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
   display: inline-flex;
   align-items: center;
   gap: 6px;
}

.gallery-pill:hover {
   background: #e2e8f0;
   color: #162654;
   transform: translateY(-1px);
}

.gallery-pill.active {
   background: linear-gradient(135deg, #a72a33 0%, #871f27 100%);
   color: #ffffff;
   box-shadow: 0 4px 14px rgba(167, 42, 51, 0.35);
   border-color: #a72a33;
}

.gallery-meta-controls {
   display: flex;
   align-items: center;
   gap: 16px;
   font-size: 13.5px;
   color: #64748b;
   font-weight: 600;
}

.gallery-perpage-select {
   padding: 7px 14px;
   border-radius: 10px;
   border: 1px solid #cbd5e1;
   font-family: 'Sora', sans-serif;
   font-size: 13px;
   font-weight: 700;
   color: #162654;
   background-color: #ffffff;
   cursor: pointer;
   outline: none;
   transition: border-color 0.2s ease;
}

.gallery-perpage-select:focus {
   border-color: #a72a33;
}

/* Gallery Grid & Cards */
.gallery-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 24px;
   margin-bottom: 45px;
}

@media (max-width: 1200px) {
   .gallery-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
   }
}

@media (max-width: 768px) {
   .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
   }
}

@media (max-width: 480px) {
   .gallery-grid {
      grid-template-columns: 1fr;
      gap: 16px;
   }
}

.gallery-item-card {
   position: relative;
   border-radius: 18px;
   overflow: hidden;
   background: #0f172a;
   box-shadow: 0 10px 25px rgba(22, 38, 84, 0.08);
   border: 1px solid rgba(22, 38, 84, 0.06);
   aspect-ratio: 4 / 3;
   cursor: pointer;
   transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 18px 36px rgba(22, 38, 84, 0.18);
}

.gallery-item-img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-card:hover .gallery-item-img {
   transform: scale(1.08);
}

.gallery-item-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.4) 40%, rgba(15, 23, 42, 0.95) 100%);
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   padding: 16px;
   opacity: 0;
   transition: opacity 0.3s ease;
   pointer-events: none;
}

.gallery-item-card:hover .gallery-item-overlay {
   opacity: 1;
   pointer-events: auto;
}

.gallery-item-top {
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.gallery-chip-badge {
   font-size: 11px;
   font-weight: 700;
   padding: 4px 10px;
   border-radius: 30px;
   background: rgba(255, 255, 255, 0.2);
   backdrop-filter: blur(8px);
   color: #ffffff;
   letter-spacing: 0.4px;
   text-transform: uppercase;
}

.gallery-number-badge {
   font-size: 11px;
   font-weight: 800;
   padding: 3px 8px;
   border-radius: 6px;
   background: #facc15;
   color: #162654;
}

.gallery-zoom-action {
   align-self: center;
   width: 48px;
   height: 48px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.95);
   color: #a72a33;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 18px;
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
   transform: scale(0.85);
   transition: all 0.25s ease;
}

.gallery-item-card:hover .gallery-zoom-action {
   transform: scale(1);
}

.gallery-item-card:hover .gallery-zoom-action:hover {
   background: #a72a33;
   color: #ffffff;
   transform: scale(1.1);
}

.gallery-item-bottom {
   color: #ffffff;
}

.gallery-item-title {
   font-family: 'Sora', sans-serif;
   font-size: 14px;
   font-weight: 700;
   margin-bottom: 3px;
   color: #ffffff;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
}

.gallery-item-sub {
   font-size: 11.5px;
   color: #cbd5e1;
   margin-bottom: 0;
   display: flex;
   align-items: center;
   gap: 6px;
}

/* Modern Lightbox Overlay */
.gallery-lightbox-modal {
   position: fixed;
   inset: 0;
   z-index: 99999;
   background: rgba(11, 15, 25, 0.96);
   backdrop-filter: blur(12px);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 20px;
   opacity: 0;
   transition: opacity 0.3s ease;
}

.gallery-lightbox-modal.active {
   display: flex;
   opacity: 1;
}

.lightbox-header {
   position: absolute;
   top: 20px;
   left: 24px;
   right: 24px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   z-index: 10;
}

.lightbox-counter {
   color: #cbd5e1;
   font-family: 'Sora', sans-serif;
   font-size: 14px;
   font-weight: 700;
   background: rgba(255, 255, 255, 0.08);
   padding: 6px 16px;
   border-radius: 30px;
   backdrop-filter: blur(8px);
   border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-actions {
   display: flex;
   align-items: center;
   gap: 12px;
}

.lightbox-btn {
   width: 44px;
   height: 44px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.15);
   border: 1px solid rgba(255, 255, 255, 0.25);
   color: #ffffff !important;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 18px;
   cursor: pointer;
   transition: all 0.2s ease;
   text-decoration: none;
}

.lightbox-btn i {
   color: #ffffff !important;
   font-size: 18px !important;
   line-height: 1;
   display: inline-block;
}

.lightbox-btn:hover {
   background: #a72a33;
   color: #ffffff !important;
   transform: scale(1.08);
}

.lightbox-content-wrap {
   max-width: 90vw;
   max-height: 82vh;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   position: relative;
}

.lightbox-main-img {
   max-width: 90vw;
   max-height: 75vh;
   object-fit: contain;
   border-radius: 12px;
   box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
   transition: transform 0.25s ease;
}

.lightbox-caption {
   margin-top: 14px;
   text-align: center;
   color: #f1f5f9;
   font-family: 'Sora', sans-serif;
   font-size: 15px;
   font-weight: 600;
}

.lightbox-nav-arrow {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   width: 52px;
   height: 52px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.12);
   border: 1px solid rgba(255, 255, 255, 0.2);
   color: #ffffff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 20px;
   cursor: pointer;
   transition: all 0.2s ease;
   z-index: 5;
}

.lightbox-nav-arrow:hover {
   background: #a72a33;
   transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
   left: 24px;
}

.lightbox-next {
   right: 24px;
}

@media (max-width: 768px) {
   .lightbox-nav-arrow {
      width: 40px;
      height: 40px;
      font-size: 16px;
   }

   .lightbox-prev {
      left: 10px;
   }

   .lightbox-next {
      right: 10px;
   }
}

/* Modern Gallery Pagination */
.gallery-pagination {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 8px;
   margin-top: 10px;
   margin-bottom: 50px;
   flex-wrap: wrap;
}

.gallery-page-btn {
   min-width: 42px;
   height: 42px;
   padding: 0 14px;
   border-radius: 12px;
   background: #ffffff;
   border: 1px solid #e2e8f0;
   color: #162654;
   font-family: 'Sora', sans-serif;
   font-size: 14px;
   font-weight: 700;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   transition: all 0.2s ease;
}

.gallery-page-btn:hover:not(.disabled) {
   background: #fee2e2;
   color: #a72a33;
   border-color: #fca5a5;
   transform: translateY(-2px);
}

.gallery-page-btn.active {
   background: linear-gradient(135deg, #a72a33 0%, #871f27 100%);
   color: #ffffff;
   border-color: #a72a33;
   box-shadow: 0 4px 14px rgba(167, 42, 51, 0.35);
}

.gallery-page-btn.disabled {
   opacity: 0.45;
   cursor: not-allowed;
   background: #f8fafc;
}

/* Gallery Inspire Quote Banner */
.gallery-quote-banner {
   background: linear-gradient(135deg, #162654 0%, #0f172a 100%);
   border-radius: 24px;
   padding: 40px 45px;
   margin-bottom: 50px;
   border: 1px solid rgba(255, 255, 255, 0.1);
   color: #ffffff;
   position: relative;
   overflow: hidden;
}

.gallery-quote-banner::before {
   content: '\f10d';
   font-family: 'Font Awesome 6 Free';
   font-weight: 900;
   position: absolute;
   right: 30px;
   bottom: -20px;
   font-size: 130px;
   color: rgba(255, 255, 255, 0.04);
   pointer-events: none;
}

/* ==========================================================================
   Photo Gallery Mobile Responsive Styles (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {

   /* Hero Image Card on Mobile */
   .gallery-hero-image-card {
      border-radius: 18px !important;
      margin-top: 15px !important;
   }

   .gallery-hero-image-card img {
      height: 200px !important;
   }

   /* Gallery Toolbar */
   .gallery-toolbar-card {
      padding: 14px 12px !important;
      border-radius: 16px !important;
      margin-bottom: 22px !important;
      gap: 12px !important;
   }

   /* Horizontal Swipeable Filter Pills */
   .gallery-filter-pills {
      display: flex !important;
      flex-wrap: nowrap !important;
      overflow-x: auto !important;
      -webkit-overflow-scrolling: touch !important;
      gap: 8px !important;
      margin-left: -4px !important;
      margin-right: -4px !important;
      padding-bottom: 4px !important;
      scrollbar-width: none !important;
      width: 100% !important;
   }

   .gallery-filter-pills::-webkit-scrollbar {
      display: none !important;
   }

   .gallery-pill {
      flex-shrink: 0 !important;
      padding: 7px 15px !important;
      font-size: 12px !important;
      border-radius: 50px !important;
      white-space: nowrap !important;
      gap: 5px !important;
   }

   .gallery-meta-controls {
      width: 100% !important;
      display: flex !important;
      justify-content: space-between !important;
      align-items: center !important;
      font-size: 12px !important;
   }

   .gallery-perpage-select {
      padding: 5px 10px !important;
      font-size: 12px !important;
      border-radius: 8px !important;
   }

   /* 2-Column Responsive Grid on Mobile */
   .gallery-grid {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 10px !important;
      margin-bottom: 30px !important;
   }

   .gallery-item-card {
      border-radius: 14px !important;
      box-shadow: 0 4px 14px rgba(22, 38, 84, 0.08) !important;
   }

   .gallery-item-overlay {
      opacity: 1 !important;
      background: linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0) 40%, rgba(15, 23, 42, 0.88) 100%) !important;
      padding: 8px 10px !important;
      pointer-events: none !important;
   }

   .gallery-zoom-action {
      display: none !important;
   }

   .gallery-chip-badge {
      font-size: 9px !important;
      padding: 2px 7px !important;
      letter-spacing: 0.2px !important;
   }

   .gallery-number-badge {
      font-size: 9.5px !important;
      padding: 2px 5px !important;
   }

   .gallery-item-title {
      font-size: 11.5px !important;
      margin-bottom: 0 !important;
      line-height: 1.25 !important;
   }

   .gallery-item-sub {
      display: none !important;
   }

   /* Pagination on Mobile */
   .gallery-pagination {
      gap: 4px !important;
      margin-bottom: 35px !important;
   }

   .gallery-page-btn {
      min-width: 35px !important;
      height: 35px !important;
      font-size: 12px !important;
      padding: 0 8px !important;
      border-radius: 8px !important;
   }

   /* Lightbox Modal on Mobile */
   .gallery-lightbox-modal {
      padding: 12px !important;
   }

   .lightbox-header {
      top: 14px !important;
      left: 14px !important;
      right: 14px !important;
   }

   .lightbox-counter {
      font-size: 11.5px !important;
      padding: 4px 12px !important;
   }

   .lightbox-actions {
      gap: 8px !important;
   }

   .lightbox-btn {
      width: 38px !important;
      height: 38px !important;
      font-size: 15px !important;
   }

   .lightbox-main-img {
      max-width: 95vw !important;
      max-height: 70vh !important;
      border-radius: 8px !important;
   }

   .lightbox-caption {
      font-size: 13px !important;
      margin-top: 10px !important;
      padding: 0 10px !important;
   }

   .lightbox-nav-arrow {
      width: 38px !important;
      height: 38px !important;
      font-size: 15px !important;
      background: rgba(15, 23, 42, 0.75) !important;
      backdrop-filter: blur(6px) !important;
   }

   .lightbox-prev {
      left: 8px !important;
   }

   .lightbox-next {
      right: 8px !important;
   }

   /* Inspiring Quote Banner */
   .gallery-quote-banner {
      padding: 24px 20px !important;
      border-radius: 18px !important;
      margin-bottom: 35px !important;
   }

   .gallery-quote-banner h3 {
      font-size: 15.5px !important;
      line-height: 1.45 !important;
      margin-bottom: 8px !important;
   }

   .gallery-quote-banner p {
      font-size: 12.5px !important;
   }

   .gallery-quote-banner a.btn {
      width: 100% !important;
      font-size: 13.5px !important;
      padding: 10px 18px !important;
   }
}

/* ==========================================================================
   Video Gallery Modern Styles
   ========================================================================== */
.video-theater-card {
   background: linear-gradient(135deg, #162654 0%, #0f172a 100%);
   border-radius: 24px;
   padding: 30px;
   border: 1px solid rgba(255, 255, 255, 0.12);
   box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
   margin-bottom: 45px;
   position: relative;
   overflow: hidden;
}

.video-theater-embed-wrap {
   position: relative;
   border-radius: 18px;
   overflow: hidden;
   aspect-ratio: 16 / 9;
   background: #000000;
   box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
   border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-theater-embed-wrap iframe {
   width: 100%;
   height: 100%;
   border: none;
   display: block;
}

.video-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 26px;
   margin-bottom: 45px;
}

@media (max-width: 992px) {
   .video-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
   }
}

@media (max-width: 576px) {
   .video-grid {
      grid-template-columns: 1fr;
      gap: 18px;
   }
}

.video-card {
   background: #ffffff;
   border-radius: 20px;
   overflow: hidden;
   border: 1px solid rgba(22, 38, 84, 0.08);
   box-shadow: 0 10px 25px rgba(22, 38, 84, 0.05);
   transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
   display: flex;
   flex-direction: column;
}

.video-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 18px 40px rgba(22, 38, 84, 0.14);
   border-color: rgba(167, 42, 51, 0.25);
}

.video-thumb-wrap {
   position: relative;
   aspect-ratio: 16 / 9;
   overflow: hidden;
   background: #0f172a;
   cursor: pointer;
}

.video-thumb-img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
   transition: transform 0.5s ease;
}

.video-card:hover .video-thumb-img {
   transform: scale(1.06);
}

.video-thumb-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.75) 100%);
   display: flex;
   align-items: center;
   justify-content: center;
   transition: background 0.3s ease;
}

.video-card:hover .video-thumb-overlay {
   background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(167, 42, 51, 0.6) 100%);
}

.video-play-pulse {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   background: #a72a33;
   color: #ffffff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 20px;
   box-shadow: 0 0 0 0 rgba(167, 42, 51, 0.7);
   transition: all 0.3s ease;
   position: relative;
}

.video-play-pulse i {
   margin-left: 3px;
}

.video-card:hover .video-play-pulse {
   background: #e11d48;
   transform: scale(1.15);
   box-shadow: 0 0 0 14px rgba(225, 29, 72, 0);
   animation: videoPlayPulse 1.8s infinite;
}

@keyframes videoPlayPulse {
   0% {
      box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.7);
   }

   70% {
      box-shadow: 0 0 0 16px rgba(225, 29, 72, 0);
   }

   100% {
      box-shadow: 0 0 0 0 rgba(225, 29, 72, 0);
   }
}

.video-badge-tag {
   position: absolute;
   top: 14px;
   left: 14px;
   font-size: 11px;
   font-weight: 700;
   padding: 4px 10px;
   border-radius: 20px;
   background: rgba(15, 23, 42, 0.8);
   backdrop-filter: blur(8px);
   color: #ffffff;
   text-transform: uppercase;
   letter-spacing: 0.5px;
}

.video-yt-badge {
   position: absolute;
   top: 14px;
   right: 14px;
   font-size: 11px;
   font-weight: 800;
   padding: 4px 10px;
   border-radius: 6px;
   background: #ff0000;
   color: #ffffff;
   display: flex;
   align-items: center;
   gap: 4px;
}

.video-card-body {
   padding: 20px 22px;
   flex-grow: 1;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}

.video-card-title {
   font-family: 'Sora', sans-serif;
   font-size: 15px;
   font-weight: 700;
   color: #162654;
   line-height: 1.45;
   margin-bottom: 12px;
   display: -webkit-box;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
   overflow: hidden;
}

.video-card:hover .video-card-title {
   color: #a72a33;
}

.video-card-footer {
   display: flex;
   align-items: center;
   justify-content: space-between;
   font-size: 12.5px;
   color: #64748b;
   padding-top: 12px;
   border-top: 1px solid #f1f5f9;
}

.video-watch-link {
   color: #a72a33;
   font-weight: 700;
   display: inline-flex;
   align-items: center;
   gap: 5px;
   text-decoration: none;
   cursor: pointer;
   transition: gap 0.2s ease;
}

.video-watch-link:hover {
   gap: 8px;
   color: #871f27;
}

/* Modern Cinema Video Modal */
.video-cinema-modal {
   position: fixed;
   inset: 0;
   z-index: 99999;
   background: rgba(11, 15, 25, 0.96);
   backdrop-filter: blur(14px);
   display: none;
   align-items: center;
   justify-content: center;
   padding: 20px;
   opacity: 0;
   transition: opacity 0.3s ease;
}

.video-cinema-modal.active {
   display: flex;
   opacity: 1;
}

.video-cinema-box {
   width: 100%;
   max-width: 960px;
   position: relative;
   background: #000000;
   border-radius: 20px;
   overflow: hidden;
   box-shadow: 0 25px 70px rgba(0, 0, 0, 0.7);
   border: 1px solid rgba(255, 255, 255, 0.15);
}

.video-cinema-iframe-wrap {
   position: relative;
   width: 100%;
   padding-top: 56.25%;
   /* 16:9 */
}

.video-cinema-iframe-wrap iframe {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border: none;
}

.video-cinema-close {
   position: absolute;
   top: -50px;
   right: 0;
   width: 42px;
   height: 42px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.15);
   border: 1px solid rgba(255, 255, 255, 0.25);
   color: #ffffff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 18px;
   cursor: pointer;
   transition: all 0.2s ease;
}

.video-cinema-close:hover {
   background: #a72a33;
   transform: scale(1.1);
}

/* ==========================================================================
   Video Gallery Mobile Responsive Styles (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {

   /* Featured Theater Stage */
   .video-theater-card {
      padding: 18px 14px !important;
      border-radius: 18px !important;
      margin-bottom: 25px !important;
   }

   .video-theater-embed-wrap {
      border-radius: 14px !important;
   }

   .video-theater-card h2 {
      font-size: 18px !important;
      line-height: 1.35 !important;
      margin-top: 10px !important;
      margin-bottom: 10px !important;
   }

   .video-theater-card p {
      font-size: 13px !important;
      line-height: 1.6 !important;
      margin-bottom: 16px !important;
   }

   .video-theater-card .d-flex.flex-wrap {
      flex-direction: column !important;
      gap: 10px !important;
   }

   .video-theater-card .btn {
      width: 100% !important;
      justify-content: center !important;
      font-size: 13px !important;
      padding: 10px 18px !important;
   }

   /* Video Cards Grid on Mobile */
   .video-grid {
      grid-template-columns: 1fr !important;
      gap: 16px !important;
      margin-bottom: 30px !important;
   }

   .video-card {
      border-radius: 16px !important;
   }

   .video-thumb-wrap {
      aspect-ratio: 16 / 9 !important;
   }

   .video-play-pulse {
      width: 48px !important;
      height: 48px !important;
      font-size: 16px !important;
   }

   .video-badge-tag {
      top: 10px !important;
      left: 10px !important;
      font-size: 10px !important;
      padding: 3px 9px !important;
   }

   .video-yt-badge {
      top: 10px !important;
      right: 10px !important;
      font-size: 10px !important;
      padding: 3px 9px !important;
   }

   .video-card-body {
      padding: 14px 16px !important;
   }

   .video-card-title {
      font-size: 14px !important;
      margin-bottom: 10px !important;
      line-height: 1.4 !important;
   }

   .video-card-footer {
      padding-top: 10px !important;
      font-size: 12px !important;
   }

   .video-watch-link {
      font-size: 12.5px !important;
   }

   /* Cinema Fullscreen Modal on Mobile */
   .video-cinema-modal {
      padding: 12px !important;
   }

   .video-cinema-box {
      border-radius: 14px !important;
      margin-top: 36px !important;
   }

   .video-cinema-close {
      top: -42px !important;
      right: 4px !important;
      width: 36px !important;
      height: 36px !important;
      font-size: 16px !important;
   }
}

/* ==========================================================================
   News & Press Coverage Modern Styles
   ========================================================================== */
.news-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 26px;
   margin-bottom: 45px;
}

@media (max-width: 992px) {
   .news-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
   }
}

@media (max-width: 576px) {
   .news-grid {
      grid-template-columns: 1fr;
      gap: 18px;
   }
}

.news-press-card {
   background: #ffffff;
   border-radius: 20px;
   overflow: hidden;
   border: 1px solid rgba(22, 38, 84, 0.08);
   box-shadow: 0 10px 25px rgba(22, 38, 84, 0.05);
   transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
   display: flex;
   flex-direction: column;
   cursor: pointer;
}

.news-press-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 18px 40px rgba(22, 38, 84, 0.15);
   border-color: rgba(167, 42, 51, 0.3);
}

.news-press-thumb-wrap {
   position: relative;
   aspect-ratio: 4 / 3;
   overflow: hidden;
   background: #0f172a;
}

.news-press-thumb-img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: top center;
   display: block;
   transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-press-card:hover .news-press-thumb-img {
   transform: scale(1.08);
}

.news-press-overlay {
   position: absolute;
   inset: 0;
   background: linear-gradient(180deg, rgba(15, 23, 42, 0.15) 0%, rgba(15, 23, 42, 0.4) 40%, rgba(15, 23, 42, 0.95) 100%);
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   padding: 16px;
   opacity: 0;
   transition: opacity 0.3s ease;
}

.news-press-card:hover .news-press-overlay {
   opacity: 1;
}

.news-press-body {
   padding: 20px 22px;
   flex-grow: 1;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}

.news-press-title {
   font-family: 'Sora', sans-serif;
   font-size: 15.5px;
   font-weight: 700;
   color: #162654;
   line-height: 1.45;
   margin-bottom: 10px;
   display: -webkit-box;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
   overflow: hidden;
}

.news-press-card:hover .news-press-title {
   color: #a72a33;
}

.news-press-meta {
   display: flex;
   align-items: center;
   justify-content: space-between;
   font-size: 12px;
   color: #64748b;
   padding-top: 12px;
   border-top: 1px solid #f1f5f9;
}

.news-view-clipping-btn {
   color: #a72a33;
   font-weight: 700;
   display: inline-flex;
   align-items: center;
   gap: 6px;
   font-size: 13px;
   transition: gap 0.2s ease;
}

.news-press-card:hover .news-view-clipping-btn {
   gap: 9px;
   color: #871f27;
}

/* ==========================================================================
   News & Press Coverage Mobile Responsive Styles (max-width: 768px)
   ========================================================================== */
@media (max-width: 768px) {

   /* Ticker Strip on Mobile */
   .exam-pattern-strip {
      padding: 14px 10px !important;
      border-radius: 16px !important;
      margin-bottom: 22px !important;
   }

   /* News Cards Grid on Mobile */
   .news-grid {
      grid-template-columns: 1fr !important;
      gap: 16px !important;
      margin-bottom: 30px !important;
   }

   .news-press-card {
      border-radius: 16px !important;
   }

   .news-press-thumb-wrap {
      aspect-ratio: 16 / 10 !important;
   }

   .news-press-overlay {
      opacity: 1 !important;
      background: linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0) 35%, rgba(15, 23, 42, 0.85) 100%) !important;
      padding: 10px 12px !important;
      pointer-events: none !important;
   }

   .news-press-overlay .gallery-zoom-action {
      display: none !important;
   }

   .news-press-body {
      padding: 14px 16px !important;
   }

   .news-press-title {
      font-size: 14.5px !important;
      line-height: 1.4 !important;
      margin-bottom: 8px !important;
   }

   .news-press-meta {
      padding-top: 10px !important;
      font-size: 11.5px !important;
   }

   .news-view-clipping-btn {
      font-size: 12px !important;
   }

   /* Lightbox Modal on Mobile */
   #newsLightbox .lightbox-main-img {
      max-height: 72vh !important;
      max-width: 95vw !important;
   }
}

/* ==========================================================================
   Modern FAQ Styles
   ========================================================================== */
.faq-search-card {
   background: #ffffff;
   border-radius: 20px;
   padding: 24px 28px;
   border: 1px solid rgba(22, 38, 84, 0.08);
   box-shadow: 0 10px 30px rgba(22, 38, 84, 0.05);
   margin-bottom: 40px;
}

.faq-search-input-wrap {
   position: relative;
   display: flex;
   align-items: center;
}

.faq-search-input-wrap i {
   position: absolute;
   left: 20px;
   font-size: 18px;
   color: #a72a33;
}

.faq-search-input {
   width: 100%;
   padding: 15px 50px 15px 54px;
   border-radius: 14px;
   border: 2px solid #e2e8f0;
   font-family: 'Sora', sans-serif;
   font-size: 15px;
   color: #162654;
   background: #f8fafc;
   outline: none;
   transition: all 0.25s ease;
}

.faq-search-input:focus {
   border-color: #a72a33;
   background: #ffffff;
   box-shadow: 0 0 0 4px rgba(167, 42, 51, 0.1);
}

.faq-search-clear {
   position: absolute;
   right: 18px;
   background: none;
   border: none;
   color: #94a3b8;
   font-size: 16px;
   cursor: pointer;
   display: none;
   padding: 4px;
}

.faq-search-clear:hover {
   color: #a72a33;
}

.faq-tag-pills {
   display: flex;
   align-items: center;
   gap: 8px;
   flex-wrap: wrap;
   margin-top: 16px;
}

.faq-tag-pill {
   font-size: 12px;
   font-weight: 700;
   padding: 5px 14px;
   border-radius: 20px;
   background: #f1f5f9;
   color: #64748b;
   border: 1px solid #e2e8f0;
   cursor: pointer;
   transition: all 0.2s ease;
}

.faq-tag-pill:hover,
.faq-tag-pill.active {
   background: #fee2e2;
   color: #a72a33;
   border-color: #fca5a5;
}

/* FAQ Accordions */
.faq-accordion-item {
   background: #ffffff;
   border-radius: 16px;
   border: 1px solid rgba(22, 38, 84, 0.08);
   box-shadow: 0 6px 20px rgba(22, 38, 84, 0.03);
   margin-bottom: 16px;
   overflow: hidden;
   transition: all 0.25s ease;
}

.faq-accordion-item:hover {
   border-color: rgba(167, 42, 51, 0.25);
   box-shadow: 0 10px 25px rgba(22, 38, 84, 0.07);
}

.faq-accordion-item.is-open {
   border-color: #a72a33;
   box-shadow: 0 12px 30px rgba(167, 42, 51, 0.08);
}

.faq-accordion-btn {
   width: 100%;
   padding: 20px 24px;
   background: transparent;
   border: none;
   text-align: left;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 16px;
   font-family: 'Sora', sans-serif;
   font-size: 16px;
   font-weight: 700;
   color: #162654;
   cursor: pointer;
   transition: color 0.2s ease;
}

.faq-accordion-item.is-open .faq-accordion-btn {
   color: #a72a33;
}

.faq-q-number {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 32px;
   height: 32px;
   border-radius: 8px;
   background: #fee2e2;
   color: #a72a33;
   font-size: 12px;
   font-weight: 800;
   flex-shrink: 0;
}

.faq-accordion-item.is-open .faq-q-number {
   background: #a72a33;
   color: #ffffff;
}

.faq-accordion-icon {
   width: 34px;
   height: 34px;
   border-radius: 50%;
   background: #f1f5f9;
   color: #64748b;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 13px;
   flex-shrink: 0;
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-accordion-item.is-open .faq-accordion-icon {
   background: #a72a33;
   color: #ffffff;
   transform: rotate(180deg);
}

.faq-accordion-content {
   max-height: 0;
   overflow: hidden;
   transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-accordion-body {
   padding: 0 24px 22px 64px;
   font-size: 14.5px;
   line-height: 1.7;
   color: #475569;
}

@media (max-width: 576px) {
   .faq-accordion-body {
      padding-left: 24px;
   }
}

.faq-highlight-box {
   background: #f8fafc;
   border-left: 4px solid #a72a33;
   border-radius: 0 10px 10px 0;
   padding: 12px 16px;
   margin-top: 10px;
   font-size: 13.5px;
   color: #1e293b;
}

/* FAQ Support Cards */
.faq-contact-card {
   background: #ffffff;
   border-radius: 20px;
   padding: 30px;
   border: 1px solid rgba(22, 38, 84, 0.08);
   box-shadow: 0 10px 30px rgba(22, 38, 84, 0.05);
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   transition: all 0.3s ease;
}

.faq-contact-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 16px 36px rgba(22, 38, 84, 0.1);
   border-color: rgba(167, 42, 51, 0.2);
}

.faq-contact-icon {
   width: 54px;
   height: 54px;
   border-radius: 14px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 24px;
   margin-bottom: 18px;
}

/* ==========================================================================
   Mobile Responsive FAQ Styles (<= 768px)
   ========================================================================== */
@media (max-width: 768px) {
   .faq-search-card {
      padding: 16px 14px;
      border-radius: 16px;
      margin-bottom: 24px;
   }

   .faq-search-input-wrap i {
      left: 14px;
      font-size: 15px;
   }

   .faq-search-input {
      padding: 12px 38px 12px 38px;
      font-size: 13.5px;
      border-radius: 12px;
   }

   .faq-search-input::placeholder {
      font-size: 12.5px;
   }

   .faq-search-clear {
      right: 12px;
      font-size: 14px;
   }

   .faq-tag-pills {
      flex-wrap: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 6px;
      margin-top: 12px;
      gap: 8px;
      scrollbar-width: none;
   }

   .faq-tag-pills::-webkit-scrollbar {
      display: none;
   }

   .faq-tag-pills>span {
      display: none;
      /* Hide static text to maximize horizontal chip swipe area */
   }

   .faq-tag-pill {
      white-space: nowrap;
      flex-shrink: 0;
      padding: 6px 14px;
      font-size: 12px;
      border-radius: 16px;
   }

   .faq-accordion-item {
      border-radius: 14px;
      margin-bottom: 12px;
   }

   .faq-accordion-btn {
      padding: 14px 14px;
      font-size: 14px;
      gap: 10px;
      align-items: flex-start;
   }

   .faq-accordion-btn>span:first-child {
      gap: 10px !important;
      align-items: flex-start !important;
   }

   .faq-accordion-btn>span:first-child>span:last-child {
      font-size: 13.5px;
      line-height: 1.45;
      padding-top: 2px;
   }

   .faq-q-number {
      width: 28px;
      height: 28px;
      font-size: 11px;
      border-radius: 6px;
      flex-shrink: 0;
      margin-top: 1px;
   }

   .faq-accordion-icon {
      width: 28px;
      height: 28px;
      font-size: 11px;
      flex-shrink: 0;
      margin-top: 2px;
   }

   .faq-accordion-body {
      padding: 0 14px 16px 14px;
      font-size: 13.5px;
      line-height: 1.6;
   }

   .faq-highlight-box {
      padding: 10px 12px;
      font-size: 12.5px;
      border-radius: 0 8px 8px 0;
   }

   .faq-contact-card {
      padding: 20px 18px;
      border-radius: 16px;
      margin-bottom: 0;
   }

   .faq-contact-icon {
      width: 44px;
      height: 44px;
      font-size: 20px;
      margin-bottom: 14px;
      border-radius: 12px;
   }

   .faq-contact-card h4 {
      font-size: 16px !important;
   }

   .faq-contact-card p {
      font-size: 13px !important;
      margin-bottom: 14px !important;
   }

   .faq-contact-card .btn {
      width: 100%;
      padding: 10px 16px;
      font-size: 13px;
   }

   .gallery-hero-image-card img {
      height: 200px !important;
   }

   .faq-cta-btn-wrap {
      flex-direction: column !important;
      width: 100%;
   }

   .faq-cta-btn-wrap .btn {
      width: 100%;
      padding: 12px 20px !important;
      font-size: 14px !important;
   }
}

/* ==========================================================================
   Modern Contact Us Styles
   ========================================================================== */
.contact-info-panel {
   background: linear-gradient(145deg, #162654 0%, #0f172a 100%);
   border-radius: 24px;
   padding: 36px;
   color: #ffffff;
   border: 1px solid rgba(255, 255, 255, 0.1);
   box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}

.contact-info-item {
   display: flex;
   align-items: flex-start;
   gap: 16px;
   margin-bottom: 26px;
}

.contact-info-icon {
   width: 46px;
   height: 46px;
   border-radius: 12px;
   background: rgba(167, 42, 51, 0.2);
   border: 1px solid rgba(167, 42, 51, 0.4);
   color: #facc15;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 18px;
   flex-shrink: 0;
}

.contact-info-text h5 {
   font-family: 'Sora', sans-serif;
   font-size: 13px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.8px;
   color: #94a3b8;
   margin-bottom: 4px;
}

.contact-info-text p,
.contact-info-text a {
   color: #f8fafc;
   font-size: 15px;
   line-height: 1.6;
   margin-bottom: 0;
   text-decoration: none;
   display: block;
   transition: color 0.2s ease;
}

.contact-info-text a:hover {
   color: #facc15;
}

.contact-crm-card {
   background: linear-gradient(145deg, #162654 0%, #0f172a 100%);
   border-radius: 24px;
   padding: 28px 26px;
   border: 1px solid rgba(255, 255, 255, 0.12);
   box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
   overflow: hidden;
   color: #ffffff;
}

.contact-crm-header {
   padding-bottom: 18px;
   margin-bottom: 16px;
   border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-crm-header h4 {
   font-family: 'Sora', sans-serif;
   font-size: 20px;
   font-weight: 800;
   color: #ffffff;
   margin-bottom: 4px;
}

.contact-crm-header p {
   color: #94a3b8 !important;
}

.contact-crm-card iframe {
   border-radius: 16px;
   background: transparent;
}

.campus-card {
   background: #ffffff;
   border-radius: 20px;
   padding: 26px;
   border: 1px solid rgba(22, 38, 84, 0.08);
   box-shadow: 0 10px 30px rgba(22, 38, 84, 0.04);
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.campus-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 18px 40px rgba(22, 38, 84, 0.12);
   border-color: rgba(167, 42, 51, 0.3);
}

.campus-card-header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 16px;
}

.campus-city-badge {
   font-family: 'Sora', sans-serif;
   font-size: 13px;
   font-weight: 800;
   padding: 5px 14px;
   border-radius: 30px;
   background: linear-gradient(135deg, #162654 0%, #1e3a8a 100%);
   color: #ffffff;
   letter-spacing: 0.5px;
}

.campus-type-badge {
   font-size: 11.5px;
   font-weight: 700;
   padding: 4px 12px;
   border-radius: 20px;
   background: #fee2e2;
   color: #a72a33;
}

.campus-address {
   font-size: 14px;
   line-height: 1.65;
   color: #334155;
   margin-bottom: 18px;
   min-height: 72px;
}

.campus-phones {
   font-size: 13px;
   color: #64748b;
   font-weight: 600;
   margin-bottom: 20px;
   display: flex;
   align-items: center;
   gap: 6px;
}

.campus-map-btn {
   width: 100%;
   padding: 10px 18px;
   border-radius: 12px;
   background: #f8fafc;
   border: 1px solid #e2e8f0;
   color: #162654;
   font-family: 'Sora', sans-serif;
   font-size: 13.5px;
   font-weight: 700;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   text-decoration: none;
   cursor: pointer;
   transition: all 0.25s ease;
}

.campus-map-btn:hover {
   background: linear-gradient(135deg, #a72a33 0%, #871f27 100%);
   color: #ffffff;
   border-color: #a72a33;
   box-shadow: 0 4px 14px rgba(167, 42, 51, 0.3);
}

/* ==========================================================================
   How to Register Modern Styles
   ========================================================================== */
.register-step-card {
   background: #ffffff;
   border-radius: 20px;
   padding: 32px 26px;
   border: 1px solid rgba(22, 38, 84, 0.08);
   box-shadow: 0 10px 30px rgba(22, 38, 84, 0.04);
   height: 100%;
   position: relative;
   overflow: hidden;
   transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
   display: flex;
   flex-direction: column;
   justify-content: space-between;
}

.register-step-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 18px 45px rgba(22, 38, 84, 0.12);
   border-color: rgba(167, 42, 51, 0.3);
}

.register-step-num {
   position: absolute;
   top: 20px;
   right: 24px;
   font-family: 'Sora', sans-serif;
   font-size: 32px;
   font-weight: 900;
   color: rgba(22, 38, 84, 0.08);
   transition: color 0.3s ease;
}

.register-step-card:hover .register-step-num {
   color: rgba(167, 42, 51, 0.15);
}

.register-step-icon {
   width: 60px;
   height: 60px;
   border-radius: 16px;
   background: #fee2e2;
   color: #a72a33;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 26px;
   margin-bottom: 22px;
   transition: all 0.3s ease;
}

.register-step-card:hover .register-step-icon {
   background: linear-gradient(135deg, #a72a33 0%, #871f27 100%);
   color: #ffffff;
   transform: scale(1.08);
   box-shadow: 0 6px 20px rgba(167, 42, 51, 0.3);
}

.register-step-title {
   font-family: 'Sora', sans-serif;
   font-size: 18px;
   font-weight: 800;
   color: #162654;
   margin-bottom: 12px;
   line-height: 1.35;
}

.register-step-desc {
   font-size: 14.5px;
   color: #64748b;
   line-height: 1.65;
   margin-bottom: 0;
}

.register-channel-card {
   background: #ffffff;
   border-radius: 24px;
   padding: 36px;
   border: 1px solid rgba(22, 38, 84, 0.08);
   box-shadow: 0 15px 40px rgba(22, 38, 84, 0.05);
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   transition: all 0.3s ease;
}

.register-channel-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 20px 50px rgba(22, 38, 84, 0.1);
}

.register-channel-card.featured {
   background: linear-gradient(145deg, #162654 0%, #0f172a 100%);
   color: #ffffff;
   border-color: rgba(255, 255, 255, 0.12);
}

.register-channel-card.featured h3 {
   color: #ffffff;
}

.register-channel-card.featured p {
   color: #cbd5e1;
}

/* Registration Step Slider Visibility Defaults */
.register-steps-desktop-view {
   display: block;
}

.register-steps-mobile-slider {
   display: none;
}

/* ==========================================================================
   Mobile Responsive Registration Styles (<= 768px)
   ========================================================================== */
@media (max-width: 768px) {
   .register-steps-desktop-view {
      display: none !important;
   }

   .register-steps-mobile-slider {
      display: block !important;
      width: 100% !important;
      margin-bottom: 36px !important;
   }

   .reg-step-pills-bar {
      display: flex !important;
      overflow-x: auto !important;
      white-space: nowrap !important;
      gap: 8px !important;
      padding: 4px 2px 12px 2px !important;
      margin-bottom: 12px !important;
      -webkit-overflow-scrolling: touch !important;
      scrollbar-width: none !important;
   }

   .reg-step-pills-bar::-webkit-scrollbar {
      display: none !important;
   }

   .reg-step-pill {
      flex: 0 0 auto !important;
      padding: 7px 14px !important;
      border-radius: 50px !important;
      border: 1.5px solid #e2e8f0 !important;
      background: #ffffff !important;
      color: #162654 !important;
      font-size: 12px !important;
      font-weight: 700 !important;
      cursor: pointer !important;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
      transition: all 0.25s ease !important;
      display: inline-flex !important;
      align-items: center !important;
      gap: 6px !important;
   }

   .reg-pill-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: #fee2e2;
      color: #a72a33;
      font-size: 10px;
      font-weight: 800;
   }

   .reg-step-pill.active {
      background: #162654 !important;
      color: #ffffff !important;
      border-color: #162654 !important;
      box-shadow: 0 4px 14px rgba(22, 38, 84, 0.22) !important;
   }

   .reg-step-pill.active .reg-pill-badge {
      background: #a72a33;
      color: #ffffff;
   }

   /* Slider Viewport & Track */
   .reg-step-viewport {
      width: 100% !important;
      overflow: hidden !important;
      position: relative !important;
      padding: 4px 0 8px 0 !important;
      border-radius: 20px !important;
      touch-action: pan-y !important;
   }

   .reg-step-track {
      display: flex !important;
      width: 100% !important;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
   }

   .reg-step-slide {
      flex: 0 0 100% !important;
      width: 100% !important;
      min-width: 100% !important;
      box-sizing: border-box !important;
      padding: 0 2px !important;
   }

   .reg-step-slide .register-step-card {
      min-height: 250px;
      height: 100%;
      margin-bottom: 0;
      box-shadow: 0 8px 24px rgba(22, 38, 84, 0.08);
   }

   /* Slider Controls */
   .reg-step-controls {
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 16px !important;
      margin-top: 14px !important;
   }

   .reg-step-nav-btn {
      width: 40px !important;
      height: 40px !important;
      border-radius: 50% !important;
      border: 1.5px solid #e2e8f0 !important;
      background: #ffffff !important;
      color: #162654 !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      font-size: 13.5px !important;
      cursor: pointer !important;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06) !important;
      transition: all 0.2s ease !important;
   }

   .reg-step-nav-btn:active {
      transform: scale(0.92) !important;
      background: #162654 !important;
      color: #ffffff !important;
   }

   .reg-step-dots {
      display: flex !important;
      align-items: center !important;
      gap: 7px !important;
   }

   .reg-step-dot {
      width: 8px !important;
      height: 8px !important;
      border-radius: 50% !important;
      background: #cbd5e1 !important;
      cursor: pointer !important;
      transition: all 0.3s ease !important;
   }

   .reg-step-dot.active {
      width: 24px !important;
      border-radius: 20px !important;
      background: #c81e2b !important;
   }

   .reg-step-swipe-hint {
      text-align: center !important;
      font-size: 12px !important;
      color: #94a3b8 !important;
      margin-top: 10px !important;
      font-weight: 500 !important;
   }

   .register-step-card {
      padding: 22px 18px;
      border-radius: 16px;
   }

   .register-step-num {
      font-size: 24px;
      top: 16px;
      right: 18px;
   }

   .register-step-icon {
      width: 48px;
      height: 48px;
      font-size: 20px;
      margin-bottom: 14px;
      border-radius: 12px;
   }

   .register-step-title {
      font-size: 16px;
      margin-bottom: 8px;
   }

   .register-step-desc {
      font-size: 13.5px;
      line-height: 1.55;
   }

   .register-channel-card {
      padding: 22px 18px;
      border-radius: 18px;
   }

   .register-channel-card h3 {
      font-size: 18px !important;
      margin-bottom: 10px !important;
   }

   .register-channel-card p {
      font-size: 13.5px !important;
      line-height: 1.6 !important;
      margin-bottom: 14px !important;
   }

   .register-channel-card ul {
      font-size: 13px !important;
      margin-bottom: 16px !important;
   }

   .register-btn-wrap {
      flex-direction: column !important;
      width: 100%;
   }

   .register-btn-wrap .btn {
      width: 100%;
      padding: 11px 18px !important;
      font-size: 13.5px !important;
      text-align: center;
   }

   .register-eligibility-card {
      padding: 20px 16px !important;
      border-radius: 18px !important;
   }

   .register-eligibility-card h3 {
      font-size: 20px !important;
   }

   .helpdesk-widget-card {
      padding: 20px 16px !important;
      border-radius: 18px !important;
      margin-top: 10px;
   }

   .helpdesk-widget-card h4 {
      font-size: 18px !important;
   }

   .helpdesk-widget-card p {
      font-size: 12.5px !important;
   }

   .helpdesk-btn-call,
   .helpdesk-btn-wa {
      padding: 10px 14px !important;
      font-size: 12.5px !important;
   }

   .gallery-hero-image-card .badge {
      font-size: 10.5px !important;
      padding: 4px 10px !important;
   }

   .gallery-hero-image-card h4 {
      font-size: 15px !important;
   }

   .gallery-hero-image-card .text-white-50 {
      font-size: 11.5px !important;
   }
}

div#newMobileOffcanvas {
   padding-top: 70px;
}

/* ==========================================================================
   Creative Mobile Sidebar Contact Support Buttons
   ========================================================================== */
.sidebar-support-wrap {
   margin-top: 18px;
   padding: 16px 18px 24px !important;
   background: linear-gradient(180deg, #f8fafc 0%, #eef2f6 100%);
   border-top: 1px solid #e2e8f0;
   border-bottom: 1px solid #e2e8f0;
}

.sidebar-support-header {
   margin-bottom: 12px;
}

.support-title {
   font-family: 'Sora', sans-serif;
   font-size: 11.5px;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.6px;
   color: #334155;
   display: flex;
   align-items: center;
}

.support-live-pill {
   display: inline-flex;
   align-items: center;
   gap: 5px;
   font-size: 10px;
   font-weight: 600;
   color: #059669;
   background: #d1fae5;
   padding: 2px 8px;
   border-radius: 20px;
   letter-spacing: 0.3px;
}

.live-pulse-dot {
   width: 6px;
   height: 6px;
   border-radius: 50%;
   background-color: #10b981;
   display: inline-block;
   animation: pulseDotLive 1.8s infinite ease-in-out;
}

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

.sidebar-contact-card {
   display: flex;
   align-items: center;
   gap: 12px;
   padding: 12px 14px;
   border-radius: 14px;
   text-decoration: none !important;
   position: relative;
   overflow: hidden;
   transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
   border: 1px solid transparent;
   -webkit-tap-highlight-color: transparent;
}

.sidebar-contact-card:active {
   transform: scale(0.98);
}

/* Card 1: Official Helpline (Deep Crimson Theme Brand) */
.sidebar-contact-card.card-helpline {
   background: linear-gradient(135deg, #a72a33 0%, #7b1d24 100%);
   color: #ffffff !important;
   box-shadow: 0 6px 18px rgba(167, 42, 51, 0.28);
   border: 1px solid rgba(255, 255, 255, 0.15);
}

.sidebar-contact-card.card-helpline:hover {
   background: linear-gradient(135deg, #b8333d 0%, #872629 100%);
   box-shadow: 0 8px 22px rgba(167, 42, 51, 0.4);
   transform: translateY(-2px);
}

/* Card 2: WhatsApp Assistance (Emerald WhatsApp Gradient) */
.sidebar-contact-card.card-whatsapp {
   background: linear-gradient(135deg, #22c55e 0%, #15803d 100%);
   color: #ffffff !important;
   box-shadow: 0 6px 18px rgba(34, 197, 94, 0.28);
   border: 1px solid rgba(255, 255, 255, 0.15);
}

.sidebar-contact-card.card-whatsapp:hover {
   background: linear-gradient(135deg, #25d366 0%, #166534 100%);
   box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4);
   transform: translateY(-2px);
}

/* Common Card Icon Box */
.contact-card-icon {
   width: 40px;
   height: 40px;
   border-radius: 11px;
   background: rgba(255, 255, 255, 0.18);
   backdrop-filter: blur(4px);
   -webkit-backdrop-filter: blur(4px);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 16px;
   color: #ffffff;
   flex-shrink: 0;
   border: 1px solid rgba(255, 255, 255, 0.25);
   transition: transform 0.25s ease;
}

.sidebar-contact-card:hover .contact-card-icon {
   transform: scale(1.08) rotate(-4deg);
}

.contact-card-body {
   display: flex;
   flex-direction: column;
   min-width: 0;
   flex: 1;
}

.contact-sub {
   font-size: 10px;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   color: rgba(255, 255, 255, 0.85);
   font-weight: 600;
   line-height: 1.2;
   margin-bottom: 2px;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
}

.contact-main {
   font-family: 'Sora', sans-serif;
   font-size: 13.5px;
   font-weight: 700;
   color: #ffffff;
   line-height: 1.25;
   letter-spacing: -0.2px;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
}

.contact-card-action {
   flex-shrink: 0;
   display: flex;
   align-items: center;
   justify-content: center;
}

.action-pill {
   width: 28px;
   height: 28px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.2);
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 11px;
   color: #ffffff;
   border: 1px solid rgba(255, 255, 255, 0.3);
   transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.sidebar-contact-card:hover .action-pill {
   background: #ffffff;
   transform: translateX(2px);
}

.sidebar-contact-card.card-helpline:hover .action-pill {
   color: #a72a33;
}

.sidebar-contact-card.card-whatsapp:hover .action-pill {
   color: #15803d;
}