/* =========================================================
   IT WEB FUTURE
   GHAZIABAD LOCATION PAGE
   COLOR SYSTEM — LOGO INSPIRED
========================================================= */

:root {
    --ghz-navy: #1a1a4d;
    --ghz-navy-soft: #2b2b6b;
    --ghz-red: #f20d2f;
    --ghz-red-dark: #c90827;

    --ghz-white: #ffffff;
    --ghz-bg: #f5f6f9;
    --ghz-bg-soft: #eef0f5;

    --ghz-text: #232338;
    --ghz-muted: #6b7280;

    --ghz-border: #e3e5ec;

    --ghz-font: "Poppins", sans-serif;
}
/* =========================================================
   IT WEB FUTURE
   LOCATION INTRO + IMAGE + CONTACT FORM
========================================================= */

:root {
    --iwf-navy: #1a1a4d;
    --iwf-navy-soft: #2b2b6b;
    --iwf-blue: #2e5bff;
    --iwf-red: #ff1234;
    --iwf-light: #f6f8fc;
    --iwf-border: #e5e8f0;
    --iwf-text: #232338;
    --iwf-muted: #6b7280;
}


/* =========================================================
   MAIN SECTION
========================================================= */

.iwf-location-intro {
    position: relative;
    padding: 85px 20px;
   
    overflow: hidden;
}


/* Decorative background */

.iwf-location-intro::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px dashed rgba(26, 26, 77, 0.10);
    border-radius: 50%;
    top: -180px;
    right: -160px;
    animation: iwfLocationRotate 25s linear infinite;
}

.iwf-location-intro::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px dashed rgba(46, 91, 255, 0.12);
    border-radius: 50%;
    bottom: -140px;
    left: -120px;
    animation: iwfLocationRotate 20s linear infinite reverse;
}


@keyframes iwfLocationRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   CONTAINER
========================================================= */

.iwf-location-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}


/* =========================================================
   8 + 4 GRID
========================================================= */

.iwf-location-grid {
    display: grid;
    grid-template-columns: minmax(0, 8fr) minmax(330px, 4fr);
    gap: 30px;
    align-items: stretch;
}


/* =========================================================
   LEFT IMAGE CARD
========================================================= */

.iwf-location-visual {
    min-width: 0;
}


/* =========================================================
   IMAGE
========================================================= */

.iwf-location-image-wrap {
    position: relative;
    height: 405px;
    border-radius: 19px;
    overflow: hidden;
}


.iwf-location-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition:
        transform 0.7s ease;
}


.iwf-location-image-card:hover
.iwf-location-image-wrap img {
    transform: scale(1.045);
}


/* Image overlay */

.iwf-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(8, 8, 35, 0.75),
            rgba(8, 8, 35, 0.08) 60%,
            transparent
        );

    pointer-events: none;
}


/* =========================================================
   IMAGE BADGE
========================================================= */

.iwf-image-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;

    display: flex;
    align-items: center;
    gap: 11px;

    padding: 11px 15px;

    background: rgba(255, 255, 255, 0.95);
    border-radius: 13px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.18);

    color: var(--iwf-navy);
}


.iwf-image-badge > i {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: var(--iwf-navy);
    color: #ffffff;

    font-size: 18px;
}


.iwf-image-badge span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}


.iwf-image-badge strong {
    font-size: 13px;
    font-weight: 800;
}


.iwf-image-badge small {
    font-size: 10px;
    color: var(--iwf-muted);
}


/* =========================================================
   IMAGE BELOW CONTENT
========================================================= */

.iwf-location-image-content {
    padding: 25px 8px 5px;
}


.iwf-small-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--ghz-red);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}


.iwf-small-label i {
    font-size: 13px;
}


.iwf-location-image-content h2 {
    margin: 10px 0 12px;

    color: var(--iwf-navy);

    font-size: 28px;
    line-height: 1.3;
    font-weight: 800;
}


.iwf-location-image-content h2 strong {
    color: var(--ghz-red);
}


.iwf-location-image-content p {
    margin: 0 0 12px;

    color: var(--iwf-muted);

    font-size: 14px;
    line-height: 1.8;
}


