:root {
            --green: #2fa84f;
            --green-dark: #1f7a3a;
            --green-soft: #e9f8ee;
            --green-pale: #f4fbf6;
            --dark: #1f2423;
            --dark-2: #151918;
            --text: #25302c;
            --muted: #6b756f;
            --white: #ffffff;
            --border: #dceade;
            --shadow: 0 20px 50px rgba(31, 122, 58, 0.15);
            --shadow-soft: 0 14px 35px rgba(31, 122, 58, 0.08);
            --radius: 24px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            background: var(--white);
            line-height: 1.7;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            width: min(1180px, calc(100% - 40px));
            margin: 0 auto;
        }

        .section {
            padding: 90px 0;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3.6rem);
            line-height: 1.1;
            color: var(--green);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -1.5px;
            margin-bottom: 18px;
        }

        .section-subtitle {
            max-width: 900px;
            color: var(--muted);
            font-size: 1rem;
            margin-bottom: 45px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 26px;
            border-radius: 999px;
            background: var(--green);
            color: var(--white);
            font-weight: 700;
            box-shadow: 0 14px 30px rgba(47, 168, 79, 0.3);
            transition: 0.25s ease;
            border: none;
            cursor: pointer;
            font-family: inherit;
        }

        .btn:hover {
            background: var(--green-dark);
            transform: translateY(-2px);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 1px solid rgba(255,255,255,0.45);
            box-shadow: none;
        }

        .btn-outline:hover {
            background: var(--white);
            color: var(--green-dark);
        }

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            background: rgba(21, 25, 24, 0.92);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .nav-inner {
            height: 76px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--white);
            font-weight: 800;
            letter-spacing: -0.5px;
            flex-shrink: 0;
        }

        .brand-mark {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            overflow: hidden;
            background: var(--white);
            display: grid;
            place-items: center;
            box-shadow: 0 10px 24px rgba(47, 168, 79, 0.35);
        }

        .brand-mark img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 22px;
            color: rgba(255,255,255,0.78);
            font-size: 0.9rem;
            font-weight: 600;
            margin-left: auto;
        }

        .nav-links a:hover {
            color: var(--white);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .portal-btn {
            padding: 10px 18px;
            border-radius: 999px;
            background: var(--green);
            color: var(--white);
            font-size: 0.86rem;
            font-weight: 800;
            box-shadow: 0 10px 24px rgba(47, 168, 79, 0.28);
            transition: 0.25s ease;
            white-space: nowrap;
        }

        .portal-btn:hover {
            background: var(--green-dark);
            transform: translateY(-2px);
        }

        .mobile-menu-btn {
            width: 44px;
            height: 44px;
            border: 1px solid rgba(255,255,255,0.18);
            border-radius: 14px;
            background: rgba(255,255,255,0.08);
            display: none;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .mobile-menu-btn span {
            width: 20px;
            height: 2px;
            border-radius: 999px;
            background: var(--white);
            display: block;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .mobile-breadcrumb {
            display: none;
            background: rgba(31, 122, 58, 0.92);
            border-top: 1px solid rgba(255,255,255,0.08);
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .mobile-breadcrumb-inner {
            min-height: 38px;
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255,255,255,0.78);
            font-size: 0.82rem;
        }

        .mobile-breadcrumb-inner strong {
            color: var(--white);
            font-weight: 800;
        }

        .mobile-menu {
            display: none;
            background: rgba(21, 25, 24, 0.98);
            border-top: 1px solid rgba(255,255,255,0.08);
            box-shadow: 0 22px 40px rgba(0,0,0,0.25);
        }

        .mobile-menu.show {
            display: block;
        }

        .mobile-menu-inner {
            padding: 16px 0 20px;
            display: grid;
            gap: 8px;
        }

        .mobile-menu-inner a {
            color: rgba(255,255,255,0.82);
            padding: 13px 16px;
            border-radius: 14px;
            font-weight: 700;
            background: rgba(255,255,255,0.05);
        }

        .mobile-menu-inner a:hover {
            background: rgba(47, 168, 79, 0.22);
            color: var(--white);
        }

        .mobile-portal-btn {
            margin-top: 8px;
            text-align: center;
            background: var(--green) !important;
            color: var(--white) !important;
        }

        .hero {
            min-height: 100vh;
            background:
                linear-gradient(120deg, rgba(21,25,24,0.96), rgba(21,25,24,0.88)),
                url("https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=1800&q=80");
            background-size: cover;
            background-position: center;
            color: var(--white);
            display: flex;
            align-items: center;
            padding-top: 120px;
            padding-bottom: 120px;
            overflow: hidden;
            position: relative;
        }

        .hero::before {
            content: "HTSST";
            position: absolute;
            right: -60px;
            bottom: -80px;
            font-size: 15vw;
            font-weight: 900;
            color: rgba(255,255,255,0.035);
            letter-spacing: -10px;
            pointer-events: none;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 70px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            padding: 8px 14px;
            border: 1px solid rgba(143, 231, 163, 0.4);
            background: rgba(47, 168, 79, 0.12);
            color: #9cf0af;
            border-radius: 999px;
            font-size: 0.86rem;
            font-weight: 700;
            margin-bottom: 26px;
        }

        .hero h1 {
            font-size: clamp(2.8rem, 7vw, 6.5rem);
            line-height: 0.95;
            letter-spacing: -4px;
            font-weight: 900;
            margin-bottom: 26px;
        }

        .hero h1 span {
            color: #72d98a;
        }

        .hero p {
            color: rgba(255,255,255,0.78);
            max-width: 720px;
            font-size: 1.08rem;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-top: 44px;
            margin-bottom: 48px;
        }

        .hero-card {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: var(--radius);
            padding: 30px;
            backdrop-filter: blur(18px);
            box-shadow: 0 30px 80px rgba(0,0,0,0.25);
        }

        .hero-card h3 {
            color: #8ee7a3;
            font-size: 1.4rem;
            margin-bottom: 15px;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-top: 25px;
        }

        .stat {
            background: rgba(255,255,255,0.08);
            border-radius: 18px;
            padding: 18px;
        }

        .stat strong {
            display: block;
            font-size: 2rem;
            color: var(--white);
            line-height: 1;
        }

        .stat span {
            color: rgba(255,255,255,0.65);
            font-size: 0.85rem;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }

        .info-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 34px;
            box-shadow: var(--shadow);
        }

        .info-card.dark {
            background: var(--dark);
            color: var(--white);
            border-color: var(--dark);
        }

        .info-card h3 {
            color: var(--green);
            font-size: 2rem;
            line-height: 1.1;
            margin-bottom: 14px;
            text-transform: uppercase;
        }

        .info-card p {
            color: var(--muted);
        }

        .info-card.dark p {
            color: rgba(255,255,255,0.75);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
            margin-top: 28px;
        }

        .value-box {
            background: var(--green-soft);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 24px;
        }

        .value-box h4 {
            color: var(--green-dark);
            font-size: 1.05rem;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .value-box p {
            color: var(--muted);
            font-size: 0.92rem;
        }

        .philosophy {
            background:
                linear-gradient(
                    120deg,
                    rgba(21, 25, 24, 0.92),
                    rgba(21, 25, 24, 0.88)
                ),
                url("images/back.jpg");
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .philosophy p {
            color: rgba(255,255,255,0.78);
            max-width: 1000px;
            margin-bottom: 22px;
        }
        .philosophy::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 85% 20%, rgba(47, 168, 79, 0.22), transparent 35%),
                radial-gradient(circle at 15% 80%, rgba(142, 231, 163, 0.12), transparent 35%);
            z-index: 1;
            pointer-events: none;
        }

        .philosophy::after {
            content: "LEARN";
            position: absolute;
            right: -40px;
            bottom: -55px;
            font-size: 12vw;
            font-weight: 900;
            color: rgba(255, 255, 255, 0.045);
            letter-spacing: -8px;
            z-index: 1;
            pointer-events: none;
        }

        .philosophy .container {
            position: relative;
            z-index: 2;
        }

        .philosophy p {
            color: rgba(255,255,255,0.86);
            max-width: 1100px;
            margin-bottom: 22px;
        }

        .team {
            background: var(--green-pale);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .team-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 26px;
            text-align: center;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-soft);
            transition: 0.25s ease;
        }

        .team-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow);
        }

        .team-photo {
            width: 140px;
            height: 140px;
            margin: 0 auto 18px;
            border-radius: 50%;
            border: 8px solid var(--green-soft);
            overflow: hidden;
        }

        .team-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-card h3 {
            font-size: 1rem;
            line-height: 1.2;
            text-transform: uppercase;
            color: var(--dark);
        }

        .team-card p {
            color: var(--green-dark);
            font-size: 0.88rem;
            font-weight: 600;
            margin-top: 5px;
        }

        .milestones-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .milestone-card {
            border-radius: var(--radius);
            padding: 28px;
            background: var(--white);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-soft);
            transition: 0.25s ease;
        }

        .milestone-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }

        .icon {
            width: 56px;
            height: 56px;
            border-radius: 18px;
            background: var(--green-soft);
            color: var(--green);
            display: grid;
            place-items: center;
            font-size: 1.5rem;
            margin-bottom: 18px;
        }

        .milestone-card h3 {
            color: var(--green-dark);
            font-size: 1.05rem;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .milestone-card p {
            color: var(--muted);
            font-size: 0.92rem;
        }

        .video-hero {
            min-height: 620px;
            background:
                linear-gradient(120deg, rgba(21, 25, 24, 0.82), rgba(31, 122, 58, 0.76)),
                url("https://images.unsplash.com/photo-1523580846011-d3a5bc25702b?auto=format&fit=crop&w=1800&q=80");
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: var(--white);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            overflow: hidden;
        }

        .video-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at center, rgba(47, 168, 79, 0.22), transparent 38%),
                linear-gradient(to bottom, rgba(0,0,0,0.20), rgba(0,0,0,0.55));
            z-index: 1;
        }

        .video-hero-content {
            width: min(980px, calc(100% - 40px));
            position: relative;
            z-index: 2;
        }

        .video-play-btn {
            width: 92px;
            height: 92px;
            border-radius: 50%;
            border: 2px solid rgba(142, 231, 163, 0.65);
            background: rgba(47, 168, 79, 0.32);
            backdrop-filter: blur(10px);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            margin-bottom: 42px;
            transition: 0.25s ease;
            box-shadow:
                0 0 0 12px rgba(47, 168, 79, 0.12),
                0 20px 60px rgba(0,0,0,0.35);
        }

        .video-play-btn:hover {
            transform: scale(1.08);
            background: var(--green);
        }

        .video-play-btn span {
            width: 0;
            height: 0;
            border-top: 17px solid transparent;
            border-bottom: 17px solid transparent;
            border-left: 26px solid #ffffff;
            margin-left: 7px;
        }

        .video-hero h2 {
            font-size: clamp(2.3rem, 5vw, 4.8rem);
            line-height: 1.08;
            font-weight: 900;
            color: #8ee7a3;
            margin-bottom: 24px;
            text-shadow: 0 8px 28px rgba(0,0,0,0.45);
        }

        .video-hero h2 span {
            color: var(--white);
        }

        .video-hero p {
            max-width: 920px;
            margin: 0 auto;
            font-size: clamp(1rem, 2vw, 1.35rem);
            font-weight: 700;
            color: #ffffff;
            line-height: 1.7;
            text-shadow: 0 3px 12px rgba(0,0,0,0.55);
        }

        .video-modal {
            position: fixed;
            inset: 0;
            background: rgba(21, 25, 24, 0.92);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }

        .video-modal.show {
            display: flex;
        }

        .video-modal-box {
            width: min(1000px, 100%);
            position: relative;
        }

        .video-modal-close {
            position: absolute;
            top: -52px;
            right: 0;
            width: 42px;
            height: 42px;
            border: none;
            border-radius: 50%;
            background: var(--green);
            color: #ffffff;
            font-size: 28px;
            line-height: 1;
            cursor: pointer;
            z-index: 5;
        }

        .video-modal-wrapper {
            width: 100%;
            aspect-ratio: 16 / 9;
            background: #000000;
            border-radius: 18px;
            overflow: hidden;
            border: 4px solid rgba(142, 231, 163, 0.35);
            box-shadow: 0 30px 90px rgba(0,0,0,0.55);
        }

        .video-modal-wrapper iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* VIDEO SECTION */
    .video-section{
        min-height:480px;
        background:
            linear-gradient(rgba(0,0,0,.68),rgba(0,0,0,.72)),
            url("../images/image1.jpg") center/cover no-repeat;
        display:flex;
        align-items:center;
        justify-content:center;
        text-align:center;
        color:white;
        position:relative;
        padding:90px 20px;
    }

    .video-content{
        max-width:760px;
        position:relative;
        z-index:2;
    }

    .play-btn{
        width:76px;
        height:76px;
        border-radius:50%;
        border:4px solid var(--yellow);
        background:rgba(0,0,0,.35);
        color:var(--yellow);
        font-size:32px;
        cursor:pointer;
        margin-bottom:26px;
        box-shadow:0 12px 30px rgba(0,0,0,.35);
    }

    .video-content h2{
        font-size:42px;
        font-weight:900;
        margin-bottom:16px;
        color: var(--pink);
    }

    .video-content p{
        font-size:18px;
        line-height:1.7;
        font-weight:600;
    }

    .video-modal{
        position:fixed;
        inset:0;
        background:rgba(0,0,0,.82);
        z-index:3000;
        display:none;
        align-items:center;
        justify-content:center;
        padding:20px;
    }

    .video-modal.active{
        display:flex;
    }

    .video-box{
        width:min(900px,95vw);
        aspect-ratio:16/9;
        background:#000;
    }

    .video-box iframe{
        width:100%;
        height:100%;
        border:0;
    }

    .video-close{
        position:absolute;
        top:24px;
        right:34px;
        background:none;
        border:0;
        color:white;
        font-size:42px;
        font-weight:900;
        cursor:pointer;
    }

        .youtube-fallback {
            margin-top: 16px;
            text-align: center;
        }

        .youtube-fallback a {
            display: inline-flex;
            padding: 12px 20px;
            border-radius: 999px;
            background: var(--green);
            color: var(--white);
            font-weight: 800;
        }

        .courses {
            background: var(--green-pale);
        }

        .courses-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .course-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            transition: 0.25s ease;
        }

        .course-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow);
        }

        .course-img {
            width: 100%;
            height: 190px;
            overflow: hidden;
            background: var(--green-soft);
        }

        .course-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .course-body {
            padding: 24px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .course-number {
            min-width: 42px;
            height: 42px;
            border-radius: 14px;
            background: var(--green);
            color: var(--white);
            display: grid;
            place-items: center;
            font-weight: 800;
        }

        .course-card h3 {
            font-size: 0.98rem;
            text-transform: uppercase;
            color: var(--green-dark);
            margin-bottom: 6px;
            line-height: 1.3;
        }

        .course-card p {
            color: var(--muted);
            font-size: 0.88rem;
            line-height: 1.55;
        }

        .contact {
            background: var(--dark);
            color: var(--white);
            padding: 80px 0 30px;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 34px;
            margin-bottom: 50px;
        }

        .contact h3 {
            color: #8ee7a3;
            font-size: 1.4rem;
            margin-bottom: 14px;
        }

        .contact p,
        .contact a {
            color: rgba(255,255,255,0.75);
            font-size: 0.95rem;
        }

        .newsletter {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .newsletter input {
            width: 100%;
            border: none;
            outline: none;
            border-radius: 14px;
            padding: 14px 16px;
            font-family: inherit;
        }

        .newsletter button {
            border: none;
            cursor: pointer;
            border-radius: 14px;
            padding: 14px 18px;
            background: var(--green);
            color: var(--white);
            font-weight: 700;
            font-family: inherit;
            white-space: nowrap;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            gap: 20px;
            color: rgba(255,255,255,0.55);
            font-size: 0.88rem;
        }

        .facebook-link {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-top: 22px;
            color: #8ee7a3 !important;
            font-weight: 800;
            transition: 0.25s ease;
        }

        .facebook-link:hover {
            color: #ffffff !important;
            transform: translateY(-2px);
        }

        .facebook-icon {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: rgba(47, 168, 79, 0.18);
            border: 1px solid rgba(142, 231, 163, 0.35);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 12px 28px rgba(47, 168, 79, 0.22);
        }

        .facebook-icon svg {
            width: 24px;
            height: 24px;
            fill: #8ee7a3;
            transition: 0.25s ease;
        }

        .facebook-link:hover .facebook-icon {
            background: var(--green);
            border-color: var(--green);
        }

        .facebook-link:hover .facebook-icon svg {
            fill: #ffffff;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }

        .contact-icon {
            width: 42px;
            height: 42px;
            min-width: 42px;
            border-radius: 50%;
            background: rgba(47, 168, 79, 0.18);
            border: 1px solid rgba(142, 231, 163, 0.35);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 12px 28px rgba(47, 168, 79, 0.18);
        }

        .contact-icon svg {
            width: 21px;
            height: 21px;
            fill: #8ee7a3;
        }

        .contact-item a {
            color: rgba(255,255,255,0.78);
            font-size: 0.95rem;
            word-break: break-word;
            transition: 0.25s ease;
        }

        .contact-item a:hover {
            color: #8ee7a3;
        }

        .hero {
    min-height: 100vh;
    color: var(--white);
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 120px;
    overflow: hidden;
    position: relative;
}

.hero-slider {
    background: var(--dark);
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.1s ease, transform 5s ease;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(21,25,24,0.96), rgba(21,25,24,0.78)),
        radial-gradient(circle at 20% 30%, rgba(47,168,79,0.18), transparent 34%);
    z-index: 1;
}

.hero::before {
    content: "HTSST";
    position: absolute;
    right: -60px;
    bottom: -80px;
    font-size: 15vw;
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    letter-spacing: -10px;
    pointer-events: none;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid rgba(143, 231, 163, 0.4);
    background: rgba(47, 168, 79, 0.12);
    color: #9cf0af;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 700;
    margin-bottom: 26px;
}

.hero h1 {
    font-size: clamp(2.8rem, 7vw, 6.5rem);
    line-height: 0.95;
    letter-spacing: -4px;
    font-weight: 900;
    margin-bottom: 26px;
}

.hero h1 span {
    color: #72d98a;
}

.hero p {
    color: rgba(255,255,255,0.78);
    max-width: 720px;
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 44px;
    margin-bottom: 48px;
}

.hero-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 30px;
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}

.hero-card h3 {
    color: #8ee7a3;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.hero-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 25px;
}

.stat {
    background: rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 18px;
}

.stat strong {
    display: block;
    font-size: 2rem;
    color: var(--white);
    line-height: 1;
}

.stat span {
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 36px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: 0.25s ease;
}

.hero-dot.active {
    width: 34px;
    background: var(--green);
    border-color: var(--green);
}

/* TOP BANNER SLIDER - FLEXIBLE IMAGE ONLY / WITH TEXT */
.top-banner-slider {
    width: 100%;
    height: 650px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    margin-top: 76px;
}

.top-banner-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1s ease, transform 5s ease;
    display: flex;
    align-items: center;
}

