:root {
    --green: #064b2d;
    --dark-green: #03351f;
    --light-green: #eaf4ee;
    --gold: #e6a72d;
    --gold-dark: #c98b15;
    --white: #ffffff;
    --black: #111111;
    --gray: #666666;
    --light-gray: #f7f8f7;
    --border: #e6e9e7;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "DM Sans", sans-serif;
    color: var(--black);
    background: #ffffff;
    overflow-x: hidden;
}


img {
    max-width: 100%;
    display: block;
}


a {
    text-decoration: none;
}


.section-padding {
    padding: 90px 0;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    background: #1da73b;
    color: #fff;
    font-size: 12px;
    padding: 8px 0;
}


.top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 15px;
}


.top-bar i {
    margin-right: 4px;
}


.top-right a {
    color: #fff;
}


/* =========================================================
   HEADER
========================================================= */

.main-header {
    background: #fff;
    position: relative;
    z-index: 1000;
    transition: all .3s ease;
}


.main-header.sticky-active {
    position: fixed;
    width: 100%;
    top: 0;
    box-shadow: 0 5px 25px rgba(0,0,0,.08);
}


.navbar {
    min-height: 78px;
}


.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}


.logo-box {
    width: 45px;
    height: 45px;
    border: 2px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    border-radius: 10px;
}


.logo-text {
    display: flex;
    flex-direction: column;
}


.logo-text strong {
    color: #1da73b;
    font-size: 18px;
    line-height: 1;
}


.logo-text small {
    font-size: 9px;
    color: #777;
    letter-spacing: 2px;
    margin-top: 4px;
}


.nav-link {
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin: 0 8px;
    position: relative;
}


.nav-link:hover,
.nav-link.active {
    color: var(--gold-dark);
}


.btn-green {
    background: #1da73b;
    color: #fff;
    border-radius: 7px;
    padding: 11px 20px;
    border: 1px solid #1da73b;
    font-weight: 600;
    transition: all .3s ease;
}


.btn-green:hover {
    background: #e61049;
    color: #fff;
    transform: translateY(-2px);
}


.btn-gold {
    background: var(--gold);
    color: #fff;
    border: 1px solid var(--gold);
    border-radius: 7px;
    padding: 12px 22px;
    font-weight: 600;
}


.btn-gold:hover {
    background: var(--gold-dark);
    color: #fff;
}


.btn-white {
    background: #fff;
    color: #1da73b;
    border-radius: 7px;
    padding: 12px 22px;
    font-weight: 600;
}


.btn-outline-green {
    color: #1da73b;
    border: 1px solid #1da73b;
    border-radius: 7px;
    padding: 10px 18px;
    font-weight: 600;
}


.btn-outline-green:hover {
    background: #1da73b;
    color: #fff;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    position: relative;
}


.hero-image {
    height: 650px;
    width: 100%;
    object-fit: cover;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.72),
            rgba(0,0,0,.25),
            rgba(0,0,0,.05)
        );
}


.hero-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}


.hero-content {
    max-width: 650px;
    color: #fff;
}


.hero-small {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
}


.hero-content h1 {
    font-size: clamp(45px, 5vw, 72px);
    line-height: 1.02;
    text-transform: uppercase;
    font-weight: 700;
    margin: 15px 0;
}


.hero-content h1 span {
    color: var(--gold);
}


.hero-content p {
    font-size: 18px;
    max-width: 550px;
    margin-bottom: 30px;
}


.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}


.hero-arrow {
    width: 42px;
    height: 42px;
    background: #fff;
    color: #1da73b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   STATS
========================================================= */

.stats-section {
    position: relative;
    z-index: 5;
    margin-top: -35px;
}


.stats-box {
    background: #1da73b;
    color: #fff;
    border-radius: 15px;
    padding: 25px 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}


.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 25px;
    border-right: 1px solid rgba(255,255,255,.25);
}


.stat-item:last-child {
    border-right: 0;
}


.stat-icon {
    font-size: 34px;
    color: var(--gold);
}


.stat-item h3 {
    margin: 0;
    font-size: 28px;
}


.stat-item p {
    margin: 0;
    font-size: 13px;
    opacity: .85;
}


/* =========================================================
   SECTION TITLES
========================================================= */

.section-label {
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}


.section-title {
    color: #1da73b;
    font-family: "Playfair Display", serif;
    font-size: 40px;
    margin: 8px 0 20px;
}


.section-title span {
    color: var(--gold-dark);
}


.section-description {
    color: var(--gray);
    line-height: 1.8;
}


/* =========================================================
   ABOUT
========================================================= */

.about-image-wrapper {
    position: relative;
    padding-right: 40px;
}


.about-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
}


.experience-box {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: #fff;
    padding: 22px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}


.experience-box strong {
    display: block;
    color: #1da73b;
    font-size: 34px;
}


.experience-box span {
    color: #555;
    font-size: 13px;
}


.about-list {
    margin: 25px 0;
}


.about-list div {
    margin-bottom: 14px;
    font-weight: 500;
}


.about-list i {
    color: #1da73b;
    margin-right: 8px;
}


/* =========================================================
   PROJECTS
========================================================= */

.projects-section {
    background: var(--light-gray);
}


.section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 35px;
}


.project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,.06);
    transition: .3s ease;
}


.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}


.project-image {
    height: 210px;
    position: relative;
    overflow: hidden;
}


.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}


.project-card:hover .project-image img {
    transform: scale(1.08);
}


.featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
}


.project-body {
    padding: 18px;
}


.project-body h3 {
    font-size: 18px;
    color: #1da73b;
    margin-bottom: 10px;
}


.project-location {
    color: #777;
    font-size: 12px;
    margin-bottom: 12px;
}


.project-location i {
    color: var(--gold);
}


.project-info {
    font-size: 12px;
    color: #555;
    margin-bottom: 12px;
}


.price {
    color: #777;
    font-size: 12px;
    border-top: 1px solid var(--border);
    padding-top: 12px;
}


.price strong {
    color: var(--gold-dark);
    display: block;
    font-size: 18px;
}


.project-buttons {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}


.project-buttons .btn {
    flex: 1;
}


/* =========================================================
   WHY CHOOSE
========================================================= */

.why-section {
    background: #fff;
}


.feature-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 25px 15px;
    text-align: center;
    height: 100%;
    border-radius: 10px;
    transition: .3s;
}


.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}


.feature-icon {
    width: 60px;
    height: 60px;
    margin: auto auto 15px;
    background: var(--light-green);
    color: #1da73b;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 25px;
}


.feature-card h4 {
    font-size: 15px;
    color: #1da73b;
}


.feature-card p {
    font-size: 12px;
    color: #777;
}


/* =========================================================
   AMENITIES
========================================================= */

.amenities-section {
    background: var(--light-gray);
}


.amenity-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: .3s;
}


.amenity-card:hover {
    background: #1da73b;
    color: #fff;
    transform: translateY(-5px);
}


.amenity-card i {
    color: var(--gold);
    font-size: 35px;
}


.amenity-card h4 {
    font-size: 17px;
    margin: 12px 0 5px;
}


.amenity-card p {
    margin: 0;
    font-size: 12px;
    color: #777;
}


.amenity-card:hover p {
    color: rgba(255,255,255,.8);
}


/* =========================================================
   GALLERY
========================================================= */

.gallery-item {
    height: 260px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}


.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}


.gallery-item:hover img {
    transform: scale(1.08);
}


.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(
        transparent,
        rgba(0,0,0,.75)
    );
}


/* =========================================================
   LOCATION
========================================================= */

.location-content {
    padding: 80px 10%;
}


