:root {

    --color-green: #445E45;

    --color-green-dark: #2c3629;

    --color-gold: #BC945C;

    --color-tan: #DDD2BD;

    --color-cream: #EFEAE1;

    --color-white: #ffffff;

    --color-black: #000000;

    --color-text: #7A7A7A;

    --color-text-dark: #333333;

    --font-heading: 'Armata', sans-serif;

    --font-body: 'Mulish', sans-serif;

    --container-max: 1400px;

    --header-height: 89px;

    --transition: all 0.3s ease;


}


*,
*::before,
*::after {

    margin: 0;

    padding: 0;

    box-sizing: border-box;


}


body {

    font-family: var(--font-body);

    font-size: 15px;

    font-weight: 500;

    line-height: 28px;

    color: var(--color-text);

    background-color: var(--color-cream);

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;

    -moz-osx-font-smoothing: grayscale;


}


h1,
h2,
h3,
h4,
h5,
h6 {

    font-family: var(--font-heading);

    font-weight: 600;

    line-height: 1.2;

    color: var(--color-black);


}


a {

    text-decoration: none;

    color: inherit;

    transition: var(--transition);


}


ul {

    list-style: none;


}


img {

    max-width: 100%;

    height: auto;

    display: block;


}


.container {

    max-width: var(--container-max);

    margin: 0 auto;

    padding: 0 10px;

    width: 100%;


}


section {

    padding: 70px 0 80px;


}


#main-header {

    background: transparent;

    transition: all 0.4s ease;

    /* height: 90px; */

    display: flex;

    align-items: center;

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    background-color: transparent;


}


#main-header.scrolled {

    background: rgba(54, 71, 53, 0.9);

    backdrop-filter: blur(10px);

    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);

    height: 75px;


}


.header-container {

    display: flex;

    justify-content: space-between;

    align-items: center;

    width: 100%;


}


.logo img {

    height: 48px;

    width: 300px;

    transition: var(--transition);


}


.logo img:hover {

    transform: scale(1.05);


}


#main-header.scrolled .logo img {

    height: 45px;


}


.nav-links {

    display: flex;

    gap: 0;


}


.nav-links li a {

    color: var(--color-white);

    font-family: var(--font-heading);

    font-size: 13px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    padding: 13px 25px;

    display: block;

    font-style: normal;

    text-decoration: none;

    transition: var(--transition);


}


.nav-links li a:hover,
.nav-links li a.active {

    color: var(--color-tan);


}


.nav-links li a.active {

    color: var(--color-tan);


}


.menu-toggle {

    display: none;

    background: var(--color-white);

    border: none;

    color: var(--color-green);

    font-size: 22px;

    cursor: pointer;

    padding: 0.25em;

    border-radius: 20px;

    width: 40px;

    height: 40px;

    align-items: center;

    justify-content: center;


}


.hero-slider {

    position: relative;

    min-height: 800px;

    height: 100vh;

    overflow: hidden;

    background-color: #f5f5f3;

    margin-top: -90px;


}


.slides-container {

    position: relative;

    width: 100%;

    height: 100%;


}


.slide {

    position: absolute;

    top: 0;

    width: 100%;

    height: 100%;

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    opacity: 0;

    visibility: hidden;

    transition: opacity 1.5s ease-in-out, visibility 1.5s;

    display: flex;

    align-items: flex-end;

    justify-content: flex-start;

    text-align: left;

    z-index: 1;


}


.slide.active {

    opacity: 1;

    visibility: visible;

    z-index: 2;


}


.hero-content {

    width: 100%;

    max-width: none;

    color: var(--color-white);

    margin-top: 100px;

    padding-bottom: 90px;

    padding-left: 90px;


}


.hero-content h1 {

    font-family: var(--font-heading);

    font-size: 35px;

    font-weight: 700;

    line-height: 1.15;

    margin: 0;

    color: var(--color-white);

    letter-spacing: 2px;

    max-width: 700px;

    left: 0;


}


.hero-content h1 .word {

    display: inline-block;

    opacity: 0;

    transform: translateY(30px);

    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);

    will-change: transform, opacity;

}


.slide.active .hero-content h1 .word {

    opacity: 1;

    transform: translateY(0);

}


.hero-cta {

    margin-top: 28px;


}


.slider-dots {

    position: absolute;

    bottom: 30px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 12px;

    z-index: 10;


}


.dot {

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background-color: rgba(255, 255, 255, 0.4);

    cursor: pointer;

    transition: var(--transition);


}


.dot.active {

    background-color: var(--color-white);

    width: 25px;

    border-radius: 10px;


}


@media (min-width:1400px) {

    .hero-content {

        max-width: 1200px;

        padding-bottom: 110px;


    }


    .hero-content h1 {

        font-size: 54px;

        max-width: 780px;


    }


}


@media (max-width:1199px) {

    .hero-slider {

        min-height: 700px;


    }


    .hero-content {

        max-width: 900px;

        padding-bottom: 80px;


    }


    .hero-content h1 {

        font-size: 40px;

        max-width: 620px;

        letter-spacing: 1.5px;


    }


}


@media (max-width:991px) {

    .hero-slider {

        min-height: 620px;

        height: 85vh;


    }


    .slide {

        align-items: center;


    }


    .hero-content {

        margin-top: 350px;

        padding-bottom: 0;

        max-width: 100%;


    }


    .hero-content h1 {

        font-size: 34px;

        line-height: 1.2;

        max-width: 540px;

        letter-spacing: 1px;


    }


}


@media (max-width:767px) {

    .logo img {
        height: 40px;
        width: 200px;
        margin-top: 10px;
    }
    
    .hero-slider {

        min-height: 520px;

        height: 78vh;


    }


    .slide {

        align-items: center;

        background-position: center center;


    }


    .hero-content {

        max-width: 100%;


    }


    .hero-content h1 {

        font-size: 28px;

        line-height: 1.2;

        letter-spacing: 0.5px;

        max-width: 100%;


    }


    .hero-cta {

        margin-top: 20px;


    }


}


@media (max-width:480px) {

    .hero-slider {

        min-height: 460px;

        height: 72vh;


    }


    .hero-content h1 {

        font-size: 24px;

        line-height: 1.25;


    }


}


#why-us {

    background: #f5f5f3;

    padding: 36px 0 34px;

    overflow: hidden;

    position: relative;

    margin-top: -60px;


}


.why-us-grid-v2 {

    display: grid;

    grid-template-columns: 1.64fr 1fr;

    gap: 14px;

    align-items: start;


}


.why-us-info {

    padding-top: 0;


}


.why-us-subtitle {

    margin: 0 0 28px;

    font-family: var(--font-heading);

    font-size: 52px;

    line-height: 1;

    font-weight: 500;

    color: #BC945C;

    letter-spacing: -0.7px;


}


.why-us-main-title {

    margin: 0 0 28px;

    font-family: var(--font-heading);

    font-size: 40px;

    line-height: 1.16;

    font-weight: 600;

    color: #355d4b;

    letter-spacing: -0.6px;

    max-width: 820px;


}


.why-us-divider-wrapper {

    margin-bottom: 18px;


}


.why-us-gold-line {

    width: 109%;

    height: 4px;

    background: #BC945C;


}


.why-us-description {

    margin: 0;

    max-width: 830px;

    font-family: var(--font-body);

    font-size: 16px;

    line-height: 1.82;

    font-weight: 400;

    color: #707788;


}


.why-us-graphic-side {

    position: relative;

    min-height: 350px;

    display: flex;

    align-items: flex-start;

    justify-content: flex-end;


}


.experience-counter-wrapper {

    position: absolute;

    left: 42px;

    display: flex;

    align-items: flex-start;


}


.experience-number {

    font-family: var(--font-heading);

    font-size: 64px;

    line-height: 0.88;

    font-weight: 700;

    color: #496d4c;

    letter-spacing: -2px;


}


.experience-est {

    margin-top: 9px;

    font-family: var(--font-body);

    font-size: 12px;

    line-height: 1;

    font-weight: 700;

    color: #355d4b;

    letter-spacing: 0.3px;


}


.bm-brand-graphic {

    width: 100%;

    max-width: 500px;

    position: relative;

    padding-top: 60px;


}


.bm-brand-graphic svg {

    display: block;

    width: 100%;

    height: auto;

    overflow: visible;


}


.lines-img {

    width: 100%;

    max-width: 500px;

    position: relative;

    margin-top: -104px;


}


.lines-img img {

    width: 100%;

    max-width: 500px;

    position: relative;


}


.experience-label {

    margin-top: 32px;

    margin-left: 112px;

    font-family: var(--font-body);

    font-size: 16px;

    line-height: 1.2;

    font-weight: 700;

    color: #355d4b;

    letter-spacing: 0.2px;

    text-transform: uppercase;


}


@media (min-width:1400px) {

    #why-us {

        padding: 48px 0 44px;


    }


    .why-us-grid-v2 {

        grid-template-columns: 1.7fr 1.08fr;

        gap: 22px;


    }


    .why-us-subtitle {

        font-size: 62px;

        margin-bottom: 30px;


    }


    .why-us-main-title {

        font-size: 48px;

        max-width: 960px;

        margin-bottom: 30px;


    }


    .why-us-description {

        max-width: 950px;

        font-size: 19px;

        line-height: 1.9;


    }


    .why-us-graphic-side {

        min-height: 430px;


    }


    .experience-counter-wrapper {

        top: 88px;

        left: 54px;


    }


    .experience-number {

        font-size: 82px;


    }


    .experience-est {

        font-size: 15px;

        margin-top: 12px;


    }


    .bm-brand-graphic {

        max-width: 620px;

        padding-top: 76px;


    }


    .experience-label {

        margin-top: 36px;

        margin-left: 132px;

        font-size: 20px;


    }


}


