/* =========================================
   GLOBETECH REALTY - MAIN CSS
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Lora, sans-serif;
    background: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
}
/*start*/
/* ==========================================
   PROPERTY VIDEO BANNER
========================================== */

.property-video-banner {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
    background: #000;
}


/* YouTube Video */

.property-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}


/* Video ko banner me full cover karega */

.property-video-bg iframe {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 100vw;

    /* 16:9 YouTube video ratio */
    height: 56.25vw;

    min-width: 177.78vh;
    min-height: 100%;

    transform: translate(-50%, -50%);

    border: 0;

    pointer-events: none;
}


/* ==========================================
   DARK OVERLAY
========================================== */

.property-video-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.25);

    z-index: 1;
}


/* ==========================================
   BANNER CONTENT
========================================== */

.property-video-content {
    position: relative;

    z-index: 2;

    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 20px;

    color: #fff;
}


.property-video-content h1 {
    margin: 0 0 15px;

    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
}


.property-video-content p {
    margin: 0 0 25px;

    font-size: 20px;
}


/* ==========================================
   BUTTON
========================================== */

.video-banner-btn {
    display: inline-block;

    padding: 13px 30px;

    background: #ffffff;
    color: #111;

    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    border-radius: 4px;

    transition: 0.3s ease;
}


.video-banner-btn:hover {
    background: #111;
    color: #fff;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .property-video-banner {
        height: 520px;
    }

    .property-video-content h1 {
        font-size: 42px;
    }

    .property-video-content p {
        font-size: 18px;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .property-video-banner {
        height: 450px;
    }

    .property-video-content {
        padding: 20px 15px;
    }

    .property-video-content h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .property-video-content p {
        font-size: 16px;
        line-height: 1.6;
    }

    .video-banner-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .property-video-banner {
        height: 400px;
    }

    .property-video-content h1 {
        font-size: 27px;
    }

    .property-video-content p {
        font-size: 15px;
    }
}


.property-video-banner {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #000;
}

.property-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}


/* Tablet */
@media (max-width: 991px) {
    .property-video-banner {
        height: 500px;
    }
}


/* Mobile */
@media (max-width: 767px) {
    .property-video-banner {
        height: 400px;
    }

    .property-bg-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
/*hero section end*/

/* =========================================
   GLOBETECH REALTY HEADER
========================================= */

.main-header {
    width: 100%;
    background: #ffffff;
    position: relative;
    z-index: 9999;
    /*box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);*/
}

.main-header .container {
    max-width: 1200px;
    height: 100px;
}

.header-wrapper {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =========================================
   LOGO
========================================= */

.site-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo img {
    width: 255px;
    height: auto;
    display: block;
}


/* =========================================
   NAVIGATION
========================================= */

.main-nav {
    margin-left: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 34px;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #121212;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 31px 0;
    transition: 0.3s ease;
    white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: #199BB7;
}

.nav-menu i {
    font-size: 10px;
}


/* =========================================
   DROPDOWN
========================================= */

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #ffffff;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);

    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: 0.3s ease;
}

.dropdown-menu-custom li a {
    display: block;
    padding: 11px 18px;
    color: #222222;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
}

.dropdown-menu-custom li a:hover {
    color: #fff;
    background: #199BB7;
}

.has-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* =========================================
   ENQUIRY BUTTON
========================================= */

.header-enquiry-btn {
    min-width: 140px;
    min-height: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #89C53A;
    color: #000;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    /*box-shadow: 0 8px 20px rgba(248, 187, 24, 0.28);*/
    transition: 0.3s ease;
    flex-shrink: 0;
}

.header-enquiry-btn:hover {
    background: #199BB7;
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.menu-toggle {
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;

    display: none;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #111111;
    display: block;
    transition: 0.3s;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .header-wrapper {
        min-height: 75px;
    }

    .menu-toggle {
        display: flex;
        order: 3;
    }

    .header-enquiry-btn {
        margin-left: auto;
        min-width: 135px;
        min-height: 44px;
        font-size: 14px;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;

        width: 100%;

        background: #ffffff;

        padding: 15px 20px 25px;

        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);

        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid #eeeeee;
    }

    .nav-menu > li > a {
        justify-content: space-between;
        padding: 14px 5px;
        font-size: 15px;
    }

    .dropdown-menu-custom {
        position: static;

        width: 100%;

        opacity: 1;
        visibility: visible;
        transform: none;

        display: none;

        box-shadow: none;

        padding: 0 0 10px 15px;
    }

    .has-dropdown.open .dropdown-menu-custom {
        display: block;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .main-header .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .header-wrapper {
        gap: 10px;
        min-height: 68px;
    }

    .site-logo img {
        width: 125px;
    }

    .header-enquiry-btn {
        display: none;
    }

    .menu-toggle {
        margin-left: auto;
    }
}
/* =========================================
   REALTY INTRO SECTION
========================================= */

.realty-intro-section {
    width: 100%;
    background: #ffffff;
    padding: 70px 20px;
    overflow: hidden;
}


/* MAIN CONTAINER */

.realty-intro-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1.05fr;
    align-items: center;

    gap: 70px;
}


/* =========================================
   LEFT CONTENT
========================================= */

.realty-intro-content {
    width: 100%;
}


.realty-intro-content h2 {
    margin: 0 0 18px;
    font-size: 35px;
    line-height: 1.15;
    font-weight: 700;
    color: #050505;
    font-family: Georgia, "Times New Roman", serif;
}


.realty-intro-content h2 span {
    display: block;
    color: #199BB7;
}


.realty-intro-content > p {
    max-width: 500px;
    margin: 0 0 25px;
    font-size: 14px;
    line-height: 1.6;
    color: #000;
    text-align: justify;
}


/* =========================================
   BUTTONS
========================================= */

.realty-buttons {
    display: flex;
    align-items: center;
    gap: 15px;

    flex-wrap: wrap;

    margin-top: 25px;
}


.realty-btn {
    min-width: 165px;

    min-height: 52px;

    padding: 13px 26px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    border-radius: 8px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 600;

    transition: all 0.3s ease;
}


/* PRIMARY */

.realty-btn-primary {
    background: #24558c;
    color: #ffffff;

    border: 2px solid #24558c;
}


.realty-btn-primary:hover {
    background: #163f70;
    border-color: #163f70;

    transform: translateY(-2px);
}


/* OUTLINE */

.realty-btn-outline {
    background: transparent;

    color: #111111;

    border: 2px solid #24558c;
}


.realty-btn-outline:hover {
    background: #24558c;
    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================
   STATS / COUNTERS
========================================= */

.realty-stats {
    margin-top: 35px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


.realty-stat-item {
    text-align: center;
}


.realty-stat-icon {
    width: 42px;
    height: 42px;

    margin: 0 auto 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 23px;

    color: #24558c;
}


.realty-stat-item h3 {
    margin: 0;

    font-size: 26px;
    line-height: 1.2;

    font-weight: 700;

    color: #000000;
}


.realty-stat-item p {
    margin: 7px 0 0;

    font-size: 14px;

    color: #666666;
}


/* =========================================
   RIGHT IMAGE COLLAGE
========================================= */

.realty-intro-images {
    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}


.realty-left-images {
    display: grid;

    grid-template-rows: 1fr 1fr;

    gap: 15px;
}


.realty-image-box {
    width: 100%;

    overflow: hidden;

    border-radius: 10px;

    background: #eeeeee;
}


.realty-image-box img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}


.realty-image-box:hover img {
    transform: scale(1.04);
}


.realty-image-small {
    height: 220px;
}


.realty-image-large {
    height: 455px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .realty-intro-section {
        padding: 55px 20px;
    }


    .realty-intro-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .realty-intro-content {
        text-align: center;
    }


    .realty-intro-content h2 {
        font-size: 40px;
    }


    .realty-intro-content > p {
        margin-left: auto;
        margin-right: auto;
    }


    .realty-buttons {
        justify-content: center;
    }


    .realty-intro-images {
        max-width: 700px;

        margin: 0 auto;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .realty-intro-section {
        padding: 45px 15px;
    }


    .realty-intro-container {
        gap: 35px;
    }


    .realty-intro-content h2 {
        font-size: 32px;

        line-height: 1.2;
    }


    .realty-intro-content > p {
        font-size: 15px;

        line-height: 1.65;
    }


    /* BUTTONS FULL WIDTH */

    .realty-buttons {
        width: 100%;

        flex-direction: column;

        gap: 12px;
    }


    .realty-btn {
        width: 100%;
        max-width: 420px;
    }


    /* COUNTERS */

    .realty-stats {
        grid-template-columns: repeat(3, 1fr);

        gap: 8px;

        margin-top: 30px;
    }


    .realty-stat-item h3 {
        font-size: 22px;
    }


    .realty-stat-item p {
        font-size: 12px;
    }


    .realty-stat-icon {
        width: 35px;
        height: 35px;

        font-size: 20px;
    }


    /* MOBILE IMAGE COLLAGE */

    .realty-intro-images {
        grid-template-columns: 1fr;

        gap: 12px;
    }


    .realty-left-images {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;

        gap: 12px;

        order: 2;
    }


    .realty-image-large {
        height: 300px;

        order: 1;
    }


    .realty-image-small {
        height: 180px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .realty-intro-section {
        padding: 35px 12px;
    }


    .realty-intro-content h2 {
        font-size: 28px;
    }


    .realty-intro-content > p {
        font-size: 14px;
    }


    .realty-stats {
        gap: 5px;
    }


    .realty-stat-item h3 {
        font-size: 20px;
    }


    .realty-stat-item p {
        font-size: 11px;
    }


    .realty-image-large {
        height: 250px;
    }


    .realty-image-small {
        height: 145px;
    }

}

/* =========================================
   WELCOME SECTION
========================================= */

.welcome-section {
    width: 100%;
    background: #ffffff;
    padding: 30px 20px 20px;
}

.welcome-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* HEADING */

.welcome-heading {
    text-align: center;
    margin-bottom: 10px;
}

.welcome-heading h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    line-height: 1.2;

    font-weight: 500;
    color: #000000;
}

.welcome-heading h2 span {
    color: #199BB7 ;
}


/* YELLOW UNDERLINE */

.welcome-line {
    width: 60px;
    height: 4px;

    background: #199BB7 ;

    border-radius: 10px;

    margin: 12px auto 0;
}


/* CONTENT */

.welcome-content {
    margin-top: 10px;
}

.welcome-content p {
    margin: 0 0 14px;

    font-size: 16px;
    line-height: 1.5;

    font-weight: 400;

    color: #636a76;

    text-align: justify;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .welcome-section {
        padding: 35px 25px;
    }

    .welcome-heading h2 {
        font-size: 34px;
    }

    .welcome-content p {
        font-size: 15px;
        line-height: 1.65;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .welcome-section {
        padding: 30px 16px;
    }

    .welcome-heading {
        margin-bottom: 20px;
    }

    .welcome-heading h2 {
        font-size: 29px;
        line-height: 1.3;
    }

    .welcome-line {
        width: 50px;
        height: 3px;
        margin-top: 10px;
    }

    .welcome-content {
        margin-top: 0;
    }

    .welcome-content p {
        font-size: 14px;
        line-height: 1.75;

        text-align: justify;

        margin-bottom: 18px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .welcome-section {
        padding: 25px 14px;
    }

    .welcome-heading h2 {
        font-size: 25px;
    }

    .welcome-content p {
        font-size: 13.5px;
        line-height: 1.7;
    }

}

/* =========================================
   POPULAR LOCATION SECTION
========================================= */

.popular-location-section {
    width: 100%;
    background: #ffffff;
    padding: 45px 20px 55px;
}

.popular-location-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.popular-location-heading {
    text-align: center;
    margin-bottom: 28px;
}

.popular-location-heading h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 31px;
    line-height: 1.2;

    font-weight: 600;
    color: #050505;
}

.popular-location-heading span {
    display: block;

    width: 60px;
    height: 4px;

    background: #f4b51e;

    margin: 12px auto 10px;

    border-radius: 20px;
}

.popular-location-heading p {
    margin: 0 auto;

    max-width: 1100px;

    font-size: 16px;
    line-height: 1.6;

    color: #64707c;
}


/* =========================================
   MAIN GRID
========================================= */

.popular-location-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 23px;
}


/* =========================================
   LOCATION CARD
========================================= */

.location-card {
    position: relative;

    display: block;

    width: 100%;

    overflow: hidden;

    border-radius: 10px;

    text-decoration: none;

    background: #ddd;
}

.location-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}


/* DARK OVERLAY */

.location-overlay {
    position: absolute;

    inset: 0;

    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.05) 35%,
        rgba(0, 0, 0, 0.82) 100%
    );

    transition: background 0.3s ease;
}


