* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    overflow-x: hidden;
    background: #f5f5f5;
}

.mobile-explore-item {
    display: none;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.top-header {
    background: #f5f5f5;
}

.custom-navbar {
    background: #0a0f1c;
}

/* ========================= */
/* HEADER */
/* ========================= */

.top-header {
    background: #f5f5f5;
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 50px;
}

.logo h1 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #0a0f1c;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 10px;
    text-decoration: none;
    color: #272727;
    font-size: 15px;
    font-weight: 600;

    transition: .3s ease;
}

.contact-btn:hover {
    color: rgb(129, 129, 129);
}

.support-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 10px 20px;

    border-radius: 12px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    color: #0a0f1c;

    border:
        1px solid rgba(0, 0, 0, .08);

    background: white;

    transition: .3s ease;
}

.support-btn:hover {
    background: #f1f5f9;

    color: #0a0f1c;

    transform: translateY(-2px);
}


.header-actions {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 10px;

    flex-wrap: wrap;
}

/* LINKS */

.top-link {
    text-decoration: none;

    color: #0a0f1c;

    font-size: 15px;

    font-weight: 700;

    transition: .3s ease;
}

.top-link:hover {
    color: #0b4dbb;
}

/* DIVIDER */

.divider {
    color: #999;

    font-size: 14px;
}

/* ICON */

.header-icon {
    font-size: 18px;

    line-height: 1;
}


/* ========================= */
/* NAVBAR */
/* ========================= */

.custom-navbar {
    background: #0a0f1c;
    padding: 5px 0;
}

.top-header .container,
.custom-navbar .container {
    max-width: 1400px;
    width: 100%;
    margin: auto;
}

/* NAVBAR ALIGNMENT */

.custom-navbar .navbar-nav {
    margin-left: 0;
    padding-left: 0;
}

/* REMOVE EXTRA SPACING */

.custom-navbar .navbar {
    padding-left: 0;
    padding-right: 0;
}

/* ALIGN ITEMS */

.custom-navbar .row {
    align-items: center;
}

/* NAVBAR MENU */

.custom-navbar .navbar-nav {
    display: flex;
    align-items: center;
    gap: 50px;
}


/* NAV LINKS */

.nav-link {
    color: white !important;
    font-size: 16px;
    font-weight: 500;
    padding: 0 !important;
    transition: 0.3s ease;
}

.nav-link:hover {
    color: #0b4dbb !important;
}

/* BUTTON */

.explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #666;
    padding: 5px 32px;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: 0.3s ease;
}

.explore-btn:hover {
    background: white;
    color: #111;
}

/* DROPDOWN MENU */

/* ========================= */
/* DROPDOWN */
/* ========================= */

.dropdown-menu {
    background: #0a0f1c;

    backdrop-filter: blur(12px);

    border: none;

    border-radius: 20px;

    padding: 14px;

    margin-top: 18px;

    min-width: 230px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.35);

    animation: dropdownFade .25s ease;
}


/* ITEMS */

.dropdown-item {
    display: flex;

    align-items: center;

    gap: 14px;

    padding: 16px 18px;

    border-radius: 14px;

    color: white;

    font-size: 18px;
    font-weight: 600;

    transition: .3s ease;

    position: relative;
}


/* HOVER */

.dropdown-item:hover {
    background: #0b4dbb;

    color: white;

    transform: translateX(6px);
}


/* SMALL DESCRIPTION */

.dropdown-item span {
    display: block;

    font-size: 13px;

    opacity: .7;

    margin-top: 4px;

    font-weight: 400;
}


/* REMOVE DEFAULT BLUE */

.dropdown-item:active {
    background: #0b4dbb;
}


/* DROPDOWN ANIMATION */

@keyframes dropdownFade {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* ===================================== */
/* HERO */
/* ===================================== */

.about-hero-box {
    padding: 150px 0;
    padding-bottom: 50px;

    background: #ffffff;
}

.hero-card {
    position: relative;

    width: 85%;
    max-width: 1350px;

    height: 660px;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 28px;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .12);
}

.hero-card img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, .75) 0%,
            rgba(0, 0, 0, .35) 45%,
            rgba(0, 0, 0, .05) 100%);
}

.hero-content {
    position: absolute;

    top: 50%;
    left: 80px;

    transform: translateY(-50%);

    z-index: 2;

    max-width: 520px;
}

