/* =====   CONTAINER  ======= */

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    box-sizing: border-box;
}

.container p {
    color: #314564;
    font-size: 16px;
    line-height: 1.4;
}
.container p label{display: table;}

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

.hero-section {
    position: relative;
    width: 100%;
    min-height: 240px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            115deg,
            #f6fbff 0%,
            #edf8ff 50%,
            #dceffc 100%
        );
    overflow: hidden;
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    right: -170px;
    top: -230px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    pointer-events: none;
}

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

.hero-content h1 {
    margin-bottom: 12px;
    color: #1f4583;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0px;
}
.hero-content h1 label{display: inline;}
.hero-content p {
        margin-bottom: 16px;
    color: #1f4583;
    font-size: 17px;
    line-height: 1.3;
}
.hero-content .desktop-only{display: table; font-style: normal;}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    min-width: 193px;
    height: 48px;
    padding: 0 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #ffffff;
    font-size: 17px;
    transition: all 0.25s ease;
    font-weight: 600;
}

.btn-primary {
    background: #062e72;
}

.btn-primary:hover {
    background: #041e4b;
}

.btn-whatsapp {
    background: #079653;
}
.btn-whatsapp .whatsapp-icon {
    width: 28px !important;
    height: 28px !important;
}

.btn-whatsapp:hover {
    background: #05783f;
}

.whatsapp-icon {
    margin-right: 8px;
    font-size: 20px;
    line-height: 1;
}



/* ==========================================
   AHMEDABAD PROPERTY PAGE
========================================== */

:root {
    --ahd-blue: #1f4583;
    --ahd-dark-blue: #163763;
    --ahd-gold: #b9924b;
    --ahd-light: #f5f8fc;
    --ahd-border: #e1e8f1;
    --ahd-white: #ffffff;
    --ahd-text: #1f4583;
}


/* ==========================================
   BASIC
========================================== */

.ahd-page,
.ahd-page * {
    box-sizing: border-box;
}

.ahd-page {
    width: 100%;
    overflow: hidden;
    color: var(--ahd-text);
    background: #ffffff;
}

.ahd-page img {
    max-width: 100%;
    display: block;
}

.ahd-container {
    width: 100%;
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 auto;
}

.ahd-page h1,
.ahd-page h2,
.ahd-page h3,
.ahd-page p {
    margin-top: 0;
}
.padding-none{padding: 0px !important;}
.ahd-page h2 {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 700;
    color: #1f4583;
    margin-bottom: 12px;
}

.ahd-page h3 {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: #1f4583;
}

.ahd-page p {
    font-size: 16px;
    line-height: 1.4;
    color: #243d64;
    margin-bottom: 16px;
}


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



.ahd-small-title {
    display: inline-flex;
    position: relative;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.1px;
    color: #f04c51;
    padding-left: 36px;
    margin-bottom: 6px;
}

.ahd-small-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 25px;
    height: 2px;
    background:#f04c51;
    transform: translateY(-50%);
}


/* ==========================================
   BUTTON
========================================== */

.ahd-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    margin-top: 15px;
    padding: 15px 24px;

    color: #ffffff !important;
    background: #1f4583;

    text-decoration: none;
    font-size: 16px;
    font-weight: 700;

    border-radius: 6px;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.ahd-btn span {
    font-size: 21px;
    line-height: 1;
}

.ahd-btn:hover {
    color: #ffffff !important;
    background: #d81c22;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(31, 69, 131, 0.18);
}


/* ==========================================
   SECTION LINE
========================================== */

.ahd-section-line {
    position: relative;

    display: block;

    width: 42px;
    height: 3px;

    background: #f04c51;

    margin-bottom: 20px;
}


/* ==========================================
   COMMERCIAL / RESIDENTIAL
========================================== */

.ahd-property-section {
    padding: 20px 0;
    background: #ffffff;
}

.ahd-property-section:nth-of-type(3) {
    background: #f7f9fc;
}

.ahd-property-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.ahd-property-image {
    overflow: hidden;
}

.ahd-property-image img {
    width: 100%;
    height: 100%;

    object-fit: fill;

    transition: transform 0.6s ease;
}

.ahd-property-image:hover img {
    transform: scale(1.04);
}

.ahd-property-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 30px;
    background: #f3f8ff;
}

.ahd-property-section:nth-of-type(3)
.ahd-property-content {
    background: #ffffff;
}

.ahd-property-content p {
    max-width: 600px;
}

.ahd-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    width: fit-content;

    margin-top: 8px;

    color: #1f4583;
    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    border-bottom: 1px solid #b9924b;
    padding-bottom: 5px;

    transition: 0.3s ease;
}