/* CARD CONTENT */

.location-content {
    position: absolute;

    bottom: 23px;
    right: 22px;

    z-index: 2;

    text-align: center;

    color: #ffffff;
}

.location-content h3 {
    margin: 0 0 4px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 21px;
    line-height: 1.2;

    font-weight: 700;

    color: #ffffff;
}

.location-content p {
    margin: 0;

    font-size: 13px;
    line-height: 1.4;

    color: #ffffff;
}


/* =========================================
   LARGE CARD
========================================= */

.location-card-large {
    min-height: 370px;
}


/* =========================================
   SMALL GRID
========================================= */

.location-small-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px 23px;
}

.location-card-small {
    min-height: 175px;
}

.location-card-small .location-content {
    width: 100%;

    bottom: 25px;
    right: 0;

    padding: 0 12px;

    text-align: center;
}

.location-card-small .location-content h3 {
    font-size: 20px;
}


/* =========================================
   HOVER
========================================= */

.location-card:hover img {
    transform: scale(1.06);
}

.location-card:hover .location-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.08) 20%,
        rgba(0, 0, 0, 0.9) 100%
    );
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .popular-location-section {
        padding: 40px 20px;
    }

    .popular-location-heading h2 {
        font-size: 29px;
    }

    .popular-location-heading p {
        font-size: 15px;
    }

    .popular-location-grid {
        grid-template-columns: 1fr;
    }

    .location-card-large {
        min-height: 400px;
    }

    .location-small-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-card-small {
        min-height: 220px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .popular-location-section {
        padding: 35px 15px;
    }

    .popular-location-heading {
        margin-bottom: 22px;
    }

    .popular-location-heading h2 {
        font-size: 27px;
    }

    .popular-location-heading span {
        width: 50px;
        height: 3px;
    }

    .popular-location-heading p {
        font-size: 14px;
        line-height: 1.65;
    }


    /* LARGE CARD */

    .location-card-large {
        min-height: 300px;
    }


    /* SMALL CARDS */

    .location-small-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .location-card-small {
        min-height: 230px;
    }


    /* CONTENT */

    .location-content,
    .location-card-small .location-content {
        width: 100%;

        right: 0;
        bottom: 20px;

        padding: 0 15px;

        text-align: center;
    }

    .location-content h3,
    .location-card-small .location-content h3 {
        font-size: 20px;
    }

    .location-content p {
        font-size: 13px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .popular-location-section {
        padding: 30px 12px;
    }

    .popular-location-heading h2 {
        font-size: 24px;
    }

    .popular-location-heading p {
        font-size: 13.5px;
    }

    .popular-location-grid {
        gap: 14px;
    }

    .location-card-large {
        min-height: 250px;
    }

    .location-card-small {
        min-height: 200px;
    }

    .location-content h3,
    .location-card-small .location-content h3 {
        font-size: 18px;
    }

    .location-content p {
        font-size: 12px;
    }

}

/* =========================================
   WHY CHOOSE SECTION
========================================= */

.why-choose-section {
    width: 100%;
    background: #ffffff;
    padding: 70px 20px;
    overflow: hidden;
}

.why-choose-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 12px;

    align-items: center;
}


