
/* =========================================================
   AVTAR CITY DEVELOPERS
   PREMIUM WHITE + GREEN RESPONSIVE CSS
   Bootstrap 5 Compatible
========================================================= */
/* =========================================================
   ROOT VARIABLES
========================================================= */
:root {
    --green-dark: #063d28;
    --green: #0b6b43;
    --green-main: #11945d;
    --green-light: #e9f7ef;
    --gold: #c5a15a;
    --white: #ffffff;
    --off-white: #f7faf8;
    --text: #17231d;
    --text-muted: #68756e;
    --border: rgba(6, 61, 40, 0.10);
    --shadow: 0 15px 45px rgba(6, 61, 40, 0.10);
    --shadow-hover: 0 25px 65px rgba(6, 61, 40, 0.16);
    --radius: 22px;
}


/* =========================================================
   GLOBAL RESET
========================================================= */

* {
    box-sizing: border-box;
}


html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}


body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: var(--off-white);
    color: var(--text);
    font-family: "DM Sans", Arial, sans-serif;
    line-height: 1.6;
}


img,
video,
iframe {
    max-width: 100%;
}


img {
    height: auto;
}


a {
    text-decoration: none;
}


button,
input,
textarea,
select {
    font-family: inherit;
}


/* =========================================================
   BOOTSTRAP CONTAINER OVERRIDE
========================================================= */

.container {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}


/* =========================================================
   SECTION
========================================================= */

section {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}


.section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-information-bar {
    width: 100%;
    min-height: 38px;
    background: linear-gradient( 90deg, #063d28, #0b6b43, #063d28 );
    color: rgba(255,255,255,.85);
    font-size: 12px;
}


.top-bar-container {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


.top-location,
.top-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}


    .top-location span,
    .top-contact span {
        white-space: nowrap;
    }


.top-information-bar i {
    color: var(--gold);
}


.top-contact a {
    color: white;
}


/* =========================================================
   HEADER
========================================================= */

.main-header {
    position: absolute;
    top: 38px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    color: white;
    transition: all .3s ease;
}


    .main-header.scrolled {
        position: fixed;
        top: 0;
        background: rgba(255,255,255,.96);
        backdrop-filter: blur(15px);
        box-shadow: 0 8px 30px rgba(6,61,40,.10);
        color: var(--green-dark);
    }


.header-container {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}


/* =========================================================
   LOGO
========================================================= */

.website-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}


.logo-symbol {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.5);
    background: linear-gradient( 135deg, rgba(255,255,255,.20), rgba(255,255,255,.03) );
    transform: rotate(45deg);
}


    .logo-symbol span {
        transform: rotate(-45deg);
        font-family: Manrope, sans-serif;
        font-size: 15px;
        font-weight: 800;
        color: var(--gold);
    }


.main-header.scrolled .logo-symbol {
    border-color: var(--green);
    background: var(--green-light);
}


    .main-header.scrolled .logo-symbol span {
        color: var(--green);
    }


.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}


    .logo-text strong {
        font-family: Manrope, sans-serif;
        font-size: 16px;
        letter-spacing: .10em;
    }


    .logo-text small {
        margin-top: 6px;
        font-size: 8px;
        letter-spacing: .32em;
        color: var(--gold);
    }


.main-header.scrolled .logo-text strong {
    color: var(--green-dark);
}


.main-header.scrolled .logo-text small {
    color: var(--green);
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-navigation {
    display: flex;
    align-items: center;
    gap: 3px;
    min-width: 0;
}


.navigation-link,
.navigation-dropdown-button {
    padding: 10px 11px;
    border: 0;
    background: transparent;
    color: white;
    font-size: 12px;
    white-space: nowrap;
    cursor: pointer;
    transition: .2s;
}


.main-header.scrolled
.navigation-link,
.main-header.scrolled
.navigation-dropdown-button {
    color: var(--green-dark);
}


.navigation-link:hover,
.navigation-dropdown-button:hover {
    color: var(--gold);
}


/* =========================================================
   DROPDOWN
========================================================= */

.navigation-dropdown {
    position: relative;
}


.navigation-dropdown-button {
    display: flex;
    align-items: center;
    gap: 6px;
}


.navigation-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 220px;
    padding: 8px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: .25s;
}


.navigation-dropdown:hover
.navigation-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.navigation-dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--text);
    font-size: 12px;
    transition: .2s;
}


    .navigation-dropdown-menu a:hover {
        background: var(--green-light);
        color: var(--green);
        transform: translateX(3px);
    }


/* =========================================================
   SITE VISIT BUTTON
========================================================= */

