
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* =========================================================================
============================== GLOBAL STYLES ===============================
========================================================================= */

:root {
    /* Font families */
    --font-fustat: "Fustat", sans-serif;
    --font-roboto: "Roboto", sans-serif;
    /* Colors, sizes, line heights */
    --light-green: #739466;
    --medium-green: #547D45;
    --dark-green: #386624;
    --white-color: #FFFFFF;
    --black-color: #000000;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-sm: 0.875rem;
    --spacing-unit: 1rem;
    --title-line-height: 1.2;
    --text-line-height: 1.6;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-roboto);
    font-size: var(--font-size-lg);
    line-height: var(--text-line-height);
    color: var(--black-color);
    background-color: var(--white-color);
    margin: 0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-fustat);
    line-height: var(--title-line-height);
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}


/* main.page-content {
    overflow-x: hidden;
} */

.section-margin-100 {
    margin: 6.25rem 0;
}

.section-margin-150 {
    margin: 9.375rem 0;
}

.section-margin-180 {
    margin: 11.25rem 0;
}

.section-margin-200 {
    margin: 12.5rem 0;
}

.mt-50 {
    margin-top: 3.125rem;
}

.mt-100 {
    margin-top: 6.25rem;
}

.mb-50 {
    margin-bottom: 3.125rem;
}

.mb-100 {
    margin-bottom: 6.25rem;
}

.section-padding-100 {
    padding: 6.25rem 0;
}

.section-padding-150 {
    padding: 9.375rem 0;
}

.section-padding-180 {
    padding: 11.25rem 0;
}

.section-padding-200 {
    padding: 12.5rem 0;
}

.pt-50 {
    padding-top: 3.125rem;
}

.pt-100 {
    padding-top: 6.25rem;
}

.pb-50 {
    padding-bottom: 3.125rem;
}

.pb-100 {
    padding-bottom: 6.25rem;
}

p {
    margin-bottom: unset;
}

video::-webkit-media-controls-panel {
    display: none !important;
    opacity: 1 !important;
}

.row-gap-25 {
    row-gap: 1.563rem;
}

.light-green {
    color: var(--light-green);
}

.light-green-bg {
    background-color: var(--light-green);
}

.medium-green {
    color: var(--medium-green);
}

.medium-green-bg {
    background-color: var(--medium-green);
}

.dark-green {
    color: var(--dark-green);
}

.dark-green-bg {
    background-color: var(--dark-green);
}

.green-1-bg {
    background-color: #c7d4b3;
}

.green-2-bg {
    background-color: #b6c89c;
}

.green-3-bg {
    background-color: #a5bb86;
}

.green-4-bg {
    background-color: #94ae6f;
}

.green-5-bg {
    background-color: #82a059;
}

.green-6-bg {
    background-color: #70894c;
}

.green-7-bg {
    background-color: #5d7240;
}

.green-8-bg {
    background-color: #4a5b33;
}

.green-9-bg {
    background-color: #384426;
}

.green-10-bg {
    background-color: #252d19;
}

.white-color {
    color: var(--white-color);
}

.white-bg {
    background-color: var(--white-color);
}

.white-bg-w-z-index {
    background-color: var(--white-color);
    position: relative;
    z-index: -2;
}

.black-color {
    color: var(--black-color);
}

.black-bg {
    background-color: var(--black-color);
}

ul.remove-list-style {
    list-style-type: none;
    padding: unset;
    margin: unset;
}

.sec-details {
    text-align: center;
    max-width: 1099px;
    margin: 0 auto 100px;
}

.sec-details.left-s {
    text-align: left;
    max-width: 100%;
    margin: 0 0 100px;
}