/* =========================================
   LEFT CONTENT
========================================= */

.why-content {
    position: relative;
    z-index: 2;
}

.section-heading {
    margin-bottom: 18px;
}

.section-heading h2 {
    margin: 0;
    color: #050505;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    font-weight: 600;

    line-height: 1.25;
}

.heading-line {
    display: block;
    width: 60px;
    height: 4px;

    background: #f7b500;

    margin: 13px 0 14px;

    border-radius: 10px;
}

.section-heading p {
    margin: 0;

    max-width: 590px;

    color: #536276;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.5;
}


/* =========================================
   CARDS
========================================= */

.choose-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #ffffff;
    border: 1px solid #199BB7;
    border-radius: 14px;
    padding: 22px 25px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.choose-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.07);

    border-color: #89C53A;
}


/* ICON */

.choose-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #199BB7;
    font-size: 27px;
    margin-top: 4px;
}

.choose-icon i {
    line-height: 1;
}


/* CARD TEXT */

.choose-text {
    flex: 1;
}

.choose-text h3 {
    margin: 0 0 7px;

    color: #080808;

    font-size: 20px;
    font-weight: 700;

    line-height: 1.3;
}

.choose-text p {
    margin: 0;

    color: #39485b;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.55;
}


/* =========================================
   RIGHT IMAGE SECTION
========================================= */

.why-images {
    position: relative;

    min-height: 520px;

    display: flex;
    align-items: center;
}


/* LIGHT BACKGROUND SHAPE */

.image-shape {
    position: absolute;

    width: 590px;
    height: 470px;

    left: -20px;
    top: 50%;

    transform: translateY(-50%);

    background: #f8f8f8;

    border-radius:
        48% 52% 54% 46% /
        50% 40% 60% 50%;

    z-index: 0;
}


/* IMAGE GRID */

.image-grid {
    position: relative;
    z-index: 2;

    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;

    align-items: center;
}


/* IMAGE */

.why-image {
    overflow: hidden;

    border-radius: 11px;

    background: #eee;
}

.why-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.45s ease;
}

.why-image:hover img {
    transform: scale(1.06);
}


/* CUSTOM HEIGHTS */

.why-image-1 {
    height: 225px;
}

.why-image-2 {
    height: 150px;

    margin-top: 75px;
}

.why-image-3 {
    height: 150px;
}

.why-image-4 {
    height: 225px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .why-choose-section {
        padding: 55px 20px;
    }

    .why-choose-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .section-heading p {
        max-width: 100%;
    }

    .why-images {
        width: 100%;
        max-width: 700px;

        margin: 0 auto;

        min-height: auto;
    }

    .image-shape {
        width: 95%;
        height: 90%;

        left: 50%;
        top: 50%;

        transform: translate(-50%, -50%);
    }

    .image-grid {
        padding: 30px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .why-choose-section {
        padding: 45px 15px;
    }

    .section-heading {
        margin-bottom: 22px;
    }

    .section-heading h2 {
        font-size: 27px;
    }

    .heading-line {
        width: 52px;
        height: 3px;

        margin-top: 10px;
    }

    .section-heading p {
        font-size: 15px;
        line-height: 1.6;
    }


    /* CARD */

    .choose-card {
        gap: 14px;

        padding: 20px 17px;

        border-radius: 12px;

        margin-bottom: 15px;
    }

    .choose-icon {
        flex: 0 0 30px;

        width: 30px;
        height: 30px;

        font-size: 24px;
    }

    .choose-text h3 {
        font-size: 18px;
    }

    .choose-text p {
        font-size: 14px;
        line-height: 1.6;
    }


    /* IMAGE AREA */

    .why-images {
        min-height: auto;
    }

    .image-grid {
        padding: 15px;

        gap: 12px;
    }

    .image-shape {
        width: 100%;
        height: 90%;
    }

    .why-image-1,
    .why-image-4 {
        height: 180px;
    }

    .why-image-2,
    .why-image-3 {
        height: 135px;
    }

    .why-image-2 {
        margin-top: 45px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .why-choose-section {
        padding: 38px 12px;
    }

    .section-heading h2 {
        font-size: 24px;
    }

    .section-heading p {
        font-size: 14px;
    }


    /* CARDS */

    .choose-card {
        padding: 18px 14px;

        gap: 11px;
    }

    .choose-text h3 {
        font-size: 17px;
    }

    .choose-text p {
        font-size: 13.5px;
    }


    /* IMAGES */

    .image-grid {
        padding: 8px;

        gap: 8px;
    }

    .why-image {
        border-radius: 8px;
    }

    .why-image-1,
    .why-image-4 {
        height: 145px;
    }

    .why-image-2,
    .why-image-3 {
        height: 110px;
    }

    .why-image-2 {
        margin-top: 35px;
    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 360px) {

    .choose-card {
        flex-direction: column;
    }

    .choose-icon {
        margin-bottom: 2px;
    }

}
/* =========================================
   FEATURED APARTMENTS
========================================= */

.featured-apartments {
    width: 100%;
    background: #fafafa;
    padding: 55px 20px 35px;
}

.featured-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.featured-heading {
    text-align: center;
    margin-bottom: 18px;
}

.featured-heading h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    font-weight: 600;

    color: #050505;
}

.featured-heading > span {
    width: 61px;
    height: 4px;

    display: block;

    margin: 11px auto 14px;

    background: #f2b700;

    border-radius: 10px;
}

.featured-heading p {
    max-width: 1180px;

    margin: 0 auto;

    font-size: 16px;
    line-height: 1.55;

    color: #607080;
}


/* =========================================
   GRID
========================================= */

.apartments-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/* =========================================
   PROPERTY CARD
========================================= */

.property-card {
    background: #ffffff;

    border-radius: 8px;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.06);

    transition: all 0.35s ease;
}

.property-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.12);
}


/* =========================================
   PROPERTY IMAGE
========================================= */

.property-image {
    position: relative;

    width: 100%;
    height: 225px;

    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.45s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}


/* =========================================
   FEATURED RIBBON
========================================= */

.featured-ribbon {
    position: absolute;

    top: 10px;
    left: -42px;

    width: 145px;

    padding: 6px 0;

    background: #215d99;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    text-align: center;

    transform: rotate(-45deg);

    z-index: 3;
}


/* =========================================
   SALE BADGE
========================================= */

.sale-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 7px 17px;
    background: #89C53A;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    border-radius: 5px;
    z-index: 2;
}