.location-content p {
    color: #666;
    line-height: 1.8;
}


.location-list {
    margin: 25px 0;
}


.location-list div {
    margin-bottom: 14px;
}


.location-list i {
    color: #1da73b;
    margin-right: 8px;
}


.google-map {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: 0;
}


/* =========================================
   INFINITE TESTIMONIAL SLIDER
========================================= */

.testimonial-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 15px 45px 30px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s ease;
    will-change: transform;
}

.testimonial-slide {
    flex: 0 0 25%;
    width: 25%;
    padding: 0 10px;
    box-sizing: border-box;
}

.testimonial-card {
    height: 100%;
    min-height: 220px;

    padding: 25px 22px;

    background: #fff;

    border-radius: 25px;

    border: 1px solid rgba(0, 80, 55, 0.08);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.07);

    transition: all .4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0, 80, 55, 0.16);
}


/* =========================================
   ARROWS
========================================= */

.testimonial-prev,
.testimonial-next {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    width: 40px;
    height: 40px;

    border: none;
    border-radius: 50%;

    background: #075a3e;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 20;

    transition: all .3s ease;
}

.testimonial-prev {
    left: 3px;
}

.testimonial-next {
    right: 3px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #e2a927;

    transform:
        translateY(-50%)
        scale(1.1);
}


/* =========================================
   TABLET
========================================= */

@media (min-width: 768px) and (max-width: 1199px) {

    .testimonial-slide {
        flex: 0 0 50%;
        width: 50%;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .testimonial-slider {
        padding: 10px 38px 20px;
    }

    .testimonial-slide {
        flex: 0 0 100%;
        width: 100%;
        padding: 0 5px;
    }

}

/* =========================================================
   SITE VISIT
========================================================= */

.site-visit-section {
    padding: 70px 0;
}


.site-visit-box {
    background: #1da73b;
    color: #fff;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: center;
}


.site-visit-content {
    flex: 1;
    padding: 50px;
}


.site-visit-content > span {
    color: var(--gold);
    font-weight: 700;
    font-size: 13px;
}


.site-visit-content h2 {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    margin: 10px 0;
}


.site-visit-content p {
    opacity: .85;
}


.site-visit-image {
    width: 45%;
}


.site-visit-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    background: var(--light-gray);
}


.contact-info {
    margin-top: 30px;
}


.contact-item {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}


.contact-item > i {
    width: 45px;
    height: 45px;
    background: #1da73b;
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.contact-item span,
.contact-item strong {
    display: block;
}


.contact-item span {
    color: #777;
    font-size: 12px;
}


.contact-item strong {
    color: #1da73b;
}


.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}


.contact-form h3 {
    color: #1da73b;
    font-family: "Playfair Display", serif;
    font-size: 30px;
}


.contact-form p {
    color: #777;
}


.form-control {
    border: 1px solid #ddd;
    border-radius: 7px;
    padding: 12px 15px;
}


.form-control:focus {
    border-color: #1da73b;
    box-shadow: 0 0 0 3px rgba(6,75,45,.1);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #227e36;
    color: #fff;
    padding: 65px 0 0;
}


/* =========================================
   FOOTER LOGO
========================================= */

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo a {
    display: inline-block;
}

.footer-logo-img {
    width: 180px;
    height: 100px;
    max-width: 100%;
    display: block;
    object-fit: contain;
}
.footer-logo-img {
    width: 210px;
    height: auto;
    display: block;
}
@media (max-width: 767px) {

    .footer-logo-img {
        width: 170px;
    }

}


.footer p {
    color: rgba(255,255,255,.65);
    line-height: 1.7;
}


.footer h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--gold);
}


.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


.footer li {
    margin-bottom: 10px;
    color: rgba(255,255,255,.7);
    font-size: 13px;
}


.footer li a {
    color: rgba(255,255,255,.7);
}


.footer li a:hover {
    color: var(--gold);
}


.footer-contact i {
    color: var(--gold);
    margin-right: 8px;
}


.social-links {
    display: flex;
    gap: 10px;
}


.social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}


.social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
}


.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 50px;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,.6);
}


.footer-bottom strong {
    color: var(--gold);
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 55px;
    height: 55px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 27px;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0,0,0,.2);
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 90px;
    width: 42px;
    height: 42px;
    background: #1da73b;
    color: #fff;
    border: 0;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 998;
}


.back-to-top.show {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .top-right {
        display: none;
    }

    .top-content {
        justify-content: center;
    }

    .navbar-nav {
        padding: 20px 0;
    }

    .nav-link {
        margin: 8px 0;
    }

    .hero-image {
        height: 600px;
    }

    .stats-box {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .stat-item:nth-child(2) {
        border-right: 0;
    }

    .site-visit-box {
        flex-direction: column;
    }

    .site-visit-content {
        width: 100%;
    }

    .site-visit-image {
        width: 100%;
    }

}


@media (max-width: 767px) {

    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-image {
        height: 650px;
    }

    .hero-content h1 {
        font-size: 43px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-section {
        margin-top: -20px;
    }

    .stats-box {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .stat-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.2);
        padding: 15px 0;
    }

    .stat-item:last-child {
        border-bottom: 0;
    }

    .section-heading-row {
        display: block;
    }

    .section-heading-row .btn {
        margin-top: 15px;
    }

    .about-image-wrapper {
        padding-right: 0;
    }

    .about-image {
        height: 350px;
    }

    .location-content {
        padding: 60px 25px;
    }

    .site-visit-content {
        padding: 35px 25px;
    }

    .site-visit-content h2 {
        font-size: 32px;
    }

    .contact-form {
        padding: 25px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

}
/* =========================================================
   CURSOR BUBBLES
========================================================= */

.cursor-bubble {
    position: fixed;
    pointer-events: none;
    z-index: 99999;

    border-radius: 50%;

    background: rgba(230, 167, 45, 0.35);

    border: 1px solid rgba(230, 167, 45, 0.7);

    transform: translate(-50%, -50%);

    animation: cursorBubbleAnimation 0.9s ease-out forwards;
}


@keyframes cursorBubbleAnimation {

    0% {
        opacity: 0.9;
        transform:
            translate(-50%, -50%)
            scale(0.3);
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 0;
        transform:
            translate(
                calc(-50% + var(--moveX)),
                calc(-50% + var(--moveY))
            )
            scale(1.4);
    }

}

.hero-image {
    height: 650px;
    width: 100%;
    object-fit: cover;

    /* Video jaisa continuous movement */
    transform: scale(1.08);
    animation: heroImageMove 8s ease-in-out infinite alternate;
}


/* =========================================================
   HERO IMAGE VIDEO / KEN BURNS EFFECT
========================================================= */

@keyframes heroImageMove {

    0% {
        transform: scale(1.05) translate3d(0, 0, 0);
    }

    25% {
        transform: scale(1.10) translate3d(-1%, -0.5%, 0);
    }

    50% {
        transform: scale(1.14) translate3d(1%, -1%, 0);
    }

    75% {
        transform: scale(1.10) translate3d(0.5%, 0.5%, 0);
    }

    100% {
        transform: scale(1.06) translate3d(-1%, 0, 0);
    }

}
.carousel-item.active .hero-image {
    animation: heroImageMove 8s ease-in-out infinite alternate;
}

.carousel-item:not(.active) .hero-image {
    animation: none;
}

/* =========================================================
   HERO POPUP BUTTON
========================================================= */

.hero-popup-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 14px 28px;

    background: #c89b3c;
    color: #fff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    border-radius: 4px;

    transition: all .35s ease;
}

.hero-popup-btn:hover {
    background: #fff;
    color: #111;

    transform: translateY(-3px);

    box-shadow: 0 10px 30px rgba(0,0,0,.2);
}

.hero-popup-btn i {
    transition: transform .3s ease;
}

.hero-popup-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   POPUP
========================================================= */

.property-popup {
    position: fixed;

    inset: 0;

    z-index: 999999;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 30px;

    opacity: 0;
}

.property-popup.active {

    display: flex;

    animation: popupFadeIn .4s ease forwards;
}


/* DARK BACKGROUND */

.property-popup-overlay {

    position: absolute;

    inset: 0;

    background:
        rgba(0,0,0,.78);

    backdrop-filter: blur(8px);
}


/* POPUP BOX */

.property-popup-content {

    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1150px;

    max-height: 90vh;

    overflow-y: auto;

    background: #fff;

    border-radius: 14px;

    box-shadow:
        0 30px 80px rgba(0,0,0,.45);

    transform: scale(.85);

    opacity: 0;

    animation: popupBox .5s ease .1s forwards;
}


/* CLOSE BUTTON */

.property-popup-close {

    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 10;

    width: 42px;
    height: 42px;

    border: 0;

    border-radius: 50%;

    background: rgba(0,0,0,.65);

    color: #fff;

    font-size: 16px;

    cursor: pointer;

    transition: all .3s ease;
}

.property-popup-close:hover {

    background: #c89b3c;

    transform: rotate(90deg);

}


/* =========================================================
   POPUP INNER
========================================================= */

.popup-inner {

    padding: 55px 55px 40px;
}


/* HEADING */

.popup-heading {

    text-align: center;

    max-width: 650px;

    margin: 0 auto 40px;
}

.popup-heading span {

    color: #c89b3c;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}

.popup-heading h2 {

    margin: 10px 0;

    font-size: 38px;

    color: #222;

    line-height: 1.2;
}

.popup-heading h2 strong {

    color: #c89b3c;
}

.popup-heading p {

    color: #777;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   PROJECT CARDS
========================================================= */

.popup-project-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 25px;
}

.popup-project-card {

    position: relative;

    overflow: hidden;

    border-radius: 10px;

    min-height: 280px;

    background: #111;
}

.popup-project-card img {

    width: 100%;
    height: 280px;

    object-fit: cover;

    transition:
        transform .8s ease;
}

.popup-project-card:hover img {

    transform: scale(1.08);
}


/* CARD CONTENT */

.popup-project-info {

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 25px;

    color: #fff;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.9)
        );
}

.popup-project-info span {

    font-size: 10px;

    letter-spacing: 1.5px;

    color: #d9b45b;
}

.popup-project-info h3 {

    margin: 7px 0;

    font-size: 24px;
}

.popup-project-info p {

    margin: 0 0 12px;

    font-size: 13px;

    opacity: .85;
}

.popup-project-info a {

    color: #fff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;
}

.popup-project-info a i {

    margin-left: 7px;

    transition: .3s;
}

.popup-project-info a:hover i {

    margin-left: 12px;
}


/* =========================================================
   BOTTOM
========================================================= */

.popup-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid #eee;
}