.sec-title {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.sec-sub-title {
    color: #6A9561;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sec-desc {
    font-size: 1rem;
    font-weight: 400;
}


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

.m-btn {
    background: var(--white-color);
    color: var(--black-color);
    padding: 18px 36px;
    border: 1px solid var(--white-color);
    border-radius: 50px;
    font-family: var( --font-roboto);
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    display: block;
    width: fit-content;
}

.m-btn:hover {
    background: var(--dark-green);
    color: var(--white-color);
    border: 1px solid var(--white-color);
}

.m-btn.arrow-img {
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
}

.fm-m-btn {
    background: var(--dark-green);
    color: var(--white-color);
    border: 1px solid var(--white-color);
    border-radius: 50px;
    padding: 18px 36px;
    font-family: var( --font-roboto);
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
    display: block;
    width: fit-content;
}

.fm-m-btn:hover {
    background: var(--white-color);
    color: var(--black-color);
    border: 1px solid var(--dark-green);
}


/* =========================================================================
============================== HEADER STYLES ===============================
========================================================================= */

header {
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 9999;
    backdrop-filter: blur(10px);
    background: #0D0D0D66;
    padding: 16px 0;
}

header.v2 {
    background: #FAFAFA;
    backdrop-filter: blur(24px);
}

img.header-logo {
    width: 100%;
    max-width: 209px;
}

header .header-right-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 50px;
}

header .navbar-wrap ul.navbar {
    padding: unset;
    margin: unset;
    list-style-type: none;
    display: flex;
    gap: 30px;
}

.navbar .nav-lk {
    font-family: var(--font-roboto);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    position: relative;
    transition: all 0.3s ease-in-out;
}

header.v2 .navbar .nav-lk {
    color: var(--black-color);
}

.navbar .nav-lk.active::after {
    content: "";
    position: absolute;
    bottom: -15%;
    left: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50px;
    background: #4D8C32;
    transition: all 0.3s ease-in-out;
}


/*---- Mobile Header ----*/

.hamburger-btn {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: unset;
    background: transparent;
    padding: 0;
    margin-left: auto;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background: #2A1A0C;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

body.mobile-nav-open .hamburger-btn span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

body.mobile-nav-open .hamburger-btn span:nth-child(2) {
    opacity: 0;
}

body.mobile-nav-open .hamburger-btn span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 78vw;
    max-width: 320px;
    height: 100vh;
    background: #FAFAFA;
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.25s ease-out;
    z-index: 999;
}

.mobile-nav-inner {
    height: 100%;
    padding: 90px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow-y: auto;
}

.mobile-nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    list-style: none;
    margin: unset;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
    z-index: 998;
}

body.mobile-nav-open .mobile-nav {
    transform: translateX(0);
}

body.mobile-nav-open .mobile-nav-overlay {
    opacity: 1;
    visibility: visible;
}

body.mobile-nav-open {
    overflow: hidden;
}

@media (max-width: 991px) {
    .mobile-nav-open header.v2 {
        border-bottom: 1px solid #CECDC3;
    }
    .hamburger-btn {
        display: flex;
        outline: unset;
    }
    .navbar .nav-lk {
        color: #000000;
    }
    .navbar .nav-lk.active::after {
        bottom: 50%;
        left: -25%;
        transform: translate(0%, 50%);
    }
}

@media (min-width: 992px) {
    .mobile-nav,
    .mobile-nav-overlay {
        display: none;
    }
}


/* =========================================================================
============================== FOOTER STYLES ===============================
========================================================================= */

footer {
    margin-top: -50px;
    padding-top: 80px;
    border-radius: 3.125rem 3.125rem 0rem 0rem;
    background: linear-gradient( 180deg, rgba(2, 8, 8, 0.50) 0%, rgba(2, 8, 8, 0.00) 20%, rgba(2, 8, 8, 0.00) 90%, rgba(2, 8, 8, 0.50) 100%), radial-gradient( 118.79% 123.04% at 87% 84%, rgba(2, 8, 8, 0.90) 0%, rgba(2, 8, 8, 0.00) 50%), radial-gradient( 130.11% 127.28% at 10% 8%, rgba(2, 8, 8, 0.90) 0%, rgba(2, 8, 8, 0.00) 50%), radial-gradient( 90.51% 91.92% at 65% 36%, rgba(63, 63, 75, 0.50) 0%, rgba(63, 63, 75, 0.00) 50%), radial-gradient( 86.27% 87.68% at 38% 61%, rgba(63, 63, 75, 0.50) 0%, rgba(63, 63, 75, 0.00) 50%), radial-gradient( 90.51% 140.01% at 99% 36%, rgba(63, 63, 75, 0.50) 0%, rgba(63, 63, 75, 0.00) 50%), radial-gradient( 87.68% 141.42% at -4950% 62%, rgba(63, 63, 75, 0.50) 0%, rgba(63, 63, 75, 0.00) 50%), #09090A;
    position: relative;
    z-index: 2;
}