/* =========================================
   CARD BODY
========================================= */

.property-body {
    padding: 14px 25px 15px;
}


/* META */

.property-meta {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 10px;
}

.property-type {
    display: flex;

    align-items: center;

    gap: 7px;

    color: #747c86;

    font-size: 16px;
}

.property-type i {
    color: #1f4f86;

    font-size: 15px;
}

.property-bhk {
    color: #082e79;

    font-size: 16px;
    font-weight: 700;
}


/* DIVIDER */

.property-divider {
    height: 1px;

    background: #e5e5e5;

    margin: 15px 0 18px;
}


/* PROPERTY TITLE */

.property-body h3 {
    margin: 0 0 16px;
    color: #199BB7;
    font-family: Lora, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}


/* LOCATION */

.property-location {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #777f89;

    font-size: 15px;
}

.property-location i {
    color: #89C53A;
    font-size: 15px;
}


/* =========================================
   PRICE + BUTTON
========================================= */

.property-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;
}

.property-price {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #151515;

    font-size: 17px;
}

.property-price .rupee {
    color: #89C53A;

    font-size: 20px;
}

.property-price strong {
    font-weight: 700;
}


/* VIEW BUTTON */

.details-btn {
    min-width: 150px;
    min-height: 46px;
    padding: 10px 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-decoration: none;
    background: #285f98;
    color: #ffffff;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    box-shadow:0 5px 12px rgba(35, 91, 150, 0.22);
    transition: all 0.3s ease;
}

.details-btn:hover {
    background: #174c84;

    transform: translateY(-2px);
}


/* =========================================
   BOTTOM NAVIGATION
========================================= */

.featured-navigation {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 18px;

    margin-top: 40px;
}

.nav-arrow {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    background: #275d95;

    color: #ffffff;

    cursor: pointer;

    font-size: 14px;

    transition: all 0.3s ease;
}

.nav-arrow:hover {
    transform: scale(1.08);

    background: #174c84;
}

.explore-btn {
    padding: 12px 22px;

    border-radius: 28px;

    background: #275d95;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: 0.3s;
}

