﻿:root {
            --primary: #0f766e;
            --primary-deep: #064e3b;
            --accent: #e85a2a;
            --accent-soft: #f97316;
            --dark: #0f172a;
            --card: rgba(255,255,255,0.9);
            --muted: #64748b;
            --background: #f4f6fb;
        }
        * { box-sizing: border-box; }
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: var(--background);
            color: var(--dark);
            margin: 0;
            overflow-x: hidden;
        }
        .container-fluid {
            width: 90%;
            margin-left: auto;
            margin-right: auto;
        }
        a { color: inherit; }
        .navbar {
            padding: 0.75rem 0;
            box-shadow: 0 12px 40px rgba(15,23,42,0.08);
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(12px);
        }
        .navbar-brande img { max-height: 48px;  }
        .nav-link { font-weight: 600; color: var(--dark) !important; transition: color 0.2s ease; padding: 0.4rem 0.75rem; }
        .nav-link:hover, .nav-link.active { color: var(--primary) !important; }
        .nav-job-btn {
            position: relative;
            isolation: isolate;
            border: none;
            overflow: hidden;
            background: #0f766e;
            color: #fff !important;
        }
        @media (min-width: 992px) {
            .navbar-collapse {
                position: relative;
                justify-content: center;
            }
            .navbar-nav {
                margin-left: auto !important;
                margin-right: auto !important;
                padding-right: 0;
            }
            .navbar-collapse .nav-job-item {
                position: absolute;
                right: 0;
                top: 50%;
                transform: translateY(-50%);
                margin: 0 !important;
            }
        }
        .nav-job-btn::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 999px;
            background: conic-gradient(from 0deg, #ffffff 0deg, #7dd3fc 120deg, #ffffff 240deg, #7dd3fc 360deg);
            animation: navBorderSpin 1.8s linear infinite;
            z-index: -2;
        }
        .nav-job-btn::after {
            content: '';
            position: absolute;
            inset: 2px;
            border-radius: 999px;
            background: #0f766e;
            z-index: -1;
        }
        @keyframes navBorderSpin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .header-contact-bar {
            background: var(--dark);
            color: rgba(255,255,255,0.9);
            padding: 0.5rem 0;
            font-size: 0.85rem;
            letter-spacing: 0.02em;
        }
        .header-contact-bar a { color: rgba(255,255,255,0.9); text-decoration: none; }
        .header-contact-bar .contact-item { display: inline-flex; align-items: center; gap: 0.35rem; }
        .header-contact-bar .contact-item + .contact-item { margin-left: 1.25rem; }
        @media (max-width: 767px) {
            .header-contact-bar .contact-item.email-contact {
                display: none;
            }
        }
        .hero-main {
            position: relative;
            padding: 2rem 0 2rem;
            min-height: 100vh;
            overflow: hidden;
            background: linear-gradient(180deg, rgba(8,15,23,0.65), rgba(8,15,23,0.35)), url("/static/main/images/aktu2.jpeg") center/cover no-repeat;
            color: #fff;
        }
        .hero-main::after,
        .hero-main::before {
            content: '';
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            opacity: 0.7;
            animation: float 14s ease-in-out infinite;
        }
        .hero-main::before {
            width: 360px;
            height: 360px;
            background: rgba(232,90,42,0.35);
            top: -100px;
            right: -60px;
        }
        .hero-main::after {
            width: 240px;
            height: 240px;
            background: rgba(15,118,110,0.5);
            bottom: -90px;
            left: -40px;
            animation-duration: 12s;
        }
        .hero-layout {
            display: grid;
            grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
            gap: 1.6rem;
            align-items: stretch;
        }
        .hero-slider-wrapper {
            position: relative;
            z-index: 2;
            border-radius: 22px;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.3);
            box-shadow: 0 20px 45px rgba(2,6,23,0.25);
            height:95%;
        }
        .hero-slider-wrapper .carousel {
            border-radius: 22px;
            overflow: hidden;
            height: 100%;
        }
        .hero-slider-wrapper .carousel-inner {
            height: 100%;
        }
        .hero-slider-wrapper .carousel-item {
            min-height: 500px;
            height: 100%;
            background-size: cover;
            background-position: center;
            transform: scale(1.12);
            animation: heroZoomOut 5.2s ease forwards;
        }
        .hero-slider-wrapper .carousel-item::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(3,7,18,0.45), rgba(15,118,110,0.2));
        }
        .hero-slider-wrapper .carousel-control-prev,
        .hero-slider-wrapper .carousel-control-next {
            filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
        }
        .hero-slider-wrapper .carousel-indicators {
            bottom: 1rem;
        }
        .hero-slider-wrapper .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            margin: 0 4px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            border: none;
        }
        .hero-slider-wrapper .carousel-indicators .active {
            background: #fff;
        }
        @keyframes float {
            0% { transform: translate3d(0,0,0); }
            50% { transform: translate3d(0,-20px,0); }
            100% { transform: translate3d(0,0,0); }
        }
        .hero-content {
            position: relative;
            z-index: 2;
            min-height: calc(100vh - 7rem);
            display: flex;
            align-items: center;
        }
        .hero-text {
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        .hero-text.is-switching {
            opacity: 0;
            transform: translateX(-12px);
        }
        .hero-text > * {
            opacity: 0;
            transform: translateX(-40px);
            animation: slideLeftToRight 0.5s ease forwards;
        }
        .hero-text > *:nth-child(1) { animation-delay: 0.05s; }
        .hero-text > *:nth-child(2) { animation-delay: 0.15s; }
        .hero-text > *:nth-child(3) { animation-delay: 0.25s; }
        .hero-text > *:nth-child(4) { animation-delay: 0.35s; }
        .hero-text > *:nth-child(5) { animation-delay: 0.45s; }
        @keyframes slideLeftToRight {
            from { opacity: 0; transform: translateX(-40px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes heroZoomOut {
            from { transform: scale(1.12); }
            to { transform: scale(1); }
        }
        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.45rem 0.85rem;
            border-radius: 999px;
            background: rgba(255,255,255,0.15);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
        }
        .hero-title {
            font-size: clamp(2.2rem, 4vw, 3.25rem);
            font-weight: 700;
            margin: 1rem 0;
            line-height: 1.2;
            text-shadow: 0 15px 45px rgba(0,0,0,0.25);
        }
        .hero-lead {
            max-width: 540px;
            font-size: 1.05rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 1.5rem;
        }
        .hero-cta { display: inline-flex; gap: 0.75rem; flex-wrap: wrap; }
        .btn-pill {
            border-radius: 999px;
            padding: 0.65rem 1.75rem;
            font-weight: 600;
            border: none;
            min-width: 160px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .btn-pill.primary {
            background: #fff;
            color: var(--primary-deep);
            box-shadow: 0 15px 30px rgba(15,118,110,0.25);
            text-decoration: none;
        }
        .btn-pill.secondary {
            background: transparent;
            color: #fff;
            border: 1px solid rgba(255,255,255,0.8);
            text-decoration: none;
        }
        .btn-pill:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 35px rgba(15,118,110,0.25);
        }
        .hero-meta {
            margin-top: 2rem;
            display: flex;
            gap: 1rem;
            flex-wrap: nowrap;
        }
        .hero-meta .meta-item {
            background: rgba(255,255,255,0.1);
            padding: 1rem 1.25rem;
            border-radius: 16px;
            min-width: 0;
            flex: 1 1 0;
            border: 1px solid rgba(255,255,255,0.2);
            animation: pulse 3s ease-in-out infinite;
        }
        .registration-strip {
            background: linear-gradient(90deg, #ff5c1f, #ff5f24);
            color: #fff;
            padding: 2.25rem 0;
        }
        .registration-strip .strip-inner {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .registration-strip h2 {
            margin: 0;
            font-size: clamp(1.6rem, 2.6vw, 2.2rem);
            font-weight: 700;
        }
        .registration-strip p {
            margin: 0.5rem 0 0;
            font-size: clamp(1.05rem, 1.8vw, 1.2rem);
            color: rgba(255,255,255,0.95);
        }
        .registration-strip .strip-btn {
            border-radius: 999px;
            padding: 0.85rem 2rem;
            background: #fff;
            color: #e85a2a;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 0 14px 24px rgba(0,0,0,0.2);
            transition: transform 0.2s ease;
            white-space: nowrap;
        }
        .registration-strip .strip-btn:hover {
            transform: translateY(-2px);
            color: #c94216;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.02); }
            100% { transform: scale(1); }
        }
        section {
            padding: 2.25rem 0;
            margin-top: 0;
            margin-bottom: 1.25em;
        }
        .section-heading {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        .section-heading .section-badge {
            font-size: 0.75rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--accent);
            display: inline-block;
            margin-bottom: 0.75rem;
        }
        .section-heading h2 {
            font-size: clamp(1.9rem, 3vw, 2.6rem);
            font-weight: 700;
        }
        .section-heading p {
            color: var(--muted);
            font-size: 1rem;
            max-width: 700px;
            margin: 0.5rem auto 0;
        }
        .glass-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
            gap: 1.5rem;
        }
        .glass-card {
            background: rgba(255,255,255,0.85);
            border-radius: 20px;
            padding: 1.75rem;
            box-shadow: 0 15px 45px rgba(15,23,42,0.1);
            border: 1px solid rgba(255,255,255,0.6);
            backdrop-filter: blur(12px);
            position: relative;
            overflow: hidden;
            min-height: 220px;
            transition: transform 0.35s ease, box-shadow 0.35s ease;
        }
        .glass-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(140deg, rgba(15,118,110,0.08), transparent 40%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .glass-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 55px rgba(15,23,42,0.15);
        }
        .glass-card:hover::after { opacity: 1; }
        .glass-card h5 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.65rem;
        }
        .glass-card p {
            color: var(--muted);
            font-size: 0.95rem;
            margin: 0;
        }
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
            gap: 1.25rem;
        }
        .why-card {
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid rgba(15,23,42,0.08);
            box-shadow: 0 16px 36px rgba(15,23,42,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .why-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 48px rgba(15,23,42,0.14);
        }
        .why-card-image {
            width: 100%;
            height: 170px;
            object-fit: cover;
            display: block;
        }
        .why-card-body {
            padding: 1rem 1rem 1.1rem;
        }
        .why-card h5 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 0.45rem;
        }
        .why-card p {
            margin: 0;
            color: var(--muted);
            font-size: 0.93rem;
            line-height: 1.45;
        }
        .about-scortek {
            background: linear-gradient(180deg, #ffffff, #f8fafc);
            border-radius: 24px;
            border: 1px solid rgba(15,23,42,0.08);
            box-shadow: 0 20px 45px rgba(15,23,42,0.08);
            padding: 2rem;
        }
        .about-scortek .about-title {
            font-size: clamp(1.8rem, 2.8vw, 2.4rem);
            font-weight: 800;
            margin-bottom: 0.75rem;
        }
        .about-scortek .about-title span {
            color: var(--accent);
        }
        .about-scortek .about-lead {
            color: var(--muted);
            font-size: 1.04rem;
            margin-bottom: 1rem;
        }
        .about-scortek .about-text {
            color: #334155;
            font-size: 1rem;
            line-height: 1.75;
            margin-bottom: 1rem;
        }
        .about-scortek .about-points {
            list-style: none;
            padding: 0;
            margin: 0 0 1.2rem;
        }
        .about-scortek .about-points li {
            margin-bottom: 0.5rem;
            color: #334155;
            font-weight: 500;
        }
        .about-scortek .about-points i {
            color: var(--primary);
            margin-right: 0.45rem;
        }
        .about-scortek .about-image-wrap {
            position: relative;
            border-radius: 18px;
            overflow: hidden;
            border: 2px dashed rgba(232,90,42,0.5);
            padding: 0.6rem;
            background: #fff;
        }
        .about-scortek .about-image-wrap img {
            width: 100%;
            height: 100%;
            min-height: 360px;
            object-fit: cover;
            border-radius: 12px;
            display: block;
        }
        .cert-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
            gap: 1.2rem;
        }
        .cert-section {
            background: linear-gradient(140deg, #fff7ef 0%, #f8fbff 60%, #eef8f6 100%);
            border: 1px solid rgba(15,23,42,0.08);
            border-radius: 24px;
            padding: 2rem 1.3rem;
            box-shadow: 0 22px 50px rgba(15,23,42,0.08);
            position: relative;
            overflow: hidden;
        }
        .cert-section::before {
            content: '';
            position: absolute;
            width: 220px;
            height: 220px;
            top: -100px;
            right: -70px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(232,90,42,0.22) 0%, rgba(232,90,42,0) 70%);
        }
        .cert-section::after {
            content: '';
            position: absolute;
            width: 180px;
            height: 180px;
            bottom: -80px;
            left: -50px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(15,118,110,0.22) 0%, rgba(15,118,110,0) 70%);
        }
        .cert-section .section-heading {
            position: relative;
            z-index: 1;
            margin-bottom: 2rem;
        }
        .cert-section .section-heading .section-badge {
            display: block;
            margin-bottom: 0.65rem;
        }
        .cert-section .section-heading h2 {
            display: inline-block;
            position: relative;
            padding-bottom: 0.35rem;
            margin-top: 0;
        }
        .cert-section .section-heading h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 4px;
            border-radius: 6px;
            background: linear-gradient(90deg, var(--accent), #ff9f43);
        }
        .cert-item {
            background: #fff;
            border-radius: 18px;
            padding: 1.1rem;
            border: 1px solid rgba(15,23,42,0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 110px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            z-index: 1;
        }
        .cert-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 35px rgba(15,23,42,0.12);
        }
        .cert-item img { max-width: 140px; max-height: 60px; object-fit: contain; }
        .cert-item.highlight {
            background: linear-gradient(135deg, var(--primary), var(--primary-deep));
            color: #fff;
            font-weight: 700;
            text-align: center;
            padding: 1rem;
        }
        .partner-slider-section {
            background: #fff;
            border-radius: 22px;
            border: 1px solid rgba(15,23,42,0.08);
            box-shadow: 0 18px 40px rgba(15,23,42,0.08);
            padding: 1.8rem 1.2rem;
        }
        .partner-topline {
            text-align: center;
            font-weight: 700;
            color: var(--primary-deep);
            margin-bottom: 1rem;
            font-size: 1.05rem;
        }
        .partner-topline span {
            color: var(--accent);
        }
        .partner-carousel {
            border-radius: 14px;
            background: linear-gradient(135deg, #f8fafc, #ecfeff);
            border: 1px solid rgba(15,23,42,0.08);
            padding: 1rem;
        }
        .partner-row {
            min-height: 88px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.85rem;
            text-align: left;
        }
        .partner-grid {
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 0.75rem;
            min-height: 170px;
            transition: opacity 0.35s ease, transform 0.35s ease;
        }
        .partner-grid.is-switching {
            opacity: 0.18;
            transform: translateY(8px);
        }
        .partner-mini {
            display: flex;
            align-items: center;
            gap: 0.55rem;
            background: rgba(255,255,255,0.9);
            border: 1px solid rgba(15,23,42,0.08);
            border-radius: 10px;
            padding: 0.5rem;
            min-height: 72px;
        }
        .partner-mini .partner-logo {
            width: 42px;
            height: 42px;
            display: none !important;
        }
        .partner-mini .partner-name {
            font-size: 0.8rem;
            margin: 0;
            line-height: 1.25;
        }
        .partner-mini {
            justify-content: center;
            text-align: center;
            padding: 0.65rem 0.55rem;
            min-height: 82px;
            flex-direction: column;
            gap: 0.25rem;
        }
        .partner-city {
            margin: 0;
            font-size: 0.72rem;
            color: #64748b;
            letter-spacing: 0.02em;
            line-height: 1.2;
        }
        .partner-mini.partner-no-logo {
            justify-content: center;
            text-align: center;
            padding: 0.65rem;
        }
        .partner-mini.partner-no-logo .partner-name {
            font-size: 0.82rem;
        }
        @media (max-width: 991px) {
            .partner-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }
        @media (max-width: 575px) {
            .partner-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }
        .partner-logo {
            width: 58px;
            height: 58px;
            border-radius: 50%;
            border: 2px solid rgba(15,118,110,0.2);
            object-fit: cover;
            background: #fff;
            flex-shrink: 0;
        }
        .partner-name {
            font-size: clamp(0.95rem, 2vw, 1.1rem);
            color: #0f172a;
            font-weight: 700;
            margin: 0;
            line-height: 1.3;
        }
        .partner-type {
            margin: 0.1rem 0 0;
            color: #64748b;
            font-size: 0.85rem;
            letter-spacing: 0.03em;
        }
        .partner-carousel .carousel-indicators {
            position: static;
            margin-top: 0.75rem;
            margin-bottom: 0;
        }
        .partner-carousel .carousel-indicators [data-bs-target] {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(15,23,42,0.25);
            border: none;
        }
        .partner-carousel .carousel-indicators .active {
            background: var(--accent);
        }
        .aktu-collab {
            background: linear-gradient(135deg, #fffaf5, #f7fbff);
            border: 1px solid rgba(15,23,42,0.08);
            border-radius: 22px;
            box-shadow: 0 18px 40px rgba(15,23,42,0.08);
            padding: 1.4rem;
        }
        .aktu-collab .badge-line {
            display: inline-block;
            font-size: 0.75rem;
            letter-spacing: 0.24em;
            text-transform: uppercase;
            color: var(--accent);
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .aktu-collab h2 {
            margin: 0 0 0.55rem;
            font-size: clamp(1.7rem, 2.8vw, 2.4rem);
            font-weight: 800;
            color: #0f172a;
        }
        .aktu-collab .lead-text {
            margin: 0 0 1rem;
            color: #475569;
        }
        .aktu-head {
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: 1rem;
            margin-bottom: 0.6rem;
        }
        .aktu-head-text {
            text-align: center;
        }
        .aktu-logo-line {
            display: flex;
            align-items: center;
            gap: 0.55rem;
            justify-self: end;
            background: #fff;
            border: 1px solid rgba(15,23,42,0.1);
            border-radius: 999px;
            padding: 0.35rem 0.55rem;
        }
        .aktu-logo-line img {
            width: 56px;
            height: 56px;
            object-fit: contain;
            border-radius: 10px;
            background: #fff;
       
            padding: 0.25rem;
        }
        .aktu-logo-line .join {
            color: #64748b;
            font-weight: 700;
            font-size: 0.86rem;
        }
        .aktu-points {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.7rem;
            margin-bottom: 1rem;
        }
        .aktu-point {
            background: #fff;
            border: 1px solid rgba(15,23,42,0.08);
            border-radius: 12px;
            padding: 0.75rem;
            font-weight: 700;
            color: #0f172a;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .aktu-point i {
            color: var(--primary);
        }
        .aktu-gallery {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 0.8rem;
        }
        .aktu-image-card {
            overflow: hidden;
            border-radius: 14px;
            min-height: 200px;
            position: relative;
            border: 2px dashed rgba(232,90,42,0.55);
        }
        .aktu-image-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.45s ease;
        }
        .aktu-image-card:hover img {
            transform: scale(1.06);
        }
        .aktu-image-card .caption {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            padding: 0.55rem 0.7rem;
            background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.72));
            color: #fff;
            font-size: 0.85rem;
            font-weight: 700;
        }
        @media (max-width: 991px) {
            .aktu-head {
                grid-template-columns: 1fr;
            }
            .aktu-logo-line {
                justify-self: center;
            }
            .aktu-points {
                grid-template-columns: 1fr;
            }
            .aktu-gallery {
                grid-template-columns: 1fr;
            }
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
            gap: 1rem;
        }
        .stat-card {
            background: #fff;
            border-radius: 18px;
            padding: 1.5rem;
            text-align: center;
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 15px 40px rgba(15,23,42,0.08);
        }
        .stat-card strong {
            display: block;
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 0.4rem;
        }
        .legacy-network {
            position: relative;
            background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            border-radius: 0;
            overflow: hidden;
            padding: 3.2rem 0;
        }
        .legacy-network::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, rgba(9,72,87,0.86), rgba(8,61,74,0.78));
        }
        .legacy-inner {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1.25fr;
            gap: 1.4rem;
            align-items: center;
        }
        .legacy-copy {
            color: #fff;
        }
        .legacy-copy .tag {
            font-size: 1.1rem;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            margin-bottom: 0.7rem;
            display: inline-block;
        }
        .legacy-copy h2 {
            font-size: clamp(2rem, 4vw, 3.3rem);
            line-height: 1.08;
            margin: 0 0 0.9rem;
            font-weight: 800;
        }
        .legacy-copy .line {
            width: 100%;
            max-width: 460px;
            border-top: 1px solid rgba(255,255,255,0.65);
            margin: 0.7rem 0 0.9rem;
        }
        .legacy-copy p {
            margin: 0;
            color: rgba(255,255,255,0.92);
            font-size: 1.04rem;
            line-height: 1.6;
            max-width: 540px;
        }
        .legacy-stats {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 0.85rem;
        }
        .legacy-stat {
            border: 1px solid rgba(255,255,255,0.7);
            background: rgba(255,255,255,0.06);
            min-height: 170px;
            border-radius: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            padding: 1rem;
            backdrop-filter: blur(2px);
        }
        .legacy-stat i {
            font-size: 2rem;
            margin-bottom: 0.45rem;
        }
        .legacy-stat .count {
            font-size: clamp(2rem, 3.3vw, 3rem);
            font-weight: 800;
            line-height: 1;
            margin-bottom: 0.35rem;
        }
        .legacy-stat .label {
            font-size: 1.05rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            font-weight: 700;
            color: rgba(255,255,255,0.94);
        }
        .programs-showcase {
            background: linear-gradient(145deg, #fff8f3 0%, #f8fbff 100%);
            border: 1px solid rgba(232,90,42,0.24);
            border-radius: 24px;
            padding: 1.5rem;
            position: relative;
            overflow: hidden;
        }
        .programs-showcase::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top right, rgba(232,90,42,0.12), transparent 35%);
            pointer-events: none;
        }
        .program-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 1rem;
        }
        @media (max-width: 991px) {
            .program-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }
        @media (max-width: 575px) {
            .program-grid {
                grid-template-columns: 1fr;
            }
        }
        .program-card {
            background: rgba(255,255,255,0.95);
            border: 1px dashed rgba(232,90,42,0.7);
            border-radius: 16px;
            padding: 1.15rem 1rem;
            text-align: center;
            box-shadow: 0 12px 30px rgba(15,23,42,0.06);
            transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
            animation: revealUp 0.7s ease both;
        }
        .program-card:nth-child(2) { animation-delay: 0.08s; }
        .program-card:nth-child(3) { animation-delay: 0.16s; }
        .program-card:nth-child(4) { animation-delay: 0.24s; }
        .program-card:nth-child(5) { animation-delay: 0.32s; }
        .program-card:nth-child(6) { animation-delay: 0.4s; }
        .program-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 36px rgba(15,23,42,0.1);
            border-color: rgba(15,118,110,0.65);
        }
        .program-icon {
            width: 68px;
            height: 68px;
            border-radius: 14px;
            background: #fff3ec;
            color: var(--accent);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            margin-bottom: 0.85rem;
            border: 1px solid rgba(232,90,42,0.28);
        }
        .program-card h4 {
            font-size: 1.55rem;
            margin: 0 0 0.55rem;
            font-weight: 800;
        }
        .program-card p {
            margin: 0;
            color: var(--muted);
            line-height: 1.5;
        }
        .event-gallery-wrap {
            background: linear-gradient(140deg, #fff 0%, #f8fafc 100%);
            border-radius: 20px;
            border: 1px solid rgba(15,23,42,0.08);
            padding: 1.3rem;
            box-shadow: 0 16px 35px rgba(15,23,42,0.08);
        }
        .event-filters {
            display: flex;
            gap: 0.55rem;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 1rem;
        }
        .event-filter-btn {
            border: 1px solid rgba(15,23,42,0.12);
            background: #fff;
            color: #0f172a;
            border-radius: 999px;
            padding: 0.42rem 0.95rem;
            font-weight: 700;
            font-size: 0.86rem;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .event-filter-btn.active,
        .event-filter-btn:hover {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
        }
        .event-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 0.8rem;
        }
        .event-card {
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid rgba(15,23,42,0.08);
            background: #fff;
            box-shadow: 0 10px 20px rgba(15,23,42,0.08);
            animation: eventIn 0.45s ease both;
        }
        .event-card.event-hidden {
            display: none;
        }
        .event-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            display: block;
        }
        .event-card .event-meta {
            padding: 0.65rem 0.75rem;
        }
        .event-card .event-type {
            font-size: 0.72rem;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            color: var(--accent);
            font-weight: 700;
        }
        .event-card .event-title {
            margin: 0.2rem 0 0;
            font-size: 0.92rem;
            font-weight: 700;
            color: #0f172a;
            line-height: 1.3;
        }
        .event-empty {
            text-align: center;
            color: #64748b;
            padding: 1rem 0;
            display: none;
            font-weight: 600;
        }
        .process-premium {
            background: linear-gradient(140deg, #fffaf5 0%, #f7fbff 100%);
            border: 1px solid rgba(15,23,42,0.08);
            border-radius: 22px;
            padding: 1.4rem;
            box-shadow: 0 16px 35px rgba(15,23,42,0.08);
        }
        .process-cards {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 0.85rem;
        }
        .process-card {
            background: #fff;
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid rgba(15,23,42,0.08);
            box-shadow: 0 10px 24px rgba(15,23,42,0.08);
            transition: transform 0.25s ease, box-shadow 0.25s ease;
            animation: eventIn 0.45s ease both;
        }
        .process-card:nth-child(2) { animation-delay: 0.06s; }
        .process-card:nth-child(3) { animation-delay: 0.12s; }
        .process-card:nth-child(4) { animation-delay: 0.18s; }
        .process-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 30px rgba(15,23,42,0.14);
        }
        .process-card img {
            width: 100%;
            height: 170px;
            object-fit: cover;
            display: block;
        }
        .process-card .body {
            padding: 0.8rem 0.85rem 0.95rem;
        }
        .process-chip {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            color: var(--accent);
            margin-bottom: 0.35rem;
        }
        .process-card h5 {
            margin: 0 0 0.35rem;
            font-size: 1.02rem;
            font-weight: 800;
            color: #0f172a;
        }
        .process-card p {
            margin: 0;
            font-size: 0.9rem;
            color: #64748b;
            line-height: 1.45;
        }
        @keyframes eventIn {
            from { opacity: 0; transform: translateY(10px) scale(0.98); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }
        @media (max-width: 1100px) {
            .event-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }
        @media (max-width: 767px) {
            .event-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
            .event-card img {
                height: 150px;
            }
            .process-cards {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
            .legacy-inner {
                grid-template-columns: 1fr;
            }
            .legacy-stats {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .event-grid {
                grid-template-columns: 1fr;
            }
            .process-cards {
                grid-template-columns: 1fr;
            }
        }
        @keyframes revealUp {
            from { opacity: 0; transform: translateY(18px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .process-lane {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }
        .process-step {
            background: #fff;
            border-radius: 16px;
            padding: 1.3rem 1.5rem;
            width: 220px;
            border: 1px solid rgba(0,0,0,0.08);
            box-shadow: 0 18px 40px rgba(15,23,42,0.08);
        }
        .process-step .step-label {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-deep));
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }
        .process-step h5 {
            font-size: 1rem;
            margin-bottom: 0.4rem;
        }
        .process-step p {
            font-size: 0.9rem;
            color: var(--muted);
            margin: 0;
        }
        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
            gap: 1.5rem;
        }
        .category-card {
            border-radius: 20px;
            color: #fff;
            min-height: 200px;
            padding: 1.75rem;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            background-size: cover;
            box-shadow: 0 18px 40px rgba(15,23,42,0.2);
        }
        .category-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.6));
        }
        .category-card span,
        .category-card h5 {
            position: relative;
            z-index: 1;
        }
        .category-card h5 {
            font-size: 1.3rem;
            margin-bottom: 0.35rem;
            letter-spacing: 0.5px;
        }
        .category-card span {
            font-size: 0.95rem;
            color: rgba(255,255,255,0.85);
        }
        .tech-section {
            position: relative;
            background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            border-radius: 0;
            overflow: hidden;
            padding: 4rem 0 3rem;
        }
        .tech-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(25, 114, 133, 0.58);
        }
        .tech-wrap {
            position: relative;
            z-index: 1;
        }
        .tech-badge {
            display: inline-block;
            background: #fff;
            color: #0f172a;
            padding: 0.35rem 1.1rem;
            border-radius: 999px;
            font-weight: 700;
            font-size: 0.92rem;
            margin-bottom: 0.8rem;
        }
        .tech-title {
            color: #fff;
            text-align: center;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 1.6rem;
        }
        .stream-grid {
            max-width: 920px;
            margin: 0 auto;
            text-align: center;
        }
        .stream-card {
            background: rgba(255,255,255,0.92);
            border: 1px solid rgba(255,255,255,0.55);
            border-radius: 14px;
            padding: 1rem;
            box-shadow: 0 14px 28px rgba(2, 44, 58, 0.22);
            animation: revealUp 0.6s ease both;
            display: none;
        }
        .stream-card.active {
            display: block;
        }
        .stream-title {
            margin: 0 0 0.65rem;
            font-size: 1rem;
            font-weight: 800;
            color: #0f172a;
            text-align: center;
        }
        .stream-courses {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 0.6rem;
        }
        .course-tile {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.7rem 0.62rem;
            border-radius: 10px;
            border: 1px solid rgba(15,23,42,0.12);
            background: #fff;
            color: #1f2937;
            font-size: 0.86rem;
            font-weight: 700;
            text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
            min-height: 96px;
            text-align: center;
        }
        .course-tile:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(15,23,42,0.14);
            border-color: rgba(15,118,110,0.5);
            color: #0f172a;
        }
        .tech-logo {
            width: 42px;
            height: 42px;
            object-fit: contain;
            flex-shrink: 0;
        }
        .stream-indicators {
            display: flex;
            justify-content: center;
            gap: 0.45rem;
            margin-top: 0.85rem;
        }
        .stream-dot {
            width: 9px;
            height: 9px;
            border-radius: 50%;
            border: none;
            background: rgba(255,255,255,0.5);
            padding: 0;
            cursor: pointer;
        }
        .stream-dot.active {
            background: #f59e0b;
            transform: scale(1.15);
        }
        @media (max-width: 991px) {
            .stream-grid { max-width: 100%; }
            .stream-courses { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        }
        @media (max-width: 575px) {
            .stream-courses { grid-template-columns: 1fr; }
        }
        .course-card {
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(15,23,42,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(0,0,0,0.05);
        }
        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(15,23,42,0.15);
        }
        .course-card .card-img-wrap {
            height: 200px;
            overflow: hidden;
            position: relative;
            background: linear-gradient(135deg, #e2e8f0, #f8fafc);
        }
        .course-card .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .course-card:hover .card-img-wrap img {
            transform: scale(1.05);
        }
        .course-card .course-tag {
            position: absolute;
            top: 12px;
            right: 12px;
            background: rgba(15,118,110,0.9);
            color: #fff;
            font-size: 0.75rem;
            padding: 4px 10px;
            border-radius: 999px;
        }
        .course-card .card-body {
            padding: 16px;
        }
        .course-card h3 {
            font-size: 1.1rem;
            margin-bottom: 0.35rem;
        }
        .course-card .course-provider { color: var(--muted); font-size: 0.85rem; margin-bottom: 0.65rem; }
        .course-card .course-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.35rem;
            margin-bottom: 0.75rem;
        }
        .course-chip {
            border-radius: 999px;
            padding: 0.2rem 0.8rem;
            border: 1px solid rgba(15,118,110,0.2);
            font-size: 0.75rem;
            font-weight: 600;
            background: rgba(15,118,110,0.08);
        }
        .course-chip.best { background: rgba(24,151,209,0.15); border-color: rgba(24,151,209,0.4); }
        .course-footer {
            margin-top: auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            color: var(--primary-deep);
        }
        .course-footer .course-btn {
            background: transparent;
            border: 1px solid rgba(15,118,110,0.4);
            border-radius: 10px;
            padding: 0.5rem 0.9rem;
            color: var(--primary-deep);
            text-decoration: none;
            transition: background 0.3s ease, color 0.3s ease;
        }
        .course-footer .course-btn:hover {
            background: var(--primary-deep);
            color: #fff;
        }
        .highlight-panel {
            border-radius: 24px;
            background: #fff;
            padding: 2.5rem;
            box-shadow: 0 25px 60px rgba(15,23,42,0.12);
            display: grid;
            grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
            gap: 1.5rem;
            align-items: center;
        }
        .method-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
            gap: 1.2rem;
        }
        .method-card {
            background: #fff;
            border-radius: 18px;
            padding: 1.5rem;
            border: 1px solid rgba(15,23,42,0.06);
            box-shadow: 0 15px 45px rgba(15,23,42,0.08);
            min-height: 210px;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .method-card .method-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: rgba(15,118,110,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.65rem;
            color: var(--primary);
        }
        .method-card h5 {
            margin: 0;
            font-size: 1.1rem;
            font-weight: 700;
        }
        .method-card p {
            color: var(--muted);
            margin: 0;
            flex-grow: 1;
        }
        .network-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
            gap: 1rem;
        }
        .network-card {
            padding: 1.25rem;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(15,118,110,0.15), rgba(232,90,42,0.15));
            border: 1px solid rgba(15,118,110,0.2);
            text-align: center;
            min-height: 160px;
        }
        .network-card h5 {
            font-size: 1.15rem;
            margin-bottom: 0.35rem;
        }
        .network-card p {
            color: var(--muted);
            margin: 0;
        }
        .branch-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
            gap: 1.25rem;
        }
        .branch-card {
            background: #fff;
            border-radius: 22px;
            border: 1px solid rgba(0,0,0,0.05);
            padding: 1rem;
            box-shadow: 0 20px 45px rgba(15,23,42,0.08);
            overflow: hidden;
        }
        .branch-card .branch-hero {
            height: 160px;
            border-radius: 18px;
            background-size: cover;
            background-position: center;
            margin-bottom: 0.85rem;
        }
        .branch-card h5 {
            font-size: 1.1rem;
            margin-bottom: 0.25rem;
        }
        .branch-card p {
            color: var(--muted);
            font-size: 0.9rem;
            margin: 0;
        }
        .footer {
            background: #020617;
            color: rgba(255,255,255,0.85);
            padding: 3rem 0 1rem;
        }
        .footer .footer-columns {
            display: grid;
            grid-template-columns: repeat(auto-fit,minmax(180px,1fr));
            gap: 1.25rem;
        }
        .footer h6 {
            color: #fff;
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }
        .footer a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 0.35rem;
        }
        .footer a:hover { color: #fff; }
        .footer .brand {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }
        .footer-cta {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.15);
            text-align: center;
            color: rgba(255,255,255,0.6);
            font-size: 0.85rem;
        }
        .enquiry-fab {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 1000;
            background: linear-gradient(135deg, var(--accent), var(--accent-soft));
            color: #fff;
            border: none;
            border-radius: 16px;
            padding: 14px 18px;
            font-weight: 700;
            box-shadow: 0 20px 45px rgba(232,90,42,0.4);
        }
        .social-bar {
            position: fixed;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            z-index: 100;
        }
        .social-bar a {
            width: 42px;
            height: 42px;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: #fff;
        }
        .social-bar .facebook { background: #1877f2; }
        .social-bar .instagram { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
        .social-bar .youtube { background: #ff0000; }
        .social-bar .phone { background: #25d366; }
        .social-bar .email { background: #ea4335; }
        .dropdown-menu {
            border: none;
            border-radius: 12px;
            box-shadow: 0 18px 40px rgba(15,23,42,0.14);
            min-width: 280px;
            padding: 0.6rem;
        }
        .dropdown-item {
            border-radius: 10px;
            font-weight: 500;
            padding: 0.6rem 0.8rem;
        }
        .dropdown-item:hover {
            background: rgba(15,118,110,0.1);
            color: var(--primary);
        }
        .dropdown-item.course-group {
            font-weight: 700;
            position: relative;
        }
        .dropdown-item.course-group::after {
            content: '>';
            position: absolute;
            right: 0.75rem;
            color: #64748b;
            transition: transform 0.2s ease;
        }
        .dropdown-item.course-group.active::after { transform: rotate(90deg); }
        .course-submenu {
            position: absolute;
            left: 100%;
            top: 0;
            min-width: 260px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 18px 40px rgba(15,23,42,0.16);
            border: 1px solid rgba(15,23,42,0.08);
            padding: 0.5rem;
            opacity: 0;
            visibility: hidden;
            transform: translateX(8px);
            transition: all 0.2s ease;
            z-index: 1200;
        }
        .course-submenu.show {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }
        .dropdown-item.course-sub {
            display: block;
            font-size: 0.9rem;
            white-space: nowrap;
        }
        .form-popup {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(2,6,23,0.55);
            z-index: 2500;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }
        .form-popup.show { display: flex; }
        .form-box {
            width: 100%;
            max-width: 420px;
            background: #fff;
            border-radius: 20px;
            box-shadow: 0 30px 70px rgba(15,23,42,0.25);
            overflow: hidden;
        }
        .form-title {
            background: linear-gradient(135deg, var(--primary), var(--primary-deep));
            color: #fff;
            padding: 1rem 1.25rem;
            position: relative;
        }
        .close-btn {
            position: absolute;
            right: 0.85rem;
            top: 0.8rem;
            color: #fff;
            text-decoration: none;
        }
        .main-btn {
            width: 100%;
            border: none;
            background: linear-gradient(135deg, var(--primary), var(--primary-deep));
            color: #fff;
            font-weight: 600;
            border-radius: 10px;
            padding: 0.65rem 1rem;
        }
        .main-btn:hover { opacity: 0.95; }
        @media (max-width: 992px) {
            .hero-meta {
                flex-wrap: wrap;
                overflow-x: visible;
            }
            .hero-meta .meta-item {
                flex: 1 1 calc(50% - 0.6rem);
                min-width: 150px;
            }
            .hero-cta { justify-content: center; }
            .navbar-collapse { background: rgba(255,255,255,0.95); padding: 1rem; border-radius: 12px; margin-top: 0.5rem; }
            .hero-main { padding-top: 5rem; }
            .hero-layout {
                grid-template-columns: 1fr;
            }
            .hero-slider-wrapper {
                order: 1;
                margin-bottom: 1rem;
            }
            .hero-text {
                order: 2;
            }
            .hero-slider-wrapper .carousel-item {
                min-height: 340px;
            }
            .course-submenu {
                position: static;
                transform: none;
                visibility: visible;
                opacity: 1;
                display: none;
                margin-top: 0.35rem;
                margin-bottom: 0.6rem;
                box-shadow: none;
                border: 1px solid rgba(15,23,42,0.08);
            }
            .course-submenu.show { display: block; }
        }
        @media (min-width: 992px) and (max-width: 1400px) {
            .navbar-collapse {
                justify-content: center;
            }
            .navbar-nav {
                margin-left: auto !important;
                margin-right: auto !important;
            }
            .hero-layout {
                grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
                gap: 1rem;
            }
            .hero-slider-wrapper .carousel-item {
                min-height: 460px;
            }
        }
        @media (max-width: 576px) {
            .hero-meta .meta-item {
                flex: 1 1 100%;
            }
            .hero-main::before,
            .hero-main::after { display: none; }
            .hero-title { font-size: 1.9rem; }
            .section-heading p { padding: 0 1rem; }
        }
        @media (max-width: 767px) {
            .registration-strip {
                padding: 1.6rem 0;
            }
            .registration-strip .strip-inner {
                align-items: flex-start;
            }
        }
