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

body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #000000D1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Playfair Display", serif;
    color: #000000;
}

.pl-0 {
    padding-left: 0;
}

.pr-0 {
    padding-right: 0;
}

.pt-0 {
    padding-top: 0 !important;
}
.pl-5{
    padding-left: 20px;
}
.pt-0{
    padding-top: 0 !important;
}
@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        /* max-width: 1156px; */
        padding-right: 15px;
        padding-left: 15px;
    }
}


header.header {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    top: 0;
    z-index: 99;
    background: transparent;
    will-change: transform, background;
    backface-visibility: hidden;
    transition:
        background .35s cubic-bezier(.4,0,.2,1),
        box-shadow .35s cubic-bezier(.4,0,.2,1),
        transform .35s cubic-bezier(.4,0,.2,1);
}

header.header.is-sticky {
    background: #3D3D3D;
}

header.header.is-sticky nav.navbar {
    padding: 10px 40px;
}

header.header.is-hidden {
    transform: translateY(-100%);
}
.navbar-brand {
    padding: 0;
    margin: 0;
    display: inline-block;
}

.navbar-logo {
    min-height: 90px;
    height: 90px;
}
.navbar-wraper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav.navbar {
    padding: 16px 40px;
    transition: padding .35s cubic-bezier(.4, 0, .2, 1);
}

/* ===== Hamburger (animates into an X) ===== */
.humberg{
    width:30px;
    height:22px;
    position:relative;
    cursor:pointer;
    z-index:2100;
}

.humberg span{
    position:absolute;
    left:0;
    width:100%;
    height:2px;
    background:#f2efe9; /* adjust to match your logo/header color */
    border-radius:2px;
    transition:transform .4s cubic-bezier(.4,0,.2,1), opacity .3s ease, top .4s cubic-bezier(.4,0,.2,1);
}

.humberg span:nth-child(1){ top:0; }
.humberg span:nth-child(2){ top:10px; width: 70%;}
.humberg span:nth-child(3){ top:20px; }

.humberg.is-active span:nth-child(1){
    top:10px;
    transform:rotate(45deg);
}
.humberg.is-active span:nth-child(2){
    opacity:0;
}
.humberg.is-active span:nth-child(3){
    top:10px;
    transform:rotate(-45deg);
}

/* ===== Full-screen menu overlay ===== */
.site-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: #3D3D3D;
    clip-path: circle(0px at var(--menu-origin-x, 65px) var(--menu-origin-y, 40px));
    transition: clip-path .65s cubic-bezier(.65,0,.35,1);
    pointer-events: none;
    display: flex;
    overflow: hidden;
}
.site-menu-overlay.is-open{
    clip-path:circle(170% at var(--menu-origin-x, 65px) var(--menu-origin-y, 40px));
    pointer-events:auto;
}

.site-menu-inner{
    width:100%;
    margin:0 auto;
    padding:130px 44px 60px;
    display:flex;
    flex-wrap:wrap;
    gap:60px;
    align-items:flex-start;
}

/* Primary links */
.site-menu-primary{
    list-style:none;
    margin:0;
    padding:0;
    flex:1 1 320px;
}

.site-menu-primary li{
    margin-bottom:8px;
    overflow:hidden;
}

.site-menu-primary a{
    display:inline-block;
    font-family:'Playfair Display', serif;
    font-size:38px;
    color:#f2efe9;
    text-decoration:none;
    line-height:1.5;

    opacity:0;
    transform:translateY(30px);
    transition:opacity .5s ease, transform .5s ease, color .25s ease;
}

