   /* Reset & Base Styles */
        :root {
            --primary-color: #0a3d62;
            --secondary-color: #3c6382;
            --accent-color: #f9ca24;
            --light-color: #f8f9fa;
            --dark-color: #222f3e;
            --text-color: #333;
            --text-light: #666;
            --transition: all 0.3s ease;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            background-color: #fff;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--dark-color);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 5rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
        }
        
        .section-title p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .btn {
            display: inline-block;
            padding: 0.8rem 1.8rem;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-family: 'Montserrat', sans-serif;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #083252;
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }
        
        .btn-secondary:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }
        
        /* Responsive Navigation Bar */
        #header {
            background-color: white;
            box-shadow: var(--shadow);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: var(--transition);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 20px;
            position: relative;
        }
        
        /* Logo */
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            z-index: 1001;
        }
        
        .logo-icon {
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin-right: 10px;
        }
        
        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--dark-color);
        }
        
        .logo-text span {
            color: var(--accent-color);
        }
        
        /* Desktop Navigation */
        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
        }
        
        .nav-links li {
            margin-left: 2rem;
            position: relative;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
            transition: var(--transition);
            position: relative;
            font-size: 1rem;
            padding: 0.5rem 0;
        }
        
        .nav-links a:hover, .nav-links a.active {
            color: var(--primary-color);
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: var(--transition);
        }
        
        .nav-links a:hover:after, .nav-links a.active:after {
            width: 100%;
        }
        
        /* Contact Info in Nav */
        .nav-contact {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            background-color: rgba(10, 61, 98, 0.05);
            padding: 0.5rem 1rem;
            border-radius: 6px;
            margin-left: 2rem;
        }
        
        .nav-contact strong {
            color: var(--primary-color);
            font-size: 1.1rem;
        }
        
        .nav-contact span {
            font-size: 0.85rem;
            color: var(--text-light);
        }
        
        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-color);
            cursor: pointer;
            width: 40px;
            height: 40px;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            transition: var(--transition);
            z-index: 1001;
        }
        
        .mobile-toggle:hover {
            background-color: rgba(10, 61, 98, 0.05);
        }
        
        /* Mobile Menu Styles */
        .mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: white;
            /* Place mobile menu above header and overlays */
            z-index: 10002;
            padding-top: 100px;
            transform: translateX(100%);
            transition: transform 0.4s ease;
            overflow-y: auto;
        }
        
        .mobile-menu.active {
            transform: translateX(0);
        }
        
        .mobile-menu .nav-links {
            flex-direction: column;
            align-items: flex-start;
            padding: 0 2rem;
        }
        
        .mobile-menu .nav-links li {
            margin: 0 0 1.5rem 0;
            width: 100%;
        }
        
        .mobile-menu .nav-links a {
            display: block;
            padding: 0.8rem 0;
            font-size: 1.2rem;
            border-bottom: 1px solid #eee;
            width: 100%;
        }
        
        .mobile-menu .nav-links a:after {
            display: none;
        }
        
        .mobile-contact {
            padding: 2rem;
            border-top: 1px solid #eee;
            margin-top: 1rem;
        }
        
        .mobile-contact .nav-contact {
            margin-left: 0;
            background-color: rgba(10, 61, 98, 0.1);
            padding: 1rem;
        }
        
        /* Close Button for Mobile Menu */
        .mobile-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            font-size: 1.8rem;
            color: var(--primary-color);
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            transition: var(--transition);
        }
        
        .mobile-close:hover {
            background-color: rgba(10, 61, 98, 0.1);
        }

/* Overlay shown behind the mobile menu when open */
#menuOverlay, .menu-overlay {
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 10001;
    pointer-events: none;
}

.menu-overlay.active, #menuOverlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Ensure close button is above the menu content */
.mobile-close {
    z-index: 10003;
}
        
        /* Responsive Breakpoints */
        
        /* Tablet (768px - 1024px) */
        @media (max-width: 1024px) {
            .nav-links li {
                margin-left: 1.5rem;
            }
            
            .nav-contact {
                margin-left: 1.5rem;
                padding: 0.5rem;
            }
            
            .nav-contact strong {
                font-size: 1rem;
            }
        }/* Mobile Navigation Bar inside Mobile Menu */