.ahd-text-link span {
    font-size: 20px;
}

.ahd-text-link:hover {
    color: #b9924b;
}


/* ==========================================
   LOCATION SECTION
========================================== */

.ahd-location-section {
    padding: 45px 0 30px 0;
    background: #ffffff;
}

.ahd-section-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 28px;
}

.ahd-section-heading .ahd-section-line {
    margin-left: auto;
    margin-right: auto;
}

.ahd-section-heading h2 {
    margin-bottom: 15px;
}

.ahd-section-heading p {
    margin-bottom: 0;
}

.ahd-location-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 10px;
}

.ahd-location-card {
    position: relative;

    height: 52px;

    overflow: hidden;

    border-radius: 8px;

    text-decoration: none;

    background: #294470;
}


.ahd-location-card span {
    position: absolute;

    left: 20px;
    bottom: 17px;

    z-index: 2;

    color: #ffffff;

    font-size: 17px;
    font-weight: 700;
}


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

.ahd-services-section {
    padding: 30px 0 40px 0;

    background: #f6f9fc;
}

.ahd-services-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.ahd-service-card {
    padding: 10px 16px 10px;
    min-height: 265px;
    background: #ffffff;
    border: 1px solid #e3eaf2;
    border-radius: 8px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ahd-service-card:hover {
    transform: translateY(-7px);

    border-color: rgba(31, 69, 131, 0.15);

    box-shadow:
        0 18px 40px rgba(31, 69, 131, 0.10);
}

.ahd-service-icon {
    width: 75px;
    height: 75px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 5px;

    color: #1f4583;

    background: #f4f7fb;

    border-radius: 50%;
}

.ahd-service-icon svg {
    width: 50px;
    height: 50px;
}

.ahd-service-card h3 {
    margin-bottom: 12px;
}

.ahd-service-card p {
    font-size: 15px;
    line-height: 1.7;

    margin-bottom: 0;
}


/* ==========================================
   LOCAL SUPPORT
========================================== */

.ahd-support-section {
    position: relative;

    min-height: 390px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #15355f;
}

.ahd-support-bg {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            90deg,
            rgba(13, 43, 79, 0.97) 0%,
            rgba(13, 43, 79, 0.91) 38%,
            rgba(13, 43, 79, 0.42) 72%,
            rgba(13, 43, 79, 0.12) 100%
        ),
        url("../ahmedabad/images/ahmedabad-local-real-estate.jpg");

    background-size: cover;
    background-position: center;

    z-index: 0;
}

.adani-support-bg {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            90deg,
            rgba(13, 43, 79, 0.97) 0%,
            rgba(13, 43, 79, 0.91) 38%,
            rgba(13, 43, 79, 0.42) 72%,
            rgba(13, 43, 79, 0.12) 100%
        ),
        url("../adani-shantigram/images/adani-shantigram-bg.jpg");

    background-size: cover;
    background-position: center;

    z-index: 0;
}

.ahd-support-content {
    position: relative;

    z-index: 2;

    width: 650px;

    padding: 30px 0;
}
.ahd-support-content h2{font-size: 34px !important;}
.ahd-support-content h2,
.ahd-support-content p {
    color: #ffffff;
}
.ahd-support-content p{font-size: 17px !important;}
.ahd-support-content .ahd-section-line {
    background: #f04c51;
}


.adani-property-advisory{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.adani-property-advisory .left-content-bx{
    width: 65%;
}

/* ==========================================
   CONTACT
========================================== */

.ahd-contact-section {
    padding: 40px 0;

    background: #f7f9fc;
}

.ahd-contact-box {
    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 450px;

    background: #ffffff;

    border: 1px solid #e1e7ef;

    border-radius: 8px;

    overflow: hidden;

    box-shadow:
        0 15px 45px rgba(31, 69, 131, 0.08);
}

.ahd-contact-details {
    padding: 20px 30px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ahd-contact-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.7px;
    color: #ff4a4a;
    margin-bottom: 4px;
}

.ahd-contact-details h2 {
    margin-bottom: 30px;
}

.ahd-contact-item {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    margin-bottom: 21px;
}

.ahd-contact-item svg {
    flex: 0 0 24px;

    width: 24px;
    height: 24px;

    color: #1f4583;

    margin-top: 2px;
}

.ahd-contact-item p {
    margin: 0;

    font-size: 15px;
    line-height: 1.65;
}

.ahd-contact-item a {
    color: #1f4583;

    text-decoration: none;

    font-size: 16px;
    font-weight: 600;
}

.ahd-contact-item a:hover {
    color: #ff4a4a;
}

.ahd-contact-btn {
    width: fit-content;
    margin-top: 10px;
}


/* ==========================================
   MAP / BACKGROUND
========================================== */

.ahd-contact-map {
    position: relative;

    min-height: 400px;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.08),
            rgba(255,255,255,0.08)
        ),
        url("../images/ahmedabad-map.webp");

    background-size: cover;
    background-position: center;
}