.hero-content h1 {
    font-size: 65px;
    line-height: .95;
    font-weight: 900;
    color: #fff;
    margin-bottom: 25px;
}

.hero-line {
    width: 95px;
    height: 5px;

    background: #0b4dbb;

    border-radius: 50px;

    margin-bottom: 25px;
}

.hero-content p {
    color: #fff;
    font-size: 20px;
    line-height: 1.7;
}

/* ===================================== */
/* STORY SECTION */
/* ===================================== */

.story-section {
    padding: 25px 0;
    background: white;
}

.story-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

/* YEAR */

.story-year {
    font-size: 90px;

    font-weight: 900;

    color: #0b4dbb;

    display: block;

    margin-bottom: 20px;
}

/* TITLE */

.story-left h2 {
    font-size: 62px;

    font-weight: 900;

    line-height: 1.05;

    margin-bottom: 30px;

    color: #111;
}

/* TEXT */

.story-left p {
    font-size: 20px;

    line-height: 1.9;

    color: #4b5563;

    margin-bottom: 24px;
}

/* IMAGE */

.story-right img {
    width: 100%;

    height: 720px;

    object-fit: cover;

    border-radius: 40px;

    display: block;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.12);
}

/* STATS */

.stats-wrapper {
    display: flex;

    gap: 24px;

    margin-top: 40px;
}