.site-visit-button {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 17px;
    border-radius: 50px;
    background: linear-gradient( 135deg, #0b6b43, #11945d );
    color: white;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(11,107,67,.20);
    transition: .25s;
}


    .site-visit-button:hover {
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(11,107,67,.30);
    }


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.08);
    border-radius: 10px;
    cursor: pointer;
}


    .mobile-menu-button span {
        display: block;
        width: 20px;
        height: 2px;
        margin: 4px auto;
        background: white;
    }


.main-header.scrolled
.mobile-menu-button {
    border-color: var(--border);
    background: var(--green-light);
}


    .main-header.scrolled
    .mobile-menu-button span {
        background: var(--green);
    }


/* =========================================================
   HERO
========================================================= */

.home-hero {
    position: relative;
    width: 100%;
    min-height: 560px;
    height: 100vh;
    overflow: hidden;
    background: var(--green-dark);
    color: white;
}


.home-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}


.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(3,44,29,.92), rgba(6,61,40,.62), rgba(6,61,40,.30) );
}


.home-hero-grid {
    position: absolute;
    inset: 0;
    opacity: .07;
    background-image: linear-gradient( rgba(255,255,255,.4) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255,255,255,.4) 1px, transparent 1px );
    background-size: 70px 70px;
    pointer-events: none;
}


/* =========================================================
   HERO GLOW
========================================================= */

.home-hero::after {
    content: "";
    position: absolute;
    width: 550px;
    height: 550px;
    right: -180px;
    top: 50px;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(60,201,130,.20), transparent 65% );
    pointer-events: none;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.home-hero-content {
    position: relative;
    z-index: 5;
    padding-top: 245px;
    width: 100%;
}


.hero-label {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: .20em;
    font-weight: 700;
}


.home-hero h1 {
    max-width: 850px;
    margin: 20px 0;
    font-family: Manrope, sans-serif;
    font-size: clamp(48px, 7vw, 90px);
    line-height: 1;
    font-weight: 800;
    word-wrap: break-word;
}


    .home-hero h1 em {
        font-family: Georgia, serif;
        font-weight: 400;
        color: #dff4e8;
    }


.home-hero p {
    max-width: 560px;
    margin: 0;
    color: rgba(255,255,255,.80);
    font-size: 16px;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}


.premium-button,
.outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    transition: .25s;
}


.premium-button {
    background: linear-gradient( 135deg, white, #eaf7f0 );
    color: var(--green-dark);
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
}


    .premium-button:hover {
        color: var(--green-dark);
        transform: translateY(-3px);
    }


.outline-button {
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.07);
    color: white;
    backdrop-filter: blur(10px);
}


    .outline-button:hover {
        background: white;
        color: var(--green-dark);
    }


/* =========================================================
   HERO STATISTICS
========================================================= */

.hero-statistics {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 6;
    display: flex;
    max-width: 100%;
    overflow: hidden;
    background: rgba(3,44,29,.75);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255,255,255,.15);
    border-left: 1px solid rgba(255,255,255,.15);
}


.hero-stat {
    min-width: 135px;
    padding: 18px 22px;
    border-right: 1px solid rgba(255,255,255,.10);
}


    .hero-stat strong {
        display: block;
        font-family: Manrope, sans-serif;
        font-size: 22px;
        color: white;
    }


    .hero-stat span {
        display: block;
        color: rgba(255,255,255,.60);
        font-size: 9px;
    }


/* =========================================================
   TAGLINE
========================================================= */

/* =====================================================
   AVATAR CITY - OUR PROMISE / TAGLINE SECTION
===================================================== */

.home-tagline {
    position: relative;
    width: 100%;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff, #f1f9f5);
    background-image: url('../images/bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


    /* =====================================================
   WHITE BACKGROUND OVERLAY
   Keeps the background image subtle and text readable
===================================================== */

    .home-tagline::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.78);
        z-index: 0;
    }


    /* =====================================================
   GREEN + GOLD PREMIUM TINT
===================================================== */

    .home-tagline::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(0, 91, 45, 0.10), rgba(255, 255, 255, 0.04), rgba(212, 175, 55, 0.10) );
        z-index: 1;
    }


/* =====================================================
   MAIN CONTAINER
===================================================== */