@media (max-width:1399px) and (min-width:1100px) {

    .why-us-grid-v2 {

        grid-template-columns: 1.58fr 1fr;

        gap: 18px;


    }


    .why-us-subtitle {

        font-size: 48px;


    }


    .why-us-main-title {

        font-size: 38px;

        max-width: 780px;


    }


    .why-us-description {

        font-size: 16px;

        max-width: 780px;


    }


    .why-us-graphic-side {

        min-height: 340px;


    }


    .experience-counter-wrapper {

        top: 82px;

        left: 34px;


    }


    .experience-number {

        font-size: 62px;


    }


    .bm-brand-graphic {

        max-width: 470px;

        padding-top: 60px;


    }


    .experience-label {

        margin-top: 28px;

        margin-left: 105px;

        font-size: 15px;


    }


}


@media (max-width:1099px) and (min-width:768px) {

    #why-us {

        padding: 32px 0 30px;


    }


    .why-us-grid-v2 {

        grid-template-columns: 1.05fr 1fr;

        gap: 16px;

        align-items: start;


    }


    .why-us-subtitle {

        font-size: 38px;

        margin-bottom: 18px;


    }


    .why-us-main-title {

        font-size: 30px;

        line-height: 1.18;

        margin-bottom: 20px;

        max-width: 100%;


    }


    .why-us-divider-wrapper {

        margin-bottom: 18px;


    }


    .why-us-gold-line {

        height: 4px;


    }


    .why-us-description {

        font-size: 15px;

        line-height: 1.85;

        max-width: 100%;


    }


    .why-us-graphic-side {

        min-height: 280px;

        justify-content: flex-end;


    }


    .experience-counter-wrapper {

        top: 52px;

        left: 18px;

        transform: none;

        position: absolute;


    }


    .experience-number {

        font-size: 50px;

        line-height: 0.9;


    }


    .experience-est {

        font-size: 11px;

        margin-top: 8px;


    }


    .bm-brand-graphic {

        max-width: 400px;

        padding-top: 46px;


    }


    .experience-label {

        margin-top: 20px;

        margin-left: 78px;

        font-size: 13px;

        line-height: 1.2;


    }


    #why-us::after {

        right: 10px;

        width: 3px;


    }


}


@media (max-width:767px) {

    #why-us {

        padding: 26px 0 28px;


    }


    .why-us-grid-v2 {

        grid-template-columns: 1fr;

        gap: 22px;


    }


    .why-us-subtitle {

        font-size: 32px;

        margin-bottom: 12px;

        padding-top: 20px;


    }


    .why-us-main-title {

        font-size: 26px;

        line-height: 1.18;

        margin-bottom: 16px;

        max-width: 100%;


    }


    .why-us-divider-wrapper {

        margin-bottom: 16px;


    }


    .why-us-gold-line {

        height: 3px;


    }


    .why-us-description {

        font-size: 14px;

        line-height: 1.8;

        max-width: 100%;


    }


    .why-us-graphic-side {

        min-height: auto;

        justify-content: center;


    }


    .experience-counter-wrapper {

        position: relative;

        top: auto;

        left: auto;

        transform: none;

        margin-bottom: 10px;


    }


    .experience-number {

        font-size: 44px;


    }


    .experience-est {

        font-size: 10px;

        margin-top: 7px;


    }


    .bm-brand-graphic {

        max-width: 320px;

        padding-top: 0;

        margin: 0 auto;


    }


    .experience-label {

        margin-top: 16px;

        margin-left: 0;

        text-align: center;

        font-size: 12px;


    }


    #why-us::after {

        display: none;


    }


}





#services-v2 {

    background: #4d6d4c;

    position: relative;

    overflow-y: visible;

    padding: 0 20px;

    min-height: 720px;

}


.services-v2-inner {
    position: relative;

    padding: 18px 0 24px;

    z-index: 1;


}


.services-v2-title {

    margin: 0 0 34px;

    text-align: center;

    font-family: var(--font-heading);

    font-size: 34px;

    line-height: 1;

    font-weight: 500;

    letter-spacing: 2px;

    color: #ecdcbc;


}


.services-v2-inner::before {

    content: "";

    position: absolute;

    top: 94px;

    left: 0;

    right: 46px;

    height: 3px;

    background: rgba(255, 255, 255, 0.92);

    z-index: 2;

    top: 86px;

    width: 380px;


}


.services-v2-inner::after {

    content: "";

    position: absolute;

    top: 4px;

    right: 0;

    width: 3px;

    height: 70%;

    background: rgba(255, 255, 255, 0.92);

    z-index: 1;


}


.services-v2-grid::after {

    content: "";

    position: absolute;

    left: 128px;

    width: calc(24% + 17.5%);

    top: calc(305px + 230px - 3px);

    height: 3px;

    background: rgba(255, 255, 255, 0.92);

    z-index: 10;


}


.sv2-image-top-right::after {

    content: "";

    position: absolute;

    left: 0;

    top: 100%;

    width: 3px;

    height: 230px;

    background: rgba(255, 255, 255, 0.92);

    z-index: 10;

    pointer-events: none;


}


.services-v2-grid {

    position: relative;

    display: grid;

    grid-template-columns: 24% 27% 25% 24%;

    grid-template-rows: 305px 230px;

    gap: 0;

    align-items: stretch;

    z-index: 1;

    row-gap: 0;


}


.sv2-item {

    position: relative;


}


.sv2-text-block {

    background: #4d6d4c;

    display: flex;

    flex-direction: column;

    justify-content: center;

    position: relative;

    z-index: 1;


}


.sv2-text-block h3 {

    margin: 0 0 20px;

    font-family: var(--font-heading);

    font-size: 17px;

    line-height: 1.45;

    font-weight: 700;

    color: #ecdcbc;


}


.sv2-text-block p {

    margin: 0;

    font-family: var(--font-body);

    font-size: 13px;

    line-height: 2;

    color: rgba(255, 255, 255, 0.9);


}


.sv2-text-top-left {

    grid-column: 1;

    grid-row: 1;

    padding: 72px 28px 18px 14px;


}


.sv2-image-top-mid {

    grid-column: 2;

    grid-row: 1;


}


.sv2-image-top-right {

    grid-column: 3;

    grid-row: 1;


}


.sv2-text-top-right {

    grid-column: 4;

    grid-row: 1;

    padding: 72px 18px 18px 22px;


}


.sv2-image-bottom-left {

    grid-column: 1;

    grid-row: 2;

    margin-top: -3px;


}


.sv2-text-bottom-mid {

    grid-column: 2;

    grid-row: 2;

    padding: 24px 18px 10px 18px;


}


.sv2-text-bottom-right {

    grid-column: 3;

    grid-row: 2;

    padding: 18px 18px 10px 16px;


}


.sv2-image-bottom-far-right {

    grid-column: 4;

    grid-row: 2;

    height: 280px;


}


.sv2-image-block {

    position: relative;

    z-index: 2;


}


.sv2-image-block::before {

    content: "";

    position: absolute;

    inset: 0;

    border: 3px solid rgba(255, 255, 255, 0.95);

    pointer-events: none;

    z-index: 2;


}


.sv2-image-block img {

    position: absolute;

    top: 50%;

    left: 50%;

    width: calc(100% - 16px);

    height: calc(100% - 16px);

    transform: translate(-50%, -50%);

    object-fit: cover;

    display: block;

    z-index: 1;


}


.sv2-image-top-mid img {

    width: calc(100% - 3px);

    height: calc(100% - 2px);

    top: 0;

    left: 0;

    transform: none;


}


.sv2-image-bottom-left img {

    width: 100%;

    height: 100%;

    top: 0;

    left: 0;

    transform: none;


}


.sv2-image-top-right img {

    width: calc(100% - 3px);

    height: calc(100% - 2px);

    top: 3px;

    left: 0;

    transform: none;


}


.sv2-image-bottom-far-right img {

    width: calc(100% - 3px);

    height: calc(100% - 4px);

    top: 0;

    left: 0;

    transform: none;


}


.sv2-image-top-mid::before {

    border-top-right-radius: 140px;

    border-bottom-right-radius: 140px;

    border-left: none;


}


.sv2-image-top-mid img {

    border-top-right-radius: 130px;

    border-bottom-right-radius: 130px;


}


.sv2-image-top-right::before {

    border-top-left-radius: 140px;

    border-top-right-radius: 140px;

    border-bottom: none;


}


.sv2-image-top-right img {

    border-top-left-radius: 130px;

    border-top-right-radius: 130px;


}


.sv2-image-bottom-left::before {

    border-top-left-radius: 140px;

    border-bottom-left-radius: 140px;

    border-right: none;


}


.sv2-image-bottom-left img {

    border-top-left-radius: 130px;

    border-bottom-left-radius: 130px;


}


.sv2-image-bottom-far-right::before {

    border-bottom-left-radius: 140px;

    border-bottom-right-radius: 140px;

    border-top: none;


}


.sv2-image-bottom-far-right img {

    border-bottom-left-radius: 130px;

    border-bottom-right-radius: 130px;


}


.sv2-image-top-mid::after,
.sv2-image-top-right::after,
.sv2-image-bottom-far-right::after {

    content: "";

    position: absolute;

    background: rgba(255, 255, 255, 0.92);

    z-index: 3;

    pointer-events: none;


}