.explore-btn:hover {
    background: #174c84;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .featured-apartments {
        padding: 50px 20px 35px;
    }

    .apartments-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .property-image {
        height: 220px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .featured-apartments {
        padding: 40px 15px 30px;
    }

    .featured-heading h2 {
        font-size: 27px;
    }

    .featured-heading p {
        font-size: 14px;

        line-height: 1.6;
    }

    .apartments-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .property-card {
        max-width: 500px;

        width: 100%;

        margin: 0 auto;
    }

    .property-image {
        height: 235px;
    }

    .property-body {
        padding: 16px 20px 18px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .featured-apartments {
        padding:
            35px 12px 30px;
    }

    .featured-heading {
        margin-bottom: 22px;
    }

    .featured-heading h2 {
        font-size: 24px;
    }

    .featured-heading > span {
        width: 50px;
        height: 3px;
    }

    .featured-heading p {
        font-size: 13.5px;
    }


    /* IMAGE */

    .property-image {
        height: 205px;
    }

    .sale-badge {
        top: 18px;
        right: 15px;

        padding: 6px 13px;

        font-size: 12px;
    }

    .featured-ribbon {
        font-size: 12px;
    }


    /* BODY */

    .property-body {
        padding: 14px 16px 17px;
    }

    .property-type,
    .property-bhk {
        font-size: 14px;
    }

    .property-body h3 {
        font-size: 20px;

        margin-bottom: 14px;
    }

    .property-location {
        font-size: 14px;
    }


    /* PRICE + BUTTON */

    .property-bottom {
        gap: 10px;
    }

    .property-price {
        font-size: 15px;
    }

    .property-price .rupee {
        font-size: 18px;
    }

    .details-btn {
        min-width: 130px;
        min-height: 43px;

        padding: 8px 13px;

        font-size: 13px;

        gap: 10px;
    }


    /* NAVIGATION */

    .featured-navigation {
        margin-top: 28px;

        gap: 12px;
    }

    .nav-arrow {
        width: 38px;
        height: 38px;
    }

    .explore-btn {
        padding: 10px 18px;

        font-size: 13px;
    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 360px) {

    .property-image {
        height: 180px;
    }

    .property-meta {
        align-items: flex-start;
    }

    .property-bottom {
        flex-direction: column;

        align-items: flex-start;
    }

    .details-btn {
        width: 100%;
    }

}
.apartments-slider {
    width: 100%;
    overflow: hidden;
}

.apartments-grid {
    display: flex;
    gap: 25px;
    transition: transform 0.6s ease;
}

.property-card {
    flex: 0 0 calc((100% - 50px) / 3);
    min-width: 0;
}

/* Tablet */

@media (max-width: 991px) {

    .property-card {
        flex: 0 0 calc((100% - 25px) / 2);
    }

}


/* Mobile */

@media (max-width: 767px) {

    .apartments-grid {
        gap: 15px;
    }

    .property-card {
        flex: 0 0 100%;
    }

}

/* =========================================
   WHAT WE DO SECTION
========================================= */

.what-we-do-section {
    width: 100%;
    background: #ffffff;
    padding: 48px 20px;
}


/* Main Container */

.what-we-do-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.what-we-do-heading {
    text-align: center;
    margin-bottom: 18px;
}


.what-we-do-heading h2 {
    margin: 0;

    font-size: 32px;
    line-height: 1.2;

    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;

    color: #050505;
}


/* Small line */

.what-we-do-heading span {
    display: block;

    width: 48px;
    height: 3px;

    margin: 12px auto 12px;

    background: #e5b400;
}


.what-we-do-heading p {
    max-width: 1120px;

    margin: 0 auto;

    font-size: 16px;
    line-height: 1.55;

    font-weight: 400;

    color: #606b7a;
}


/* =========================================
   GRID
========================================= */

.what-we-do-grid {
    display: grid;

    /*grid-template-columns: repeat(4, 1fr);*/
    grid-template-columns: repeat(3, 1fr);

    gap: 24px;

    margin-top: 16px;
}


/* =========================================
   SERVICE CARD
========================================= */

.service-card {
    min-height: 382px;
    padding: 24px 26px 25px;
    background: #ffffff;
    border: 1px solid #199BB7;
    border-radius: 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.service-card:hover {
    transform: translateY(-6px);

    border-color: #89C53A;

    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.10);
}


/* Card Heading */

.service-card h3 {
    margin: 0 0 15px;

    text-align: center;

    font-family: Lora, sans-serif;

    font-size: 16px;
    line-height: 1.15;

    font-weight: 700;

    color: #050505;
}


/* Card Paragraph */

.service-card p {
    margin: 0 0 16px;

    text-align:justify;

    font-size: 14px;
    line-height: 1.5;

    color: #687381;
}


/* =========================================
   LIST
========================================= */

.service-card ul {
    list-style: none;

    padding: 0;

    margin: 0;
}


.service-card ul li {
    position: relative;

    padding-left: 30px;

    margin-bottom: 10px;

    font-size: 15px;
    line-height: 1.35;

    color: #697382;
}


/* Green Check */

.service-card ul li::before {
    content: "✓";

    position: absolute;

    left: 0;
    top: 0;

    color: #009b4c;

    font-size: 16px;
    font-weight: 700;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .what-we-do-section {
        padding: 45px 20px;
    }


    .what-we-do-heading h2 {
        font-size: 30px;
    }


    .what-we-do-heading p {
        font-size: 15px;

        max-width: 800px;
    }


    .what-we-do-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 22px;
    }


    .service-card {
        min-height: auto;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .what-we-do-section {
        padding: 38px 15px;
    }


    .what-we-do-heading {
        margin-bottom: 24px;
    }


    .what-we-do-heading h2 {
        font-size: 27px;
    }


    .what-we-do-heading span {
        width: 42px;

        margin-top: 10px;
        margin-bottom: 12px;
    }


    .what-we-do-heading p {
        font-size: 15px;

        line-height: 1.65;

        padding: 0 4px;
    }


    .what-we-do-grid {
        grid-template-columns: 1fr;

        gap: 18px;

        margin-top: 0;
    }


    .service-card {
        width: 100%;

        min-height: auto;

        padding: 25px 22px;

        border-radius: 10px;
    }


    .service-card h3 {
        font-size: 20px;

        margin-bottom: 14px;
    }


    .service-card p {
        font-size: 15px;

        line-height: 1.6;

        margin-bottom: 18px;
    }


    .service-card ul li {
        font-size: 15px;

        margin-bottom: 11px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .what-we-do-section {
        padding: 32px 12px;
    }


    .what-we-do-heading h2 {
        font-size: 25px;
    }


    .what-we-do-heading p {
        font-size: 14px;
    }


    .service-card {
        padding: 22px 18px;
    }


    .service-card h3 {
        font-size: 19px;

        line-height: 1.25;
    }


    .service-card p {
        font-size: 14px;
    }


    .service-card ul li {
        font-size: 14px;

        padding-left: 27px;
    }

}
.what-we-do-section {
    font-family: "Poppins", sans-serif;
}

/*our workflow start*/
/* =========================================
   OUR WORKFLOW SECTION
========================================= */

.workflow-section {
    width: 100%;
    background: #ffffff;
    padding: 28px 20px 70px;
    overflow: hidden;
}

.workflow-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.workflow-heading {
    text-align: center;
    margin-bottom: 68px;
}

.workflow-heading h2 {
    margin: 0 0 8px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;

    color: #050505;
}

.workflow-heading p {
    max-width: 1130px;
    margin: 0 auto;

    font-size: 16px;
    line-height: 1.55;
    font-weight: 400;

    color: #727c87;
}


/* =========================================
   WORKFLOW ROW
========================================= */

.workflow-row {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 45px;
}


/* Dotted Connecting Line */

.workflow-row::before {
    content: "";

    position: absolute;

    top: 42px;
    left: 10%;
    right: 10%;

    height: 70px;

    background-image:
        radial-gradient(
            circle,
            #d1d1d1 2px,
            transparent 2.5px
        );

    background-size: 12px 4px;

    opacity: 0.8;

    z-index: 0;

    transform: rotate(0deg);

    pointer-events: none;

    clip-path: polygon(
        0 40%,
        15% 15%,
        30% 45%,
        42% 70%,
        55% 20%,
        68% 5%,
        82% 45%,
        100% 75%,
        100% 85%,
        82% 55%,
        68% 15%,
        55% 30%,
        42% 80%,
        30% 55%,
        15% 25%,
        0 50%
    );
}


/* =========================================
   WORKFLOW ITEM
========================================= */

.workflow-item {
    position: relative;

    z-index: 2;

    text-align: center;
}


/* =========================================
   STEP NUMBER
========================================= */

.step-number {
    width: 33px;
    height: 33px;

    margin: 0 auto 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f7ba1e;

    border-radius: 50%;

    color: #ffffff;

    font-size: 16px;
    font-weight: 700;

    position: relative;
    z-index: 3;
}


/* =========================================
   ICON
========================================= */

.workflow-icon {
    width: 95px;
    height: 88px;

    margin: 0 auto 9px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    z-index: 3;

    background: #ffffff;
}

.workflow-icon img {
    width: 82px;
    height: 82px;

    object-fit: contain;

    display: block;
}


/* =========================================
   TITLE
========================================= */

.workflow-item h3 {
    margin: 0 0 8px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 23px;
    line-height: 1.2;
    font-weight: 400;

    color: #121212;
}


/* =========================================
   DESCRIPTION
========================================= */

.workflow-item p {
    max-width: 250px;

    margin: 0 auto;

    font-size: 16px;
    line-height: 1.5;

    color: #737d88;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .workflow-section {
        padding: 45px 20px 60px;
    }

    .workflow-heading {
        margin-bottom: 48px;
    }

    .workflow-heading h2 {
        font-size: 30px;
    }

    .workflow-heading p {
        font-size: 15px;
    }


    .workflow-row {
        grid-template-columns: repeat(2, 1fr);

        gap: 50px 35px;
    }


    /* Desktop dotted line hide */

    .workflow-row::before {
        display: none;
    }


    .workflow-item p {
        max-width: 300px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .workflow-section {
        padding: 35px 15px 45px;
    }


    .workflow-heading {
        margin-bottom: 35px;
    }


    .workflow-heading h2 {
        font-size: 27px;

        margin-bottom: 10px;
    }


    .workflow-heading p {
        font-size: 14px;
        line-height: 1.7;

        padding: 0 5px;
    }


    .workflow-row {
        display: block;
    }


    .workflow-item {
        position: relative;

        max-width: 420px;

        margin: 0 auto 45px;

        padding-bottom: 5px;
    }


    .workflow-item:last-child {
        margin-bottom: 0;
    }


    /* Vertical dotted line */

    .workflow-item:not(:last-child)::after {
        content: "";

        position: absolute;

        left: 50%;
        bottom: -39px;

        width: 2px;
        height: 32px;

        transform: translateX(-50%);

        background-image:
            linear-gradient(
                to bottom,
                #cfcfcf 45%,
                transparent 45%
            );

        background-size: 2px 8px;
    }


    .step-number {
        width: 32px;
        height: 32px;

        font-size: 15px;

        margin-bottom: 8px;
    }


    .workflow-icon {
        width: 90px;
        height: 85px;

        margin-bottom: 6px;
    }


    .workflow-icon img {
        width: 78px;
        height: 78px;
    }


    .workflow-item h3 {
        font-size: 22px;

        margin-bottom: 8px;
    }


    .workflow-item p {
        max-width: 320px;

        font-size: 15px;
        line-height: 1.6;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .workflow-section {
        padding: 30px 12px 40px;
    }


    .workflow-heading h2 {
        font-size: 25px;
    }


    .workflow-heading p {
        font-size: 14px;
    }


    .workflow-item {
        margin-bottom: 42px;
    }


    .workflow-icon {
        width: 82px;
        height: 80px;
    }


    .workflow-icon img {
        width: 72px;
        height: 72px;
    }


    .workflow-item h3 {
        font-size: 20px;
    }


    .workflow-item p {
        font-size: 14px;

        max-width: 290px;
    }

}
/*FAQ quotes start*/
/* =========================================
   FAQ SECTION
========================================= */

.faq-section {
    width: 100%;
    background: #ffffff;
    padding: 42px 20px 25px;
    overflow: hidden;
}


.faq-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.faq-heading {
    text-align: center;
    margin-bottom: 38px;
}


.faq-heading h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 30px;
    line-height: 1.3;

    font-weight: 500;

    color: #111111;
}


.faq-heading span {
    display: block;

    width: 60px;
    height: 4px;

    margin: 12px auto 10px;

    background: #f7b817;

    border-radius: 20px;
}


.faq-heading p {
    max-width: 1160px;

    margin: 0 auto;

    font-size: 16px;
    line-height: 1.5;

    color: #697481;
}


/* =========================================
   MAIN FAQ LAYOUT
========================================= */

.faq-wrapper {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 45px;

    align-items: center;
}


/* =========================================
   LEFT IMAGE
========================================= */

.faq-image {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}


.faq-image img {
    width: 100%;

    max-width: 590px;

    height: auto;

    display: block;

    object-fit: contain;
}


/* =========================================
   FAQ CONTENT
========================================= */

.faq-content {
    width: 100%;
}


/* =========================================
   FAQ ITEM
========================================= */

.faq-item {
    border-bottom: 1px solid #d9dde1;
}


/* =========================================
   QUESTION
========================================= */

.faq-question {
    width: 100%;

    min-height: 62px;

    padding: 14px 14px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border: none;

    background: transparent;

    cursor: pointer;

    text-align: left;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 18px;

    line-height: 1.4;

    color: #111111;

    transition: color 0.3s ease;
}


.faq-question:hover {
    color: #e0a300;
}


/* Arrow */

.faq-icon {
    flex-shrink: 0;

    font-family: Arial, sans-serif;

    font-size: 20px;

    font-weight: 600;

    transition: transform 0.3s ease;
}


/* Rotate when active */

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}


/* =========================================
   ANSWER
========================================= */

.faq-answer {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.4s ease,
        opacity 0.3s ease;
}


/* Open Answer */

.faq-item.active .faq-answer {
    max-height: 400px;

    opacity: 1;
}


.faq-answer p {
    margin: 0;

    padding: 5px 15px 30px;

    font-size: 16px;

    line-height: 1.5;

    text-align: justify;

    color: #67727e;
}


/* =========================================
   BOTTOM TEXT
========================================= */

.faq-bottom {
    margin-top: 20px;

    text-align: center;

    font-size: 15px;

    color: #6d7680;
}


.faq-bottom a {
    color: #f1aa00;

    text-decoration: none;

    font-weight: 500;
}


.faq-bottom a:hover {
    text-decoration: underline;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .faq-section {
        padding: 40px 20px 35px;
    }


    .faq-wrapper {
        grid-template-columns: 42% 58%;

        gap: 25px;
    }


    .faq-heading h2 {
        font-size: 28px;
    }


    .faq-heading p {
        font-size: 15px;
    }


    .faq-question {
        font-size: 16px;

        padding-left: 8px;
        padding-right: 8px;
    }


    .faq-answer p {
        font-size: 14px;

        padding-left: 8px;
        padding-right: 8px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .faq-section {
        padding: 35px 15px 30px;
    }


    .faq-heading {
        margin-bottom: 25px;
    }


    .faq-heading h2 {
        font-size: 26px;
    }


    .faq-heading span {
        width: 50px;

        height: 3px;
    }


    .faq-heading p {
        font-size: 14px;

        line-height: 1.65;

        padding: 0 4px;
    }


    /* Single column */

    .faq-wrapper {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    /* Image */

    .faq-image img {
        max-width: 420px;
    }


    /* Question */

    .faq-question {
        min-height: 58px;

        padding: 14px 5px;

        font-size: 16px;

        line-height: 1.45;
    }


    .faq-icon {
        font-size: 18px;
    }


    /* Answer */

    .faq-answer p {
        padding: 3px 5px 22px;

        font-size: 14px;

        line-height: 1.65;

        text-align: left;
    }


    .faq-bottom {
        margin-top: 25px;

        font-size: 14px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .faq-section {
        padding: 30px 12px 25px;
    }


    .faq-heading h2 {
        font-size: 24px;
    }


    .faq-heading p {
        font-size: 13px;
    }


    .faq-image img {
        max-width: 330px;
    }


    .faq-question {
        font-size: 15px;

        gap: 10px;

        padding-top: 13px;
        padding-bottom: 13px;
    }


    .faq-answer p {
        font-size: 13px;
    }

}

/* =========================================
   TESTIMONIAL SECTION
========================================= */

.testimonial-section {
    width: 100%;

    background: #f8f8f8;

    padding: 42px 20px 48px;

    overflow: hidden;
}


.testimonial-container {
    width: 100%;

    max-width: 1200px;

    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.testimonial-heading {
    text-align: center;

    margin-bottom: 28px;
}


.testimonial-heading h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 28px;

    line-height: 1.3;

    font-weight: 500;

    color: #111111;
}


.testimonial-heading span {
    display: block;

    width: 60px;

    height: 4px;

    background: #f7b817;

    margin: 12px auto 0;

    border-radius: 10px;
}


/* =========================================
   SLIDER
========================================= */

.testimonial-slider {
    width: 100%;

    overflow: hidden;
}


.testimonial-track {
    display: flex;

    gap: 20px;

    transition: transform 0.55s ease;

    will-change: transform;
}


/* =========================================
   TESTIMONIAL CARD
========================================= */

.testimonial-card {
    flex: 0 0 calc((100% - 40px) / 3);

    min-height: 240px;

    padding: 25px 20px 24px;

    background: #ffffff;

    border-radius: 15px;

    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.035);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.testimonial-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


/* =========================================
   USER
========================================= */

.testimonial-user {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 18px;
}


/* User Image */

.testimonial-image {
    width: 62px;

    height: 62px;

    flex-shrink: 0;

    padding: 2px;

    border: 2px solid #f8b500;

    border-radius: 50%;

    overflow: hidden;
}


.testimonial-image img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 50%;
}


/* =========================================
   USER INFO
========================================= */

.testimonial-info h3 {
    margin: 0 0 4px;

    font-size: 16px;

    line-height: 1.3;

    font-weight: 600;

    color: #111111;
}


.testimonial-info p {
    margin: 0 0 4px;

    font-size: 12px;

    color: #8a9098;
}


.testimonial-stars {
    font-size: 16px;

    line-height: 1;

    letter-spacing: 1px;

    color: #ffaf09;
}


/* =========================================
   TESTIMONIAL TEXT
========================================= */

.testimonial-text p {
    margin: 0;

    font-size: 15px;

    line-height: 1.5;

    font-style: italic;

    color: #707984;
}


/* =========================================
   NAVIGATION
========================================= */

.testimonial-navigation {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 20px;

    margin-top: 17px;
}


.testimonial-btn {
    width: 40px;

    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: #205d97;

    color: #ffffff;

    font-size: 20px;

    line-height: 1;

    cursor: pointer;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.testimonial-btn:hover {
    background: #174a79;

    transform: scale(1.06);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .testimonial-section {
        padding: 40px 20px;
    }


    .testimonial-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }


    .testimonial-heading h2 {
        font-size: 27px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .testimonial-section {
        padding: 35px 15px;
    }


    .testimonial-heading {
        margin-bottom: 24px;
    }


    .testimonial-heading h2 {
        font-size: 25px;
    }


    .testimonial-heading span {
        width: 50px;

        height: 3px;
    }


    .testimonial-track {
        gap: 0;
    }


    .testimonial-card {
        flex: 0 0 100%;

        min-height: auto;

        padding: 22px 18px;

        border-radius: 12px;
    }


    .testimonial-user {
        margin-bottom: 15px;
    }


    .testimonial-image {
        width: 58px;

        height: 58px;
    }


    .testimonial-info h3 {
        font-size: 16px;
    }


    .testimonial-text p {
        font-size: 14px;

        line-height: 1.6;
    }


    .testimonial-navigation {
        margin-top: 20px;

        gap: 15px;
    }


    .testimonial-btn {
        width: 38px;

        height: 38px;

        font-size: 18px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .testimonial-section {
        padding: 30px 12px;
    }


    .testimonial-heading h2 {
        font-size: 23px;
    }


    .testimonial-card {
        padding: 20px 16px;
    }


    .testimonial-image {
        width: 54px;

        height: 54px;
    }


    .testimonial-info h3 {
        font-size: 15px;
    }


    .testimonial-info p {
        font-size: 11px;
    }


    .testimonial-stars {
        font-size: 14px;
    }


    .testimonial-text p {
        font-size: 13px;
    }

}

/* =========================================
   SOCIAL MEDIA FEED
========================================= */

.social-feed-section {

    width: 100%;

    padding: 45px 20px 65px;

    background: #ffffff;

    overflow: hidden;
}


.social-feed-container {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.social-feed-heading {

    text-align: center;

    margin-bottom: 65px;
}


.social-feed-heading h2 {

    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 30px;

    line-height: 1.3;

    font-weight: 500;

    color: #111111;
}


.social-feed-heading span {

    display: block;

    width: 60px;

    height: 4px;

    margin: 12px auto 10px;

    background: #f3b51b;

    border-radius: 10px;
}


.social-feed-heading p {

    max-width: 1150px;

    margin: 0 auto;

    font-size: 16px;

    line-height: 1.5;

    color: #66717e;
}


/* =========================================
   SLIDER
========================================= */

.social-slider {

    position: relative;

    width: 100%;

    overflow: hidden;
}


.social-track {

    display: flex;

    gap: 10px;

    transition: transform 0.55s ease;

    will-change: transform;
}


/* =========================================
   CARD
========================================= */

.social-card {

    position: relative;

    flex: 0 0 calc((100% - 30px) / 4);

    height: 285px;

    overflow: hidden;

    text-decoration: none;

    background: #eeeeee;
}


.social-card img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.4s ease;
}


.social-card:hover img {

    transform: scale(1.05);
}


/* =========================================
   VIDEO ICON
========================================= */

.social-video-icon {

    position: absolute;

    top: 10px;

    right: 10px;

    width: 28px;

    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255, 255, 255, 0.9);

    color: #222;

    border-radius: 6px;

    font-size: 12px;

    opacity: 0.9;
}


/* =========================================
   NAVIGATION BUTTON
========================================= */

.social-btn {

    position: absolute;

    top: 50%;

    width: 44px;

    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    transform: translateY(-50%);

    border: none;

    border-radius: 50%;

    background: #f4b62a;

    color: #ffffff;

    font-size: 22px;

    cursor: pointer;

    z-index: 5;

    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);

    transition: 0.3s ease;
}


.social-btn:hover {

    background: #d99d13;
}


.social-prev {

    left: 10px;
}


.social-next {

    right: 10px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .social-feed-section {

        padding: 40px 20px 55px;
    }


    .social-feed-heading {

        margin-bottom: 40px;
    }


    .social-feed-heading h2 {

        font-size: 28px;
    }


    .social-feed-heading p {

        font-size: 15px;
    }


    .social-card {

        flex: 0 0 calc((100% - 15px) / 2);

        height: 320px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .social-feed-section {

        padding: 35px 15px 45px;
    }


    .social-feed-heading {

        margin-bottom: 30px;
    }


    .social-feed-heading h2 {

        font-size: 26px;
    }


    .social-feed-heading span {

        width: 50px;

        height: 3px;
    }


    .social-feed-heading p {

        font-size: 14px;

        line-height: 1.65;

        padding: 0 5px;
    }


    .social-track {

        gap: 0;
    }


    .social-card {

        flex: 0 0 100%;

        height: 390px;
    }


    .social-btn {

        width: 38px;

        height: 38px;

        font-size: 18px;
    }


    .social-prev {

        left: 8px;
    }


    .social-next {

        right: 8px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .social-feed-section {

        padding: 30px 12px 40px;
    }


    .social-feed-heading h2 {

        font-size: 24px;
    }


    .social-feed-heading p {

        font-size: 13px;
    }


    .social-card {

        height: 350px;
    }

}

/* =========================================
   PROPERTY ENQUIRY SECTION
========================================= */

.property-enquiry-section {
    width: 100%;
    padding: 55px 20px 65px;
    background-color: #0d172b;

    background-image:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.07) 1px,
            transparent 1px
        );

    background-size: 30px 30px;

    color: #ffffff;

    overflow: hidden;
}


.property-enquiry-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.property-enquiry-heading {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 28px;
}


.property-enquiry-heading h2 {
    margin: 0 0 14px;

    font-size: 34px;
    line-height: 1.25;

    font-family: Georgia, "Times New Roman", serif;

    font-weight: 700;

    color: #ffffff;
}


.property-enquiry-heading p {
    max-width: 1080px;

    margin: 0 auto;

    font-size: 18px;
    line-height: 1.5;

    color: #ffffff;

    font-weight: 500;
}


/* =========================================
   FORM BOX
========================================= */

.property-enquiry-box {
    max-width: 900px;

    margin: 0 auto 45px;

    padding: 28px 32px;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.13);

    border-radius: 17px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.12);

    backdrop-filter: blur(5px);
}


.property-form-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 16px;
}


/* Input Wrapper */

.property-form-group {
    position: relative;
}


/* Icons */

.property-form-group i {
    position: absolute;

    top: 50%;
    left: 16px;

    transform: translateY(-50%);

    font-size: 16px;

    color: rgba(255, 255, 255, 0.45);

    pointer-events: none;
}


/* Input */

.property-form-group input {
    width: 100%;

    height: 53px;

    padding: 0 15px 0 42px;

    border-radius: 10px;

    border: 1px solid rgba(255, 255, 255, 0.22);

    background: rgba(255, 255, 255, 0.08);

    color: #ffffff;

    font-size: 15px;

    outline: none;

    transition: 0.3s ease;
}


.property-form-group input::placeholder {
    color: rgba(255, 255, 255, 0.43);

    font-weight: 600;
}


.property-form-group input:focus {
    border-color: #ffbd1b;

    background: rgba(255, 255, 255, 0.11);

    box-shadow:
        0 0 0 3px rgba(255, 189, 27, 0.08);
}


/* =========================================
   BUTTON
========================================= */

.property-form-button {
    text-align: center;

    margin-top: 52px;
}


.property-form-button button {
    min-width: 140px;

    height: 44px;

    padding: 0 24px;

    border: none;

    border-radius: 6px;

    background: #ffbd18;

    color: #ffffff;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}


.property-form-button button:hover {
    background: #e7a800;

    transform: translateY(-2px);

    box-shadow:
        0 7px 18px rgba(255, 189, 24, 0.25);
}


/* =========================================
   CONTACT DETAILS
========================================= */

.property-contact-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 40px;

    align-items: start;

    margin-top: 10px;
}


.property-contact-item {
    text-align: center;
}


.contact-title {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    margin-bottom: 8px;
}


.contact-title i {
    font-size: 15px;

    color: #ffffff;
}


.contact-title h4 {
    margin: 0;

    font-size: 17px;

    font-family: Georgia, "Times New Roman", serif;

    font-weight: 700;

    color: #ffffff;
}


.property-contact-item a,
.property-contact-item p {
    display: inline-block;

    margin: 0;

    color: #ffffff;

    font-size: 18px;

    line-height: 1.5;

    font-weight: 500;

    text-decoration: none;
}


.property-contact-item a:hover {
    color: #ffbd18;
}


/* =========================================
   SOCIAL ICONS
========================================= */

.property-social-links {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 23px;

    margin-top: 35px;
}


.property-social-links a {
    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    font-size: 25px;

    text-decoration: none;

    transition: 0.3s ease;
}


.property-social-links a:hover {
    color: #ffbd18;

    transform: translateY(-3px);
}


/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .property-enquiry-section {
        padding: 50px 20px;
    }


    .property-enquiry-heading h2 {
        font-size: 30px;
    }


    .property-enquiry-heading p {
        font-size: 16px;
    }


    .property-enquiry-box {
        padding: 25px;
    }


    .property-form-grid {
        grid-template-columns: 1fr 1fr;
    }


    .property-form-group:last-child {
        grid-column: 1 / -1;
    }


    .property-form-button {
        margin-top: 30px;
    }


    .property-contact-grid {
        gap: 25px;
    }


    .property-contact-item a,
    .property-contact-item p {
        font-size: 16px;
    }
}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .property-enquiry-section {
        padding: 40px 15px 45px;

        background-size: 24px 24px;
    }


    .property-enquiry-heading {
        margin-bottom: 24px;
    }


    .property-enquiry-heading h2 {
        font-size: 27px;

        line-height: 1.3;
    }


    .property-enquiry-heading p {
        font-size: 15px;

        line-height: 1.6;
    }


    .property-enquiry-box {
        padding: 22px 18px;

        margin-bottom: 38px;

        border-radius: 14px;
    }


    .property-form-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .property-form-group:last-child {
        grid-column: auto;
    }


    .property-form-group input {
        height: 52px;

        font-size: 14px;
    }


    .property-form-button {
        margin-top: 22px;
    }


    .property-form-button button {
        width: 100%;

        height: 48px;
    }


    .property-contact-grid {
        grid-template-columns: 1fr;

        gap: 28px;
    }


    .property-contact-item {
        padding-bottom: 5px;
    }


    .property-social-links {
        margin-top: 30px;

        gap: 24px;
    }


    .property-social-links a {
        font-size: 24px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .property-enquiry-section {
        padding: 35px 12px 40px;
    }


    .property-enquiry-heading h2 {
        font-size: 24px;
    }


    .property-enquiry-heading p {
        font-size: 14px;
    }


    .property-enquiry-box {
        padding: 18px 14px;
    }


    .property-form-group input {
        height: 50px;

        padding-left: 40px;
    }


    .property-contact-item a,
    .property-contact-item p {
        font-size: 15px;
    }


    .contact-title h4 {
        font-size: 16px;
    }
}


