:root {
    --primary: #115d47;
    --primary-dark: #073f30;
    --primary-deep: #052d23;
    --primary-light: #e9f5f0;
    --secondary: #d8ad70;
    --secondary-light: #f6ead8;
    --heading: #18251f;
    --text: #627069;
    --white: #ffffff;
    --light: #f7f8f4;
    --light-green: #f0f7f3;
    --border: rgba(17, 93, 71, 0.13);
    --shadow: 0 20px 60px rgba(12, 57, 43, 0.1);
    --shadow-hover: 0 30px 80px rgba(12, 57, 43, 0.17);
    --transition: all 0.35s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: "Playfair Display", serif;
    color: var(--heading);
    font-weight: 700;
}

h4,
h5,
h6 {
    font-family: "Manrope", sans-serif;
    color: var(--heading);
    font-weight: 700;
}

p {
    line-height: 1.8;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
}

section {
    position: relative;
    padding: 70px 0;
}

.container-custom {
    max-width: 1320px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    padding: 9px 20px;
    color: var(--primary);
    border: 1px solid rgb(0 0 0 / 20%);
    border-radius: 50px;
    background: rgb(0 0 0 / 8%);
    backdrop-filter: blur(12px);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.section-title {
    margin-bottom: 20px;
    font-size: clamp(28px, 4.1vw, 42px);
    line-height: 1.18;
}

.section-title span {
    color: var(--primary);
}

.section-description {
    max-width: 720px;
    margin-bottom: 0;
    font-size: 17px;
}

.section-heading-center {
    max-width: 820px;
    margin: 0 auto 50px;
    text-align: center;
}


.section-heading-center .section-description {
    margin: 0 auto;
}

.rounded-pattern {
    position: absolute;
    border: 1px solid rgba(17, 93, 71, 0.09);
    border-radius: 50%;
    pointer-events: none;
}

.btn-primary-custom,
.btn-outline-custom,
.btn-light-custom {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 27px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    transition: var(--transition);
}

.btn-primary-custom {
    color: var(--white);
    border: 1px solid var(--primary);
    background: var(--primary);
    box-shadow: 0 14px 35px rgba(17, 93, 71, 0.25);
}

.btn-primary-custom:hover {
    color: var(--white);
    border-color: var(--primary-dark);
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(17, 93, 71, 0.32);
}

.btn-outline-custom {
    color: var(--heading);
    border: 1px solid rgba(24, 37, 31, 0.22);
    background: var(--white);
}

.btn-outline-custom:hover {
    color: var(--white);
    border-color: var(--primary);
    background: var(--primary);
    transform: translateY(-4px);
}

.btn-light-custom {
    color: var(--primary-dark);
    border: 1px solid var(--white);
    background: var(--white);
}

.btn-light-custom:hover {
    color: var(--primary-dark);
    border-color: var(--secondary);
    background: var(--secondary);
    transform: translateY(-4px);
}

/* Topbar */

.topbar {
    position: relative;
    z-index: 1002;
    padding: 9px 0;
    color: rgba(255, 255, 255, 0.8);
    background: var(--primary-deep);
    font-size: 13px;
}

.topbar-info,
.topbar-social {
    display: flex;
    align-items: center;
    gap: 22px;
}

.topbar-info a,
.topbar-info span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.82);
}

.topbar-info i {
    color: var(--secondary);
}

.topbar-social {
    justify-content: flex-end;
    gap: 10px;
}

.topbar-social a {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.topbar-social a:hover {
    color: var(--primary-dark);
    border-color: var(--secondary);
    background: var(--secondary);
}

/* Header */

.site-header {
    position: absolute;
    top: 47px;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.site-header.sticky {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 35px rgba(10, 44, 33, 0.11);
    backdrop-filter: blur(15px);
    animation: headerDown 0.4s ease;
}

@keyframes headerDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar {
    min-height: 86px;
    padding: 0;
}

.site-header:not(.sticky) .navbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.site-header.sticky .navbar-brand {
    color: var(--heading);
}

.navbar-brand img{
    width:127px;
}

@media (max-width:1199px) {
 .navbar-brand img{
    width:93px;
}   
}

.brand-icon {
    position: relative;
    width: 49px;
    height: 49px;
    display: grid;
    place-items: center;
    color: var(--primary-dark);
    border-radius: 17px 17px 17px 5px;
    background: var(--secondary);
    font-size: 24px;
}

.brand-icon::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(216, 173, 112, 0.45);
    border-radius: 20px 20px 20px 7px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: "Playfair Display", serif;
    font-size: 21px;
    font-weight: 800;
}

.brand-tagline {
    margin-top: 6px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.72;
}

.navbar-nav {
    align-items: center;
    gap: 5px;
}

.navbar-nav .nav-link {
    position: relative;
    padding: 32px 10px !important;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 700;
}

.site-header.sticky .navbar-nav .nav-link {
    color: var(--heading);
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 23px;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transform: translateX(-50%);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 27px;
}

.header-cta {
    margin-left: 20px;
    padding: 13px 20px;
    color: var(--primary-dark);
    border-radius: 50px;
    background: var(--white);
    font-size: 13px;
    font-weight: 800;
}

.site-header.sticky .header-cta {
    color: var(--white);
    background: var(--primary);
}

.header-cta:hover {
    color: var(--primary-dark);
    background: var(--secondary);
    transform: translateY(-2px);
}

.navbar-toggler {
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 14px;
    background: var(--primary);
    box-shadow: none !important;
}

.navbar-toggler span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 5px auto;
    background: var(--white);
}

/* Hero */

.hero-section {
    min-height: 780px;
    display: flex;
    align-items: center;
    padding: 150px 0 125px;
    overflow: hidden;
    background:
        linear-gradient(90deg,
            rgba(4, 38, 28, 0.76) 0%,
            rgba(4, 38, 28, 0.56) 42%,
            rgba(4, 38, 28, 0.40) 72%,
            rgba(4, 38, 28, 0.18) 100%),
        url("../images/banner.webp") center/cover no-repeat;
}

/*.hero-section::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    inset: 0;*/
/*     background: radial-gradient(circle at 100% 0%, rgba(216, 173, 112, 0.15), transparent 0%), linear-gradient(180deg, transparent 0%, rgba(4, 38, 28, 0.45));*/
/*}*/

.hero-large-circle {
    position: absolute;
    top: 160px;
    right: -135px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 50%;
}

.hero-large-circle::before,
.hero-large-circle::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.hero-large-circle::before {
    inset: 70px;
}

.hero-large-circle::after {
    inset: 145px;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 790px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 25px;
    padding: 10px 17px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.hero-badge i {
    color: var(--secondary);
}

.hero-title {
    margin-bottom: 24px;
    color: var(--white);
    font-size: clamp(32px, 5.6vw, 48px);
    line-height: 1.13;
}

.hero-title span {
    position: relative;
    color: var(--secondary);
}

.hero-subtitle {
    margin-bottom: 18px;
    color: var(--white);
    font-family: "Manrope", sans-serif;
    font-size: clamp(18px, 2vw, 23px);
}

.hero-description {
    max-width: 680px;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.hero-buttons .btn-primary-custom {
    color: var(--primary-dark);
    border-color: var(--secondary);
    background: var(--secondary);
}

.hero-contact-btn {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 27px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
}

.hero-contact-btn:hover {
    color: var(--primary-dark);
    border-color: var(--white);
    background: var(--white);
    transform: translateY(-4px);
}

.hero-side-card {
    position: absolute;
    right: 5%;
    bottom: 92px;
    z-index: 3;
    width: 345px;
    padding: 25px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.23);
}

.hero-side-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 15px;
}

.hero-side-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: var(--primary-dark);
    border-radius: 17px;
    background: var(--secondary);
    font-size: 25px;
}

.hero-side-card h5 {
    margin: 0;
    color: var(--white);
    font-size: 16px;
}

.hero-side-card p {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.hero-side-features {
    display: grid;
    gap: 10px;
}

.hero-side-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
}

.hero-side-features i {
    color: var(--secondary);
}

/* =========================================================
   QUICK FORM
========================================================= */

.evaluation-section {
    position: relative;
    z-index: 10;
    margin-top: -58px;
    padding-bottom: 25px;
}

.evaluation-box {
    position: relative;
    overflow: hidden;
    padding: 28px;
    background: #ffffff;
    border: 1px solid rgba(36, 79, 62, 0.09);
    border-radius: 24px;
    box-shadow: 0 35px 90px rgba(18, 47, 36, 0.20);
}

.evaluation-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    width: 70px;
    height: 3px;
    border-radius: 0 0 6px 6px;
    background: #c9995d;
}

/* Heading */

.evaluation-title {
    margin-bottom: 6px;
    color: #17201c;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
}

.evaluation-box p {
    margin: 0;
    color: #56605b;
    font-size: 0.88rem;
    line-height: 1.55;
}

/* Inputs */