@media (min-width:1500px) {

    .services-v2-inner {

        padding: 22px 0 30px;

        height: 750px;


    }


    .services-v2-title {

        font-size: 40px;

        margin-bottom: 40px;


    }


    .services-v2-inner::before {

        width: 430px;

        top: 102px;


    }


    .services-v2-inner::after {

        height: 62%;


    }


    .services-v2-grid {

        grid-template-rows: 340px 255px 340px 255px;


    }


    .services-v2-grid::after {

        left: 144px;

        width: calc(24% + 16.9%);

        top: calc(340px + 255px - 3px);


    }


    .sv2-image-top-right::after {

        height: 255px;


    }


    .sv2-text-top-left {

        padding: 82px 34px 20px 18px;


    }


    .sv2-text-top-right {

        padding: 82px 22px 20px 26px;


    }


    .sv2-text-bottom-mid {

        padding: 28px 22px 12px 22px;


    }


    .sv2-text-bottom-right {

        padding: 22px 22px 12px 18px;


    }


    .sv2-text-block h3 {

        font-size: 19px;


    }


    .sv2-text-block p {

        font-size: 14px;

        line-height: 2;


    }


    .sv2-image-top-mid::before,
    .sv2-image-top-right::before,
    .sv2-image-bottom-left::before,
    .sv2-image-bottom-far-right::before {

        border-width: 3px;


    }


    .sv2-image-top-mid::before {

        border-top-right-radius: 160px;

        border-bottom-right-radius: 160px;


    }


    .sv2-image-top-right::before {

        border-top-left-radius: 160px;

        border-top-right-radius: 160px;


    }


    .sv2-image-bottom-left::before {

        border-top-left-radius: 160px;

        border-bottom-left-radius: 160px;


    }


    .sv2-image-bottom-far-right::before {

        border-bottom-left-radius: 160px;

        border-bottom-right-radius: 160px;


    }


    .sv2-image-top-mid img {

        border-top-right-radius: 150px;

        border-bottom-right-radius: 150px;


    }


    .sv2-image-top-right img {

        border-top-left-radius: 150px;

        border-top-right-radius: 150px;


    }


    .sv2-image-bottom-left img {

        border-top-left-radius: 150px;

        border-bottom-left-radius: 150px;


    }


    .sv2-image-bottom-far-right img {

        border-bottom-left-radius: 150px;

        border-bottom-right-radius: 150px;


    }


}


@media (max-width:1199px) and (min-width:768px) {


    .services-v2-inner::before,
    .services-v2-inner::after,
    .services-v2-grid::after,
    .sv2-image-top-right::after {

        display: none;


    }


    .services-v2-title {

        font-size: 30px;

        margin-bottom: 26px;


    }


    .services-v2-grid {

        grid-template-columns: 1fr 1fr;

        grid-template-rows: repeat(4, minmax(240px, auto));

        gap: 18px;


    }


    .sv2-text-top-left {

        grid-column: 1;

        grid-row: 1;

        padding: 28px 22px !important;

        border-radius: 28px;


    }


    .sv2-image-top-mid {

        grid-column: 2;

        grid-row: 1;

        min-height: 260px;


    }


    .sv2-image-top-right {

        grid-column: 1;

        grid-row: 2;

        min-height: 260px;


    }


    .sv2-text-top-right {

        grid-column: 2;

        grid-row: 2;

        padding: 28px 22px !important;

        border-radius: 28px;


    }


    .sv2-image-bottom-left {

        grid-column: 1;

        grid-row: 3;

        min-height: 260px;


    }


    .sv2-text-bottom-mid {

        grid-column: 2;

        grid-row: 3;

        padding: 28px 22px !important;

        border-radius: 28px;


    }


    .sv2-text-bottom-right {

        grid-column: 1;

        grid-row: 4;

        padding: 28px 22px !important;

        border-radius: 28px;


    }


    .sv2-image-bottom-far-right {

        grid-column: 2;

        grid-row: 4;

        min-height: 260px;


    }


    .sv2-item {

        min-height: 240px;


    }


    .sv2-text-block h3 {

        font-size: 22px;

        margin-bottom: 14px;


    }


    .sv2-text-block p {

        font-size: 15px;

        line-height: 1.8;


    }


    .sv2-image-block {

        overflow: hidden;

        border-radius: 28px;


    }


    .sv2-image-block::before {

        border: 2px solid rgba(255, 255, 255, 0.92);

        border-radius: 28px !important;


    }


    .sv2-image-block img,
    .sv2-image-top-mid img,
    .sv2-image-top-right img,
    .sv2-image-bottom-left img,
    .sv2-image-bottom-far-right img {

        position: absolute;

        top: 0 !important;

        left: 0 !important;

        width: 100% !important;

        height: 100% !important;

        transform: none !important;

        border-radius: 28px !important;


    }


}


@media (max-width:767px) {


    .services-v2-inner::before,
    .services-v2-inner::after,
    .services-v2-grid::after,
    .sv2-image-top-right::after {

        display: none;


    }


    .services-v2-inner {

        padding: 16px 0 20px;


    }

    #services-v2 {

        padding: 20px 20px;

        min-height: auto;

    }


    .services-v2-title {

        font-size: 26px;

        margin-bottom: 20px;

        letter-spacing: 1px;
        padding: 10px;


    }


    .services-v2-grid {

        grid-template-columns: 1fr;

        grid-template-rows: none;

        gap: 16px;


    }


    .sv2-text-top-left,
    .sv2-image-top-mid,
    .sv2-image-top-right,
    .sv2-text-top-right,
    .sv2-image-bottom-left,
    .sv2-text-bottom-mid,
    .sv2-text-bottom-right,
    .sv2-image-bottom-far-right {

        grid-column: auto;

        grid-row: auto;


    }


    .sv2-item {

        min-height: auto;


    }


    .sv2-text-block {

        padding: 22px 18px !important;

        border-radius: 22px;


    }


    .sv2-text-block h3 {

        font-size: 18px;

        line-height: 1.4;

        margin-bottom: 10px;


    }


    .sv2-text-block p {

        font-size: 14px;

        line-height: 1.75;


    }


    .sv2-image-block {

        min-height: 220px;

        overflow: hidden;

        border-radius: 22px;


    }


    .sv2-image-block::before {

        border: 2px solid rgba(255, 255, 255, 0.92);

        border-radius: 22px !important;


    }


    .sv2-image-block img,
    .sv2-image-top-mid img,
    .sv2-image-top-right img,
    .sv2-image-bottom-left img,
    .sv2-image-bottom-far-right img {

        position: absolute;

        top: 0 !important;

        left: 0 !important;

        width: 100% !important;

        height: 100% !important;

        transform: none !important;

        border-radius: 22px !important;


    }


}


#our-skills {

    background: #efebe3;

    padding: 0;

    overflow: hidden;


}


#our-skills .container {

    position: relative;

    z-index: 3;


}


.skills-title {

    text-align: center;

    font-family: var(--font-heading);

    font-size: 58px;

    line-height: 1;

    font-weight: 600;

    color: #3f6347;

    margin: 0;

    padding: 70px 0 56px;

    letter-spacing: -1px;


}


.skills-showcase {

    width: 100%;


}


.skill-row {
    position: relative;
    display: grid;
    min-height: 450px;
    background: #efebe3;
    overflow: hidden;
}


.skill-row-right-card {

    grid-template-columns: 2fr 1fr;


}


.skill-row-left-card {

    grid-template-columns: 1fr 2fr;


}


/* Animation base states handled below in unified section */


.skill-image-block {

    position: absolute;

    inset: 0;


}


.skill-image-block img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;


}


.skill-curve {
    position: absolute;
    top: 0;
    width: 30%;
    height: 100%;
    background: #efebe3;
    z-index: 2;
    /* Scroll Animation Base State */
    opacity: 0;
    visibility: hidden;
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}


.skill-curve-right {
    right: -1px;
    border-radius: 225px 0 0 225px;
}

.skill-curve-left {
    left: -1px;
    border-radius: 0 225px 225px 0;
}