.tagline-container {
    position: relative;
    z-index: 2;
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
}


    /* =====================================================
   EYEBROW
===================================================== */

    .tagline-container .section-eyebrow {
        display: inline-block;
        margin-bottom: 9px;
        color: #b08a18;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
    }


        /* Small decorative line */

        .tagline-container .section-eyebrow::before,
        .tagline-container .section-eyebrow::after {
            content: "";
            display: inline-block;
            width: 28px;
            height: 1px;
            vertical-align: middle;
            background: linear-gradient( 90deg, transparent, #c9a227 );
            margin: 0 10px;
        }

        .tagline-container .section-eyebrow::after {
            background: linear-gradient( 90deg, #c9a227, transparent );
        }


    /* =====================================================
   MAIN HEADING
===================================================== */

    .tagline-container h2 {
        margin: 0 0 1px;
        color: #17251c;
        font-size: clamp(36px, 5vw, 58px);
        line-height: 1.12;
        font-weight: 800;
        letter-spacing: -1px;
    }


        /* Gold italic heading */

        .tagline-container h2 em {
            color: #b8860b;
            font-style: italic;
            font-weight: 700;
        }


/* =====================================================
   LONG CONTENT
===================================================== */

.tagline-content {
    max-width: 900px;
    margin: 0 auto;
}


    /* Paragraph */

    .tagline-content p {
        max-width: 850px;
        margin: 0 auto 18px;
        color: #4f5c53;
        font-size: 16px;
        line-height: 1.85;
        text-align: center;
    }


        /* Important SEO keywords */

        .tagline-content p strong {
            color: #087638;
            font-weight: 700;
        }


/* =====================================================
   PROMISE SIGNATURE BOX
===================================================== */

.promise-signature {
    position: relative;
    max-width: 680px;
    margin: 35px auto 0;
    padding: 23px 30px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(184, 134, 11, 0.30);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 70, 30, 0.08);
    backdrop-filter: blur(8px);
}


    /* Gold top line */

    .promise-signature::before {
        content: "";
        position: absolute;
        top: -1px;
        left: 50%;
        width: 75px;
        height: 3px;
        transform: translateX(-50%);
        background: linear-gradient( 90deg, #b8860b, #e2c65a );
        border-radius: 10px;
    }


    /* Vision label */

    .promise-signature span {
        display: block;
        margin-bottom: 6px;
        color: #b8860b;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
    }


    /* Vision text */

    .promise-signature strong {
        display: block;
        color: #17301f;
        font-size: 19px;
        font-weight: 700;
        font-style: italic;
    }


/* =====================================================
   SUBTLE DECORATIVE GLOW
===================================================== */

.home-tagline .tagline-container::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    left: -150px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    filter: blur(5px);
    z-index: -1;
}

.home-tagline .tagline-container::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -180px;
    bottom: 0;
    border-radius: 50%;
    background: rgba(0, 128, 55, 0.07);
    filter: blur(5px);
    z-index: -1;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .home-tagline {
        background-position: center center;
    }

    .tagline-container {
        max-width: 100%;
        padding: 60px 22px;
    }

        .tagline-container h2 {
            font-size: 38px;
            letter-spacing: -0.5px;
        }

    .tagline-content p {
        font-size: 15px;
        line-height: 1.75;
        text-align: left;
    }

    .promise-signature {
        padding: 20px 18px;
    }

        .promise-signature strong {
            font-size: 17px;
        }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 576px) {

    .tagline-container {
        padding: 55px 18px;
    }

        .tagline-container .section-eyebrow {
            font-size: 11px;
            letter-spacing: 2px;
        }

            .tagline-container .section-eyebrow::before,
            .tagline-container .section-eyebrow::after {
                width: 18px;
                margin: 0 6px;
            }

        .tagline-container h2 {
            font-size: 33px;
            line-height: 1.18;
            margin-bottom: 22px;
        }

    .tagline-content p {
        font-size: 14.5px;
        line-height: 1.75;
        margin-bottom: 16px;
    }

    .promise-signature {
        margin-top: 28px;
        border-radius: 15px;
    }
}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .tagline-container h2 {
        font-size: 30px;
    }

    .tagline-container {
        padding-left: 15px;
        padding-right: 15px;
    }
}


/* =========================================================
   ABOUT
========================================================= */

.home-about {
    background: linear-gradient( 135deg, white, #f0f9f4 );
}


.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 70px;
    align-items: center;
}


.about-image-card {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 26px;
    background-image: url('../images/about.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
    /*background: linear-gradient( 135deg, #063d28, #0b6b43, #82cda7 );*/
    box-shadow: var(--shadow-hover);
}

    .about-image-card::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        right: -170px;
        top: -170px;
        border-radius: 50%;
        background: rgba(255,255,255,.12);
    }


    .about-image-card::after {
        content: "";
        position: absolute;
        inset: 18px;
        border: 1px solid rgba(255,255,255,.25);
        border-radius: 20px;
        pointer-events: none;
    }