.evaluation-box .form-control,
.evaluation-box .form-select {
    width: 100%;
    height: 54px;
    padding: 10px 16px;
    border: 1px solid rgba(36, 79, 62, 0.34);
    border-radius: 13px;
    background: #fcfdfc;
    color: #17201c;
    font-size: 14px;
    box-shadow: none !important;
    transition: all .35s ease;
}

.evaluation-box .form-control::placeholder {
    color: #2e2e2e;
}

.evaluation-box .form-control:focus,
.evaluation-box .form-select:focus {
    border-color: #c9995d;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(201, 153, 93, .15) !important;
}

.evaluation-box .form-select {
    padding-right: 40px;
}

/* Button */

.evaluation-box .theme-btn {
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 13px;
    font-size: 13px;
    font-weight: 700;
    transition: all .35s ease;
    background-color: #244f3e;
    color: #fff;
}

.evaluation-box .theme-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(36, 79, 62, .18);
}

.evaluation-box .theme-btn i {
    transition: all .35s ease;
}

.evaluation-box .theme-btn:hover i {
    transform: translate(3px, -3px);
}

/* Desktop */

@media (min-width:1200px) {

    .evaluation-box .row {
        align-items: center;
    }

}

/* Laptop */

@media (max-width:1199px) {

    .evaluation-section {
        margin-top: -50px;
    }

    .evaluation-box {
        padding: 24px;
    }

    .evaluation-title {
        font-size: 1.2rem;
    }

}

/* Tablet */

@media (max-width:991px) {

    .evaluation-section {
        margin-top: -38px;
    }

    .evaluation-box {
        padding: 24px;
        border-radius: 20px;
    }

    .evaluation-box .row {
        row-gap: 15px;
    }

    .evaluation-box .form-control,
    .evaluation-box .form-select,
    .evaluation-box .theme-btn {
        height: 52px;
    }

}

/* Mobile */

@media (max-width:767px) {

    .evaluation-section {
        margin-top: -50px;
        padding-top: 25px;
    }

    .evaluation-box {
        padding: 20px;
        border-radius: 18px;
        box-shadow: 0 22px 55px rgba(18, 47, 36, .12);
    }

    .evaluation-box::before {
        left: 20px;
        width: 55px;
    }

    .evaluation-title {
        font-size: 1.1rem;
    }

    .evaluation-box p {
        font-size: .78rem;
        margin-bottom: 6px;
    }

    .evaluation-box .row {
        row-gap: 3px;
    }

    .evaluation-box .form-control,
    .evaluation-box .form-select,
    .evaluation-box .theme-btn {
        height: 50px;
        font-size: 13px;
    }

}

/* Small Mobile */

@media (max-width:430px) {

    .evaluation-box {
        padding: 18px 15px;
        border-radius: 16px;
    }

    .evaluation-title {
        font-size: 1rem;
    }

    .evaluation-box p {
        font-size: .75rem;
    }

}

/* About */

.about-section {
    overflow: hidden;
}

.about-section .rounded-pattern {
    top: 5%;
    right: -180px;
    width: 430px;
    height: 430px;
}

.about-image-layout {
    position: relative;
    min-height: 640px;
}

.about-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 555px;
    object-fit: cover;
    border-radius: 30px 30px 120px 30px;
    box-shadow: var(--shadow);
}

.about-small-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 52%;
    height: 300px;
    padding: 8px;
    object-fit: cover;
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.about-floating-badge {
    position: absolute;
    top: 55px;
    right: 15px;
    width: 145px;
    height: 145px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: var(--white);
    border: 8px solid var(--white);
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 20px 45px rgba(17, 93, 71, 0.28);
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
}

.about-floating-badge strong {
    display: block;
    color: var(--secondary);
    font-family: "Playfair Display", serif;
    font-size: 29px;
}

.about-content {
    padding-left: 0px;
}

.about-content p {
    margin-bottom: 17px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: var(--white);
    transition: var(--transition);
}

.about-feature:hover {
    border-color: transparent;
    box-shadow: 0 14px 35px rgba(17, 93, 71, 0.1);
    transform: translateY(-4px);
}

.about-feature i {
    width: 41px;
    height: 41px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--white);
    border-radius: 13px;
    background: var(--primary);
}

.about-feature span {
    color: var(--heading);
    font-size: 13px;
    font-weight: 700;
}

/* =========================================
   WHY PROFESSIONAL PROPERTY MANAGEMENT
========================================= */

.property-value-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background: #ffffff;
}

/* Heading */

.property-value-heading {
    max-width: 850px;
    margin: 0 auto 55px;
}

.property-value-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin-bottom: 20px;
    color: var(--secondary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.property-value-label span {
    width: 34px;
    height: 1px;
    background: var(--secondary);
}

.property-value-heading .section-title {
    max-width: 760px;
    margin: 0 auto 21px;
}

.property-value-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text);
    font-size: 15px;
    line-height: 1.8;
}

/* Cards */

.property-value-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.property-value-card {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    overflow: hidden;
    border: 1px solid rgba(17, 93, 71, 0.11);
    border-radius: 20px;
    background: #f8faf8;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease,
        box-shadow 0.35s ease;
}

.property-value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    width: 42px;
    height: 3px;
    border-radius: 0 0 5px 5px;
    background: var(--secondary);
    transition: width 0.35s ease;
}

.property-value-card:hover {
    border-color: rgba(207, 169, 100, 0.55);
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(17, 74, 57, 0.1);
    transform: translateY(-8px);
}

.property-value-card:hover::before {
    width: calc(100% - 48px);
}

/* Icon */

.property-value-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 15px;
    color: var(--light);
    background: var(--primary);
    font-size: 23px;
    transition:
        color 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease;
}

.property-value-card:hover .property-value-icon {
    color: #ffffff;
    background: var(--primary);
    transform: rotate(-5deg);
}

/* Card title */

.property-value-card h3 {
    margin: 0;
    color: var(--heading);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    font-family: 'DM Sans';
}

/* Bottom statement */

.property-value-statement {
    max-width: 950px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 48px auto 0;
    padding: 22px 28px;
    border: 1px solid rgba(207, 169, 100, 0.28);
    border-radius: 16px;
    background: #fffcf5;
    text-align: left;
}

.property-value-statement-icon {
    width: 62px;
    height: 48px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 15px;
    color: var(--primary-dark);
    background: var(--secondary);
    font-size: 21px;
}

.property-value-statement p {
    margin: 0;
    color: var(--heading);
    font-family: "Playfair Display", serif;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.55;
    font-family: 'DM Sans';
}

/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1199px) {

    .property-value-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .property-value-card {
        min-height: 180px;
    }

}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .property-value-section {
        padding: 90px 0 75px;
    }

    .property-value-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .property-value-card:last-child {
        grid-column: 1 / -1;
    }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .property-value-section {
        padding: 45px 0;
    }

    .property-value-heading {
        margin-bottom: 38px;
        text-align: left !important;
    }

    .property-value-label {
        justify-content: flex-start;
        gap: 8px;
        margin-bottom: 16px;
        font-size: 9px;
        letter-spacing: 1.2px;
    }

    .property-value-label span {
        width: 20px;
    }

    .property-value-heading p {
        font-size: 13px;
        line-height: 1.75;
    }

    .property-value-grid {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .property-value-card,
    .property-value-card:last-child {
        grid-column: auto;
    }

    .property-value-card {
        min-height: auto;
        display: grid;
        grid-template-columns: 50px minmax(0, 1fr);
        align-items: center;
        justify-content: initial;
        gap: 15px;
        padding: 17px;
        border-radius: 15px;
    }

    .property-value-card::before {
        top: 14px;
        bottom: 14px;
        left: 0;
        width: 3px;
        height: auto;
        border-radius: 0 5px 5px 0;
    }

    .property-value-card:hover::before {
        width: 3px;
    }

    .property-value-icon {
        width: 50px;
        height: 50px;
        margin: 0;
        border-radius: 13px;
        font-size: 20px;
    }

    .property-value-card h3 {
        font-size: 14px;
    }

    .property-value-card:hover {
        transform: translateY(-4px);
    }

    .property-value-statement {
        align-items: flex-start;
        gap: 13px;
        margin-top: 32px;
        padding: 18px;
    }

    .property-value-statement-icon {
        width: 56px;
        height: 43px;
        font-size: 18px;
    }

    .property-value-statement p {
        font-size: 16px;
    }

}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 430px) {

    .property-value-card {
        grid-template-columns: 45px minmax(0, 1fr);
        gap: 12px;
        padding: 14px;
    }

    .property-value-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .property-value-statement {
        padding: 15px;
    }

    .property-value-statement-icon {
        width: 56px;
        height: 40px;
    }

    .property-value-statement p {
        font-size: 15px;
    }

}


/* =========================================
   OUR SOLUTION
========================================= */

.solution-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background: #fffdf8;
}

.solution-section::before {
    content: "";
    position: absolute;
    top: -220px;
    left: -220px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(202, 165, 97, 0.07);
    pointer-events: none;
}

.solution-section::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -220px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(17, 93, 71, 0.07);
    border-radius: 50%;
    pointer-events: none;
}

/* Left content */

.solution-content {
    position: relative;
    z-index: 2;
    max-width: 510px;
}

