/* ==========================================================
   HIGH TECH GROUP
   SOUTH DELHI LANDING PAGE
==========================================================*/
/* ==========================================================
   ROOT VARIABLES
==========================================================*/
:root {
    /* Brand Colors */
    --primary: #b40000;
    --primary-dark: #8d0000;
    --primary-light: #ffeaea;
    --secondary: #222222;
    --secondary-light: #555555;
    --white: #ffffff;
    --off-white: #fafafa;
    --text-dark: #242424;
    --text-light: #6b7280;
    --border: #ececec;
    /* Radius */
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    /* Shadows */
    --shadow-sm: 0 6px 18px rgba(0, 0, 0, .06);
    --shadow-md: 0 14px 35px rgba(0, 0, 0, .08);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, .12);
    /* Transition */
    --transition: .35s ease;
}

/* ==========================================================
   RESET
==========================================================*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.8;
}

/* ==========================================================
   GLOBAL
==========================================================*/
section {
    position: relative;
    padding: 40px 0;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    position: relative;
    z-index: 2;
}

/* ==========================================================
   TYPOGRAPHY
==========================================================*/
h1,
h2,
h3,
h4,
h5 {
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.6rem;
}

h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.45rem;
}

h4 {
    font-size: 1.15rem;
}

p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 18px;
}

/* ==========================================================
   SECTION TAG
==========================================================*/
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-tag::before {
    content: "";
    width: 55px;
    height: 2px;
    background: var(--primary);
}

/* ==========================================================
   SECTION TITLE
==========================================================*/
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 18px;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 75px;
    height: 4px;
    border-radius: 30px;
    background: var(--primary);
}

/* ==========================================================
   SECTION TEXT
==========================================================*/
.section-text {
    max-width: 760px;
    margin: auto;
}

/* ==========================================================
   PREMIUM BUTTON
==========================================================*/
.sd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg,
            var(--primary),
            var(--primary-dark));
    color: var(--white);
    padding: 16px 38px;
    border-radius: 60px;
    font-weight: 600;
    letter-spacing: .3px;
    box-shadow:
        0 12px 30px rgba(180, 0, 0, .20);
    transition: var(--transition);
}

.sd-btn:hover {
    color: #fff;
    transform:
        translateY(-5px);
    box-shadow:
        0 22px 40px rgba(180, 0, 0, .30);
}

.sd-btn i {
    font-size: 1rem;
}

/* ==========================================================
   IMAGE BOX
==========================================================*/
.image-box {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.image-box img {
    width: 100%;
    transition: .7s ease;
}

.image-box:hover img {
    transform: scale(1.08);
}

.image-box::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    border: 5px solid rgba(180, 0, 0, .08);
    bottom: -25px;
    right: -25px;
    border-radius: 24px;
    z-index: -1;
}

/* ==========================================================
   CONTENT
==========================================================*/
.content-section {
    overflow: hidden;
}

.content-content {
    padding: 20px 10px;
}

/* ==========================================================
   HIGHLIGHT BOX
==========================================================*/
.highlight-box {
    margin-top: 35px;
    padding: 26px;
    border-left: 5px solid var(--primary);
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
}

.highlight-box p {
    margin: 0;
}

/* ==========================================================
   DECORATIVE SHAPES
==========================================================*/
.decor-circle {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(180, 0, 0, .03);
    filter: blur(4px);
    z-index: 0;
}

.decor-circle.left {
    top: 40px;
    left: -90px;
}

.decor-circle.right {
    right: -90px;
    bottom: 40px;
}

/* ==========================================================
   SIMPLE ANIMATIONS
==========================================================*/
.float {
    animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: .8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================================
   HERO
==========================================================*/
.location-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

.location-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0, 0, 0, .62),
            rgba(0, 0, 0, .62)),
        url("../image/south-delhi/south delhi (3).jpeg");
    background-size: cover;
    background-position: center;
    animation: heroZoom 18s linear infinite alternate;
    z-index: -2;
}

.location-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(180, 0, 0, .22),
            rgba(0, 0, 0, .10));
    z-index: -1;
}

/* ==========================================================
   HERO CONTENT
==========================================================*/
.location-hero .container {
    position: relative;
    z-index: 2;
}

.location-hero .row {
    align-items: center;
}

.location-hero .hero-content {
    max-width: 760px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .10);
    padding: 60px;
    border-radius: 28px;
    box-shadow:
        0 25px 60px rgba(0, 0, 0, .18);
}

.location-hero .section-tag {
    color: #fff;
}

.location-hero .section-tag::before {
    background: #fff;
}

.location-hero h1 {
    color: #fff;
    font-size: 4rem;
    margin-bottom: 25px;
}