.site-menu-primary a:hover{ color:#e7c98f; }

.site-menu-overlay.is-open .site-menu-primary li:nth-child(1) a{ transition-delay:.15s; }
.site-menu-overlay.is-open .site-menu-primary li:nth-child(2) a{ transition-delay:.22s; }
.site-menu-overlay.is-open .site-menu-primary li:nth-child(3) a{ transition-delay:.29s; }
.site-menu-overlay.is-open .site-menu-primary li:nth-child(4) a{ transition-delay:.36s; }
.site-menu-overlay.is-open .site-menu-primary li:nth-child(5) a{ transition-delay:.43s; }

.site-menu-overlay.is-open .site-menu-primary a{
    opacity:1;
    transform:translateY(0);
}

/* Secondary column: Solutions list */
.site-menu-secondary{
    flex:1 1 260px;
}

.site-menu-secondary-title{
    font-size:11px;
    font-weight:600;
    letter-spacing:.2em;
    color:#8f8b83;
    margin-bottom:22px;

    opacity:0;
    transform:translateY(16px);
    transition:opacity .5s ease .3s, transform .5s ease .3s;
}

.site-menu-overlay.is-open .site-menu-secondary-title{
    opacity:1;
    transform:translateY(0);
}

.site-menu-secondary ul{
    list-style:none;
    margin:0;
    padding:0;
}

.site-menu-secondary li{
    margin-bottom:14px;
}

.site-menu-secondary a{
    color:#c9c6c0;
    text-decoration:none;
    font-size:14px;

    opacity:0;
    transform:translateY(16px);
    transition:opacity .5s ease, transform .5s ease, color .2s ease;
}

.site-menu-secondary a:hover{ color:#e7c98f; }

.site-menu-overlay.is-open .site-menu-secondary li:nth-child(1) a{ transition-delay:.35s; }
.site-menu-overlay.is-open .site-menu-secondary li:nth-child(2) a{ transition-delay:.4s; }
.site-menu-overlay.is-open .site-menu-secondary li:nth-child(3) a{ transition-delay:.45s; }
.site-menu-overlay.is-open .site-menu-secondary li:nth-child(4) a{ transition-delay:.5s; }
.site-menu-overlay.is-open .site-menu-secondary li:nth-child(5) a{ transition-delay:.55s; }
.site-menu-overlay.is-open .site-menu-secondary li:nth-child(6) a{ transition-delay:.6s; }

.site-menu-overlay.is-open .site-menu-secondary a{
    opacity:1;
    transform:translateY(0);
}

/* Bottom contact strip */
.site-menu-footer{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:26px 44px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid rgba(255,255,255,.1);
    color:#8f8b83;
    font-size:12.5px;

    opacity:0;
    transition:opacity .5s ease .55s;
}

.site-menu-overlay.is-open .site-menu-footer{ opacity:1; }

.site-menu-footer a{ color:#c9c6c0; text-decoration:none; }
.site-menu-footer a:hover{ color:#e7c98f; }

.site-menu-social{ display:flex; gap:16px; }

/* Dedicated close (X) button */
.site-menu-close{
    position:absolute;
    top:30px;
    right:44px;
    width:34px;
    height:34px;
    cursor:pointer;
    z-index:10;

    opacity:0;
    transform:rotate(-90deg);
    transition:opacity .4s ease .1s, transform .5s cubic-bezier(.4,0,.2,1) .1s;
}

.site-menu-overlay.is-open .site-menu-close{
    opacity:1;
    transform:rotate(0deg);
}

.site-menu-close span{
    position:absolute;
    top:50%;
    left:0;
    width:100%;
    height:2px;
    background:#f2efe9;
    border-radius:2px;
    transition:background .2s ease;
}

.site-menu-close span:nth-child(1){ transform:rotate(45deg); }
.site-menu-close span:nth-child(2){ transform:rotate(-45deg); }

.site-menu-close:hover span{ background:#e7c98f; }

body.site-menu-open{ overflow:hidden; }



.lang-dropdown {
    color: #FFFFFF;
    font-size: 12px;
    letter-spacing: 0.8px;
    font-weight: 600;
    display: flex;
    gap: 2px;
}

.lang-dropdown img {
    margin-right: 5px;
}

.px-40 {
    padding: 0 40px;
}

section.hero-section video {
    width: 100%;
    height: 100vh;
    display: block;
    object-fit: cover;
}

section.hero-section {
    position: relative;
}

.hero-overlay {
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.69) 0%, rgba(0, 0, 0, 0.63) 18.95%, rgba(0, 0, 0, 0.53) 35.48%, rgba(0, 0, 0, 0) 51.48%, rgba(0, 0, 0, 0.16) 74.94%, rgba(0, 0, 0, 0.23) 82.58%, rgba(0, 0, 0, 0.33) 100%); */
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    top: 0;
}

.hero-content {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    flex-direction: column;
    padding-bottom: 90px;
    z-index: 9;
    max-width: 770px;
    margin: 0 auto;
    right: 0;
    left: 0;
    text-align: center;
}

.hero-overlay img {
    width: 100%;
    height: 100%;
}

.hero-content h1 {
    color: #fff;
    font-size: 56px;
    line-height: 64px;
    text-transform: capitalize;
    padding-bottom: 25px;
    margin: 0;
}

.hero-content p {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 28px;
    margin: 0;
}

.button-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-white {
    background: #FFFFFF;
    display: inline-flex;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0px 28px;
    height: 46px;
    align-items: center;
}

.btn-trasnprent {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
}

.btn-trasnprent span {
    margin-right: 10px;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
}

section.abuot-us-section {
    padding: 80px 0 100px 0;
}
.abuot-us-image img {
    width: 100%;
    object-fit: cover;
}

.abuot-us-image {
    padding-left: 15px;
}

.abuot-us-content {
    padding-right: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.title-tag {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 400;
    margin-bottom: 20px;
}

.section-description p {
    color: #000000D1;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}

.btn-border {
    background: #FFFFFF;
    display: inline-flex;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0px 28px;
    height: 46px;
    align-items: center;
    border: 1px solid #000;
}

.mt-20 {
    margin-top: 20px;
}

.philosophy-image {
    background: #D4D0C8;
    padding: 80px 100px;
}

.philosophy-image img {
    width: 100%;
    object-fit: cover;
    max-height: 750px;
}

.philosophy-content-outer {
    background: #3D3D3D;
    height: 100%;
    width: 100%;
    padding: 80px 100px;
}

.philosophy-content-group {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

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

.philosophy-content h2 {
    color: #fff;
    font-weight: 400;
    line-height: 46px;
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.philosophy-content p {
    color: #FFFFFFD1;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}

.philosophy-tag {
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0;
    color: #FFFFFF;
}


.solutions-slider-section {
    padding: 90px 0;
    overflow: hidden;
}


.solutions-slider-track {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-top: 40px;
}

.solutions-slider-item {
    flex: 0 0 auto;
    width: 340px;
}

.solutions-slider-item--large {
    max-width: 760px;
    width: 100%;
}

.solutions-slider-content {
    transition: opacity .4s ease;
    opacity: 1;
}

.solutions-slider-content.is-fading {
    opacity: .35;
}

.solutions-slider-img-wrap {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 20px;
}

.solutions-slider-item--large .solutions-slider-img-wrap {
    height: 422px;
}

.solutions-slider-item:not(.solutions-slider-item--large) .solutions-slider-img-wrap {
    height: 422px;
}

.solutions-slider-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.solutions-slider-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.solutions-slider-desc {
    font-size: 15px;
    color: #000000D1;
    margin-bottom: 10px;
    line-height: 1.5;
}

.solutions-slider-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-decoration: none;
    color: #000000;
    border-bottom: 1px solid #000000;
    padding-bottom: 4px;
}

.solutions-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 50px;
}

.solutions-slider-arrow {
    background: none;
    border: none;
    font-size: 20px;
    color: #00000080;
    cursor: pointer;
    line-height: 1;
    padding: 6px;
}

.solutions-slider-arrow:hover {
    color: #000;
}

.solutions-slider-dots {
    display: flex;
    gap: 8px;
}

.solutions-slider-dot {
    width: 35px;
    height: 2px;
    background: #00000033;
    border-radius: 2px;
    cursor: pointer;
    transition: background .3s ease, width .3s ease;
}

.solutions-slider-dot.solutions-slider-dot--active {
    background: #000000;
    width: 50px;
}

.solutions-slider-source {
    display: none;
}






.industries-slider-section{
    width:100%;
    height:100vh;
}

#industriesSlider{
    position:relative;
    width:100%;
    height:100%;
    overflow:hidden;
}

#industriesSliderContent{
    position:absolute;
    inset:0;
    transition:opacity .4s;
}

#industriesSliderContent.is-fading{
    opacity:0;
}

#industriesSliderBg{
    width:100%;
    height:100%;
    object-fit:cover;
}

.industries-slider-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.industries-slider-eyebrow {
    position: absolute;
    top: 60px;
    left: 60px;
    color: #fff;
    letter-spacing: 3px;
    z-index: 5;
    right: 0;
    text-align: center;
}

.industries-slider-title {
    position: absolute;
    left: 0;
    color: #fff;
    font-size: 38px;
    z-index: 5;
    top: 45%;
    right: 0;
    text-align: center;
}

.industries-slider-progress {
    position: absolute;
    bottom: 60px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    z-index: 5;
    right: 0;
    text-align: center;
    margin: 0 auto;
    justify-content: center;
    width: 100%;
}

.industries-slider-progress-bar{
    width:250px;
    height:3px;
    background:rgba(255,255,255,.25);
}

.industries-slider-progress-fill{
    display:block;
    height:100%;
    width:0;
    background:#fff;
    transition:.4s;
}
.industries-slider-cursor{
    position:absolute;
    left:0;
    top:0;
    width:80px;
    height:80px;
    border-radius:50%;
    background:#fff;
    mix-blend-mode: difference;
    display:flex;
    align-items:center;
    justify-content:center;
    pointer-events:none;
    opacity:0;
    transform:translate(-50%,-50%);
    transition:opacity .25s;
    z-index:9999;
    box-shadow:0 15px 35px rgba(0,0,0,.2);
    will-change:left,top;
}

.industries-slider-cursor.active{
    opacity:1;
}

.industries-slider-cursor span{
    font-size:24px;
    font-weight:700;
    line-height:1;
}


.why-choose-us-section {
    padding: 80px 0 100px 0;
}
.why-choose-us-row {
    margin: 0;
}


.why-choose-us-image-col img {
    width: 100%;
    height: 100%;
    max-height: 730px;
    object-fit: cover;
    display: block;
}

.why-choose-us-content-col {
    background: #E6E5DD;
    padding: 75px 45px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.why-choose-us-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .15em;
    color: #6b6558;
    margin-bottom: 14px;
}

.why-choose-us-heading {

    font-size: 32px;
    line-height: 1.25;
    color: #1c2230;
    margin-bottom: 36px;
    font-weight: 600;
}


.why-choose-us-item {
    border-bottom: 1px solid #0000004D;
}

.why-choose-us-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    cursor: pointer;
}

.why-choose-us-item-title {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
}

.why-choose-us-item-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}