.solution-content .section-title {
    margin-bottom: 24px;
}

.solution-content p {
    margin-bottom: 17px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.75;
}

.solution-btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-top: 12px;
    padding: 14px 22px;
    border-radius: 8px;
    color: #fff;
    background: var(--primary);
    box-shadow: 0 12px 28px rgba(17, 93, 71, 0.17);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.solution-btn:hover {
    color: var(--primary-dark);
    background: var(--secondary);
    box-shadow: 0 15px 32px rgba(17, 93, 71, 0.2);
    transform: translateY(-3px);
}

.solution-btn i {
    transition: transform 0.3s ease;
}

.solution-btn:hover i {
    transform: translateX(5px);
}

/* Main right box */

.solution-process-box {
    position: relative;
    z-index: 2;
    padding: 34px;
    border: 1px solid rgba(17, 93, 71, 0.1);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 24px 65px rgba(31, 66, 54, 0.09);
}

/* Right heading */

.solution-process-heading {
    margin-bottom: 21px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(17, 93, 71, 0.09);
}

/* .solution-process-heading span {
    display: block;
    margin-bottom: 7px;
    color: var(--secondary-dark, #a47d38);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
} */

.solution-process-heading h3 {
    margin: 0;
    color: var(--primary);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.3;
}

/* Process grid */

.solution-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 14px;
}

/* Last row alignment */

.solution-process-item:nth-child(5) {
    grid-column: 1 / 2;
}

.solution-process-item:nth-child(6) {
    grid-column: 2 / 3;
}

.solution-process-item:nth-child(7) {
    grid-column: 3 / 4;
}

/* Process item */

.solution-process-item {
    position: relative;
    min-width: 0;
    padding: 4px 4px 8px;
    text-align: center;
}

.solution-process-icon {
    position: relative;
    width: 67px;
    height: 67px;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    border: 1px solid rgba(17, 93, 71, 0.2);
    border-radius: 50%;
    color: var(--primary);
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(17, 93, 71, 0.07);
    font-size: 24px;
    transition: var(--transition);
}

.solution-process-icon::before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(202, 165, 97, 0.34);
    border-radius: 50%;
}

.solution-process-item:hover .solution-process-icon {
    color: #fff;
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: 0 13px 28px rgba(17, 93, 71, 0.19);
    transform: translateY(-5px);
}

.solution-process-item:hover .solution-process-icon::before {
    border-color: rgba(255, 255, 255, 0.28);
}

.solution-item-number {
    display: block;
    margin-bottom: 5px;
    color: var(--secondary-dark, #a47d38);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.solution-process-item h4 {
    max-width: 135px;
    margin: 0 auto;
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.solution-process-item p{
    font-size: 14px;
    line-height: 1.6;
    padding-top: 7px;
}

/* Arrows */

.solution-arrow {
    position: absolute;
    top: 26px;
    right: -13px;
    z-index: 3;
    color: rgba(17, 93, 71, 0.42);
    font-size: 16px;
}

/* Footer note */
.solution-process-footer {
    display: flex;
    /*align-items: center;*/
    gap: 20px;
    position: relative;
    overflow: hidden;

    padding: 18px 16px;
    margin-top: 35px;

    border-radius: 18px;
    border: 1px solid rgba(17, 93, 71, 0.15);

    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.98),
        rgba(245, 248, 247, 0.98)
    );

    box-shadow:
        0 8px 25px rgba(0,0,0,.05);
}

/* Left Icon */
.solution-footer-icon{
    width:62px;
    height:62px;
    flex-shrink:0;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:linear-gradient(135deg,#d8a53a,#c48a20);

    color:#fff;
    font-size:31px;

    position:relative;
}

/* Vertical Divider */
.solution-footer-icon::after{
    content:"";
    position:absolute;
    right:-18px;
    top:10px;
    bottom:10px;
    width:1px;
    background:#d8d8d8;
}

/* Content */
.solution-footer-content{
    flex:1;
    padding-left:18px;
}

.solution-footer-content h5{
    margin:0 0 8px;
    font-size:21px;
    font-weight:700;
    color:#134b3f;
    line-height:1.3;
}

.solution-footer-content h5 span{
    font-size:17px;
}

.solution-footer-content p{
    margin:0;
    font-size:15px;
    line-height:1.7;
    color:#555;
    max-width:700px;
}

/* Right Background Icon */
.solution-footer-bgicon{
    position:absolute;
    right:25px;
    top:50%;
    transform:translateY(-50%);

    font-size:75px;
    color:#115d47;
    opacity:.08;

    pointer-events:none;
}

/* Tablet */
@media (max-width:991px){

    .solution-process-footer{
        padding:18px;
        gap:16px;
    }

    .solution-footer-icon{
        width:56px;
        height:56px;
        font-size:25px;
    }

    .solution-footer-content h5{
        font-size:20px;
    }

    .solution-footer-content p{
        font-size:14px;
    }

    .solution-footer-bgicon{
        font-size:60px;
    }

}

/* Mobile */
@media (max-width:767px){

    .solution-process-footer{
        align-items:flex-start;
        padding:18px;
        gap:15px;
    }

    .solution-footer-icon{
        width:42px;
        height:42px;
        font-size:21px;
    }

    .solution-footer-icon::after{
        display:none;
    }

    .solution-footer-content{
        padding-left:0;
    }

    .solution-footer-content h5{
        font-size:18px;
    }

    .solution-footer-content p{
        font-size:13px;
        line-height:1.6;
    }

    .solution-footer-bgicon{
        font-size:55px;
        right:10px;
        bottom:10px;
        top:auto;
        transform:none;
        opacity:.06;
    }
}

/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1199px) {

    .solution-process-box {
        padding: 28px 24px;
    }

    .solution-process-grid {
        gap: 20px 8px;
    }

    .solution-process-icon {
        width: 60px;
        height: 60px;
        font-size: 21px;
    }

    .solution-process-item h4 {
        font-size: 10px;
    }

    .solution-arrow {
        top: 23px;
        right: -9px;
    }

}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .solution-section {
        padding: 90px 0;
    }

    .solution-content {
        max-width: 100%;
    }

    .solution-process-box {
        margin-top: 10px;
        padding: 32px;
    }

    .solution-process-item h4 {
        max-width: 150px;
        font-size: 11px;
    }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .solution-section {
        padding: 40px 0;
    }

    .solution-content p {
        font-size: 13px;
        line-height: 1.75;
    }

    .solution-process-box {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .solution-process-heading {
        margin-bottom: 23px;
        padding-bottom: 18px;
    }

    .solution-process-heading h3 {
        font-size: 21px;
    }

    .solution-process-grid {
        position: relative;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .solution-process-grid::before {
        content: "";
        position: absolute;
        top: 29px;
        bottom: 29px;
        left: 29px;
        width: 1px;
        background: repeating-linear-gradient(180deg,
                rgba(17, 93, 71, 0.32) 0,
                rgba(17, 93, 71, 0.32) 5px,
                transparent 5px,
                transparent 10px);
    }

    .solution-process-item,
    .solution-process-item:nth-child(5),
    .solution-process-item:nth-child(6),
    .solution-process-item:nth-child(7) {
        grid-column: auto;
    }

    .solution-process-item {
        display: grid;
        grid-template-columns: 59px minmax(0, 1fr);
        grid-template-rows: auto auto;
        /* align-items: center; */
        column-gap: 15px;
        min-height: 78px;
        padding: 8px 0;
        text-align: left;
    }

    .solution-process-icon {
        grid-column: 1;
        grid-row: 1 / 3;
        width: 58px;
        height: 58px;
        margin: 0;
        background: #fff;
        font-size: 20px;
    }

    .solution-item-number {
        grid-column: 2;
        grid-row: 1;
        align-self: end;
        margin-bottom: 3px;
    }

    .solution-process-item h4 {
        grid-column: 2;
        grid-row: 2;
        align-self: start;
        max-width: none;
        margin: 0;
        font-size: 13px;
        line-height: 1.45;
    }

    .solution-arrow {
        display: none;
    }



}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 430px) {

    .solution-process-box {
        padding: 22px 15px;
    }

    .solution-process-heading h3 {
        font-size: 19px;
    }

    .solution-process-grid::before {
        left: 26px;
    }

    .solution-process-item {
        grid-template-columns: 53px minmax(0, 1fr);
        column-gap: 12px;
        min-height: 74px;
    }

    .solution-process-icon {
        width: 52px;
        height: 52px;
        font-size: 18px;
    }

    .solution-process-item h4 {
        font-size: 12px;
    }

 

}

/* =====================================
   OUR SERVICES
===================================== */

.services-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background:
        radial-gradient(circle at top left,
            rgba(207, 169, 100, 0.09),
            transparent 34%),
        linear-gradient(135deg,
            #10291f 0%,
            #0b2119 55%,
            #071a14 100%);
}

/* Decorative glow */

.services-section::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -170px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(207, 169, 100, 0.06);
    filter: blur(15px);
    pointer-events: none;
}