.top-banner-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

/* DEFAULT OVERLAY FOR SLIDES WITH TEXT */
.top-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(21, 25, 24, 0.82),
            rgba(21, 25, 24, 0.50),
            rgba(47, 168, 79, 0.35)
        );
    z-index: 1;
}

/* IMAGE ONLY MODE */
.top-banner-slide[data-content="hide"] .top-banner-overlay {
    background: transparent;
}

.top-banner-slide[data-content="hide"] .top-banner-content {
    display: none;
}

/* TEXT MODE */
.top-banner-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    max-width: 850px;
}

.top-banner-content span {
    display: inline-flex;
    padding: 8px 15px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.86rem;
    margin-bottom: 22px;
}

.top-banner-content h2 {
    font-size: clamp(2.4rem, 5.5vw, 5.4rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 22px;
    color: #ffffff;
    text-shadow: 0 10px 30px rgba(0,0,0,0.42);
}

.top-banner-content p {
    max-width: 760px;
    color: rgba(255,255,255,0.92);
    font-size: 1.15rem;
    font-weight: 500;
}

/* CONTROLS */
.top-banner-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.45);
    background: rgba(21, 25, 24, 0.35);
    color: #ffffff;
    font-size: 26px;
    cursor: pointer;
    transition: 0.25s ease;
    backdrop-filter: blur(10px);
}