/* =========================================
   MAIN FOOTER
========================================= */

.main-footer {
    background: #171515;
    color: #ffffff;
    width: 100%;
    padding: 65px 15px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================
   FOOTER GRID
========================================= */

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.8fr 1fr;
    gap: 80px;
    padding-bottom: 45px;
}


/* =========================================
   LOGO
========================================= */

.footer-logo {
    display: inline-block;
    margin-bottom: 22px;
}

.footer-logo img {
    width: 145px;
    height: auto;
    display: block;
}


/* =========================================
   ABOUT
========================================= */

.footer-description {
    font-size: 13px;
    line-height: 1.8;
    color: #bdbdbd;
    max-width: 380px;
    margin-bottom: 24px;
}

.footer-column h3,
.footer-column h4 {
    color: #ffffff;
    font-weight: 600;
}

.footer-column h3 {
    font-size: 17px;
    margin: 0 0 25px;
}

.footer-column h4 {
    font-size: 14px;
    margin-bottom: 20px;
}


/* =========================================
   ADDRESS
========================================= */

.footer-address {
    margin-bottom: 20px;
}

.address-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.address-item > i {
    color: #80bf20;
    font-size: 14px;
    margin-top: 4px;
}

.address-item span {
    display: block;
    color: #ffffff;
    font-size: 12px;
    margin-bottom: 5px;
}