.skill-card-block {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #efebe3;
    z-index: 3;
    padding: 40px 50px;
    min-height: 450px;
    /* Scroll Animation Base State */
    opacity: 0;
    visibility: hidden;
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.skill-image-wrap {
    position: relative;
    overflow: hidden;
    min-height: 450px;
}

.skill-row.revealed .skill-card-block,
.skill-row.revealed .skill-curve {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
}


.skill-card {

    width: 100%;

    max-width: 310px;

    background: #ffffff;

    border-radius: 4px;

    padding: 46px 30px 42px;

    box-shadow: none;


}


.skill-card h3 {

    font-family: var(--font-heading);

    font-size: 24px;

    line-height: 1.45;

    font-weight: 700;

    color: #111;

    margin: 0 0 18px;


}


.skill-card p {

    margin: 0;

    font-family: var(--font-body);

    font-size: 15px;

    line-height: 2;

    color: #1f1f1f;


}


.skill-row-right-card .skill-card-block,
.skill-row-right-card .skill-curve {
    justify-content: center;
    /* Start from right */
    transform: translateX(100px);
}

.skill-row-right-card .skill-card-block {
    grid-column: 2;
}

.skill-row-right-card .skill-image-wrap {
    grid-column: 1;
}


.skill-row-left-card .skill-card-block,
.skill-row-left-card .skill-curve {
    justify-content: center;
    /* Start from left */
    transform: translateX(-100px);
}

.skill-row-left-card .skill-card-block {
    grid-column: 1;
    order: 1;
}

.skill-row-left-card .skill-image-wrap {
    grid-column: 2;
    order: 2;
}


.skill-row-right-card .skill-card {

    margin-left: 40px;


}


.skill-row-left-card .skill-card {

    margin-right: 40px;


}


.skill-row:nth-child(1) .skill-image-block img {

    object-position: center center;


}


.skill-row:nth-child(2) .skill-image-block img {

    object-position: center center;


}


.skill-row:nth-child(3) .skill-image-block img {

    object-position: center center;


}


.skill-row:nth-child(4) .skill-image-block img {

    object-position: center center;


}


@media (min-width:1400px) {

    .skills-title {

        font-size: 64px;

        padding: 78px 0 62px;


    }


    .skill-row,
    .skill-image-wrap {

        min-height: 440px;


    }


    .skill-card {

        max-width: 340px;

        padding: 52px 34px 48px;


    }


    .skill-card h3 {

        font-size: 26px;


    }


    .skill-card p {

        font-size: 16px;


    }


    .skill-curve {

        width: 42%;


    }


}


@media (max-width:1199px) {

    .skills-title {

        font-size: 48px;

        padding: 56px 0 44px;


    }


    .skill-row,
    .skill-image-wrap {

        min-height: 340px;


    }


    .skill-card-block {

        padding: 30px 34px;


    }


    .skill-card {

        max-width: 290px;

        padding: 36px 24px;


    }


    .skill-card h3 {

        font-size: 21px;


    }


    .skill-card p {

        font-size: 14px;

        line-height: 1.85;


    }


    .skill-curve {

        width: 38%;


    }


    .skill-row-right-card .skill-card {

        margin-left: 18px;


    }


    .skill-row-left-card .skill-card {

        margin-right: 18px;


    }


}


@media (max-width:991px) {

    .skill-row {

        grid-template-columns: 1fr;

        min-height: auto;


    }


    .skill-row .skill-image-wrap,
    .skill-row .skill-card-block {

        grid-column: 1 !important;


    }


    .skill-image-wrap {

        min-height: 300px;

        order: 1 !important;


    }


    .skill-card-block {

        order: 2 !important;

        padding: 26px 20px 34px;


    }


    .skill-card {

        max-width: 100%;

        margin: 0 !important;


    }


    .skill-curve {

        display: none;


    }


}


@media (max-width:767px) {

    .skills-title {

        font-size: 34px;

        padding: 40px 0 28px;


    }


    .skill-image-wrap {

        min-height: 240px;


    }


    .skill-card-block {

        padding: 20px 16px 28px;


    }


    .skill-card {

        padding: 28px 20px;


    }


    .skill-card h3 {

        font-size: 20px;

        margin-bottom: 12px;


    }


    .skill-card p {

        font-size: 14px;

        line-height: 1.8;


    }


}


#stats-bar {

    position: relative;

    background: url('../images/stats-bg.jpg') no-repeat center center/cover;

    padding: 80px 0;

    color: var(--color-white);

    overflow: hidden;

    margin-top: 60px;


}


.stats-bar-overlay {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-color: rgba(21, 54, 22, 0.92);

    z-index: 0;


}


.stats-bar-inner {

    position: relative;

    z-index: 1;


}


.stats-bar-header {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    margin-bottom: 60px;

    margin-left: 0;

    text-align: center;

    flex-wrap: nowrap;


}


.stats-tagline {

    font-family: var(--font-heading);

    font-size: 28px;

    font-weight: 500;

    color: var(--color-white);

    line-height: 1.1;

    white-space: nowrap;


}


.stats-dots {

    color: #bc945c;

    font-size: 14px;

    letter-spacing: 4px;

    line-height: 1;

    white-space: nowrap;


}


.stats-pipe-svg {

    width: min(400px, 32vw);

    height: auto;

    max-width: 100%;

    flex-shrink: 1;

    object-fit: contain;


}


.stats-counters {

    display: grid;

    grid-template-columns: repeat(6, 1fr);

    gap: 30px;

    text-align: center;


}


.stat-counter-item {

    display: flex;

    flex-direction: column;

    align-items: center;


}


.stat-counter-item i {

    font-size: 32px;

    color: rgba(255, 255, 255, 0.5);

    margin-bottom: 18px;


}


.stat-count {

    font-family: var(--font-heading);

    font-size: 50px;

    font-weight: 700;

    color: var(--color-white);

    line-height: 1;


}


.stat-plus {

    font-family: var(--font-heading);

    font-size: 30px;

    font-weight: 700;

    color: var(--color-white);

    vertical-align: top;


}


.stat-counter-item p {

    font-size: 13px;

    line-height: 20px;

    color: rgba(255, 255, 255, 0.7);

    margin-top: 12px;


}


@media (max-width:1200px) {

    .stats-bar-header {

        gap: 14px;

        margin-bottom: 50px;


    }


    .stats-tagline {

        font-size: 24px;


    }


    .stats-dots {

        font-size: 12px;

        letter-spacing: 3px;


    }


    .stats-pipe-svg {

        width: min(320px, 30vw);


    }


}


@media (max-width:1024px) {

    .stats-counters {

        grid-template-columns: repeat(3, 1fr);

        gap: 40px;


    }


    .stats-bar-header {

        gap: 12px;

        margin-bottom: 40px;


    }


    .stats-tagline {

        font-size: 22px;


    }


    .stats-dots {

        font-size: 11px;

        letter-spacing: 2px;


    }


    .stats-pipe-svg {

        width: min(260px, 28vw);


    }


}


@media (max-width:767px) {

    #stats-bar {

        padding: 60px 0;


    }


    .stats-counters {

        grid-template-columns: repeat(2, 1fr);

        gap: 30px;


    }


    .stats-bar-header {

        flex-wrap: wrap;

        flex-direction: column;

        gap: 10px;

        text-align: center;

        margin-bottom: 30px;


    }


    .stats-tagline {

        font-size: 20px;

        white-space: normal;


    }


    .stats-dots {

        display: none;


    }


    .stats-pipe-svg {

        width: min(220px, 60vw);

        height: auto;


    }


}


@media (max-width:480px) {

    .stats-tagline {

        font-size: 18px;


    }


    .stats-pipe-svg {

        width: min(180px, 58vw);


    }


}


#home-gallery {

    padding: 80px 0;

    background-color: #F0ECE5;


}


.gallery-v2-title {

    text-align: center;

    font-family: var(--font-heading);

    font-size: 42px;

    font-weight: 500;

    color: var(--color-green);

    margin-bottom: 50px;


}


.gallery-v2-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;


}


.gallery-v2-card {

    background-color: var(--color-white);

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    transition: var(--transition);

    display: flex;

    flex-direction: column;

    align-items: center;

    padding-bottom: 10px;


}


.gallery-v2-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);


}


.gallery-v2-img {

    width: 100%;

    height: 300px;

    overflow: hidden;

    margin-bottom: 5px;


}


.gallery-v2-img img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;


}


.gallery-v2-card:hover .gallery-v2-img img {

    transform: scale(1.05);


}


.gallery-v2-btn {

    display: inline-block;

    background-color: var(--color-green);

    color: var(--color-white);

    padding: 12px 35px;

    border-radius: 30px;

    font-family: var(--font-heading);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;

    text-decoration: none;

    text-transform: uppercase;

    transition: var(--transition);


}


.gallery-v2-btn:hover {

    background-color: var(--color-black);

    color: var(--color-white);


}


@media (max-width:767px) {

    .gallery-v2-grid {

        grid-template-columns: 1fr;


    }


}


#video-banner {

    position: relative;

    width: 100%;

    overflow: hidden;


}


.video-wrapper {

    position: relative;

    width: 100%;

    height: 420px;


}


.video-wrapper video {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;


}


.video-overlay {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.45);


}


.video-center-logo {

    position: absolute;

    top: 50%;

    left: 50%;

    transform: translate(-50%, -50%);


}


.video-center-logo img {

    width: 260px;

    opacity: 0.9;


}


#main-footer {

    background: #4c664b;

    color: #fff;

    position: relative;

    overflow: hidden;

    font-family: var(--font-body);


}


#main-footer::before {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);

    background-size: 120px 120px;

    opacity: 0.35;

    pointer-events: none;


}


#main-footer::after {

    content: "";

    position: absolute;

    right: -40px;

    bottom: 0;

    width: 48%;

    height: 90%;

    background: url("assets/images/footer-lines.png") no-repeat right bottom;

    background-size: contain;

    opacity: 0.08;

    pointer-events: none;


}


.footer-main-tier {

    position: relative;

    z-index: 1;

    padding: 48px 0 34px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.14);


}


.footer-main-grid {

    display: grid;

    grid-template-columns: 1.7fr 0.75fr 0.75fr;

    gap: 56px;

    align-items: start;


}


.footer-cta-column {

    padding-right: 24px;


}


.footer-huge-title {

    font-family: var(--font-heading);

    font-size: 48px;

    line-height: 1.05;

    font-weight: 600;

    letter-spacing: -1px;

    color: #fff;

    margin: 0 0 28px;

    max-width: 620px;


}


.footer-enquire-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 135px;

    height: 36px;

    padding: 0 24px;

    border-radius: 999px;

    background: #d7ccb6;

    color: #111;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    text-transform: uppercase;

    letter-spacing: 0.2px;

    transition: 0.25s ease;


}


.footer-enquire-btn:hover {

    background: #efe7d8;

    transform: translateY(-1px);


}


.footer-info-block {

    min-height: 100%;


}


.footer-info-block-border {

    border-left: 1px solid rgba(255, 255, 255, 0.14);

    padding-left: 28px;


}


.footer-info-block h3 {

    font-family: var(--font-heading);

    font-size: 22px;

    line-height: 1.2;

    font-weight: 600;

    color: #fff;

    margin: 6px 0 22px;


}


.footer-info-block p,
.footer-link {

    margin: 0;

    color: #fff;

    opacity: 0.95;

    font-size: 16px;

    line-height: 1.75;

    text-decoration: none;


}