.services-section::after {
    content: "";
    position: absolute;
    bottom: -250px;
    left: -180px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(207, 169, 100, 0.08);
    pointer-events: none;
}

/* Heading */

.services-heading {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto 52px;
}

.services-heading .section-label {
    color: var(--secondary);
}

.services-heading .section-title {
    color: var(--white);
}

.services-heading .section-title span {
    color: var(--secondary);
}

/* Card */

.service-image-card {
    position: relative;
    overflow: hidden;
    min-height: 510px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: #0b2119;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.23);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.service-image-card:hover {
    border-color: rgba(207, 169, 100, 0.55);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    transform: translateY(-10px);
}

/* Image */

.service-image-card>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-image-card:hover>img {
    transform: scale(1.08);
}

/* Overlay */

.service-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(5, 26, 19, 0.03) 5%,
            rgba(5, 26, 19, 0.16) 35%,
            rgba(5, 26, 19, 0.88) 74%,
            rgba(5, 26, 19, 0.98) 100%);
    transition: background 0.4s ease;
}

.service-image-card:hover .service-card-overlay {
    background:
        linear-gradient(180deg,
            rgba(5, 26, 19, 0.02) 5%,
            rgba(5, 26, 19, 0.12) 33%,
            rgba(5, 26, 19, 0.84) 70%,
            rgba(5, 26, 19, 0.98) 100%);
}

/* Content */

.service-card-content {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 30px;
}

/* Icon */

.service-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 19px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    background: rgba(207, 169, 100, 0.9);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    font-size: 22px;
    transition: all 0.4s ease;
}

.service-image-card:hover .service-icon {
    color: var(--primary-dark);
    background: var(--secondary);
    transform: rotate(-6deg) scale(1.08);
}

/* Title */

.service-card-content h3 {
    margin-bottom: 12px;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.service-card-content h3 span {
    display: inline-flex;
    margin-left: 7px;
    padding: 5px 9px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 30px;
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.08);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    vertical-align: middle;
}

/* Description */

.service-card-content p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.7;
}

/* Link */

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--secondary);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #fff;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* =====================================
   TABLET
===================================== */

@media (max-width: 991px) {

    .services-section {
        padding: 90px 0;
    }

    .service-image-card {
        min-height: 480px;
    }

}

/* =====================================
   MOBILE
===================================== */

@media (max-width: 767px) {

    .services-section {
        padding: 40px 0;
    }

    .services-heading {
        margin-bottom: 38px;
        text-align: left !important;
    }

    .service-image-card {
        min-height: 450px;
        border-radius: 18px;
    }

    .service-card-content {
        padding: 24px 21px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
        font-size: 20px;
    }

    .service-card-content h3 {
        font-size: 21px;
    }

    .service-card-content p {
        font-size: 12.5px;
    }

}

/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 430px) {

    .service-image-card {
        min-height: 420px;
    }

    .service-card-content {
        padding: 22px 18px;
    }

    .service-card-content h3 {
        font-size: 20px;
    }

}

/* ======================================
   WHY CHOOSE US
====================================== */

.why-choose-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background: var(--white);
}

/* Image */

.why-choose-image {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    border-radius: 28px;
}

.why-choose-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 45%,
            rgba(7, 48, 37, 0.65) 100%);
}

.why-choose-image img {
    width: 100%;
    height: 590px;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.why-choose-image:hover img {
    transform: scale(1.05);
}

/* Image badge */

.why-image-badge {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 28px;
    left: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.why-badge-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 15px;
    color: var(--primary-dark);
    background: var(--secondary);
    font-size: 24px;
}

.why-image-badge strong {
    display: block;
    margin-bottom: 3px;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
}

.why-image-badge span {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
}

/* Content */

.why-choose-content {
    padding-left: 25px;
}

.why-choose-content .section-title {
    max-width: 570px;
    margin-bottom: 35px;
}

/* Features */

.why-choose-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.why-choose-item {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 78px;
    padding: 15px;
    border: 1px solid rgba(17, 93, 71, 0.1);
    border-radius: 15px;
    background: #f8faf9;
    transition: var(--transition);
}

.why-choose-item:hover {
    border-color: rgba(207, 169, 100, 0.55);
    background: var(--white);
    box-shadow: 0 12px 30px rgba(17, 74, 57, 0.08);
    transform: translateY(-4px);
}

.why-item-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 12px;
    color: var(--white);
    background: var(--primary);
    box-shadow: 0 7px 18px rgba(17, 93, 71, 0.08);
    font-size: 18px;
    transition: var(--transition);
}

.why-choose-item:hover .why-item-icon {
    color: var(--white);
    background: var(--primary);
}

.why-choose-item span {
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

/* Tablet */

@media (max-width: 991px) {

    .why-choose-section {
        padding: 90px 0;
    }

    .why-choose-content {
        padding-left: 0;
    }

    .why-choose-image,
    .why-choose-image img {
        min-height: 500px;
        height: 500px;
    }

}

/* Mobile */

@media (max-width: 767px) {

    .why-choose-section {
        padding: 40px 0;
    }

    .why-choose-image,
    .why-choose-image img {
        min-height: 420px;
        height: 420px;
    }

    .why-choose-image {
        border-radius: 21px;
    }

    .why-image-badge {
        right: 16px;
        bottom: 16px;
        left: 16px;
        padding: 16px;
        border-radius: 15px;
    }

    .why-badge-icon {
        width: 48px;
        height: 48px;
        border-radius: 13px;
        font-size: 21px;
    }

    .why-choose-content .section-title {
        margin-bottom: 28px;
    }

    .why-choose-list {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .why-choose-item {
        min-height: 68px;
        padding: 13px;
    }

}

/* Small mobile */

@media (max-width: 430px) {

    .why-choose-image,
    .why-choose-image img {
        min-height: 370px;
        height: 370px;
    }

    .why-image-badge span {
        font-size: 11px;
    }

    .why-item-icon {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }

    .why-choose-item span {
        font-size: 12px;
    }

}

/* ======================================
   SIMPLE HOW IT WORKS SECTION
====================================== */

.process-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background: #f8faf9;
}

.process-section .section-heading-center {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.process-card {
    position: relative;
    height: 100%;
    padding: 22px 20px;
    border: 1px solid rgba(17, 93, 71, 0.1);
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 12px 35px rgba(17, 74, 57, 0.06);
    transition: var(--transition);
}

.process-card:hover {
    border-color: rgba(207, 169, 100, 0.55);
    box-shadow: 0 20px 45px rgba(17, 74, 57, 0.11);
    transform: translateY(-7px);
}

.process-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px;
}

.process-number {
    color: rgba(17, 93, 71, 0.27);
    font-family: "Playfair Display", serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    font-family: auto;
}

.process-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--primary);
    border-radius: 14px;
    background: var(--primary-light);
    font-size: 22px;
    transition: var(--transition);
}

.process-card:hover .process-icon {
    color: var(--white);
    background: var(--primary);
    transform: rotate(-5deg);
}

.process-card h3 {
    margin-bottom: 13px;
    /* color: var(--dark); */
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    font-family: 'DM Sans';
}

.process-card p {
    margin: 0;
    color: var(--text);
    font-size: 15px;
    line-height: 1.75;
}

/* Small top accent */

.process-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    width: 48px;
    height: 3px;
    border-radius: 0 0 6px 6px;
    background: var(--secondary);
    transition: width 0.35s ease;
}

.process-card:hover::before {
    width: calc(100% - 56px);
}

/* Tablet */

@media (max-width: 1199px) {

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-card {
        min-height: 285px;
    }

}

/* Mobile */

@media (max-width: 767px) {

    .process-section {
        padding: 40px 0;
    }

    .process-section .section-heading-center {
        margin-bottom: 38px;
        text-align: left;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .process-card {
        min-height: auto;
        padding: 23px 20px;
        border-radius: 17px;
    }

    .process-card-header {
        margin-bottom: 20px;
    }

    .process-number {
        font-size: 36px;
    }

    .process-icon {
        width: 48px;
        height: 48px;
        border-radius: 13px;
        font-size: 20px;
    }

    .process-card h3 {
        font-size: 19px;
    }

    .process-card p {
        font-size: 13px;
        line-height: 1.7;
    }

}

/* Benefits */

.benefits-section {
    overflow: hidden;
    background: var(--light);
}

.benefit-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    padding: 35px 28px;
    border: 1px solid var(--border);
    border-radius: 23px;
    color: rgba(255, 255, 255, 0.73);
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
}

.benefit-card::before {
    content: "";
    position: absolute;
    right: -75px;
    top: -75px;
    width: 165px;
    height: 165px;
    border-radius: 50%;
    background: rgba(216, 173, 112, 0.18);
    transition: var(--transition);
}

.benefit-card:hover {

    transform: translateY(-9px);
}

.benefit-card:hover::before {
    background: rgba(216, 173, 112, 0.18);
}

.benefit-icon {
    position: relative;
    z-index: 2;
    width: 65px;
    height: 65px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 19px;
    color: var(--primary-dark);
    background: var(--secondary);
    font-size: 28px;
}