.address-item p {
    margin: 0;
    color: #d0d0d0;
    font-size: 12px;
    line-height: 1.6;
}


/* =========================================
   CONTACT INFO
========================================= */

.footer-contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 22px 0;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-detail > i {
    color: #22a9db;
    margin-top: 3px;
}

.contact-detail span {
    font-size: 11px;
    color: #b7b7b7;
    display: block;
    margin-bottom: 4px;
}

.contact-detail a {
    color: #ffffff;
    font-size: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.contact-detail a:hover {
    color: #22a9db;
}


/* =========================================
   CALL / WHATSAPP BUTTON
========================================= */

.footer-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 17px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.call-btn {
    background: #1ea9df;
}

.whatsapp-btn {
    background: #21c965;
}

.footer-btn:hover {
    transform: translateY(-2px);
    color: #ffffff;
}


/* =========================================
   FOOTER LINKS
========================================= */

.footer-links ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #c7c7c7;
    text-decoration: none;
    font-size: 12px;
    transition: 0.3s;
}

.footer-links ul li a i {
    color: #22a9db;
    font-size: 9px;
}

.footer-links ul li a:hover {
    color: #22a9db;
    transform: translateX(4px);
}


/* =========================================
   NEWSLETTER
========================================= */

.footer-newsletter p {
    font-size: 12px;
    line-height: 1.7;
    color: #bdbdbd;
    max-width: 290px;
    margin-bottom: 18px;
}