.why-choose-us-item-icon::before,
.why-choose-us-item-icon::after {
    content: '';
    position: absolute;
    background: #000000;
    transition: transform .3s ease, opacity .3s ease;
}

.why-choose-us-item-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
}

.why-choose-us-item-icon::after {
    left: 50%;
    top: 0;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
}

.why-choose-us-item.is-open .why-choose-us-item-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.why-choose-us-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.why-choose-us-item-body-inner {
    padding: 0 0 20px;
    font-size: 14px;
    line-height: 1.7;
    color: #5b5b52;
    max-width: 460px;
}

section.our-brands-section {
    padding-bottom: 100px;
}

.our-brands-title {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 36px;
}

.brand-box img {
    width: auto !important;
    height: auto !important;
}

.brand-box {
    border: 1px solid #E4E4E4;
    width: 100%;
    height: 96px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.our-brands-slider {
    padding-left: 1px;
}

section.trusted-hospitality-section {
    background: #E6E5DD;
    padding: 80px 0;
}

.trusted-hospitality-section .brand-box {
    background: #fff;
}

.stats-section {
    background: #3D3D3D;
    color: #fff;
    padding: 50px 0px;
}


.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    text-align: center;
}

.stat-item {
    position: relative;
    padding: 0 20px;
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: #FFFFFF3D;
}

