/* ============================================================
       COMPLETE FINAL STYLES - ALL DEVICES
       ============================================================ */

    :root {
      --primary: #f57327;
      --primary-dark: #d45500;
      --primary-gradient: linear-gradient(135deg, #f57327, #d45500);
      --secondary: #1a1a2e;
      --dark: #0d0d1a;
      --shadow: 0 10px 30px rgba(0,0,0,0.08);
      --shadow-hover: 0 15px 40px rgba(245,115,39,0.2);
      --radius: 14px;
    }

    /* ===== RESET ===== */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { font-size: 16px; -webkit-text-size-adjust: 100%; }
    body { 
      font-family: 'Poppins', sans-serif; 
      background: #f8f9fa; 
      color: #1e293b; 
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; height: auto; }
    ul { list-style: none; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

    /* ===== SCROLLBAR ===== */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: #1a1a2e; }
    ::-webkit-scrollbar-thumb { background: var(--primary-gradient); border-radius: 10px; }

    /* ============================================================
       TOP BAR
       ============================================================ */
    .top-bar {
      background: #0d0d1a; 
      color: #fff; 
      padding: 6px 0;
      border-bottom: 2px solid var(--primary); 
      position: relative; 
      z-index: 1001;
    }
    .top-bar .container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 6px 12px;
    }
    .top-bar-left {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 6px 14px;
    }
    .top-bar-left a {
      color: #94a3b8; 
      font-size: 12px;
      transition: 0.3s;
      display: inline-flex; 
      align-items: center; 
      gap: 5px;
      white-space: nowrap;
    }
    .top-bar-left a:hover { color: var(--primary); }
    .top-bar-left a i { color: var(--primary); font-size: 12px; }
    .top-bar-right {
      display: flex; 
      gap: 6px;
      flex-wrap: wrap;
    }
    .top-bar-right .btn-sm {
      padding: 4px 14px; 
      border-radius: 30px; 
      font-size: 11px; 
      font-weight: 600;
      background: var(--primary-gradient); 
      color: #fff;
      transition: 0.3s;
      display: inline-flex; 
      align-items: center; 
      gap: 4px;
      white-space: nowrap;
    }
    .top-bar-right .btn-sm:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(245,115,39,0.3);
    }
    @media (max-width: 768px) {
      .top-bar .container { flex-direction: column; gap: 4px; }
      .top-bar-left { justify-content: center; gap: 4px 10px; }
      .top-bar-left a { font-size: 10px; }
      .top-bar-left a span { display: none; }
      .top-bar-right .btn-sm { font-size: 9px; padding: 3px 10px; }
    }

    /* ============================================================
       TOP SCROLL MENU
       ============================================================ */
    .top-scroll-bar {
      width: 100%;
      background: rgba(0, 0, 0, 0.92);
      backdrop-filter: blur(10px);
      padding: 8px 16px;
      border-bottom: 1px solid rgba(245,115,39,0.15);
      overflow-x: auto;
      overflow-y: hidden;
      -webkit-overflow-scrolling: touch;
      box-shadow: 0 4px 20px rgba(245,115,39,0.1);
      position: sticky;
      top: 0;
      z-index: 9999;
      scrollbar-width: none;
      display: flex;
      flex-wrap: nowrap;
      gap: 8px;
    }
    .top-scroll-bar::-webkit-scrollbar { display: none; }
    .menu-item {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: rgba(50,50,50,0.95);
      padding: 6px 14px;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.08);
      text-align: center;
      min-width: 80px;
      font-size: 10px;
      font-weight: 600;
      color: #fff;
      transition: all 0.25s ease;
      flex-shrink: 0;
      cursor: pointer;
    }
    .menu-item i {
      font-size: 15px;
      display: block;
      margin-bottom: 2px;
      color: var(--primary);
    }
    .menu-item:hover {
      transform: scale(1.05);
      background: var(--primary-gradient);
      box-shadow: 0 5px 15px rgba(245,115,39,0.4);
      border-color: #fff;
    }
    .menu-item.red-btn { background: linear-gradient(135deg, #f57327, #d45500); }
    @media (max-width: 480px) {
      .menu-item { min-width: 65px; padding: 4px 8px; font-size: 8px; }
      .menu-item i { font-size: 12px; }
      .top-scroll-bar { gap: 5px; padding: 5px 10px; }
    }

    /* ============================================================
       HEADER / NAVBAR - COMPLETE FIXED
       ============================================================ */
    header {
      background: #1a1a2e !important;
      position: sticky !important;
      top: 0 !important;
      z-index: 99999 !important;
      border-bottom: 1px solid rgba(245,115,39,0.1) !important;
    }
    .navbar {
      background: #1a1a2e !important;
      display: flex !important;
      align-items: center !important;
      justify-content: space-between !important;
      padding: 6px 0 !important;
      min-height: 52px !important;
      gap: 10px !important;
    }
    .brand {
      font-size: 18px !important;
      font-weight: 800 !important;
      color: #fff !important;
      display: flex !important;
      align-items: center !important;
      gap: 6px !important;
      flex-shrink: 0 !important;
    }
    .brand i { color: #f57327 !important; font-size: 20px !important; }
    .brand span {
      background: linear-gradient(135deg, #f57327, #d45500) !important;
      -webkit-background-clip: text !important;
      -webkit-text-fill-color: transparent !important;
    }

    .menu-toggle {
      display: none !important;
      background: transparent !important;
      border: 2px solid rgba(255,255,255,0.12) !important;
      border-radius: 6px !important;
      padding: 5px 8px !important;
      cursor: pointer !important;
      flex-shrink: 0 !important;
      z-index: 100000 !important;
    }
    .menu-toggle span {
      display: block !important;
      width: 22px !important;
      height: 2.5px !important;
      background: #fff !important;
      margin: 4px 0 !important;
      border-radius: 2px !important;
    }

    .nav-links {
      display: flex !important;
      flex-wrap: wrap !important;
      align-items: center !important;
      list-style: none !important;
      gap: 0 !important;
      background: transparent !important;
    }
    .nav-links > li > a {
      display: flex !important;
      align-items: center !important;
      gap: 4px !important;
      padding: 6px 12px !important;
      color: #fff !important;
      font-weight: 500 !important;
      font-size: 12px !important;
      white-space: nowrap !important;
      cursor: pointer !important;
      background: transparent !important;
    }
    .nav-links > li > a:hover {
      background: linear-gradient(135deg, #f57327, #d45500) !important;
      border-radius: 6px !important;
      transform: translateY(-2px) !important;
    }
    .nav-links > li > a i { font-size: 9px !important; }

    /* ===== SUB-MENU DESKTOP - RIGHT SIDE OPEN ===== */
    @media (min-width: 993px) {
      .nav-links > li {
        position: relative !important;
      }
      .sub-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        min-width: 220px !important;
        background: #1a1a2e !important;
        border-radius: 10px !important;
        box-shadow: 0 20px 60px rgba(0,0,0,0.6) !important;
        border: 1px solid rgba(245,115,39,0.1) !important;
        padding: 6px 0 !important;
        z-index: 99999 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(10px) !important;
        transition: all 0.25s ease !important;
      }
      .nav-links > li:hover > .sub-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
      }
      .sub-menu li {
        position: relative !important;
      }
      .sub-menu li > .sub-menu {
        position: absolute !important;
        top: -6px !important;
        left: 100% !important;
        min-width: 220px !important;
        background: #1a1a2e !important;
        border-radius: 10px !important;
        box-shadow: 0 20px 60px rgba(0,0,0,0.6) !important;
        border: 1px solid rgba(245,115,39,0.1) !important;
        padding: 6px 0 !important;
        z-index: 99999 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateX(10px) !important;
        transition: all 0.25s ease !important;
      }
      .sub-menu li:hover > .sub-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(0) !important;
      }
      .sub-menu a {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 8px 16px !important;
        color: #e0e0e0 !important;
        font-size: 12px !important;
        transition: all 0.3s ease !important;
        white-space: nowrap !important;
      }
      .sub-menu a:hover {
        background: linear-gradient(135deg, #f57327, #d45500) !important;
        color: #fff !important;
        padding-left: 20px !important;
      }
      .sub-menu a i {
        font-size: 10px !important;
        color: #94a3b8 !important;
        margin-left: 8px !important;
      }
      .sub-menu a:hover i { color: #fff !important; }
    }

    /* ===== MOBILE NAV ===== */
    @media (max-width: 992px) {
      .menu-toggle {
        display: block !important;
      }
      .nav-links {
        display: none !important;
        flex-direction: column !important;
        width: 100% !important;
        background: #1a1a2e !important;
        padding: 10px 0 !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        box-shadow: 0 20px 60px rgba(0,0,0,0.5) !important;
        border-top: 1px solid rgba(255,255,255,0.04) !important;
        max-height: 70vh !important;
        overflow-y: auto !important;
        z-index: 99999 !important;
      }
      .nav-links.open {
        display: flex !important;
      }
      .nav-links li {
        width: 100% !important;
      }
      .nav-links li a {
        padding: 10px 18px !important;
        font-size: 13px !important;
        border-bottom: 1px solid rgba(255,255,255,0.04) !important;
        white-space: normal !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        color: #ffffff !important;
      }
      .nav-links li a .fa-chevron-down,
      .nav-links li a .fa-angle-right {
        margin-left: auto !important;
      }
      
      /* ===== MOBILE SUB-MENU - WHITE TEXT + CLICKABLE ===== */
      .sub-menu {
        position: static !important;
        box-shadow: none !important;
        border: none !important;
        background: #1a1a2e !important;
        padding: 0 !important;
        display: none !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        left: 0 !important;
        top: 0 !important;
      }
      .sub-menu.show {
        display: block !important;
      }
      .sub-menu a {
        padding: 10px 24px !important;
        font-size: 13px !important;
        border-bottom: 1px solid rgba(255,255,255,0.05) !important;
        white-space: normal !important;
        color: #ffffff !important;
        background: transparent !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
      }
      .sub-menu a:hover,
      .sub-menu a:active {
        background: #f57327 !important;
        color: #fff !important;
        padding-left: 28px !important;
      }
      .sub-menu a i {
        color: #94a3b8 !important;
        font-size: 12px !important;
      }
      .sub-menu a:hover i {
        color: #fff !important;
      }
      .sub-menu .sub-menu {
        padding-left: 16px !important;
        background: #0d0d1a !important;
      }
      .sub-menu .sub-menu a {
        padding: 8px 30px !important;
        font-size: 12px !important;
      }
      .sub-menu .sub-menu a:hover,
      .sub-menu .sub-menu a:active {
        padding-left: 34px !important;
      }
    }

    @media (max-width: 480px) {
      .brand { font-size: 14px !important; }
      .brand i { font-size: 16px !important; }
      .menu-toggle { padding: 4px 6px !important; }
      .menu-toggle span { width: 18px !important; height: 2px !important; margin: 3px 0 !important; }
      .nav-links li a { padding: 8px 14px !important; font-size: 12px !important; }
      .sub-menu a { padding: 8px 20px !important; font-size: 12px !important; }
      .sub-menu .sub-menu a { padding: 6px 24px !important; font-size: 11px !important; }
    }

    /* ============================================================
       HERO BANNER
       ============================================================ */
    .hero-banner {
      background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 50%, #0d0d2b 100%);
      padding: 60px 0 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero-banner .hero-badge {
      display: inline-block;
      background: var(--primary-gradient);
      color: #fff;
      padding: 4px 16px;
      border-radius: 50px;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }
    .hero-banner h1 {
      font-size: 2.4rem;
      font-weight: 900;
      line-height: 1.15;
      color: #fff;
      position: relative;
      z-index: 1;
    }
    .hero-banner h1 .highlight {
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-banner p {
      color: rgba(255,255,255,0.7);
      font-size: 0.9rem;
      line-height: 1.7;
      max-width: 700px;
      margin: 12px auto 0;
      position: relative;
      z-index: 1;
    }
    .hero-banner .hero-stats {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
      position: relative;
      z-index: 1;
      flex-wrap: wrap;
    }
    .hero-banner .hero-stats .stat .num {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--primary);
    }
    .hero-banner .hero-stats .stat .label {
      font-size: 0.7rem;
      color: rgba(255,255,255,0.6);
    }
    .hero-btns {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 25px;
      position: relative;
      z-index: 1;
    }
    .btn-primary {
      display: inline-block;
      background: var(--primary-gradient);
      color: #fff;
      padding: 10px 28px;
      border-radius: 50px;
      font-weight: 700;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px rgba(245,115,39,0.35);
      font-size: 13px;
    }
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(245,115,39,0.5);
      color: #fff;
    }
    .btn-outline {
      display: inline-block;
      background: transparent;
      color: #fff;
      padding: 10px 28px;
      border-radius: 50px;
      font-weight: 700;
      border: 2px solid rgba(255,255,255,0.2);
      transition: all 0.3s ease;
      font-size: 13px;
    }
    .btn-outline:hover {
      background: rgba(255,255,255,0.08);
      border-color: var(--primary);
      color: #fff;
    }
    @media (max-width: 480px) {
      .hero-banner { padding: 40px 0 30px; }
      .hero-banner h1 { font-size: 1.8rem; }
      .hero-banner p { font-size: 0.8rem; }
      .hero-banner .hero-stats { gap: 12px; }
      .hero-banner .hero-stats .stat .num { font-size: 1.4rem; }
      .btn-primary, .btn-outline { padding: 8px 20px; font-size: 12px; }
    }

    /* ============================================================
       SECTION TITLE
       ============================================================ */
    .section-title {
      font-size: 1.8rem;
      font-weight: 800;
      text-align: center;
      position: relative;
      display: inline-block;
    }
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 3px;
      background: var(--primary-gradient);
      border-radius: 4px;
    }
    .section-title .highlight {
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .section-subtitle {
      text-align: center;
      color: #6c757d;
      max-width: 700px;
      margin: 10px auto 0;
      font-size: 0.85rem;
    }
    @media (min-width: 768px) {
      .section-title { font-size: 2.2rem; }
      .section-title::after { width: 70px; height: 3px; }
    }

    /* ============================================================
       BREADCRUMB
       ============================================================ */
    .breadcrumb {
      background: #f8f9fa;
      padding: 10px 0;
      border-bottom: 1px solid #eee;
    }
    .breadcrumb ul {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      font-size: 13px;
      align-items: center;
    }
    .breadcrumb ul li a { color: #1a1a2e; transition: all 0.3s ease; }
    .breadcrumb ul li a:hover { color: var(--primary); }
    .breadcrumb ul li span { color: #999; }
    .breadcrumb ul .active { color: var(--primary); font-weight: 600; }
    @media (max-width: 480px) { .breadcrumb ul { font-size: 11px; } }

    /* ============================================================
       PRICING CARD
       ============================================================ */
    .pricing-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 20px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(245,115,39,0.08);
      transition: all 0.3s ease;
      height: 100%;
    }
    .pricing-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
      border-color: var(--primary);
    }
    .pricing-card .price {
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--primary);
    }
    .pricing-card .price del {
      font-size: 0.9rem;
      color: #999;
      font-weight: 400;
    }
    .badge-offer {
      display: inline-block;
      padding: 3px 14px;
      background: var(--primary-gradient);
      color: #fff;
      border-radius: 50px;
      font-size: 0.6rem;
      font-weight: 600;
      text-transform: uppercase;
    }
    .premium-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .premium-list li {
      padding: 5px 0;
      padding-left: 24px;
      position: relative;
      border-bottom: 1px solid rgba(0,0,0,0.05);
      font-size: 13px;
    }
    .premium-list li:last-child { border-bottom: none; }
    .premium-list li::before {
      content: '✦';
      position: absolute;
      left: 0;
      top: 5px;
      color: var(--primary);
      font-size: 0.9rem;
    }
    .pricing-card .btn-primary-block {
      display: block;
      width: 100%;
      text-align: center;
      padding: 10px;
      border-radius: 50px;
      background: var(--primary-gradient);
      color: #fff;
      font-weight: 600;
      font-size: 14px;
      transition: all 0.3s ease;
      border: none;
    }
    .pricing-card .btn-primary-block:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(245,115,39,0.35);
    }

    /* ============================================================
       MAIN CONTENT
       ============================================================ */
    .main-content p {
      font-size: 0.95rem;
      line-height: 1.8;
      color: #444;
    }
    .main-content h2 { font-size: 1.5rem; font-weight: 700; }
    .main-content h3 { font-size: 1.2rem; font-weight: 700; }
    .img-zoom {
      overflow: hidden;
      border-radius: var(--radius);
    }
    .img-zoom img {
      transition: transform 0.6s ease;
      width: 100%;
      height: auto;
    }
    .img-zoom:hover img { transform: scale(1.03); }

    /* ============================================================
       ACCORDION
       ============================================================ */
    .accordion-item {
      border: none !important;
      border-radius: 12px !important;
      overflow: hidden;
      margin-bottom: 12px;
      box-shadow: var(--shadow);
    }
    .accordion-button {
      font-weight: 700;
      padding: 14px 18px;
      background: #fff;
      color: #1a1a2e;
      font-size: 14px;
      width: 100%;
      border: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .accordion-button:hover { background: #f8f9fa; }
    .accordion-button .accordion-icon {
      transition: transform 0.3s ease;
      color: var(--primary);
    }
    .accordion-button.active .accordion-icon { transform: rotate(180deg); }
    .accordion-body {
      padding: 16px 18px;
      background: #fafafa;
    }
    .badge-float {
      float: right;
      padding: 2px 10px;
      border-radius: 50px;
      font-size: 10px;
      font-weight: 600;
      color: #fff;
    }
    .badge-float.primary { background: var(--primary); }
    .badge-float.success { background: #198754; }
    .badge-float.warning { background: #ffc107; color: #000; }

    /* ============================================================
       GLASS CARD - FACULTY
       ============================================================ */
    .glass-card {
      background: #fff;
      border: 1px solid #eee;
      border-radius: var(--radius);
      padding: 16px;
      transition: all 0.3s ease;
      text-align: center;
    }
    .glass-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
      border-color: var(--primary);
    }
    .glass-card h5 {
      font-size: 0.95rem;
      font-weight: 700;
      margin: 6px 0 2px;
    }
    .glass-card p {
      font-size: 0.8rem;
      color: #6c757d;
    }

    /* ============================================================
       COURSE SECTION
       ============================================================ */
    .course-row {
      display: flex;
      flex-wrap: wrap;
      margin: 0 -10px;
    }
    .course-sidebar-col {
      padding: 0 10px;
      margin-bottom: 16px;
    }
    .course-content-col {
      padding: 0 10px;
    }
    @media (max-width: 768px) {
      .course-sidebar-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        order: 2 !important;
      }
      .course-content-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        order: 1 !important;
      }
      .pricing-card { padding: 16px !important; }
      .pricing-card .price { font-size: 1.8rem !important; }
    }
    @media (min-width: 769px) and (max-width: 1024px) {
      .course-sidebar-col { flex: 0 0 30% !important; max-width: 30% !important; }
      .course-content-col { flex: 0 0 70% !important; max-width: 70% !important; }
    }
    @media (min-width: 1025px) {
      .course-sidebar-col { flex: 0 0 25% !important; max-width: 25% !important; }
      .course-content-col { flex: 0 0 75% !important; max-width: 75% !important; }
    }

    /* ============================================================
       FACULTY SECTION
       ============================================================ */
    .faculty-row {
      display: flex;
      flex-wrap: wrap;
      margin: 0 -10px;
    }
    .faculty-col {
      padding: 0 10px;
      margin-bottom: 16px;
    }
    @media (max-width: 576px) {
      .faculty-col { flex: 0 0 100% !important; max-width: 100% !important; }
      .glass-card img { width: 70px !important; height: 70px !important; }
    }
    @media (min-width: 577px) and (max-width: 992px) {
      .faculty-col { flex: 0 0 50% !important; max-width: 50% !important; }
    }
    @media (min-width: 993px) {
      .faculty-col { flex: 0 0 33.333% !important; max-width: 33.333% !important; }
    }

    /* ============================================================
       DEMO CLASSES - MODIFIED
       ============================================================ */
    .demo-section {
      padding: 50px 0 40px;
      background: #f5f7fb;
    }
    .demo-card {
      background: #fff;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: all 0.4s ease;
      border: 1px solid rgba(245,115,39,0.06);
      height: 100%;
    }
    .demo-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
      border-color: var(--primary);
    }
    .demo-card .demo-image {
      position: relative;
      overflow: hidden;
      height: 180px;
    }
    .demo-card .demo-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .demo-card:hover .demo-image img { transform: scale(1.05); }
    .demo-card .demo-image .demo-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      padding: 3px 14px;
      border-radius: 50px;
      font-size: 9px;
      font-weight: 700;
      color: #fff;
      background: var(--primary-gradient);
      text-transform: uppercase;
    }
    .demo-card .demo-body {
      padding: 16px;
      text-align: center;
    }
    .demo-card .demo-body h4 { font-size: 1rem; font-weight: 700; }
    .demo-card .demo-body .demo-faculty {
      color: var(--primary);
      font-size: 0.8rem;
      font-weight: 600;
    }
    .demo-card .demo-body .demo-meta {
      display: flex;
      justify-content: center;
      gap: 12px;
      font-size: 11px;
      color: #6c757d;
      margin: 4px 0 8px;
    }
    .demo-card .demo-body .demo-meta i {
      color: var(--primary);
      margin-right: 3px;
    }
    .demo-card .demo-body .demo-batch-label {
      display: inline-block;
      background: rgba(245,115,39,0.08);
      color: var(--primary);
      padding: 2px 12px;
      border-radius: 50px;
      font-size: 9px;
      font-weight: 600;
    }
    .demo-card .demo-body .demo-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      justify-content: center;
      margin-top: 10px;
    }
    .demo-card .demo-body .demo-btns .btn-sm {
      padding: 5px 16px;
      border-radius: 30px;
      font-size: 10px;
      font-weight: 600;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
    }
    .demo-card .demo-body .demo-btns .btn-sm.watch {
      background: #ff0000;
      color: #fff;
    }
    .demo-card .demo-body .demo-btns .btn-sm.watch:hover {
      background: #cc0000;
      transform: translateY(-2px);
    }
    .demo-card .demo-body .demo-btns .btn-sm.enroll {
      background: var(--primary-gradient);
      color: #fff;
    }
    .demo-card .demo-body .demo-btns .btn-sm.enroll:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(245,115,39,0.35);
    }
    .swiper { padding-bottom: 30px; }
    .swiper-slide { display: flex; justify-content: center; height: auto; }
    .swiper-pagination-bullet { background: #cfd8e3; opacity: 0.6; }
    .swiper-pagination-bullet-active { background: var(--primary); opacity: 1; }
    @media (max-width: 480px) {
      .demo-card .demo-image { height: 140px; }
      .demo-card .demo-body { padding: 12px; }
      .demo-card .demo-body h4 { font-size: 0.85rem; }
    }

    /* ============================================================
       BATCH CARDS
       ============================================================ */
    .batch-grid-jvvnl {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-top: 20px;
    }
    @media (min-width: 576px) {
      .batch-grid-jvvnl { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    }
    @media (min-width: 992px) {
      .batch-grid-jvvnl { grid-template-columns: repeat(3, 1fr); gap: 25px; }
    }
    .batch-card-jvvnl {
      background: #fff;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: all 0.4s ease;
      border: 1px solid rgba(245,115,39,0.06);
      display: flex;
      flex-direction: column;
    }
    .batch-card-jvvnl:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
      border-color: var(--primary);
    }
    .batch-card-jvvnl .batch-image {
      position: relative;
      overflow: hidden;
      height: 160px;
      flex-shrink: 0;
    }
    .batch-card-jvvnl .batch-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .batch-card-jvvnl:hover .batch-image img { transform: scale(1.05); }
    .batch-card-jvvnl .batch-image .batch-tag {
      position: absolute;
      top: 10px;
      right: 10px;
      padding: 3px 14px;
      border-radius: 50px;
      font-size: 9px;
      font-weight: 700;
      color: #fff;
      background: rgba(0,0,0,0.7);
      text-transform: uppercase;
    }
    .batch-card-jvvnl .batch-image .batch-tag.featured { background: var(--primary-gradient); }
    .batch-card-jvvnl .batch-image .batch-tag.premium {
      background: linear-gradient(135deg, #ffd700, #f5a623);
      color: #1a1a2e;
    }
    .batch-card-jvvnl .batch-body {
      padding: 16px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .batch-card-jvvnl .batch-body .batch-type {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 11px;
      font-weight: 600;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 0.3px;
    }
    .batch-card-jvvnl .batch-body h3 {
      font-size: 1rem;
      font-weight: 700;
      margin: 4px 0 8px;
    }
    .batch-card-jvvnl .batch-body .batch-meta {
      display: flex;
      gap: 10px;
      font-size: 11px;
      color: #6c757d;
      margin-bottom: 8px;
      flex-wrap: wrap;
    }
    .batch-card-jvvnl .batch-body .batch-meta i {
      color: var(--primary);
      margin-right: 3px;
    }
    .batch-card-jvvnl .batch-body .batch-price {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 8px;
      flex-wrap: wrap;
    }
    .batch-card-jvvnl .batch-body .batch-price del {
      font-size: 13px;
      color: #999;
    }
    .batch-card-jvvnl .batch-body .batch-price .price {
      font-size: 22px;
      font-weight: 800;
      color: var(--primary);
    }
    .batch-card-jvvnl .batch-body .batch-price .discount {
      background: #dc3545;
      color: #fff;
      font-size: 9px;
      font-weight: 700;
      padding: 2px 10px;
      border-radius: 50px;
    }
    .batch-card-jvvnl .batch-body .batch-features {
      display: flex;
      flex-direction: column;
      gap: 3px;
      margin-bottom: 12px;
      flex: 1;
    }
    .batch-card-jvvnl .batch-body .batch-features span {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      color: #444;
    }
    .batch-card-jvvnl .batch-body .batch-features span i {
      color: #28a745;
      font-size: 12px;
    }
    .batch-card-jvvnl .batch-body .batch-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      width: 100%;
      padding: 8px 16px;
      background: #f8f9fa;
      color: #1a1a2e;
      border: 2px solid #e9ecef;
      border-radius: 8px;
      font-size: 12px;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    .batch-card-jvvnl .batch-body .batch-btn:hover {
      background: var(--primary-gradient);
      color: #fff;
      border-color: var(--primary);
      transform: translateY(-2px);
    }
    .batch-card-jvvnl .batch-body .batch-btn.primary {
      background: var(--primary-gradient);
      color: #fff;
      border-color: var(--primary);
    }
    .batch-card-jvvnl .batch-body .batch-btn.premium-btn {
      background: linear-gradient(135deg, #ffd700, #f5a623);
      color: #1a1a2e;
      border-color: #ffd700;
    }
    .trust-badges {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
      padding-top: 20px;
      border-top: 1px solid rgba(0,0,0,0.06);
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      color: #444;
      font-weight: 500;
    }
    .trust-item i {
      font-size: 16px;
      color: var(--primary);
    }
    @media (max-width: 480px) {
      .batch-card-jvvnl .batch-image { height: 130px; }
      .batch-card-jvvnl .batch-body { padding: 12px; }
      .batch-card-jvvnl .batch-body h3 { font-size: 0.9rem; }
      .batch-card-jvvnl .batch-body .batch-price .price { font-size: 18px; }
      .trust-badges { gap: 10px; }
      .trust-item { font-size: 10px; }
    }

    /* ============================================================
       ACHIEVEMENTS
       ============================================================ */
    .achievement-grid-jvvnl {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 16px;
    }
    .achievement-card-jvvnl {
      background: #fff;
      border-radius: var(--radius);
      padding: 20px 15px;
      text-align: center;
      box-shadow: var(--shadow);
      transition: all 0.4s ease;
      border: 1px solid rgba(245,115,39,0.06);
    }
    .achievement-card-jvvnl:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
      border-color: var(--primary);
    }
    .achievement-card-jvvnl .icon {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: 6px;
    }
    .achievement-card-jvvnl .num {
      font-size: 2rem;
      font-weight: 900;
      color: var(--primary);
    }
    .achievement-card-jvvnl .label {
      font-size: 0.9rem;
      font-weight: 600;
      margin-top: 3px;
    }
    .achievement-card-jvvnl .desc {
      font-size: 0.75rem;
      color: #6c757d;
      margin-top: 3px;
    }
    @media (min-width: 576px) {
      .achievement-grid-jvvnl { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    }
    @media (max-width: 480px) {
      .achievement-card-jvvnl { padding: 14px 10px; }
      .achievement-card-jvvnl .num { font-size: 1.5rem; }
      .achievement-card-jvvnl .icon { font-size: 1.5rem; }
      .achievement-card-jvvnl .label { font-size: 0.75rem; }
      .achievement-grid-jvvnl { gap: 10px; }
    }

/* ============================================================
       FLOATING ELEMENTS
       ============================================================ */
    .back-to-top {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 36px;
      height: 36px;
      background: var(--primary-gradient);
      border: none;
      border-radius: 50%;
      color: #fff;
      font-size: 14px;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: all 0.3s ease;
      z-index: 1000;
      box-shadow: 0 4px 15px rgba(245,115,39,0.3);
    }
    .back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

    /* ============================================================
       NEW - FLOATING HARCOPY BOOK + MOCK TEST BUTTON - RED COLOR
       ============================================================ */
    .float-book-mock {
      position: fixed;
      bottom: 130px;
      right: 20px;
      z-index: 999;
      background: linear-gradient(135deg, #e63946, #c62828);
      color: #fff;
      padding: 10px 16px;
      border-radius: 50px;
      box-shadow: 0 8px 30px rgba(230, 57, 70, 0.5);
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 700;
      font-size: 11px;
      transition: all 0.3s ease;
      animation: floatBook 3s ease-in-out infinite;
      border: none;
      cursor: pointer;
      text-decoration: none;
      white-space: nowrap;
    }
    .float-book-mock i {
      font-size: 16px;
    }
    .float-book-mock:hover {
      transform: scale(1.08) translateY(-3px);
      box-shadow: 0 12px 40px rgba(230, 57, 70, 0.6);
      background: linear-gradient(135deg, #d62828, #b71c1c);
      color: #fff;
    }
    @keyframes floatBook {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    /* WhatsApp Float - Position adjust */
    .whatsapp-float {
      position: fixed;
      bottom: 70px;
      right: 20px;
      z-index: 999;
      background: linear-gradient(135deg, #25d366, #128C7E);
      color: #fff;
      padding: 8px 14px;
      border-radius: 50px;
      box-shadow: 0 8px 30px rgba(37,211,102,0.35);
      display: flex;
      align-items: center;
      gap: 6px;
      font-weight: 600;
      transition: all 0.3s ease;
      animation: floatWA 3s ease-in-out infinite;
      font-size: 11px;
    }
    @keyframes floatWA {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }
    .whatsapp-float:hover { transform: scale(1.05); color: #fff; }

    /* Enquiry Button - Position adjust */
    .enquiry-btn {
      position: fixed;
      bottom: 15px;
      left: 15px;
      z-index: 9999;
      padding: 10px 20px;
      font-size: 13px;
      font-weight: 700;
      border-radius: 50px;
      border: 0;
      cursor: pointer;
      background: var(--primary-gradient);
      color: #fff;
      box-shadow: 0 4px 15px rgba(0,0,0,0.25);
      animation: slideIn 0.8s forwards, pulseBtn 2.2s infinite 1s;
    }
    @keyframes slideIn {
      from { opacity: 0; transform: translateY(100px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes pulseBtn {
      0%,100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }

    /* Mobile adjustments for floating buttons */
    @media (max-width: 480px) {
      .float-book-mock {
        bottom: 115px;
        right: 10px;
        padding: 8px 12px;
        font-size: 9px;
      }
      .float-book-mock i {
        font-size: 13px;
      }
      .whatsapp-float {
        bottom: 60px;
        right: 10px;
        padding: 6px 12px;
        font-size: 9px;
      }
      .enquiry-btn {
        bottom: 10px;
        left: 10px;
        padding: 6px 14px;
        font-size: 11px;
        z-index: 9999;
      }
    }

    /* ============================================================
       ENQUIRY POPUP
       ============================================================ */
    .popup {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 100000;
      background: rgba(0,0,0,0.7);
      align-items: center;
      justify-content: center;
      padding: 15px;
      opacity: 0;
      transition: opacity 0.3s ease;
      backdrop-filter: blur(4px);
    }
    .popup.show {
      display: flex;
      opacity: 1;
    }
    .popup-content {
      width: 100%;
      max-width: 340px;
      background: #fff;
      border-radius: 16px;
      padding: 20px;
      text-align: center;
      position: relative;
      transform: scale(0.7);
      opacity: 0;
      transition: transform 0.3s ease, opacity 0.3s ease;
      max-height: 90vh;
      overflow-y: auto;
    }
    .popup.show .popup-content {
      transform: scale(1);
      opacity: 1;
    }
    .close-btn {
      position: absolute;
      top: 8px;
      right: 12px;
      border: 0;
      background: none;
      font-size: 22px;
      cursor: pointer;
      color: #555;
      padding: 8px;
      z-index: 10;
    }
    .popup-content h2 {
      color: var(--primary);
      margin: 4px 0 10px;
      font-size: 17px;
    }
    .popup-content input,
    .popup-content textarea,
    .popup-content select {
      width: 100%;
      padding: 10px 12px;
      margin: 6px 0;
      border-radius: 8px;
      border: 1.5px solid #ddd;
      font-size: 15px;
      transition: border-color 0.3s ease;
      background: #fff;
    }
    .popup-content input:focus,
    .popup-content textarea:focus,
    .popup-content select:focus {
      border-color: var(--primary);
      outline: none;
      box-shadow: 0 0 0 3px rgba(245,115,39,0.15);
    }
    .popup-content textarea {
      resize: vertical;
      min-height: 60px;
    }
    .submit-btn {
      width: 100%;
      padding: 12px;
      border-radius: 8px;
      border: 0;
      cursor: pointer;
      font-weight: 700;
      background: var(--primary-gradient);
      color: #fff;
      margin-top: 8px;
      transition: all 0.3s ease;
      font-size: 15px;
    }
    .submit-btn:active { transform: scale(0.98); }
    .success-msg {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 150000;
      background: #e0f7fa;
      color: #00796b;
      padding: 16px 24px;
      border-radius: 10px;
      font-weight: 600;
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
      font-size: 14px;
    }
    @media (max-width: 768px) {
      .popup-content { padding: 16px; max-width: 300px; }
      .popup-content input, .popup-content textarea, .popup-content select { font-size: 16px; padding: 10px 12px; }
      .close-btn { font-size: 24px; top: 6px; right: 10px; padding: 6px; }
      .popup-content h2 { font-size: 16px; }
      .submit-btn { font-size: 14px; padding: 10px; }
    }
    @media (max-width: 480px) {
      .popup-content { padding: 14px; max-width: 280px; }
      .popup-content input, .popup-content textarea, .popup-content select { font-size: 15px; padding: 8px 10px; margin: 4px 0; }
      .success-msg { font-size: 12px; padding: 12px 18px; }
    }

    /* ===== UTILITY ===== */
    .text-center { text-align: center; }
    .mb-4 { margin-bottom: 25px; }
    .me-2 { margin-right: 8px; }
    .text-white-50 { color: rgba(255,255,255,0.5); }
    .py-1 { padding: 20px 0; }
    .py-2 { padding: 40px 0; }
    .bg-light { background: #f5f7fb; }
    .bg-white { background: #fff; }
    .bg-dark-section { background: linear-gradient(135deg, #0a0a1a, #1a1a3e); }
    .mt-3 { margin-top: 20px; }
    .mt-4 { margin-top: 30px; }
    .mb-3 { margin-bottom: 20px; }
    .fw-bold { font-weight: 700; }
    .text-muted { color: #6c757d; }
    .w-100 { width: 100%; }
    .d-flex { display: flex; }
    .flex-wrap { flex-wrap: wrap; }
    .align-center { align-items: center; }
    .justify-center { justify-content: center; }