.benefit-card:hover .benefit-icon {
    color: var(--primary-dark);
    background: var(--secondary);
}

.benefit-card h4 {
    position: relative;
    z-index: 2;
    margin-bottom: 13px;
    font-size: 18px;
    color: var(--white);
}

.benefit-card:hover h4 {
    color: var(--white);
}

.benefit-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    font-size: 14px;
}

/* Locations */

.location-card {
    position: relative;
    height: 470px;
    overflow: hidden;
    border-radius: 27px;
    box-shadow: var(--shadow);
}

.location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.location-card:hover img {
    transform: scale(1.09);
}

.location-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(4, 38, 28, 0.02) 25%,
            rgba(4, 38, 28, 0.92) 100%);
}

.location-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 30px;
}

.location-icon {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    color: var(--primary-dark);
    border-radius: 15px;
    background: var(--secondary);
    font-size: 21px;
}

.location-content h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 29px;
}

.location-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.location-arrow {
    position: absolute;
    right: 26px;
    bottom: 28px;
    z-index: 3;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--primary-dark);
    border-radius: 50%;
    background: var(--white);
    opacity: 0;
    transform: translateX(15px);
    transition: var(--transition);
}

.location-card:hover .location-arrow {
    opacity: 1;
    transform: translateX(0);
}

.expansion-note {
    margin-top: 34px;
    padding: 19px 25px;
    color: var(--primary-dark);
    border: 1px dashed rgba(17, 93, 71, 0.35);
    border-radius: 17px;
    background: var(--primary-light);
    text-align: center;
    font-size: 14px;
    font-weight: 800;
}



/* CTA */

.final-cta-section {
    padding: 0 0 70px;
}

.final-cta {
    position: relative;
    overflow: hidden;
    padding: 78px 70px;
    border-radius: 34px;
    background:
        linear-gradient(90deg,
            rgba(5, 56, 42, 0.98) 0%,
            rgba(5, 56, 42, 0.92) 55%,
            rgba(5, 56, 42, 0.68) 100%),
        url("../images/bg-1.webp") center/cover;
    box-shadow: 0 35px 80px rgba(17, 93, 71, 0.23);
}

.final-cta::before,
.final-cta::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 50%;
}

.final-cta::before {
    top: -150px;
    right: -80px;
    width: 400px;
    height: 400px;
}

.final-cta::after {
    right: 65px;
    bottom: -200px;
    width: 350px;
    height: 350px;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.final-cta h2 {
    margin-bottom: 18px;
    color: var(--white);
    font-size: clamp(39px, 4.5vw, 59px);
    line-height: 1.12;
}

.final-cta p {
    max-width: 680px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.73);
    font-size: 16px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.btn-outline-light-custom {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 27px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
}

.btn-outline-light-custom:hover {
    color: var(--primary-dark);
    border-color: var(--white);
    background: var(--white);
    transform: translateY(-4px);
}

/* Footer */

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 90px 0 0;
    color: rgba(255, 255, 255, 0.66);
    background: var(--primary-deep);
}

.site-footer::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.footer-brand img{
    width:133px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: var(--white);
}

.footer-about {
    max-width: 100%;
    margin-bottom: 24px;
    font-size: 15px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 41px;
    height: 41px;
    display: grid;
    place-items: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

.footer-social a:hover {
    color: var(--primary-dark);
    border-color: var(--secondary);
    background: var(--secondary);
    transform: translateY(-4px);
}

.footer-heading {
    margin-bottom: 24px;
    color: var(--white);
    font-size: 18px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.83);
    font-size: 15px;
}

.footer-links a::before {
    content: "\F285";
    color: var(--secondary);
    font-family: "bootstrap-icons";
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 17px;
}

.footer-contact i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--primary-dark);
    border-radius: 12px;
    background: var(--secondary);
}

.footer-contact a,
.footer-contact span {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.7;
}

.footer-bottom p {
    margin-top: 65px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 15px;
    margin-bottom: 0px;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
}



.back-to-top {
    position: fixed;
    right: 12px;
    bottom: 22px;
    z-index: 998;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: var(--white);
    border: 0;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Responsive */

@media (max-width: 1199.98px) {
    .navbar-nav .nav-link {
        padding-left: 7px !important;
        padding-right: 7px !important;
        font-size: 13px;
    }

    .header-cta {
        margin-left: 10px;
        padding: 12px 15px;
    }

    .hero-side-card {
        display: none;
    }

    .about-content,
    .why-content {
        padding-left: 10px;
    }
}

@media (max-width: 991.98px) {
    section {
        padding: 82px 0;
    }

    .topbar {
        display: none;
    }

    .site-header {
        top: 0;
    }

    .site-header,
    .site-header.sticky {
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 10px 30px rgba(10, 44, 33, 0.09);
        backdrop-filter: blur(14px);
    }

    .navbar {
        min-height: 76px;
    }

    .navbar-brand {
        color: var(--heading);
    }

    .navbar-collapse {
        position: absolute;
        top: 76px;
        left: 12px;
        right: 12px;
        max-height: calc(100vh - 92px);
        overflow-y: auto;
        padding: 15px 20px 23px;
        border-radius: 0 0 20px 20px;
        background: var(--white);
        box-shadow: 0 20px 40px rgba(10, 44, 33, 0.14);
    }

    .navbar-nav {
        align-items: flex-start;
    }

    .navbar-nav .nav-link {
        width: 100%;
        padding: 12px 0 !important;
        color: var(--heading);
        border-bottom: 1px solid #edf1ef;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .header-cta {
        width: 100%;
        margin: 16px 0 0;
        color: var(--white);
        background: var(--primary);
        text-align: center;
    }

    .hero-section {
        min-height: auto;
        padding: 165px 0 120px;
        background-position: 62% center;
    }

    .hero-section::before {
        background: rgba(4, 38, 28, 0.13);
    }

    .trust-item {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .about-image-layout,
    .why-image-layout,
    .solution-image-layout {
        max-width: 680px;
        margin: 0 auto 65px;
    }

    .about-content,
    .why-content {
        padding-left: 0;
    }

    .solution-content {
        margin-bottom: 60px;
    }

    .process-line {
        display: none;
    }

    .final-cta {
        padding: 65px 45px;
    }

    .footer-column {
        margin-bottom: 38px;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 38px;
    }

    .section-description {
        font-size: 15px;
    }

    .section-heading-center {
        margin-bottom: 43px;
    }

    .brand-name {
        font-size: 18px;
    }

    .brand-icon {
        width: 43px;
        height: 43px;
    }

    .hero-section {
        padding: 150px 0px 140px;
        text-align: center;
        background-position: 50% center;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-buttons a {
        width: 100%;
    }

    .trust-strip {
        margin-top: -31px;
    }

    .trust-wrapper {
        border-radius: 21px;
    }

    .trust-item {
        padding: 22px;
    }

    .about-image-layout,
    .why-image-layout {
        min-height: 530px;
    }

    .about-main-image,
    .why-main-image {
        width: 82%;
        height: 435px;
    }

    .about-small-image,
    .why-small-image {
        width: 57%;
        height: 250px;
    }

    .about-floating-badge,
    .why-circle {
        width: 125px;
        height: 125px;
        font-size: 10px;
    }

    .about-features,
    .solution-list,
    .why-list {
        grid-template-columns: 1fr;
    }

    .problem-image-box {
        height: 400px;
    }

    .solution-image-layout {
        min-height: 520px;
    }

    .solution-main-image {
        width: 87%;
        height: 470px;
    }

    .solution-small-image {
        width: 60%;
        height: 235px;
    }

    .solution-info-card {
        width: 205px;
        padding: 18px;
    }

    .service-image {
        height: 245px;
    }

    .location-card {
        height: 405px;
    }

    .evaluation-info,
    .evaluation-form {
        padding: 42px 26px;
    }

    .evaluation-info h2 {
        font-size: 36px;
    }

    .final-cta-section {
        padding-bottom: 68px;
    }

    .final-cta {
        padding: 53px 28px;
        border-radius: 25px;
        text-align: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .cta-buttons a {
        width: 100%;
    }

    .site-footer {
        padding-top: 68px;
    }

    .footer-bottom {
        margin-top: 25px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 13px;
    }
    
    .footer-bottom p {
    margin-top: 0px;
}
}

@media (max-width: 575.98px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .section-title {
        font-size: 31px;
    }

    .section-label {
        font-size: 10px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-badge {
        font-size: 11px;
        align-items: start;
    }

    .about-image-layout,
    .why-image-layout {
        min-height: 445px;
    }

    .about-main-image,
    .why-main-image {
        height: 365px;
    }

    .about-small-image,
    .why-small-image {
        height: 200px;
    }

    .about-floating-badge,
    .why-circle {
        width: 108px;
        height: 108px;
        border-width: 5px;
    }

    .about-floating-badge strong {
        font-size: 23px;
    }

    .solution-image-layout {
        min-height: 440px;
    }

    .solution-main-image {
        height: 405px;
    }

    .solution-small-image {
        height: 190px;
    }

    .solution-info-card {
        width: 175px;
        padding: 15px;
    }

    .solution-info-card p {
        font-size: 10px;
    }

    .location-card {
        height: 370px;
    }



    .back-to-top {
        right: 21px;
        bottom: 22px;
    }
}


.business-model-section {
    padding: 60px 0;
    background: #f7f4ef;
}


.business-model-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 40px;
    align-items: start;
}

.business-model-content {
    max-width: 420px;
}


.business-model-text {
    margin: 0;
    color: #2f3b35;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    max-width: 380px;
}

.business-model-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.business-model-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px 16px 22px;
    text-align: center;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    min-height: 100%;
    transition: all 0.3s ease;
}

.business-model-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.business-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: #234c3a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #d7b06a;
    box-shadow: 0 6px 14px rgba(35, 76, 58, 0.18);
}

.business-model-card h3 {
    margin: 0;
    color: #1d3e31;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 700;
}

.card-line {
    width: 62px;
    height: 2px;
    margin: 16px auto 16px;
    background: #c49a54;
}

.business-model-card p {
    margin: 0;
    color: #2f3b35;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}

/* Responsive */
@media (max-width: 1199px) {
    .business-model-grid {
        grid-template-columns: 1fr;
    }

    .business-model-content {
        max-width: 100%;
    }

    .business-model-text {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .business-model-cards {
        grid-template-columns: repeat(2, 1fr);
    }


    .business-model-text {
        font-size: 16px;
    }

    .business-model-card h3 {
        font-size: 24px;
    }

    .business-model-card p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .business-model-section {
        padding: 40px 0;
    }

    .business-model-cards {
        grid-template-columns: 1fr;
    }

    .business-model-grid {
        gap: 30px;
    }



    .business-model-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .business-model-card {
        padding: 28px 22px;
    }

    .business-card-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }

    .business-model-card h3 {
        font-size: 21px;
    }

    .business-model-card p {
        font-size: 16px;
        line-height: 1.7;
    }
}

.revenue-model-section {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(4, 39, 28, 0.95) 0%, rgba(4, 39, 28, 0.88) 40%, rgba(4, 39, 28, 0.72) 100%),
        url("../images/bg-2.webp") center center / cover no-repeat;
    font-family: "Inter", sans-serif;
}

.revenue-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(214, 171, 94, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
    pointer-events: none;
}



.revenue-model-wrapper {
    display: grid;
    grid-template-columns: 0.95fr 1.45fr;
    gap: 40px;
    align-items: center;
}

.revenue-model-content {
    max-width: 400px;
}



.revenue-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
}

.revenue-model-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.revenue-card {
    position: relative;
    padding: 22px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    text-align: center;
    transition: all 0.35s ease;
}

.revenue-card:hover {
    transform: translateY(-6px);
    border-color: rgba(215, 171, 92, 0.25);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.revenue-card-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 24px;
    border-radius: 50%;
    border: 2px solid #d7ab5c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.revenue-card-icon i {
    color: #d7ab5c;
    font-size: 33px;
    line-height: 1;
}

.revenue-card h3 {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 600;
}

.card-line {
    width: 62px;
    height: 2px;
    margin: 16px auto 16px;
    background: #d7ab5c;
}

.revenue-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}

