
        /* --- CSS Variables & Reset --- */
        :root {
            --primary-blue: #002855;
            /* Deep Navy from Logo */
            --secondary-red: #D31212;
            /* Red from Logo */
            --accent-blue: #4da6ff;
            /* Light Blue from Logo */
            --text-dark: #1a1a1a;
            --text-light: #666;
            --white: #ffffff;
            --bg-light: #f4f8fb;
            --bg-dark: #0a1e3f;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            line-height: 1.7;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        ul {
            list-style: none;
        }

        a {
            text-decoration: none;
            transition: all 0.3s;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 100px 0;
        }

        .bg-light {
            background-color: var(--bg-light);
        }

        .section-header {
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 15px;
        }

        .section-subtitle {
            color: var(--secondary-red);
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            display: block;
            margin-bottom: 10px;
        }

        /* --- Buttons --- */
        .btn {
            display: inline-block;
            padding: 14px 35px;
            font-weight: 600;
            border-radius: 5px;
            transition: all 0.3s;
            cursor: pointer;
        }

        .btn-primary {
            background-color: var(--secondary-red);
            color: var(--white);
            border: 2px solid var(--secondary-red);
        }

        .btn-primary:hover {
            background-color: transparent;
            color: var(--secondary-red);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-outline:hover {
            background-color: var(--white);
            color: var(--primary-blue);
        }

        /* --- Header / Navbar --- */
        .navbar {
            background: var(--white);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img {
            height: 100px;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-links {
            display: flex;
            gap: 25px;
        }

        .nav-links a {
            color: var(--primary-blue);
            font-weight: 600;
            font-size: 15px;
        }

        .nav-links a:hover {
            color: var(--secondary-red);
        }

        .hamburger {
            display: none;
            font-size: 24px;
            color: var(--primary-blue);
            cursor: pointer;
        }

        /* --- Hero Banner --- */
        .hero {
            height: 90vh;
            background: linear-gradient(rgba(0, 40, 85, 0.7), rgba(0, 40, 85, 0.7)), url('img/banner.png');
            background-size: cover;
            background-position: center;
            color: var(--white);
            display: flex;
            align-items: center;
            margin-top: 90px;
        }

        .hero-content {
            max-width: 700px;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
        }

        /* --- About Section --- */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text p {
            margin-bottom: 20px;
            color: var(--text-light);
        }

        .about-images {
            position: relative;
        }

        .about-img-1 {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-img-2 {
            position: absolute;
            bottom: -40px;
            left: -40px;
            width: 50%;
            border: 5px solid var(--white);
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* --- Services Section --- */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .service-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-img {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }

        .service-content {
            padding: 25px;
        }

        .service-content h3 {
            color: var(--primary-blue);
            margin-bottom: 15px;
        }

        .service-content p {
            color: var(--text-light);
            font-size: 14px;
        }

        /* --- Process Section --- */
        .process-section {
            background-color: var(--bg-dark);
            color: var(--white);
        }

        .process-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .process-img {
            border-radius: 10px;
        }

        .process-steps {
            counter-reset: step;
        }

        .process-step {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            position: relative;
        }

        .process-step::before {
            counter-increment: step;
            content: "0" counter(step);
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-red);
            line-height: 1;
        }

        .process-content h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .process-content p {
            opacity: 0.8;
            font-size: 14px;
        }

        /* --- FAQ Section --- */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--white);
            border: 1px solid #eee;
            margin-bottom: 10px;
            border-radius: 5px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            background: var(--bg-light);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--primary-blue);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 20px;
        }

        .faq-answer p {
            padding: 20px 0;
            color: var(--text-light);
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        /* --- Footer --- */
        .footer {
            background: var(--primary-blue);
            color: var(--white);
            padding: 80px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-widget h3 {
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-widget h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 30px;
            height: 2px;
            background: var(--secondary-red);
        }

        .footer-widget p,
        .footer-widget a {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            margin-bottom: 12px;
            display: block;
        }

        .footer-widget a:hover {
            color: white;
        }

        .footer-contact li {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
            align-items: center;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-contact i {
            color: var(--secondary-red);
        }

        .social-links a {
            display: inline-flex;
            width: 35px;
            height: 35px;
            background: rgba(255, 255, 255, 0.1);
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            margin-right: 10px;
            transition: 0.3s;
        }

        .social-links a:hover {
            background: var(--secondary-red);
        }

        .footer-bottom {
            background: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
            text-align: center;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }

        /* --- Responsive Design --- */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-img-2 {
                display: none;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 90px;
                left: -100%;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 30px;
                transition: 0.4s;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-links {
                flex-direction: column;
                width: 100%;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .about-grid,
            .process-grid {
                grid-template-columns: 1fr;
            }

            .process-img {
                order: -1;
            }
        }

        @media (max-width: 600px) {
            .services-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .hero-btns {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                text-align: center;
            }
        }


        /* --- Why Choose Us Section --- */
.choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Feature Items (Icon + Text) */
.feature-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.feature-icon {
    min-width: 60px;
    height: 60px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-red);
    font-size: 1.5rem;
    transition: 0.3s;
}

.feature-item:hover .feature-icon {
    background-color: var(--secondary-red);
    color: var(--white);
}

.feature-item h4 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 30px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.stat-box h3 {
    font-size: 2rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.stat-box span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Right Side Image Composition */
.choose-image-wrapper {
    position: relative;
    padding-left: 20px; /* Space for the badge overlap if needed */
}

.choose-main-img {
    border-radius: 10px;
    width: 100%;
    height: 600px; /* Taller image for impact */
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: 50px;
    left: -30px; /* Pulls it slightly off the image */
    background-color: var(--secondary-red);
    color: var(--white);
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(211, 18, 18, 0.4);
    border: 5px solid var(--white);
}

.experience-badge .years {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .choose-grid {
        grid-template-columns: 1fr;
    }
    .choose-image-wrapper {
        margin-top: 40px;
    }
    .choose-main-img {
        height: 400px;
    }
    .experience-badge {
        left: 20px; /* Bring inside on mobile */
        bottom: 20px;
        padding: 20px;
    }
    .experience-badge .years {
        font-size: 2rem;
    }
}