.stat-item h2 {
    font-size: 40px;
    font-weight: 600;
    margin: 0;
    line-height: 1;
    color: #FFFFFF;
}

.stat-item p {
    margin-top: 20px;
    font-size: 15px;
    color: #FFFFFF;
}

.cities {
    margin-top: 40px;
    text-align: center;
    color: #FFFFFF;
    font-size: 15px;
    letter-spacing: 2px;
}

.conscious-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.conscious-content {
    background: #E6E5DD;
    height: 100%;
    padding: 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.conscious-content-box {
    max-width: 540px;
}

.conscious-content .btn-border {
    background: transparent;
}

.create-something-content {
    max-width: 837px;
    margin: 0 auto;
    text-align: center;
}
.create-something-content .button-group {
    justify-content: center;
}

section.create-something-section {
    padding: 40px;
}

.create-something-bg {
    padding: 140px 15px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; 
}

.create-something-content .btn-border {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.create-something-content .section-title,
.create-something-content .description {
    color: #ffff;
}

.approach-section {
    padding: 90px 0;
    background: #fff;
    text-align: center;
}

.approach-slider h3 {
    font-style: italic;
    font-size: 30px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.approach-slider p {
    max-width: 680px;
    margin: auto;
    color: #000000;
    font-size: 18px;
    line-height: 32px;
    font-weight: 400;
}



.slider-progress {
    width: 100%;
    height: 1px;
    background: #BFBFBF;
    margin: 60px 0 25px;
    position: relative;
}

.slider-progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 25%;
    /* First slide of 4 */
    height: 100%;
    background: #000;
    transition: width .4s ease;
}

section.approach-section .container {
    max-width: 770px;
}

.title-divider {
    background: #000000;
    width: 160px;
    height: 1px;
    margin: 0 auto;
    margin-top: 30px;
}

.approach-slider {
    margin-top: 46px;
}

.slider-nav button {
    background: transparent;
    border: none;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.site-footer {
    background: #222222;
    padding: 108px 0 30px;
}

.site-footer-monogram {

    font-size: 34px;
    color: #e7c98f;
    letter-spacing: .05em;
    margin-bottom: 10px;
}

.site-footer-brand-name {

    font-size: 15px;
    letter-spacing: .18em;
    color: #f2efe9;
    margin-bottom: 4px;
}

.site-footer-brand-tagline {

    font-style: italic;
    font-size: 12px;
    color: #8f8b83;
    margin-bottom: 20px;
}

.site-footer-brand-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #FFFFFF;
    margin-top: 20px;
    padding-right: 15px;
}

.site-footer-col-title {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    line-height: 24px;
    margin-bottom: 20px;
}

.site-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer-links li {
    margin-bottom: 12px;
}

.site-footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    transition: color .2s ease;
}


/* ===== Contact column ===== */
.site-footer-contact-country {
    font-size: 13.5px;
    font-weight: 600;
    color: #f2efe9;
    margin-bottom: 6px;
}

.site-footer-contact-item {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: #fff;
    margin-bottom: 14px;
    align-items: center;
}

.site-footer-contact-item a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
}



