@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
    --font-body: 'Manrope', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --dark: #060b19;
    --dark-soft: #0d1428;
    --light: #ffffff;
    --muted: #e9edf8;
    --primary: #0247e7;
    --secondary: #00c2ff;
    --surface: #0e1322;
    --surface-2: #151f3f;
    --border: rgba(255, 255, 255, 0.12);
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--light);
    background: linear-gradient(180deg, #030713 0%, #050b1d 40%, #070f26 100%);
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--light);
    font-family: var(--font-heading);
    margin-top: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

a:hover,
a:focus {
    color: var(--secondary);
    text-decoration: none;
}

.container {
    max-width: 1300px;
}

.section-space {
    padding: 40px 0;
}

.section-header {
    margin-bottom: 42px;
}

.section-header p {
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 12px;
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
}

.section-header h2 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 0;
}

.btn {
    border: 0;
    border-radius: 999px;
    padding: 13px 28px;
    color: var(--light);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    background: var(--secondary);
}

.btn:hover {
    color: var(--light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.form-control {
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    min-height: 50px;
    padding: 12px 16px;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-color: var(--secondary);
    box-shadow: none;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-control::placeholder {
    color: #8c98b8;
}

#loader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #040913;
    visibility: hidden;
    opacity: 0;
    z-index: 9999;
    transition: 0.4s;
}

#loader.show {
    visibility: visible;
    opacity: 1;
}

#loader .loader {
    width: 42px;
    height: 42px;
    border: 4px solid rgba(255, 255, 255, 0.25);
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    padding: 11px 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #fff;
    z-index: 99;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 40px;
    background: rgba(2, 8, 24, 0.7) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar.nav-sticky {
    background: rgba(2, 8, 24, 0.95) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.navbar .navbar-brand {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
}

.navbar .navbar-brand:hover {
    color: var(--secondary);
}

.navbar-light .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 10px;
    padding: 8px 12px;
    outline: none;
}

.navbar-light .navbar-toggler:focus {
    box-shadow: none;
}

.navbar-light .navbar-toggler-icon {
    width: 1.2em;
    height: 1.2em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link:visited {
    color: #e7ecff;
    font-weight: 600;
    margin-left: 16px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.active:hover,
.navbar-light .navbar-nav .nav-link.active:focus {
    color: var(--secondary) !important;
}

.hero {
    padding: 100px 0 10px;
    min-height: 80vh;
    background: radial-gradient(circle at top right, rgba(106, 92, 255, 0.35), transparent 38%),
        radial-gradient(circle at 15% 20%, rgba(0, 194, 255, 0.22), transparent 30%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    color: var(--secondary);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.3px;
    font-weight: 700;
    margin-bottom: 18px;
}

.hero-copy h1 {
    font-size: 65px;
    line-height: 1.03;
    margin-bottom: 20px;
}

.hero-copy p {
    color: var(--muted);
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.hero-media {
    position: relative;
    text-align: center;
}

/* .hero-media img {
    width: min(430px, 100%);
    border-radius: 24px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
} */

.hero-stats {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 10px;
}

.stat-box h3 {
    font-family: var(--font-body);
    font-weight: 800;
    margin-bottom: 4px;
    font-size: 26px;
}

.stat-box p {
    margin: 0;
    font-size: 12px;
    color: var(--muted);
}

/* .trusted-strip {
    padding: 0 0 70px;
} */

.trusted-strip p {
    text-align: center;
    color: var(--muted);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.brand-marquee {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    background: #d6d6d657;
    padding: 10px 0px;
}

.brand-track {
    display: flex;
    width: max-content;
    gap: 12px;
    animation: trustedScroll 30s linear infinite;
}

.brand-marquee:hover .brand-track {
    animation-play-state: paused;
}

.brand-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px 8px 8px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    white-space: nowrap;
}

.brand-item img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-item span {
    color: #d4defb;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

@keyframes trustedScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 6px));
    }
}

.about-panel img {
    width: 80%;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.about-content p {
    color: var(--muted);
    margin-bottom: 20px;
    text-align: justify;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.feature-list li {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 11px 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.programs {
    position: relative;
    overflow: hidden;
    background: transparent;
}

.programs .section-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.programs .section-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(6, 11, 25), rgba(6, 11, 25, 0.20), rgb(5 11 29));
}

.programs .container {
    position: relative;
    z-index: 2;
}

.programs-delayed-content {
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
}

.programs-delayed-content.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.program-card {
    background: linear-gradient(180deg, var(--surface), var(--surface-2));
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 26px;
}

.program-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.program-card p {
    color: var(--muted);
    margin: 0;
}

.program-actions {
    margin-top: 28px;
    padding: 26px 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    background: rgba(4, 10, 22, 0.45);
    backdrop-filter: blur(3px);
}

.program-actions .program-tagline {
    margin: 0 auto 16px;
    max-width: 920px;
    font-size: clamp(20px, 2.5vw, 34px);
    line-height: 1.35;
    color: #ffffff;
    font-weight: 700;
    font-family: var(--font-heading);
}

.gallery-row img {
    width: 100%;
    border-radius: 15px;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.gallery-row img:hover {
    transform: translateY(-6px);
}

.explore {
    position: relative;
    overflow: hidden;
}

.explore .explore-video {
    display: block;
    width: 100%;
    height: auto;
}

.explore .explore-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(6, 11, 24, 0.40), rgba(0, 0, 0, 0), rgba(6, 11, 24, 0.40));
}

.video-slider-section {
    padding-top: 20px;
}

.video-slider-section .banner-swiper {
    position: relative;
    padding: 6px 6px 44px;
}

.video-slider-section .swiper-slide {
    height: auto;
}

.video-slider-section .banner-video {
    width: 100%;
    /* aspect-ratio: 16 / 9; */
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #030711;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.video-slider-section .banner-swiper-prev,
.video-slider-section .banner-swiper-next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(5, 12, 30, 0.85);
    color: #dff3ff;
}

.video-slider-section .banner-swiper-prev::after,
.video-slider-section .banner-swiper-next::after {
    font-size: 14px;
    font-weight: 900;
}

.video-slider-section .banner-swiper-prev:hover,
.video-slider-section .banner-swiper-next:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.video-slider-section .banner-swiper-pagination {
    bottom: 2px !important;
}

.video-slider-section .banner-swiper-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: #7f8aac;
    opacity: 0.9;
}

.video-slider-section .banner-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--secondary);
}

