    
        /* --- CSS VARIABLES & RESET --- */
        :root {
            --primary-blue: #0044cc;
            --dark-blue: #002266;
            --black: #111111;
            --dark-gray: #333333;
            --light-gray: #f4f4f4;
            --white: #ffffff;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

        /* --- TYPOGRAPHY --- */
        body { font-family: 'Open Sans', sans-serif; background-color: var(--white); color: var(--dark-gray); line-height: 1.6; }
        h1, h2, h3, h4, .btn { font-family: 'Montserrat', sans-serif !important; font-weight: 900; text-transform: uppercase; }

        /* --- HEADER & NAVIGATION --- */
        header { position: relative; }
        .top-bar { background-color: var(--primary-blue); padding: 8px 5%; font-size: 0.9rem; display: flex; justify-content: space-between; align-items: center; color: var(--white); }
        .top-bar a { color: var(--white); text-decoration: none; font-weight: bold; }
        .top-bar i { margin-right: 5px; }

        .main-nav { position: sticky; top: 0; z-index: 1000; background-color: var(--black); display: flex; justify-content: space-between; align-items: center; padding: 8px 5%; margin-bottom: -50px !important; box-shadow: 0 4px 6px rgba(0,0,0,0.3); }
        .logo-img { max-height: 70px; width: auto; position: relative; z-index: 1001; }
        .nav-links { list-style: none; display: flex; gap: 20px; align-items: center; }
        .nav-links li a { color: var(--white); text-decoration: none; font-weight: 600; transition: color 0.3s ease; font-family: 'Open Sans', sans-serif; }
        .nav-links li a:hover { color: var(--primary-blue); }

        .dropdown { position: relative; display: inline-block; cursor: pointer; }
        .dropdown-content { display: none; position: absolute; background-color: var(--black); min-width: 250px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5); z-index: 1; top: 100%; border-top: 3px solid var(--primary-blue); }
        .dropdown-content a { color: var(--white) !important; padding: 12px 16px; text-decoration: none; display: block; border-bottom: 1px solid #333; }
        .dropdown-content a:hover { background-color: var(--dark-gray); color: var(--primary-blue) !important; }
        .dropdown:hover .dropdown-content { display: block; }

        .mobile-menu { display: none; cursor: pointer; font-size: 1.8rem; color: var(--white); z-index: 1001; transition: 0.3s; }

        /* --- HERO SECTION --- */
        .hero { background: linear-gradient(rgba(17, 17, 17, 0.8), rgba(0, 68, 204, 0.6)), url('img/hero.png') center/cover; height: 80vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 20px; color: var(--white); margin-top: 50px; }
        .hero h1 { font-size: 3.5rem; margin-bottom: 20px; }
        .hero p { font-size: 1.2rem; margin-bottom: 30px; max-width: 800px; font-weight: bold; letter-spacing: 1px; }
        .hero-badge { border: 2px solid var(--white); padding: 10px 20px; margin-bottom: 20px; font-weight: bold; letter-spacing: 2px; text-transform: uppercase; background: rgba(0,0,0,0.3); backdrop-filter: blur(4px); }

        .btn { display: inline-block; background-color: var(--primary-blue); color: var(--white); padding: 12px 30px; text-decoration: none; font-size: 1.1rem; border-radius: 5px; transition: background-color 0.3s ease; border: none; cursor: pointer; text-align: center; }
        .btn:hover { background-color: var(--dark-blue); }

        /* --- SECTION STRUCTURE --- */
        section { padding: 80px 5%; }
        .section-title { text-align: center; font-size: 2.5rem; color: var(--black); margin-bottom: 40px; }
        .section-title span { color: var(--primary-blue); }

        /* --- ABOUT SECTION --- */
        .about-container { display: flex; gap: 40px; align-items: center; }
        .about-text { flex: 1; }
        .about-text p { margin-bottom: 20px; font-size: 1.1rem; }
        .about-image { flex: 1; }
        .about-image img { width: 100%; height: auto; border-radius: 8px; box-shadow: 0 10px 20px rgba(0,0,0,0.2); object-fit: cover; }

        /* --- SERVICES SECTION --- */
        .services { background-color: var(--light-gray); }
        .services-top-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-bottom: 30px; }
        
        .featured-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: transform 0.3s ease; display: flex; flex-direction: column; cursor: pointer; }
        .featured-card img { width: 100%; height: 250px; object-fit: cover; }
        .featured-card h3 { padding: 20px 20px 10px; color: var(--black); font-size: 1.5rem; text-align: center; }
        .featured-card .learn-more { display: block; padding: 15px; background: var(--primary-blue); color: var(--white); text-align: center; font-weight: bold; transition: background 0.3s; margin-top: auto; }
        .featured-card:hover .learn-more { background: var(--dark-blue); }
        .featured-card .learn-more i { margin-left: 8px; }

        .services-bottom-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
        .service-card { background-color: var(--white); padding: 30px 20px; text-align: center; border-bottom: 4px solid var(--primary-blue); border-radius: 5px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); transition: transform 0.3s ease; display: flex; align-items: center; justify-content: center; cursor: pointer; }
        
        /* HOVER FIX: Only apply hover scale if device supports hover (desktop) */
        @media (hover: hover) {
            .featured-card:hover { transform: translateY(-8px); }
            .service-card:hover { transform: translateY(-5px); }
        }

        /* --- MODALS --- */
        .modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.8); backdrop-filter: blur(5px); justify-content: center; align-items: center; }
        .modal-content { background-color: var(--white); padding: 40px; border-radius: 8px; width: 90%; max-width: 90%; min-height: 80%; position: relative; animation: fadeIn 0.3s; }
        .modal-content h3 { font-size: 2rem; color: var(--primary-blue); margin-bottom: 15px; }
        .modal-content p { margin-bottom: 20px; font-size: 1.1rem; }
        .close-btn { position: absolute; top: 15px; right: 20px; font-size: 2rem; font-weight: bold; cursor: pointer; color: var(--dark-gray); transition: 0.3s; }
        .close-btn:hover { color: var(--primary-blue); }
        
        @keyframes fadeIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

        /* --- SERVICE AREA --- */
        .service-area-section { background-color: rgb(167, 164, 164); text-align: center; }
        .service-area-content { max-width: 800px; margin: 0 auto; }
        .service-area-content img { width: 60%; max-height: auto; object-fit: cover; border-radius: 8px; margin-bottom: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
        .service-area-content p { font-size: 1.2rem; margin-bottom: 20px; color: var(--black); font-weight: 500;}

        /* --- GALLERY SECTION --- */
        .gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 15px; }
        .gallery-item { width: 100%; height: 250px; border-radius: 5px; overflow: hidden; }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
        @media (hover: hover) { .gallery-item:hover img { transform: scale(1.1); } }

        /* --- CONTACT SECTION --- */
        .contact-section { background-color: var(--white); }
        .contact-container { display: flex; gap: 50px; max-width: 1200px; margin: 0 auto; }
        .contact-details { flex: 1; }
        .contact-details h3 { font-size: 1.8rem; margin-bottom: 20px; }
        .contact-info-item { display: flex; align-items: flex-start; margin-bottom: 25px; }
        .contact-info-item i { font-size: 1.5rem; color: var(--primary-blue); margin-right: 15px; margin-top: 5px; }
        .contact-info-item h4 { font-size: 1.1rem; margin-bottom: 5px; }
        
        .contact-form { flex: 1; background: var(--light-gray); padding: 40px; border-radius: 8px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
        .contact-form h3 { font-size: 1.8rem; margin-bottom: 20px; color: var(--black); font-family: 'Montserrat', sans-serif; text-transform: uppercase;}
        .input-group { margin-bottom: 20px; }
        .input-group input, .input-group textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-family: 'Open Sans', sans-serif; font-size: 1rem; }
        .input-group textarea { resize: vertical; min-height: 120px; }

        /* --- FOOTER & FLOAT BTN --- */
   .footer {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    border-top: 1px solid #333;
}
        .call-now { position: fixed; bottom: 20px; right: 20px; background: var(--primary-blue); color: var(--white); padding: 15px 22px; font-size: 1.1rem; font-weight: bold; border-radius: 50px; z-index: 999; text-decoration: none; box-shadow: 0 4px 10px rgba(0,0,0,0.3); display: flex; align-items: center; gap: 10px; }

        /* --- RESPONSIVE DESIGN --- */
        @media (max-width: 1024px) {
            .contact-container { flex-direction: column; }
        }

        @media (max-width: 768px) {
         @media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px;
        gap: 20px;
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        font-size: 1.2rem;
        display: block;
        width: 100%;
        padding: 10px 0;
    }

    /* Disable hover dropdowns on mobile */
    .dropdown-content {
        display: none !important;
    }
}
            .dropdown-content { position: static; display: none; background-color: transparent; box-shadow: none; border: none; text-align: center;}
            .dropdown.active .dropdown-content { display: block; }
            .mobile-menu { display: block; }
            
            /* Stacking Services grid correctly for mobile */
            .services-top-row { grid-template-columns: 1fr; }
            .services-bottom-row { grid-template-columns: 1fr; }
            .about-container { flex-direction: column; }
            
            .service-area-content img { width: 100%; }
            .hero h1 { font-size: 2.5rem; }
            .top-bar { flex-direction: column; gap: 5px; text-align: center;}
        }

        .modal-content ul {
    margin: 15px 0 20px;
    padding-left: 20px;
    list-style: none;
}

.modal-content ul li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 25px;
    font-size: 1.05rem;
    line-height: 1.5;
}

/* Custom bullet */
.modal-content ul li::before {
    content: "√";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

@media (max-width: 768px) {

    /* Kill dropdown entirely */
    .dropdown-content {
        display: none !important;
    }

    /* Make Services behave like a normal link */
    .dropdown {
        cursor: default;
    }
}
    