.stat-box {
    background: #f7f8fb;

    padding: 30px;

    border-radius: 26px;

    min-width: 220px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-box h3 {
    font-size: 52px;

    font-weight: 900;

    color: #0b4dbb;

    margin-bottom: 12px;
}

.stat-box span {
    font-size: 16px;

    line-height: 1.6;

    color: #4b5563;
}

/* ===================================== */
/* VIDEO SECTION */
/* ===================================== */

.video-section {
    padding: 20px 0;

    background:
        linear-gradient(to bottom,
            #ffffff,
            #f5f7fb);
}

/* TITLE */

.section-heading {
    text-align: center;

    margin-bottom: 70px;
}

.section-heading span {
    color: #0b4dbb;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 2px;
}

.section-heading h2 {
    color: #111;

    font-size: 55px;

    font-weight: 900;

    margin-top: 18px;
}

/* GRID */

.video-grid {
    display: grid;

    grid-template-columns:
        1fr 1.2fr 1fr;

    gap: 34px;

    align-items: start;
}

/* CARD */

.video-card {
    transition: .4s ease;
}

.video-card:hover {
    transform: translateY(-10px);
}

/* VIDEO WRAPPER */

.video-wrapper {
    position: relative;

    overflow: hidden;

    border-radius: 30px;

    background: white;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.10);
}

/* VIDEO */

.video-wrapper video {
    width: 100%;

    height: 420px;

    object-fit: cover;

    display: block;

    transition: .5s ease;
}

/* CENTER VIDEO */

.featured-video video {
    height: 520px;
}

/* ZOOM */

.video-card:hover video {
    transform: scale(1.05);
}

/* CONTENT */

.video-content {
    text-align: center;

    padding: 34px 20px 0;
}

.video-content h3 {
    color: #111;

    font-size: 42px;

    font-weight: 900;

    margin-bottom: 20px;
}

.video-content p {
    color: #4b5563;

    font-size: 20px;

    line-height: 1.8;

    max-width: 420px;

    margin: auto;
}


/* ===================================== */
/* QUOTE */
/* ===================================== */

.quote-section {
    padding: 60px 0;
    margin-top: 60px;
    background:
        linear-gradient(135deg,
            #000c22,
            #004ba1);
}

.quote-box {
    text-align: center;

    max-width: 1000px;

    margin: auto;
}

/* ICON */

.quote-icon {
    width: 90px;
    height: 90px;

    border-radius: 24px;

    background: rgba(255, 255, 255, 0.10);

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 40px;
}

.quote-icon i {
    color: white;

    font-size: 34px;
}

/* TEXT */

.quote-box h2 {
    color: white;

    font-size: 60px;

    font-weight: 900;

    line-height: 1.2;
}

/* ===================================== */
/* CTA */
/* ===================================== */

.cta-section {
    padding: 120px 0;

    background: white;
}

.cta-box {
    text-align: center;
}

.cta-box h2 {
    font-size: 58px;

    font-weight: 900;

    margin-bottom: 24px;

    color: #111;
}

.cta-box p {
    font-size: 20px;

    color: #4b5563;

    margin-bottom: 40px;
}

/* BUTTON */

.cta-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(135deg,
            #000c22,
            #004ba1);

    color: white;

    text-decoration: none;

    padding: 22px 60px;

    border-radius: 18px;

    font-size: 20px;

    font-weight: 700;

    transition: .35s ease;
}

.cta-btn:hover {
    transform: translateY(-4px);

    color: white;
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer-section {
    background: #0a0f1c;
    color: white;

    padding: 70px 0 25px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;

    padding-bottom: 40px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


/* LEFT */

.footer-left {
    max-width: 320px;
}

.footer-left img {
    width: 90px;
    margin-bottom: 20px;
}

.footer-left p {
    color: #bdbdbd;
    line-height: 1.7;
}


/* LINKS */

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;

    transition: .3s ease;
}

.footer-links a:hover {
    color: #0b4dbb;
}

.footer-contact a,
.socials a {
    color: white;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #0b4dbb;
}

/* CONTACT */

.footer-contact p {
    margin-bottom: 20px;
    color: #bdbdbd;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 18px;

    padding: 12px 18px;

    border-radius: 14px;

    background: rgba(255, 255, 255, .05);

    border: 1px solid rgba(255, 255, 255, .08);

    color: white;

    font-size: 14px;
    font-weight: 600;
}

.footer-badge i {
    color: #ffffff;
    font-size: 18px;
}

.footer-company h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-company {
    max-width: 280px;
}

.footer-company p {
    color: #bdbdbd;
    line-height: 1.7;
    margin: 0;
    font-size: 14px;
}

.footer-certification {
    display: block;
    margin-top: 10px;

    color: #7f8aa3;

    font-size: 13px;

    letter-spacing: .5px;
}

/* COPYRIGHT */

.copyright {
    text-align: center;

    padding-top: 25px;

    color: #888;

    font-size: 14px;
}


/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media(max-width:1460px) {
    .navbar-expand-lg .navbar-collapse {
        margin-left: 28px;
    }
}

@media(max-width:1200px) {

    .about-hero-box {
        padding: 180px 0;
        padding-bottom: 46px;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .featured-video video {
        height: 420px;
    }

}

@media(max-width:991px) {

    .top-header .row {
        text-align: center;
    }

    .logo {
        justify-content: center;
        text-align: center;
        margin-bottom: 10px;
    }

    .header-actions {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 58px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 42px;
    }

    .quote-box h2 {
        font-size: 42px;
    }

    .cta-box h2 {
        font-size: 42px;
    }

    .desktop-explore {
        display: none !important;

    }

    /* SHOW MOBILE BUTTON ONLY WHEN MENU IS OPEN */

    .navbar-collapse.show .mobile-explore-item {
        display: flex;

        justify-content: center;

        width: 100%;

        margin-top: 5px;

        margin-bottom: 10px;

    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 35px;
    }

    .footer-left,
    .footer-links,
    .footer-contact {
        text-align: center;
        width: 100%;
    }

    .footer-left img {
        display: block;
        margin: 0 auto 20px;
    }

    .footer-links {
        align-items: center;
    }

    .socials {
        justify-content: center;
    }

}

/* ========================= */
/* DESKTOP MEGA MENU */
/* ========================= */

@media(min-width:992px) {

    .nav-item.dropdown {
        position: relative;
    }

    .mega-menu {
        width: 400px;

        padding: 20px;

        border: none;

        top: 10px;

        border-radius: 24px;

        background: #000c22;

        gap: 2px;

        box-shadow:
            0 20px 60px rgba(0, 0, 0, 0.08);
    }

    .about-hero-box {
        padding: 150px 0;
        padding-bottom: 46px;
    }

    /* ITEM */

    .mega-item {
        flex: 1;

        padding: 0 !important;

        background: transparent !important;

        border: none;

        text-align: left;

        transition: .3s ease;
    }

    .mega-item:hover {
        background: transparent !important;

        transform: none;
    }

    /* IMAGE */

    .mega-item img {
        width: 32%;
        height: 80px;
        object-fit: contain;
        margin-bottom: 8px;
        transition: .3s ease;
    }

    .mega-item:hover img {
        transform: translateY(-3px);
    }

    /* CONTENT */

    .mega-content h4 {
        font-size: 20px;

        font-weight: 700;

        color: #ffffff;

        margin-bottom: 4px;
    }

    .mega-content p {
        font-size: 13px;

        line-height: 1.5;

        color: #ffffff;

        margin: 0;
    }

    /* REMOVE DEFAULT */

    .mega-menu .dropdown-item {
        color: #111 !important;
    }

    .mega-menu .dropdown-item:hover {
        color: #111 !important;
    }

    .dropdown-menu {
        animation: fadeMenu .25s ease;
    }

    @keyframes fadeMenu {

        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }

    }
}

@media(max-width:768px) {
    .logo {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 8px;
    }

    .logo h1 {
        font-size: 18px;
        text-align: center;
    }

    /* ========================= */
    /* MOBILE DROPDOWN FIX */
    /* ========================= */

    .mega-menu {
        width: 100% !important;

        padding: 12px;

        border-radius: 20px;

        background: #000c22;

        flex-direction: column;

        gap: 12px;
    }

    /* ONLY OPEN WHEN CLICKED */

    .mega-menu.show {
        display: flex !important;
    }

    .mega-item {
        display: flex;

        justify-content: center;

        align-items: center;

        gap: 14px;

        padding: 10px !important;

        border-radius: 16px;

        background: rgba(255, 255, 255, 0.03) !important;
    }

    .mega-item img {
        width: 85px !important;

        height: 55px !important;

        object-fit: contain;

        margin: 0 !important;

        flex-shrink: 0;
    }

    .mega-content {
        flex: 1;
    }

    .mega-content h4 {
        font-size: 18px;

        margin-bottom: 2px;

        color: white;
    }

    .mega-content p {
        font-size: 12px;

        line-height: 1.4;

        color: rgba(255, 255, 255, 0.75);
    }

    .nav-item.dropdown .nav-link {
        justify-content: center !important;

        text-align: center;

        gap: 10px;

    }

    /* EXTRA SMALL DROPDOWN */

    .mega-item {
        gap: 10px;
    }

    .mega-item img {
        width: 70px !important;

        height: 45px !important;
    }

    .mega-content h4 {
        font-size: 16px;
    }

    .mega-content p {
        font-size: 11px;
    }

    .about-hero-box {
        padding: 190px 0;
        padding-bottom: 46px;

    }

    .about-hero {
        height: 90vh;
    }

    .hero-card {
        width: 92%;
        height: 500px;
    }

    .hero-content {
        left: 30px;
        right: 30px;
        text-align: -webkit-center;
    }

    .hero-content h1 {
        font-size: 35px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .story-left h2 {
        font-size: 40px;
    }


    .story-left p {
        font-size: 20px;
        line-height: 1.9;
        color: #4b5563;
        margin-bottom: 24px;
    }

    .story-year {
        font-size: 62px;
        margin-bottom: 15px;

    }

    .story-right img {
        height: 420px;
    }

    .stats-wrapper {
        flex-direction: column;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .video-section {
        padding: 45px 0;
    }

    .section-heading h2 {
        font-size: 38px;
    }

    .video-wrapper video {
        height: 300px;
    }

    .featured-video video {
        height: 320px;
    }

    .video-content h3 {
        font-size: 30px;
    }

    .video-content p {
        font-size: 20px;
    }

    .quote-box h2 {
        font-size: 34px;
    }

    .cta-box h2 {
        font-size: 34px;
    }

    .footer-content {
        flex-direction: column;
        gap: 35px;
    }

}

@media(max-width:630px) {
    .container{
        padding: 0 35px;
    }
    .story-left h2 {
        font-size: 30px;
    }


    .story-left p {
        padding: 0 28px;
        font-size: 16px;
        line-height: 1.9;
        color: #4b5563;
        margin-bottom: 24px;
    }

    .story-year {
        font-size: 62px;
        margin-bottom: 15px;

    }

    .video-content h3 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .video-content p {
        font-size: 17px;
    }
}

@media(max-width:460px) {
    .story-year {
        font-size: 50px;
        margin-bottom: 15px;
    }

    .story-left h2 {
        font-size: 30px;
    }


    .story-left p {
        padding: 0 28px;
        font-size: 16px;
        line-height: 1.9;
        color: #4b5563;
        margin-bottom: 24px;
    }
}