.about-year {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 3;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    background: linear-gradient( 135deg, white, #eaf7f0 );
    color: var(--green-dark);
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
    font-size: 8px;
}


    .about-year strong {
        display: block;
        font-family: Manrope, sans-serif;
        font-size: 20px;
    }


.about-image-content {
    position: absolute;
    z-index: 3;
    left: 32px;
    top: 30px;
}


    .about-image-content small {
        color: #dff4e8;
        font-size: 9px;
        letter-spacing: .18em;
    }


    .about-image-content strong {
        display: block;
        margin-top: 8px;
        color: white;
        font-family: Manrope, sans-serif;
        font-size: 28px;
        line-height: 1.1;
    }


.about-content {
    min-width: 0;
}


    .about-content h2 {
        margin: 14px 0 18px;
        font-family: Manrope, sans-serif;
        font-size: clamp(38px, 5vw, 60px);
        line-height: 1.03;
        color: var(--green-dark);
    }


        .about-content h2 em {
            color: var(--green);
            font-family: Georgia, serif;
            font-weight: 400;
        }


    .about-content p {
        max-width: 540px;
        color: var(--text-muted);
        font-size: 14px;
    }


/* =========================================================
   PROJECTS
========================================================= */

.ongoing-projects {
    background: var(--off-white);
}


.projects-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 40px;
}


    .projects-heading h2 {
        margin: 10px 0 0;
        font-family: Manrope, sans-serif;
        font-size: clamp(38px, 5vw, 60px);
        line-height: 1;
        color: var(--green-dark);
    }


        .projects-heading h2 em {
            color: var(--green);
            font-family: Georgia, serif;
            font-weight: 400;
        }


/* =========================================================
   PROJECT GRID
========================================================= */

.project-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 20px;
    width: 100%;
}


.project-item {
    min-width: 0;
    overflow: hidden;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: .3s;
}


    .project-item:hover {
        transform: translateY(-7px);
        box-shadow: var(--shadow-hover);
    }


.project-large {
    grid-row: span 0;
}


.project-photo {
    position: relative;
    width: 100%;
    height: 370px;
    overflow: hidden;
}


.project-large .project-photo {
    height: 410px;
}

.project-box {
    width: 100%;
    min-height: 630px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18), 0 5px 15px rgba(0, 80, 40, 0.10);
}

@media (max-width: 768px) {
    .project-box {
        min-height: 400px;
        background-size: contain;
        background-color: #f5f8f2;
    }
}

@media (max-width: 480px) {
    .project-box {
        min-height: 300px;
        border-radius: 15px;
    }
}


.project-photo-two {
    background: linear-gradient( 135deg, #075b39, #11945d, #c6e7d5 );
}


.project-photo-three {
    background: linear-gradient( 135deg, #0b6b43, #38b87d, #d5efe1 );
}


.project-photo::after {
    content: "";
    position: absolute;
    inset: 17px;
    border: 1px solid rgba(255,255,255,.30);
    border-radius: 16px;
}


.project-label {
    position: absolute;
    z-index: 3;
    top: 18px;
    left: 18px;
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50px;
    background: rgba(3,44,29,.60);
    color: white;
    font-size: 8px;
    letter-spacing: .15em;
}


.project-number {
    position: absolute;
    z-index: 3;
    right: 20px;
    bottom: 12px;
    color: rgba(255,255,255,.28);
    font-family: Manrope, sans-serif;
    font-size: 48px;
    font-weight: 800;
}


.project-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 18px 20px;
}


    .project-details h3 {
        margin: 0;
        font-family: Manrope, sans-serif;
        font-size: 17px;
        color: var(--green-dark);
    }


    .project-details p {
        margin: 3px 0 0;
        color: black;
        font-size: 15px;
    }


    .project-details a {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
        display: grid;
        place-items: center;
        border: 1px solid var(--border);
        border-radius: 50%;
        color: var(--green);
        transition: .2s;
    }


        .project-details a:hover {
            background: linear-gradient( 135deg, var(--green), var(--green-main) );
            color: white;
        }


/* =========================================================
   WHY US
========================================================= */

.why-us-section {
    background: linear-gradient( 135deg, #eaf7f0, white );
}


.why-us-heading {
    text-align: center;
    margin-bottom: 45px;
}


    .why-us-heading h2 {
        margin: 12px 0 0;
        font-family: Manrope, sans-serif;
        font-size: clamp(38px, 5vw, 60px);
        line-height: 1;
        color: var(--green-dark);
    }


        .why-us-heading h2 em {
            color: var(--green);
            font-family: Georgia, serif;
            font-weight: 400;
        }


.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}


.why-card {
    position: relative;
    min-width: 0;
    min-height: 270px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255,255,255,.85);
    box-shadow: 0 10px 35px rgba(6,61,40,.06);
    transition: .3s;
}


    .why-card:hover {
        transform: translateY(-7px);
        background: white;
        box-shadow: var(--shadow);
    }


