* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Segoe UI", sans-serif; */
   font-family: "Marcellus", serif;
   /* font-style: normal; */
}

  

body {
    background: white;
    color: #1a1a1a;
}



.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;

}

/* .services .container {
    background-image: url('D:/zookit 1/zookit/assets/images/Service Background.jpg');
    background-size: 1400px;
} */
/* ================= BUTTONS ================= */
.btn {
    padding: 16px 32px;
    /* border-radius: 8px; */
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.btn-primary {
    background: black;
    color: #fff;
    /* background: #fbca1f; */

}

/* .btn-primary:hover {
    transform: translate(-0.05em, -0.05em);
    box-shadow: 0.15em 0.15em;
} */

/* .btn-primary:active {
    transform: translate(0.05em, 0.05em);
    box-shadow: 0.05em 0.05em;
} */


/* .btn-success {
    background: #43a047;
    color: #fff;
} */

.btn-dark {
    background: #111;
    color: #fff;
}

.btn-outline {
    /* border: 2px solid #1e88e5; */
    background: #111;
    color: white;
}

.btn.small {
    padding: 8px 12px;
}

/* ================= HEADER ================= */
/* ================= HEADER ================= */
.header {
    background: #fff;
    padding: 16px 0;
    /* EXACT 16px space */
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    overflow: visible;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    /* stable height */
    overflow: visible;
}

/* ===== LOGO SIZE FIX ===== */

.logo img {
    height: 32px;
    /* adjust: 28px–36px if needed */
    width: auto;
    /* keep aspect ratio */
    display: block;
}

.logo span {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}


/* NAV MENU */
.nav a {
    /* margin: 0 16px; */
    text-decoration: none;
    color: #111010;
    font-weight: 600;
    font-size: 16px;
}

/* ===== DROPDOWN MENU ===== */
/* Note: Modern dropdown styles are defined below in the responsive header section */

/* ================= HEADER / NAV / DROPDOWNS (RESPONSIVE MERGED) ================= */
/* This adds the responsive header behavior from `zookit` without changing the rest of the site layout. */

/* Fixed header + spacing so content doesn't hide under it */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

body {
    padding-top: 80px;
}

@media screen and (max-width: 768px) {
    body {
        padding-top: 70px;
    }
}

/* Scope container padding/max-width to header only (avoid impacting other sections) */
.header .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow: visible;
}

@media screen and (max-width: 768px) {
    .header .container {
        padding: 0 1rem;
    }
}

/* Navigation Base Styles - Desktop */
.nav {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    flex: 1;
    justify-content: end;
}

@media screen and (min-width: 769px) {
    .mobile-menu-footer,
    .nav-chevron,
    .mobile-header-right {
        display: none !important;
    }

    .nav > a,
    .nav-item > a {
        display: flex;
    }

    .nav > a.btn.btn-dark {
        display: inline-block;
    }
}

.nav > a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}
.nav .home {
    color: #1a1a1a;
}

/* .nav .nav-item  a{
     color: #1a1a1a;
} */
.nav > a:hover {
    color: #ffffff;
}

/* Dropdown Parent Items */
.nav-item {
    position: relative;
    display: inline-block;
}

.nav-item > a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-chevron {
    display: none;
}

.nav-item > a::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.3s ease;
    /* Sarthak  */
    /* margin-left: -20px; */
}

.nav-item:hover > a::after {
    transform: rotate(180deg);
}

@media screen and (max-width: 768px) {
    .nav-item > a.nav-item-link::after {
        display: none;
    }
}

.nav-item:hover > a {
    color: #343a3b;
}

/* Hide Bussiness Sub Nav */
.for-business-link::after {
    content: none !important;
}

/* Hide Bussiness About-Us */

.aboutus-link::after {
    content: none !important;
}


/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 1.5rem;
    min-width: 700px;
    max-width: 90vw;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 10000;
    pointer-events: none;
}

@media screen and (min-width: 769px) {
    .nav-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 3rem;
}

.dropdown-grid-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 3px;
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
}

.dropdown-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #e8f9f4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover .dropdown-icon {
    background-color: #caeaf5;
}

.dropdown-icon img,
.dropdown-icon svg {
    width: 28px;
    height: 28px;
}

.dropdown-content {
    flex: 1;
}

.dropdown-title {
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.dropdown-description {
    color: #757575;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

/* Mobile header right section */
.mobile-header-right {
    display: none;
    align-items: center;
    gap: 12px;
}

.download-icon-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 4px;
}

.download-icon-mobile svg {
    width: 22px;
    height: 22px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 1001;
    transition: all 0.3s ease;
}

.menu-toggle span {
    width: 24px;
    height: 3px;
    background-color: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

body.menu-open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

body.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

body.menu-open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media screen and (max-width: 768px) {
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        animation: fadeIn 0.3s ease forwards;
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.nav-item-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-chevron {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.nav-item.active .nav-chevron {
    transform: rotate(180deg);
}

@media screen and (max-width: 1024px) {
    .dropdown-menu {
        min-width: 500px;
    }

    .nav {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    .mobile-header-right {
        display: flex;
        align-items: center;
        gap: 12px;
        height: 40px;
    }

    .download-icon-mobile,
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        width: 40px;
        padding: 0;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* Mobile nav panel */
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 70%;
        max-width: 380px;
        height: 100vh;
        height: 100dvh;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        background: #ffffff;
        padding: 5rem 0 0 0;
        gap: 0;
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 999;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease, visibility 0.3s ease;
        visibility: hidden;
        justify-content: flex-start;
    }

    .nav.active {
        transform: translateX(0);
        visibility: visible;
    }

    /* Hide desktop Download App button in the nav panel */
    .nav > a.btn.btn-dark {
        display: none;
    }

    /* Home link styling for mobile */
    .nav > a.home {
        display: block;
        padding: 1rem 1.5rem;
        width: 100%;
        border-bottom: 1px solid #f3f4f6;
        font-weight: 600;
        color: #1a1a1a !important;
        text-decoration: none;
    }

    .nav-item {
        width: 100%;
        position: relative !important;
        display: block !important;
        overflow: visible !important;
    }

    .nav-item > a.nav-item-link {
        padding: 1rem 1.5rem !important;
        width: 100%;
        border-bottom: 1px solid #f3f4f6;
        font-weight: 600;
        color: #1a1a1a;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-chevron {
        display: block;
    }

    /* Mobile dropdowns */
    .dropdown-menu {
        display: none !important;
        position: static !important;
        box-shadow: none !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        min-width: auto !important;
        max-width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        left: 0 !important;
        right: 0 !important;
        top: auto !important;
        bottom: auto !important;
        background: #f9fafb !important;
        border-radius: 0 !important;
    }

    .nav-item.active .dropdown-menu {
        display: block !important;
    }

    .dropdown-grid,
    .dropdown-grid-nav {
        display: flex !important;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .dropdown-item {
        display: flex !important;
        align-items: center;
        padding: 0.875rem 1.5rem 0.875rem 2.5rem;
        width: 100%;
        border-bottom: 1px solid #e5e7eb;
        border-radius: 0;
        text-decoration: none;
        color: #374151;
        transition: background-color 0.2s ease;
        transform: none;
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }

    .dropdown-icon,
    .dropdown-description {
        display: none;
    }

    .dropdown-title {
        display: block;
        font-size: 0.95rem;
        font-weight: 500;
        color: #374151;
        margin: 0;
    }
}

/* Adjust mobile menu width for smaller screens */
@media screen and (max-width: 480px) {
    .nav {
        width: 80%;
        max-width: 300px;
    }
}


/* ================= HERO ================= */
/* ================= HERO ================= */
.hero {
    padding: 80px 0;
    background-color: #ffffff;
}

.hero-flex {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Text */
.hero-text {
    flex: 1;
}

.tagline {
    font-size: 13px;
    font-weight: 700;
    color: #1e88e5;
    letter-spacing: 0.6px;
}

.hero-text h1 {
    font-size: 46px;
    line-height: 1.2;
    margin: 15px 0 20px;
    color: #111;
}

.hero-text p {
    font-size: 16px;
    color: #555;
    max-width: 520px;
    margin-bottom: 30px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-buttons a {
    padding: 14px 30px;
    font-size: 14px;
    font-weight: 500;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    /* border-radius: 6px; */
    transition: background 0.3s ease;
}

.hero-buttons a:hover {
    background-color: #222;
}

/* Image (IMPORTANT FIX) */
.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
}


/* ================= HERO RESPONSIVE ================= */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 60px 20px;
    }

    .hero-flex {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text p {
        max-width: 100%;
    }

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

    /* Image Wrapper */
    .hero-image {
        flex: 1;
        display: flex;
        justify-content: center;   /* ⬅ center image */
        align-items: center;
    }

    /* Image */
    .hero-image img {
        width: 100%;
        max-width: 420px;          /* ⬅ control size */
        height: auto;
        object-fit: contain;
        transform: translateX(20px); /* ⬅ subtle visual balance */
    }

}


/* ================= SERVICES ================= */


.services {
    padding: 80px 0;
    background: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 50px;
}

/* Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Card */
.service-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    overflow: hidden; /* IMPORTANT for full image */
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* FULL WIDTH IMAGE */
.service-card img {
    width: 100%;
    height: 220px;          /* adjust height if needed */
    object-fit: cover;      /* fills entire card top */
    display: block;
}

/* Text Content */
.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 20px 20px 10px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0 20px 20px;
}

.service-card ul li {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 6px;
}



/* Responsive tweak */
@media (max-width: 600px) {
    .service-card img {
        height: 180px;
    }
}


/* ================= How it's work ================= */
body {
    /* background: #776262; */
}

.how-it-works {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: Arial, sans-serif; */
    background: #fff;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 50px auto;
    border-radius: 20px;
    text-align: center;
}

.how-it-works h2 {
    margin-bottom: 40px;
    font-size: 28px;
}

.steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 40px;
}

/* dotted line */
/* .steps::before {
    content: "";
    position: absolute;
    top: 207px;                     
    left: 11.7%;
    width: 76%;
    border-top: 3px dashed  #3cb3ad;
    z-index: 0;
} */

.steps::before {
    content: "";
    position: absolute;
    top: 207px;
    left: 11.7%;
    width: 75.4%;
    height: 2.2px;

    background: repeating-linear-gradient(to right,
            #3cb3ad 0 10px,
            /* DASH length */
            transparent 5px 15px
            /* GAP length (spacing) */
        );

    z-index: 0;
}



.step {
    position: relative;
    z-index: 1;
    /* brings content above dotted line */
    width: 23%;
    text-align: center;
}


.icon img {
    width: 180px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
}

.number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border: 2.5px solid #3cb3ad;
    border-radius: 50%;
    color: #3cb3ad;
    background: #fff;
    /* IMPORTANT: hides line behind */
    font-weight: bold;
}


.step h3 {
    font-size: 17px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.step p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    text-align: left;
}

.how-it-works .btn {
    margin-top: 40px;
    padding: 12px 30px;
    border: none;
    /* background: #3cb3ad; */
    color: #fff;
    font-size: 15px;
    /* border-radius: 25px; */
    /* cursor: pointer; */
}

/* .btn:hover {
    background: #2a9994;
} */

@media (max-width: 900px) {
    .steps::before {
        display: none;
    }
}


/* ================= FOOTER ================= */
.footer {
    background: #0d1b2a;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px) {
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== SIZE ONLY OVERRIDE (NO DESIGN CHANGE) ===== */

/* HEADER HEIGHT */
.header {
    padding: 22px 0;
}

.header-flex {
    min-height: 64px;
}

/* HERO SECTION HEIGHT */


/* LEFT CONTENT WIDTH */
.hero-text {
    max-width: 560px;
}

/* MAIN HEADING SIZE */
.hero-text h1 {
    font-size: 50px;
    line-height: 1.15;
}

/* PARAGRAPH WIDTH & SIZE */
.hero-text p {
    font-size: 17px;
    max-width: 420px;
    margin-bottom: 32px;
}

/* BUTTON SIZE ONLY */
.hero-buttons .btn {
    padding: 14px 32px;
    font-size: 15px;
}

/* RIGHT IMAGE SIZE */
.hero-image img {
    max-width: 520px;
}

/* MOBILE SIZE ONLY */
@media (max-width: 900px) {
    .hero {
        padding: 70px 0;
    }

    .hero-text h1 {
        font-size: 38px;
    }
}


/* ----------Team Section CSS------------  */

/* Section */
.team-section {
    padding: 60px 80px;
}

/* Header */
.team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    margin-left: 25px;
}

.team-header h2 {
    font-size: 28px;
    font-weight: 700;
}

.team-header p {
    color: #777;
    margin-top: 6px;
}

.join-btn {
    background: black;
    color: #fff;
    border: none;
    padding: 10px 18px;
    /* border-radius: 8px; */
    cursor: pointer;
    margin-right: 20px;
}

/* Cards container */
.team-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Card */
.team-card {
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    text-align: left;
    transition: 0.3s;
}

.team-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 14px;
    margin-left: auto;
    margin-right: auto;
}

.team-card h3 {
    font-size: 16px;
    font-weight: 600;
}

.team-card .role {
    font-size: 14px;
    color: #777;
    margin: 6px 0 10px;
}

.social {
    display: flex;
    justify-content: left;
    gap: 14px;
    font-size: 14px;
    color: #555;
}


/* Active card highlight */
/* .team-card.active {
    border: 2px solid #4f46e5;
} */

/* Hover effect */
.team-card:hover {
    transform: translateY(-6px);
}



/*--------- Car_Hero Section CSS -----------*/


/* Wrapper */
.car_hero-wrapper {
    padding: 40px;
}

/* Main Hero */
.car_hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 70px 80px;
    margin: 0 75px 30px 75px ;
    border-radius: 28px;
    overflow: hidden;
}

/* CURVED BACKGROUND */
.car_hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #b8f96a;
    clip-path: polygon(0 0,
            100% 0,
            100% 70%,
            75% 80%,
            55% 88%,
            30% 95%,
            0 100%);
    z-index: -1;
}

/* Content */
.car_hero-content {
    max-width: 48%;
}

.car_hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #000;
}

.car_hero-content h1 span {
    font-weight: 900;
}

.car_hero-content p {
    margin: 22px 0 30px;
    font-size: 15px;
    line-height: 1.7;
    max-width: 460px;
    color: #1f1f1f;
}

/* Button */
.car_hero-btn {
    background: #000;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    font-size: 14px;
    cursor: pointer;
}

/* Image */
.car_hero-image {
    max-width: 50%;
}

.car_hero-image img {
    width: 100%;
    max-width: 520px;
}



/* ----------Footer CSS------------  */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.footer {
    background: radial-gradient(circle at top, #0f1230, #07081c);
    color: #ffffff;
    padding: 60px 80px 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.logo {
    height: 20px;
}

.logo span {
    color: #00d084;
}

.follow-text {
    margin: 25px 0 10px;
    font-weight: bold;
}

.social-icons a {
    color: #fff;
    margin-right: 12px;
    font-size: 25px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #00d084;
}

.footer-col h3 {
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 18px;
    font-size: 14px;
}

.footer-col ul li a {
    color: #cfcfcf;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #00d084;
}

.footer-col .city-list li {
    font-size: 14px;
    color: #cfcfcf;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    /* LEFT ↔ RIGHT */
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 15px;
}

.footer-left {
    text-align: center;
    max-width: 70%;
}


.footer-left p {
    font-size: 13px;
    color: #cfcfcf;
    margin: 10px 0;
}

.footer-left a {
    color: #cfcfcf;
    text-decoration: none;
}

.footer-left a:hover {
    color: #00d084;
}

.footer-right {
    display: flex;
    align-items: center;
}

.footer-right img {
    height: 60px;
    margin-left: 10px;
    margin-top: 12px;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

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

@media (max-width: 600px) {
    .footer-bottom-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-right {
        margin-top: 12px;
    }
}

@media (max-width: 900px) {
    .steps {
        flex-direction: column;
    }

    .steps::before {
        display: none;
    }

    .step {
        width: 100%;
        margin-bottom: 30px;
    }
}

/* ================= ENHANCED MOBILE RESPONSIVENESS ================= */

/* ===== LOGO MOBILE OPTIMIZATION ===== */
@media (max-width: 480px) {
    .logo img {
        height: 28px;
        position: absolute;
        top: 45px;
    }
}

/* ===== TOUCH TARGET IMPROVEMENTS ===== */
@media screen and (max-width: 768px) {
    .mobile-header-right {
        gap: 8px;
    }
    
    .download-icon-mobile,
    .menu-toggle {
        min-width: 44px;
        min-height: 44px;
    }
}

/* ===== HERO SECTION MOBILE ENHANCEMENTS ===== */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-text h1 {
        font-size: 32px;
        line-height: 1.25;
    }
    
    .hero-text p {
        font-size: 15px;
        max-width: 100%;
        margin-bottom: 24px;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .hero-buttons a {
        margin-right: 0;
        text-align: center;
        width: 100%;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    .hero-image img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text p {
        font-size: 14px;
    }
    
    .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ===== SERVICES SECTION MOBILE IMPROVEMENTS ===== */
@media (max-width: 768px) {
    .services {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .service-card img {
        height: 200px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .services {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .service-card h3 {
        font-size: 18px;
    }
    
    .service-card ul li {
        font-size: 14px;
    }
}

/* Tablet improvements for services */
@media (min-width: 769px) and (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== HOW IT WORKS SECTION MOBILE IMPROVEMENTS ===== */
@media (max-width: 1024px) {
    .how-it-works {
        padding: 40px 15px;
    }
    
    .steps {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }
    
    .step {
        width: 45%;
    }
    
    .icon img {
        width: 140px;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        margin: 30px auto;
        padding: 30px 15px;
    }
    
    .how-it-works h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .step {
        width: 100%;
    }
    
    .icon img {
        width: 160px;
    }
    
    .step h3 {
        font-size: 18px;
        margin-top: 12px;
    }
    
    .step p {
        font-size: 14px;
        text-align: center;
        padding: 0 10px;
    }
    
    .how-it-works .btn {
        margin-top: 30px;
        padding: 12px 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .icon img {
        width: 120px;
    }
    
    .step h3 {
        font-size: 16px;
    }
    
    .number {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

/* ===== TEAM SECTION MOBILE RESPONSIVENESS (CRITICAL) ===== */
@media (max-width: 1024px) {
    .team-section {
        padding: 50px 40px;
    }
    
    .team-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 40px 20px;
    }
    
    .team-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-left: 0;
        margin-bottom: 30px;
    }
    
    .team-header h2 {
        font-size: 24px;
    }
    
    .team-header p {
        font-size: 14px;
        margin-top: 4px;
    }
    
    .join-btn {
        margin-right: 0;
        width: 100%;
        padding: 12px 24px;
    }
    
    .team-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .team-section {
        padding: 30px 15px;
    }
    
    .team-header h2 {
        font-size: 22px;
    }
    
    .team-card {
        padding: 16px;
    }
    
    .team-card h3 {
        font-size: 15px;
    }
    
    .social {
        font-size: 16px;
        gap: 12px;
    }
}

/* ===== FOOTER MOBILE IMPROVEMENTS (CONSOLIDATED) ===== */
@media (max-width: 1024px) {
    .footer {
        padding: 50px 40px 25px;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .footer-col ul li {
        margin-bottom: 12px;
        font-size: 13px;
    }
    
    .social-icons a {
        font-size: 22px;
    }
    
    .footer-bottom-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
    
    .footer-left {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-left p {
        font-size: 12px;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        align-items: center;
    }
    
    .footer-right img {
        height: 50px;
        margin: 0;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* LEFT aligned */
    }

}

@media (max-width: 480px) {
    .footer {
        padding: 30px 15px 15px;
    }
    
    .footer-logo {
        height: 32px;
        width: auto;
        display: block;
    }

    
    .follow-text {
        margin: 20px 0 8px;
        font-size: 14px;
    }
    
    .social-icons a {
        font-size: 20px;
        margin-right: 10px;
    }
    
    .footer-right img {
        height: 45px;
    }
}

/* ===== GENERAL MOBILE OPTIMIZATIONS ===== */
@media (max-width: 768px) {
    /* Base font size adjustment */
    body {
        font-size: 15px;
        line-height: 1.6;
    }
    
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    h3 { font-size: 18px; }
    
    /* Container improvements */
    .container {
        width: 95%;
        padding: 0 15px;
    }
    
    /* Button improvements */
    .btn {
        font-size: 14px;
        padding: 12px 24px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn.small {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    /* Improve tap targets for links - mobile only */
    .footer-col ul li a {
        padding: 12px 8px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
    
    h1 { font-size: 24px; }
    h2 { font-size: 20px; }
    h3 { font-size: 16px; }
    
    .container {
        width: 100%;
        padding: 0 12px;
    }
}

/* ===== PREVENT HORIZONTAL SCROLL ===== */
body {
    overflow-x: hidden;
}

/* Removed overflow-x from header container to allow dropdowns */
.hero-flex,
.service-grid,
.steps,
.team-container,
.footer-container {
    /* max-width: 100%; */
    overflow-x: hidden;
}

/* ===== FLUID IMAGES ===== */
img {
    max-width: 100%;
    height: auto;
}

/* Keep block display for content images but allow inline for icons */
.hero-clean-image img,
.service-card img,
.icon img,
.team-card img,
.footer img {
    display: block;
}

/* ===== PERFORMANCE OPTIMIZATION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* About-Us */

/* Reset */
/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
} */

.about-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

/* .container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
} */

.breadcrumb {
  display: inline-block;
  font-size: 14px;
  color: #999;
  margin-bottom: 12px;
}

/* .section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
} */

.section-title span {
  color: black;
}

.section-desc {
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background-color: black;
  color: #fff;
  /* border-radius: 30px; */
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: white;
  color:black;
  border: 1 solid black;
}

/* Image layout */
.image-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.image-card {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-card.small {
  width: 260px;
  height: 220px;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
}

.image-card.large {
  width: 360px;
  height: 280px;
  clip-path: polygon(6% 0, 100% 6%, 94% 100%, 0% 94%);
}

/* Responsive */
@media (max-width: 992px) {
  .section-title {
    font-size: 32px;
  }

  .image-card.large {
    width: 320px;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .image-grid {
    flex-direction: column;
  }

  .image-card.small,
  .image-card.large {
    width: 90%;
    height: 240px;
    clip-path: none;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 26px;
  }

  .section-desc {
    font-size: 15px;
  }
}

/* SECTION */
.experience-section {
  background: #faf9f7;
  padding: 90px 20px;
}

.exp-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.exp-label {
  font-size: 14px;
  color: black;
  font-weight: 600;
}

.exp-title {
  font-size: 40px;
  margin: 12px 0;
  font-weight: 700;
}

.exp-title span {
  color: #333;
}

.exp-desc {
  max-width: 760px;
  margin: 0 auto 70px;
  color: #666;
  line-height: 1.7;
}

/* MAIN LAYOUT */
.exp-layout {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 40px;
  align-items: stretch;
}

/* LEFT CARD */
.exp-main {
  background: #f7f5f2;
  border-radius: 22px;
  padding: 32px;
  text-align: left;
  position: relative;
}

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

.logo-box {
  width: 44px;
  height: 44px;
  background: black;
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.exp-main h3 {
  font-size: 42px;
  margin: 28px 0 12px;
}

.exp-main p {
  font-size: 15px;
  color: #555;
}

/* AVATARS */
.avatars {
  display: flex;
  margin-top: 24px;
}

.avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ddd;
  margin-left: -10px;
}

.avatars span:first-child {
  margin-left: 0;
}

.avatars .more {
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
}

/* RIGHT GRID */
.exp-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.exp-card {
  background: #f7f5f2;
  border-radius: 22px;
  padding: 28px;
  text-align: left;
}

.exp-card h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.exp-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* METRIC CARDS */
.metric h3 {
  font-size: 36px;
  margin-bottom: 6px;
}

.highlight h3 {
  color: black;
}

/* BUTTON */
.exp-btn {
  display: inline-block;
  margin-top: 60px;
  padding: 14px 34px;
  border-radius: 28px;
  border: 1px solid #ddd;
  color: #111;
  font-weight: 600;
  text-decoration: none;
}

/* =====================
   RESPONSIVE
===================== */

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

  .exp-main,
  .exp-card {
    text-align: center;
  }

  .brand,
  .avatars {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .exp-title {
    font-size: 28px;
  }

  .exp-right {
    grid-template-columns: 1fr;
  }

  .metric h3 {
    font-size: 28px;
  }

  .exp-btn {
    width: 100%;
  }
}



.team-section {
  padding: 90px 20px;
  background: #ffffff;
}

.team-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.team-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.team-subtitle {
  color: #666;
  max-width: 620px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

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

/* CARD */
.team-card {
  background: #f9f8f6;
  padding: 26px;
  text-align: center;
  clip-path: polygon(
    0% 6%,
    6% 0%,
    94% 0%,
    100% 6%,
    100% 94%,
    94% 100%,
    6% 100%,
    0% 94%
  );
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.team-img {
  width: 120px;
  height: 120px;
  margin: 0 auto 18px;
  overflow: hidden;
  clip-path: polygon(
    0% 10%,
    10% 0%,
    90% 0%,
    100% 10%,
    100% 90%,
    90% 100%,
    10% 100%,
    0% 90%
  );
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */
.team-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #111;
}

.team-card span {
  font-size: 14px;
  color: black;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-title {
    font-size: 28px;
  }
}


/* CTA SECTION */
.cta-section {
  padding: 100px 20px;
  background: #fff;
}

.cta-container {
  max-width: 1100px;
  margin: auto;
  background: black;
  padding: 80px 30px;
  text-align: center;
  border-radius: 26px;
  position: relative;
  overflow: hidden;
}

/* CLIPPED CORNER EFFECT */
.cta-container::before,
.cta-container::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: #ffffff;
  opacity: 0.45;
  border-radius: 20px;
}

.cta-container::before {
  top: -25px;
  right: -25px;
}

.cta-container::after {
  bottom: -30px;
  left: -30px;
}

/* TEXT */
.cta-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: black;
  margin-bottom: 12px;
}

.cta-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #9e9e9e;
}

.cta-desc {
  max-width: 650px;
  margin: 0 auto 36px;
  font-size: 15px;
  line-height: 1.7;
  color: #9e9e9e;
}

/* BUTTONS */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.cta-actions a {
  padding: 14px 30px;
  border-radius: 24px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

/* PRIMARY */
/* .btn-primary {
  background: black;
  color: #fff;
} */

/* .btn-primary:hover {
  background: #dd7a1e;
} */

/* SECONDARY */
.btn-secondary {
  background: #f0ede9;
  color: #111;
  border: 1px solid #ddd;
}

.btn-secondary:hover {
  background: #e6e2dd;
}

/* =====================
   RESPONSIVE
===================== */

@media (max-width: 768px) {
  .cta-container {
    padding: 60px 24px;
  }

  .cta-title {
    font-size: 32px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions a {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 26px;
  }

  .cta-desc {
    font-size: 14px;
  }
}

/* Home Cleaning Section  */


.home-clean-hero-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.home-clean-hero-content {
    flex: 1;
}

.home-clean-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.home-clean-section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 50px;
}

.home-clean-hero-content p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 30px;
    max-width: 480px;
}

.home-clean-hero-buttons {
    display: flex;
    gap: 15px;
}

.home-clean-hero-image {
    flex: 1;
    text-align: right;
}

.home-clean-hero-image img {
    max-width: 100%;
}

/* ================= SERVICES ================= */
/* ================= HOME CLEAN SERVICES ================= */

.home-clean-services {
    padding: 60px 20px;
    background-color: #f9fafb;
}

.home-clean-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Title */
.home-clean-services .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 60px;
    color: #111;
}

/* Grid */
.home-clean-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

/* Card */
.home-clean-service-card {
    text-align: center;
}

/* Icon */
.home-clean-service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

/* Heading */
.home-clean-service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
}

/* Text */
.home-clean-service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 22px;
}

/* Button */
.home-clean-service-card .btn {
    background-color: #000;
    color: #fff;
    padding: 12px 34px;
    /* border-radius: 999px; */
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.home-clean-service-card .btn:hover {
    background-color: #222;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .home-clean-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Mobile */
/* ================= HERO MOBILE FIX ================= */
/* ================= HERO – FINAL MOBILE FIX ================= */
@media (max-width: 600px) {

    /* Hero section spacing */
    .home-clean-hero {
        padding: 60px 20px 40px;
    }

    .home-clean-hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 28px;
    }

    /* Content */
    .home-clean-hero-content {
        width: 100%;
        order: 1;
    }

    .home-clean-hero-content h1 {
        font-size: 26px;
        line-height: 1.35;
        margin-bottom: 14px;
    }

    .home-clean-hero-content p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 22px;
        max-width: 100%;
    }

    /* Buttons */
    .home-clean-hero-buttons {
        display: flex;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    .home-clean-hero-buttons .btn {
        min-width: 140px;
        padding: 12px 22px;
    }

    /* Image */
    .home-clean-hero-image {
        width: 100%;
        order: 2;
        margin-top: 10px;
        text-align: center;
    }

    .home-clean-hero-image img {
        width: 100%;
        max-width: 300px;
        height: auto;
        display: block;
        margin: 0 auto;
    }
}

@media (max-width: 400px) {
    .home-clean-hero-image img {
        max-width: 260px;
    }
}




/* ================= WHY CHOOSE US ================= */
/* ================= WHY CHOOSE US ================= */
.why-us {
    padding: 80px 40px;
    background-color: #ffffff;
}

.why-us-container {
    max-width: 1200px;
    margin: auto;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #4444;
}

/* Highlight */
.why-highlight {
    background-color: #57c2c7;
    color: #ffffff;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.why-highlight h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

/* Cards */
/* Cards */
.why-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 35px 30px;
    border-top: 1px solid #4444;
    border-left: 1px solid #4444;
}

/* Text wrapper */
.why-text {
    display: flex;
    flex-direction: column;
}

.why-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.why-card p {
    font-size: 14px;
    color: black;
    line-height: 1.5;
}

/* SVG Icon Styling */
.why-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.why-icon svg {
     width: 100%;
    height: 100%;
    stroke: #57c2c7;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-highlight {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .why-us {
        padding: 60px 20px;
    }

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

    .why-highlight {
        grid-column: span 1;
        padding: 30px 20px;
    }

    .why-highlight h3 {
        font-size: 18px;
    }
}

/* ================= TESTIMONIALS ================= */
/* ================= WORK / TESTIMONIAL IMAGE SECTION ================= */
/* ================= WORK GALLERY ================= */
/* ================= WORK GALLERY ================= */

.work-gallery {
    padding: 90px 40px;
    background: #f9fafb;
}

.work-gallery-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* Title */
.work-gallery .section-title {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 60px;
    color: #111;
}

/* Grid */
.work-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Card */
.work-card {
    position: relative;
    height: 340px;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Image */
.work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* 🔥 NO DISTORTION */
    transition: transform 0.6s ease;
}

/* Overlay */
.work-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.15),
        rgba(0,0,0,0)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px;
    color: #fff;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s ease;
}

/* Text */
.work-overlay h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.work-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Hover Effects */
.work-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0,0,0,0.18);
}

.work-card:hover img {
    transform: scale(1.1);
}

.work-card:hover .work-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* ================= RESP*

/* Car Services Start */




/* ================= PRICING ================= */
.pricing {
    padding: 80px 40px;
    background-color: #ffffff;
}

.pricing-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* Toggle */
.pricing-toggle {
    display: inline-flex;
    background: #f1f5f9;
    border-radius: 24px;
    padding: 4px;
    margin: 20px 0 45px;
}

.pricing-toggle span {
    padding: 8px 20px;
    font-size: 13px;
    cursor: pointer;
    border-radius: 20px;
    color: #64748b;
}

.pricing-toggle .active {
    background-color: black;
    color: #ffffff;
}

/* ================= GRID ================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 18rem));
    justify-content: center; /* IMPORTANT */
    gap: 32px;
}

/* ================= CARD ================= */
.pricing-card {
    width: 18rem;
    height: 25rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px 20px;
    background-color: #ffffff;
    text-align: center;
    display: flex;
    justify-content: flex-start; /* instead of space-between */
    flex-direction: column;
    /* aligns content like reference */
}

/* Popular card */
.pricing-card.popular {
    background-color: black;
    color: #ffffff;
    transform: translateY(-8px); /* subtle lift only */
}

/* Badge */
.badge {
    align-self: center;
    background-color: black;
    color: #ffffff;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 5px;
}

/* Plan name */
.plan-name {
    font-size: 14px;
    font-weight: 600;
    margin: 10px 0px;
}

/* Price */
.price {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.currency {
    font-size: 18px;
    vertical-align: top;
}

.duration {
    font-size: 13px;
    font-weight: 400;
}

.plan-desc {
    margin: 10px 0 14px;
    font-size: 13px;
    color:#64748b;
    line-height: 1.4;
}
.plan-desc-prp{
    margin: 10px 0 14px;
    font-size: 13px;
    color:#ffffff;
    line-height: 1.4;
}

/* Features */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 10px 0 14px;
}

.plan-features li {
    font-size: 13px;
    margin-bottom: 6px;
}

/* Button */
/* ================= PRICING BUTTON ================= */
.pricing-card .btn {
    width: 100%;
    height: 42px;                 /* fixed height = clean */
    line-height: 42px;            /* vertical centering */
    padding: 0;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    box-sizing: border-box;
    text-align: center;
    display: inline-block;
    margin-top: auto;
}

/* Outline button (default cards) */
.pricing-card .btn-outline {
    border: 1px solid black;
    color: white;
    background-color: black;
}

/* Popular card button (inverted outline) */
.pricing-card.popular .btn-primary {
    background-color: #ffffff;
    color: black;
    border: 1px solid #ffffff;
}

/* Hover (optional but clean) */
.pricing-card .btn:hover {
    opacity: 0.9;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 600px) {
    .pricing {
        padding: 60px 20px;
    }

    .pricing-grid {
        gap: 24px;
    }

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


/* ================= GET HELP ================= */
.get-help {
    background-color: white;
    padding: 80px 40px;
    /* border: 1px solid black; */
}

.get-help-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

/* Left */
.get-help-left {
    color: black;
}

.get-help-left h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.help-illustration img {
    max-width: 290px;
}

/* Right Form Card */
.get-help-form {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 35px 30px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.get-help-form h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1e293b;
}

/* Form Elements */
.get-help-form form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.get-help-form input,
.get-help-form select,
.get-help-form textarea {
    width: 100%;
    padding: 11px 12px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    outline: none;
}

.get-help-form textarea {
    min-height: 90px;
    resize: vertical;
}

.get-help-form input:focus,
.get-help-form select:focus,
.get-help-form textarea:focus {
    border-color: #2563eb;
}

/* Button */
.get-help-form .btn {
    margin-top: 10px;
    height: 42px;
    font-size: 14px;
}

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

    .help-illustration img {
        margin: auto;
    }
}

@media (max-width: 600px) {
    .get-help {
        padding: 60px 20px;
    }

    .get-help-left h2 {
        font-size: 28px;
    }

    .get-help-form {
        padding: 28px 22px;
    }
}

/*--------- Car_Hero Section CSS -----------*/


/* ================= CAR HERO ================= */


.car-hero {
    padding: 60px 0;
}

.car-hero {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    
}

/* GREEN BACKGROUND */
/* .car-hero-bg {
    background: #ffffff;
    border-radius: 28px;
    padding: 60px 70px;
    margin: 0 40px;
} */

/* FULL WIDTH TITLE */
.car-hero-title h1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.2;
    color: #000;
    margin-bottom: 30px;
}

.car-hero-title span {
    font-weight: 900;
}

/* CONTENT + IMAGE ROW */
.car-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
}

/* LEFT TEXT */
.car-hero-text {
    max-width: 45%;
    position: relative;
    top: -50px;
}

.car-hero-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 26px;
}

/* BUTTON */
.car-hero-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 40px;
    font-size: 15px;
    font-weight: 600;
    /* border-radius: 6px; */
    cursor: pointer;
}

/* IMAGE */
.car-hero-image {
    max-width: 50%;
    position: relative;
    top: -70px;
}

.car-hero-image img {
    width: 100%;
    max-width: 560px;
}

@media (max-width: 992px) {
    .car-hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .car-hero-text {
        max-width: 100%;
        position: relative;
        top: 0px;
    }

    .car-hero-image {
        margin-top: 30px;
        max-width: 100%;
         position: relative;
        top: 0px;
    }

    .car-hero-bg {
        padding: 40px 25px;
        margin: 0 20px;
    }

    .car-hero-title h1 {
        font-size: 32px;
        text-align: center;
    }
}





/* ================= Pricing Section ================= */

.pricing-section {
    max-width: 1300px;
    background-color: #0042d04a;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
}

.subtitle {
    color: #777;
    margin-bottom: 20px;
}


/* Best Plan Card design */

.best-plan {
    position: relative;
    top: -26px;
    margin-bottom: -25px;
}
.best-plan span {
    background: black;
    color: white;
    border-radius: 0px 0px 5px 5px;
    padding: 2px 22px;
}


/* Active tab */
#Mid-Size-Car:checked~.pricing-header .vehicle-switch label[for="Mid-Size-Car"],
#Small-Size-Car:checked~.pricing-header .vehicle-switch label[for="Small-Size-Car"],
#Full-Size-Car:checked~.pricing-header .vehicle-switch label[for="Full-Size-Car"],
#Pickup-Truck:checked~.pricing-header .vehicle-switch label[for="Pickup-Truck"] {
    background: rgba(0, 0, 0, .752);
    color: #fff;
}


/* Cards */
.pricing-cards {
    display: none;
    grid-template-columns: repeat(4, minmax(260px, 1fr));
    gap: 24px;
    justify-content: center;
}


.card {
    width: 300px;                
    min-height: 430px;           
    
    border-radius: 12px;
    padding: 28px 15px 32px;
    background: #ffffff;
    color: #111;
    text-align: center;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}



.card.popular {
    background: #000;
    color: #fff;
}


/* Show correct section */
#Mid-Size-Car:checked~.pricing-wrapper .Mid-Size-Car,
#Small-Size-Car:checked~.pricing-wrapper .Small-Size-Car,
#Full-Size-Car:checked~.pricing-wrapper .Full-Size-Car,
#Pickup-Truck:checked~.pricing-wrapper .Pickup-Truck {
    display: grid;
}

.pricing-wrapper {
    max-width: 100%;
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}

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

.pricing-text h2 {
    font-size: 26px;
}

.pricing-text .subtitle {
    color: #1a1a1a;;
    margin-top: 6px;
}

.vehicle-switch {
    display: inline-flex;
    background: #f1f1f1;
    padding: 6px;
    border-radius: 30px;
}

.features {
    list-style: none;
    padding: 0px 40px;
    margin: 0px 0;
    text-align: left;
}

.features li {
    margin-bottom: 10px;
    font-size: 12px;
    position: relative;
    padding-left: 18px;
}

.choose-btn {
    /* margin-top: auto; */
    padding: 10px 16px;
  
    border-radius: 8px;
    border: none;
    background: black;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.choose-btn.popular{
    background-color: white;
    color: black;
}

/* Vehicle-switch css */

input[type="radio"] {
    display: none;
}

.vehicle-switch-radio {
    display: flex;
    gap: 13px;
}

.vehicle-switch-radio {
    display: inline-flex;
    background: #f1f5f9;
    padding: 9px 9px;
    border-radius: 45px;
}


.vehicle-switch-radio label[for="Full-Size-Car"] {
    margin-top: -3px;
}

.vehicle-switch-radio label[for="Pickup-Truck"] {
    margin-top: -3px;
}


.vehicle-switch-radio label {
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
}

.vehicle-switch-radio img {
    width: 50px;
    height: auto;
    position: relative;
    top: 4px;
}

.vehicle-switch-radio label:hover {
    background: #ddd;
}

/* Active tab */
#Mid-Size-Car:checked~.pricing-header .vehicle-switch-radio label[for="Mid-Size-Car"],
#Small-Size-Car:checked~.pricing-header .vehicle-switch-radio label[for="Small-Size-Car"],
#Full-Size-Car:checked~.pricing-header .vehicle-switch-radio label[for="Full-Size-Car"],
#Pickup-Truck:checked~.pricing-header .vehicle-switch-radio label[for="Pickup-Truck"] {
    background: white;
    color: #fff;
}

/* =========================
   MOBILE VIEW FIX
   ========================= */
@media (max-width: 768px) {

    .pricing-section {
        padding: 16px;
    }

    .pricing-cards {
        grid-template-columns: 1fr;   /* 1 card per row */
        justify-items: center;
        gap: 20px;
    }

    .card {
        width: 100%;
        max-width: 340px;             /* prevents overflow */
        min-height: auto;
        padding: 24px 20px;
    }

    .price {
        font-size: 36px;
    }

    .features {
        margin: 16px 0;
    }

    .choose-btn {
        width: 100%;
    }
}

/* ---------- Why Choose Us Section CSS ----------- */

.why-choose-us {
    padding: 60px 12%;
    text-align: center;
    margin-bottom: 80px;
}

.why-choose-us h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
}

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

/* .choose-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
} */

.choose-card {

    background: #ffffff;
    border-radius: 16px;
    padding: 20px 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        background-color 0.35s ease;
}

.choose-card img {
    /* width: 120px; */
    margin-bottom: 20px;
    height: 120px;
}

.choose-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.choose-card p {
    font-size: 15px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 25px;
}

.choose-card a {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    letter-spacing: 0.5px;
}
/* Hover effect */
.choose-card:hover {
    transform: translateY(-10px) scale(1.02);
    /* background-color: #b9ff6b; */
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.241);
}


/* Responsive */
@media (max-width: 1024px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

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


/* Blog Cards Section Styling - Unique Classes */

/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
} */

/* Blog Cards Section Styling - Unique Classes */

.blog-cards-section {
    /* padding: 60px 5%; */
    text-align: center;
    margin-bottom: 80px;
    background-color: #ffffff;
    margin-bottom: 50px;
    margin-top: 120px;
}

.blog-cards-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #000000;
    /* font-family: 'Arial', sans-serif; */
}

.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Individual Blog Card */
.blog-card-item {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Image Wrapper */
.blog-card-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e9ecef;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card-item:hover .blog-card-img {
    transform: scale(1.1);
}

/* Card Content */
.blog-card-content {
    padding: 25px 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
    /* font-family: 'Arial', sans-serif; */
    line-height: 1.3;
}

.blog-card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Read More Button */
.blog-card-btn {
    display: inline-block;
    padding: 10px 24px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.blog-card-btn:hover {
    background-color: #333333;
    transform: translateX(3px);
}

/* Responsive Design */

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .blog-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet/Medium screens (768px to 1199px) */
@media (max-width: 1199px) and (min-width: 768px) {
    .blog-cards-section {
        padding: 50px 4%;
    }
    
    .blog-cards-title {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .blog-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .blog-card-image-wrapper {
        height: 200px;
    }
}

/* Small Tablet (600px to 767px) */
@media (max-width: 767px) and (min-width: 600px) {
    .blog-cards-section {
        padding: 60px 4%;
        margin-bottom: 60px;
    }
    
    .blog-cards-title {
        font-size: 32px;
        margin-bottom: 35px;
    }
    
    .blog-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .blog-card-image-wrapper {
        height: 180px;
    }
    
    .blog-card-content {
        padding: 20px 15px;
    }
    
    .blog-card-heading {
        font-size: 18px;
    }
    
    .blog-card-description {
        font-size: 13px;
    }
}

/* Mobile screens (below 600px) */
@media (max-width: 599px) {
    .blog-cards-section {
        padding: 70px 4%;
        margin-bottom: 50px;
    }
    
    .blog-cards-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .blog-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-card-image-wrapper {
        height: 200px;
    }
    
    .blog-card-content {
        padding: 20px 18px;
    }
    
    .blog-card-heading {
        font-size: 19px;
        margin-bottom: 10px;
    }
    
    .blog-card-description {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .blog-card-btn {
        padding: 9px 20px;
        font-size: 13px;
    }
}

/* Extra Small Mobile (below 400px) */
@media (max-width: 399px) {
    .blog-cards-section {
        padding: 25px 3%;
    }
    
    .blog-cards-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .blog-card-image-wrapper {
        height: 180px;
    }
    
    .blog-card-content {
        padding: 18px 15px;
    }
    
    .blog-card-heading {
        font-size: 17px;
    }
    
    .blog-card-description {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .blog-card-btn {
        padding: 8px 18px;
        font-size: 12px;
    }
}

/* Landscape Mobile Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .blog-cards-section {
        /* padding: 30px 3%; */
    }
    
    .blog-cards-title {
        font-size: 26px;
        /* margin-bottom: 25px; */
    }
    
    .blog-card-image-wrapper {
        height: 150px;
    }
    
    .blog-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