.location-hero p {
    color: rgba(255, 255, 255, .90);
    max-width: 620px;
    margin-bottom: 35px;
    font-size: 1.08rem;
}

/* ==========================================================
   HERO BUTTON
==========================================================*/
.location-hero .sd-btn {
    margin-top: 10px;
}

.location-hero .sd-btn:hover {
    transform:
        translateY(-6px) scale(1.03);
}

/* ==========================================================
   HERO SCROLL
==========================================================*/
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 56px;
    border: 2px solid rgba(255, 255, 255, .60);
    border-radius: 50px;
}

.hero-scroll::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 12px;
    transform: translateX(-50%);
    width: 6px;
    height: 12px;
    border-radius: 50px;
    background: #fff;
    animation: scrollDown 2s infinite;
}

/* ==========================================================
   TRUST STRIP
==========================================================*/
.trust-strip {
    position: relative;
    margin-top: -70px;
    background: #fff;
    border-radius: 26px;
    box-shadow: var(--shadow-lg);
    padding: 45px 30px;
    z-index: 20;
}

.trust-item {
    text-align: center;
    padding: 20px;
    transition: var(--transition);
    border-radius: 20px;
}

.trust-item:hover {
    transform: translateY(-10px);
    background: var(--off-white);
}

.trust-item i {
    width: 82px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.trust-item:hover i {
    background: var(--primary);
    color: #fff;
    transform: rotate(-10deg);
}

.trust-item h5 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.trust-item p {
    margin: 0;
    font-size: .95rem;
}

/* ==========================================================
   HERO ANIMATION
==========================================================*/
@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.12);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform:
            translate(-50%, 0);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform:
            translate(-50%, 18px);
    }
}

/* ==========================================================
   RESPONSIVE
==========================================================*/
@media(max-width:1200px) {
    .location-hero h1 {
        font-size: 3.4rem;
    }
}

@media(max-width:992px) {
    .location-hero {
        min-height: 780px;
        text-align: center;
    }

    .location-hero .hero-content {
        padding: 45px;
        margin: auto;
    }

    .location-hero p {
        margin: auto auto 35px;
    }

    .trust-strip {
        margin-top: 40px;
    }
}

@media(max-width:768px) {
    .location-hero {
        min-height: 680px;
    }

    .location-hero h1 {
        font-size: 2.6rem;
    }

    .location-hero .hero-content {
        padding: 35px 28px;
        border-radius: 22px;
    }

    .hero-scroll {
        display: none;
    }
}

@media(max-width:576px) {
    .location-hero h1 {
        font-size: 2.1rem;
    }

    .location-hero p {
        font-size: .96rem;
    }

    .trust-item {
        margin-bottom: 20px;
    }
}


/* ==========================================================
   CONTENT SECTION
==========================================================*/
.content-section {
    position: relative;
    overflow: hidden;
}

.content-section:nth-child(even) {
    background: #fcfcfc;
}

.content-content {
    padding: 15px 30px;
}

.content-content p {
    margin-bottom: 20px;
}

/* ==========================================================
   IMAGE BOX
==========================================================*/
.image-box {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .12);
}

.image-box img {
    width: 100%;
    transition: .9s ease;
}

.image-box:hover img {
    transform: scale(1.08);
}

/* Decorative Border */
.image-box::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 18px;
    z-index: 2;
    pointer-events: none;
}

/* Decorative Shape */
.image-box::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border: 6px solid rgba(180, 0, 0, .08);
    border-radius: 26px;
    bottom: -28px;
    right: -28px;
    z-index: -1;
}

/* ==========================================================
   FEATURE GRID
==========================================================*/
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    position: relative;
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, .06);
    transition: var(--transition);
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background:
        linear-gradient(90deg,
            var(--primary),
            #ff6666);
}

.feature-card:hover {
    transform:
        translateY(-10px);
    box-shadow:
        0 22px 45px rgba(0, 0, 0, .10);
}

/* ==========================================================
   FEATURE ICON
==========================================================*/
.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(-12deg);
}

/* ==========================================================
   FEATURE CONTENT
==========================================================*/
.feature-card h4 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.feature-card p {
    margin: 0;
}

/* ==========================================================
   HIGHLIGHT BOX
==========================================================*/
.highlight-box {
    position: relative;
    margin-top: 40px;
    background: #fff;
    border-radius: 18px;
    padding: 28px 32px;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, .06);
    border-left: 5px solid var(--primary);
}

.highlight-box::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    background:
        radial-gradient(rgba(180, 0, 0, .12),
            transparent);
}

.highlight-box p {
    margin: 0;
    font-weight: 500;
}

/* ==========================================================
   DECORATIVE SHAPES
==========================================================*/
.decor-circle {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(180, 0, 0, .03);
    filter: blur(2px);
    z-index: 0;
}