.why-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(11,107,67,.20);
    border-radius: 50%;
    color: var(--green);
    background: linear-gradient( 135deg, white, var(--green-light) );
}


.why-number {
    position: absolute;
    top: 25px;
    right: 20px;
    color: #aab8b0;
    font-size: 9px;
}


.why-card h3 {
    margin: 23px 0 8px;
    font-family: Manrope, sans-serif;
    font-size: 17px;
    color: var(--green-dark);
}


.why-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 12px;
}


/* =========================================================
   CTA
========================================================= */

.home-cta {
    position: relative;
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
    text-align: center;
    color: white;
    /*background: linear-gradient( 135deg, #032c1d, #063d28 50%, #0b6b43 );*/
    background-image: url('../images/hero-banner copy.png');
    background: linear-gradient(180deg, #ffffff, #f1f9f5);
    background-position: center center;
    background-repeat: no-repeat;
}


    .home-cta::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        right: -200px;
        top: -300px;
        border-radius: 50%;
        background: radial-gradient( circle, rgba(255,255,255,.15), transparent 65% );
    }


.cta-content {
    position: relative;
    z-index: 2;
}


    .cta-content h2 {
        margin: 15px 0 18px;
        font-family: Manrope, sans-serif;
        font-size: clamp(40px, 6vw, 75px);
        line-height: 1;
    }


        .cta-content h2 em {
            font-family: Georgia, serif;
            font-weight: 400;
            color: #dff4e8;
        }


    .cta-content p {
        max-width: 550px;
        margin: 0 auto 28px;
        color: rgba(255,255,255,.75);
        font-size: 14px;
    }


/* =========================================================
   FOOTER
========================================================= */

.main-footer {
    width: 100%;
    background: linear-gradient( 135deg, #032c1d, #063d28 );
    color: #9eb4aa;
    padding-top: 65px;
}


.footer-container {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, .7fr) minmax(0, .9fr) minmax(0, 1fr);
    gap: 40px;
    padding-bottom: 50px;
}


.footer-company,
.footer-column {
    min-width: 0;
}


.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}


.footer-logo-symbol {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.20);
    color: var(--gold);
}


.footer-logo strong {
    display: block;
    color: white;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    letter-spacing: .10em;
}


.footer-logo small {
    display: block;
    margin-top: 3px;
    color: var(--gold);
    font-size: 7px;
    letter-spacing: .35em;
}


.footer-company p {
    max-width: 320px;
    margin-top: 18px;
    color: #8ca49a;
    font-size: 12px;
}


.footer-column h4 {
    margin-bottom: 15px;
    color: white;
    font-family: Manrope, sans-serif;
    font-size: 13px;
}


.footer-column > a {
    display: block;
    padding: 4px 0;
    color: #8ca49a;
    font-size: 11px;
    transition: .2s;
}


    .footer-column > a:hover {
        color: white;
        transform: translateX(3px);
    }


.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 13px;
    font-size: 11px;
}


    .footer-contact-item i {
        color: var(--gold);
        margin-top: 3px;
    }


    .footer-contact-item a {
        color: #8ca49a;
    }


.footer-social-icons {
    display: flex;
    gap: 7px;
    margin-top: 18px;
}


    .footer-social-icons a {
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 50%;
        color: #9eb4aa;
        font-size: 11px;
        transition: .2s;
    }


        .footer-social-icons a:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--green-dark);
        }


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
}


.footer-bottom-container {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #718a7f;
    font-size: 10px;
}


/* =========================================================
   WHATSAPP
========================================================= */