/* =========================
   Large Tablet
========================= */
@media (max-width: 1199px) {
    .revenue-model-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .revenue-model-content {
        max-width: 100%;
    }

    .revenue-text {
        max-width: 850px;
    }
}

/* =========================
   Tablet
========================= */
@media (max-width: 991px) {
    .revenue-model-section {
        padding: 70px 0;
    }

    .revenue-model-cards {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .revenue-card {
        padding: 30px 22px;
    }

    .revenue-card h3 {
        font-size: 24px;
    }

    .revenue-card p {
        font-size: 16px;
        line-height: 1.7;
    }

    .revenue-card-icon {
        width: 72px;
        height: 72px;
    }

    .revenue-card-icon i {
        font-size: 30px;
    }
}

/* =========================
   Mobile
========================= */
@media (max-width: 767px) {
    .revenue-model-section {
        padding: 40px 0;
    }

    .revenue-model-wrapper {
        gap: 28px;
    }



    .revenue-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .revenue-model-cards {
        grid-template-columns: 1fr;
    }

    .revenue-card {
        padding: 20px 16px;
        border-radius: 18px;
    }

    .revenue-card-icon {
        width: 68px;
        height: 68px;
        margin-bottom: 18px;
    }

    .revenue-card-icon i {
        font-size: 28px;
    }

    .revenue-card h3 {
        font-size: 20px;
        line-height: 1.4;
    }

    .card-line {
        margin: 18px auto;
    }

    .revenue-card p {
        font-size: 16px;
        line-height: 1.7;
    }
}

/* =========================================
   ELIGIBILITY CRITERIA
========================================= */

.eligibility-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background:
        radial-gradient(circle at top right,
            rgba(216, 173, 112, 0.08),
            transparent 30%),
        #f8f6f1;
}

.eligibility-section::before {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -220px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(17, 93, 71, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.eligibility-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:
        minmax(220px, 0.8fr) minmax(250px, 0.85fr) minmax(0, 2fr);
    gap: 28px;
    align-items: stretch;
}

/* Image */

.eligibility-image {
    min-height: 480px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 22px 55px rgba(15, 54, 42, 0.15);
}

.eligibility-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.eligibility-image:hover img {
    transform: scale(1.05);
}

/* Main content */

.eligibility-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 4px;
}

.eligibility-content .section-title {
    margin-bottom: 0;
}

.eligibility-heading-line {
    width: 58px;
    height: 2px;
    margin: 24px 0 22px;
    border-radius: 10px;
    background: var(--secondary);
}

.eligibility-content p {
    margin: 0;
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
}

/* Cards */

.eligibility-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.eligibility-card {
    position: relative;
    height: 100%;
    padding: 22px 16px;
    overflow: hidden;
    border: 1px solid rgba(17, 93, 71, 0.09);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 38px rgba(17, 74, 57, 0.08);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.eligibility-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 25px;
    left: 25px;
    height: 3px;
    border-radius: 0 0 6px 6px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.eligibility-card:hover {
    border-color: rgba(216, 173, 112, 0.5);
    box-shadow: 0 24px 55px rgba(17, 74, 57, 0.14);
    transform: translateY(-7px);
}

.eligibility-card:hover::before {
    transform: scaleX(1);
}

/* Card icon */

.eligibility-card-icon {
    width: 65px;
    height: 65px;
    display: grid;
    place-items: center;
    margin: 0 auto 12px;
    color: var(--secondary);
    border-radius: 50%;
    background: var(--primary-dark);
    box-shadow: 0 12px 25px rgba(7, 63, 48, 0.2);
    font-size: 28px;
    transition: transform 0.35s ease;
}

.eligibility-card-icon i {
    font-weight: 900;
    -webkit-text-stroke: 0.7px currentColor;
}

.eligibility-card:hover .eligibility-card-icon {
    transform: rotate(-5deg) scale(1.06);
}

/* Card heading */

.eligibility-card h3 {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: var(--heading);
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.eligibility-card-line {
    width: 48px;
    height: 2px;
    margin: 15px auto 15px;
    background: var(--secondary);
}

/* List */

.eligibility-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.eligibility-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--heading);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.eligibility-list li i {
    flex-shrink: 0;
    margin-top: 0px;
    color: var(--secondary-dark, #a47d38);
    font-size: 14px;
    font-weight: 800;
    -webkit-text-stroke: 0.35px currentColor;
}

/* =========================================
   LARGE SCREEN
========================================= */

@media (max-width: 1199.98px) {

    .eligibility-wrapper {
        grid-template-columns: 0.8fr 1.2fr;
    }

    .eligibility-content {
        padding-left: 15px;
    }

    .eligibility-cards {
        grid-column: 1 / -1;
    }

    .eligibility-image {
        min-height: 390px;
    }

}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .eligibility-section {
        padding: 58px 0;
    }

    .eligibility-wrapper {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .eligibility-image {
        min-height: 430px;
    }

    .eligibility-content {
        padding: 0;
    }

    .eligibility-content p {
        max-width: 750px;
    }

    .eligibility-cards {
        grid-column: auto;
    }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

    .eligibility-section {
        padding: 42px 0;
    }

    .eligibility-wrapper {
        gap: 24px;
    }

    .eligibility-image {
        min-height: 340px;
        border-radius: 19px;
    }

    .eligibility-heading-line {
        margin: 19px 0 17px;
    }

    .eligibility-content p {
        font-size: 13px;
        line-height: 1.75;
    }

    .eligibility-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .eligibility-card {
        padding: 24px 20px;
        border-radius: 17px;
    }

    .eligibility-card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin: 0 0px 15px;
    }

    .eligibility-card h3 {
        min-height: auto;
        font-size: 16px;
        justify-content: start;
    }

    .eligibility-card-line {
        margin: 15px 0px 17px;
    }

    .eligibility-list {
        gap: 10px;
    }

    .eligibility-list li {
        font-size: 14px;
    }

}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575.98px) {

    .eligibility-image {
        min-height: 290px;
    }

    .eligibility-card {
        padding: 22px 17px;
    }

}