.iwf-location-image-content p strong {
    color: var(--iwf-navy);
    font-weight: 700;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .iwf-location-grid {
        grid-template-columns: 1fr;
    }

    .iwf-location-image-wrap {
        height: 320px;
    }

    .iwf-location-form-column {
        max-width: 650px;
        width: 100%;
        margin: 0 auto;
    }

}


@media (max-width: 650px) {

    .iwf-location-intro {
        padding: 55px 14px;
    }

    .iwf-location-image-card {
        padding: 12px;
        border-radius: 19px;
    }

    .iwf-location-image-wrap {
        height: 220px;
        border-radius: 14px;
    }

    .iwf-location-image-content {
        padding: 20px 5px 5px;
    }

    .iwf-location-image-content h2 {
        font-size: 23px;
    }

    .iwf-location-image-content p {
        font-size: 13px;
    }


}


@media (max-width: 430px) {

    .iwf-location-image-wrap {
        height: 190px;
    }

    .iwf-image-badge {
        left: 12px;
        bottom: 12px;
        padding: 8px 10px;
    }

    .iwf-image-badge > i {
        width: 34px;
        height: 34px;
    }

}

/* =========================================================
   BASE
========================================================= */

.ghz-page {
    margin: 0;
    padding: 0;
    font-family: var(--ghz-font);
    color: var(--ghz-text);
    overflow: hidden;
}

.ghz-page *,
.ghz-page *::before,
.ghz-page *::after {
    box-sizing: border-box;
}

.ghz-container {
    width: min(1500px, calc(100% - 40px));
    margin: 0 auto;
}

/* =========================================================
   HERO
========================================================= */

.ghz-hero {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(242, 13, 47, 0.20),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #09092a,
            #1a1a4d 55%,
            #26266a
        );

    color: #fff;
}


.ghz-hero-bg-grid {
    position: absolute;
    inset: 0;

    opacity: 0.09;

    background-image:
        linear-gradient(
            rgba(255,255,255,.5) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.5) 1px,
            transparent 1px
        );

    background-size: 45px 45px;

    animation: ghzGridMove 18s linear infinite;
}


@keyframes ghzGridMove {

    from {
        transform: translate(0,0);
    }

    to {
        transform: translate(45px,45px);
    }
}


.ghz-hero-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}


.ghz-circle-one {
    width: 430px;
    height: 430px;

    right: -180px;
    top: -200px;

    border: 1px solid rgba(242,13,47,.30);

    box-shadow:
        0 0 100px rgba(242,13,47,.14);

    animation: ghzFloat 7s ease-in-out infinite;
}


.ghz-circle-two {
    width: 280px;
    height: 280px;

    left: -140px;
    bottom: -170px;

    border: 1px solid rgba(255,255,255,.12);

    animation: ghzFloat 9s ease-in-out infinite reverse;
}


@keyframes ghzFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}


.ghz-floating-shape {
    position: absolute;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--ghz-red);

    box-shadow:
        0 0 0 8px rgba(242,13,47,.08),
        0 0 25px rgba(242,13,47,.5);

    animation: ghzDotFloat 5s ease-in-out infinite;
}


.ghz-shape-one {
    right: 18%;
    top: 28%;
}


.ghz-shape-two {
    left: 16%;
    bottom: 25%;
    animation-delay: 1.5s;
}


@keyframes ghzDotFloat {

    0%,
    100% {
        transform: translateY(0);
        opacity: .65;
    }

    50% {
        transform: translateY(-25px);
        opacity: 1;
    }
}


.ghz-hero-content {
    position: relative;
    z-index: 2;

    text-align: center;

    padding: 10px 0 20px;
}





/* H1 */

.ghz-hero h1 {
    max-width: 1050px;

    margin: 22px auto 15px;

    color: #fff;

    font-size: 40px;
    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -.7px;
}


.ghz-hero-text {
    max-width: 850px;

    margin: 0 auto;

    color: #dfe1f0;

    font-size: 16px;

    line-height: 1.8;
}


.ghz-hero-text strong {
    color: #fff;
}


/* Buttons */

.ghz-hero-actions {
    display: flex;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 30px;
}


.ghz-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 48px;

    padding: 0 20px;

    border-radius: 10px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.ghz-btn-primary {
    background: var(--ghz-red);
    color: #fff;

    box-shadow:
        0 12px 30px rgba(242,13,47,.25);
}


