body {
    margin: 0;
    font-family: "Poppins", sans-serif;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* VIDEO BACKGROUND — FIXED */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 58%);
    ;
    z-index: 1;
}

/* NAVBAR */
.navbar {
    z-index: 3;
    padding-top: 15px;
}

/* HERO CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    margin-top: -60px;
}

/* TEXT */
.hero-title {
    font-size: 3rem;
    font-weight: 700;
}

.hero-sub {
    font-size: 2rem;
    font-weight: 600;
}

/* STEP PILLS */
.step-pill {
    background: #0000005a;
    color: #fff;
    padding: 14px 26px;
    border-radius: 50px;
    font-weight: 500;
    white-space: nowrap;
}

/* CONTACT INFO */
.contact-info {
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-link {
    color: #7fef5d;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-size: 16px;
}

.contact-link:hover {
    opacity: 0.75;
}

/* =========================
   FIXED ANIMATION STABILITY
   ========================= */

.why-box {
    min-width: 260px;
    text-align: center;
    will-change: opacity;
}

.col-auto {
    flex: 0 0 auto;
}

#whyHeading,
.why-box {
    transition: opacity 1.6s ease-in-out;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.fade-out {
    opacity: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-sub {
        font-size: 1.4rem;
    }

    .why-box {
        min-width: 220px;
    }
}

/* =========================
   MOBILE CONTACT RESPONSIVE
   ========================= */

@media (max-width: 768px) {

    /* Navbar stack */
    .navbar .container {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    /* Contact info mobile style */
    .contact-info {
        font-size: 0.85rem;
        text-align: center;
        margin-top: 4px;
    }

    .contact-info span {
        display: inline-block;
        margin: 0 6px;
    }

    .contact-link {
        color: #7fef5d;
        /* yellow like screenshot */
        font-weight: 500;
    }
}

@media (max-width: 768px) {
    .contact-link i {
        color: #7fef5d;
        /* icon highlight */
    }
}

.contact-link {
    color: #7fef5d;
    text-decoration: none;
    font-size: 14px;
}

.contact-link:hover {
    color: #7fef5d;
}

.footer {
    position: fixed;
    z-index: 999;
    font-size: 14px;
    bottom: 0;
    background: black;
    width: 100vw;
}

.legal-links a {
    color: #a1a6a1;
    text-decoration: none;
    margin: 0 6px;
}

.legal-links span {
    color: #a1a6a1;
}

.legal-links a:hover {
    color: #7CFF7C;
}

/* Mobile center */

@media(max-width:768px) {
    .legal-links {
        right: 50%;
        transform: translateX(50%);
    }
}