.footer-link {

    display: inline-block;

    margin-bottom: 20px;


}


.footer-phone {

    display: inline-block;

    margin-top: 8px;

    color: #d9cfb8;

    font-size: 18px;

    line-height: 1.2;

    font-weight: 700;

    text-decoration: none;

    letter-spacing: 0.3px;


}


.footer-socials {

    display: flex;

    gap: 12px;

    margin-top: 22px;


}


.footer-socials a {

    width: 34px;

    height: 34px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.12);

    color: #fff;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    font-size: 13px;

    text-decoration: none;

    transition: 0.25s ease;


}


.footer-socials a:hover {

    background: #d7ccb6;

    color: #1f1f1f;


}


.footer-bottom-tier {

    position: relative;

    z-index: 1;

    padding: 26px 0;


}


.footer-bottom-grid {

    display: grid;

    grid-template-columns: 1.5fr auto 1.3fr;

    gap: 24px;

    align-items: center;


}


.footer-nav {

    display: flex;

    flex-direction: column;

    gap: 6px;


}


.nav-row {

    display: flex;

    flex-wrap: wrap;

    gap: 14px 28px;


}


.nav-row a {

    color: #fff;

    text-decoration: none;

    font-size: 14px;

    line-height: 1.4;

    font-weight: 500;

    transition: 0.25s ease;


}


.nav-row a:hover {

    color: #d7ccb6;


}


.footer-logo-center {

    text-align: center;


}


.bm-footer-svg {

    width: 74px;

    height: auto;

    display: block;

    margin: 0 auto;


}


.footer-copyright {

    text-align: right;


}


.footer-copyright p {

    margin: 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 13px;

    line-height: 1.5;


}


.footer-copyright strong {

    color: #fff;

    font-weight: 600;


}


.footer-logo-center img {

    width: 60px;


}


@media (max-width:1100px) {

    .footer-main-grid {

        grid-template-columns: 1fr;

        gap: 34px;


    }


    .footer-info-block-border {

        border-left: none;

        padding-left: 0;


    }


    .footer-huge-title {

        max-width: 100%;

        font-size: 46px;


    }


    .footer-bottom-grid {

        grid-template-columns: 1fr;

        text-align: center;


    }


    .footer-nav {

        align-items: center;


    }


    .nav-row {

        justify-content: center;


    }


    .footer-copyright {

        text-align: center;


    }


}


@media (max-width:767px) {

    .footer-main-tier {

        padding: 34px 0 26px;


    }


    .footer-huge-title {

        font-size: 36px;

        line-height: 1.1;


    }


    .footer-info-block h3 {

        font-size: 20px;

        margin-bottom: 14px;


    }


    .footer-info-block p,
    .footer-link {

        font-size: 15px;


    }


    .footer-phone {

        font-size: 16px;


    }


    .footer-bottom-tier {

        padding: 22px 0;


    }


    .nav-row {

        gap: 10px 18px;


    }


    .nav-row a {

        font-size: 13px;


    }


}


.page-header {

    height: 600px;

    display: flex;

    align-items: center;

    justify-content: flex-end;

    text-align: right;

    color: var(--color-white);

    background-size: cover;

    background-position: center;

    padding-top: var(--header-height);

    position: relative;

    padding-right: 5%;


}


.page-header::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background-color: rgba(0, 0, 0, 0.5);

    z-index: 1;


}


.page-header .container {

    position: relative;

    z-index: 2;

    max-width: var(--container-max);


}


.page-header h1 {

    font-family: var(--font-heading);

    font-size: 80px;

    font-weight: 600;

    line-height: normal;

    margin-bottom: 0;

    color: var(--color-white);

    text-transform: capitalize;


}


.page-header .breadcrumbs {

    font-family: var(--font-body);

    font-size: 14px;

    font-weight: 500;

    color: var(--color-white);

    margin-top: 10px;


}


.page-header .breadcrumbs a {

    color: var(--color-white);

    text-decoration: none;

    transition: var(--transition);


}


.page-header .breadcrumbs a:hover {

    color: var(--color-tan);


}


.page-header .breadcrumbs span.separator {

    margin: 0 8px;

    color: rgba(255, 255, 255, 0.8);


}


#about-intro-v2 {

    padding: 100px 0;

    background-color: var(--color-white);

    overflow: hidden;


}


.why-us-v2-grid {

    display: grid;

    grid-template-columns: 1.2fr 1fr;

    gap: 80px;

    align-items: flex-start;


}


.why-us-v2-subtitle {

    font-family: var(--font-heading);

    color: var(--color-gold);

    font-size: 45px;

    font-weight: 500;

    margin-bottom: 5px;


}


.why-us-v2-main-title {

    font-family: var(--font-heading);

    color: var(--color-green);

    font-size: 35px;

    font-weight: 700;

    margin-bottom: 30px;

    line-height: normal;


}


.why-us-v2-divider {

    height: 1px;

    background-color: var(--color-gold);

    width: 100%;

    margin-bottom: 30px;


}


.why-us-v2-description {

    font-size: 16px;

    line-height: 28px;

    color: var(--color-text);

    margin-bottom: 25px;

    text-align: justify;


}


.why-us-v2-graphic {

    position: relative;

    padding-top: 40px;


}


.why-us-v2-experience {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 20px;


}


.why-us-v2-number {

    font-size: 80px;

    font-weight: 700;

    color: var(--color-green-dark);

    line-height: 1;

    font-family: var(--font-heading);


}


.why-us-v2-est {

    font-size: 12px;

    font-weight: 700;

    color: var(--color-green);

    padding-top: 15px;


}


.why-us-v2-svg-container {

    width: 100%;

    max-width: 450px;


}


.why-us-v2-label {

    margin-top: 20px;

    font-size: 13px;

    font-weight: 700;

    color: var(--color-green);

    letter-spacing: 1px;

    text-transform: uppercase;


}


#key-skills {

    background-color: var(--color-cream);

    padding: 100px 0;


}


.skills-header {

    text-align: center;

    margin-bottom: 80px;


}


.skills-subtitle {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

    font-family: var(--font-heading);

    font-size: 14px;

    font-weight: 700;

    color: var(--color-green);

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 20px;


}


.skills-subtitle::before,
.skills-subtitle::after {

    content: '';

    width: 40px;

    height: 2px;

    background-color: var(--color-green);


}


.skills-title {

    font-family: var(--font-heading);

    font-size: 45px;

    font-weight: 600;

    color: var(--color-black);


}


.timeline-item {

    transition: transform 0.35s ease;


}


.timeline-content,
.timeline-content::after,
.timeline-icon,
.timeline-content h4,
.timeline-content p {

    transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;


}


.timeline-item .timeline-content {

    background-color: var(--color-white);


}


.timeline-item .timeline-icon {

    background-color: var(--color-white);

    color: var(--color-green);

    border-color: rgba(68, 94, 69, 0.25);


}


.timeline-item.active .timeline-content {

    background-color: var(--color-green);

    box-shadow: 0 18px 40px rgba(68, 94, 69, 0.14);


}


.timeline-item.active .timeline-content::after {

    background-color: var(--color-green);


}


.timeline-item.active .timeline-content h4,
.timeline-item.active .timeline-content p {

    color: var(--color-white);


}


.timeline-item.active .timeline-icon {

    background-color: var(--color-green);

    color: var(--color-white);

    border-color: var(--color-white);


}


.timeline-item.active {

    transform: translateY(-2px);


}


.timeline-container {

    position: relative;

    max-width: 1000px;

    margin: 0 auto;


}


.timeline-line {

    position: absolute;

    left: 50%;

    top: 0;

    bottom: 0;

    width: 2px;

    background-color: rgba(68, 94, 69, 0.25);

    transform: translateX(-50%);


}


.timeline-item {

    position: relative;

    width: 100%;

    margin-bottom: 60px;

    display: flex;

    justify-content: space-between;

    align-items: center;


}


.timeline-item:nth-child(even) {

    flex-direction: row-reverse;


}


.timeline-content {

    width: 45%;

    background-color: var(--color-white);

    padding: 40px;

    border-radius: 40px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);

    position: relative;


}


.timeline-content::after {

    content: '';

    position: absolute;

    top: 50%;

    width: 20px;

    height: 20px;

    background-color: var(--color-white);

    transform: translateY(-50%) rotate(45deg);


}


.timeline-item:nth-child(odd) .timeline-content::after {

    right: -10px;


}


.timeline-item:nth-child(even) .timeline-content::after {

    left: -10px;


}


.timeline-icon {

    width: 50px;

    height: 50px;

    background-color: var(--color-white);

    border: 2px solid rgba(68, 94, 69, 0.25);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    position: absolute;

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    z-index: 2;

    color: var(--color-green);

    font-size: 20px;


}


.timeline-content h4 {

    font-family: var(--font-heading);

    font-size: 22px;

    font-weight: 600;

    color: var(--color-black);

    margin-bottom: 15px;


}


.timeline-content p {

    font-size: 15px;

    line-height: 26px;

    color: var(--color-text);


}


@media (max-width:991px) {

    .timeline-line {

        left: 30px;


    }


    .timeline-item,
    .timeline-item:nth-child(even) {

        flex-direction: row;

        justify-content: flex-start;

        padding-left: 80px;


    }


    .timeline-content {

        width: 100%;


    }


    .timeline-icon {

        left: 30px;


    }


    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {

        left: -10px;

        right: auto;


    }


    .why-us-v2-grid {

        grid-template-columns: 1fr;

        gap: 50px;


    }


}


.project-highlight-grid {

    display: grid;

    grid-template-columns: 1fr 1.2fr;

    gap: 80px;

    align-items: center;


}