.ghz-btn-primary:hover {
    transform: translateY(-3px);

    color: #fff;

    box-shadow:
        0 18px 40px rgba(242,13,47,.35);
}


.ghz-page-keyword {
    display: inline-flex;
    align-items: center;

    min-height: 48px;

    padding: 0 18px;

    border-radius: 10px;

    border: 1px solid rgba(255,255,255,.18);

    background: rgba(255,255,255,.06);

    color: #fff;

    font-size: 13px;
    font-weight: 600;

    backdrop-filter: blur(8px);
}


.ghz-hero-points {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 28px;
}


.ghz-hero-points span {
    display: flex;
    align-items: center;

    gap: 7px;

    color: #cfd2e6;

    font-size: 12px;
}


.ghz-hero-points i {
    color: var(--ghz-red);
}


/* =========================================================
   CONTENT
========================================================= */

.ghz-content-section {
    position: relative;

    padding: 0px 0 0 50px;

    /* background: var(--ghz-bg); */

    /* border-top: 1px solid var(--ghz-border); */
}


.ghz-content-box {
    max-width: 1500px;

    margin: auto;

    padding: 20px 55px 55px 0px;

    
}


.ghz-small-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--ghz-red);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.ghz-content-heading h2 {
    max-width: 100%;

    margin: 0;

    color: var(--ghz-navy);

    font-size: 34px;

    line-height: 1.3;

    font-weight: 800;
}


.ghz-heading-line {
    width: 75px;
    height: 4px;

    margin: 20px 0 30px;

    border-radius: 20px;

    background: var(--ghz-red);
}


.ghz-content-text {
    color: var(--ghz-text);

    font-size: 15px;

    line-height: 1.9;
}


.ghz-content-text p {
    margin: 0 0 22px;
}


.ghz-content-text strong {
    color: var(--ghz-navy);

    font-weight: 800;
}


.ghz-content-text h2 {
    margin: 42px 0 15px;

    color: var(--ghz-navy);

    font-size: 25px;

    line-height: 1.35;

    font-weight: 800;
}


.ghz-content-text h2::after {
    content: "";

    display: block;

    width: 45px;
    height: 3px;

    margin-top: 9px;

    background: var(--ghz-red);

    border-radius: 5px;
}


/* =========================================================
   SERVICES
========================================================= */

.ghz-services-section {
    padding: 90px 0;

    background: #fff;
}


.ghz-centered-heading {
    max-width: 750px;

    margin: 0 auto 45px;

    text-align: center;
}


.ghz-centered-heading > span {
    color: var(--ghz-red);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


.ghz-centered-heading h2 {
    margin: 10px 0;

    color: var(--ghz-navy);

    font-size: 32px;

    line-height: 1.3;

    font-weight: 800;
}


.ghz-centered-heading p {
    margin: 0;

    color: var(--ghz-muted);

    font-size: 14px;

    line-height: 1.8;
}


.ghz-service-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


.ghz-service-card {
    position: relative;

    min-height: 245px;

    padding: 28px;

    border-radius: 18px;

    border: 1px solid var(--ghz-border);

    background: #fff;

    overflow: hidden;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}


.ghz-service-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 0;
    height: 3px;

    background: var(--ghz-red);

    transition: width .35s ease;
}


.ghz-service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(242,13,47,.25);

    box-shadow:
        0 22px 50px rgba(26,26,77,.10);
}


.ghz-service-card:hover::before {
    width: 100%;
}


.ghz-service-icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    margin-bottom: 20px;

    border-radius: 13px;

    background: var(--ghz-navy);

    color: #fff;

    font-size: 21px;

    transition:
        background .3s ease,
        transform .3s ease;
}


.ghz-service-card:hover .ghz-service-icon {
    background: var(--ghz-red);

    transform: rotate(-5deg) scale(1.05);
}


.ghz-service-card h3 {
    margin: 0 0 10px;

    color: var(--ghz-navy);

    font-size: 17px;

    font-weight: 800;
}


.ghz-service-card p {
    margin: 0;

    color: var(--ghz-muted);

    font-size: 13px;

    line-height: 1.75;
}