footer.shade-1::before {
    content: "";
    position: absolute;
    top: -40%;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 150.8125rem;
    background: rgba(46, 68, 42, 0.60);
    filter: blur(280px);
    z-index: -1;
}

footer .upper-part {
    padding-bottom: 220px;
}

footer .footer-logo-link {
    display: block;
    width: fit-content;
    margin-bottom: 50px;
}

footer .footer-logo {
    width: 100%;
    max-width: 398px;
}

footer .footer-desc {
    font-size: 1.125rem;
    max-width: 458px;
    margin-bottom: 32px;
}

footer .f-nav-title {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 44px;
}

footer .f-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.f-nav .f-nav-lk {
    font-size: 1rem;
    width: fit-content;
    transition: all 0.3s ease-in-out;
}

.f-nav .f-nav-lk a i::before {
    transition: all 0.3s ease-in-out;
}

.f-nav .f-nav-lk a:hover i::before {
    transform: rotate(45deg);
}

footer .lower-part {
    border-top: 1px solid #FFFFFF;
    padding: 30px 0;
}

footer .copy-right-text {
    font-size: 1rem;
}

footer .pt-links {
    display: flex;
    gap: 24px;
    justify-content: center;
}

footer .fc-link {
    font-size: 0.875rem;
    text-decoration-line: underline;
}