.newsletter-form {
    display: flex;
    width: 100%;
    max-width: 290px;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    min-width: 0;
    height: 42px;
    padding: 0 15px;
    background: transparent;
    border: 1px solid #4a4a4a;
    border-right: none;
    outline: none;
    color: #ffffff;
    font-size: 12px;
}

.newsletter-form input::placeholder {
    color: #969696;
}

.newsletter-form button {
    width: 48px;
    border: none;
    background: #21a9d6;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #168cb3;
}


/* =========================================
   SOCIAL
========================================= */

.footer-social {
    display: flex;
    gap: 5px;
}

.footer-social a {
    width: 32px;
    height: 30px;
    border: 1px solid #444444;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 11px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #22a9db;
    border-color: #22a9db;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    border-top: 1px solid #3b3939;
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.copyright {
    color: #c6c6c6;
    font-size: 11px;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    font-size: 11px;
    text-decoration: none;
    color: #c6c6c6;
    transition: 0.3s;
}

.footer-bottom-links a:hover {
    color: #22a9db;
}


/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .main-footer {
        padding-top: 50px;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr;
        gap: 50px;
    }

    .footer-newsletter {
        grid-column: 1 / -1;
    }

    .footer-newsletter p,
    .newsletter-form {
        max-width: 450px;
    }

}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .main-footer {
        padding: 45px 20px 0;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 35px;
    }

    .footer-newsletter {
        grid-column: auto;
    }

    .footer-logo img {
        width: 135px;
    }

    .footer-description {
        font-size: 13px;
        max-width: 100%;
    }

    .footer-contact-info {
        flex-direction: column;
        gap: 15px;
    }

    .footer-buttons {
        width: 100%;
    }

    .footer-btn {
        min-width: 125px;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .footer-newsletter p {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 20px 0;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .main-footer {
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer-grid {
        gap: 35px;
    }

    .footer-logo img {
        width: 125px;
    }

    .footer-column h3 {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .footer-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-btn {
        width: 145px;
    }

    .newsletter-form input {
        height: 44px;
    }

    .newsletter-form button {
        height: 44px;
    }

}

/*extra css*/