.popup-bottom > div {

    display: flex;

    align-items: center;

    gap: 14px;
}

.popup-bottom > div > i {

    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f6f1e5;

    color: #c89b3c;

    font-size: 18px;
}

.popup-bottom small {

    display: block;

    color: #777;

    margin-bottom: 3px;
}

.popup-bottom strong {

    color: #222;
}


/* CONTACT */

.popup-contact-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 13px 25px;

    background: #c89b3c;

    color: #fff;

    text-decoration: none;

    border-radius: 4px;

    font-size: 13px;

    font-weight: 600;

    transition: .3s;
}

.popup-contact-btn:hover {

    background: #222;

    color: #fff;
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes popupFadeIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}

@keyframes popupBox {

    from {
        opacity: 0;
        transform: scale(.85)
                   translateY(30px);
    }

    to {
        opacity: 1;
        transform: scale(1)
                   translateY(0);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px) {

    .property-popup {
        padding: 15px;
    }

    .popup-inner {
        padding: 45px 20px 25px;
    }

    .popup-heading h2 {
        font-size: 28px;
    }

    .popup-project-grid {
        grid-template-columns: 1fr;
    }

    .popup-project-card,
    .popup-project-card img {
        height: 250px;
    }

    .popup-bottom {
        flex-direction: column;
        gap: 20px;

        align-items: stretch;
    }

    .popup-contact-btn {
        justify-content: center;
    }

}
/* =========================================
   VIDEO BUTTON - RESPONSIVE
========================================= */

.hero-video-btn {
    position: absolute !important;
    top: 50% !important;
    right: 10% !important;

    width: 150px;
    height: 150px;

    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 999 !important;
    cursor: pointer;
}


/* Main Play Circle */

.video-play {
    position: relative;
    z-index: 5;

    width: 82px;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.25);
    border: 1px solid rgba(255,255,255,.7);

    backdrop-filter: blur(5px);

    color: #fff;
    font-size: 34px;

    transition: .3s ease;
}


/* Pulse */

.video-pulse {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 82px;
    height: 82px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.7);

    transform: translate(-50%, -50%);

    pointer-events: none;
}

.pulse-one {
    animation: sliderPulse 2.4s ease-out infinite;
}

.pulse-two {
    animation: sliderPulse 2.4s ease-out infinite;
    animation-delay: 1.2s;
}


@keyframes sliderPulse {

    0% {
        width: 82px;
        height: 82px;
        opacity: .8;
    }

    70% {
        width: 140px;
        height: 140px;
        opacity: .2;
    }

    100% {
        width: 155px;
        height: 155px;
        opacity: 0;
    }
}


/* Hover */

.hero-video-btn:hover .video-play {
    transform: scale(1.1);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .hero-video-btn {
        width: 125px;
        height: 125px;

        right: 7% !important;
        top: 55% !important;
    }

    .video-play {
        width: 72px;
        height: 72px;

        font-size: 30px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .hero-video-btn {
        width: 105px;
        height: 105px;

        right: 6% !important;
        top: 65% !important;
    }

    .video-play {
        width: 62px;
        height: 62px;

        font-size: 26px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .hero-video-btn {
        width: 90px;
        height: 90px;

        right: 5% !important;
        top: 68% !important;
    }

    .video-play {
        width: 55px;
        height: 55px;

        font-size: 23px;
    }

}
/* =========================================
   LOGO
========================================= */

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.header-logo {
    width: 150px;
    height: 65px;
    object-fit: contain;
    display: block;
}
@media (max-width: 768px) {

    .header-logo {
        width: 120px;
        height: 55px;
    }

}
/* =========================================
   PREMIUM PROJECT CARD
========================================= */

.project-card {
    position: relative;
    overflow: hidden;

    border-radius: 28px;

    background: #fff;

    border: 1px solid rgba(0, 70, 45, 0.08);

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}


/* Hover par poora card upar aayega */

.project-card:hover {
    transform: translateY(-10px);

    border-color: rgba(0, 70, 45, 0.25);

    box-shadow:
        0 20px 45px rgba(0, 70, 45, 0.16);
}

.project-image {
    position: relative;
    overflow: hidden;

    height: 250px;

    border-radius: 28px 28px 0 0;
}

.project-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.7s ease;
}


/* Hover image zoom */

.project-card:hover .project-image img {
    transform: scale(1.08);
}

.featured-badge {
    position: absolute;

    top: 14px;
    left: 14px;

    z-index: 5;

    padding: 6px 10px;

    border-radius: 6px;

    background: #e7ad28;

    color: #fff;

    font-size: 11px;
    font-weight: 600;
}
.project-body {
    padding: 20px 18px 18px;

    background: #fff;
}
.project-buttons .btn {
    border-radius: 9px;

    transition: all 0.3s ease;
}

.project-buttons .btn:hover {
    transform: translateY(-2px);
}
/* =========================================================
   PREMIUM PROJECT CARD EFFECT
========================================================= */

.projects-section .project-card {
    position: relative;
    overflow: hidden;

    border-radius: 28px !important;

    background: #fff;

    border: 1px solid rgba(0, 80, 55, 0.08);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}


/* CARD HOVER */

.projects-section .project-card:hover {
    transform: translateY(-10px);

    border-color: rgba(0, 80, 55, 0.25);

    box-shadow:
        0 22px 50px rgba(0, 80, 55, 0.18);
}


/* =========================================================
   IMAGE
========================================================= */

.projects-section .project-image {
    position: relative;

    height: 250px;

    overflow: hidden;

    border-radius: 28px 28px 0 0;
}


.projects-section .project-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.7s ease;
}


