   /* ==========================
        BASE
        ========================== */
        :root {
    --bs-font-sans-serif: "Poppins", system-ui, -apple-system, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, sans-serif;
}
      
        body {
           font-family: var(--bs-font-sans-serif);
            scroll-behavior: smooth;
            margin: 0;
            padding: 0;
        }

        a {
            text-decoration: none;
        }

        /* ==========================
        SCROLL PROGRESS
        ========================== */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            width: 0%;
            background: linear-gradient(90deg, #0d6efd, #00c6ff);
            z-index: 9999;
            transition: width 0.2s ease;
        }

        /* ==========================
        CINEMATIC NAVBAR
        ========================== */
        .cinematic-navbar {
            padding: 15px 0;
            transition: all 0.4s ease;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
            backdrop-filter: blur(15px);
            z-index: 9999;
        }

        .cinematic-navbar.scrolled {
            background: rgba(0, 0, 0, 0.85);
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
            padding: 10px 0;
        }

        .cinematic-navbar.nav-hidden {
            transform: translateY(-100%);
        }

        .cinematic-navbar .nav-link {
            color: #fff !important;
            margin: 0 12px;
            font-weight: 500;
            position: relative;
            transition: 0.3s;
        }

        .cinematic-navbar .nav-link::after {
            content: "";
            position: absolute;
            width: 0%;
            height: 2px;
            bottom: -5px;
            left: 0;
            background: #0d6efd;
            transition: 0.3s;
        }

        .cinematic-navbar .nav-link:hover::after,
        .cinematic-navbar .nav-link.active::after {
            width: 100%;
        }

        /* Hamburger */
        .hamburger {
            width: 30px;
            height: 22px;
            position: relative;
            cursor: pointer;
        }

        .hamburger span {
            position: absolute;
            height: 3px;
            width: 100%;
            background: white;
            left: 0;
            transition: 0.3s;
        }

        .hamburger span:nth-child(1) {
            top: 0;
        }

        .hamburger span:nth-child(2) {
            top: 9px;
        }

        .hamburger span:nth-child(3) {
            bottom: 0;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg);
            top: 9px;
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg);
            bottom: 9px;
        }

       

        /* ==========================
        HERO SWIPER
        ========================== */
        .heroSwiper {
            width: 100%;
            height: 100vh;
        }


        h1, h2, h3, h4, h5 {
    font-weight: 600;
    letter-spacing: -0.5px;
        }

        .hero-slide h1 {
            font-weight: 700;
        }

        .hero-slide {
            background-size: cover;
            background-position: center;
            position: relative;
            height: 100vh;
        }

        .hero-slide::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
        }

        .hero-slide .container {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #fff;
            transform: translateZ(0);
        }

        .hero-slide h1 {
            font-size: 3rem;
            transform: translateY(-20px);
            animation: fadeInUp 1s ease forwards;
        }

        .hero-slide p {
            font-size: 1.3rem;
            margin-bottom: 20px;
            transform: translateY(20px);
            animation: fadeInUp 1s ease 0.3s forwards;
        }

        .hero-slide .btn {
            transform: scale(0.8);
            animation: fadeInUp 1s ease 0.6s forwards;
        }

        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ==========================
        SERVICES
        ========================== */
        #services {
            background: linear-gradient(to bottom, #ffffff, #f8f9fa);
            padding: 5rem 0;
        }

        .service-card {
            padding: 40px 25px;
            border-radius: 15px;
            background: #ffffff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .icon-box {
            font-size: 40px;
            margin-bottom: 20px;
            color: #0d6efd;
        }

        /* ==========================
        ABOUT
        ========================== */
        .about-box {
            background: white;
            border-radius: 15px;
            padding: 30px;
        }

        /* ==========================
        CONTACT
        ========================== */
        .contact-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
        }

        #contact {
            background: #f8f9fa;
            padding: 5rem 0;
        }

        /* ==========================
        FOOTER
        ========================== */
        footer {
            background: #0a1f44;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }

        /* ==========================
        DARK MODE
        ========================== */
        body.dark-mode {
            background: #111;
            color: #eee;
        }

        body.dark-mode .bg-light {
            background: #1c1c1c !important;
        }

        body.dark-mode .card,
        body.dark-mode .service-card,
        body.dark-mode .contact-card,
        body.dark-mode .about-box {
            background: #222;
            color: #eee;
        }


        /* =========================================
   GLOBAL RESPONSIVE FIXES
========================================= */
section {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* =========================================
   HERO RESPONSIVE
========================================= */

/* Tablets */
@media (max-width: 992px) {
    .hero-slide h1 {
        font-size: 2.2rem;
    }

    .hero-slide p {
        font-size: 1.1rem;
    }

    .heroSwiper,
    .hero-slide {
        height: 80vh;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .heroSwiper,
    .hero-slide {
        height: 75vh;
    }

    .hero-slide h1 {
        font-size: 1.8rem;
    }

    .hero-slide p {
        font-size: 1rem;
    }

    .hero-slide .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

/* =========================================
   PREMIUM MOBILE NAV
========================================= */

@media (max-width: 991px) {

    body.menu-open {
        overflow: hidden;
    }

    #navMenu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.96);
        backdrop-filter: blur(15px);
        padding-top: 120px;
        transform: translateY(-100%);
        transition: transform 0.4s ease;
        z-index: 9998;
    }

    #navMenu.show {
        transform: translateY(0);
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-item {
        margin: 20px 0;
    }

    /* Close Button */
    .menu-close {
        position: absolute;
        top: 30px;
        right: 35px;
        font-size: 2rem;
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
        transition: 0.3s;
    }

    .menu-close:hover {
        transform: rotate(90deg);
        color: #0d6efd;
    }
}




/* =========================================
   HAMBURGER ANIMATION
========================================= */

.hamburger span {
    transition: 0.4s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(9px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-9px);
}


/* =========================================
   SERVICES RESPONSIVE
========================================= */

@media (max-width: 768px) {
    #services {
        padding: 3rem 0;
    }

    .service-card {
        padding: 30px 20px;
    }
}

/* =========================================
   ABOUT SECTION RESPONSIVE
========================================= */

@media (max-width: 992px) {
    #about .row {
        text-align: center;
    }

    #about .col-lg-6 {
        margin-bottom: 30px;
    }

    .about-box {
        padding: 25px;
    }
}

/* =========================================
   CONTACT SECTION RESPONSIVE
========================================= */

@media (max-width: 992px) {
    #contact .col-lg-5,
    #contact .col-lg-7 {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .contact-card {
        padding: 20px;
    }

    .contact-info p {
        font-size: 0.95rem;
    }
}

/* =========================================
   FOOTER RESPONSIVE
========================================= */

@media (max-width: 576px) {
    footer {
        font-size: 0.9rem;
        padding: 1.5rem 0;
    }
}


/* =========================================
   MOBILE MENU CLOSE BUTTON
========================================= */

.menu-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    z-index: 9999;
    transition: 0.3s;
}

.menu-close:hover {
    transform: rotate(90deg);
    color: #0d6efd;
}


#hiring .card:hover {
    transform: translateY(-10px);
    transition: 0.3s;
}


/* Improve application header spacing */
@media (min-width: 992px) {
    .application-header {
        min-height: 300px;
    }
}