/* =========================================
   PROPERTY UPGRADATION SECTION
========================================= */

.property-upgradation-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0;
    background:
        linear-gradient(90deg, rgba(3, 46, 32, 0.96) 0%, rgba(4, 48, 35, 0.93) 38%, rgba(3, 42, 31, 0.92) 100%);
}

.property-upgradation-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(216, 173, 112, 0.10), transparent 28%),
        radial-gradient(circle at bottom right, rgba(216, 173, 112, 0.08), transparent 24%);
    pointer-events: none;
}

.property-upgradation-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.95fr;
    gap: 28px;
    align-items: center;
}

/* Left Content */

.property-upgradation-content .section-title {
    margin-bottom: 0;
    max-width: 620px;
}

.property-upgradation-content .section-title span {
    color: #ffffff;
}

.property-upgradation-line {
    width: 58px;
    height: 2px;
    margin: 20px 0 22px;
    background: #d8ad70;
    border-radius: 20px;
}

.property-upgradation-text {
    max-width: 620px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.8;
}

.property-upgradation-note {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 660px;
    padding: 18px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.14);
}

.property-upgradation-note-icon {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: #d8ad70;
    border-radius: 18px;
    background: rgba(216, 173, 112, 0.08);
    font-size: 34px;
}

.property-upgradation-note-icon i {
    font-weight: 900;
    -webkit-text-stroke: 0.6px currentColor;
}

.property-upgradation-note-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.8;
}

/* Center Image */

.property-upgradation-image {
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.2);
    min-height: 390px;
}

.property-upgradation-image img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.property-upgradation-image:hover img {
    transform: scale(1.05);
}

/* Right List Box */

.property-upgradation-list-box {
    padding: 28px 26px;
    border: 1px solid rgba(216, 173, 112, 0.75);
    border-radius: 22px;
    background: rgba(3, 39, 28, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
}

.property-upgradation-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 18px;
}

.property-upgradation-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
}

.property-upgradation-list li i {
    flex-shrink: 0;
    margin-top: 2px;
    color: #d8ad70;
    font-size: 20px;
    font-weight: 900;
    -webkit-text-stroke: 0.5px currentColor;
}

.property-upgradation-list li span {
    color: rgba(255, 255, 255, 0.95);
}

/* =========================================
   LARGE DEVICES
========================================= */