.project-info h2 {

    font-size: 45px;

    line-height: 57px;

    color: var(--color-green);


}


.project-meta {

    list-style: none;

    margin: 30px 0;


}


.project-meta li {

    margin-bottom: 10px;

    font-size: 15px;

    line-height: 28px;


}


.project-meta li strong {

    color: var(--color-green);

    margin-right: 10px;


}


.project-filters {

    display: flex;

    justify-content: center;

    gap: 15px;

    margin-bottom: 50px;

    flex-wrap: wrap;


}


.filter-btn {

    padding: 12px 25px;

    background-color: var(--color-white);

    border: 1px solid #ddd;

    font-family: var(--font-heading);

    font-weight: 600;

    font-size: 13px;

    color: var(--color-green);

    cursor: pointer;

    transition: var(--transition);

    border-radius: 25px;


}


.filter-btn:hover,
.filter-btn.active {

    background-color: var(--color-green);

    color: var(--color-white);

    border-color: var(--color-green);


}


.projects-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;


}


.project-card {

    position: relative;

    overflow: hidden;

    height: 400px;

    border-radius: 15px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);


}


.project-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: all 0.5s ease;


}


.project-card-content {

    position: absolute;

    bottom: 0;

    left: 0;

    width: 100%;

    padding: 3px;

    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));

    color: var(--color-white);

    transform: translateY(20px);

    opacity: 0;

    transition: var(--transition);

    z-index: 2;

    background-color: #445E45E8;


}


.project-card:hover .project-card-content {

    transform: translateY(0);

    opacity: 1;


}


.project-card:hover img {

    transform: scale(1.1);


}


.project-card-content span {

    color: var(--color-tan);

    font-size: 12px;

    font-weight: 600;

    text-transform: uppercase;


}


#services-details {

    background: #f2ede4;

    padding: 70px 0 90px;


}


.services-hero-grid {

    display: grid;

    grid-template-columns: 1.18fr 0.82fr;

    gap: 40px;

    align-items: center;

    margin-bottom: 70px;


}


.services-intro {

    text-align: left;

    max-width: 100%;


}


.services-intro .subtitle {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-family: var(--font-heading);

    font-size: 13px;

    font-weight: 600;

    text-transform: uppercase;

    color: var(--color-green);

    margin-bottom: 28px;


}


.services-intro .subtitle::before {

    content: "";

    width: 90px;

    height: 3px;

    background: var(--color-green);

    display: inline-block;


}


.services-intro h2 {

    font-size: 60px;

    font-weight: 500;

    line-height: 0.95;

    color: var(--color-black);

    margin-bottom: 24px;

    max-width: 760px;

    letter-spacing: -1px;


}


.services-intro p {

    max-width: 760px;

    font-size: 16px;

    line-height: 1.8;

    color: #7a8190;


}


.bm-graphic-container {

    display: flex;

    justify-content: flex-end;

    align-items: center;


}


.bm-graphic-container img {

    width: 100%;

    max-width: 430px;

    height: auto;

    display: block;


}


.services-alt-list {

    display: flex;

    flex-direction: column;

    gap: 54px;


}


.service-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 36px;

    align-items: center;


}


.service-row-image-left .service-row-image {

    order: 1;


}


.service-row-image-left .service-row-content {

    order: 2;


}


.service-row-image-right .service-row-content {

    order: 1;


}


.service-row-image-right .service-row-image {

    order: 2;


}


.service-row-image {

    position: relative;


}


.service-image-frame {

    width: 100%;

    height: 420px;

    overflow: hidden;

    border: 5px solid #BC945C;

    background: #ddd;


}


.service-image-right-round {

    border-radius: 0 180px 180px 0;


}


.service-image-left-round {

    border-radius: 180px 0 0 180px;


}


.service-image-frame img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;


}


.service-row-content {

    padding: 8px 0;


}


.service-row-content h3 {

    margin: 0 0 22px;

    font-family: var(--font-heading);

    font-size: 34px;

    line-height: 1.15;

    font-weight: 600;

    color: #000;


}


.service-row-intro {

    margin: 0 0 12px;

    font-family: var(--font-body);

    font-size: 16px;

    line-height: 1.8;

    color: #7a8190;


}


.service-row-content ul {

    margin: 0;

    padding-left: 22px;


}


.service-row-content li {

    margin-bottom: 10px;

    font-family: var(--font-body);

    font-size: 15px;

    line-height: 1.85;

    color: #7a8190;


}


.service-row-content li::marker {

    color: #7a8190;


}


.service-row-content strong {

    color: #000;

    font-weight: 700;


}


@media (min-width:1400px) {

    .services-hero-grid {

        grid-template-columns: 1.2fr 0.8fr;

        gap: 50px;


    }


    .services-intro h2 {

        font-size: 72px;

        max-width: 860px;


    }


    .services-intro p {

        font-size: 17px;

        max-width: 820px;


    }


    .bm-graphic-container img {

        max-width: 520px;


    }


    .services-alt-list {

        gap: 60px;


    }


    .service-row {

        gap: 46px;


    }


    .service-image-frame {

        height: 440px;


    }


    .service-row-content h3 {

        font-size: 38px;


    }


    .service-row-intro {

        font-size: 17px;


    }


    .service-row-content li {

        font-size: 16px;


    }


}


@media (max-width:1199px) {

    .services-hero-grid {

        grid-template-columns: 1fr 1fr;

        gap: 30px;


    }


    .services-intro h2 {

        font-size: 48px;

        max-width: 100%;


    }


    .services-intro p {

        font-size: 15px;

        max-width: 100%;


    }


    .bm-graphic-container img {

        max-width: 360px;


    }


    .service-row {

        gap: 26px;


    }


    .service-image-frame {

        height: 360px;


    }


    .service-row-content h3 {

        font-size: 30px;


    }


    .service-row-intro {

        font-size: 15px;


    }


    .service-row-content li {

        font-size: 14px;


    }


}


@media (max-width:991px) {

    .services-hero-grid {

        grid-template-columns: 1fr;

        gap: 24px;

        margin-bottom: 50px;


    }


    .bm-graphic-container {

        justify-content: flex-start;


    }


    .bm-graphic-container img {

        max-width: 340px;


    }


    .services-intro h2 {

        font-size: 42px;


    }


    .services-alt-list {

        gap: 34px;


    }


    .service-row {

        grid-template-columns: 1fr;

        gap: 18px;


    }


    .service-row-image,
    .service-row-content {

        order: initial !important;


    }


    .service-image-frame {

        height: 280px;


    }


    .service-image-right-round,
    .service-image-left-round {

        border-radius: 36px;


    }


    .service-row-content h3 {

        font-size: 26px;

        margin-bottom: 16px;


    }


}


@media (max-width:767px) {

    #services-details {

        padding: 50px 0 60px;


    }


    .services-intro .subtitle::before {

        width: 60px;


    }


    .services-intro h2 {

        font-size: 34px;

        line-height: 1.02;


    }


    .services-intro p {

        font-size: 14px;

        line-height: 1.75;


    }


    .bm-graphic-container img {

        max-width: 280px;


    }


    .service-image-frame {

        height: 220px;

        border-width: 4px;


    }


    .service-row-content h3 {

        font-size: 22px;


    }


    .service-row-intro {

        font-size: 14px;

        line-height: 1.75;


    }


    .service-row-content ul {

        padding-left: 18px;


    }


    .service-row-content li {

        font-size: 13px;

        line-height: 1.75;


    }


}


#contact-info {

    background: #f2ede4;

    padding: 38px 0 28px;


}


.contact-grid {

    display: grid;

    grid-template-columns: 1fr 1fr 1.45fr 1.75fr;

    gap: 24px;

    align-items: stretch;


}


.contact-card {

    position: relative;

    background-color: #4b6a49;

    padding: 30px 22px 22px;

    text-align: center;

    border-radius: 12px;

    color: #fff;

    min-height: 114px;


}


.contact-card-wide {

    padding-left: 28px;

    padding-right: 28px;


}


.contact-card-icon {

    position: absolute;

    top: -18px;

    left: 50%;

    transform: translateX(-50%);

    width: 48px;

    height: 48px;

    border-radius: 50%;

    background: #f2ede4;

    color: #000;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 18px;


}


.contact-card h3 {

    font-family: var(--font-heading);

    font-size: 18px;

    font-weight: 600;

    color: #fff;

    margin: 0 0 14px;


}


.contact-card p,
.contact-card a {

    color: #fff;

    font-size: 15px;

    line-height: 1.6;


}


.contact-socials {

    display: flex;

    justify-content: center;

    gap: 12px;

    margin-top: 6px;


}


.contact-socials a {

    width: 30px;

    height: 30px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.14);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 13px;


}


#contact-form-section {

    background: #f2ede4;

    padding: 14px 0 28px;


}


.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 30px;
    align-items: start;
    background: #ffffff;
    border-radius: 14px;
    padding: 54px 48px 30px;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
}


.form-content {

    min-width: 0;


}


.form-header {

    text-align: left;

    margin-bottom: 30px;


}


.form-header h2 {

    font-size: 64px;

    font-weight: 500;

    line-height: 1;

    color: #000;

    margin-bottom: 28px;

    font-family: var(--font-heading);


}


.form-header p {

    font-size: 16px;

    line-height: 1.8;

    color: #7a8190;

    margin-bottom: 0;

    max-width: 720px;


}


.contact-illustration {

    display: flex;

    justify-content: flex-end;

    align-items: flex-start;

    padding-top: 6px;


}


.contact-illustration img {

    width: 100%;

    max-width: 250px;

    height: auto;

    display: block;


}


.contact-form .form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin-bottom: 18px;


}


.form-group {

    margin-bottom: 18px;


}


