/* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #2B6CB0;
            --primary-dark: #215387;
            --secondary: #1A202C;
            --accent: #25D366;
            --text: #2D3748;
            --light-bg: #EDF2F7;
            --white: #FFFFFF;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --radius: 8px;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--text);
            background-color: var(--white);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Roboto Slab', serif;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 1.2rem;
        }
        
        h2 { font-size: 2.2rem; }
        h3 { font-size: 1.8rem; }
        
        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        
        a:hover {
            color: var(--primary-dark);
        }
        
        .container {
            
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
#home {
    background-image: url('/images/home.jpg'); /* Replace with the correct path to your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}.about-image img {
    width: 100%;
    height: 100%;
    object-fit:contain;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
        .btn {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            background-color: var(--primary);
            color: var(--white);
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.9rem;
            box-shadow: var(--shadow);
        }
        
        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(43, 108, 176, 0.3);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-outline:hover {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .btn-accent {
            background-color: var(--accent);
        }
        
        .btn-accent:hover {
            background-color: #128C7E;
        }
        
        .btn i {
            margin-right: 0.5rem;
        }
        
        section {
            padding: 5rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-subtitle {
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            color: var(--primary);
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 0.5rem;
            display: block;
        }
        
        .section-title h2 {
            position: relative;
            display: inline-block;
            padding-bottom: 1rem;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary);
        }
        
        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        
        .logo img {
            height: 150px;
        }
        
        .desktop-nav {
            display: flex;
        }
        
        .desktop-nav ul {
            display: flex;
            list-style: none;
        }
        
        .desktop-nav ul li {
            position: relative;
            margin: 0 0.3rem;
        }
        
        .desktop-nav ul li a {
            padding: 0.6rem 1rem;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            color: var(--secondary);
            border-radius: 4px;
        }
        
        .desktop-nav ul li a:hover {
            color: var(--primary);
            background-color: var(--light-bg);
        }
        
        .desktop-nav ul li ul {
            position: absolute;
            background-color: var(--white);
            box-shadow: var(--shadow);
            width: 220px;
            display: none;
            z-index: 100;
            border-radius: var(--radius);
            padding: 0.5rem 0;
        }
        
        .desktop-nav ul li:hover ul {
            display: block;
        }
        
        .desktop-nav ul li ul li {
            margin: 0;
            width: 100%;
        }
        
        .desktop-nav ul li ul li a {
            display: block;
            padding: 0.8rem 1.2rem;
            font-weight: 500;
            font-size: 0.85rem;
            border-bottom: none;
        }
        
        .desktop-nav ul li ul li a:hover {
            background-color: var(--light-bg);
            color: var(--primary);
        }
        
        .header-cta .btn {
            padding: 0.7rem 1.5rem;
            font-size: 0.8rem;
        }
        
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: var(--secondary);
            cursor: pointer;
        }

        /* Home Section (Hero) */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1621990471954-15c4d0f624d8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
            height: 80vh;
            display: flex;
            align-items: center;
            color: var(--white);
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            display: block;
        }

        .hero-description {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            color: rgba(255, 255, 255, 0.9);
        }

        .hero-buttons .btn {
            margin: 0 0.5rem;
        }
        
        /* About Us Section */
        .about-us {
            background-color: var(--light-bg);
            padding: 6rem 0;
            width: 100%;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 3rem;
            align-items: center;
        }

        .about-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .about-content h2 {
            margin-bottom: 1rem;
            font-size: 2.5rem;
        }

        .about-content p {
            margin-bottom: 1.5rem;
        }
        
        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .service-card {
            background-color: var(--white);
            padding: 2rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        
        
        /* Carousel Section */
        .carousel-section {
            background-color: var(--light-bg);
        }
        
        .carousel {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        
        .carousel-container {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .carousel-item {
            min-width: 100%;
        }
        
        .carousel-item img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }
        
        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: var(--white);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .carousel-control.prev {
            left: 1rem;
        }
        
        .carousel-control.next {
            right: 1rem;
        }
        
        /* CTA Section */
        .cta {
            text-align: center;
            background: linear-gradient(rgba(43, 108, 176, 0.9), rgba(33, 83, 135, 0.9)), url('/images/cta.jpg') center/cover no-repeat;
            color: var(--white);
        }
        
        .cta h2 {
            color: var(--white);
        }
        
        .cta p {
            max-width: 700px;
            margin: 0 auto 2rem;
            font-size: 1.1rem;
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: var(--transition);
            color: var(--white);
        }
        
        .social-icons a:hover {
            background-color: var(--white);
            color: var(--primary);
        }
        
        /* Footer */
        footer {
            background-color: var(--secondary);
            color: var(--white);
            padding: 4rem 0 2rem;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
        
        .footer-column h3 {
            color: var(--white);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        
        .footer-column p, 
        .footer-column a {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.8rem;
            display: block;
            font-size: 0.95rem;
        }
        
        .footer-column a:hover {
            color: var(--white);
        }
        
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* WhatsApp Widget */
        .whatsapp-widget {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 100;
        }
        
        .whatsapp-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background-color: var(--accent);
            border-radius: 50%;
            color: var(--white);
            font-size: 1.8rem;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
            transition: var(--transition);
        }
        
        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
        }
        
        /* Mobile Styles */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .mobile-nav {
                position: fixed;
                top: 0;
                right: -300px;
                width: 300px;
                height: 100vh;
                background-color: var(--white);
                z-index: 1000;
                padding: 2rem;
                transition: var(--transition);
                overflow-y: auto;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            }
            
            .mobile-nav.active {
                right: 0;
            }
            
            .mobile-nav ul {
                list-style: none;
            }
            
            .mobile-nav ul li {
                margin-bottom: 1rem;
            }
            
            .mobile-nav ul li a {
                display: block;
                padding: 1rem;
                font-weight: 600;
                color: var(--dark-color);
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            }
            
            .mobile-nav-close {
                position: absolute;
                top: 1rem;
                right: 1rem;
                background: none;
                border: none;
                font-size: 1.5rem;
                cursor: pointer;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }

            .hero-title {
                font-size: 2.5rem;
            }
            
            .about-image {
                display: none;
            }
        }

/* Additional Styles */
        /* Add any additional styles below */

        .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