.decor-circle.left {
    left: -80px;
    top: 80px;
}

.decor-circle.right {
    right: -80px;
    bottom: 60px;
}

/* ==========================================================
   CONTENT ANIMATION
==========================================================*/
.content-content>* {
    transition: .45s ease;
}

.content-section:hover .section-title {
    color: var(--primary);
}

.content-section:hover .section-title::after {
    width: 110px;
}

/* ==========================================================
   MOBILE
==========================================================*/
@media(max-width:992px) {
    .content-content {
        padding: 0;
        margin-top: 45px;
    }
}

@media(max-width:768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .content-content {
        text-align: center;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .highlight-box {
        text-align: left;
    }
}

@media(max-width:576px) {
    .image-box {
        border-radius: 18px;
    }

    .feature-card {
        padding: 24px;
    }
}


/* ==========================================================
   CONTENT SECTION
==========================================================*/
.content-section {
    position: relative;
    overflow: hidden;
}

.content-section:nth-child(even) {
    background: #fcfcfc;
}

.content-content {
    padding: 15px 30px;
}

.content-content p {
    margin-bottom: 20px;
}

/* ==========================================================
   IMAGE BOX
==========================================================*/
.image-box {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .12);
}

.image-box img {
    width: 100%;
    transition: .9s ease;
}

.image-box:hover img {
    transform: scale(1.08);
}

/* Decorative Border */
.image-box::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 18px;
    z-index: 2;
    pointer-events: none;
}

/* Decorative Shape */
.image-box::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    border: 6px solid rgba(180, 0, 0, .08);
    border-radius: 26px;
    bottom: -28px;
    right: -28px;
    z-index: -1;
}

/* ==========================================================
   FEATURE GRID
==========================================================*/
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    position: relative;
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, .06);
    transition: var(--transition);
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background:
        linear-gradient(90deg,
            var(--primary),
            #ff6666);
}

.feature-card:hover {
    transform:
        translateY(-10px);
    box-shadow:
        0 22px 45px rgba(0, 0, 0, .10);
}

/* ==========================================================
   FEATURE ICON
==========================================================*/
.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(-12deg);
}

/* ==========================================================
   FEATURE CONTENT
==========================================================*/
.feature-card h4 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.feature-card p {
    margin: 0;
}

/* ==========================================================
   HIGHLIGHT BOX
==========================================================*/
.highlight-box {
    position: relative;
    margin-top: 40px;
    background: #fff;
    border-radius: 18px;
    padding: 28px 32px;
    box-shadow:
        0 15px 35px rgba(0, 0, 0, .06);
    border-left: 5px solid var(--primary);
}

.highlight-box::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    background:
        radial-gradient(rgba(180, 0, 0, .12),
            transparent);
}

.highlight-box p {
    margin: 0;
    font-weight: 500;
}

/* ==========================================================
   DECORATIVE SHAPES
==========================================================*/
.decor-circle {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(180, 0, 0, .03);
    filter: blur(2px);
    z-index: 0;
}

.decor-circle.left {
    left: -80px;
    top: 80px;
}

.decor-circle.right {
    right: -80px;
    bottom: 60px;
}

/* ==========================================================
   CONTENT ANIMATION
==========================================================*/
.content-content>* {
    transition: .45s ease;
}

.content-section:hover .section-title {
    color: var(--primary);
}

.content-section:hover .section-title::after {
    width: 110px;
}

/* ==========================================================
   MOBILE
==========================================================*/
@media(max-width:992px) {
    .content-content {
        padding: 0;
        margin-top: 45px;
    }
}

@media(max-width:768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .content-content {
        text-align: center;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .highlight-box {
        text-align: left;
    }
}

@media(max-width:576px) {
    .image-box {
        border-radius: 18px;
    }

    .feature-card {
        padding: 24px;
    }
}


/* ==========================================================
   SERVICES SECTION
==========================================================*/
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    overflow: hidden;
    transition: all .35s ease;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .06);
}

.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), #ff7676);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 55px rgba(0, 0, 0, .12);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 28px;
    transition: .35s;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(-10deg);
}

.service-card h3 {
    margin-bottom: 16px;
    font-size: 1.35rem;
}

.service-card p {
    margin: 0;
}

.service-card::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    background: rgba(180, 0, 0, .03);
    border-radius: 50%;
    right: -70px;
    bottom: -70px;
}

/* ==========================================================
   WHY CHOOSE US
==========================================================*/
.why-section {
    background: #fcfcfc;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.why-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: #fff;
    border-radius: 22px;
    padding: 32px;
    transition: .35s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .05);
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, .10);
}

.why-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
    transition: .35s;
}

.why-item:hover .why-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.08);
}

.why-content h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.why-content p {
    margin: 0;
}