.floating-whatsapp {
    position: fixed;
    z-index: 9999;
    right: 18px;
    bottom: 18px;
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    border: 4px solid white;
    border-radius: 50%;
    background: linear-gradient( 135deg, #25d366, #119b4d );
    color: white;
    font-size: 25px;
    box-shadow: 0 12px 35px rgba(0,0,0,.20);
    transition: .25s;
}


    .floating-whatsapp:hover {
        color: white;
        transform: translateY(-4px) scale(1.04);
    }


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .main-navigation {
        gap: 0;
    }

    .navigation-link,
    .navigation-dropdown-button {
        padding-left: 7px;
        padding-right: 7px;
        font-size: 11px;
    }

    .site-visit-button {
        padding-left: 13px;
        padding-right: 13px;
    }

    .about-grid {
        gap: 40px;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 991px) {

    .main-header {
        top: 38px;
    }


    .mobile-menu-button {
        display: block;
    }


    .main-navigation {
        position: fixed;
        top: 0;
        right: 0;
        width: min(360px, 88vw);
        height: 100vh;
        padding: 100px 25px 30px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        background: rgba(255,255,255,.98);
        box-shadow: -20px 0 60px rgba(6,61,40,.15);
        transform: translateX(100%);
        transition: transform .3s ease;
    }


        .main-navigation.open {
            transform: translateX(0);
        }


    .navigation-link,
    .navigation-dropdown-button {
        width: 100%;
        padding: 14px 5px;
        text-align: left;
        color: var(--green-dark) !important;
        font-size: 15px;
    }


    .navigation-dropdown-menu {
        position: static;
        width: 100%;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        background: var(--green-light);
    }


    .navigation-dropdown.open
    .navigation-dropdown-menu {
        display: block;
    }


    .navigation-dropdown-menu a {
        padding: 10px 15px;
    }


    .site-visit-button {
        justify-content: center;
        margin-top: 12px;
        padding: 13px;
    }


    .about-grid {
        grid-template-columns: minmax(0, 1fr);
    }


    .about-image-card {
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }


    .footer-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 14px;
        padding-right: 14px;
    }


    .section-padding {
        padding-top: 50px;
        padding-bottom: 50px;
    }


    /* TOP BAR */

    .top-information-bar {
        min-height: 35px;
    }


    .top-bar-container {
        min-height: 35px;
        justify-content: center;
    }


    .top-location {
        display: none;
    }


    .top-contact span {
        font-size: 11px;
    }


    /* HEADER */

    .header-container {
        min-height: 72px;
        gap: 10px;
    }


    .logo-symbol {
        width: 39px;
        height: 39px;
    }


    .logo-text strong {
        font-size: 13px;
    }


    .logo-text small {
        font-size: 6px;
    }


    /* HERO */

    .home-hero {
        min-height: 680px;
        height: 100svh;
    }


    .home-hero-content {
        padding-top: 175px;
    }


    .home-hero h1 {
        font-size: 48px;
        line-height: .98;
    }


    .home-hero p {
        font-size: 14px;
    }


    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 250px;
    }


    .premium-button,
    .outline-button {
        width: 100%;
    }


    .hero-statistics {
        display: none;
    }


    /* TAGLINE */

    .home-tagline h2 {
        font-size: 38px;
    }


    /* ABOUT */

    .about-image-card {
        height: 420px;
    }


    .about-content h2 {
        font-size: 40px;
    }


    /* PROJECT */

    .projects-heading {
        display: block;
    }


        .projects-heading h2 {
            font-size: 40px;
        }


    .project-showcase {
        grid-template-columns: minmax(0, 1fr);
    }


    .project-large {
        grid-row: auto;
    }


        .project-large .project-photo,
        .project-photo {
            height: 280px;
        }


    /* WHY */

    .why-us-grid {
        grid-template-columns: minmax(0, 1fr);
    }


    .why-card {
        min-height: 230px;
    }


    /* CTA */

    .home-cta {
        padding: 75px 0;
    }


    .cta-content h2 {
        font-size: 44px;
    }


    /* FOOTER */

    .footer-container {
        grid-template-columns: minmax(0, 1fr);
        gap: 35px;
    }


    .footer-bottom-container {
        min-height: auto;
        padding: 15px 0;
        display: block;
    }


        .footer-bottom-container span {
            display: block;
            margin: 4px 0;
        }


    /* WHATSAPP */

    .floating-whatsapp {
        width: 51px;
        height: 51px;
        right: 14px;
        bottom: 14px;
        font-size: 23px;
    }
}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 400px) {

    .logo-text strong {
        font-size: 12px;
    }


    .logo-text small {
        letter-spacing: .20em;
    }


    .home-hero-content {
        padding-top: 160px;
    }


    .home-hero h1 {
        font-size: 42px;
    }


    .home-hero p {
        font-size: 13px;
    }


    .about-image-card {
        height: 360px;
    }


    .home-tagline h2,
    .about-content h2,
    .projects-heading h2 {
        font-size: 35px;
    }
}


/* =========================================================
   SAFETY AGAINST HORIZONTAL OVERFLOW
========================================================= */

.row {
    --bs-gutter-x: 1.5rem;
}


.container-fluid {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}


[class*="col-"] {
    min-width: 0;
}


video {
    max-width: none;
}


iframe {
    border: 0;
    max-width: 100%;
}


/* Prevent decorative elements from creating horizontal scroll */