.top-banner-control:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--green);
}

.top-banner-control.prev {
    left: 28px;
}

.top-banner-control.next {
    right: 28px;
}

.top-banner-dots {
    position: absolute;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.32);
    cursor: pointer;
    transition: 0.25s ease;
}

.top-banner-dot.active {
    width: 36px;
    background: #ffffff;
    border-color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 980px) {
    .top-banner-slider {
        margin-top: 114px;
        height: 580px;
    }

    .top-banner-content h2 {
        letter-spacing: -1px;
    }
}

@media (max-width: 640px) {
    .top-banner-slider {
        height: 540px;
        margin-top: 110px;
    }

    .top-banner-content {
        text-align: center;
    }

    .top-banner-content p {
        font-size: 0.95rem;
    }

    .top-banner-control {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .top-banner-control.prev {
        left: 14px;
    }

    .top-banner-control.next {
        right: 14px;
    }
}

/* HERO - STATIC REDESIGN */
.hero-static {
    min-height: 100vh;
    background:
        radial-gradient(circle at 15% 20%, rgba(47, 168, 79, 0.28), transparent 34%),
        radial-gradient(circle at 85% 85%, rgba(142, 231, 163, 0.14), transparent 34%),
        linear-gradient(135deg, #151918 0%, #1f2423 52%, #102018 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 100px;
    overflow: hidden;
    position: relative;
}

.hero-static::before {
    content: "HOLY";
    position: absolute;
    right: -50px;
    top: 110px;
    font-size: 15vw;
    line-height: 1;
    font-weight: 900;
    color: rgba(255,255,255,0.035);
    letter-spacing: -10px;
    pointer-events: none;
}

.hero-static::after {
    content: "TRINITY";
    position: absolute;
    left: -50px;
    bottom: -40px;
    font-size: 13vw;
    line-height: 1;
    font-weight: 900;
    color: rgba(47, 168, 79, 0.07);
    letter-spacing: -10px;
    pointer-events: none;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 999px;
    filter: blur(4px);
    pointer-events: none;
}

.hero-shape-1 {
    width: 280px;
    height: 280px;
    top: 16%;
    right: 14%;
    background: rgba(47, 168, 79, 0.12);
    border: 1px solid rgba(142, 231, 163, 0.20);
}

.hero-shape-2 {
    width: 160px;
    height: 160px;
    bottom: 16%;
    left: 8%;
    background: rgba(142, 231, 163, 0.10);
    border: 1px solid rgba(142, 231, 163, 0.16);
}

.hero-static-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-static-content {
    max-width: 760px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid rgba(143, 231, 163, 0.4);
    background: rgba(47, 168, 79, 0.12);
    color: #9cf0af;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 700;
    margin-bottom: 26px;
}

.hero-static h1 {
    font-size: clamp(2.7rem, 6.2vw, 6rem);
    line-height: 0.98;
    letter-spacing: -4px;
    font-weight: 900;
    margin-bottom: 28px;
}

.hero-static h1 span {
    display: block;
    color: #72d98a;
}

.hero-static p {
    color: rgba(255,255,255,0.80);
    max-width: 720px;
    font-size: 1.08rem;
    margin-bottom: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 42px;
    margin-bottom: 34px;
}

.hero-mini-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 14px;
    max-width: 620px;
}

.hero-mini-stats div {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(14px);
}

.hero-mini-stats strong {
    display: block;
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1.1;
    font-weight: 900;
}

.hero-mini-stats span {
    display: block;
    color: rgba(255,255,255,0.62);
    font-size: 0.82rem;
    margin-top: 5px;
}

.hero-visual-card {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrap {
    width: min(520px, 100%);
    height: 600px;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(142, 231, 163, 0.25);
    box-shadow:
        0 40px 90px rgba(0,0,0,0.38),
        0 0 0 16px rgba(255,255,255,0.035);
}

.hero-image-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(21,25,24,0.35)),
        radial-gradient(circle at 70% 25%, rgba(47,168,79,0.12), transparent 35%);
    z-index: 2;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    width: 150px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 55px rgba(0,0,0,0.28);
    z-index: 5;
}

