/*
Theme Name: Cleanliness Janitorial
Author: Assistant
Description: Custom theme based on provided image.
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700;900&display=swap');
 <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">

/*  :root {
    --primary-green: #8CC63F;  */
	 /* Image Green */
/*     --primary-blue: #005f88; */
/* Image Blue */
/*     --text-dark: #333;
    --text-light: #fff;
    --bg-light: #f4f4f4;
}  */

/* body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; height: auto; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
}
.btn-green { background-color: var(--primary-green); color: white; }
.btn-outline { border: 2px solid white; color: white; background: transparent; } */

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
        display: flex;
    margin: 0 auto;
    align-items: center;
    padding-left: 100px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
}


/* --- HEADER --- */
.top-bar {
    background-color: var(--primary-blue);
    color: white;
    padding: 8px 0;
    font-size: 12px;
}
.top-bar .container { display: flex; justify-content: flex-end; gap: 20px; }

/* ============================================
   1. GLOBAL & HEADER STYLES
============================================ */
.main-header {
    background: #1a5f7a; /* Main Header Color */
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo img { 
    height: 80px; 
}

.nav-menu ul { 
    display: flex; 
    gap: 20px; 
    font-size: 14px; 
    font-weight: 500;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu ul li {
    position: relative;
}

.nav-menu ul li a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 5px;
    transition: all 0.3s ease;
    display: block;
}

.nav-menu ul li a:hover {
    color: #ffd700;
}

/* Arrow for parent menu items (Desktop) */
.nav-menu ul li.menu-item-has-children > a::after {
    content: " ▾";
    font-size: 12px;
    margin-left: 5px;
    color: #8dc63f; /* Green arrow */
}

/* ============================================
   2. DESKTOP SUBMENU STYLES (IMAGE LOOK)
============================================ */
.nav-menu ul li ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    /* Image jaisa Dark Teal Background */
    background: #12465a; 
    min-width: 260px;
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 9999;
    
    /* WO SPECIAL GREEN BORDER JO IMAGE MEIN HAI */
    border-top: 3px solid #8dc63f; 
}

.nav-menu ul li:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu ul li ul.sub-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-menu ul li ul.sub-menu li:last-child {
    border-bottom: none;
}

.nav-menu ul li ul.sub-menu li a {
    padding: 14px 20px;
    font-size: 14px;
    color: #e0e0e0;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

/* YELLOW ARROW ICON (→) */
.nav-menu ul li ul.sub-menu li a::before {
    content: "→";
    margin-right: 12px;
    color: #ffd700;
    font-size: 16px;
    font-weight: bold;
    transition: margin-left 0.2s;
}

.nav-menu ul li ul.sub-menu li a:hover {
    background: rgba(0,0,0,0.2);
    color: #ffffff;
    padding-left: 25px;
}

/* ============================================
   3. BUTTON STYLES
============================================ */
.hero-buttons .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-buttons .btn-secondary {
    background: #ffffff;
    color: #1a5f7a;
}

.hero-buttons .btn-secondary:hover {
    background: #ffd700;
    color: #1a5f7a;
}

/* ============================================
   4. HAMBURGER MENU (Hidden on Desktop)
============================================ */
.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ============================================
   5. RESPONSIVE - TABLET (below 992px)
============================================ */
@media screen and (max-width: 992px) {
    .logo img { height: 60px; }
    .nav-menu ul { gap: 15px; font-size: 13px; }
    .hero-buttons .btn { padding: 10px 18px; font-size: 13px; }
}

/* ============================================
   6. RESPONSIVE - MOBILE (below 768px)
============================================ */
@media screen and (max-width: 768px) {
    .main-header .container {
        flex-wrap: wrap;
        padding: 10px 15px;
    }
    
    .header-col.header-logo { flex: 1; }
    .logo img { height: 50px; }
    
    /* Hamburger & Button Logic */
    .hamburger { display: flex; order: 3; z-index: 1001; }
    .header-col.hero-buttons { order: 2; margin-left: auto; margin-right: 15px; }
    .hero-buttons .btn { padding: 8px 15px; font-size: 12px; }
    
    /* ====== OVERLAY MENU (Slide Down Wrapper) ====== */
    .header-col.header-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: #1a5f7a;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        z-index: 999;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    
    /* Menu Open State (Wrapper opens) */
    .menu-toggle:checked ~ .header-col.header-menu {
        max-height: 80vh; /* Jyada space diya scroll ke liye */
        overflow-y: auto;
    }

    /* ====== MOBILE MAIN MENU ====== */
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        text-align: left;
        padding: 0;
    }
    
    .nav-menu ul li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }
    
    .nav-menu ul li a {
        display: block;
        padding: 15px 20px;
        font-size: 15px;
        color: #fff;
    }
    
    /* ====== MOBILE SUBMENU (IMAGE STYLE) ====== */
    /* Step 1: Default Hidden rahega */
    .nav-menu ul li ul.sub-menu {
        position: static; /* Stack flow mein rahega */
        display: none;    /* CHHUPA HUWA (Hidden) */
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
        
        /* IMAGE STYLE COLORS */
        background: #12465a; /* Dark background */
        border-top: 3px solid #8dc63f; /* Green Border */
        padding: 0;
        margin: 0;
    }
    
    /* Step 2: Hover/Click karne par dikhega */
    .nav-menu ul li:hover > ul.sub-menu {
        display: block; /* AB DIKHEGA (Visible) */
        animation: slideDown 0.3s ease;
    }

    /* Submenu Items Styling */
    .nav-menu ul li ul.sub-menu li {
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-menu ul li ul.sub-menu li a {
        padding: 12px 20px 12px 25px;
        font-size: 14px;
        color: #e0e0e0;
        display: flex;
        align-items: center;
    }

    /* Yellow Arrow in Mobile */
    .nav-menu ul li ul.sub-menu li a::before {
        content: "→";
        margin-right: 10px;
        color: #ffd700;
        font-weight: bold;
    }
    
    /* Animation for smooth opening */
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Hamburger Animation */
    .menu-toggle:checked ~ .hamburger span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .menu-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
    .menu-toggle:checked ~ .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
}