.form-group label {

    display: block;

    font-family: var(--font-heading);

    font-weight: 600;

    margin-bottom: 10px;

    color: #6c7481;

    font-size: 13px;

    text-transform: none;

    letter-spacing: 0;


}


.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    padding: 14px 16px;

    border: 1px solid #d4d4d4;

    background-color: #f5f5f5;

    font-family: var(--font-body);

    font-size: 15px;

    transition: var(--transition);

    border-radius: 3px;

    color: #333;


}


.form-group textarea {

    min-height: 96px;

    resize: vertical;


}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

    border-color: var(--color-gold);

    outline: none;

    background-color: #fff;


}


.contact-submit-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 98px;

    height: 40px;

    padding: 0 24px;

    border: none;

    border-radius: 999px;

    background: #4b6a49;

    color: #fff;

    font-family: var(--font-heading);

    font-size: 13px;

    font-weight: 600;

    cursor: pointer;

    transition: var(--transition);

    text-transform: uppercase;


}


.contact-submit-btn:hover {

    background: #3f593d;


}


.hp-field {

    position: absolute;

    left: -9999px;

    opacity: 0;

    height: 0;

    width: 0;


}


.alert {

    padding: 16px 18px;

    margin-bottom: 20px;

    border-radius: 6px;

    font-size: 14px;


}


.alert.success {

    background-color: #d4edda;

    color: #155724;

    border: 1px solid #c3e6cb;


}


.alert.error {

    background-color: #f8d7da;

    color: #721c24;

    border: 1px solid #f5c6cb;


}


#map {

    background: #f2ede4;

    padding: 0 0 36px;


}


#map iframe {

    display: block;

    width: 100%;

    height: 520px;

    border: 0;


}


@media (max-width:1199px) {

    .contact-grid {

        grid-template-columns: 1fr 1fr;

        gap: 22px;


    }


    .contact-form-wrapper {

        grid-template-columns: 1fr;

        gap: 20px;


    }


    .contact-illustration {

        justify-content: center;


    }


    .contact-illustration img {

        max-width: 220px;


    }


    .form-header h2 {

        font-size: 50px;


    }


}


@media (max-width:767px) {

    #contact-info {

        padding: 30px 0 22px;


    }


    .contact-grid {

        grid-template-columns: 1fr;


    }


    .contact-form-wrapper {

        padding: 34px 20px 24px;

        border-radius: 10px;


    }


    .form-header h2 {

        font-size: 38px;

        margin-bottom: 18px;


    }


    .form-header p {

        font-size: 14px;

        line-height: 1.75;


    }


    .contact-form .form-row {

        grid-template-columns: 1fr;

        gap: 0;


    }


    .contact-illustration img {

        max-width: 180px;


    }


    #map iframe {

        height: 380px;


    }


}


/* === OLD TEAM STYLES MOVED TO team-page.css ===
.team-hero-slider-OLD {

    position: relative;

    min-height: 800px;

    height: 100vh;

    overflow: hidden;

    background-color: #f5f5f3;


}


.team-slides-container {

    position: relative;

    width: 100%;

    height: 100%;

    margin-top: -70px;

    padding-bottom: 240px;


}


.team-slide {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    opacity: 0;

    visibility: hidden;

    transition: opacity 1.5s ease-in-out, visibility 1.5s;

    display: flex;

    align-items: center;

    justify-content: center;

    z-index: 1;


}


.team-slide.active {

    opacity: 1;

    visibility: visible;

    z-index: 2;


}


.team-slide::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 1;


}


.team-hero-logo-overlay {

    position: relative;

    z-index: 2;

    opacity: 0.8;

    display: flex;

    align-items: center;

    justify-content: center;


}


.team-hero-logo-overlay img {

    width: 200px;

    height: auto;

    display: block;


}


.team-hero-content {

    display: none;


}


.team-intro-block {

    padding: 18px 0 10px;


}


.snake-loop-intro {

    max-width: 980px;

    background: #f1ede5;

    border: 3px solid #BC945C;

    border-right: none;

    border-radius: 180px 0 0 180px;

    padding: 34px 54px 34px 54px;


}


.team-title-huge {

    margin: 0 0 18px;

    font-family: var(--font-heading);

    font-size: 72px;

    line-height: 1;

    font-weight: 700;

    color: #466a4b;

    text-transform: uppercase;

    letter-spacing: -1px;


}


.team-intro-text {

    max-width: 920px;


}


.team-intro-text p {

    margin: 0;

    font-family: var(--font-body);

    font-size: 16px;

    line-height: 1.9;

    color: #111;


}


.team-culture-block {

    padding: 10px 0 10px;


}


.culture-container {

    display: grid;

    grid-template-columns: 0.95fr 1.05fr 0.95fr;

    gap: 34px;

    align-items: center;

    position: relative;


}


.culture-images {

    position: relative;

    z-index: 1;

    display: flex;

    justify-content: center;


}


.culture-image-arch {

    width: 100%;

    max-width: 360px;

    height: 540px;

    border: 3px solid #BC945C;

    border-bottom: none;

    border-radius: 180px 180px 0 0;

    overflow: hidden;

    position: relative;

    background: #355d4b;


}


.culture-image-arch img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    opacity: 0.78;


}


.culture-text-overlay {

    position: absolute;

    top: 50%;

    font-family: var(--font-heading);

    font-size: 44px;

    font-weight: 700;

    color: rgba(255, 255, 255, 0.95);

    white-space: nowrap;

    letter-spacing: 1px;


}


.culture-images-left .culture-text-overlay {

    left: 18px;

    transform: translateY(-50%) rotate(-90deg);

    transform-origin: left center;


}


.culture-images-right .culture-text-overlay {

    right: 18px;

    left: auto;

    transform: translateY(-50%) rotate(90deg);

    transform-origin: right center;


}


.culture-text-box {

    display: flex;

    justify-content: center;

    position: relative;

    z-index: 2;

    margin-left: 0;


}


.culture-text-card {

    width: 100%;

    max-width: 320px;

    background: rgba(53, 93, 75, 0.84);

    color: #fff;

    padding: 38px 34px;

    border: 3px solid #BC945C;

    border-radius: 0 0 120px 0;


}


.culture-text-card p {

    margin: 0;

    font-family: var(--font-body);

    font-size: 16px;

    line-height: 1.9;

    color: #fff;


}


.team-director-block {

    padding: 40px 0 0;


}


.director-grid {

    display: grid;

    grid-template-columns: 1.35fr 0.65fr;

    gap: 34px;

    align-items: center;


}


.director-info-box {

    position: relative;


}


.director-info {

    background: #f1ede5;

    border-top: 3px solid #BC945C;

    border-bottom: 3px solid #BC945C;

    padding: 40px 18px 34px 18px;

    max-width: 860px;


}


.director-info h2 {

    font-family: var(--font-heading);

    font-size: 22px;

    line-height: 1.2;

    color: #355d4b;

    margin: 0 0 10px;


}


.director-role {

    display: inline-block;

    font-family: var(--font-heading);

    font-size: 13px;

    font-weight: 700;

    color: #111;

    text-transform: uppercase;

    margin-bottom: 18px;


}


.director-bio p {

    margin: 0;

    font-family: var(--font-body);

    font-size: 16px;

    line-height: 1.9;

    color: #111;


}


.director-image-side {

    display: flex;

    justify-content: center;

    align-items: center;


}


.director-circle {

    width: 275px;

    height: 275px;

    border-radius: 50%;

    overflow: hidden;

    background: #466a4b;

    border: 3px solid #BC945C;

    display: flex;

    align-items: center;

    justify-content: center;


}


.director-circle img {

    width: 100%;

    height: 100%;

    object-fit: cover;


}


@media (min-width:1400px) {

    .team-title-huge {

        font-size: 80px;


    }


    .culture-image-arch {

        max-width: 500px;

        height: 680px;


    }


    .culture-text-card {

        max-width: 320px;


    }


    .director-circle {

        width: 300px;

        height: 300px;


    }


}


@media (max-width:1199px) {

    .snake-loop-intro {

        max-width: 100%;

        border-radius: 120px 0 0 120px;

        padding: 28px 36px;


    }


    .team-title-huge {

        font-size: 58px;


    }


    .culture-container {

        grid-template-columns: 1fr 1fr;

        gap: 24px;


    }


    .culture-image-arch {

        max-width: 400px;

        height: 540px;


    }


    .culture-text-box {

        margin-left: 0;

        justify-content: center;


    }


    .culture-text-card {

        border-left: 3px solid #BC945C;

        border-radius: 0 0 90px 0;


    }


    .director-grid {

        grid-template-columns: 1fr 320px;

        gap: 24px;


    }


}


@media (max-width:991px) {

    #team-page {

        padding: 30px 0 60px;


    }


    .team-page-outline img {

        opacity: 0.35;


    }


    .snake-loop-intro {

        border-right: 3px solid #BC945C;

        border-radius: 70px;

        padding: 24px 24px;


    }


    .team-title-huge {

        font-size: 46px;


    }


    .team-intro-text p {

        font-size: 15px;

        line-height: 1.8;


    }


    .culture-container,
    .director-grid {

        grid-template-columns: 1fr;


    }


    .culture-images,
    .culture-text-box,
    .director-image-side {

        justify-content: center;


    }


    .culture-image-arch {

        max-width: 420px;

        height: 520px;


    }


    .culture-text-overlay {

        font-size: 38px;

        left: 12px;


    }


    .culture-text-card {

        max-width: 100%;

        border-left: 3px solid #BC945C;

        border-radius: 0 0 70px 0;

        margin-top: 20px;


    }


    .director-info {

        max-width: 100%;

        padding: 30px 20px;


    }


    .director-circle {

        width: 240px;

        height: 240px;


    }


}


@media (max-width:767px) {

    #team-page {

        padding: 24px 0 44px;


    }


    .team-intro-block {

        padding: 24px 0 20px;


    }


    .team-title-huge {

        font-size: 34px;

        margin-bottom: 14px;


    }


    .team-intro-text p,
    .culture-text-card p,
    .director-bio p {

        font-size: 14px;

        line-height: 1.8;


    }


    .snake-loop-intro {

        padding: 20px 18px;

        border-radius: 36px;


    }


    .team-culture-block {

        padding: 20px 0 36px;


    }


    .culture-image-arch {

        max-width: 100%;

        height: 420px;

        border-radius: 160px 160px 0 0;


    }


    .culture-text-overlay {

        font-size: 28px;

        left: 10px;


    }


    .culture-text-card {

        padding: 26px 22px;


    }


    .director-info h2 {

        font-size: 20px;


    }


    .director-circle {

        width: 200px;

        height: 200px;


    }


}

=== END OLD TEAM STYLES === */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    border-radius: 15px;
}