.hero-floating-card span {
    display: block;
    color: #8ee7a3;
    font-weight: 900;
    font-size: 1.55rem;
    line-height: 1;
}

.hero-floating-card small {
    display: block;
    color: rgba(255,255,255,0.70);
    font-size: 0.82rem;
    margin-top: 7px;
}

.card-top {
    top: 58px;
    right: 0;
}

.card-bottom {
    bottom: 72px;
    left: 0;
}

@media (max-width: 980px) {
    .hero-static {
        min-height: auto;
        padding-top: 165px;
        padding-bottom: 90px;
    }

    .hero-static-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .hero-static h1 {
        letter-spacing: -2px;
    }

    .hero-visual-card {
        min-height: auto;
    }

    .hero-image-wrap {
        height: 480px;
    }

    .card-top {
        right: 18px;
    }

    .card-bottom {
        left: 18px;
    }
}

@media (max-width: 640px) {
    .hero-static {
        padding-top: 155px;
        padding-bottom: 70px;
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .hero-image-wrap {
        height: 390px;
        border-radius: 26px;
    }

    .hero-floating-card {
        width: 130px;
        padding: 15px;
    }

    .hero-floating-card span {
        font-size: 1.25rem;
    }

    .card-top {
        top: 28px;
        right: 10px;
    }

    .card-bottom {
        bottom: 32px;
        left: 10px;
    }
}  

@media (max-width: 640px) {
    .hero {
        min-height: auto;
        padding: 165px 0 100px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero-dots {
        bottom: 24px;
    }
}

        @media (max-width: 1100px) {
            .nav-links {
                gap: 14px;
                font-size: 0.84rem;
            }

            .portal-btn {
                padding: 9px 14px;
                font-size: 0.8rem;
            }
        }

        @media (max-width: 980px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn,
            .mobile-breadcrumb {
                display: flex;
            }

            .mobile-breadcrumb {
                display: block;
            }

            .hero-grid,
            .about-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .values-grid,
            .team-grid,
            .milestones-grid,
            .courses-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero h1 {
                letter-spacing: -2px;
            }
        }

        @media (max-width: 640px) {
            .container {
                width: min(100% - 28px, 1180px);
            }

            .section {
                padding: 65px 0;
            }

            .hero {
                min-height: auto;
                padding: 165px 0 90px;
            }

            .values-grid,
            .team-grid,
            .milestones-grid,
            .courses-grid,
            .stats {
                grid-template-columns: 1fr;
            }

            .hero-actions,
            .newsletter,
            .footer-bottom {
                flex-direction: column;
            }

            .hero-card,
            .info-card {
                padding: 24px;
            }

            .course-img {
                height: 210px;
            }

            .video-hero {
                min-height: 520px;
                background-attachment: scroll;
            }

            .video-play-btn {
                width: 76px;
                height: 76px;
                margin-bottom: 32px;
            }

            .video-play-btn span {
                border-top-width: 13px;
                border-bottom-width: 13px;
                border-left-width: 21px;
            }

            .video-modal-close {
                top: -48px;
                right: 0;
            }
        }

        @media (max-width: 520px) {
            .brand span {
                display: none;
            }

            .portal-btn {
                padding: 9px 12px;
                font-size: 0.76rem;
            }

            .nav-inner {
                height: 72px;
            }
        }

        @media (max-width: 640px) {
            .philosophy {
                background-attachment: scroll;
            }
        }