@charset "UTF-8";
        :root {
            --primary-color: #212529;
            --secondary-color: #6c757d;
            --accent-color: #30cfd0;
            --text-light: rgba(255, 255, 255, 0.7);
        }

        * {
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto Slab', serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        /* Navigation */
        /* Enhanced Navigation Styles */
.navbar {
    min-height: 70px;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    background: rgba(33, 37, 41, 0.95) !important;
    backdrop-filter: blur(10px);
    position: stick;
}

.navbar-shrink {
    min-height: 60px;
    padding: 0.25rem 0;
    background: rgba(33, 37, 41, 0.98) !important;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: white !important;
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar-shrink .navbar-brand img {
    height: 40px;
}

/* Ensure navbar content is properly aligned */
.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

        /* Hero Section */
        .hero-section {
            height: 100vh;
            background: url('../assets/img/header-bg.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            position: relative;
        }
		.hero-overlay-image {
    position: absolute;
    bottom: 0;
    left: 0;
   width: clamp(100px, 50vw, 600px)
    height: auto;
    background-image: url('../assets/img/navbar-logo-1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
    z-index: 10;
    aspect-ratio: 4/3; /* maintain aspect ratio */
}

        .hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease-out;
        }

        .hero-content p {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .hero-content .btn {
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        /* Company Profile Section */
        .company-profile {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .company-image {
            height: 500px;
            background: url('../assets/img/company-profile.jpg');
            background-size: cover;
            background-position: center;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .company-content {
            color: white;
            padding: 2rem;
        }

        .company-content h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 2rem;
        }

        .company-content p {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.8;
        }

        /* Quote Section */
        .quote-section {
            padding: 5rem 0;
            background: white;
            text-align: center;
        }

        .quote-section h2 {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-style: italic;
        }

        .quote-section h3 {
            color: var(--secondary-color);
            font-size: clamp(1.2rem, 2vw, 1.5rem);
        }

        /* Services Section */
        .services-section {
            background: var(--primary-color);
            min-height: 100vh;
            display: flex;
            align-items: center;
            color: white;
        }

        .service-image {
            height: 400px;
            background: url('../assets/img/our-service.jpg');
            background-size: cover;
            background-position: center;
            border-radius: 15px;
            margin-bottom: 2rem;
        }

        .service-item {
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .service-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }

        .service-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 0.5rem;
        }

        .service-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .service-description {
            color: var(--text-light);
            line-height: 1.6;
        }

 /* Area Focus Section */
        .areafocus-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
		
		.areafocus-content {
            color: white;
            padding: 2rem;
			text-align: center;
        }

        .areafocus-content h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 2rem;
        }

        .areafocus-content p {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.8;
        }

        .areafocus-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .areafocus2-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .areafocus2-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #f39c12, #e67e22);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .areafocus2-card:hover::before {
            transform: scaleX(1);
        }

        .areafocus2-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .areafocus2-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #f39c12, #e67e22);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            transition: all 0.3s ease;
        }

        .areafocus2-card:hover .areafocus2-icon {
            transform: scale(1.1);
            background: linear-gradient(135deg, #e67e22, #d35400);
        }

        .areafocus2-icon svg {
            width: 40px;
            height: 40px;
            fill: white;
        }

        .areafocus2-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 1rem;
			       text-align: center;
        }

        .areafocus2-description {
            font-size: 1rem;
            color: #7f8c8d;
            line-height: 1.6;
            text-align: center;
        }
        
        /* Contact Section */
        .contact-section {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9)),
                        url('../assets/img/talk-to-us.jpg');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .contact-content {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
        }

        .contact-content h2 {
            color: var(--primary-color);
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 2rem;
        }

        .contact-logo {
            max-width: 200px;
            height: auto;
            margin: 1rem 0;
        }

        .contact-info h3 {
            color: var(--primary-color);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .contact-info p {
            color: var(--secondary-color);
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
        }

        /* Footer */
        .footer {
            background: var(--primary-color);
            padding: 4rem 0;
            text-align: center;
            color: white;
        }

        .footer-logo {
            max-width: 200px;
            height: auto;
            margin-bottom: 2rem;
        }

        .footer h2 {
            font-size: clamp(1.5rem, 3vw, 2rem);
            margin-bottom: 1rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
    .navbar-brand img {
        height: 45px; /* Slightly smaller on mobile */
    }
    
    .navbar-shrink .navbar-brand img {
        height: 35px;
    }
			.hero-section {
                padding: 2rem 1rem;
            }
            
            .company-profile .row {
                text-align: center;
            }
            
            .company-image {
                height: 300px;
                margin-bottom: 2rem;
            }
            
            .services-section .row {
                text-align: center;
            }
            
            .service-image {
                height: 300px;
            }
            
             .areafocus-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .areafocus2-card {
                padding: 30px 20px;
            }
            
            .contact-content {
                padding: 2rem;
                margin: 1rem;
            }
        }

        @media (max-width: 576px) {
            .navbar-nav {
                background: rgba(33, 37, 41, 0.95);
                border-radius: 10px;
                margin-top: 1rem;
                padding: 1rem;
            }
            
            .hero-content {
                padding: 0 1rem;
            }
            
            .company-content,
            .contact-content {
                padding: 1.5rem;
            }
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Custom button styles */
        .btn-primary {
            background: linear-gradient(135deg, var(--accent-color), #28a745);
            border: none;
            padding: 0.75rem 2rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #28a745, var(--accent-color));
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }