/* =========================================
   ROOT & RESET
========================================= */

:root {
    --primary: #172033;
    --secondary: #c32023;
    --white: #ffffff;
    --black: #111111;
    --text: #555555;
    --light: #f5f8f4;
    --border: #e5e8e5;
    --shadow: 0 10px 35px rgba(3, 63, 45, 0.10);
    --radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}

button {
    font-family: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}


/* =========================================
   NAVBAR
========================================= */




/* =========================================
   NOIDA HERO SECTION
========================================= */

.location-hero {
    width: 100%;
    background: linear-gradient(
        135deg,
        #f4f9ef 0%,
        #ffffff 55%,
        #eef8df 100%
    );
    padding: 55px 0 85px;
    overflow: hidden;
}


/* Container */

.location-hero .container {
    width: min(1180px, 92%);
    margin: 0 auto;
}


/* Breadcrumb */

.location-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #777;
}

.location-hero .breadcrumb a {
    color: #172033;
    font-weight: 600;
}


/* Hero Grid */

.location-hero .hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    min-height: auto;
    gap: 70px;
}


/* Hero Content */

.location-hero .hero-content {
    max-width: 650px;
    display: block;
}


/* Small Label */

.location-hero .section-label {
    display: inline-block;

    background: #c32023;
    color: #172033;

    padding: 7px 15px;
    border-radius: 30px;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    margin-bottom: 18px;
}


/* Main Heading */

.location-hero .hero-content h1 {
    margin: 0 0 24px;

    color: #172033;

    font-size: clamp(42px, 5vw, 44px);
    line-height: 1.08;

    font-weight: 800;
    letter-spacing: -1.5px;
}

.location-hero .hero-content h1 span {
    display: inline;
    color: #c32023;
}


/* Paragraph */

.location-hero .hero-content > p {
    max-width: 590px;

    margin: 0 0 30px;

    color: #555;

    font-size: 15px;
    line-height: 1.8;
}


/* Buttons */

.location-hero .hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-bottom: 30px;
}

.location-hero .hero-buttons .btn-primary,
.location-hero .hero-buttons .btn-secondary {
    min-height: 48px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border-radius: 8px;

    font-size: 15px;
    font-weight: 700;
}


/* Primary Button */

.location-hero .hero-buttons .btn-primary {
    background: #172033;
    color: #ffffff;

    border: 1px solid #172033;
}

.location-hero .hero-buttons .btn-primary:hover {
    background: #075a41;
}


/* Secondary Button */

.location-hero .hero-buttons .btn-secondary {
    background: #ffffff;
    color: #172033;

    border: 1px solid #d8ded8;
}

.location-hero .hero-buttons .btn-secondary:hover {
    background: #c32023;
    border-color: #c32023;
}


/* Hero Features */

.location-hero .hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 25px;
}

.location-hero .hero-features div {
    display: flex;
    align-items: center;

    color: #172033;

    font-size: 15px;
    font-weight: 600;
}

.location-hero .hero-features i {
    color: #c32023;
    font-size: 14px;

    margin-right: 7px;
}


/* =========================================
   HERO IMAGE
========================================= */

.location-hero .hero-image {
    width: 100%;

    position: relative;

    overflow: hidden;

    border-radius: 24px;

    background: #ffffff;

    box-shadow:
        0 20px 55px rgba(3, 63, 45, 0.13);
}

.location-hero .hero-image img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    display: block;
    object-fit: cover;
    object-position: center;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .location-hero {
        padding: 45px 0 70px;
    }

    .location-hero .hero-grid {
        grid-template-columns: 1fr 0.9fr;
        gap: 40px;
    }

    .location-hero .hero-content h1 {
        font-size: 46px;
    }

    .location-hero .hero-image {
        height: 400px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .location-hero {
        padding: 30px 0 60px;
    }

    .location-hero .breadcrumb {
        margin-bottom: 30px;
    }

    .location-hero .hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .location-hero .hero-content {
        max-width: 100%;
    }

    .location-hero .hero-content h1 {
        font-size: 40px;
        line-height: 1.1;
    }

    .location-hero .hero-content > p {
        font-size: 14px;
    }

    .location-hero .hero-image {
        height: 350px;
        order: -1;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 500px) {

    .location-hero .hero-content h1 {
        font-size: 34px;
    }

    .location-hero .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .location-hero .hero-buttons .btn-primary,
    .location-hero .hero-buttons .btn-secondary {
        width: 100%;
    }

    .location-hero .hero-features {
        flex-direction: column;
        gap: 10px;
    }

    .location-hero .hero-image {
        height: 280px;
        border-radius: 18px;
    }

}

/* =========================================
   INTRO
========================================= */

.intro-section {
    padding: 90px 0;
    background: var(--white);
}

.two-column {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.intro-image {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.intro-image img {
    height: 480px;
    object-fit: cover;
}

.intro-content h2 {
    color: var(--primary);
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.2;
    margin-bottom: 20px;
}

.intro-content p {
    margin-bottom: 15px;
    font-size: 14px;
}

.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin-top: 25px;
}

.check-list div {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
}

.check-list i {
    color: #c32023;
    margin-right: 7px;
}


/* =========================================
   SECTION HEADING
========================================= */

.section-heading {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading h2 {
    color: var(--primary);
    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-heading p {
    font-size: 14px;
}


/* =========================================
   SERVICES
========================================= */

.services-section {
    padding: 90px 0;
    background: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    padding: 28px 22px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: var(--secondary);
}

.services-section .service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: var(--secondary);
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 9px;
}

.service-card p {
    font-size: 15px;
    margin-bottom: 8px;
}

.service-card a {
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
}

.service-card a i {
    margin-left: 5px;
    transition: 0.3s ease;
}

.service-card a:hover i {
    margin-left: 9px;
}


/* =========================================
   AREAS
========================================= */

.areas-section {
    padding: 90px 0;
    background: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.area-card {
    padding: 25px 20px;
    border: 1px solid var(--border);
    border-radius: 14px;
    text-align: center;
    transition: 0.3s ease;
}

.area-card:hover {
    border-color: var(--secondary);
    background: #f7fbea;
    transform: translateY(-4px);
}

.area-card i {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--primary);
}

.area-card h3 {
    color: var(--primary);
    font-size: 14px;
}


/* =========================================
   WHY CHOOSE US
========================================= */

.why-section {
    padding: 90px 0;
    background: var(--light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    background: var(--white);
    padding: 30px 23px;
    text-align: center;
    display: block;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: 0.3s ease;
}

d:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.why-card > i {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    background: var(--secondary);
    color: var(--primary);
    font-size: 21px;
}

.why-card h3 {
    color: var(--primary);
    font-size: 17px;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 13px;
}


/* =========================================
   FAQ
========================================= */

.faq-section {
    padding: 90px 0;
    background: var(--white);
}

.faq-container {
    max-width: 850px;
    margin: auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: 0;
    background: var(--white);
    color: var(--primary);
    padding: 10px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}

.faq-question i {
    color: #c32023;
    transition: 0.3s ease;
}

.faq-item.active .faq-question {
    background: #f6faef;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 22px 20px;
    font-size: 13px;
}


/* =========================================
   CTA
========================================= */

.cta-section {
    padding: 80px 0;
    background: var(--primary);
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: #07523c;
    border: 1px solid rgba(199, 242, 104, 0.18);
    padding: 45px;
    border-radius: 22px;
}

.cta-box .section-label {
    color: var(--secondary);
}

.cta-box h2 {
    color: var(--white);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
    margin-bottom: 14px;
}

.cta-box p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cta-buttons .btn-primary {
    background: var(--secondary);
    color: var(--primary);
}

.cta-buttons .btn-primary:hover {
    background: var(--white);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1ebc59;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    background: #022c20;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 65px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 45px;
    padding-bottom: 45px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 23px;
    margin-bottom: 17px;
}

.footer-logo span {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: var(--secondary);
    color: var(--primary);
    display: grid;
    place-items: center;
}

.footer-about p {
    max-width: 330px;
    font-size: 13px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 9px;
    margin-top: 20px;
}

.social-links a {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 13px;
    transition: 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--primary);
}

.footer h3 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 18px;
}

.footer-links a {
    display: block;
    font-size: 13px;
    margin-bottom: 10px;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 13px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--secondary);
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 11px;
}


/* =========================================
   RESPONSIVE - TABLET
========================================= */

@media (max-width: 1000px) {

    .nav-menu {
        gap: 14px;
    }

    .nav-btn {
        display: none;
    }

    .hero-grid {
        gap: 40px;
    }

    .services-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   RESPONSIVE - MOBILE
========================================= */

@media (max-width: 768px) {

    .nav-container {
        min-height: 68px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--white);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 15px 5%;
        border-top: 1px solid var(--border);
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu > a,
    .dropdown-btn {
        padding: 13px 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        border: 0;
        padding: 0 0 5px 15px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hero-grid,
    .two-column {
        grid-template-columns: 1fr;
    }

    .location-hero {
        padding: 30px 0 60px;
    }

    .breadcrumb {
        margin-bottom: 30px;
    }

    .hero-image {
        height: 340px;
        order: -1;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .intro-section,
    .services-section,
    .areas-section,
    .why-section,
    .faq-section {
        padding: 65px 0;
    }

    .intro-image img {
        height: 340px;
    }

    .services-grid,
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .areas-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px 25px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 520px) {

    .logo {
        font-size: 19px;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .hero-features {
        display: block;
    }

    .hero-features div {
        margin-bottom: 8px;
    }

    .services-grid,
    .why-grid,
    .areas-grid,
    .check-list {
        grid-template-columns: 1fr;
    }

    .section-heading h2,
    .intro-content h2 {
        font-size: 30px;
    }

    .cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cta-buttons a {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 18px 0;
    }
.location-hero .hero-grid{
    padding-bottom: 0;
}
}