/* IMAGE ZOOM */

.projects-section .project-card:hover
.project-image img {
    transform: scale(1.08);
}


/* =========================================================
   IMAGE DARK/SHINE EFFECT
========================================================= */

.projects-section .project-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            transparent 45%,
            rgba(255,255,255,0.25) 50%,
            transparent 55%
        );

    transform: translateX(-100%);

    transition: transform 0.8s ease;

    pointer-events: none;
}


.projects-section .project-card:hover
.project-image::after {
    transform: translateX(100%);
}


/* =========================================================
   FEATURED BADGE
========================================================= */

.projects-section .featured-badge {
    position: absolute;

    top: 14px;
    left: 14px;

    z-index: 5;

    padding: 6px 11px;

    border-radius: 7px;

    background: #e7ad28;

    color: #fff;

    font-size: 11px;

    font-weight: 600;

    box-shadow:
        0 4px 10px rgba(0,0,0,0.15);
}


/* =========================================================
   PROJECT BODY
========================================================= */

.projects-section .project-body {
    padding: 20px 18px 18px;

    background: #fff;
}


/* =========================================================
   PROJECT TITLE
========================================================= */

.projects-section .project-body h3 {
    transition: color 0.3s ease;
}


.projects-section .project-card:hover
.project-body h3 {
    color: #075a3e;
}


/* =========================================================
   BUTTONS
========================================================= */

.projects-section .project-buttons {
    display: flex;

    gap: 8px;
}


.projects-section .project-buttons .btn {
    border-radius: 9px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.projects-section .project-buttons .btn:hover {
    transform: translateY(-3px);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .projects-section .project-card {
        border-radius: 22px !important;
    }

    .projects-section .project-image {
        height: 230px;

        border-radius: 22px 22px 0 0;
    }

}
/* =========================================
   360 DEGREE BORDER EFFECT
========================================= */

.why-section .feature-card {
    position: relative;
    z-index: 1;

    overflow: hidden;

    border-radius: 30px;

    background: #fff;
}


/* Moving border */

.why-section .feature-card::before {

    content: "";

    position: absolute;

    inset: -2px;

    border-radius: 32px;

    background:
        conic-gradient(
            from 0deg,
            transparent 0deg,
            transparent 250deg,
            #0b7650 300deg,
            #d5a62a 330deg,
            transparent 360deg
        );

    animation: cardRound 3s linear infinite;

    z-index: -2;
}


/* Inner white area */

.why-section .feature-card::after {

    content: "";

    position: absolute;

    inset: 2px;

    border-radius: 28px;

    background: #fff;

    z-index: -1;
}


/* 360 degree animation */

@keyframes cardRound {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}
/* =========================================================
   PREMIUM AMENITIES EFFECT
========================================================= */

.amenities-section .amenity-card {
    position: relative;
    overflow: hidden;

    min-height: 190px;

    padding: 30px 20px 25px;

    text-align: center;

    background: #fff;

    border-radius: 28px !important;

    border: 1px solid rgba(0, 90, 60, 0.08);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.07);

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease,
        border-color 0.5s ease;
}


/* Card Hover */

.amenities-section .amenity-card:hover {

    transform: translateY(-10px);

    border-color: rgba(0, 100, 70, 0.25);

    box-shadow:
        0 22px 45px rgba(0, 80, 55, 0.17);
}


/* =========================================================
   AMENITY ICON
========================================================= */

.amenities-section .amenity-card > i {

    width: 68px;
    height: 68px;

    margin: 0 auto 17px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(0, 100, 70, 0.08);

    color: #1da73b;

    font-size: 29px;

    transition:
        transform 0.7s ease,
        background 0.4s ease,
        color 0.4s ease,
        box-shadow 0.4s ease;
}


/* 360° Icon */

.amenities-section .amenity-card:hover > i {

    transform: rotateY(360deg) scale(1.12);

    background: #1da73b;

    color: #fff;

    box-shadow:
        0 8px 22px rgba(0, 90, 60, 0.25);
}


/* =========================================================
   TITLE
========================================================= */

.amenities-section .amenity-card h4 {

    margin-bottom: 8px;

    font-size: 17px;

    font-weight: 700;

    color: #222;

    transition: color 0.3s ease;
}


.amenities-section .amenity-card:hover h4 {

    color: #075a3e;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.amenities-section .amenity-card p {

    margin: 0;

    color: #777;

    font-size: 13px;

    line-height: 1.55;
}


/* =========================================================
   MOVING SHINE
========================================================= */

.amenities-section .amenity-card::after {

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 55%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.45),
            transparent
        );

    transform: skewX(-20deg);

    transition: left 0.8s ease;

    pointer-events: none;
}


.amenities-section .amenity-card:hover::after {

    left: 140%;
}


/* =========================================================
   GALLERY - PREMIUM CARDS
========================================================= */

.gallery-section .gallery-item {

    position: relative;

    overflow: hidden;

    height: 270px;

    border-radius: 24px !important;

    background: #111;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.08);

    cursor: pointer;

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}


/* Gallery Hover */

.gallery-section .gallery-item:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0,0,0,0.18);
}


/* =========================================================
   GALLERY IMAGE
========================================================= */

.gallery-section .gallery-item img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s ease,
        filter 0.5s ease;
}


/* Zoom */

.gallery-section .gallery-item:hover img {

    transform: scale(1.10);

    filter: brightness(0.72);
}


/* =========================================================
   GALLERY OVERLAY
========================================================= */

.gallery-section .gallery-item::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.75),
            rgba(0,0,0,0.05) 65%
        );

    opacity: 0.75;

    transition: opacity 0.4s ease;
}


.gallery-section .gallery-item:hover::before {

    opacity: 1;
}


/* =========================================================
   GALLERY CAPTION
========================================================= */

.gallery-section .gallery-caption {

    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 18px;

    z-index: 3;

    color: #fff;

    font-size: 17px;

    font-weight: 600;

    transform: translateY(12px);

    opacity: 0;

    transition:
        transform 0.45s ease,
        opacity 0.45s ease;
}


.gallery-section .gallery-item:hover
.gallery-caption {

    transform: translateY(0);

    opacity: 1;
}


/* =========================================================
   GALLERY SHINE
========================================================= */

.gallery-section .gallery-item::after {

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 50%;
    height: 100%;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.25),
            transparent
        );

    transform: skewX(-20deg);

    transition: left 0.8s ease;
}


