        /* ===== General Reset ===== */
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }
        /* ===== Body ===== */
        
        body {
            background: linear-gradient(135deg, #ffffff, #f0f0f0, #e0e0e0, #00000010);
            color: #0d47a1;
            text-align: center;
            padding-top: 70px;
            /* for fixed navbar */
            line-height: 1.6;
        }
        /* ===== Headings & Paragraphs ===== */
        
        h1 {
            font-size: 3rem;
            color: #f8f9fa;
            margin-bottom: 20px;
        }
        
        p {
            font-size: 1.2rem;
            color: #fcfbfb;
            margin-bottom: 30px;
        }
        /* ===== Buttons ===== */
        
        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background: #ffcc00;
            color: #002366;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1rem;
            transition: background 0.3s ease, transform 0.2s ease;
        }
        
        .btn:hover {
            background: #e6b800;
            transform: scale(1.05);
        }
        /* ===== Navbar ===== */
        /* Modern Rounded Navbar */
        /* ===== Navbar ===== */
        
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(168, 168, 172, 0.9);
            padding: 1rem 2rem;
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 1200px;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-radius: 50px;
            /* pill-shaped */
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background: rgba(195, 195, 197, 0.95);
            padding: 0.8rem 2rem;
            backdrop-filter: blur(30px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        }
        /* Logo */
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            /* space between text and image */
        }
        
        .logo img.logo-img {
            height: 50px;
            /* fixes the image size */
            width: auto;
            display: block;
        }
        
        .logo span {
            font-size: 1.8rem;
            font-weight: bold;
            color: #002366;
            letter-spacing: 1px;
        }
        /* Nav Links */
        
        .nav-links {
            list-style: none;
            display: flex;
            gap: 2rem;
        }
        
        .nav-links li a {
            text-decoration: none;
            color: #160b31;
            font-weight: 500;
            font-size: 1rem;
            padding: 0.5rem 1.2rem;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        
        .nav-links li a:hover,
        .nav-links li a.active {
            background: #ffcc00;
            color: #002366;
        }
        /* Responsive Navbar */
        
        @media (max-width: 768px) {
            .nav-links {
                flex-direction: column;
                background: rgba(168, 168, 172, 0.95);
                position: absolute;
                top: 100%;
                right: 0;
                width: 200px;
                border-radius: 12px;
                display: none;
                /* toggle via JS for mobile menu */
            }
            .nav-links li {
                margin: 10px 0;
            }
            .navbar.active .nav-links {
                display: flex;
            }
        }
        /* ===== Hero Section ===== */
        
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: url('image/pexels-wendywei-1540406.jpg') no-repeat center/cover;
        }
        
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 50, 0.6);
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            text-align: center;
            color: #fff;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        /* ===== Who We Are ===== */
        
        .who-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
            padding: 50px 5%;
        }
        
        .who-text {
            flex: 1;
            min-width: 350px;
            background-color: #928c8c;
            padding: 30px;
            border-radius: 10px;
            color: #160404;
            text-align: left;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        
        .who-text h2 {
            margin-top: 0;
        }
        
        .who-text p {
            margin-bottom: 15px;
        }
        
        .who-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .who-image img {
            max-width: 50%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        /* ===== Why Choose Us ===== */
        /* ===== Highlights Section ===== */
        
        .highlights {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            padding: 50px 5%;
        }
        
        .highlights .card {
            width: 80%;
            max-width: 500px;
            background: #fff;
            padding: 25px 20px;
            border-radius: 12px;
            color: #002366;
            text-align: center;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .highlights .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        /* ===== Portfolio Gallery ===== */
        
        .portfolio-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            padding: 3rem 5%;
            background: #f9f9f9;
        }
        
        .gallery-item {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .gallery-item h3 {
            padding: 1rem;
            font-size: 1.1rem;
            color: #002366;
        }
        
        .gallery-item:hover {
            transform: scale(1.03);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }
        /* ===== Contact Section ===== */
        
        .contact-section {
            padding: 4rem 5%;
            background: #fdfdfd;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }
        
        .contact-form,
        .contact-info {
            background: #706d6d;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        }
        
        .contact-form h2,
        .contact-info h2 {
            margin-bottom: 1rem;
            color: #002366;
        }
        
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 1rem;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 1rem;
        }
        
        .contact-form button {
            background: #002366;
            color: #fff;
            padding: 12px 20px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .contact-form button:hover {
            background: #001a4d;
        }
        /* ===== Google Map Section ===== */
        
        .map-section {
            padding: 3rem 5%;
            background: #fff;
        }
        
        .map-container {
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
            border: 2px solid #002366;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        /* Logo Image */
        
        .logo-img {
            height: 50px;
            width: auto;
            display: block;
        }
        
        .footer {
            background-color: #222324;
            color: #f1f1f1;
            padding: 30px 20px;
            text-align: center;
        }
        
        .footer h3 {
            color: #ffcc00;
            margin-bottom: 15px;
        }
        
        .footer p {
            margin: 5px 0;
            font-size: 1rem;
        }
        
        .footer-bottom {
            margin-top: 20px;
            font-size: 0.9rem;
            color: #cccccc;
        }
        
        .why-choose-us,
        .who-we-are,
        .highlights {
            background-image: url('image/b5c830dc-7320-4a8d-a3c5-ee8266d2a92b.png');
            /* Replace with your image path */
            background-size: cover;
            /* Make image cover entire section */
            background-position: center;
            /* Center the image */
            background-repeat: no-repeat;
            background-attachment: fixed;
            /* Makes background stay while scrolling */
            padding: 60px 20px;
            color: #fff;
            position: relative;
        }
        /* Optional overlay for better text readability */
        
        .why-choose-us::before,
        .who-we-are::before,
        .highlights::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            /* Semi-transparent overlay */
            z-index: 0;
        }
        
        .why-choose-us *,
        .who-we-are *,
        .highlights * {
            position: relative;
            z-index: 1;
            /* Keep content above overlay */
        }
        /* Testimonials Section */
        
        .testimonial-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .testimonial-card {
            background: #fff;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: left;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }
        
        .testimonial-card .message {
            font-style: italic;
            margin-bottom: 15px;
            color: #555;
        }
        
        .testimonial-card .author {
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }
        
        .testimonial-card .rating {
            color: gold;
            font-size: 1.2rem;
        }
        /* ===== About Page Styles ===== */
        /* About Section */
        
        .about {
            /* ===== Global Page Background ===== */
            body {
                margin: 0;
                font-family: Arial, sans-serif;
                color: #fff;
                background-image: url('image/b5c830dc-7320-4a8d-a3c5-ee8266d2a92b.png');
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                background-attachment: fixed;
            }
            /* Optional overlay for better text readability */
            body::before {
                content: "";
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.4);
                z-index: 0;
            }
            /* ===== Sections Wrapper ===== */
            section {
                position: relative;
                z-index: 1;
                /* ensures content appears above overlay */
                max-width: 1100px;
                margin: 60px auto;
                padding: 60px 20px;
                text-align: center;
            }
            /* ===== About Section ===== */
            .about h1 {
                font-size: 40px;
                margin-bottom: 20px;
            }
            .about p {
                font-size: 18px;
                line-height: 1.6;
                margin-bottom: 15px;
            }
            /* ===== Mission & Vision ===== */
            .mission-vision {
                display: flex;
                justify-content: center;
                gap: 40px;
                flex-wrap: wrap;
            }
            .mission,
            .vision {
                flex: 1;
                min-width: 280px;
                background: rgba(255, 255, 255, 0.15);
                padding: 25px;
                border-radius: 12px;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
            .mission:hover,
            .vision:hover {
                transform: translateY(-5px);
                box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
            }
            .mission h2,
            .vision h2 {
                font-size: 26px;
                margin-bottom: 15px;
                color: #ff6f61;
            }
            .mission p,
            .vision p {
                font-size: 16px;
                color: #fff;
            }
            /* ===== Core Values ===== */
            .values {
                padding: 40px 20px;
            }
            .values h2 {
                font-size: 32px;
                margin-bottom: 25px;
                color: #ff6f61;
                position: relative;
            }
            .values h2::after {
                content: "";
                display: block;
                width: 70px;
                height: 3px;
                background: #ff6f61;
                margin: 12px auto 0;
                border-radius: 2px;
            }
            .values ul {
                list-style: none;
                padding: 0;
                margin: 0;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                gap: 20px;
            }
            .values li {
                background: rgba(255, 255, 255, 0.15);
                padding: 20px;
                border-radius: 12px;
                font-size: 16px;
                line-height: 1.6;
                text-align: left;
                color: #fff;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
            .values li strong {
                display: block;
                margin-bottom: 8px;
                font-size: 18px;
                color: #ff6f61;
            }
            .values li:hover {
                transform: translateY(-6px);
                box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
            }
            /* ===== Meet Our Team ===== */
            .team h2 {
                font-size: 32px;
                margin-bottom: 40px;
                color: #ff6f61;
            }
            .team-container {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                gap: 30px;
            }
            .team-member {
                background: rgba(255, 255, 255, 0.15);
                padding: 20px;
                border-radius: 12px;
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }
            .team-member:hover {
                transform: translateY(-6px);
                box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
            }
            .team-member img {
                width: 120px;
                height: 120px;
                border-radius: 50%;
                object-fit: cover;
                margin-bottom: 15px;
                border: 3px solid #ff6f61;
            }
            .team-member h3 {
                font-size: 18px;
                margin-bottom: 5px;
            }
            .team-member p {
                font-size: 14px;
            }
            /* ===== Footer ===== */
            footer {
                text-align: center;
                padding: 15px;
                background: rgba(0, 0, 0, 0.8);
                color: #fff;
                margin-top: 50px;
                font-size: 14px;
            }
            /* ===== Responsive ===== */
            @media (max-width: 768px) {
                .mission-vision {
                    flex-direction: column;
                }
            }
        }
        /* ✅ General Responsive Fixes */
        
        body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            line-height: 1.5;
        }
        /* ✅ Container adjustment for small screens */
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: auto;
            padding: 0 15px;
        }
        /* ✅ Responsive Images */
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        /* ✅ Navbar (mobile-friendly) */
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        nav ul {
            list-style: none;
            display: flex;
            gap: 20px;
            padding: 0;
            margin: 0;
        }
        
        nav ul li {
            display: inline-block;
        }
        
        nav ul li a {
            text-decoration: none;
            color: #333;
            font-weight: bold;
        }
        /* ✅ Collapse menu on small devices */
        
        @media (max-width: 768px) {
            nav ul {
                flex-direction: column;
                gap: 10px;
                width: 100%;
                text-align: center;
                display: none;
                /* hidden by default */
            }
            nav.active ul {
                display: flex;
            }
            .menu-toggle {
                display: block;
                cursor: pointer;
                font-size: 24px;
            }
        }
        /* ✅ Hero Section */
        
        .hero {
            text-align: center;
            padding: 60px 20px;
            background: #f5f5f5;
        }
        
        .hero h1 {
            font-size: 2.2rem;
        }
        
        .hero p {
            font-size: 1rem;
            margin: 15px 0;
        }
        /* ✅ Cards / Services */
        
        .card {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 20px;
            text-align: center;
            flex: 1;
            margin: 10px;
        }
        
        .cards-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }
        /* Stack cards on smaller screens */
        
        @media (max-width: 768px) {
            .cards-container {
                flex-direction: column;
                align-items: center;
            }
            .card {
                width: 90%;
            }
        }
        /* ✅ Footer */
        
        footer {
            text-align: center;
            padding: 20px;
            background: #333;
            color: #fff;
        }