.site-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.site-footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #FFFFFF4D;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c9c6c0;
    font-size: 13px;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.site-footer-social a:hover {
    background: #000;
    border-color: #383838;
}

.site-footer-bottom {
    border-top: 1px solid #FFFFFF1A;
    margin-top: 50px;
    padding-top: 30px;
}

.site-footer-copyright {
    font-size: 13px;
    color: #FFFFFF;
}

.site-footer-bottom-links {
    font-size: 13px;
    color: #fff;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.site-footer-bottom-links a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.our-solutions-card img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    margin-bottom: 20px;
}
.why-choose-us-image-col {
    padding: 0;
}
.bg-transprent{
    background-color: transparent !important;
}

.our-process-section{
    padding:80px 24px;
  }
 
  .our-process-header{
    text-align:center;
    margin-bottom:50px;
  }
 
  .our-process-eyebrow{
    font-size:12px;
    font-weight:600;
    letter-spacing:.2em;
    color:#1c2230;
    margin-bottom:14px;
  }
 
  .our-process-heading{
    font-family:'Playfair Display', serif;
    font-size:34px;
    color:#1c2230;
    font-weight:600;
    margin:0;
  }
 
  .our-process-card{
    background:#e9e5da;
    padding:36px 30px;
    height:100%;
  }
 
  .our-process-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#1c2230;
    font-size:18px;
    margin-bottom:28px;
  }
 
  .our-process-title {
    font-size: 22px;
    color: #000000;
    font-weight: 400;
    margin-bottom: 10px;
}
 
.our-process-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #000000D1;
    margin: 0;
}
  .our-solutions-card {
    margin-bottom: 50px;
}
.our-solutions-page-section .section-title {
    margin-bottom: 40px;
}

section.all-banner-section {
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.why-choose-us-section .row {
    margin: -5px;
}
.why-choose-us-section .col-lg-6 {
    padding: 5px;
}
.about-list ul {
    padding: 0;
    list-style-type: none;
}

.about-list ul li {
    margin: 10px 0px;
    color: #000000;
    font-size: 14px;
}

.about-list ul li span {
    margin-right: 5px;
    position: relative;
    top: -2px;
}
.curated-flex {
    display: flex;
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid #00000014;
    padding-bottom: 20px;
}

.curated-content h2 {
    font-size: 24px;
    color: #000000;
    margin-bottom: 8px;
}

.curated-content p {
    font-size: 14px;
    margin: 0;
}

.curated-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.curated-flex:last-child {
    border: none;
}
.curated-list {
    margin-top: 1.4rem;
}
.our-values-section{
    padding:100px 0px;
  }
 
  .our-values-header{
    text-align:center;
    margin-bottom:50px;
  }
 
  .our-values-eyebrow{
    font-size:12px;
    font-weight:600;
    letter-spacing:.2em;
    color:#1c2230;
    margin-bottom:16px;
  }
 
  .our-values-heading{
    font-family:'Playfair Display', serif;
    font-size:32px;
    line-height:1.3;
    color:#1c2230;
    font-weight:600;
    margin:0;
    max-width:640px;
    margin:0 auto;
  }
 
  .our-values-card {
    border: 1px solid hsl(180deg 3% 77% / 30%);
    padding: 32px 26px;
    height: 100%;
}
 
  .our-values-icon{
    font-size:20px;
    color:#1c2230;
    margin-bottom:26px;
  }
 
  .our-values-title {
    font-size: 24px;
    color: #000000;
    font-weight: 500;
    margin-bottom: 15px;
}
 
.our-values-desc {
    font-size: 14px;
    line-height: 1.65;
    color: #000000;
    margin: 0;
}
.section-description{
        color: #000000D1;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
}
.bg-black-overlay {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 50%);
    z-index: 1;
}