.ghz-card-number {
    position: absolute;

    right: 18px;
    bottom: 10px;

    color: #eef0f5;

    font-size: 50px;

    line-height: 1;

    font-weight: 800;

    transition: color .3s ease;
}


.ghz-service-card:hover .ghz-card-number {
    color: rgba(242,13,47,.08);
}


/* =========================================================
   CTA
========================================================= */

.ghz-cta {
    position: relative;

    overflow: hidden;

    padding: 70px 0;

    background:
        linear-gradient(
            120deg,
            #0c0c32,
            var(--ghz-navy)
        );

    color: #fff;
}


.ghz-cta-glow {
    position: absolute;

    width: 350px;
    height: 350px;

    right: -150px;
    top: -180px;

    border-radius: 50%;

    border: 40px solid rgba(242,13,47,.08);

    animation: ghzCtaFloat 8s ease-in-out infinite;
}


@keyframes ghzCtaFloat {

    0%,
    100% {
        transform: translate(0,0);
    }

    50% {
        transform: translate(-20px,20px);
    }
}


.ghz-cta-inner {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;
}


.ghz-cta-inner > div {
    max-width: 850px;
}


.ghz-cta-inner span {
    color: #ff516b;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


.ghz-cta-inner h2 {
    margin: 10px 0;

    color: #fff;

    font-size: 32px;

    line-height: 1.3;
}


.ghz-cta-inner p {
    margin: 0;

    color: #cfd1df;

    font-size: 14px;

    line-height: 1.8;
}


.ghz-btn-light {
    flex-shrink: 0;

    background: #fff;

    color: var(--ghz-navy);

    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}


.ghz-btn-light:hover {
    color: var(--ghz-navy);

    transform: translateY(-4px);

    box-shadow: 0 18px 40px rgba(0,0,0,.25);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {


    .ghz-service-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }

}


@media (max-width: 850px) {



    .ghz-content-box {
        padding: 35px 25px;
    }

    .ghz-cta-inner {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 650px) {

    .ghz-container {
        width: min(
            100% - 28px,
            1500px
        );
    }

    .ghz-hero {
        min-height: 520px;
    }

    .ghz-hero-content {
        padding: 70px 0 75px;
    }

    .ghz-hero h1 {
        font-size: 40px;
    }

    .ghz-hero-text {
        font-size: 14px;
    }

    .ghz-page-keyword {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .ghz-content-section,
    .ghz-services-section {
        padding: 60px 0;
    }

    .ghz-content-heading h2 {
        font-size: 27px;
    }

    .ghz-content-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .ghz-service-grid {
        grid-template-columns: 1fr;
    }

    .ghz-centered-heading h2 {
        font-size: 27px;
    }

    .ghz-cta-inner h2 {
        font-size: 27px;
    }

}


@media (max-width: 430px) {

    .ghz-hero h1 {
        font-size: 34px;
    }

    .ghz-breadcrumb {
        font-size: 11px;
    }

    .ghz-hero-points {
        flex-direction: column;

        align-items: center;

        gap: 9px;
    }

}

/* =========================================================
   IT WEB FUTURE - GHaziabad FAQ
   GHZ COLOR THEME
========================================================= */

.iwf-location-faq {
    width: 100%;
    margin: 70px auto 0;
    padding: 70px 35px;
    background: var(--ghz-white);
    position: relative;
    overflow: hidden;
}

/* Decorative background */
.iwf-location-faq::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(26, 26, 77, 0.045);
    top: -120px;
    right: -80px;
    pointer-events: none;
}

.iwf-location-faq::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(242, 13, 47, 0.04);
    bottom: -90px;
    left: -70px;
    pointer-events: none;
}


/* =========================================================
   FAQ HEADING
========================================================= */

.iwf-location-heading {
    max-width: 850px;
    margin: 0 auto 42px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.iwf-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 50px;
    background: rgba(26, 26, 77, 0.06);
    color: var(--ghz-navy);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.iwf-section-label i {
    color: var(--ghz-red);
    font-size: 14px;
}

.iwf-location-heading h2 {
    margin: 15px 0 10px;
    color: var(--ghz-navy);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.2;
    font-weight: 800;
}

.iwf-location-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--ghz-muted);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   FAQ LIST
========================================================= */

.iwf-faq-list {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 13px;
    position: relative;
    z-index: 2;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.iwf-faq-item {
    background: var(--ghz-white);
    border: 1px solid var(--ghz-border);
    border-radius: 14px;
    overflow: hidden;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}

.iwf-faq-item:hover {
    border-color: rgba(26, 26, 77, 0.25);
    box-shadow: 0 10px 30px rgba(26, 26, 77, 0.08);
    transform: translateY(-2px);
}


/* =========================================================
   FAQ QUESTION
========================================================= */

.iwf-faq-question {
    width: 100%;
    border: 0;
    outline: 0;
    background: var(--ghz-white);
    color: var(--ghz-text);
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    font-family: var(--ghz-font);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    cursor: pointer;
    transition:
        background 0.3s ease,
        color 0.3s ease;
}

/* FAQ QUESTION HEADING */
.iwf-faq-question h3 {
    flex: 1;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.iwf-faq-question i {
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ghz-bg-soft);
    color: var(--ghz-navy);
    font-size: 13px;
    transition:
        transform 0.35s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.iwf-faq-question:hover {
    color: var(--ghz-navy);
}

.iwf-faq-question:hover i {
    background: var(--ghz-red);
    color: var(--ghz-white);
}


/* =========================================================
   ACTIVE QUESTION
========================================================= */

.iwf-faq-item.active {
    border-color: rgba(242, 13, 47, 0.28);
    box-shadow: 0 12px 35px rgba(26, 26, 77, 0.10);
}

.iwf-faq-item.active .iwf-faq-question {
    color: var(--ghz-navy);
    background: var(--ghz-bg);
}

.iwf-faq-item.active .iwf-faq-question i {
    transform: rotate(45deg);
    background: var(--ghz-red);
    color: var(--ghz-white);
}


/* =========================================================
   FAQ ANSWER
========================================================= */

.iwf-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.iwf-faq-answer p {
    min-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0 22px;
    color: var(--ghz-muted);
    font-family: var(--ghz-font);
    font-size: 14px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(-8px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        padding 0.4s ease;
}

.iwf-faq-item.active .iwf-faq-answer {
    grid-template-rows: 1fr;
}

.iwf-faq-item.active .iwf-faq-answer p {
    padding: 0 22px 21px;
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   HIDDEN FAQ
========================================================= */

.iwf-faq-hidden {
    display: none;
}

.iwf-faq-hidden.iwf-faq-show {
    display: block;
    animation: iwfFaqReveal 0.5s ease both;
}

@keyframes iwfFaqReveal {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   VIEW MORE BUTTON
========================================================= */

.iwf-faq-more {
    margin: 28px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 190px;
    padding: 13px 20px;
    border: 1px solid var(--ghz-border);
    border-radius: 50px;
    background: var(--ghz-white);
    color: var(--ghz-navy);
    font-family: var(--ghz-font);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.iwf-faq-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.iwf-faq-more:hover {
    background: var(--ghz-navy);
    border-color: var(--ghz-navy);
    color: var(--ghz-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 26, 77, 0.18);
}

.iwf-faq-more:hover i {
    transform: translateY(3px);
}


/* =========================================================
   VIEW LESS
========================================================= */

.iwf-faq-more.active {
    background: var(--ghz-bg);
}

.iwf-faq-more.active i {
    transform: rotate(180deg);
}

.iwf-faq-more.active:hover {
    background: var(--ghz-red);
    border-color: var(--ghz-red);
    color: var(--ghz-white);
}

.iwf-faq-more.active:hover i {
    transform: rotate(180deg) translateY(3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .iwf-location-faq {
        margin-top: 50px;
        padding: 55px 20px;
    }

    .iwf-location-heading {
        margin-bottom: 32px;
    }

    .iwf-location-heading h2 {
        font-size: 30px;
    }

    .iwf-location-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .iwf-faq-list {
        gap: 10px;
    }

    .iwf-faq-question {
        padding: 17px 16px;
        font-size: 14px;
        gap: 12px;
    }

    .iwf-faq-question i {
        width: 31px;
        height: 31px;
        min-width: 31px;
    }

    .iwf-faq-answer p {
        padding-left: 16px;
        padding-right: 16px;
        font-size: 13px;
    }

    .iwf-faq-item.active .iwf-faq-answer p {
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 17px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .iwf-location-faq {
        padding: 45px 13px;
    }

    .iwf-section-label {
        font-size: 10px;
        padding: 7px 12px;
    }

    .iwf-location-heading h2 {
        font-size: 25px;
    }

    .iwf-location-heading p {
        font-size: 13px;
    }

    .iwf-faq-question {
        padding: 15px 13px;
        font-size: 13px;
    }

    .iwf-faq-question i {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 11px;
    }

    .iwf-faq-answer p {
        font-size: 12.5px;
        line-height: 1.7;
    }

    .iwf-faq-more {
        width: 100%;
        max-width: 220px;
        padding: 12px 15px;
        font-size: 12px;
    }
}


/* =========================================================
   GHaziabad LOCATION PAGE
   IMAGE + FORM + SEO = SINGLE CONTINUOUS BLOCK
========================================================= */


/* =========================================================
   MAIN LOCATION AREA
========================================================= */

.iwf-location-intro {
    position: relative;
    padding: 50px 20px 0 !important;
    margin: 0 !important;

    /* background: var(--ghz-bg, #f5f6f9) !important; */
}


/* Main width */

.iwf-location-intro .iwf-location-container {
    max-width: 1500px;
    margin: 0 auto;
}


/* =========================================================
   IMAGE + FORM
========================================================= */


/* =========================================================
   IMAGE CARD
========================================================= */

.iwf-location-image-card {
    height: 100%;
    margin: 0 !important;

    padding: 18px 18px 0px 18px;

    background: #fff;

}


/* =========================================================
   IMAGE HEIGHT
========================================================= */

.iwf-location-image-wrap {
    height: 550px !important;

    position: relative;

    overflow: hidden;

    border-radius: 19px;

    background:
        linear-gradient(
            135deg,
            var(--iwf-navy),
            #101033
        );
}


/* Image */

.iwf-location-image-wrap img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* =========================================================
   SEO CONTENT START
========================================================= */

.ghz-content-heading {

    margin-top: 0 !important;
    padding-top: 0 !important;
}


/* Heading */

.ghz-content-heading h2 {

    margin-top: 0 !important;
}


/* =========================================================
   REMOVE ALL GAP BETWEEN
   IMAGE/FORM AND SEO
========================================================= */

.iwf-location-intro {
    padding-bottom: 0 !important;
}



.iwf-location-image-card,
.iwf-location-form-card {
    margin-bottom: 0 !important;
}

.ghz-content-box {
    margin-top: 0 !important;
}



/* =========================================================
   DESKTOP VISUAL
========================================================= */

@media (min-width: 1101px) {

    .ghz-content-box {

        border-radius: 0 0 25px 25px !important;
        padding: 0px 8px 25px 5px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .iwf-location-intro {

        padding: 60px 20px 0 !important;
    }


    .iwf-location-grid {

        grid-template-columns: 1fr;

        gap: 20px;
    }


    .iwf-location-image-wrap {

        height: 390px !important;
    }


    .iwf-location-form-column {

        width: 100%;

        max-width: 700px;

        margin: 0 auto !important;
    }


    .iwf-location-image-card {

        border-radius: 22px;
    }



    .ghz-content-box {

        padding: 45px 35px 50px;

        border-radius: 0 0 22px 22px !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .iwf-location-intro {

        padding: 50px 14px 0 !important;
    }


    .iwf-location-grid {

        gap: 15px;
    }


    /* Image card */

    .iwf-location-image-card {

        padding: 12px;

        border-radius: 19px 19px 0 0;
    }


    /* Bigger image */

    .iwf-location-image-wrap {

        height: 250px !important;

        border-radius: 14px;
    }


    .ghz-content-box {

        padding: 35px 20px 40px;

      
    }


    .ghz-content-heading h2 {

        font-size: 27px;
    }


    .ghz-content-text {

        font-size: 14px;

        line-height: 1.8;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .iwf-location-intro {

        padding: 45px 12px 0 !important;
    }


    .iwf-location-image-wrap {

        height: 225px !important;
    }

    .ghz-content-box {

        padding: 30px 17px 35px;
    }


    .ghz-content-heading h2 {

        font-size: 24px;
    }
}