.gallery-section .gallery-item:hover::after {

    left: 140%;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .amenities-section .amenity-card {

        min-height: 175px;

        padding: 22px 12px;

        border-radius: 23px !important;
    }


    .amenities-section .amenity-card > i {

        width: 55px;
        height: 55px;

        font-size: 24px;
    }


    .amenities-section .amenity-card h4 {

        font-size: 14px;
    }


    .amenities-section .amenity-card p {

        font-size: 12px;
    }


    .gallery-section .gallery-item {

        height: 220px;

        border-radius: 20px !important;
    }


    .gallery-section .gallery-caption {

        font-size: 15px;

        opacity: 1;

        transform: translateY(0);
    }

}
/* =========================================
   TESTIMONIAL SLIDER - DESKTOP 3/4 CARDS
========================================= */

.testimonial-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 15px 45px 25px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.7s ease-in-out;
}

.testimonial-slide {
    flex: 0 0 33.333333%;
    width: 33.333333%;
    padding: 0 10px;
    box-sizing: border-box;
}


/* CARD */

.testimonial-card {
    height: 100%;
    min-height: 220px;

    padding: 25px 22px;

    background: #fff;

    border-radius: 25px;

    border: 1px solid rgba(0, 80, 55, 0.08);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.07);

    transition: all .4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 20px 45px rgba(0, 80, 55, 0.16);
}


/* STARS */

.testimonial-card .stars {
    color: #e5aa28;
    font-size: 19px;
    letter-spacing: 3px;
    margin-bottom: 14px;
}


/* TEXT */

.testimonial-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.65;

    margin-bottom: 20px;
}


/* CUSTOMER */

.testimonial-card .customer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .customer-image {
    width: 50px;
    height: 50px;

    flex-shrink: 0;

    overflow: hidden;

    border-radius: 50%;

    border: 3px solid rgba(0, 90, 60, .12);
}

.testimonial-card .customer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card .customer strong {
    display: block;
    color: #222;
    font-size: 15px;
}

.testimonial-card .customer small {
    display: block;
    margin-top: 2px;
    color: #888;
    font-size: 12px;
}


/* =========================================
   ARROWS
========================================= */

.testimonial-prev,
.testimonial-next {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    width: 40px;
    height: 40px;

    border: none;
    border-radius: 50%;

    background: #075a3e;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 10;

    transition: all .3s ease;
}

.testimonial-prev {
    left: 3px;
}

.testimonial-next {
    right: 3px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #e2a927;

    transform:
        translateY(-50%)
        scale(1.1);
}


/* =========================================
   LARGE DESKTOP - 4 CLIENTS
========================================= */

@media (min-width: 1200px) {

    .testimonial-slide {
        flex: 0 0 25%;
        width: 25%;
    }

}


/* =========================================
   TABLET - 2 CLIENTS
========================================= */

@media (min-width: 768px) and (max-width: 1199px) {

    .testimonial-slide {
        flex: 0 0 50%;
        width: 50%;
    }

}


/* =========================================
   MOBILE - 1 CLIENT
========================================= */

@media (max-width: 767px) {

    .testimonial-slider {
        padding: 10px 38px 20px;
    }

    .testimonial-slide {
        flex: 0 0 100%;
        width: 100%;

        padding: 0 5px;
    }

    .testimonial-card {
        padding: 22px 18px;
        border-radius: 22px;
    }

}
/* =========================================
   HERO SOCIAL LINKS
========================================= */

.hero-social {
    position: absolute;

    top: 25px;
    left: 35px;

    display: flex;
    align-items: center;
    gap: 12px;

    z-index: 50;
}

.hero-social a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    text-decoration: none;

    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 50%;

    background: rgba(0,0,0,0.12);

    backdrop-filter: blur(5px);

    transition: all .3s ease;
}

.hero-social a:hover {
    background: #e5b52b;
    border-color: #e5b52b;

    color: #172c34;

    transform: translateY(-3px);
}

.hero-social i {
    font-size: 16px;
}
@media (max-width: 767px) {

    .hero-social {
        top: 15px;
        left: 20px;
        gap: 8px;
    }

    .hero-social a {
        width: 32px;
        height: 32px;
    }

    .hero-social i {
        font-size: 14px;
    }

}
/* =========================================================
   OUR TEAM
========================================================= */

.team-section {
    background: #f8faf9;
}

.team-intro {
    max-width: 650px;
    margin: 12px auto 0;
    color: #777;
    font-size: 14px;
    line-height: 1.7;
}


/* TEAM CARD */

.team-card {
    background: #fff;

    border-radius: 25px;

    overflow: hidden;

    border: 1px solid rgba(0,80,55,.08);

    box-shadow:
        0 8px 25px rgba(0,0,0,.06);

    transition:
        transform .45s ease,
        box-shadow .45s ease;

    height: 100%;
}


.team-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 20px 45px rgba(0,80,55,.16);
}


/* IMAGE */

.team-image {
    position: relative;

    height: 280px;

    overflow: hidden;
}


.team-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform .7s ease;
}


.team-card:hover .team-image img {
    transform: scale(1.08);
}


/* SOCIAL */

.team-social {

    position: absolute;

    bottom: -50px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 8px;

    transition: all .4s ease;
}


.team-card:hover .team-social {
    bottom: 15px;
}


.team-social a {

    width: 36px;
    height: 36px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #075a3e;

    color: #fff;

    text-decoration: none;

    transition: all .3s ease;
}


.team-social a:hover {

    background: #e2a927;

    color: #fff;

    transform: translateY(-3px);
}


/* CONTENT */

.team-content {

    padding: 20px 18px 22px;

    text-align: center;
}


.team-content h4 {

    margin: 0;

    color: #222;

    font-size: 18px;

    font-weight: 700;
}


.team-content span {

    display: block;

    margin-top: 5px;

    color: #c29320;

    font-size: 13px;

    font-weight: 600;
}


.team-content p {

    margin: 10px 0 0;

    color: #777;

    font-size: 13px;

    line-height: 1.6;
}


/* MOBILE */

@media (max-width: 767px) {

    .team-image {
        height: 250px;
    }

    .team-content {
        padding: 18px 15px 20px;
    }

}
/* =========================================
   PROPERTY POPUP VIDEO
========================================= */

.popup-video {
    position: relative;
    width: 100%;
    height: 320px;

    margin: 25px 0 30px;

    overflow: hidden;

    border-radius: 24px;

    background: #000;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.18);
}

.popup-video iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .popup-video {
        height: 210px;

        margin: 20px 0 25px;

        border-radius: 18px;
    }

}
/* =========================================================
   PROJECT LAYOUT SHOWCASE
   ALL CLASSES ARE PREFIXED WITH vl-layout
   SO THEY DON'T AFFECT OTHER WEBSITE CODE
========================================================= */

.vl-layout-showcase {
    position: relative;
    width: 100%;
    min-height: 680px;
    overflow: hidden;
    background: #222;
}


/* ---------------------------------------------------------
   BACKGROUND
--------------------------------------------------------- */

.vl-layout-bg {
    position: absolute;
    inset: 0;

    background-image:
        url("images/layout-bg.jpg");

    background-size: cover;
    background-position: center;

    transform: scale(1.03);

    z-index: 0;
}


/* ---------------------------------------------------------
   DARK OVERLAY
--------------------------------------------------------- */

.vl-layout-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.68) 0%,
            rgba(0, 0, 0, 0.48) 42%,
            rgba(0, 0, 0, 0.30) 100%
        );

    z-index: 1;
}


/* ---------------------------------------------------------
   MAIN CONTAINER
--------------------------------------------------------- */