/* ============================================
   7. SMALL MOBILE (below 480px)
============================================ */
@media screen and (max-width: 480px) {
    .main-header .container { padding: 8px 10px; }
    .logo img { height: 45px; }
    
    .hero-buttons .btn {
        padding: 10px;
        font-size: 0;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .hero-buttons .btn::before { content: "📞"; font-size: 16px; }
}


/* .main-header {
    background: #1a5f7a;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img { height: 80px; } */
/* Replace with your logo size */
/* .nav-menu ul { display: flex; gap: 20px; font-size: 14px; font-weight: 500; } */

   
    
   
        /* ============================================
           CSS RESET & BASE STYLES
        ============================================ */
/*         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        } */

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #1a5f7a;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #00c9a7, #1a5f7a);
            border-radius: 2px;
        }

        .section-title p {
            color: #666;
            font-size: 1.1rem;
            margin-top: 20px;
        }

        .btn {
            display: inline-block;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, #00c9a7, #1a5f7a);
            color: #fff;
            box-shadow: 0 10px 30px rgba(0, 201, 167, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 201, 167, 0.4);
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid #fff;
            color: #fff;
        }

        .btn-secondary:hover {
            background: #fff;
            color: #1a5f7a;
        }

        /* ============================================
           TOP BAR
        ============================================ */
        .top-bar {
            background: #1a5f7a;
            color: #fff;
            padding: 10px 0;
            font-size: 0.9rem;
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .top-bar-left {
            display: flex;
            gap: 30px;
        }

        .top-bar-left span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .top-bar-left i {
            color: #00c9a7;
        }

        .top-bar-right {
            display: flex;
            gap: 15px;
        }

        .top-bar-right a {
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .top-bar-right a:hover {
            background: #00c9a7;
            transform: translateY(-2px);
        }

       

        /* ============================================
           HERO SECTION
        ============================================ */
        .he{
/*             background: linear-gradient(135deg, rgba(26, 95, 122, 0.9), rgba(0, 201, 167, 0.8)),
                        url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1920') center/cover; */
            min-height: 550px;
            display: flex;
            align-items: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .he::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }

        .he::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }

        .he .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .he-content h1 {
            font-size: 2.5rem;
            line-height: 1.2;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .he-content h1 span {
            color: #000;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .he-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
			color: #000;
            animation: fadeInUp 1s ease 0.2s backwards;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            animation: fadeInUp 1s ease 0.4s backwards;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 50px;
            animation: fadeInUp 1s ease 0.6s backwards;
        }

        .stat-item {
            text-align: center;
        }

        .stat-item h3 {
            font-size: 2.5rem;
            color: #00c9a7;
        }

        .stat-item p {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        .hero-image {
            position: relative;
            animation: float 3s ease-in-out infinite;
        }

        .hero-image img {
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.3);
        }

        .floating-card {
            position: absolute;
            background: #fff;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            color: #333;
        }

        .floating-card.card-1 {
            top: 20%;
            left: -50px;
            animation: pulse 2s ease-in-out infinite;
        }

        .floating-card.card-2 {
            bottom: 20%;
            right: -30px;
            animation: pulse 2s ease-in-out infinite 0.5s;
        }

        .floating-card i {
            font-size: 2rem;
            color: #00c9a7;
            margin-bottom: 10px;
        }

        .floating-card h4 {
            font-size: 1rem;
            color: #1a5f7a;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* ============================================
           SERVICES SECTION
        ============================================ */
        .services {
            padding: 100px 0;
            background: #f8f9fa;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: #fff;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #00c9a7, #1a5f7a);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #00c9a7, #1a5f7a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.4s ease;
        }

        .service-icon i {
            font-size: 2.5rem;
            color: #fff;
        }

        .service-card:hover .service-icon {
            transform: rotateY(180deg);
        }

        .service-card h3 {
            font-size: 1.4rem;
            color: #1a5f7a;
            margin-bottom: 15px;
        }

        .service-card p {
            color: #666;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .service-card .price {
            font-size: 1.5rem;
            color: #00c9a7;
            font-weight: 700;
        }

        .service-card .price span {
            font-size: 0.9rem;
            color: #999;
            font-weight: 400;
        }

        /* ============================================
           ABOUT SECTION
        ============================================ */
        .about {
            padding: 100px 0;
        }

        .about .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 0px solid #00c9a7;
/*             border-radius: 20px;
            z-index: -1; */
        }

        .experience-badge {
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 185px;
            height: 115px;
            background: linear-gradient(135deg, #0DA8E5, #0DA8E5);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #fff;
            box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4);
        }

        .experience-badge h3 {
            font-size: 2.5rem;
            line-height: 1;
        }

        .experience-badge p {
            font-size: 0.9rem;
            text-align: center;
        }

        .about-content h2 {
            font-size: 2.5rem;
            color: #1a5f7a;
            margin-bottom: 20px;
        }

        .about-content h2 span {
            color: #00c9a7;
        }

        .about-content > p {
            color: #666;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .about-feature i {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(0,201,167,0.1), rgba(26,95,122,0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #00c9a7;
            font-size: 1.2rem;
        }

        .about-feature span {
            font-weight: 500;
            color: #333;
        }

        /* ============================================
           WHY CHOOSE US
        ============================================ */
        .why-choose {
            padding: 100px 0;
            background: linear-gradient(135deg, #1a5f7a, #0d3d50);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .why-choose::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
            background-size: 50px 50px;
        }

        .why-choose .section-title h2 {
            color: #fff;
        }

        .why-choose .section-title h2::after {
            background: #00c9a7;
        }

        .why-choose .section-title p {
            color: rgba(255,255,255,0.8);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .why-card {
            text-align: center;
            padding: 40px 20px;
            background: rgba(255,255,255,0.05);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0,0,0,0.5);
            transition: all 0.4s ease;
        }

        .why-card:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-10px);
        }

        .why-card i {
            font-size: 3rem;
            color: #00c9a7;
            margin-bottom: 20px;
        }

        .why-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        .why-card p {
            font-size: 0.95rem;
            opacity: 0.8;
            line-height: 1.7;
        }

        /* ============================================
           PRICING SECTION
        ============================================ */
        .pricing {
            padding: 100px 0;
            background: #f8f9fa;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .pricing-card {
            background: #fff;
            border-radius: 20px;
            padding: 50px 40px;
            text-align: center;
            position: relative;
            transition: all 0.4s ease;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
        }

        .pricing-card.featured {
            transform: scale(1.05);
            box-shadow: 0 20px 60px rgba(0,201,167,0.2);
        }

        .pricing-card.featured::before {
            content: 'Popular';
            position: absolute;
            top: 20px;
            right: 20px;
            background: linear-gradient(135deg, #00c9a7, #1a5f7a);
            color: #fff;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .pricing-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(0,201,167,0.1), rgba(26,95,122,0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .pricing-icon i {
            font-size: 2rem;
            color: #00c9a7;
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            color: #1a5f7a;
            margin-bottom: 20px;
        }

        .pricing-card .price {
            font-size: 3rem;
            color: #00c9a7;
            font-weight: 700;
            margin-bottom: 30px;
        }

        .pricing-card .price span {
            font-size: 1rem;
            color: #999;
            font-weight: 400;
        }

        .pricing-features {
            margin-bottom: 30px;
        }

        .pricing-features li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
            color: #666;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li i {
            color: #00c9a7;
            margin-right: 10px;
        }

        /* ============================================
           TESTIMONIALS
        ============================================ */
        .testimonials {
            padding: 100px 0;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .testimonial-card {
            background: #fff;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
            position: relative;
            transition: all 0.4s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 6rem;
            color: rgba(0,201,167,0.1);
            font-family: serif;
            line-height: 1;
        }

        .testimonial-rating {
            color: #ffc107;
            margin-bottom: 20px;
        }

        .testimonial-card p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-author h4 {
            color: #1a5f7a;
            font-size: 1.1rem;
        }

        .testimonial-author span {
            color: #00c9a7;
            font-size: 0.9rem;
        }

        /* ============================================
           CTA SECTION
        ============================================ */
        .cta {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(0,201,167,0.9), rgba(26,95,122,0.9)),
                        url('https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?w=1920') center/cover fixed;
            text-align: center;
            color: #fff;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        /* ============================================
           CONTACT SECTION
        ============================================ */
        .contact {
            padding: 100px 0;
            background: #f8f9fa;
        }

        .contact .container {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 50px;
        }

        .contact-info {
            background: linear-gradient(135deg, #1a5f7a, #00c9a7);
            padding: 50px;
            border-radius: 20px;
            color: #fff;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .contact-info > p {
            opacity: 0.9;
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }

        .contact-item i {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .contact-item h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .contact-item p {
            opacity: 0.8;
        }

        .contact-form {
            background: #fff;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
        }

        .contact-form h3 {
            font-size: 1.8rem;
            color: #1a5f7a;
            margin-bottom: 30px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #eee;
            border-radius: 10px;
            font-family: inherit;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #00c9a7;
            box-shadow: 0 0 0 4px rgba(0,201,167,0.1);
        }

        .form-group textarea {
            height: 150px;
            resize: none;
        }

     

        /* ============================================
           RESPONSIVE DESIGN
        ============================================ */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-image {
                display: none;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .pricing-card.featured {
                transform: none;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .top-bar .container {
                flex-direction: column;
                gap: 10px;
            }

            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .about .container {
                grid-template-columns: 1fr;
            }

            .about-image {
                order: -1;
            }

            .experience-badge {
                bottom: 10px;
                right: 10px;
                width: 120px;
                height: 120px;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .contact .container {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .section-title h2 {
                font-size: 2rem;
            }
        }

        /* ============================================
           SCROLL TO TOP BUTTON
        ============================================ */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #00c9a7, #1a5f7a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 10px 30px rgba(0,201,167,0.3);
        }

        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
        }
   

  /* ============================================
           FOOTER
        ============================================ */
        .footer {
            background: #0d2137;
            color: #fff;
            padding: 80px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-about .logo {
            margin-bottom: 20px;
        }

        .footer-about .logo h1 {
            color: #fff;
        }

        .footer-about p {
            color: rgba(255,255,255,0.7);
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .footer-social a {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: #00c9a7;
            transform: translateY(-5px);
        }

        .footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }

        .footer-links h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: #00c9a7;
        }

        .footer-links ul li {
            margin-bottom: 12px;
        }

        .footer-links ul li a {
            color: rgba(255,255,255,0.7);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-links ul li a::before {
            content: '→';
            color: #00c9a7;
        }

        .footer-links ul li a:hover {
            color: #00c9a7;
            padding-left: 10px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom p {
            color: rgba(255,255,255,0.7);
        }

        .footer-bottom-links {
            display: flex;
            gap: 30px;
        }

        .footer-bottom-links a {
            color: rgba(255,255,255,0.7);
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #00c9a7;
        }


/* Responsive */
@media (max-width: 768px) {
    .features-grid, .service-grid, .about-grid, .footer-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 32px; }
}


/* --- ABOUT PAGE SPECIFIC STYLES --- */

/* About Hero */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://via.placeholder.com/1600x600/333333/ffffff?text=Floor+Texture'); /* Replace with floor image */
    background-size: cover;
    background-position: center;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
}
.about-hero .container { position: relative; width: 90%; max-width: 1200px; margin: 0 auto; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.about-hero h1 { color: white; font-size: 48px; text-transform: uppercase; font-weight: 900; margin: 0 0 20px 0; }
.about-hero-btns { display: flex; gap: 15px; }
.inquire-btn-wrapper { position: absolute; bottom: 0; right: 0; background: rgba(255,255,255,0.2); padding: 10px; }

/* Owner Section */
.owner-section { padding: 80px 0; }
.owner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.owner-img img { width: 100%; border-radius: 5px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.owner-text h2 { font-size: 32px; text-transform: uppercase; color: #111; margin-bottom: 20px; line-height: 1.2; }
.owner-text p { color: #555; line-height: 1.6; margin-bottom: 15px; font-size: 15px; }

/* Who We Are */
.who-we-are { padding-bottom: 60px; }
.who-we-are h2 { font-size: 28px; text-transform: uppercase; color: #111; margin-bottom: 20px; }
.who-we-are p { color: #555; line-height: 1.6; margin-bottom: 15px; }
.cta-buttons-row { margin-top: 30px; display: flex; gap: 20px; }
.btn-large { padding: 12px 30px; font-size: 16px; font-weight: bold; border-radius: 4px; }

/* Blue Contact Strip (Get in Touch) */
.blue-contact-strip {
    background-color: #006089; /* Image Blue */
    padding: 40px 0;
    color: white;
    position: relative;
    overflow: hidden;
}
.contact-strip-flex { display: flex; align-items: center; justify-content: space-between; }
.contact-title h2 { font-size: 36px; font-weight: 900; margin: 0; line-height: 1; text-transform: uppercase; }
.contact-title .faded-text {
    display: block; color: rgba(255,255,255,0.2); font-size: 48px; position: absolute; top: 10px; left: 10%; z-index: 0;
}
.contact-icons { display: flex; gap: 60px; z-index: 1; }
.c-icon-box { text-align: center; }
.c-icon-box i { font-size: 32px; margin-bottom: 10px; }
.c-icon-box span { display: block; font-weight: bold; font-size: 14px; text-transform: uppercase; }

/* Testimonials Section */
.testimonials-section { background-color: #f2f2f2; padding: 60px 0 100px 0; text-align: center; }
.testi-header { margin-bottom: 50px; }
.testi-header h5 { color: #666; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.testi-header h2 { font-size: 36px; color: #111; text-transform: uppercase; margin: 0; }
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; width: 90%; max-width: 1000px; margin: 0 auto; }
.testi-card { background: white; padding: 40px; border-radius: 5px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); min-height: 200px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; }
.stars { color: #8CC63F; font-size: 20px; margin-bottom: 10px; }
.quote-icon { font-size: 40px; color: #111; margin-bottom: 20px; line-height: 1; }
.testi-text { font-size: 14px; color: #555; line-height: 1.6; font-style: italic; }
.testi-name { margin-top: 15px; font-weight: bold; color: #000; font-size: 16px; }

/* Responsive */
@media (max-width: 768px) {
    .owner-grid, .contact-strip-flex, .testi-grid { grid-template-columns: 1fr; display: flex; flex-direction: column; gap: 30px; text-align: center; }
    .contact-icons { flex-direction: column; gap: 20px; }
    .about-hero h1 { font-size: 32px; }
    .cta-buttons-row { flex-direction: column; }
}


 
        /* HELPER CLASSES */
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .flex { display: flex; align-items: center; }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
        .text-center { text-align: center; }
        .uppercase { text-transform: uppercase; }
        .bold { font-weight: 700; }

        /* --- BUTTONS --- */
        .btn {
            padding: 12px 30px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 4px;
            display: inline-block;
            transition: 0.3s;
            cursor: pointer;
        }
        .btn-green {
            background-color: var(--primary-green);
            color: white;
            border: 2px solid var(--primary-green);
        }
        .btn-green:hover { background-color: #7ab332; }
        
        .btn-white {
            background-color: white;
            color: var(--primary-green);
            border: 2px solid #ccc; /* Light grey border as in ref */
        }
        .btn-white:hover { border-color: var(--primary-green); }




     /* --- THEME SETTINGS --- */
        :root {
            --primary: #004e82;  /* Deep Navy Blue */
            --accent: #8cc63f;   /* Bright Green */
            --dark: #0f172a;     /* Dark Background */
            --card-bg: #1e293b;  /* Card Background */
            --text-light: #e2e8f0;
            --white: #ffffff;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Outfit', sans-serif; background-color: #f1f5f9; color: var(--dark); }

        /* --- 3. HERO SECTION --- */
        .hero {
            position: relative;
            background: url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?q=80&w=1920') no-repeat center center/cover;
            height: 500px;
            display: flex;
            align-items: center;
        }
        .hero::before {
            content: ''; position: absolute; top:0; left:0; width:100%; height:100%;
            background: rgba(0,0,0,0.4); /* Dark overlay */
        }
        .hero-content { position: relative; z-index: 2; color: white; max-width: 800px; }
        .hero h1 {
            font-size: 42px;
            font-weight: 900;
            text-transform: uppercase;
            margin-bottom: 30px;
            line-height: 1.2;
        }
        .hero-btns { display: flex; gap: 15px; }
        
        

        /* --- 4. INTRO SECTION (Overlapping Images) --- */
        .section-intro { padding: 80px 0; }
        
        /* The overlapping image trick */
        .img-collage { position: relative; height: 450px; }
        .img-big {
            position: absolute; top: 0; left: 0;
            width: 80%; height: 350px;
            object-fit: cover;
            border: 5px solid white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .img-small {
            position: absolute; bottom: 0; right: 20px;
            width: 50%; height: 250px;
            object-fit: cover;
            border: 8px solid white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            z-index: 2;
        }

        .intro-text h2 {
            font-size: 28px;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 20px;
            color: #222;
        }
        .intro-text p { margin-bottom: 20px; color: #555; font-size: 15px; }

        /* --- 5. SERVICES GRID (Blue Background) --- */
        .section-services {
            background-color: var(--primary-blue);
            padding: 80px 0;
            color: white;
        }
        .section-services h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 50px;
            text-transform: uppercase;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .service-card {
            background: white;
            color: #333;
            padding: 30px;
            border-radius: 4px;
        }
        .service-card h3 {
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 15px;
        }
        .service-card p { font-size: 14px; color: #666; }

        /* --- 6. CHOOSE US SECTION --- */
        .section-choose { padding: 80px 0; background: white; }
        .choose-img img { width: 100%; border-radius: 4px; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
        .choose-text h2 { font-size: 28px; font-weight: 800; text-transform: uppercase; margin-bottom: 20px; }
        .choose-text p { margin-bottom: 30px; color: #555; }

        /* --- 7. CONTACT STRIP --- */
        .contact-strip {
            background-color: var(--primary-blue);
            color: white;
            padding: 40px 0;
        }
        .contact-strip .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .contact-title h2 { font-size: 36px; font-weight: 900; line-height: 1; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: -10px; }
        .contact-title h3 { font-size: 36px; font-weight: 900; line-height: 1; text-transform: uppercase; color: white; }

        .contact-actions { display: flex; gap: 50px; }
        .action-item { text-align: center; color: white; text-decoration: none; }
        .action-item i { font-size: 24px; margin-bottom: 5px; display: block; }
        .action-item span { font-weight: 700; font-size: 14px; text-transform: uppercase; }

        /* --- 8. TESTIMONIALS --- */
        .section-testimonials { background-color: #f2f2f2; padding: 80px 0; text-align: center; }
        .section-testimonials h2 { font-size: 32px; font-weight: 700; margin-bottom: 50px; text-transform: uppercase; }
        
        .testimonial-grid { display: flex; gap: 30px; }
        .testimonial-card {
            background: white;
            padding: 40px;
            flex: 1;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .stars { color: var(--primary-green); margin-bottom: 15px; font-size: 18px; }
        .quote-icon { font-size: 30px; color: #222; margin-bottom: 20px; display: block; font-family: serif; font-weight: bold; }
        .review-text { font-size: 14px; color: #666; margin-bottom: 20px; font-style: italic; }
        .reviewer-name { font-weight: 800; color: #222; }

        
        @media (max-width: 900px) {
            .grid-2, .services-grid, .testimonial-grid, .footer-grid { grid-template-columns: 1fr; display: block; }
            .service-card, .testimonial-card { margin-bottom: 20px; }
            .img-collage { height: 300px; margin-bottom: 30px; }
            .contact-actions { margin-top: 20px; gap: 20px; }
            .contact-strip .container { flex-direction: column; text-align: center; }
            .navbar .container { flex-direction: column; gap: 10px; }
            .nav-menu { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
            .nav-menu a { margin: 0 10px; }
        }



        /* --- HEADER SECTION --- */
        .archive-header {
            background: var(--primary);
            padding: 80px 20px;
            text-align: center;
            color: var(--white);
            background-image: radial-gradient(circle at top right, rgba(140, 198, 63, 0.2), transparent);
        }
        
        .archive-header h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: -1px;
        }
        
        .archive-header p {
            font-size: 1.1rem;
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
        }

        /* --- GRID CONTAINER --- */
        .services-wrapper {
            max-width: 1300px;
            margin: 40px auto 80px auto; /* Overlap header slightly */
            padding: 0 20px;
            position: relative;
            z-index: 10;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        /* --- CARD DESIGN --- */
        .service-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 78, 130, 0.15);
        }

        /* Image Area with Fallback Color */
        .card-img-box {
            position: relative;
            height: 250px;
            background: linear-gradient(135deg, var(--primary), #003366); /* Fallback Color */
            overflow: hidden;
        }

        .card-img-box img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
            opacity: 0.95;
        }

        .service-card:hover .card-img-box img {
            transform: scale(1.1);
            opacity: 1;
        }

        /* Category Tag */
        .category-tag {
            position: absolute;
            top: 20px; left: 20px;
            background: rgba(255, 255, 255, 0.9);
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
            z-index: 2;
        }

        /* Content Area */
        .card-body {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
            transition: 0.3s;
        }

        .service-card:hover .card-title { color: var(--primary); }

        .card-desc {
            font-size: 0.95rem;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        /* Footer of Card */
        .card-footer {
            margin-top: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid #f1f5f9;
            padding-top: 20px;
        }

        .learn-btn {
            text-decoration: none;
            color: var(--dark);
            font-weight: 700;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: 0.3s;
        }

        .icon-circle {
            width: 35px; height: 35px;
            background: #f1f5f9;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            transition: 0.3s;
            color: var(--primary);
        }

        .service-card:hover .learn-btn { color: var(--accent); }
        .service-card:hover .icon-circle { background: var(--accent); color: white; transform: rotate(-45deg); }

        /* Responsive */
        @media (max-width: 768px) {
            .archive-header { padding: 60px 20px 80px 20px; }
            .archive-header h2 { font-size: 2.2rem; }
            .services-wrapper { margin-top: -40px; }
        }

/* --- MAIN MENU STYLING --- */
.nav-menu {
    position: relative;
    z-index: 999; /* ताकि मेनू स्लाइडर के ऊपर दिखे */
}

/* 1. Top Level Menu (Horizontal) */
.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px; /* मेनू आइटम्स के बीच गैप */
}

.main-menu > li {
    position: relative; /* सब-मेनू को सही जगह दिखाने के लिए */
    padding: 10px 0;
}

.main-menu > li > a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s;
    display: flex; /* आइकॉन और टेक्स्ट को लाइन में रखने के लिए */
    align-items: center;
}

.main-menu > li:hover > a {
    color: #8CC63F; /* Hover Color (Green) */
}

/* 2. ADD ARROW ICON (Only for items with children) */
/* WordPress automatically adds class 'menu-item-has-children' */
.menu-item-has-children > a::after {
    content: "\f107"; /* FontAwesome Down Arrow Code */
    font-family: "Font Awesome 5 Free"; /* FontAwesome Family */
    font-weight: 900;
    margin-left: 8px; /* टेक्स्ट से दूरी */
    font-size: 12px;
    color: #8CC63F; /* Arrow Color */
    transition: transform 0.3s;
}

/* Hover करने पर Arrow घूमेगा */
.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* 3. DROPDOWN MENU (Sub Menu) styling */
.main-menu .sub-menu {
	display: block;
    position: absolute;
    top: 100%; /* ठीक पैरेंट के नीचे */
    left: 0;
    width: 180px; /* ड्रॉपडाउन की चौड़ाई */
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* छाया */
    border-top: 3px solid #8CC63F; /* ऊपर ग्रीन लाइन */
    opacity: 0;       /* पहले छिपा रहेगा */
    visibility: hidden;
    transform: translateY(10px); /* थोड़ा नीचे रहेगा */
    transition: all 0.3s ease; /* स्मूथ एनिमेशन */
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 4. SHOW DROPDOWN ON HOVER */
.main-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* अपनी जगह पर आएगा */
}

/* Dropdown Links Styling */
.main-menu .sub-menu li {
    border-bottom: 1px solid #eee;
}
.main-menu .sub-menu li:last-child {
    border-bottom: none;
}
.main-menu .sub-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    text-transform: capitalize; /* नार्मल टेक्स्ट */
}

.main-menu .sub-menu a:hover {
    background-color: #f9f9f9;
    color: #8CC63F;
    padding-left: 25px; /* होवर पर थोड़ा खिसकेगा */
    transition: 0.2s;
}




    /* --- HERO SECTION --- */
    .page-banner {
        position: relative;
        height: 350px;
        background-image: url('http://jaylinescleaningbusiness.page.gd/wp-content/uploads/2026/02/low-section-woman-cleaning-carpe.webp');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-bottom: 60px;
    }
    .banner-overlay {
        position: absolute; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0, 0, 0, 0.65);
    }
    .banner-content { position: relative; z-index: 2; color: white; padding: 20px; }
    .banner-title { font-size: 3rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; color: white; }
    .banner-sub { font-size: 1.2rem; opacity: 0.9; font-weight: 300; }

    /* --- MAIN LAYOUT --- */
    .service-container {
        max-width: 1200px;
        margin: 0 auto 80px;
        display: flex;
        gap: 60px;
        padding: 0 20px;
        position: relative; /* Needed for sticky context */
    }

    /* --- SIDEBAR (Left) --- */
    .sidebar { 
        width: 30%; 
        flex-shrink: 0;
        /* STICKY FIX: Content khatam hone tak sidebar saath chalega */
        position: sticky;
        top: 40px; 
        height: fit-content;
    }
    
    /* Sidebar Menu */
    .side-menu {
        background: var(--white);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        margin-bottom: 30px;
        border: 1px solid var(--border);
    }
    .side-menu h4 {
        background: var(--white);
        padding: 20px;
        margin: 0;
        font-size: 1.1rem;
        border-bottom: 2px solid var(--bg-gray);
        color: #0D2137;
    }
    .side-menu ul { list-style: none; margin: 0; padding: 0; }
    .side-menu li { border-bottom: 1px solid var(--border); }
    .side-menu li:last-child { border: none; }
    .side-menu a {
        display: flex;
        justify-content: space-between;
        padding: 15px 20px;
        text-decoration: none;
        color: var(--primary);
        font-weight: 500;
        transition: 0.3s;
    }
    .side-menu a:hover, .side-menu a.active {
        background: var(--bg-gray);
        color: var(--accent); /* Using #7AB332 */
        padding-left: 25px;
        font-weight: 700;
    }

    /* Contact Widget */
    .contact-box {
        background: #0D2137; /* Blue Background */
        padding: 30px;
        border-radius: 8px;
        color: var(--white);
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 78, 130, 0.3);
    }
    .contact-box h3 { color: var(--white); font-size: 1.4rem; }
    .contact-box .phone { font-size: 1.8rem; font-weight: 800; color: var(--accent); margin: 15px 0; display: block; }
    .contact-box .btn {
        display: inline-block;
        background: var(--accent); /* #7AB332 */
        color: var(--white);
        padding: 12px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.9rem;
        transition: 0.3s;
    }
    .contact-box .btn:hover { background: var(--white); color: var(--accent); }

    /* --- CONTENT AREA (Right) --- */
    .content-area { width: 70%; }

    .main-img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 40px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    /* --- CHECKLIST (Screenshot Style) --- */
    .check-list { 
        list-style: none; 
        margin: 30px 0; 
        padding: 0; 
        display: grid; 
        grid-template-columns: 1fr 1fr; /* 2 Column layout */
        gap: 15px 30px; 
    }
    .check-list li {
        position: relative;
        padding-left: 30px;
        font-weight: 600;
        color: var(--primary);
        font-size: 1rem;
    }
    .check-list li::before {
        content: '\2713'; /* Checkmark */
        position: absolute; left: 0; top: 0px;
        color: var(--accent); /* #7AB332 */
        font-weight: 900;
        font-size: 1.2rem;
    }

    /* --- FEATURE CARDS (Stats) --- */
    .features-row {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin: 40px 0;
    }
    .feature-item {
        background: var(--white);
        padding: 30px 20px;
        border-radius: 8px;
        text-align: center;
        border: 1px solid var(--border);
        transition: 0.3s;
    }
    .feature-item:hover { 
        transform: translateY(-5px); 
        box-shadow: 0 15px 30px rgba(0,0,0,0.08); 
        border-color: var(--accent); 
    }
    .feature-icon {
        font-size: 2.5rem;
        color:#0D2137;
        margin-bottom: 15px;
        display: inline-block;
    }
    .feature-item h5 { margin: 0 0 10px 0; font-size: 1.1rem; color: var(--primary); font-weight: 800; }
    .feature-item p { font-size: 0.9rem; margin: 0; color: #64748b; }

    /* Before/After Image */
    .comparison-container {
        position: relative;
        width: 100%;
        height: 350px;
        border-radius: 8px;
        overflow: hidden;
        margin: 40px 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .comp-layer { position: absolute; top:0; left:0; width:100%; height:100%; background-size: cover; background-position: center; }
    .comp-dirty { background-image: url('https://images.unsplash.com/photo-1527515545081-5db817172677?q=80&w=1200'); }
    .comp-clean { 
        background-image: url('https://images.unsplash.com/photo-1558317374-a354d5f6d4da?q=80&w=1200'); 
        width: 50%; border-right: 3px solid #fff; z-index: 10; transition: width 0.3s ease-out;
    }
    .comparison-container:hover .comp-clean { width: 85%; }
    .label-badge { position: absolute; top: 20px; padding: 5px 12px; font-weight: bold; color: white; border-radius: 4px; z-index: 20; font-size: 0.8rem; }

    /* Responsive */
    @media (max-width: 900px) {
        .service-container { flex-direction: column; }
        .sidebar { width: 100%; order: 2; position: static; } /* Remove sticky on mobile */
        .content-area { width: 100%; order: 1; }
        .features-row { grid-template-columns: 1fr; }
        .page-banner { height: 250px; }
        .banner-title { font-size: 2rem; }
        .check-list { grid-template-columns: 1fr; }
    }

/* --- BANNER WRAPPER --- */
    .page-banner_1 {
        position: relative;
        /* Yahan apni image ka URL dalein */
        background-image: url('https://jaylinescleaningbusiness.liquidexim.tech/wp-content/uploads/2026/02/professional-worker-doing-his-jo.webp');
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        height: 350px; /* Banner ki height */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-bottom: 50px;
    }

    /* --- DARK OVERLAY (Text clear dikhane ke liye) --- */
    .page-banner_1 .banner-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.6); /* 60% Dark Overlay */
        z-index: 1;
    }

    /* --- CONTENT BOX --- */
    .page-banner_1 .banner-content {
        position: relative;
        z-index: 2; /* Overlay ke upar */
        padding: 0 20px;
        color: #ffffff;
        max-width: 800px;
    }

    /* --- TITLE STYLE --- */
    .page-banner_1 .banner-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #ffffff;
        line-height: 1.2;
        text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    }

    /* --- SUBTITLE STYLE --- */
    .page-banner_1 .banner-sub {
        font-size: 1.2rem;
        line-height: 1.6;
        color: #f1f1f1;
        font-weight: 400;
        max-width: 700px;
        margin: 0 auto;
    }

    /* --- RESPONSIVE (Mobile) --- */
    @media (max-width: 768px) {
        .page-banner_1 {
            height: 250px;
        }
        .page-banner_1 .banner-title {
            font-size: 2rem;
        }
        .page-banner_1 .banner-sub {
            font-size: 1rem;
        }
    }



 /* Hero Section */
        .hero {
            min-height: 70vh;
/*             background: var(--gradient-dark); */
			  background: 
        url("https://jaylinescleaningbusiness.liquidexim.tech/wp-content/uploads/2026/02/work-vehicle-3-scaled.jpeg"),
        rgba(30, 58, 95, 0.75);  /* #1e3a5f ka RGB */

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
			background-blend-mode: darken; 
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px 5% 100px;
            position: relative;
            overflow: hidden;
        }

        .hero-bg-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.03);
        }

        .shape-1 {
            width: 600px;
            height: 600px;
            top: -300px;
            right: -200px;
        }

        .shape-2 {
            width: 400px;
            height: 400px;
            bottom: -200px;
            left: -100px;
        }

        .shape-3 {
            width: 200px;
            height: 200px;
            top: 50%;
            left: 20%;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 0.3; }
        }

/*         .hero-particles {
/*             position: absolute;
            width: 100%;
            height: 100%; */
/*             top: 0;
            left: 0;
        }

        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            animation: float-particle 20s linear infinite;
        }

        @keyframes float-particle {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) rotate(720deg);
                opacity: 0;
            } */
/*         } 
*/

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
        }

        .breadcrumb {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 12px 25px;
            border-radius: 50px;
            margin-bottom: 30px;
            font-size: 14px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .breadcrumb a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumb a:hover {
            color: white;
        }

        .breadcrumb span {
            color: white;
            font-weight: 600;
        }

        .breadcrumb i {
            color: rgba(255, 255, 255, 0.5);
            font-size: 10px;
        }

        .hero h1 {
            font-size: clamp(45px, 7vw, 50px);
            font-weight: 900;
            color: white;
            margin-bottom: 25px;
            line-height: 1.1;
            text-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
        }

        .hero h1 span {
            background: linear-gradient(135deg, #67e8f9, #a7f3d0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 900;
            color: white;
            display: block;
            line-height: 1;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            margin-top: 8px;
        }

        /* Floating Contact Buttons */
        .floating-contacts {
            position: fixed;
            right: 30px;
            bottom: 30px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .float-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            text-decoration: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.3s;
            position: relative;
        }

        .float-btn:hover {
            transform: scale(1.1) translateY(-5px);
        }

        .float-btn.phone {
            background: linear-gradient(135deg, #10b981, #059669);
        }

        .float-btn.whatsapp {
            background: linear-gradient(135deg, #25d366, #128c7e);
        }

        .float-btn.email {
            background: linear-gradient(135deg, #0ea5e9, #0369a1);
        }

        .float-btn .tooltip {
            position: absolute;
            right: 75px;
            background: var(--dark);
            color: white;
            padding: 10px 20px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .float-btn:hover .tooltip {
            opacity: 1;
            visibility: visible;
            right: 70px;
        }

        /* Contact Info Cards */
        .contact-cards {
            padding: 0 5%;
            margin-top: -70px;
            position: relative;
            z-index: 10;
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .contact-card {
            background: white;
            border-radius: 25px;
            padding: 45px 35px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
            transition: left 0.5s;
        }

        .contact-card:hover::before {
            left: 100%;
        }

        .contact-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient);
            transform: scaleX(0);
            transition: transform 0.4s;
        }

        .contact-card:hover::after {
            transform: scaleX(1);
        }

        .contact-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
        }

        .card-icon {
            width: 90px;
            height: 90px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 36px;
            transition: all 0.4s;
            position: relative;
        }

        .card-icon::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: var(--gradient);
            z-index: -1;
            opacity: 0.3;
            animation: icon-pulse 2s ease-in-out infinite;
        }

        @keyframes icon-pulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.3); opacity: 0; }
        }

        .contact-card:hover .card-icon {
            transform: scale(1.1) rotate(10deg);
        }

        .contact-card h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .contact-card p {
            color: var(--gray);
            font-size: 16px;
            line-height: 1.8;
        }

        .contact-card a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }

        .contact-card a:hover {
            color: var(--primary-dark);
        }

        .card-action {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
        }

        .card-action a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(16, 185, 129, 0.1));
            padding: 12px 25px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s;
        }

        .card-action a:hover {
            background: var(--gradient);
            color: white;
            transform: scale(1.05);
        }

        /* Main Content Grid */
        .main-content {
            padding: 100px 5%;
            max-width: 1500px;
            margin: 0 auto;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: start;
        }

        /* Contact Form Section */
        .form-section {
            background: white;
            border-radius: 30px;
            padding: 60px;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .form-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .section-header {
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gradient);
            color: white;
            padding: 10px 22px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-header h2 {
            font-size: 38px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .section-header p {
            color: var(--gray);
            font-size: 17px;
            line-height: 1.8;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 28px;
            position: relative;
            z-index: 1;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        .form-group {
            position: relative;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 12px;
        }

        .form-group label span {
            color: #ef4444;
        }

        .input-wrapper {
            position: relative;
        }

        .input-wrapper i {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #94a3b8;
            transition: color 0.3s;
            font-size: 18px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 18px 20px 18px 55px;
            border: 2px solid #e2e8f0;
            border-radius: 15px;
            font-size: 16px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s;
            background: #f8fafc;
        }

        .form-group select {
            padding-left: 20px;
            cursor: pointer;
        }

        .form-group textarea {
            padding-left: 20px;
            min-height: 160px;
            resize: vertical;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary);
            background: white;
            box-shadow: 0 0 0 5px rgba(14, 165, 233, 0.1);
        }

        .form-group input:focus + i,
        .form-group input:valid + i {
            color: var(--primary);
        }

        .submit-btn {
            background: var(--gradient);
            color: white;
            padding: 22px 50px;
            border: none;
            border-radius: 15px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 50px rgba(14, 165, 233, 0.4);
        }

        .submit-btn i {
            transition: transform 0.3s;
        }

        .submit-btn:hover i {
            transform: translateX(8px);
        }

        /* Info Section */
        .info-section {
            display: flex;
            flex-direction: column;
            gap: 35px;
        }

        /* Why Choose Us */
        .why-choose {
            background: white;
            border-radius: 30px;
            padding: 45px;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
        }

        .why-choose h3 {
            font-size: 26px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .why-choose h3 i {
            color: var(--primary);
            font-size: 28px;
        }

        .feature-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 18px;
            padding: 20px;
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(16, 185, 129, 0.05));
            border-radius: 18px;
            transition: all 0.3s;
            border: 1px solid transparent;
        }

        .feature-item:hover {
            background: white;
            border-color: rgba(14, 165, 233, 0.2);
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .feature-icon {
            width: 55px;
            height: 55px;
            background: var(--gradient);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            flex-shrink: 0;
        }

        .feature-text h4 {
            font-size: 17px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 6px;
        }

        .feature-text p {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.7;
        }

        /* Business Hours */
        .business-hours {
            background: var(--gradient-dark);
            border-radius: 30px;
            padding: 45px;
            color: white;
        }

        .business-hours h3 {
            font-size: 26px;
            font-weight: 800;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .hours-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .hour-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            transition: all 0.3s;
        }

        .hour-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateX(5px);
        }

        .hour-item.today {
            background: rgba(16, 185, 129, 0.3);
            border: 1px solid rgba(16, 185, 129, 0.5);
        }

        .hour-item .day {
            font-weight: 600;
        }

        .hour-item .time {
            color: #67e8f9;
            font-weight: 700;
        }

        /* Service Areas Section */
        .service-areas-section {
            padding:  5%;
            background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .section-title {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .section-title .tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--gradient);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title h2 {
            font-size: clamp(36px, 5vw, 50px);
            font-weight: 900;
            color: var(--dark);
            margin-bottom: 20px;
        }

        .section-title p {
            color: var(--gray);
            font-size: 18px;
            line-height: 1.8;
        }

        .areas-container {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
            align-items: start;
        }

        /* Areas List */
        .areas-list-container {
            background: white;
            border-radius: 30px;
            padding: 40px;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
        }

        .areas-filter {
            display: flex;
            gap: 12px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 12px 25px;
            border: none;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            background: #e2e8f0;
            color: var(--dark);
            font-family: 'Poppins', sans-serif;
        }

        .filter-btn:hover {
            background: var(--primary);
            color: white;
        }

        .filter-btn.active {
            background: var(--gradient);
            color: white;
            box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
        }

        .areas-search {
            position: relative;
            margin-bottom: 25px;
        }

        .areas-search input {
            width: 100%;
            padding: 16px 20px 16px 55px;
            border: 2px solid #e2e8f0;
            border-radius: 15px;
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s;
        }

        .areas-search input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 5px rgba(14, 165, 233, 0.1);
        }

        .areas-search i {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #94a3b8;
            font-size: 18px;
        }

        .areas-grid {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-height: 500px;
            overflow-y: auto;
            padding-right: 10px;
        }

        .areas-grid::-webkit-scrollbar {
            width: 6px;
        }

        .areas-grid::-webkit-scrollbar-track {
            background: #e2e8f0;
            border-radius: 10px;
        }

        .areas-grid::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }

        .area-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 18px 20px;
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(16, 185, 129, 0.05));
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .area-item:hover {
            background: white;
            border-color: var(--primary);
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .area-item.active {
            background: var(--gradient);
            color: white;
            transform: translateX(10px);
            box-shadow: 0 15px 40px rgba(14, 165, 233, 0.3);
        }

        .area-item.active .area-icon {
            background: white;
            color: var(--primary);
        }

        .area-item.active .area-name,
        .area-item.active .area-region {
            color: white;
        }

        .area-item.hidden {
            display: none;
        }

        .area-icon {
            width: 45px;
            height: 45px;
            background: var(--gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            flex-shrink: 0;
            transition: all 0.3s;
        }

        .area-info {
            flex-grow: 1;
        }

        .area-name {
            font-weight: 700;
            font-size: 16px;
            color: var(--dark);
            margin-bottom: 3px;
            transition: color 0.3s;
        }

        .area-region {
            font-size: 13px;
            color: var(--gray);
            transition: color 0.3s;
        }

        .area-arrow {
            color: var(--primary);
            font-size: 14px;
            opacity: 0;
            transition: all 0.3s;
        }

        .area-item:hover .area-arrow,
        .area-item.active .area-arrow {
            opacity: 1;
            transform: translateX(5px);
        }

        .area-item.active .area-arrow {
            color: white;
        }

        /* Map Container */
        .map-container {
            position: sticky;
            top: 120px;
        }

        .map-wrapper {
            background: white;
            border-radius: 30px;
            padding: 25px;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .map-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding: 0 10px;
        }

        .current-location {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .location-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 22px;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .location-details h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--dark);
        }

        .location-details p {
            font-size: 13px;
            color: var(--gray);
        }

        .map-actions {
            display: flex;
            gap: 10px;
        }

        .map-btn {
            padding: 12px 20px;
            border: none;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Poppins', sans-serif;
        }

        .map-btn.directions {
            background: var(--gradient);
            color: white;
        }

        .map-btn.directions:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
        }

        .map-btn.fullscreen {
            background: #e2e8f0;
            color: var(--dark);
        }

        .map-btn.fullscreen:hover {
            background: var(--dark);
            color: white;
        }

        .map-frame {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .map-frame iframe {
            width: 100%;
            height: 450px;
            border: none;
            display: block;
        }

        .map-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
            padding: 20px;
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(16, 185, 129, 0.05));
            border-radius: 15px;
        }

        .map-footer p {
            font-size: 14px;
            color: var(--gray);
        }

        .map-footer a {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
        }

        .map-footer a:hover {
            color: var(--primary-dark);
            gap: 12px;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 5%;
            background: var(--gradient-dark);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .cta-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
        }

        .cta-icon {
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 40px;
            font-size: 45px;
            color: white;
            animation: pulse-cta 2s ease-in-out infinite;
        }

        @keyframes pulse-cta {
            0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3); }
            50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
        }

        .cta-section h2 {
            font-size: clamp(36px, 5vw, 35px);
            font-weight: 900;
            color: white;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .cta-section p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 50px;
            line-height: 1.8;
        }

        .cta-buttons {
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: 20px 45px;
            border-radius: 50px;
            font-size: 17px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.4s;
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Poppins', sans-serif;
        }

        .cta-btn.primary {
            background: white;
            color: var(--primary-dark);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .cta-btn.primary:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
        }

        .cta-btn.secondary {
            background: transparent;
            color: white;
            border: 3px solid white;
        }

        .cta-btn.secondary:hover {
            background: white;
            color: var(--primary-dark);
            transform: translateY(-5px);
        }


        /* Success Message */
        .success-message {
            display: none;
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            margin-top: 25px;
            animation: slideIn 0.5s ease;
        }

        .success-message i {
            font-size: 45px;
            margin-bottom: 15px;
        }

        .success-message h4 {
            font-size: 20px;
            margin-bottom: 8px;
        }

        @keyframes slideIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Loader */
        .loader {
            display: none;
            width: 24px;
            height: 24px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Scroll Animation */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .content-grid {
                grid-template-columns: 1fr;
            }

            .areas-container {
                grid-template-columns: 1fr;
            }

            .map-container {
                position: relative;
                top: 0;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .cards-container {
                grid-template-columns: 1fr;
            }

            .content-grid {
                gap: 40px;
            }
        }

       
            .form-row {
                grid-template-columns: 1fr;
            }

            .form-section {
                padding: 35px 25px;
            }

            .hero-stats {
                gap: 30px;
            }

            .stat-number {
                font-size: 36px;
            }

.deep-clean-section {
            padding: 60px 20px;
            background-color: #ffffff;
            font-family: 'Segoe UI', Roboto, sans-serif;
            color: #334155;
            line-height: 1.6;
        }

        .dc-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center; /* Vertically center content */
            gap: 50px;
        }

        /* --- 70% TEXT COLUMN --- */
        .dc-content-col {
            flex: 0 0 70%; /* Fixed 70% width */
            max-width: 70%;
        }

        .dc-content-col h2 {
            color: #0D2137; /* Navy Blue */
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 20px;
            margin-top: 0;
            line-height: 1.2;
        }

        .dc-content-col p {
            font-size: 17px;
            margin-bottom: 20px;
            color: #000;
        }


        /* --- 30% IMAGE COLUMN --- */
        .dc-image-col {
            flex: 0 0 30%; /* Fixed 30% width */
            max-width: 30%;
        }

        .dc-img-wrapper {
            width: 100%;
            height: 400px; /* Fixed height for clean look */
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
        }

        .dc-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures image covers area without stretching */
            transition: transform 0.5s ease;
        }

        .dc-img-wrapper:hover img {
            transform: scale(1.05); /* Slight zoom on hover */
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 900px) {
            .dc-container {
                flex-direction: column;
            }
            .dc-content-col, .dc-image-col {
                flex: 0 0 100%;
                max-width: 100%;
            }
            .dc-image-col {
                order: -1; /* Image on top on mobile (optional) */
            }
            .dc-img-wrapper {
                height: 300px;
            }
        }


 .moving-services-section {
            padding: 80px 20px;
            background-color: #f8fafc; /* Light Grey/Blue Background */
            font-family: 'Segoe UI', Roboto, sans-serif;
            color: #334155;
            line-height: 1.6;
        }

        .ms-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        /* --- HEADER --- */
        .ms-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px auto;
        }

        .ms-header h2 {
            color: #0D2137; /* Navy Blue */
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        /* Decorative underline */
        .ms-header h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: #00A99D; /* Teal */
            margin: 10px auto 0;
            border-radius: 2px;
        }

        .ms-header p {
            font-size: 18px;
            color: #475569;
        }

        /* --- CARDS CONTAINER --- */
        .ms-cards-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 40px;
        }

        /* --- CARD STYLING --- */
        .ms-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border-top: 5px solid transparent;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .ms-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        /* Move-In Specifics */
        .card-move-in {
            border-top-color: #00A99D; /* Teal Top Border */
        }
        .icon-move-in {
            background: rgba(0, 169, 157, 0.1);
            color: #00A99D;
        }

        /* Move-Out Specifics */
        .card-move-out {
            border-top-color: #0D2137; /* Navy Top Border */
        }
        .icon-move-out {
            background: rgba(13, 33, 55, 0.1);
            color: #0D2137;
        }

        /* Icon Circle */
        .ms-icon-circle {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            margin-bottom: 25px;
        }

        .ms-card h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #0D2137;
        }

        /* Lists */
        .ms-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .ms-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 12px;
            font-size: 16px;
            color: #334155;
            border-bottom: 1px dashed #e2e8f0;
            padding-bottom: 12px;
        }

        .ms-list li:last-child {
            border-bottom: none;
        }

        .ms-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: #00A99D;
        }

        /* --- BOTTOM HIGHLIGHT BOX --- */
        .ms-footer-note {
            background: #0D2137;
            color: #ffffff;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            font-size: 18px;
            line-height: 1.6;
        }

        .ms-footer-note strong {
            color: #00A99D;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 900px) {
            .ms-cards-wrapper {
                grid-template-columns: 1fr;
            }
            .ms-header h2 { font-size: 26px; }
        }