.event-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.event-card {
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
}

.event-card span {
    color: var(--secondary);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.event-card h3 {
    font-size: 26px;
    margin: 10px 0;
}

.event-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.testimonial {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.testimonial .testimonial-item {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    background: var(--surface);
    text-align: center;
}

.testimonial .testimonial-item p {
    color: #d7e1ff;
    margin-bottom: 18px;
}

.testimonial .testimonial-item h3 {
    margin-bottom: 3px;
    font-size: 24px;
}

.testimonial .testimonial-item h4 {
    margin: 0;
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 14px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    background: linear-gradient(180deg, #1a254470, #02010340);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
}

.contact-copy h4 {
    font-size: 34px;
    margin-bottom: 16px;
}

.contact-copy p {
    color: var(--muted);
}

.alert {
    border: 0;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 14px;
}

.footer {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #030711;
}

.footer-info {
    text-align: center;
    padding-bottom: 26px;
}

.footer-info h2 {
    font-size: 34px;
    margin-bottom: 8px;
}

.footer-info h3 {
    font-size: 17px;
    color: var(--muted);
    font-family: var(--font-body);
}

.footer-menu {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 18px 0;
    color: #c8d4f3;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    margin: 0 4px;
    color: #d6e0fe;
}

.footer-social a:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    padding: 16px 0 26px;
    color: #99a7cd;
    font-size: 14px;
}

.about {
    background: linear-gradient(0deg, #060b18, #0000009c), url('../img/bg/1.jpeg');
}

.events {
    background: linear-gradient(0deg, #060b18, #0000009c), url('../img/bg/2.jpeg');
}

.contact {
    background: linear-gradient(0deg, #060b18, #0000009c), url('../img/bg/3.jpeg');
}

/* .programs,
.video-slider-section,
.events,
.contact {
    background: rgba(255, 255, 255, 0.04);
} */


@media (max-width: 1199.98px) {
    .hero-copy h1 {
        font-size: 56px;
    }

    .section-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 14px 16px;
    }

    .navbar .navbar-brand {
        font-size: 25px;
    }

    .navbar-light .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.5);
    }

    .navbar-light .navbar-nav .nav-link {
        margin: 2px 0;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-inner,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-copy h1 {
        font-size: 42px;
    }

    .hero-media {
        margin-top: 14px;
    }

    .hero-stats,
    .event-grid,
    .program-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .video-slider-section .banner-swiper-prev,
    .video-slider-section .banner-swiper-next {
        display: none;
    }

    .section-space {
        padding: 70px 0;
    }

    .section-header h2 {
        font-size: 34px;
    }

    .about-panel img {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .hero-copy h1 {
        font-size: 34px;
    }

    .hero-stats,
    .event-grid,
    .program-grid,
    .feature-list {
        grid-template-columns: 1fr;
    }

    .brand-item {
        padding-right: 12px;
    }

    .footer-menu {
        flex-direction: column;
        gap: 8px;
    }
}