@media (max-width: 1199.98px) {
    .property-upgradation-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .property-upgradation-content {
        grid-column: 1 / -1;
    }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {
    .property-upgradation-section {
        padding: 58px 0;
    }

    .property-upgradation-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .property-upgradation-image {
        min-height: 360px;
    }

    .property-upgradation-image img {
        min-height: 360px;
    }

    .property-upgradation-list-box {
        padding: 24px 22px;
    }

    .property-upgradation-list li {
        font-size: 15px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {
    .property-upgradation-section {
        padding: 42px 0;
    }

    .property-upgradation-line {
        margin: 16px 0 18px;
    }

    .property-upgradation-text {
        font-size: 13px;
        line-height: 1.75;
    }

    .property-upgradation-note {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 16px;
        gap: 14px;
    }

    .property-upgradation-note-icon {
        width: 58px;
        height: 58px;
        font-size: 28px;
        border-radius: 14px;
    }

    .property-upgradation-note-content p {
        font-size: 13px;
        line-height: 1.75;
    }

    .property-upgradation-image {
        min-height: 300px;
        border-radius: 18px;
    }

    .property-upgradation-image img {
        min-height: 300px;
    }

    .property-upgradation-list-box {
        padding: 20px 18px;
        border-radius: 18px;
    }

    .property-upgradation-list {
        gap: 14px;
    }

    .property-upgradation-list li {
        gap: 10px;
        font-size: 14px;
    }

    .property-upgradation-list li i {
        font-size: 18px;
    }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575.98px) {
    .property-upgradation-image {
        min-height: 260px;
    }

    .property-upgradation-image img {
        min-height: 260px;
    }
}


/* =========================================================
   FINAL NAVIGATION, FONT AND ENQUIRY FORM UPDATE
========================================================= */

body {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

h1,
h2,
h3 {
    font-family: "Playfair Display", serif;
}

h4,
h5,
h6,
button,
input,
select,
textarea,
.nav-link,
.header-cta {
    font-family: "Manrope", sans-serif;
}

/* Desktop navigation */

.desktop-navigation {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.desktop-navigation .navbar-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
}

.desktop-navigation .nav-link {
    padding-right: 8px !important;
    padding-left: 8px !important;
    font-size: 13px;
    white-space: nowrap;
}

/* New mobile button */

.mobile-nav-toggle {
    width: 46px;
    height: 46px;
    display: none;
    place-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(17, 93, 71, 0.14);
    border-radius: 14px;
    background: var(--primary-light);
    box-shadow: none;
}

.mobile-nav-toggle span {
    width: 21px;
    height: 2px;
    display: block;
    border-radius: 20px;
    background: var(--primary);
    transition: transform 0.3s ease;
}

/* Mobile offcanvas */

.mobile-navigation {
    z-index: 2050;
    width: min(91%, 390px) !important;
    border-left: 0;
    background:
        radial-gradient(circle at top right,
            rgba(216, 173, 112, 0.22),
            transparent 30%),
        #ffffff;
    box-shadow: -28px 0 75px rgba(5, 45, 34, 0.28);
}

.offcanvas-backdrop {
    z-index: 2040;
    background: #031a13;
}

.offcanvas-backdrop.show {
    opacity: 0.72;
}

.mobile-navigation .offcanvas-header {
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(17, 93, 71, 0.1);
            justify-content: space-between;
}

.mobile-navigation-brand {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-navigation-logo {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--primary-dark);
    border-radius: 15px 15px 15px 5px;
    background: var(--secondary);
    font-size: 22px;
    box-shadow: 0 10px 24px rgba(216, 173, 112, 0.24);
}

.mobile-navigation-label {
    display: block;
    margin-bottom: 3px;
    color: var(--primary);
    font-family: "Manrope", sans-serif;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.mobile-navigation-brand h2 {
    margin: 0;
    color: var(--heading);
    font-size: 18px;
    line-height: 1.2;
}

.mobile-navigation-close {
    width: 41px;
    height: 41px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    padding: 0;
    color: var(--primary);
    border: 1px solid rgba(17, 93, 71, 0.13);
    border-radius: 50%;
    background: var(--primary-light);
    font-size: 16px;
    transition: var(--transition);
}

.mobile-navigation-close:hover {
    color: var(--white);
    border-color: var(--primary);
    background: var(--primary);
    transform: rotate(90deg);
}

.mobile-navigation .offcanvas-body {
    padding: 20px;
}

.mobile-navigation-intro {
    margin-bottom: 18px;
    padding: 15px 16px;
    border: 1px solid rgba(17, 93, 71, 0.09);
    border-radius: 14px;
    background: rgba(17, 93, 71, 0.05);
}

.mobile-navigation-intro>span {
    display: block;
    margin-bottom: 3px;
    color: var(--primary);
    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mobile-navigation-intro p {
    margin: 0;
    color: var(--text);
    font-size: 12px;
    line-height: 1.55;
}

.mobile-navigation-menu {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-navigation-link {
    min-height: 54px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 11px;
    padding: 8px 10px;
    color: var(--heading);
    border: 1px solid transparent;
    border-radius: 14px;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 750;
}

.mobile-menu-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--primary);
    border-radius: 9px;
    background: var(--primary-light);
    font-size: 15px;
    transition: var(--transition);
}

.mobile-menu-arrow {
    color: rgba(17, 93, 71, 0.45);
    font-size: 20px;
    transition: var(--transition);
}

.mobile-navigation-link:hover,
.mobile-navigation-link.active {
    color: var(--primary);
    border-color: rgba(17, 93, 71, 0.12);
    background: rgba(17, 93, 71, 0.06);
}

.mobile-navigation-link:hover .mobile-menu-icon,
.mobile-navigation-link.active .mobile-menu-icon {
    color: var(--primary-dark);
    background: var(--secondary);
}

.mobile-navigation-link:hover .mobile-menu-arrow,
.mobile-navigation-link.active .mobile-menu-arrow {
    color: var(--primary);
    transform: translateX(3px);
}

.mobile-enquiry-button {
    min-height: 63px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
    margin-top: 20px;
    padding: 13px 16px;
    color: var(--white);
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 14px 32px rgba(17, 93, 71, 0.23);
}

.mobile-enquiry-button span {
    display: flex;
    flex-direction: column;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.mobile-enquiry-button small {
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.mobile-enquiry-button>i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--primary-dark);
    border-radius: 50%;
    background: var(--secondary);
}

.mobile-enquiry-button:hover {
    color: var(--white);
    transform: translateY(-3px);
}

.mobile-navigation-contact {
    display: grid;
    gap: 10px;
    margin-top: 19px;
    padding-top: 19px;
    border-top: 1px solid rgba(17, 93, 71, 0.1);
}

.mobile-navigation-contact a {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--heading);
}

.mobile-navigation-contact a>i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--primary);
    border-radius: 11px;
    background: var(--primary-light);
}

.mobile-navigation-contact span {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow-wrap: anywhere;
    font-size: 11px;
    font-weight: 700;
}

.mobile-navigation-contact small {
    margin-bottom: 1px;
    color: var(--text);
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}


/* Final responsive navigation overrides */

@media (max-width: 1199.98px) and (min-width: 992px) {
    .desktop-navigation .nav-link {
        padding-right: 5px !important;
        padding-left: 5px !important;
        font-size: 11px;
    }

    .desktop-navigation .header-cta {
        margin-left: 8px;
        padding: 11px 13px;
        font-size: 10px;
    }
}

@media (max-width: 991.98px) {

    .site-header,
    .site-header.sticky {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1100;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 8px 28px rgba(7, 48, 37, 0.1);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }

    .navbar {
        min-height: 72px;
    }

    .site-header:not(.sticky) .navbar {
        border-bottom: 0;
    }

    .navbar-brand,
    .navbar-brand:hover {
        color: var(--heading);
    }

    .desktop-navigation {
        display: none;
    }

    .mobile-nav-toggle {
        display: grid;
    }

 
}

@media (max-width: 767.98px) {
    body {
        font-size: 15px;
    }

    .mobile-navigation {
        width: min(94%, 370px) !important;
    }


}

@media (max-width: 575.98px) {
    .mobile-navigation .offcanvas-header {
        padding: 18px 16px;
        
    }

    .mobile-navigation .offcanvas-body {
        padding: 17px 16px 24px;
    }

    .mobile-navigation-brand h2 {
        font-size: 16px;
    }

    .mobile-navigation-logo {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .mobile-nav-toggle {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .mobile-navigation-link {
        min-height: 54px;
        grid-template-columns: 38px minmax(0, 1fr) 22px;
        font-size: 12px;
    }

    .mobile-menu-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}


/* =========================================
   FLOATING CALL BUTTON
========================================= */

.call-float {
    position: fixed;
    left: 12px;
    bottom: 102px;
    z-index: 1050;

    width: 59px;
    height: 59px;

    display: grid;
    place-items: center;

    color: #ffffff;
    border: 4px solid #ffffff;
    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #115d47,
            #073f30);

    box-shadow:
        0 12px 30px rgba(7, 63, 48, 0.28);

    font-size: 24px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.call-float::before {
    content: "";
    position: absolute;
    inset: -7px;
    z-index: -1;

    border: 2px solid rgba(17, 93, 71, 0.28);
    border-radius: 50%;

    animation: callPulse 2s infinite;
}

.call-float:hover {
    color: #ffffff;

    box-shadow:
        0 17px 38px rgba(7, 63, 48, 0.36);

    transform: translateY(-5px) scale(1.04);
}

.call-float i {
    animation: callRing 2.5s infinite;
}

/* Tooltip */

.call-tooltip {
    position: absolute;
    top: 50%;
    left: calc(100% + 12px);

    min-width: 72px;
    padding: 7px 11px;

    color: #ffffff;
    border-radius: 7px;
    background: #073f30;

    font-size: 11px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-50%) translateX(-5px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}

.call-tooltip::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;

    border: 6px solid transparent;
    border-right-color: #073f30;

    transform: translateY(-50%);
}

.call-float:hover .call-tooltip {
    opacity: 1;
    visibility: visible;

    transform: translateY(-50%) translateX(0);
}

/* Animations */

@keyframes callPulse {

    0% {
        opacity: 0.8;
        transform: scale(0.9);
    }

    70% {
        opacity: 0;
        transform: scale(1.35);
    }

    100% {
        opacity: 0;
        transform: scale(1.35);
    }

}

@keyframes callRing {

    0%,
    75%,
    100% {
        transform: rotate(0);
    }

    80% {
        transform: rotate(12deg);
    }

    85% {
        transform: rotate(-12deg);
    }

    90% {
        transform: rotate(8deg);
    }

    95% {
        transform: rotate(-8deg);
    }

}

/* Mobile */

@media (max-width: 575.98px) {

    .call-float {
        left: 16px;
        bottom: 82px;

        width: 48px;
        height: 48px;

        border-width: 3px;

        font-size: 21px;
    }

    .call-tooltip {
        display: none;
    }

}

/* =========================================
   FLOATING WHATSAPP BUTTON
========================================= */

.whatsapp-float {
    position: fixed;
    left: 12px;
    bottom: 22px;
    z-index: 1050;

    width: 59px;
    height: 59px;

    display: grid;
    place-items: center;

    color: #ffffff;
    border: 4px solid #ffffff;
    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #25d366,
            #128c4a);

    box-shadow:
        0 12px 30px rgba(18, 140, 74, 0.3);

    font-size: 28px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: -7px;
    z-index: -1;

    border: 2px solid rgba(37, 211, 102, 0.32);
    border-radius: 50%;

    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    color: #ffffff;

    box-shadow:
        0 17px 38px rgba(18, 140, 74, 0.42);

    transform: translateY(-5px) scale(1.04);
}

.whatsapp-float i {
    line-height: 1;
    animation: whatsappMove 2.5s infinite;
}

/* Tooltip */

.whatsapp-tooltip {
    position: absolute;
    top: 50%;
    left: calc(100% + 12px);

    min-width: 98px;
    padding: 7px 11px;

    color: #ffffff;
    border-radius: 7px;
    background: #128c4a;

    font-size: 11px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-50%) translateX(-5px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
}

.whatsapp-tooltip::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;

    border: 6px solid transparent;
    border-right-color: #128c4a;

    transform: translateY(-50%);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;

    transform: translateY(-50%) translateX(0);
}

/* Animations */

@keyframes whatsappPulse {

    0% {
        opacity: 0.8;
        transform: scale(0.9);
    }

    70% {
        opacity: 0;
        transform: scale(1.35);
    }

    100% {
        opacity: 0;
        transform: scale(1.35);
    }

}

@keyframes whatsappMove {

    0%,
    75%,
    100% {
        transform: rotate(0) scale(1);
    }

    82% {
        transform: rotate(-8deg) scale(1.08);
    }

    88% {
        transform: rotate(8deg) scale(1.08);
    }

    94% {
        transform: rotate(-5deg) scale(1.04);
    }

}

/* Mobile */

@media (max-width: 575.98px) {

    .whatsapp-float {
        left: 16px;
        bottom: 16px;

        width: 48px;
        height: 48px;

        border-width: 3px;

        font-size: 21px;
    }

    .whatsapp-tooltip {
        display: none;
    }

}

.banner-1 {
    min-height: 780px;
    display: flex;
    align-items: center;
    padding: 150px 0 125px;
    overflow: hidden;
    background:
        linear-gradient(90deg,
            rgba(4, 38, 28, 0.76) 0%,
            rgba(4, 38, 28, 0.56) 42%,
            rgba(4, 38, 28, 0.40) 72%,
            rgba(4, 38, 28, 0.18) 100%),
        url("../images/banner-1.webp") center/cover no-repeat;
}

.banner-2 {
    min-height: 780px;
    display: flex;
    align-items: center;
    padding: 150px 0 125px;
    overflow: hidden;
    background:
        linear-gradient(90deg,
            rgba(4, 38, 28, 0.76) 0%,
            rgba(4, 38, 28, 0.56) 42%,
            rgba(4, 38, 28, 0.40) 72%,
            rgba(4, 38, 28, 0.18) 100%),
        url("../images/banner-2.webp") center/cover no-repeat;
}

.banner-3 {
    min-height: 780px;
    display: flex;
    align-items: center;
    padding: 150px 0 125px;
    overflow: hidden;
    background:
        linear-gradient(90deg,
            rgba(4, 38, 28, 0.76) 0%,
            rgba(4, 38, 28, 0.56) 42%,
            rgba(4, 38, 28, 0.40) 72%,
            rgba(4, 38, 28, 0.18) 100%),
        url("../images/banner-3.webp") center/cover no-repeat;
}

.banner-4 {
    min-height: 780px;
    display: flex;
    align-items: center;
    padding: 150px 0 125px;
    overflow: hidden;
    background:
        linear-gradient(90deg,
            rgba(4, 38, 28, 0.76) 0%,
            rgba(4, 38, 28, 0.56) 42%,
            rgba(4, 38, 28, 0.40) 72%,
            rgba(4, 38, 28, 0.18) 100%),
        url("../images/banner-4.webp") center/cover no-repeat;
}

.banner-5 {
    min-height: 780px;
    display: flex;
    align-items: center;
    padding: 150px 0 125px;
    overflow: hidden;
    background:
        linear-gradient(90deg,
            rgba(4, 38, 28, 0.76) 0%,
            rgba(4, 38, 28, 0.56) 42%,
            rgba(4, 38, 28, 0.40) 72%,
            rgba(4, 38, 28, 0.18) 100%),
        url("../images/banner-5.webp") center/cover no-repeat;
}