.home-hero *,
.home-about *,
.ongoing-projects *,
.why-us-section *,
.home-cta *,
.main-footer * {
    max-width: 100%;
}


/* Keep fixed floating button inside viewport */

.floating-whatsapp {
    max-width: none;
}


/* =====================================================
   AVATAR CITY - ABOUT ACTIONS
   ===================================================== */

.about-actions {
    display: block;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    flex-wrap: wrap;
}


/* =====================================================
   DISCOVER OUR STORY
   ===================================================== */

/* =========================================
   DISCOVER OUR STORY - PREMIUM BUTTON
========================================= */

.gold-text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
    padding: 13px 22px;
    color: #ffffff;
    background: linear-gradient( 135deg, #b8860b, #d4af37, #b8860b );
    border: 1px solid #e0c35a;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .3px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(184, 134, 11, 0.22), inset 0 1px 0 rgba(255,255,255,.35);
    transition: all .35s ease;
}

    /* Icon */

    .gold-text-link i {
        font-size: 13px;
        transition: transform .35s ease;
    }


    /* Hover */

    .gold-text-link:hover {
        color: #ffffff;
        background: linear-gradient( 135deg, #9c7308, #c9a227, #e0bd45 );
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(184, 134, 11, 0.32), inset 0 1px 0 rgba(255,255,255,.35);
    }


        /* Move icon on hover */

        .gold-text-link:hover i {
            transform: translate(4px, -3px);
        }


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .gold-text-link {
        padding: 12px 19px;
        font-size: 13px;
    }
}


/* =====================================================
   COMMON ACTION BUTTON
   ===================================================== */

.about-action-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-width: 175px;
    padding: 11px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    line-height: 1.15;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease, border-color .3s ease;
}


    /* Shine effect */

    .about-action-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -120%;
        width: 70%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255,255,255,.25), transparent );
        transform: skewX(-20deg);
        transition: left .6s ease;
    }

    .about-action-btn:hover::before {
        left: 150%;
    }


    /* =====================================================
   ICON
   ===================================================== */

    .about-action-btn .action-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 16px;
        transition: all .3s ease;
    }

    .about-action-btn span:last-child {
        display: flex;
        flex-direction: column;
        position: relative;
        z-index: 2;
    }

    .about-action-btn small {
        display: block;
        margin-bottom: 3px;
        font-size: 9px;
        font-weight: 600;
        letter-spacing: .7px;
        text-transform: uppercase;
        opacity: .75;
    }


/* =====================================================
   CALL NOW
   ===================================================== */