.gallery-item:hover img {
    transform: scale(1.05);
}


@media (max-width:991px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

}


.cta-section {

    background: var(--color-green);

    color: var(--color-white);

    text-align: center;

    padding: 60px 0;


}


.cta-section h2 {

    color: var(--color-white);

    font-size: 45px;

    line-height: 57px;

    margin-bottom: 20px;


}


.cta-section p {

    font-size: 15px;

    line-height: 28px;

    margin-bottom: 30px;


}


.section-white {

    background-color: var(--color-white);


}


.text-justify {

    text-align: justify;


}


@media (max-width:1024px) {

    .container {

        padding: 0 10px;


    }


    section {

        padding: 30px 0;


    }


    .section-header h2 {

        font-size: 35px;

        line-height: 1.5em;


    }


    .hero-content h1 {

        font-size: 31px;

        line-height: 1.3em;


    }


    .why-us-grid {

        flex-direction: column;


    }


    .why-us-content,
    .why-us-image {

        flex: 0 0 100%;

        max-width: 100%;


    }


    .why-us-image {

        padding-top: 30px;


    }


    .services-highlight-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 50px 0;


    }


    .gallery-preview-grid {

        grid-template-columns: repeat(2, 1fr);


    }


    .footer-grid {

        grid-template-columns: 1fr 1fr;

        gap: 30px;


    }


    .footer-cta h2 {

        font-size: 35px;

        line-height: 1.5em;


    }


    .project-highlight-grid {

        grid-template-columns: 1fr;


    }


    .expertise-grid {

        grid-template-columns: 1fr 1fr;


    }


    .services-list-grid {

        grid-template-columns: 1fr 1fr;


    }


    .page-header h1 {

        font-size: 35px;


    }


    .why-us-content h3 {

        font-size: 25px;

        line-height: 1.5em;


    }


    .stat-item h4 {

        font-size: 35px;


    }


    .service-card .service-text h3 {

        font-size: 16px;

        line-height: 1.5em;


    }


    .expertise-item h4 {

        font-size: 20px;

        line-height: 1.5em;


    }


    .subtitle {

        font-size: 11px;


    }


    .nav-links li a {

        font-size: 11px;


    }


    .cta-section h2 {

        font-size: 35px;

        line-height: 1.5em;


    }


}


@media (max-width:767px) {

    .menu-toggle {

        display: flex;


    }


    .nav-links {

        position: absolute;

        top: var(--header-height);

        left: -100%;

        width: 100%;

        height: calc(100vh - var(--header-height));

        background-color: var(--color-green);

        flex-direction: column;

        align-items: center;

        justify-content: flex-start;

        padding-top: 40px;

        transition: var(--transition);

        border-top: 2px solid var(--color-tan);

        border-radius: 0 0 20px 20px;

        z-index: 999;


    }


    .nav-links.active {

        left: 0;


    }


    .nav-links li a {

        font-size: 10px;

        padding: 12px 20px;


    }


    .footer-grid {

        grid-template-columns: 1fr;


    }


    section {

        padding: 30px 0;


    }


    .hero-content h1 {

        font-size: 20px;

        line-height: 1.3em;


    }


    .hero-content {

        margin-top: 320px;


    }


    .hero {

        min-height: 500px;


    }


    .section-header h2 {

        font-size: 22px;

        line-height: 1.4em;


    }


    .service-card .service-text h3 {

        font-size: 16px;

        line-height: 1.5em;


    }


    .expertise-item h4 {

        font-size: 18px;

        line-height: 1.5em;


    }


    .why-us-content h3 {

        font-size: 20px;

        line-height: 1.5em;


    }


    .stat-item h4 {

        font-size: 25px;


    }


    .services-highlight-grid {

        grid-template-columns: 1fr;


    }


    .service-card {

        flex-direction: column;

        text-align: center;

        padding: 20px 10px;


    }


    .service-card .service-text {

        border-left: none;

        border-top: 1px solid rgba(196, 185, 165, 0.64);

        padding-left: 0;

        padding-top: 15px;


    }


    .gallery-preview-grid {

        grid-template-columns: 1fr 1fr;


    }


    .gallery-preview-item {

        height: 200px;


    }


    .project-highlight-grid {

        grid-template-columns: 1fr;

        gap: 40px;


    }


    .projects-grid {

        grid-template-columns: 1fr;


    }


    .contact-grid {

        grid-template-columns: 1fr;


    }


    .contact-form .form-row {

        grid-template-columns: 1fr;


    }


    .services-list-grid {

        grid-template-columns: 1fr;


    }


    .expertise-grid {

        grid-template-columns: 1fr;


    }


    .skills-title {

        font-size: 32px;


    }


    .timeline-content {

        padding: 25px;

        border-radius: 20px;


    }


    .timeline-content h4 {

        font-size: 18px;


    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

}


.mission-vision-wrapper {

    grid-template-columns: 1fr;


}


.page-header {

    height: 600px;


}


.page-header h1 {

    font-size: 20px;


}


.footer-cta h2 {

    font-size: 22px;

    line-height: 1.4em;


}


.why-us-content h3 {

    font-size: 20px;

    line-height: 1.5em;


}


.cta-section h2 {

    font-size: 22px;


}


.subtitle {

    font-size: 10px;


}


.footer-logo img {

    width: 48%;

    border-radius: 0;


}


@media (max-width:576px) {

    .hero-btns {

        flex-direction: column;


    }


    .btn {

        text-align: center;

        width: 100%;


    }


    .gallery-preview-grid {

        grid-template-columns: 1fr;


    }


}


@keyframes slideUp {

    from {

        opacity: 0;

        transform: translateY(30px);


    }


    to {

        opacity: 1;

        transform: translateY(0);


    }


}


@keyframes slideDown {

    from {

        opacity: 0;

        transform: translateY(-100%);


    }


    to {

        opacity: 1;

        transform: translateY(0);


    }


}


#map {

    padding: 0;

    background-color: #f9f9f9;


}


#map iframe {

    display: block;

    width: 100%;

    border: 0;


}


#home-gallery {

    padding: 100px 0;

    background-color: #F2EDE4;

    overflow: hidden;


}


.gallery-v2-title {

    text-align: center;

    font-family: var(--font-heading);

    color: var(--color-green);

    font-size: 54px;

    margin-bottom: 60px;


}


.gallery-v2-slider-wrap {

    position: relative;

    max-width: 1200px;

    margin: 0 auto;


}


.gallery-v2-grid.slider-track {

    display: flex;

    overflow-x: auto;

    scroll-snap-type: x mandatory;

    gap: 30px;

    padding: 20px 0 40px;

    -ms-overflow-style: none;

    scrollbar-width: none;


}


.gallery-v2-grid.slider-track::-webkit-scrollbar {

    display: none;


}


.gallery-v2-card {

    flex: 0 0 calc(33.333% - 20px);

    scroll-snap-align: start;

    background-color: var(--color-white);

    padding: 15px;

    border-radius: 25px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);

    display: flex;

    flex-direction: column;

    align-items: center;

    transition: var(--transition);


}


.gallery-v2-img {

    width: 100%;

    height: 320px;

    border-radius: 20px;

    overflow: hidden;

    margin-bottom: 20px;


}


.gallery-v2-img img {

    width: 100%;

    height: 100%;

    object-fit: cover;


}


.gallery-v2-btn {

    display: inline-block;

    background-color: #445E45;

    color: var(--color-white);

    padding: 10px 35px;

    border-radius: 30px;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 0.5px;

    transition: all 0.3s ease;

    text-decoration: none;


}


.gallery-v2-btn:hover {

    background-color: var(--color-gold);

    color: var(--color-white);


}


.slider-controls {

    position: absolute;

    top: 50%;

    left: -30px;

    right: -30px;

    transform: translateY(-50%);

    display: flex;

    justify-content: space-between;

    pointer-events: none;

    z-index: 10;


}


.slider-btn {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    background-color: #445E45;

    color: var(--color-white);

    border: none;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 16px;

    transition: all 0.3s ease;

    pointer-events: auto;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);


}


.slider-btn:hover {

    background-color: var(--color-gold);

    transform: scale(1.1);


}


@media (max-width:1024px) {

    .gallery-v2-card {

        flex: 0 0 calc(50% - 15px);


    }


    .slider-controls {

        left: 0;

        right: 0;


    }


}


@media (max-width:768px) {

    #home-gallery {

        padding: 60px 0;


    }


    .gallery-v2-title {

        font-size: 36px;


    }


    .gallery-v2-card {

        flex: 0 0 280px;


    }


}