.ahd-map-overlay {
    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 7px;

    color: #1f4583;

    font-size: 14px;
    font-weight: 700;
}

.ahd-map-overlay svg {
    width: 52px;
    height: 52px;

    filter:
        drop-shadow(
            0 5px 10px rgba(0,0,0,0.2)
        );
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1100px) {

    .ahd-hero {
        min-height: 560px;
    }

    .ahd-hero h1 {
        font-size: 48px;
    }

    .ahd-property-content {
        padding: 50px;
    }

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

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

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {
    .hero-content h1{font-size: 28px;}
    .hero-section{ min-height: 275px;}
    .container p label{display: inline;}
    .ahd-container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .adani-hero-sec-mobile{min-height: auto;  padding: 30px 0;}
    .adani-hero-sec-mobile h1 { font-size: 26px; line-height: 1.1; }


    /* TYPOGRAPHY */

    .ahd-page h2 {
        font-size: 26px !important;
        line-height: 1.1;
        margin-bottom: 10px;
    }

    .ahd-page h3 {
        font-size: 20px;
    }

    .ahd-page p {
        font-size: 16px;
        line-height: 1.3;
    }


    .ahd-small-title {
        font-size: 11px;

        padding-left: 26px;

        margin-bottom: 4px;
    }

    .ahd-small-title::before {
        width: 20px;
    }
    .hero-content p{font-size: 16px !important;}

    .ahd-hero h1 {
        font-size: 38px;
        line-height: 1.08;

        margin-bottom: 18px;
    }

    .ahd-hero p {
        margin-bottom: 12px;
    }

    .ahd-btn {
        padding: 13px 19px;

        font-size: 15px;
    }


    /* PROPERTY */

    .ahd-property-section {
        padding: 25px 0;
    }

    .ahd-property-grid {
        display: flex;
        flex-direction: column;
    }

    .ahd-property-image {
        min-height: auto;
        order: 1;
    }

    .ahd-property-image img {
        width: 100%;
        height: 290px;
        min-height: 290px;
    }

    .ahd-property-content {
        order: 2;

        padding: 15px;
    }

    .ahd-property-reverse .ahd-property-content {
        order: 2;
    }

    .ahd-property-reverse .ahd-property-image {
        order: 1;
    }


    /* LOCATIONS */

    .ahd-location-section {
        padding: 30px 0;
    }

    .ahd-section-heading {
        margin-bottom: 20px;
    }
    .ahd-map-overlay{position: relative;}

    .ahd-location-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 10px;
    }

    .ahd-location-card span {
        left: 20px;
        bottom: 14px;
        font-size: 18px;
        letter-spacing: 0.5px;
    }


    /* SERVICES */

    .ahd-services-section {
        padding: 30px 0;
    }

    .ahd-services-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .ahd-service-card {
        min-height: auto;

        padding: 20px 20px;
        text-align: center;
    }

    .ahd-service-icon {
        width: 80px;
        height: 80px;
        margin: 12px auto;
        margin-top: 0px;
    }

    .ahd-service-icon svg {
        width: 50px;
        height: 50px;
    }


    /* SUPPORT */

    .ahd-support-section {
        min-height: 340px;
    }


    .ahd-support-content {
        width: 100%;

        padding: 40px 0 30px;
    }

.adani-property-advisory .left-content-bx {
    width: 100%;
}
.adani-property-advisory {
    display: table;
}
    /* CONTACT */

    .ahd-contact-section {
        padding: 30px 0;
    }
    .ahd-contact-label{font-size: 13px;}

    .ahd-contact-box {
        grid-template-columns: 1fr;

        min-height: auto;
    }

    .ahd-contact-details {
        padding: 38px 24px;
    }

    .ahd-contact-map {
        min-height: 300px;
    }
    .container {
    padding-left: 20px;
    padding-right: 30px;
}

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .ahd-hero {
        min-height: 620px;
    }

    .ahd-hero h1 {
        font-size: 34px;
    }

    .ahd-location-grid {
        grid-template-columns: 1fr;
    }

    .ahd-location-card {
        height: auto;
    }

    .ahd-property-image img {
        height: 250px;
        min-height: 250px;
    }

    .ahd-property-content {
        padding: 15px;
    }

    .ahd-contact-details {
        padding: 35px 20px;
    }

    .ahd-contact-map {
        min-height: 270px;
    }

}