.call-btn {
    color: #9a7200;
    background: linear-gradient( 135deg, #fffdf5, #fff8df );
    border: 1px solid #d5b94b;
    box-shadow: 0 7px 20px rgba(184, 134, 11, .12);
}

    .call-btn .action-icon {
        color: #ffffff;
        background: linear-gradient( 135deg, #b8860b, #e4c34f );
        box-shadow: 0 4px 12px rgba(184, 134, 11, .25);
    }

    .call-btn:hover {
        color: #ffffff;
        background: linear-gradient( 135deg, #a67c00, #d4af37 );
        border-color: #b8860b;
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(184, 134, 11, .28);
    }

        .call-btn:hover .action-icon {
            background: rgba(255,255,255,.18);
            transform: scale(1.08) rotate(-8deg);
        }


/* =====================================================
   WHATSAPP
   ===================================================== */

.whatsapp-btn {
    color: #ffffff;
    background: linear-gradient( 135deg, #087b3a, #0ba34d );
    border: 1px solid #087b3a;
    box-shadow: 0 8px 22px rgba(0, 100, 45, .20);
}

    .whatsapp-btn .action-icon {
        color: #087b3a;
        background: #ffffff;
        box-shadow: 0 4px 12px rgba(0,0,0,.12);
    }

    .whatsapp-btn small {
        color: rgba(255,255,255,.82);
    }

    .whatsapp-btn:hover {
        color: #ffffff;
        background: linear-gradient( 135deg, #075f2d, #087b3a );
        transform: translateY(-4px);
        box-shadow: 0 14px 32px rgba(0, 100, 45, .30);
    }

        .whatsapp-btn:hover .action-icon {
            color: #ffffff;
            background: #c9a227;
            transform: scale(1.08);
        }


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 576px) {

    .about-actions {
        width: 100%;
        gap: 10px;
    }

    .about-action-btn {
        min-width: 0;
        flex: 1;
        padding: 10px 13px;
        gap: 8px;
    }

        .about-action-btn .action-icon {
            width: 37px;
            height: 37px;
            min-width: 37px;
        }

        .about-action-btn small {
            font-size: 8px;
        }

        .about-action-btn span:last-child {
            font-size: 14px;
        }
}


/* =====================================================
   VERY SMALL MOBILE
   ===================================================== */

@media (max-width: 380px) {

    .about-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .about-action-btn {
        width: 100%;
    }
}


/* =========================================================
   AVTAR CITY - WHY CHOOSE US
========================================================= */

.avtar-why-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff, #f1f9f5);
    background-image: url('../images/bg_why.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


    /* Decorative background circles */

    .avtar-why-section::before {
        content: "";
        position: absolute;
        width: 400px;
        height: 400px;
        top: -200px;
        left: -200px;
        border-radius: 50%;
        background: rgba(39, 120, 68, 0.05);
        pointer-events: none;
    }


    .avtar-why-section::after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        right: -180px;
        bottom: -180px;
        border-radius: 50%;
        background: rgba(198, 164, 74, 0.07);
        pointer-events: none;
    }


/* =========================================================
   SECTION LABEL
========================================================= */

.avtar-section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #287747;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
}


    .avtar-section-label span {
        width: 35px;
        height: 2px;
        display: inline-block;
        background: linear-gradient( 90deg, #287747, #c5a24a );
    }


/* =========================================================
   HEADING
========================================================= */

.avtar-title {
    color: #173d2a;
    letter-spacing: -1px;
}


    .avtar-title span {
        color: #287747;
        font-family: Georgia, "Times New Roman", serif;
        font-style: italic;
        font-weight: 500;
    }


.avtar-description {
    max-width: 850px;
    color: #66736b;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   FEATURE CARD
========================================================= */

.avtar-why-card {
    position: relative;
    padding: 30px 26px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(40, 119, 71, 0.10);
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(23, 61, 42, 0.07);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}


    /* Top gradient line */

    .avtar-why-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 4px;
        background: linear-gradient( 90deg, #287747, #67a87b, #c5a24a );
        transition: width 0.4s ease;
    }


    .avtar-why-card:hover {
        transform: translateY(-9px);
        border-color: rgba(40, 119, 71, 0.22);
        box-shadow: 0 25px 55px rgba(23, 61, 42, 0.14);
    }


        .avtar-why-card:hover::before {
            width: 100%;
        }


/* =========================================================
   ICON
========================================================= */

.avtar-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #ffffff;
    font-size: 22px;
    background: linear-gradient( 145deg, #2d8050, #174c30 );
    box-shadow: 0 10px 25px rgba(40, 119, 71, 0.22);
    transition: all 0.35s ease;
}


.avtar-why-card:hover .avtar-icon {
    transform: translateY(-3px) rotate(-5deg);
    box-shadow: 0 15px 30px rgba(40, 119, 71, 0.30);
}


/* =========================================================
   NUMBER
========================================================= */

.avtar-card-number {
    color: #e1ebe5;
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.avtar-why-card h3 {
    color: #173d2a;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 15px;
}


.avtar-why-card p {
    color: #68756d;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 22px;
}


/* =========================================================
   CARD BOTTOM
========================================================= */

.avtar-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #e6eee9;
}


    .avtar-card-bottom span {
        color: #287747;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 1px;
    }


    .avtar-card-bottom i {
        color: #c5a24a;
        font-size: 13px;
        transition: transform 0.3s ease;
    }


.avtar-why-card:hover
.avtar-card-bottom i {
    transform: translateX(6px);
}


/* =========================================================
   TRUST BOX
========================================================= */

.avtar-trust-box {
    overflow: hidden;
    background: linear-gradient( 135deg, #173d2a, #205c3b );
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(23, 61, 42, 0.16);
}


.avtar-trust-item {
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}


.avtar-trust-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #c5a24a;
    background: rgba(255, 255, 255, 0.08);
    font-size: 17px;
}


.avtar-trust-item strong {
    display: block;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 3px;
}


.avtar-trust-item small {
    display: block;
    color: rgba(255, 255, 255, 0.60);
    font-size: 11px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .avtar-why-section {
        background-attachment: scroll;
    }

    .avtar-trust-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .avtar-why-section {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }

    .avtar-section-label {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

        .avtar-section-label span {
            width: 20px;
        }

    .avtar-title {
        font-size: 30px;
        line-height: 1.2;
    }

    .avtar-description {
        font-size: 14px;
        line-height: 1.7;
    }

    .avtar-why-card {
        padding: 25px 22px;
        border-radius: 17px;
    }

        .avtar-why-card h3 {
            font-size: 18px;
        }

        .avtar-why-card p {
            font-size: 13px;
        }

    .avtar-trust-item {
        min-height: 78px;
        padding: 16px;
        border-right: 0;
    }
}