.vl-layout-container {
    position: relative;
    z-index: 2;

    width: 100%;
    min-height: 680px;

    display: flex;
    align-items: center;

    padding: 70px 0 90px 8%;
}


/* ---------------------------------------------------------
   LEFT CONTENT
--------------------------------------------------------- */

.vl-layout-content {
    flex: 0 0 43%;

    position: relative;

    display: flex;
    align-items: flex-start;

    color: #fff;

    z-index: 5;
}


.vl-layout-number {
    width: 48px;
    height: 48px;

    min-width: 48px;

    border-radius: 50%;

    background: #fff;
    color: #111;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 16px;
    font-weight: 700;

    margin-right: 28px;
}


.vl-layout-text {
    max-width: 500px;
}


.vl-layout-small {
    display: block;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #e9ca63;

    margin-bottom: 15px;
}


.vl-layout-text h2 {
    margin: 0 0 22px;

    font-size: clamp(34px, 3.3vw, 52px);

    line-height: 1.18;

    font-weight: 700;

    color: #fff;
}


.vl-layout-text h2 span {
    color: #f2d261;
}


.vl-layout-text p {
    margin: 0 0 32px;

    max-width: 500px;

    font-size: 16px;
    line-height: 1.75;

    color: rgba(255, 255, 255, 0.88);
}


/* ---------------------------------------------------------
   BUTTON
--------------------------------------------------------- */

.vl-layout-btn {
    display: inline-flex;

    align-items: center;
    gap: 12px;

    padding: 15px 24px;

    border-radius: 7px;

    background: #f1cf62;

    color: #111;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: all .3s ease;
}


.vl-layout-btn i {
    font-size: 18px;

    transition: transform .3s ease;
}


.vl-layout-btn:hover {
    color: #111;

    background: #fff;

    transform: translateY(-2px);
}


.vl-layout-btn:hover i {
    transform: translateX(5px);
}


/* ---------------------------------------------------------
   SLIDER AREA
--------------------------------------------------------- */

.vl-layout-slider {
    position: relative;

    flex: 1;

    min-width: 0;

    margin-left: 35px;

    overflow: hidden;
}


/* ---------------------------------------------------------
   SLIDER TRACK
--------------------------------------------------------- */

.vl-layout-track {
    display: flex;

    gap: 24px;

    width: max-content;

    will-change: transform;

    animation:
        vlLayoutContinuousSlide
        22s
        linear
        infinite;
}


/* ---------------------------------------------------------
   CARD
--------------------------------------------------------- */

.vl-layout-card {
    flex: 0 0 460px;

    position: relative;
}


.vl-layout-image-box {
    position: relative;

    height: 460px;

    overflow: hidden;

    border-radius: 25px;

    background: #fff;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.30);
}


.vl-layout-image-box img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .5s ease;
}


.vl-layout-card:hover
.vl-layout-image-box img {
    transform: scale(1.03);
}


/* ---------------------------------------------------------
   ROUND ARROW
--------------------------------------------------------- */

.vl-layout-arrow {
    position: absolute;

    bottom: 0;
    right: 0;

    width: 58px;
    height: 58px;

    border: none;

    border-radius: 50%;

    background: #f1d264;

    color: #111;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;

    transform: translate(-50%, 50%);

    z-index: 3;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, .15);

    transition: all .3s ease;
}


.vl-layout-arrow:hover {
    background: #fff;

    transform:
        translate(-50%, 50%)
        scale(1.08);
}


/* ---------------------------------------------------------
   CONTINUOUS RIGHT -> LEFT ANIMATION
--------------------------------------------------------- */

@keyframes vlLayoutContinuousSlide {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(
            calc(-50% - 12px)
        );
    }

}


/* ---------------------------------------------------------
   BOTTOM INDICATORS
--------------------------------------------------------- */

.vl-layout-indicators {
    position: absolute;

    bottom: 28px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 24px;
}


.vl-layout-line {
    display: block;

    width: 64px;
    height: 3px;

    background: rgba(255, 255, 255, .75);
}


.vl-layout-line.active {
    background: #e9ca63;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .vl-layout-showcase {
        min-height: 620px;
    }

    .vl-layout-container {
        min-height: 620px;

        padding-left: 5%;
    }

    .vl-layout-content {
        flex: 0 0 42%;
    }

    .vl-layout-number {
        margin-right: 18px;
    }

    .vl-layout-card {
        flex-basis: 380px;
    }

    .vl-layout-image-box {
        height: 400px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .vl-layout-showcase {
        min-height: auto;

        padding: 0;
    }


    .vl-layout-bg {
        background-position: center;
    }


    .vl-layout-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, .78),
                rgba(0, 0, 0, .55)
            );
    }


    .vl-layout-container {

        min-height: auto;

        display: block;

        padding:
            60px 0 70px;
    }


    /* LEFT CONTENT */

    .vl-layout-content {

        display: block;

        padding:
            0 25px;

        margin-bottom: 40px;
    }


    .vl-layout-number {

        margin-bottom: 20px;
        margin-right: 0;
    }


    .vl-layout-text {
        max-width: 100%;
    }


    .vl-layout-text h2 {

        font-size: 34px;

        line-height: 1.2;
    }


    .vl-layout-text p {

        font-size: 14px;

        line-height: 1.7;
    }


    /* SLIDER */

    .vl-layout-slider {

        width: 100%;

        margin-left: 0;

        overflow: hidden;

        padding-left: 25px;
    }


    .vl-layout-track {

        gap: 16px;

        animation-duration: 18s;
    }


    .vl-layout-card {

        flex-basis:
            calc(100vw - 50px);
    }


    .vl-layout-image-box {

        height:
            calc(100vw - 50px);

        max-height: 430px;

        border-radius: 22px;
    }


    .vl-layout-arrow {

        width: 52px;
        height: 52px;

        font-size: 20px;
    }


    .vl-layout-indicators {

        position: relative;

        left: auto;
        bottom: auto;

        transform: none;

        justify-content: center;

        margin-top: 40px;
    }


    .vl-layout-line {

        width: 45px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .vl-layout-container {
        padding-top: 45px;
    }


    .vl-layout-text h2 {
        font-size: 30px;
    }


    .vl-layout-text p {
        font-size: 13px;
    }


    .vl-layout-card {
        flex-basis:
            calc(100vw - 35px);
    }


    .vl-layout-slider {
        padding-left: 18px;
    }


    .vl-layout-image-box {
        height:
            calc(100vw - 35px);
    }

}
/* =========================================================
   PROJECT LAYOUT SHOWCASE
========================================================= */

.layout-showcase {
    position: relative;
    width: 100%;
    min-height: 650px;

    overflow: hidden;

    display: flex;
    align-items: center;
}


/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.layout-bg {
    position: absolute;
    inset: 0;

    background-image: url("../Images/project-bg.jpg");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}


/* =========================================================
   DARK OVERLAY
========================================================= */

.layout-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.78) 0%,
            rgba(0,0,0,.60) 38%,
            rgba(0,0,0,.28) 70%,
            rgba(0,0,0,.42) 100%
        );

    z-index: 1;
}


/* =========================================================
   MAIN CONTAINER
========================================================= */