footer .social-links {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

footer .social-link {
    background: #fff;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

footer .social-link i {
    font-size: 20px;
    line-height: 1;
    transition: all 0.3s ease-in-out;
}

footer .social-link:hover i {
    transform: scale(1.25);
}


/* =========================================================================
============================== HOME STYLES ===============================
========================================================================= */

.hero-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 95vh;
    background-size: cover;
    background-position: center;
    z-index: -5;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: end;
    text-align: left;
    color: white;
}

.hero-section.bg-img {
    background-size: cover;
    background-position: center;
}

.hero-section .hero-content {
    padding-bottom: 125px;
}

.hero-section .hero-title {
    font-size: 5.625rem;
    font-weight: 400;
}

.hero-section .hero-subtitle {
    font-size: 1.375rem;
    margin: 30px 0;
}

.m-btn.hero-btn {
    font-size: 1.125rem;
    text-transform: uppercase;
}

.m-btn.hero-btn:hover img.arrow-img {
    filter: invert(1);
}


/* .about-text-sec {
    border-radius: 50px 50px 0 0;
    margin-top: -50px;
    background: #fff;
} */

.about-text-sec {
    position: relative;
    margin-top: 89vh;
    background: white;
    border-radius: 50px 50px 0 0;
    z-index: 10;
    overflow: hidden;
}

.about-text-sec img.shadow-uor-left {
    position: absolute;
    top: -3%;
    left: -3%;
    width: 35vw;
    height: auto;
    max-width: 700px;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}

.about-text-sec img.shadow-uor-right {
    position: absolute;
    top: -5%;
    right: 2%;
    width: 35vw;
    height: auto;
    max-width: 700px;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}

.about-text-content-wrap {
    max-width: 1366px;
    margin: auto;
}

.about-text-content-wrap .about-title {
    font-size: 1.25rem;
    width: fit-content;
    margin-bottom: 30px;
}

.about-text-wrap .about-text {
    font-size: 3.875rem;
    line-height: 1.4;
    transition: all 0.6s ease-in-out;
}

.about-text-wrap .about-text.green {
    color: #42792B;
}


/* .about-text-wrap:hover .about-text.green {
    color: #42792B;
} */

.about-text-wrap .about-text.gradient {
    background: linear-gradient(40deg, #7D85B9 24.41%, #216713 44.91%, #7D85B9 90.41%);
    background-clip: text;
    color: transparent;
}


/* .about-text-wrap:hover .about-text.gradient {
    background: linear-gradient(40deg, #7D85B9 24.41%, #216713 44.91%, #7D85B9 90.41%);
    background-clip: text;
    color: transparent;
} */

.services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(100px, auto);
    gap: 30px;
}

.service-card {
    color: var(--white-color);
    background: var(--light-green);
    border-radius: 30px;
    padding: 32px;
    box-shadow: 0px 0px 8px 0px #0000001A;
    max-height: 444px;
    min-height: 444px;
    overflow: hidden;
}

.service-card .service-card-icon {
    width: 100%;
    max-width: 40px;
}

.service-card .service-card-title {
    font-size: 2rem;
    font-weight: 400;
    margin: 16px 0;
}

.service-card .service-card-desc {
    font-size: 1rem;
    font-weight: 400;
}

.max-380 {
    max-width: 380px;
}

.services-grid .s-card-1 {
    grid-column: 1 / 5;
    grid-row: 1 / 2;
    padding: 50px;
    background-image: url('../images/services/google-ads-bg.png');
    background-size: cover;
    background-position: center;
}

.services-grid .s-card-2 {
    grid-column: 5 / 9;
    grid-row: 1 / 2;
    display: flex;
}

.s-card-2 .service-card-content {
    padding: 40px;
    padding-right: 10px;
}

.s-card-2 video {
    width: 55%;
    border-radius: 30px;
    object-fit: cover;
}

.services-grid .s-card-3 {
    grid-column: 9 / 13;
    grid-row: 1 / 3;
    background-image: url('../images/services/lead-gen-strat-planning.png');
    background-size: cover;
    background-position: center;
    max-height: 100%;
}

.services-grid .s-card-4 {
    grid-column: 1 / 9;
    grid-row: 2 / 3;
    background-image: url('../images/services/conversion-action-implementation.png');
    background-size: cover;
    background-position: center;
}

.services-grid .s-card-5 {
    grid-column: 1 / 7;
    grid-row: 3 / 4;
    display: flex;
}

.s-card-5 .service-card-content {
    padding: 32px;
    padding-right: 15px;
}

.s-card-5 video {
    width: 56%;
    border-radius: 30px;
    object-fit: cover;
}

.services-grid .s-card-6 {
    grid-column: 7 / 13;
    grid-row: 3 / 4;
}

.max-810 {
    max-width: 810px;
}

.trusted-by-sec img.shadow-brand {
    position: absolute;
    top: -110%;
    width: 100vw;
}

.trusted-brand-sliders-wrap {
    position: relative;
}

.trusted-brand-sliders-wrap:before {
    position: absolute;
    content: '';
    background-image: linear-gradient(90deg, #fff, transparent, #fff);
    inset: 0;
    z-index: 2;
}

.brand-slider.right {
    margin-bottom: 30px;
}

.brand-slider .swiper-wrapper {
    transition-timing-function: linear !important;
    display: flex;
    align-items: center;
}

.brand-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #C4C4C4;
    height: stretch;
    padding: 10px 30px;
}

.fm-stats-sec img.shadow-muq-left {
    position: absolute;
    bottom: -6%;
    left: -5%;
    z-index: 0;
    width: 37.8vw;
}

.fm-stats-sec img.shadow-muq-right {
    position: absolute;
    top: -5%;
    right: -1%;
    z-index: 0;
    width: 33.5vw;
}

.fm-stats-wrapper {
    background: #487E3C;
    padding: 100px 115px;
    border-radius: 30px;
    position: relative;
    z-index: 1;
}

.fm-stats-title {
    font-size: 3.5rem;
    margin-bottom: 40px;
}

.fm-stats-desc {
    font-size: 1.125rem;
    line-height: 2;
    max-width: 1078px;
    margin-bottom: 70px;
}

.fm-stats-wrap {
    display: flex;
    justify-content: space-between;
    gap: 90px;
}

.fm-stats-wrap .fm-stats-col {
    flex: 1;
    border-top: 1px solid #D7D7D7;
    padding-top: 20px;
}

.fm-stats-wrap .stats-pointer-name {
    font-size: 1rem;
    font-weight: 400;
    margin-left: 8px;
}

.fm-stats-wrap .stats-number {
    font-family: var(--font-fustat);
    font-size: 3.875rem;
    font-weight: 500;
}

.faq-wrapper {
    max-width: 1366px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.faq-wrapper .accordion {
    --bs-accordion-bg: unset;
}

.accordion-item {
    border: unset;
    margin-bottom: 20px;
}

.accordion-item:last-child {
    margin-bottom: unset;
}

.accordion-item.active {
    border: unset;
}

button.accordion-button {
    font-size: 1.125rem;
    background-color: transparent;
}

.accordion-button:focus {
    box-shadow: unset;
}

.accordion-button:not(.collapsed) {
    background: #2E4329;
    color: #fff;
    border-radius: 30px 30px 0 0 !important;
    padding-top: 30px;
    padding-bottom: unset;
    box-shadow: unset;
}

.accordion-button::after {
    filter: invert(51%) sepia(0%) saturate(0%) hue-rotate(180deg) brightness(90%) contrast(85%);
}

.accordion-button:not(.collapsed)::after {
    filter: invert(100%) brightness(200%);
}

.accordion-body {
    background: #2E4329;
    color: #fff;
    font-size: 1rem;
    border-radius: 0 0 30px 30px;
    padding-bottom: 28px;
}

.cs-card-link {
    width: fit-content;
    height: 100%;
    display: block;
    border-radius: 30px;
    overflow: hidden;
    transition: transform .3s ease;
}

.case-study-bg {
    background: #2E4329;
    border-radius: 30px;
    padding: 20px;
    width: fit-content;
    overflow: hidden;
    max-height: 617px;
    height: 100%;
}

.cs-title {
    font-family: var(--font-roboto);
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.4;
    margin: unset;
}

.case-study-wrapper .cs-img {
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.cs-card-t-1 {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 473px;
}

.cs-card-t-1 .cs-title {
    padding: 7px 12px 0;
}

.cs-card-t-2 {
    display: flex;
    gap: 35px;
    padding: 0;
    max-width: 1152px;
}

.cs-card-t-2 .cs-title {
    padding-top: 45px;
    padding-left: 30px;
}

.cs-card-t-2 .cs-img {
    flex: 0 0 67%;
    border-radius: unset;
}

.cs-card-t-3 {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 473px;
}

.cs-card-t-3 .cs-title {
    padding: 0 12px 20px;
}

.cs-card-t-4 {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.cs-card-t-4 .cs-title {
    padding: 0 32px 50px;
}

.cs-card-t-4 .cs-img {
    border-radius: unset;
    max-height: 472px;
}

.cs-card-link:hover {
    transform: translateY(-1rem);
}

.case-study-sec {
    overflow: hidden;
}

.case-study-swiper {
    overflow: visible;
}

.case-study-swiper .swiper-slide {
    width: auto !important;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.case-study-swiper .swiper-wrapper {
    align-items: stretch;
}

.case-study-swiper .swiper-slide {
    width: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.swiper-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 50px;
}

.swiper-button-prev,
.swiper-button-next {
    background-color: var(--black-color);
    color: var(--white-color);
    border-radius: 25px;
    padding: 5px 20px;
    font-size: 25px;
    line-height: 1;
    width: auto;
    height: auto;
    position: static;
    transform: none;
    cursor: pointer;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    display: none;
}

.case-study-swiper .swiper-slide.swiper-slide-prev {
    opacity: 0.5;
}


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

.fm-services {
    background: #2E4329;
}

.op-intro-sec {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 96vh;
    z-index: 1;
    padding-top: 82px;
}

.op-second-sec {
    position: relative;
    margin-top: 91vh;
    background: white;
    border-radius: 50px 50px 0 0;
    z-index: 2;
}

.op-intro-img {
    position: absolute;
    bottom: 4%;
    right: 0;
    width: 58vw;
}

.op-intro-content-wrap {
    height: 82.5vh;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.op-intro-sec .intro-title {
    font-size: 5.625rem;
    font-weight: 400;
}

.op-intro-sec .intro-subtitle {
    font-size: 1.375rem;
    margin: 20px 0 30px;
    max-width: 800px;
}

.s-wwd-sec {
    padding: 100px 0 275px;
    overflow: hidden;
}

.s-wwd-sec .shadow-s-wwd {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 35vw;
    height: auto;
    max-width: 700px;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}

.wwd-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
    position: relative;
    z-index: 1;
}

.wwd-grid-item-wrap {
    padding: 45px;
    border-radius: 50px;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1.25fr;
    gap: 60px;
    color: #FFFFFF;
}

.wwd-grid-item-wrap.wwd-c-1 {
    background-color: #82A05A;
}

.wwd-grid-item-wrap.wwd-c-2 {
    background-color: #5E7241;
}

.wwd-grid-item-wrap.wwd-c-3 {
    background-color: #374426;
}

.wwd-grid-item-wrap.wwd-c-4 {
    background-color: #252D18;
}

.wwd-grid-item-wrap.img-right {
    grid-template-columns: 1.25fr 1fr;
}

.wwd-grid-item-wrap.img-right .wwd-img-wrap {
    order: 2;
}

.wwd-img-wrap img {
    width: 100%;
    max-width: fit-content;
}

.wwd-grid-item-wrap.img-right .wwd-img-wrap img {
    margin-left: auto;
}

.wwd-img-wrap {
    margin: auto;
}

.wwd-content-wrap {
    padding: 25px 75px;
}

.wwd-s-title {
    font-size: 2.625rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.wwd-s-desc {
    font-size: 1.125rem;
}

.wwd-s-desc b {
    font-weight: 600;
}

.measurement-callout {
    margin-top: 60px;
    padding: 40px 48px;
    background-color: #f2f2f2;
    border-left: 4px solid #547D45;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

.measurement-callout p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #2C4329;
    font-weight: 500;
    margin: 0;
}

img.shadow-ell-left {
    position: absolute;
    top: 55%;
    left: 0%;
    transform: translate(0%, -50%);
    width: fit-content;
    object-fit: contain;
    z-index: 5;
}

img.shadow-ell-right {
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translate(0%, -50%);
    width: fit-content;
    object-fit: contain;
    z-index: 5;
}

img.shadow-lc-ell {
    position: absolute;
    bottom: -12%;
    left: -10%;
    z-index: -1;
}

.anim-faq-sec {
    position: relative;
    z-index: 2;
}

.anim-faq-main-wrap {
    background-color: #2E4329;
    color: #ffffff;
    border-radius: 50px 50px 0 0;
    overflow: hidden;
}

.anim-faq-wrapper {
    max-width: 1385px;
    margin: auto;
}

.anim-faq-upper-part {
    padding: 85px 0 50px;
}

.an-faq-title {
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.an-faq-desc {
    font-size: 1.25rem;
}

.anim-faq-lower-part {
    padding: -15px 0 90px;
    transform: translateY(40px);
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.23, 1, 0.32, 1), transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s ease-out;
}

.anim-faq-lower-part.is-open {
    padding: 0 0 90px;
    transform: translateY(0);
    opacity: 1;
}

.anim-faq-accordion .accordion-item {
    background: #2e4329;
}

.anim-faq-accordion button.accordion-button {
    color: #fff;
    padding: 30px 0 10px;
}

.anim-faq-accordion .accordion-item {
    border-bottom: 1.5px solid #EBEBEB40;
    margin-bottom: unset;
}

.anim-faq-accordion .accordion-item:last-child {
    border-bottom: 1.5px solid #EBEBEB40;
}

.anim-faq-accordion .accordion-body {
    padding: 0 0 25px;
}

.anim-faq-cta-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 45px;
}

.anim-faq-btn-wrapper {
    padding: 15px 0;
}

.faq-arr-btn {
    width: fit-content;
    display: block;
    margin: auto;
}

.faq-arr-btn img {
    display: block;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-arr-btn.up img {
    transform: rotate( 180deg);
}

.simple-cta-sec {
    padding: 125px 0 250px;
    position: relative;
    z-index: 2;
}

img.cta-bott-ell {
    position: absolute;
    bottom: -60%;
    left: 50%;
    transform: translate(-50%, 0%);
}

.s-cta-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    max-width: 1385px;
    margin: auto;
}

.s-cta-wrapper .cta-content-wrapper {
    flex: 1;
}

.cta-sub-title {
    font-family: var(--font-roboto);
    font-size: 12px;
    margin-bottom: 30px;
}

.cta-title {
    color: #2E4329;
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.cta-desc {
    font-size: 1.25rem;
    line-height: 1.2;
}

.max-525 {
    max-width: 525px;
}

.s-cta-wrapper .cta-btn-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
}

.cta-btn-wrap .fm-m-btn {
    padding: 18px 50px;
}


/* =========================================================================
============================= Specialties STYLES ===========================
========================================================================= */

.m-btn.arrow-img.mc-btn {
    background: var(--dark-green);
    color: var(--white-color);
    border: 1px solid var(--white-color);
}

.m-btn.arrow-img.mc-btn .arrow-img {
    filter: invert(1);
}

.m-btn.arrow-img.mc-btn:hover {
    background: var(--white-color);
    color: var(--black-color);
    border: 1px solid var(--dark-green);
}

.m-btn.arrow-img.mc-btn:hover .arrow-img {
    filter: invert(0);
}

.fm-specialties {
    background: #F7F9F2;
}

.fm-specialties .op-intro-img {
    width: 42.96vw;
    top: 50%;
    bottom: unset;
    right: 0;
    transform: translateY(-50%);
}

.fm-specialties .op-intro-content-wrap {
    max-width: 50%;
}

.spe-sec {
    background: #F2F2F2;
    padding: 100px 0 0;
}

.wwd-grid-item-wrap.spe-ci-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    padding: unset;
}

.spe-block:nth-child(2n) .wwd-grid-item-wrap.spe-ci-wrap {
    flex-direction: row-reverse;
}

.spe-block {
    padding: 140px 0;
    border-radius: 50px 50px 0 0;
    margin-top: -40px;
}

.spe-block:first-child {
    padding: 0 0 140px;
}

.spe-block-1 {
    padding-top: unset;
    padding-bottom: 100px;
    border-radius: unset;
    margin-top: unset;
}

.spe-block-2 {
    background-color: #E5ECE4;
    position: relative;
    z-index: 2;
}

.spe-block-3 {
    background-color: #D1DFCF;
    position: relative;
    z-index: 3;
}

.spe-block-4 {
    background-color: #9EB799;
    position: relative;
    z-index: 4;
}

.spe-block-5 {
    background-color: #8AAD85;
    position: relative;
    z-index: 5;
}

.spe-block-6 {
    padding-bottom: 200px;
    background-color: #78A372;
    position: relative;
    z-index: 6;
}

.faq-spe-bg {
    background-color: #9EB799;
}

.faq-spe-bg .anim-faq-btn-wrapper {
    background-color: var(--white-color);
}


/* =========================================================================
============================== COMPANY STYLES ==============================
========================================================================= */

.fm-company .op-intro-img {
    width: 43.38vw;
    bottom: 0%;
}

.fm-company {
    background-color: #EEF2E8;
}

.spe-sec.comp-abt-sec {
    padding: 100px 0 125px;
}

.spe-bg {
    background: #F2F2F2;
}

.spe-bg .anim-faq-btn-wrapper {
    background: var(--white-color);
}

img.abt-logo {
    position: absolute;
    top: -18%;
    right: -3%;
    opacity: 0.9;
}

.wo-anim .anim-faq-lower-part {
    max-height: fit-content;
    opacity: 1;
    padding: 0px 0 150px;
    transform: translateY(0px);
}

.wo-anim .anim-faq-upper-part {
    padding: 100px 0 25px;
}


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

/* ---- Contact Page: Hero ---- */
.contact-hero {
    padding: 40px 0 32px;
    text-align: center;
}

.contact-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-eyebrow {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #547D45;
    margin-bottom: 8px;
}

.contact-title {
    font-family: 'Fustat', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #131515;
    margin: 0;
    line-height: 1.15;
}

/* ---- Contact Page: Split Layout ---- */
.contact-split {
    padding: 0 0 80px;
}

.contact-split-inner {
    display: flex;
    gap: 48px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    align-items: flex-start;
}

.contact-col {
    flex: 1;
    min-width: 0;
}

.contact-col-heading {
    font-family: 'Fustat', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #131515;
    margin-bottom: 8px;
}

.contact-col-desc {
    font-size: 1rem;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Calendly embed */
.calendly-embed {
    min-width: 100%;
    height: 860px;
    border-radius: 8px;
    overflow: hidden;
}

/* Contact form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-field label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #131515;
    margin-bottom: 4px;
}

.contact-field input,
.contact-field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.975rem;
    color: #131515;
    background: #fff;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.contact-field input:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: #547D45;
}

.contact-submit {
    display: inline-block;
    padding: 14px 32px;
    background: #547D45;
    color: #fff;
    font-family: 'Fustat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
}

.contact-submit:hover {
    background: #366824;
}

.contact-email-line {
    margin-top: 20px;
    font-size: 0.925rem;
    color: #555;
}

.contact-email-line a {
    color: #547D45;
    font-weight: 600;
    text-decoration: underline;
}

.contact-email-line a:hover {
    color: #366824;
}

/* ---- Contact Page: Responsive ---- */
@media (max-width: 900px) {
    .contact-split-inner {
        flex-direction: column;
        gap: 40px;
    }

    .contact-title {
        font-size: 2.25rem;
    }

    .calendly-embed {
        height: 700px;
    }
}


/* =========================================================================
============================== OTHER STYLES ==============================
========================================================================= */

.op-intro-sec.fit-height {
    height: fit-content;
    position: relative;
}

.op-intro-sec.fit-height .op-intro-content-wrap {
    height: fit-content;
    padding: 70px 0 120px;
}

.op-intro-sec.fit-height .intro-subtitle {
    margin: 10px 0 0;
}

.op-second-sec.no-ext-marging {
    margin-top: -50px;
    padding: 100px 0;
}

.content-text-block-wrapper {
    max-width: 1200px;
    margin: auto;
}

.sticky {
    position: sticky;
    top: 70px;
    align-self: flex-start;
    height: 100%;
}

/* =========================================================================
========================= LEGAL PAGES (Privacy, Terms) ====================
========================================================================= */

.legal-content-sec {
    padding: 60px 0 100px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content .legal-updated {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-family: var(--font-fustat);
    font-size: 1.4rem;
    font-weight: 600;
    color: #131515;
    margin-top: 36px;
    margin-bottom: 12px;
}

.legal-content p {
    font-family: var(--font-roboto);
    font-size: 1rem;
    line-height: 1.75;
    color: #333;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 0 0 16px 24px;
    padding: 0;
}

.legal-content ul li {
    font-family: var(--font-roboto);
    font-size: 1rem;
    line-height: 1.75;
    color: #333;
    margin-bottom: 6px;
}

.legal-content a {
    color: var(--medium-green);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--dark-green);
}
/*--------------*/