.mobile-nav-bar {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.mobile-nav-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.mobile-nav-item i {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #f8f9fa;
}

.mobile-nav-item span {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Specific colors for each action */
.mobile-nav-item:nth-child(1) i {
    color: #28a745; /* Call - Green */
}

.mobile-nav-item:nth-child(2) i {
    color: #25d366; /* WhatsApp - WhatsApp Green */
}

.mobile-nav-item:nth-child(3) i {
    color: #ff6b6b; /* Map - Red */
}

.mobile-nav-item:nth-child(4) i {
    color: #4dabf7; /* Email - Blue */
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .mobile-nav-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .mobile-nav-item {
        padding: 0.8rem 0.5rem;
    }
}
        
        /* Large Mobile / Small Tablet (600px - 768px) */
        @media (max-width: 768px) {
            .desktop-nav .nav-links {
                display: none;
            }
            
            .mobile-toggle {
                display: flex;
            }
            
            .logo-icon {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }
            
            .logo-text {
                font-size: 1.3rem;
            }
            
            body {
                padding-top: 70px;
            }
            
            .nav-container {
                padding: 0.8rem 20px;
            }
        }
        
        /* Mobile (up to 600px) */
        @media (max-width: 600px) {
            .logo-icon {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .logo-text {
                font-size: 1.2rem;
            }
            
            .mobile-menu .nav-links {
                padding: 0 1.5rem;
            }
            
            .mobile-contact {
                padding: 1.5rem;
            }
        }
        
        /* Small Mobile (up to 400px) */
        @media (max-width: 400px) {
            .logo-text span {
                display: none;
            }
            
            .logo-icon {
                margin-right: 5px;
            }
            
            .nav-container {
                padding: 0.7rem 15px;
            }
            
            .mobile-menu .nav-links a {
                font-size: 1.1rem;
            }
        }
        
        /* Extra Features for Better UX */
        
        /* Navbar scroll effect */
        #header.scrolled {
            padding: 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Active link indicator */
        .nav-links a.active {
            font-weight: 700;
        }
        
        /* Dropdown menu (optional feature) */
        .has-dropdown {
            position: relative;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 200px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            padding: 0.5rem 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
        }
        
        .has-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-menu li {
            margin: 0;
            width: 100%;
        }
        
        .dropdown-menu a {
            display: block;
            padding: 0.8rem 1.5rem;
            color: var(--dark-color);
            font-weight: 500;
            border-bottom: none;
            font-size: 0.95rem;
        }
        
        .dropdown-menu a:hover {
            background-color: rgba(10, 61, 98, 0.05);
            color: var(--primary-color);
        }
        
        /* Mobile dropdown */
        .mobile-dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        
        .mobile-dropdown-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            padding-left: 1rem;
        }
        
        .mobile-dropdown-menu.active {
            max-height: 300px;
        }
        
        .mobile-dropdown-menu li {
            margin-bottom: 1rem;
        }
        
        .mobile-dropdown-menu a {
            font-size: 1rem;
            padding-left: 1rem;
            border-bottom: none;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 6rem 0;
        }
        
        .hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 3rem;
        }
        
        .hero-content {
            flex: 1;
        }
        
        .hero-content h1 {
            font-size: 3rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            padding-top: 5px;
        }
        
        .hero-highlight {
            color: var(--accent-color);
        }
        
        .hero-content p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: var(--text-light);
        }
        
        .hero-btns {
            display: flex;
            gap: 1rem;
            margin-bottom: 2.5rem;
        }
        
        .btn-whatsapp {
            background-color: #25D366;
            color: white;
        }
        
        .btn-whatsapp:hover {
            background-color: #128C7E;
            transform: translateY(-3px);
        }
        
        .hero-stats {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            display: block;
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            font-family: 'Montserrat', sans-serif;
        }
        
        .stat-text {
            font-size: 0.9rem;
            color: var(--text-light);
        }
        
        .hero-image {
            flex: 1;
            position: relative;
        }
        
        .hero-img-main {
            width: 100%;
            border-radius: 10px;
            box-shadow: var(--shadow-hover);
        }
        
        .feature-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            background-color: var(--accent-color);
            color: var(--dark-color);
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        
        .feature-badge h4 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        /* WHO WE ARE Section */
        .who-we-are-section {
            padding: 6rem 0;
            background-color: #fff;
            position: relative;
        }
        
        .section-bg {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background-color: #f9f9f9;
            z-index: 0;
        }
        
        .content-container {
            position: relative;
            z-index: 1;
        }
        
        /* Left Content Styles */
        .left-content {
            padding-right: 3rem;
        }
        
        .left-content .section-title {
            text-align: left;
            margin-bottom: 2.5rem;
        }
        
        .left-content .section-title h2 {
            font-size: 2.5rem;
            line-height: 1.2;
            display: inline-block;
        }
        
        .left-content .section-title h2:after {
            left: 0;
            transform: translateX(0);
        }
        
        .description {
            margin-bottom: 2rem;
            color: var(--text-light);
            font-size: 1.05rem;
        }
        
        .stats-container {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
        }
        
        .stat-card {
            flex: 1;
            min-width: 200px;
            background-color: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid transparent;
        }
        
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .stat-card:nth-child(1) {
            border-top-color: var(--primary-color);
        }
        
        .stat-card:nth-child(2) {
            border-top-color: var(--accent-color);
        }
        
        .stat-icon {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }
        
        .stat-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }
        
        .stat-card p {
            color: var(--text-light);
            font-size: 0.95rem;
        }
        
        /* Contact Box Styles */
        .contact-box {
            background-color: var(--primary-color);
            color: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(10, 61, 98, 0.15);
            transition: var(--transition);
        }
        
        .contact-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(10, 61, 98, 0.25);
        }
        
        .contact-box h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .phone-number {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 1.5rem 0;
            color: var(--accent-color);
        }
        
        .btn-learn-more {
            display: inline-block;
            background-color: var(--accent-color);
            color: var(--dark-color);
            padding: 0.8rem 1.8rem;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }
        
        .btn-learn-more:hover {
            background-color: #e0b420;
            color: var(--dark-color);
            transform: translateX(5px);
        }
        
        /* Right Content Styles */
        .right-content {
            padding-left: 3rem;
        }
        
        .right-content .description {
            margin-top: 3.5rem;
        }
        
        /* Projects Section */
        .projects {
            background-color: #f9f9f9;
        }
        
        .projects-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
        }
        
        .filter-btn {
            padding: 0.7rem 1.5rem;
            background-color: white;
            border: 2px solid #ddd;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .filter-btn.active, .filter-btn:hover {
            background-color: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .project-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        
        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .project-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        
        .project-content {
            padding: 1.5rem;
        }
        
        .project-content h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .project-location {
            color: var(--accent-color);
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .project-features {
            display: flex;
            justify-content: space-between;
            margin: 1.5rem 0;
            padding: 1rem 0;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
        
        .feature {
            text-align: center;
        }
        
        .feature i {
            display: block;
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        .project-price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 1rem 0;
        }
        
        /* Values Section */
        .values-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .value-card {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }
        
        .value-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        
        .value-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        /* Testimonials Section */
        .testimonials {
            background-color: #f9f9f9;
        }
        
        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            background-color: white;
            padding: 3rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
            position: relative;
        }
        
        .testimonial-slide {
            display: none;
        }
        
        .testimonial-slide.active {
            display: block;
        }
        
        .testimonial-text {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin-right: 1rem;
        }
        
        .slider-dots {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            background-color: #ddd;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .dot.active, .dot:hover {
            background-color: var(--primary-color);
        }
        
        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }
        
        .contact-info h3, .contact-form-container h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }
        
        .contact-details {
            margin: 2rem 0;
        }
        
        .detail-item {
            display: flex;
            margin-bottom: 1.5rem;
        }
        
        .detail-icon {
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        .detail-item h4 {
            margin-bottom: 0.5rem;
        }
        
        .contact-form-container {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        
        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: 'Open Sans', sans-serif;
            transition: var(--transition);
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(10, 61, 98, 0.1);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 4rem 0 2rem;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-about p {
            margin: 1rem 0;
            color: #bbb;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .social-icon:hover {
            background-color: var(--accent-color);
            color: var(--dark-color);
        }
        
        .footer-links h3, .footer-contact h3 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--accent-color);
        }
        
        .footer-contact .detail-item {
            margin-bottom: 1.2rem;
        }
        
        .footer-contact .detail-icon {
            width: 40px;
            height: 40px;
            font-size: 1rem;
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #bbb;
            font-size: 0.9rem;
        }
        
        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .fade-in.appear {
            opacity: 1;
            transform: translateY(0);
        }
        
        .delay-1 {
            transition-delay: 0.2s;
        }
        
        .delay-2 {
            transition-delay: 0.4s;
        }
        
        .delay-3 {
            transition-delay: 0.6s;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-container {
                flex-direction: column;
            }
            
            .hero-content, .hero-image {
                width: 100%;
            }
            
            .section-bg {
                width: 100%;
                height: 60%;
            }
            
            .left-content, .right-content {
                padding-left: 15px;
                padding-right: 15px;
            }
            
            .left-content {
                margin-bottom: 3rem;
            }
            
            .right-content .description {
                margin-top: 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .desktop-nav .nav-links {
                display: none;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 1rem 0;
            }
            
            .who-we-are-section {
                padding: 4rem 0;
            }
            
            .stats-container {
                flex-direction: column;
            }
            
            .phone-number {
                font-size: 1.5rem;
            }
            
            .hero-stats {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .hero-btns {
                flex-wrap: wrap;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
            }
            
            .testimonial-slider {
                padding: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .left-content .section-title h2 {
                font-size: 2rem;
            }
            
            .contact-box {
                padding: 1.5rem;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .feature-badge {
                position: relative;
                bottom: 0;
                right: 0;
                margin-top: 1rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
        }
        /* ===== Projects Scroller ===== */
.gh-projects-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.gh-section-header h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

.gh-section-header p {
  color: #6c757d;
  margin-bottom: 40px;
}

.gh-project-slider-wrapper {
  overflow: hidden;
  position: relative;
}

.gh-project-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}
.gh-project-slider {
  -webkit-overflow-scrolling: touch;
}
.gh-project-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.gh-project-track {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}

.gh-project-card {
  width: 300px;
  height: 380px;
  flex-shrink: 0;
}



.gh-project-slider::-webkit-scrollbar {
  display: none;
}

.gh-project-card {
  min-width: 300px;
  height: 380px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}

.gh-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gh-project-card:hover img {
  transform: scale(1.08);
}

.gh-project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
}

.gh-project-type {
  font-size: 14px;
  opacity: 0.9;
}

.gh-project-overlay h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 5px;
}

.gh-about {
  padding: 80px 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE STACK */
.about-images {
  position: relative;
}

.img-main {
  width: 100%;
  border-radius: 16px;
}

.img-overlay {
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 55%;
  border-radius: 14px;
  border: 6px solid #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* RATING BADGE */
.rating-badge {
  position: absolute;
  bottom: -40px;
  right: 30px;
  background: #fff;
  padding: 18px 22px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.rating-badge h3 {
  font-size: 32px;
  margin: 0;
  color: #0b5ed7;
}

.stars {
  color: #f4b400;
  font-size: 14px;
}

.rating-badge p {
  font-size: 13px;
  margin-top: 4px;
}

/* CONTENT */
.about-tag {
  display: inline-block;
  color: #0b5ed7;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 18px;
}

.about-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-points {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.about-points li {
  margin-bottom: 10px;
  font-weight: 500;
}

.about-btn {
  display: inline-block;
  background: #0b5ed7;
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .img-overlay,
  .rating-badge {
    position: static;
    margin-top: 20px;
  }
}

/* ========== MOBILE BOTTOM BAR ========== */
.mobile-action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  background: #fff;
  border-top: 1px solid #ddd;
  z-index: 9999;
}

.mobile-action-bar a {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  text-decoration: none;
  font-size: 14px;
  color: #000;
  font-weight: 600;
}

.mobile-action-bar a:nth-child(1) { color: #0b5ed7; }
.mobile-action-bar a:nth-child(2) { color: #25D366; }
.mobile-action-bar a:nth-child(3) { color: #dc3545; }

.mobile-action-bar span {
  display: block;
  font-size: 12px;
}

/* ========== DESKTOP FLOATING BUTTONS ========== */
.desktop-actions {
  position: fixed;
  right: 20px;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.desktop-actions a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.desktop-actions .whatsapp {
  background: #25D366;
}

.desktop-actions .call {
  background: #dc3545;
}

/* ========== RESPONSIVE CONTROL ========== */
@media (min-width: 769px) {
  .mobile-action-bar {
    display: none;
  }
}

@media (max-width: 768px) {
  .desktop-actions {
    display: none;
  }
}
.faq-section {
  padding: 80px 0;
  background: #f9f9fb;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
}

.faq-header p {
  color: #666;
  max-width: 600px;
  margin: 10px auto 0;
}

.faq-accordion {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 25px 20px;
  color: #555;
  line-height: 1.6;
}
.residential-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('img/residential-banner.jpg') center/cover no-repeat;
  color: #fff;
  padding: 120px 0;
  text-align: center;
}

.residential-hero h1 {
  font-size: 42px;
  font-weight: 700;
}

.residential-hero p {
  max-width: 700px;
  margin: 15px auto 0;
  font-size: 18px;
}

.residential-content {
  padding: 80px 0;
  background: #f9f9fb;
}

.res-block {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.res-block h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.res-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.res-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.07);
  transition: transform 0.3s ease;
}

.res-card:hover {
  transform: translateY(-5px);
}

.res-card i {
  font-size: 36px;
  color: #c89b3c;
  margin-bottom: 15px;
}

.res-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.res-card p {
  font-size: 15px;
  color: #555;
}

.res-cta {
  margin-top: 70px;
  padding: 50px;
  background: #2c2c41;
  color: #fff;
  text-align: center;
  border-radius: 12px;
}

.res-cta h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.res-cta p {
  margin-bottom: 20px;
  color: #ddd;
}

.btn-primary {
  background: #c89b3c;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}
.policy-hero {
  background: #2c2c41;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.policy-hero h1 {
  font-size: 42px;
  font-weight: 700;
}

.policy-hero p {
  margin-top: 10px;
  color: #ddd;
}

.policy-content {
  padding: 70px 0;
  background: #f9f9fb;
}

.policy-block {
  max-width: 900px;
  margin: 0 auto 40px;
  background: #fff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.policy-block h2 {
  font-size: 22px;
  margin-bottom: 15px;
}

.policy-block p,
.policy-block li {
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

.policy-block ul {
  padding-left: 20px;
}

.box{
  height: 200px; 
}
.box>h1{
 color: #ffffff;
 padding:65px 0 0 0 ;
 font-size: 80px;
 -webkit-text-stroke: 2px saddlebrown;
 text-align: center;
 
 padding-bottom: 15px;
}
.span{
  color: rgb(255, 255, 255);
  text-align: center;
}
.whychoose {
  max-width: 1900px;
  margin: 40px auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.whychoose h2 {
  text-align: center;
  color: #0f0e0e;
  margin-bottom: 30px;
}
.why-choose-us {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.feature {
  background-color: #f9f9f9;
  padding: 15px;
  border-left: 5px solid sienna;
  border-radius: 5px;
  transition: transform 0.3s ease-in-out;
}
.feature:hover {
  transform: translateY(-5px);
}
.feature h3 {
  margin: 0;
  color: sienna;
}
.feature p {
  margin: 10px 0 0;
  color: #555;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .why-choose-us {
      grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .container {
      margin: 20px 10px;
      padding: 15px;
  }
  h2 {
      font-size: 1.5rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
.section-space{
 padding-top: 15px;
}}

@media (max-width: 398px) {
  .box>h1{
    font-size: 55px;
  }
}