        :root {
            --primary-blue: #1e3a5f;
            --secondary-blue: #2c5282;
            --accent-red: #c53030;
            --light-gray: #f8f9fa;
            --medium-gray: #e9ecef;
            --dark-gray: #6c757d;
            --earth-green: #2d5a27;
            --white: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--primary-blue);
        }
        
        /* Header/Navigation Styles */
        .navbar {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 0.1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-blue);
        }
        
        .navbar-brand i {
            color: var(--accent-red);
            margin-right: 10px;
            font-size: 1.8rem;
        }

        .navbar-brand .logo-img {
            height: 100px;
            width: auto;
            object-fit: contain;
        }
        
        .navbar-nav .nav-link {
            font-weight: 500;
            color: var(--primary-blue);
            margin: 0 5px;
            padding: 8px 15px !important;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            background-color: var(--primary-blue);
            color: var(--white);
        }
        
        .header-contact {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }
        
        .header-contact a {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
            margin-bottom: 3px;
        }
        
        .header-contact a:hover {
            color: var(--accent-red);
        }
        
        /* Hero Section Styles */
        .hero-section {
            height: 90vh;
            background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2073&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            color: var(--white);
        }
        
        .hero-content {
            max-width: 800px;
            padding: 2rem;
            background-color: rgba(30, 58, 95, 0.8);
            border-radius: 8px;
            box-shadow: 0px 2px 9px 2px rgba(44,82,130,0.67);
        }
        
        .hero-content h1 {
            color: var(--white);
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }
        
        .btn-primary {
            background-color: var(--accent-red);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: #a02626;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Section General Styles */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            text-align: center;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 4px;
            background-color: var(--accent-red);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* About Section Styles */
        .about-section {
            background-color: var(--light-gray);
        }
        
        .about-icon {
            font-size: 2.5rem;
            color: var(--secondary-blue);
            margin-bottom: 1rem;
        }
        
        .about-feature {
            text-align: center;
            padding: 1.5rem;
        }
        
        .about-feature h4 {
            margin-bottom: 1rem;
        }

        .mb-5 .lead{
            color: #333;
            line-height: 1.3;
            font-weight: 400;
            text-align: justify;
            font-size: 1rem;
        }
        
        /* Services Section Styles */
        .service-card {
            border: none;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: var(--accent-red);
            margin-bottom: 1rem;
        }
        
        .service-card .card-body {
            padding: 2rem;
        }
        
        /* Gallery Section Styles */
        .gallery-section {
            background-color: var(--light-gray);
        }
        
        .gallery-item {
            margin-bottom: 30px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .gallery-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover .gallery-img {
            transform: scale(1.05);
        }
        
        .gallery-caption {
            padding: 15px;
            background-color: var(--white);
        }
        
        /* Contact Section Styles */
        .contact-form {
            background-color: var(--white);
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        .form-control {
            padding: 12px;
            border: 1px solid var(--medium-gray);
            border-radius: 4px;
            margin-bottom: 1.5rem;
        }
        
        .form-control:focus {
            border-color: var(--secondary-blue);
            box-shadow: 0 0 0 0.2rem rgba(44, 82, 130, 0.25);
        }
        
        .contact-info {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 2.5rem;
            border-radius: 8px;
            height: 55.5vh;
        }
        

        .contact-info h3 {
            color: var(--white);
            margin-bottom: 1.5rem;
        }
        
        .contact-info i {
            color: var(--accent-red);
            margin-right: 10px;
            width: 20px;
        }
        
        .contact-info a {
            color: var(--white);
            text-decoration: none;
        }
        
        .contact-info a:hover {
            color: var(--accent-red);
        }
        

        /* ============================================
   MAP SECTION - Full Width Google Map
   ============================================ */

.map-section {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 600px; /* Adjust height as needed */
}

.map-container {
    width: 100%;
    height: 55.5vh;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}




/* Responsive adjustments */
@media (max-width: 768px) {
    .map-section {
        height: 400px; /* Shorter on mobile */
    }
}

        .map-container {
            border-radius: 8px;
            overflow: hidden;
            margin-top: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .map-iframe {
            border: 0;
        }
        
        .social-icons {
            display: flex;
            margin-top: 1.5rem;
             align-items: center;
            justify-content: center;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: var(--white);
            color: var(--primary-blue);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            background-color: var(--accent-red);
            color: var(--white);
            transform: translateY(-3px);
        }
        
        /* Footer Styles */
        .footer {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 60px 0 20px;
        }
        
        .footer h5 {
            color: var(--white);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        

        .mb-4 .chtext{
            text-align: center;
        }


        .footer-links {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent-red);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 1rem;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 4px 0 0 4px;
        }
        
        .newsletter-form button {
            background-color: var(--accent-red);
            color: var(--white);
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: #aaa;
            font-size: 0.9rem;
        }
        
        /* Modal Styles */
        .modal-content {
            border-radius: 8px;
            border: none;
        }
        
        .modal-header {
            background-color: var(--primary-blue);
            color: var(--white);
            border-radius: 8px 8px 0 0;
            padding: 1.2rem 1.5rem;
        }
        
        .modal-title {
            color: var(--white);
        }
        
        .btn-close {
            filter: invert(1);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .header-contact {
                margin-top: 10px;
                align-items: flex-start;
            }
        }
        
        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-section {
                height: 70vh;
            }
            
            .contact-form, .contact-info {
                padding: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }
            
            .btn-primary {
                padding: 10px 20px;
                font-size: 1rem;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-form input, .newsletter-form button {
                width: 100%;
                border-radius: 4px;
                margin-bottom: 10px;
            }
        }
    