/* ==========================================================
   PROCESS SECTION
==========================================================*/
.process-section {
    background: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 65px;
    position: relative;
}

.process-grid::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 42px;
    height: 2px;
    background: #ececec;
    z-index: 0;
}

.process-card {
    position: relative;
    text-align: center;
    z-index: 2;
}

.process-number {
    width: 84px;
    height: 84px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg,
            var(--primary),
            var(--primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 18px 35px rgba(180, 0, 0, .25);
    margin-bottom: 24px;
    transition: .35s;
}

.process-card:hover .process-number {
    transform: translateY(-10px);
}

.process-card h4 {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.process-card p {
    font-size: .95rem;
    margin: 0;
}

/* ==========================================================
   RESPONSIVE
==========================================================*/
@media(max-width:1200px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-grid::before {
        display: none;
    }
}

@media(max-width:992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .why-item {
        flex-direction: column;
        text-align: center;
    }

    .why-icon {
        margin: auto;
    }
}


/* ==========================================================
   AREAS WE SERVE
==========================================================*/
.area-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-top: 55px;
}

.area-tag {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    background: #fff;
    border: 2px solid rgba(180, 0, 0, .12);
    color: var(--primary);
    font-weight: 600;
    transition: all .35s ease;
    overflow: hidden;
}
.area-tag a{
    color: var(--primary);
}
.area-tag a:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-5px);
}
.area-tag::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            var(--primary),
            var(--primary-dark));
    transform: translateY(100%);
    transition: .35s ease;
    z-index: -1;
}

.area-tag:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-5px);
}

.area-tag:hover::before {
    transform: translateY(0);
}

/* ==========================================================
   FAQ
==========================================================*/
.faq-section {
    background: #fafafa;
}

.faq-section .accordion {
    max-width: 950px;
    margin: auto;
}

.faq-section .accordion-item {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
}

.faq-section .accordion-button {
    padding: 24px 28px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary);
    background: #fff;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed) {
    color: #fff;
    background: linear-gradient(135deg,
            var(--primary),
            var(--primary-dark));
}

.faq-section .accordion-button:focus {
    box-shadow: none;
}

.faq-section .accordion-body {
    padding: 28px;
    line-height: 1.9;
    color: var(--text-light);
}

/* ==========================================================
   FINAL CTA
==========================================================*/
.final-cta {
    position: relative;
    overflow: hidden;
    padding: 130px 0;
    text-align: center;
    isolation: isolate;
}

.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0, 0, 0, .72),
            rgba(0, 0, 0, .72)),
        url("../image/south-delhi/south delhi (3).jpeg");
    background-size: cover;
    background-position: center;
    animation: heroZoom 20s linear infinite alternate;
    z-index: -2;
}

.final-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(180, 0, 0, .18),
            transparent);
    z-index: -1;
}

.final-cta h2 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 22px;
}

.final-cta p {
    color: rgba(255, 255, 255, .88);
    max-width: 760px;
    margin: 0 auto 40px;
}

.final-cta .sd-btn {
    font-size: 1.05rem;
}

.final-cta .sd-btn:hover {
    transform:
        translateY(-6px) scale(1.04);
}

/* Floating Decorative Shapes */
.final-cta .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    animation: floatAnimation 8s ease-in-out infinite;
    z-index: -1;
}

.final-cta .shape.one {
    width: 180px;
    height: 180px;
    top: 10%;
    left: 8%;
}

.final-cta .shape.two {
    width: 120px;
    height: 120px;
    bottom: 15%;
    right: 12%;
}

/* ==========================================================
   UTILITIES
==========================================================*/
.shadow-hover {
    transition: .35s ease;
}

.shadow-hover:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.rounded-xl {
    border-radius: 28px;
}

.bg-soft {
    background: var(--off-white);
}

.text-primary {
    color: var(--primary) !important;
}

/* ==========================================================
   CUSTOM SCROLLBAR
==========================================================*/
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f3f3f3;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ==========================================================
   SELECTION
==========================================================*/
::selection {
    background: var(--primary);
    color: #fff;
}

/* ==========================================================
   RESPONSIVE
==========================================================*/
@media(max-width:992px) {
    .final-cta {
        padding: 100px 0;
    }

    .final-cta h2 {
        font-size: 2.3rem;
    }
}

@media(max-width:768px) {
    section {
        padding: 80px 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .section-tag {
        justify-content: center;
    }

    .content-content {
        text-align: center;
    }

    .image-box::after {
        display: none;
    }

    .final-cta h2 {
        font-size: 2rem;
    }
}

@media(max-width:576px) {
    section {
        padding: 70px 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    p {
        font-size: .95rem;
    }

    .sd-btn {
        width: 100%;
        justify-content: center;
    }

    .area-tag {
        width: 100%;
    }
}