    :root {
        --primary: #202b5f;
        /* Dark blue */
        --secondary: #e8491d;
        /* Orange accent */
        --dark: #333;
        --light: #f8f9fa;
        --white: #ffffff;
        --grey: #efefef;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
        line-height: 1.6;
        color: var(--dark);
        background-color: var(--white);
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Header */
    header {
        /* background: var(--primary); */
        background: var(--grey);
        color: var(--white);
        padding: 5px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mv-box p {
        font-size: 1em;
        text-align: justify;
    }

    .mv-box .mission-text {
        text-align: left;
    }

    .footer-container p {
        text-align: justify;
    }

    .logo-img {
        height: 80px;
        /* Adjust based on your logo proportions */
        width: auto;
        transition: all 0.3s ease;
    }

    /* For retina displays */
    @media (-webkit-min-device-pixel-ratio: 2),
    (min-resolution: 192dpi) {
        .logo-img {
            height: 60px;
            /* Slightly larger for high-DPI screens */
        }
    }

    .logo {
        font-size: 24px;
        font-weight: 700;
        color: var(--white);
    }

    .logo span {
        color: var(--secondary);
    }

    nav ul {
        display: flex;
        list-style: none;
    }

    nav ul li {
        margin-left: 30px;
    }

    nav ul li a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    nav ul li a:hover {
        color: var(--secondary);
    }

    .mobile-menu-btn {
        display: none;
        background: none;
        border: none;
        color: var(--primary);
        font-size: 24px;
        cursor: pointer;
    }

    /* Mobile Menu */
    .mobile-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--primary);
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .mobile-menu.active {
        display: block;
    }

    .mobile-menu ul {
        list-style: none;
    }

    .mobile-menu ul li {
        margin-bottom: 15px;
    }

    .mobile-menu ul li a {
        color: var(--white);
        text-decoration: none;
        font-size: 18px;
        display: block;
        padding: 10px;
        transition: all 0.3s ease;
    }

    .mobile-menu ul li a:hover {
        color: var(--secondary);
        padding-left: 15px;
    }

    /* Hero Section */
    .hero {
        background: linear-gradient(rgba(32, 43, 95, 0.8), rgba(32, 43, 95, 0.8)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
        /* background: "/img/bg.jpg" */
        background-size: cover;
        background-position: center;
        height: 80vh;
        display: flex;
        align-items: center;
        text-align: center;
        color: var(--white);
    }

    .hero-content {
        max-width: 729px;
        margin: 0 auto;
        text-align: left;
    }

    .hero h1 {
        font-size: 2.8rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .btn {
        display: inline-block;
        background: var(--secondary);
        color: var(--white);
        padding: 12px 30px;
        border: none;
        border-radius: 5px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn:hover {
        background: #d1401a;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    /* Sections */
    .section {
        padding: 80px 0;
    }

    .section-title {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-title h2 {
        font-size: 2.2rem;
        color: var(--primary);
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }

    .section-title h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: var(--secondary);
    }

    /* What We Do */
    .what-we-do {
        background: var(--white);
    }

    .what-we-do-content {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .what-we-do-text {
        flex: 1;
        text-align: justify;
    }

    .what-we-do-text p {
        margin-bottom: 20px;
    }

    .what-we-do-img {
        flex: 1;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .what-we-do-img img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }

    .what-we-do-img:hover img {
        transform: scale(1.05);
    }

    /* About Us */
    .about {
        background: var(--light);
    }

    .about-content {
        text-align: justify;
        max-width: 800px;
        margin: 0 auto;
    }

    .about-content p {
        margin-bottom: 20px;
    }

    /* Mission & Vision */
    .mission-vision {
        background: var(--white);
    }

    .mv-container {
        display: flex;
        gap: 50px;
        margin-top: 40px;
    }

    .mv-box {
        flex: 2;
        background: var(--light);
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;

    }
    .mv-box .mission-text {
        text-align: justify;
    }


    .mv-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .mv-box h3 {
        color: var(--primary);
        margin-bottom: 20px;
        font-size: 1.5rem;
    }

    .mv-box i {
        font-size: 2.5rem;
        color: var(--secondary);
        margin-bottom: 20px;
    }

    /* Services */
    .services {
        background: var(--light);
    }

    .services-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .service-box {
        background: var(--white);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        text-align: justify;
    }

    .service-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .service-box i {
        font-size: 3rem;
        color: var(--primary);
        margin-bottom: 20px;
    }

    .service-box h3 {
        margin-bottom: 15px;
        color: var(--primary);
        font-size: 1.3rem;
    }

    /* Contact */
    .contact {
        background: var(--white);
    }

    .contact-container {
        display: flex;
        gap: 40px;
    }

    .contact-info {
        flex: 1;
    }

    .contact-info h3 {
        color: var(--primary);
        margin-bottom: 20px;
        font-size: 1.5rem;
    }

    .contact-info p {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

    .contact-info i {
        color: var(--secondary);
        margin-right: 10px;
        width: 20px;
        text-align: center;
    }

    .contact-form {
        flex: 1;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 5px;
        font-weight: 500;
        color: var(--primary);
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 16px;
        transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        border-color: var(--primary);
        outline: none;
        box-shadow: 0 0 0 3px rgba(32, 43, 95, 0.1);
    }

    .form-group textarea {
        height: 150px;
        resize: vertical;
    }

    /* Footer */
    footer {
        background: var(--primary);
        color: var(--white);
        padding: 60px 0 20px;
    }

    .footer-container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-col {
        flex: 1;
        min-width: 250px;
    }

    .footer-col h3 {
        color: var(--secondary);
        margin-bottom: 20px;
        font-size: 1.3rem;
    }

    .footer-col p {
        margin-bottom: 15px;
    }

    .footer-col ul {
        list-style: none;
    }

    .footer-col ul li {
        margin-bottom: 10px;
    }

    .footer-col ul li a {
        color: var(--white);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .footer-col ul li a:hover {
        color: var(--secondary);
        padding-left: 5px;
    }

    .social-links {
        display: flex;
        gap: 10px;
        margin-top: 20px;
    }

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .social-links a:hover {
        background: var(--secondary);
        transform: translateY(-3px);
    }

    .copyright {
        text-align: center;
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.9rem;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .hero h1 {
            font-size: 2.4rem;
        }

        .hero p {
            font-size: 1.1rem;
            text-align: justify;
        }

        .mv-container {
            flex-direction: column;
        }

        .mv-box {
            margin-bottom: 20px;
        }
    }

    @media (max-width: 768px) {
        nav ul {
            display: none;
        }

        .mobile-menu-btn {
            display: block;
        }

        .hero {
            height: 70vh;
        }

        .hero h1 {
            font-size: 2rem;
        }

        .what-we-do-content {
            flex-direction: column;
        }

        .what-we-do-img {
            margin-top: 30px;
            order: -1;
        }

        .contact-container {
            flex-direction: column;
        }

        .contact-info {
            margin-bottom: 30px;
        }

        .logo-img {
            height: 50px;
            /* Smaller logo on mobile */
        }

        .logo-img:hover {
            opacity: 0.9;
            transform: scale(1.05);
        }


    }

    @media (max-width: 576px) {
        .hero {
            height: 60vh;
            padding: 0 15px;
        }

        .hero h1 {
            font-size: 1.8rem;
        }

        .hero p {
            font-size: 1rem;
        }

        .btn {
            padding: 10px 20px;
        }

        .section {
            padding: 60px 0;
        }

        .section-title h2 {
            font-size: 1.8rem;
        }
    }