.layout-container {
    position: relative;

    z-index: 2;

    width: 100%;

    min-height: 650px;

    display: flex;
    align-items: center;

    padding-left: 7%;
    padding-right: 0;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.layout-content {
    width: 47%;

    flex-shrink: 0;

    display: flex;
    align-items: center;

    position: relative;
}


.layout-number {
    width: 52px;
    height: 52px;

    min-width: 52px;

    border-radius: 50%;

    background: #fff;
    color: #222;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 17px;
    font-weight: 700;

    margin-right: 90px;

    box-shadow:
        0 5px 20px rgba(0,0,0,.25);
}


.layout-text {
    max-width: 560px;
}


.layout-label {
    display: block;

    color: #e8bd51;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 12px;
}


.layout-text h2 {
    color: #fff;

    font-size: 42px;
    line-height: 1.18;

    font-weight: 700;

    margin: 0 0 22px;
}


.layout-text p {
    color: rgba(255,255,255,.84);

    font-size: 16px;
    line-height: 1.8;

    margin: 0 0 28px;
}


/* =========================================================
   BUTTON
========================================================= */

.layout-btn {
    display: inline-flex;

    align-items: center;
    gap: 10px;

    padding: 15px 25px;

    background: #e8bd51;
    color: #111;

    border-radius: 7px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: all .3s ease;
}


.layout-btn:hover {
    background: #fff;
    color: #111;

    transform: translateY(-3px);
}


.layout-btn i {
    font-size: 18px;

    transition: transform .3s ease;
}


.layout-btn:hover i {
    transform: translateX(5px);
}


/* =========================================================
   RIGHT SLIDER
========================================================= */

.layout-slider {
    width: 53%;

    flex-shrink: 0;

    position: relative;

    overflow: hidden;

    padding: 25px 0 55px 25px;
}


/* =========================================================
   INFINITE TRACK
========================================================= */

.layout-track {
    display: flex;

    width: max-content;

    margin: 0;
    padding: 0;

    animation:
        layoutInfinite 24s linear infinite;

    will-change: transform;
}


/* =========================================================
   SLIDE
========================================================= */

.layout-slide {
    flex: 0 0 480px;

    width: 480px;

    padding: 0 12px;

    box-sizing: border-box;
}


/* =========================================================
   CARD
========================================================= */

.layout-card {
    position: relative;

    width: 100%;
    height: 460px;

    background: #fff;

    border-radius: 25px;

    overflow: hidden;

    box-shadow:
        0 20px 50px rgba(0,0,0,.28);
}


.layout-card img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================================
   CARD ARROW
========================================================= */

.layout-card-arrow {
    position: absolute;

    left: 50%;
    bottom: 18px;

    transform: translateX(-50%);

    width: 54px;
    height: 54px;

    border-radius: 50%;

    background: #e8bd51;
    color: #111;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-size: 21px;

    box-shadow:
        0 8px 20px rgba(0,0,0,.22);

    transition: all .3s ease;
}


.layout-card-arrow:hover {
    background: #fff;

    transform:
        translateX(-50%)
        scale(1.1);
}


/* =========================================================
   INFINITE RIGHT TO LEFT
========================================================= */

@keyframes layoutInfinite {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================================================
   DOTS
========================================================= */

.layout-dots {
    position: absolute;

    left: 25px;
    bottom: 8px;

    display: flex;

    gap: 24px;
}


.layout-dot {
    display: block;

    width: 55px;
    height: 3px;

    background: rgba(255,255,255,.45);
}


.layout-dot.active {
    background: #e8bd51;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .layout-container {
        padding-left: 5%;
    }


    .layout-content {
        width: 45%;
    }


    .layout-slider {
        width: 55%;
    }


    .layout-slide {
        flex-basis: 400px;
        width: 400px;
    }


    .layout-card {
        height: 400px;
    }


    .layout-number {
        margin-right: 45px;
    }


    .layout-text h2 {
        font-size: 34px;
    }


    .layout-text p {
        font-size: 14px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .layout-showcase {
        min-height: auto;

        display: block;

        overflow: hidden;
    }


    /* MAIN CONTAINER */

    .layout-container {
        width: 100%;

        min-height: auto;

        display: block;

        padding: 50px 15px 40px !important;

        margin: 0;
    }


    /* LEFT CONTENT */

    .layout-content {
        width: 100%;

        display: block;

        margin: 0 0 30px;

        padding: 0;
    }


    .layout-number {
        width: 46px;
        height: 46px;

        min-width: 46px;

        margin: 0 0 18px;
    }


    .layout-text {
        width: 100%;
        max-width: 100%;

        margin: 0;
        padding: 0;
    }


    .layout-label {
        font-size: 10px;

        letter-spacing: 2px;

        margin-bottom: 8px;
    }


    .layout-text h2 {
        font-size: 28px;

        line-height: 1.2;

        margin: 0 0 15px;
    }


    .layout-text p {
        font-size: 13px;

        line-height: 1.65;

        margin: 0 0 20px;
    }


    .layout-btn {
        padding: 12px 20px;

        font-size: 13px;
    }


    /* =====================================================
       MOBILE SLIDER
    ===================================================== */

    .layout-slider {
        width: 100%;

        padding: 0 0 42px;

        margin: 0;

        overflow: hidden;
    }


    .layout-track {

        width: max-content;

        display: flex;

        animation:
            layoutInfiniteMobile 22s linear infinite;

        will-change: transform;
    }


    /*
       ONE CARD VISIBLE
    */

    .layout-slide {

        flex: 0 0 100%;

        width: 100%;

        padding: 0 4px;

        box-sizing: border-box;
    }


    .layout-card {

        width: 100%;

        height: 330px;

        border-radius: 18px;
    }


    .layout-card-arrow {

        width: 46px;
        height: 46px;

        bottom: 12px;

        font-size: 18px;
    }


    /* DOTS */

    .layout-dots {

        left: 4px;

        bottom: 8px;

        gap: 8px;
    }


    .layout-dot {

        width: 28px;

        height: 3px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .layout-container {
        padding: 40px 12px 30px !important;
    }


    .layout-content {
        margin-bottom: 25px;
    }


    .layout-text h2 {
        font-size: 25px;
    }


    .layout-text p {
        font-size: 13px;

        line-height: 1.6;
    }


    .layout-card {
        height: 300px;

        border-radius: 16px;
    }


    .layout-slider {
        padding-bottom: 36px;
    }

}


/* =========================================================
   MOBILE INFINITE LOOP
========================================================= */

@keyframes layoutInfiniteMobile {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

.login-icon-btn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1da73b;
    color: #fff !important;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.login-icon-btn:hover {
    background: #e61049;
    transform: translateY(-2px);
    color: #fff !important;
}
/* =========================================================
   BLOG SECTION
========================================================= */

.blog-section {
    background: #f8f8f6;
    padding: 90px 0;
}


/* =========================================================
   BLOG HEADING
========================================================= */

.blog-heading {
    max-width: 750px;
    margin: 0 auto 60px;
}

.blog-heading .section-label {
    display: block;
    color: #c89b3c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.blog-heading .section-title {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    color: #222;
    margin-bottom: 18px;
}

.blog-heading .section-title span {
    color: #c89b3c;
}

.blog-heading p {
    color: #777;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}


/* =========================================================
   BLOG ITEM
========================================================= */

.blog-item {
    display: flex;
    align-items: center;

    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    margin-bottom: 45px;

    box-shadow:
        0 15px 45px rgba(0,0,0,.08);

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.blog-item:hover {
    transform: translateY(-8px);

    box-shadow:
        0 25px 60px rgba(0,0,0,.13);
}


/* =========================================================
   REVERSE BLOG
========================================================= */

.blog-reverse {
    flex-direction: row-reverse;
}


/* =========================================================
   BLOG IMAGE
========================================================= */

.blog-image {
    position: relative;

    width: 50%;
    height: 390px;

    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform .7s ease;
}

.blog-item:hover .blog-image img {
    transform: scale(1.08);
}


/* =========================================================
   DATE
========================================================= */

.blog-date {
    position: absolute;

    top: 20px;
    left: 20px;

    background: #e8bd51;

    color: #111;

    padding: 9px 15px;

    border-radius: 6px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    box-shadow:
        0 5px 15px rgba(0,0,0,.15);
}


/* =========================================================
   BLOG CONTENT
========================================================= */

.blog-content {
    width: 50%;

    padding: 50px 60px;
}

.blog-category {
    display: inline-block;

    color: #c89b3c;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 14px;
}

.blog-content h3 {
    color: #222;

    font-size: 30px;

    line-height: 1.3;

    font-weight: 700;

    margin-bottom: 18px;
}

.blog-content p {
    color: #777;

    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 25px;
}


/* =========================================================
   READ MORE
========================================================= */

.blog-read-more {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #222;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition: all .3s ease;
}

.blog-read-more i {
    color: #c89b3c;

    font-size: 18px;

    transition:
        transform .3s ease;
}

.blog-read-more:hover {
    color: #c89b3c;
}

.blog-read-more:hover i {
    transform: translateX(6px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .blog-section {
        padding: 70px 0;
    }

    .blog-heading {
        margin-bottom: 45px;
    }

    .blog-heading .section-title {
        font-size: 34px;
    }

    .blog-image {
        height: 340px;
    }

    .blog-content {
        padding: 35px;
    }

    .blog-content h3 {
        font-size: 25px;
    }

    .blog-content p {
        font-size: 14px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .blog-section {
        padding: 60px 0;
    }

    .blog-heading {
        margin-bottom: 35px;
        padding: 0 10px;
    }

    .blog-heading .section-title {
        font-size: 28px;
    }

    .blog-heading p {
        font-size: 14px;
    }


    /* ALL BLOGS IMAGE TOP */

    .blog-item,
    .blog-reverse {
        flex-direction: column;

        margin-bottom: 30px;

        border-radius: 18px;
    }


    .blog-image {
        width: 100%;
        height: 250px;
    }


    .blog-content {
        width: 100%;

        padding: 28px 24px 30px;
    }


    .blog-content h3 {
        font-size: 22px;
        line-height: 1.35;
    }

    .blog-content p {
        font-size: 14px;
        line-height: 1.7;
    }


    .blog-date {
        top: 15px;
        left: 15px;

        padding: 8px 12px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .blog-heading .section-title {
        font-size: 25px;
    }

    .blog-image {
        height: 220px;
    }

    .blog-content {
        padding: 24px 20px 27px;
    }

    .blog-content h3 {
        font-size: 20px;
    }

}

/* =========================================================
   OUR SERVICES
========================================================= */

.services-section {
    position: relative;
    background: #f8faf8;
    overflow: hidden;
}


/* TOP DECORATION */

.services-section::before {
    content: "";
    position: absolute;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    background: rgba(7, 90, 62, .05);

    top: -150px;
    left: -120px;

    pointer-events: none;
}


.services-section::after {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(232, 189, 81, .08);

    right: -120px;
    bottom: -140px;

    pointer-events: none;
}


/* =========================================================
   HEADING
========================================================= */

.services-heading {
    position: relative;
    z-index: 2;

    max-width: 760px;

    margin: 0 auto;
}


.services-heading .section-label {
    display: inline-block;

    color: #c89b3c;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 10px;
}


.services-heading .section-title {
    margin-bottom: 15px;
}


.services-heading .section-title span {
    color: #075a3e;
}


.services-heading p {
    max-width: 680px;

    margin: 0 auto;

    color: #777;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {

    position: relative;

    height: 100%;

    padding: 38px 30px 30px;

    background: #fff;

    border-radius: 24px;

    border: 1px solid rgba(7, 90, 62, .08);

    box-shadow:
        0 10px 35px rgba(0, 0, 0, .06);

    overflow: hidden;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}


/* GOLD TOP LINE */

.service-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 4px;

    background: #e8bd51;

    transition: width .4s ease;
}


/* GREEN GLOW */

.service-card::after {

    content: "";

    position: absolute;

    width: 140px;
    height: 140px;

    border-radius: 50%;

    background: rgba(7, 90, 62, .045);

    right: -65px;
    top: -65px;

    transition: transform .5s ease;
}


/* HOVER */

.service-card:hover {

    transform: translateY(-10px);

    border-color: rgba(7, 90, 62, .15);

    box-shadow:
        0 22px 55px rgba(7, 90, 62, .13);
}


.service-card:hover::before {
    width: 100%;
}


.service-card:hover::after {
    transform: scale(1.5);
}


/* =========================================================
   ICON
========================================================= */

.service-icon {

    position: relative;
    z-index: 2;

    width: 62px;
    height: 62px;

    border-radius: 18px;

    background: #1da73b;

    color: #e8bd51;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 26px;

    margin-bottom: 25px;

    box-shadow:
        0 10px 25px rgba(7, 90, 62, .20);

    transition:
        transform .4s ease,
        background .4s ease;
}


.service-card:hover .service-icon {

    transform:
        rotate(-5deg)
        scale(1.08);

    background: #fc3003;

    color: #075a3e;
}


/* =========================================================
   NUMBER
========================================================= */

.service-number {

    position: absolute;

    top: 28px;
    right: 28px;

    color: rgba(7, 90, 62, .10);

    font-size: 42px;

    font-weight: 800;

    line-height: 1;

    transition: color .4s ease;
}


.service-card:hover .service-number {
    color: rgba(232, 189, 81, .28);
}


/* =========================================================
   TITLE
========================================================= */

.service-card h3 {

    position: relative;
    z-index: 2;

    color: #222;

    font-size: 21px;

    font-weight: 700;

    margin-bottom: 13px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.service-card p {

    position: relative;
    z-index: 2;

    color: #777;

    font-size: 14px;

    line-height: 1.75;

    margin-bottom: 22px;
}


/* =========================================================
   SERVICE LINK
========================================================= */

.service-link {

    position: relative;
    z-index: 2;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #075a3e;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;
}


.service-link i {

    font-size: 17px;

    transition:
        transform .3s ease;
}


.service-link:hover {
    color: #c89b3c;
}


.service-link:hover i {
    transform: translateX(6px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .service-card {
        padding: 32px 25px 28px;
    }

    .service-icon {
        width: 58px;
        height: 58px;
        font-size: 24px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .services-section {
        padding-left: 0;
        padding-right: 0;
    }

    .services-heading {
        padding: 0 10px;
    }

    .services-heading .section-title {
        font-size: 28px;
        line-height: 1.25;
    }

    .services-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .service-card {
        padding: 30px 23px 25px;
        border-radius: 20px;
    }

    .service-card h3 {
        font-size: 19px;
    }

    .service-card p {
        font-size: 13px;
    }

}
/* =========================================================
   NAVBAR Effect
========================================================= */

.nav-link {
    position: relative;

    font-size: 14px;
    font-weight: 700;

    color: #222;

    margin: 0 8px;
    padding: 10px 12px !important;

    transition: color .3s ease;
}


/* Animated underline */

.nav-link::after {
    content: "";

    position: absolute;

    left: 12px;
    right: 12px;
    bottom: 2px;

    height: 3px;

    background: #e8bd51;

    border-radius: 10px;

    transform: scaleX(0);

    transform-origin: center;

    transition: transform .3s ease;
}


/* Hover */

.nav-link:hover {
    color: #075a3e;
}

.nav-link:hover::after {
    transform: scaleX(1);
}


/* ACTIVE PAGE */

.nav-link.active {
    color: #075a3e;
}

.nav-link.active::after {
    transform: scaleX(1);
}