/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove all scrollbars except main page scrollbar */
* {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
}

*::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

/* Keep main page scrollbar */
html {
    scrollbar-width: auto;
    -ms-overflow-style: auto;
}

html::-webkit-scrollbar {
    display: block;
    width: 8px;
}

html::-webkit-scrollbar-track {
    background: #f1f1f1;
}

html::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

html::-webkit-scrollbar-thumb:hover {
    background: #555;
}

:root {
    /* Colors */
    --primary-color: #0265D8;
    --brown-color: #af894f;
    --secondary-color: #f1f1f1;
    --subtitle-color: #000;
    --text-color: #434343;
    --text-light: #666666;
    --white: #ffffff;
    --gray-light: #f8f8f8;
    --gray-medium: #e5e5e5;
    --overlay-color: rgba(0, 0, 0, 0.07);
    --overlay-light: rgba(255, 214, 31, 0.16);

    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Newsreader', serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;

    /* Border Radius */
    --border-radius-sm: 7px;
    --border-radius-md: 10px;
    --border-radius-lg: 20px;
    --border-radius-xl: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--white);
}

/* Remove all focus outlines and tap highlights */
*:focus,
*:focus-visible,
*:active {
    outline: none !important;
    box-shadow: none !important;
}

* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}


.navbar-contact-btn.scrolled-btn:hover {
  background-color: #000;
  color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Prevent scrollbars only in specific containers that need it */
.nav-menu,
.features-marquee,
.feature-ticker,
.swiper-container {
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    margin-top: 0;
}

/* Section spacing */
section {
    padding: 80px 0;
    margin: 0;
}

.section {
    padding: 80px 0;
    margin: 0;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

em {
    font-family: var(--font-secondary);
    font-style: italic;
    font-size: 105%;
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius-xl);
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 9px 20px;
    margin-top: -12px;
    font-size: 15px;
}

.btn-primary:hover {
    background: #FFFFFF;
    color: var(--secondary-color);
    transform: scale(1.03);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: #4a4a4a;
    color: var(--white);
    border: 1px solid #666;
    font-weight: 600;
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-secondary:hover {
    background: #FFFFFF;
    color: var(--secondary-color);
    transform: scale(1.03);
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--gray-medium);
}

.btn-outline:hover {
    background: #FFFFFF;
    border-color: #FFFFFF;
    color: var(--secondary-color);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}



.btn-audit {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 15px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.btn-audit:hover {
    background: var(--white);
    color: black;
    transform: scale(1.01);
    box-shadow: var(--shadow-lg);
}

.btn-services {
    background: #494A43;
    color: var(--white);
    padding: 14px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 11px;
    cursor: pointer;
}

.btn-services:hover {
    background: #ffffff;
    color: #000000;
    transform: scale(1.01);
    box-shadow: var(--shadow-lg);
}

/* Icons */
.icon-arrow-right::before {
    content: "→";
}

.icon-arrow-down::before {
    content: "↓";
}

.icon-sandglass::before {
    content: "⏳";
}

.icon-currency::before {
    content: "€";
    margin-left: -5px;
    font-size: 1.5rem;
}

.icon-leaf::before {
    content: "🌿";
}

.icon-chat::before {
    content: "💬";
}

.icon-check::before {
    content: "✓";
}

.icon-tag::before {
    content: "🏷️";
}

.icon-washing::before {
    content: "🧺";
}

.icon-key::before {
    content: "🔑";
}

.icon-check-list::before {
    content: "✅";
}

.icon-chart::before {
    content: "📊";
}

.icon-location::before {
    content: "📍";
}

.icon-phone::before {
    content: "📞";
}

.icon-email::before {
    content: "✉️";
}

/* Header Background */
.header-background {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    height: 60px;
    width: 90%;
    background: transparent;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    z-index: 999;
    transition: background 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.header-background.scrolled {
    background: var(--white);
    opacity: 1;
    visibility: visible;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    background: transparent;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.header-container {
    width: 88%;
    position: relative;
    z-index: 1;
    margin-left: 1%;
    margin-top: 16px;
    max-width: 100%;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
    z-index: 1;
    gap: 20px;
    width: 100%;
    min-width: 0;
}

.logo-img {
    height: 55px;
    width: 203px;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.logo-light {
    display: block;
}

.logo-dark {
    display: none;
    margin-top: -8px;
}

.header-background.scrolled~.header .logo-light {
    display: none;
}

.header-background.scrolled~.header .logo-dark {
    display: block;
}

.nav-menu {
    margin-top: -8px;
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    position: relative;
}

.nav-list {
    display: flex;
    list-style: none;
    margin-left: -110px;
    margin-top: 0px;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-link {
    color: #d4d4d4;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    transition: color var(--transition-fast);
    position: relative;
}

.header-background.scrolled~.header .nav-link {
    color: var(--text-color);
}

.nav-link:hover {
    color: var(--white);
}

.nav-dropdown {
    position: relative;
    z-index: 999999;
    cursor: pointer;
}

/* dropdown arrow style */
.dropdown-arrow {
    font-size: 10px;
    margin-left: 7px;
    margin-top: -7px;
    font-weight: 700;
    transition: transform var(--transition-fast);
    display: inline-block;
    vertical-align: middle;
}

/* Dropdown menu styles */
.dropdown-menu {
    position: fixed;
    top: 55px;
    left: 48%;
    transform: translateX(-50%) translateY(-10px);
    background: linear-gradient(to bottom, #212121 0%, #454545 50%, #605F5E 100%);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    width: 250px;
    opacity: 0;
    visibility: hidden;
    list-style: none;
    z-index: 999999;
    pointer-events: none;
    min-width: 200px;
    padding: 8px 0;
    margin-top: 15px;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.4s;
}

/* Invisible hover bridge on top of the dropdown */
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -25px; /* creates the bridge */
    left: 0;
    width: 100%;
    height: 25px;
    background: transparent;
}

/* Show on hover */
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
}

.dropdown-menu li {
    padding: 0.5rem 1.5rem;
    border-bottom: 1px dashed #605F5E;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    color: #d4d4d4;
    text-decoration: none;
    font-weight: 400;
    transition: color var(--transition-fast);
}

.dropdown-menu a:hover {
    color: var(--white);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    height: 2px;
    background: var(--white);
    transition: all var(--transition-normal);
    border-radius: 1px;
}

.mobile-menu-toggle span:nth-child(1) {
    width: 14px;
    margin-left: auto;
}

.mobile-menu-toggle span:nth-child(2) {
    width: 24px;
}

.mobile-menu-toggle span:nth-child(3) {
    width: 18px;
}

.mobile-menu-toggle:hover span {
    width: 24px;
    margin-left: 0;
}

.header-background.scrolled~.header .mobile-menu-toggle span {
    background: var(--text-color);
}

.mobile-menu-toggle-blog span {
    background-color: var(--text-color);
}

/* Hide mobile menu elements on desktop */
@media (min-width: 769px) {

    .nav-menu.active,
    .nav-menu.active .nav-list,
    .nav-menu.active .nav-link,
    .nav-menu.active .dropdown-menu,
    .nav-menu.active .close-btn,
    .nav-menu.active .mobile-logo,
    .nav-menu.active .mobile-contact-btn,
    .mobile-logo,
    .mobile-contact-btn,
    .close-btn {
        display: none !important;
    }
}



/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */



























/* =-=-=-=-=-=-=-=-=-=-=-Hero Section=-=-=-=-=-=-=-=-=-=- */


.hero-section {
    position: relative;
    height: 103vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    transform: none;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.4);
}

.overlay-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    mix-blend-mode: overlay;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    margin-top: 0;
    animation: slideuphero 1.5s;
}

@keyframes slideuphero {
    0% {
        opacity: 0;
        transform: translateY(300px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    margin-top: 0;
    margin-bottom: 40px;
    font-weight: 300;
    font-size: 70px;
    line-height: 90%;
}

.hero-description {
    font-size: 19px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.5;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}








/* Underlined Text */
.underlined-text {
    position: relative;
    display: inline-block;
    font-family: "Newsreader", serif;
    font-style: italic;
    color: var(--brown-color);
    font-weight: 500;
}

/* Override for hero section to make text white */
/* .hero-title-first .underlined-text {
    color: var(--white);
} */

.subline-decoration {
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -1;
}

/* Features Marquee */
.features-marquee {
    position: absolute;
    width: 100%;
    bottom: 40px;
    /* left: 0; */
    /* right: 0; */
    z-index: 2;
    overflow: hidden;
    user-select: none;
}

.feature-ticker {
    --gap: 20px;
    display: flex;
    gap: var(--gap);
    position: relative;
    cursor: grab;
    overflow: hidden;
    /* Smooth interactions */
    transition: cursor 0.2s ease;
    /* Prevent text selection during drag */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Opacity gradient for ticker tracks */
.features-marquee {
    /* Add gradient mask for opacity effect */

    mask-image: linear-gradient(to right,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.212) 15%,
            rgba(0, 0, 0, 1) 25%,
            rgba(0, 0, 0, 1) 75%,
            rgba(0, 0, 0, 0.137) 85%,
            rgba(0, 0, 0, 0) 100%);
}

/* Dragging state */
.feature-ticker.dragging {
    cursor: grabbing !important;
}

.feature-ticker.dragging .ticker-track {
    cursor: grabbing !important;
    transition: none !important;
    animation-play-state: paused !important;
}

/* Mobile touch improvements */
@media (max-width: 768px) {
    .feature-ticker {
        touch-action: pan-x;
        -webkit-overflow-scrolling: touch;
    }

    .ticker-track {
        touch-action: pan-x;
    }
}

@media (max-width: 580px) {
    .ticker-track-phone-invisible {
        display: none !important;
    }
}

.ticker-track {
    flex-shrink: 0;
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--gap);
    animation: scroll 10s linear infinite;
    will-change: transform;
    cursor: grab;
    transition: transform 0.1s ease-out;
    /* Smooth cursor changes */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    opacity: 1;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - var(--gap)));
    }
}

.feature-item {
    color: var(--white);
    text-align: left;
    background: #ffffff18;
    border-radius: var(--border-radius-sm);
    height: 60px;
    width: 450px;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    gap: 15px;
    position: relative;
    padding: 15px;
    white-space: nowrap;
    transition: all 0.3s ease;
    /* Smooth dragging feedback */
    transform: translateZ(0);
    backface-visibility: hidden;
}



.feature-item img {
    width: 26px;
    height: 26px;
}

.feature-item span {
    font-size: 14.4px;
    font-weight: normal;
    line-height: 1.2;
}



.hero-end-icons {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 15;
}

.droplet-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: 10px; */
}

.droplet-icon {
    width: 170px;
    height: 120px;
}

.scroll-animation {
    width: 30px;
    height: 30px;
    position: relative;
    margin-top: -60px;
    z-index: 5;
}


/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */

































/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    position: relative;
}

.services-title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.service-underline-text {
    color: var(--white);
}

.services-arrow {
    width: 400px;
    height: auto;
    flex-shrink: 0;
    margin-right: 0;
    position: absolute;
    right: -80px;
    top: calc(30% - 5px);
    transform: translateY(-50%);
}

.services-subtitle {
    font-style: italic;
    font-weight: 400;
}

.services-section .section-title {
    color: var(--brown-color);
    font-size: 75px;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.3;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    margin-top: -50px;
}

.services-section .services-subtitle {
    color: #000000;
    font-size: 75px;
    display: inline;
    font-family: "Newsreader", serif;
    font-style: italic;
    font-weight: 600;
}

@media (max-width: 768px) {
    .services-section {
        padding-top: 40px;
        padding-bottom: 0px;
    }

    .services-section .section-title {
        font-size: 36px;
        max-width: 90%;
        margin: 0 auto 20px auto;
        margin-top: -25px;
        padding-top: 20px;
    }

    .services-section .services-subtitle {
        font-size: 36px;
    }

    .services-arrow {
        width: 150px;
        right: -60px;
        top: calc(30% + 15px);
    }
}

.section-icon {
    width: 40px;
    height: auto;
    margin-bottom: 1rem;
}

.scroll-icon {
    width: 60px;
    height: auto;
    margin-bottom: 1rem;
}

.section-description {
    color: #000000;
    margin: 0 auto;
    max-width: 800px;
    padding: 0 40px;
}


/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */







































/*-=-=-=-=-=-=-=-=-=-=-= Why Choose Us Section =-=-=-=-=-=-=-=-=-=-=-=*/

.why-choose-section {
    background: var(--white);
    border-top-left-radius: 25px;
    margin-top: -20px;
    border-top-right-radius: 25px;
}

.why-choose-section .section-title {
    color: var(--brown-color);
    font-size: 65px;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.1;
    text-align: center;
}

.why-choose-section .section-title em {
    color: var(--subtitle-color);
    font-size: 68.25px;
    display: inline;
}

@media (max-width: 768px) {
    .why-choose-section {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .why-choose-section .section-title {
        font-size: 30px;
        max-width: 90%;
        margin: 0 auto 20px auto;
        padding-top: 20px;
    }

    .why-choose-section .section-title em {
        font-size: 30px;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 20px;
}

.benefit-card {
    background: var(--white);
    height: 250px;
    width: auto;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 7px 12px rgba(0, 0, 0, 0.199);
    transition: all var(--transition-normal);
    text-align: left;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-icon {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 20px;
    height: 20px;
}

.benefit-card h3 {
    color: #000000;
    margin: 0;
    font-size: 1.2rem;
    font-family: "Outfit", sans-serif;
}

.benefit-card p {
    color: #666666;
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 400;
}


/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */































/* -=-=-=-=-=-=-=-=-=-=- Services Section -==-=-=-=-=-=-=-=-=-=- */

.services-section {
    background: var(--white);
    padding-bottom: 30px;
}

.services-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
    margin-left: -4vw;
}

@media (max-width: 768px) {
    .services-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin-left: 0;
        padding: 0 1rem;
        align-items: center;
    }

    .services-sidebar {
        position: static;
        order: 2;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .services-scroll-container {
        margin-left: -20px;
        order: 1;
        width: 100%;
    }
}

.services-content-reversed {
    grid-template-columns: 1fr 300px;
    margin-left: 0;
    margin-top: 100px;
    padding: 50px;
    /* margin-right: -50px; */
}

.services-content-reversed .services-sidebar {
    order: 2;
}

.services-content-reversed .services-scroll-container {
    order: 1;
    margin-left: 0;
}

@media (max-width: 768px) {
    .services-content-reversed {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin-top: 50px;
        padding: 0 1rem;
    }

    .services-content-reversed .services-sidebar {
        order: 1;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .services-content-reversed .services-scroll-container {
        order: 2;
        width: 100%;
        margin-left: 0;
        display: flex;
        justify-content: center;
    }
}

.services-content-reversed .arrow-icon {
    transform: rotate(180deg) scaleY(-1);
    margin-left: 0;
}

.services-sidebar {
    position: sticky;
    top: 130px;
}

.sidebar-card {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius-lg);
    color: var(--brown-color);
    text-align: center;
    position: relative;
}

.sidebar-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1rem;
    color: var(--white);
}

.sidebar-icon svg {
    width: 25px;
    height: 25px;
}

.sidebar-card h3 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin: 20px;
    color: var(--brown-color);
}

.sidebar-card p {
    font-size: 1rem;
    line-height: 1.4;
    color: #000000;
}

.sidebar-card .btn {
    height: 50px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.sidebar-card .btn:hover {
    background-color: #000000;
    color: #ffffff;
}

.sidebar-card .btn::after {
    content: "→";
    margin-left: 8px;
    font-size: 1rem;
    font-weight: bold;
}

.arrow-icon {
    position: static;
    width: 150px;
    height: auto;
    margin-left: 100px;
    margin-top: 15px;
    display: block;
}

@media (max-width: 768px) {
    .sidebar-card {
        text-align: center;
        margin: 0;
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 1rem 0;
    }

    .sidebar-card h3 {
        font-size: 1.8rem;
        margin: 10px 0;
        text-align: center;
        width: 100%;
    }

    .sidebar-card p {
        font-size: 0.9rem;
        text-align: center;
        width: 100%;
        margin: 10px 0;
    }

    .sidebar-card .btn {
        align-self: center;
        margin: 10px 0;
    }

    .arrow-icon {
        display: none;
    }

    .services-sidebar {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .services-content .services-sidebar {
        margin: 0;
        padding: 0;
    }

    .services-content-reversed .services-sidebar {
        margin: 0;
        padding: 0;
    }
}

.arrow-flip {
    transform: translateY(-50%) scaleX(-1);
}

.services-scroll-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    overflow: visible;
}



.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.11);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    /* height: 346px; */
    padding: 8px;
}

@media (max-width: 768px) {
    .service-card {
        flex-direction: column;
        height: auto;
        padding: 0;
        margin-bottom: 1rem;
        width: 90vw;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }

    .service-card .service-image {
        width: 100% !important;
        height: 250px !important;
        order: 1;
        overflow: hidden !important;
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #f8f8f8 !important;
        border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0 !important;
        flex-shrink: 0 !important;
        border: none !important;
    }

    .service-card .service-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 0 !important;
        background: transparent !important;
        position: relative !important;
        /* Allow slide animations to work by not overriding transform */
    }

    .service-content {
        order: 2;
        padding: 0.6rem;
        width: 100%;
    }

    .service-content h4 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
        line-height: 1.2;
        font-weight: 600;
    }

    .service-content p {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
        line-height: 1.3;
        color: #666;
    }

    .service-rating-section {
        margin-bottom: 0.4rem;
        gap: 0.3rem;
    }

    .service-rating-section svg {
        width: 14px;
        height: 14px;
    }

    .service-rating-text {
        font-size: 0.7rem;
        margin-bottom: 0.1rem;
    }

    .service-rating-score {
        font-size: 0.65rem;
    }

    .service-learn-more {
        margin-top: 0.2rem;
        font-size: 0.75rem;
        padding: 0.2rem 0;
    }
}

.social-tag {
    text-align: right;
    background-color: #46E696;
    padding: 10px;
    border-radius: 20px;
    text-align: center;
    font-weight: 600;
    white-space: nowrap;
}

.social-tag-primary {
    width: 50%;
}

.social-tag-secondary {
    bottom: -65px;
    font-size: 14px;
    right: 14%;
    transform: translateX(50%);
}

@media (max-width: 768px) {
    .social-tag-secondary {
        right: 25%;
    }
}

.service-card:hover .service-image {
    background: #FEF7DA;
}

.service-image {
    width: 450px;
    overflow: hidden;
    background: #F0F0F0;
    transition: background var(--transition-normal);
    flex-shrink: 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-slow);
    opacity: 0;
    /* Remove the global slideInImage animation - it will be applied by specific selectors */
}

/* Mobile animations - use exact same system as desktop */
@media (max-width: 768px) {

    /* Ensure mobile uses the same slide animations as desktop */
    .service-card:nth-child(1) .service-image img {
        animation: slideInTop 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        animation-play-state: paused;
        opacity: 0;
    }

    .service-card:nth-child(2) .service-image img {
        animation: slideInLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        animation-play-state: paused;
        opacity: 0;
    }

    .service-card:nth-child(3) .service-image img {
        animation: slideInRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        animation-play-state: paused;
        opacity: 0;
    }

    .service-card:nth-child(4) .service-image img {
        animation: slideInBottom 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        animation-play-state: paused;
        opacity: 0;
    }

    .service-card:nth-child(5) .service-image img {
        animation: slideInRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        animation-play-state: paused;
        opacity: 0;
    }

    .service-card:nth-child(6) .service-image img {
        animation: slideInBottom 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        animation-play-state: paused;
        opacity: 0;
    }

    .service-card:nth-child(7) .service-image img {
        animation: slideInRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
        animation-play-state: paused;
        opacity: 0;
    }

    /* Mobile uses the same animation trigger classes as desktop */
    /* Animation trigger classes are now defined globally above */
}

/* Service card image animations - Desktop */
.service-card:nth-child(1) .service-image img {
    animation: slideInTop 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-play-state: paused;
    opacity: 0;
}

.service-card:nth-child(2) .service-image img {
    animation: slideInLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-play-state: paused;
    opacity: 0;
}

.service-card:nth-child(3) .service-image img {
    animation: slideInRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-play-state: paused;
    opacity: 0;
}

.service-card:nth-child(4) .service-image img {
    animation: slideInBottom 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-play-state: paused;
    opacity: 0;
}

.service-card:nth-child(5) .service-image img {
    animation: slideInRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-play-state: paused;
    opacity: 0;
}

.service-card:nth-child(6) .service-image img {
    animation: slideInBottom 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-play-state: paused;
    opacity: 0;
}

.service-card:nth-child(7) .service-image img {
    animation: slideInRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-play-state: paused;
    opacity: 0;
}

/* Animation trigger classes */
.service-card.animate .service-image img {
    animation-play-state: running !important;
}

.service-card.animate-complete .service-image img {
    animation-play-state: running !important;
    opacity: 1 !important;
}

/* Animation classes for triggering animations */
.service-card.animate .service-image img {
    animation-play-state: running !important;
}

.service-card.animate-complete .service-image img {
    animation-play-state: running !important;
    opacity: 1 !important;
}

/* Animation keyframes with smoother movement */
@keyframes slideInTop {
    0% {
        opacity: 0;
        transform: translateY(-200px) scale(0.8);
    }

    50% {
        opacity: 0.5;
        transform: translateY(-50px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-200px) scale(0.8);
    }

    50% {
        opacity: 0.5;
        transform: translateX(-50px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(200px) scale(0.8);
    }

    50% {
        opacity: 0.5;
        transform: translateX(50px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes slideInBottom {
    0% {
        opacity: 0;
        transform: translateY(200px) scale(0.8);
    }

    50% {
        opacity: 0.5;
        transform: translateY(50px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInImage {
    0% {
        opacity: 0;
        transform: translateX(-100px) scale(0.9);
    }

    50% {
        opacity: 0.7;
        transform: translateX(-30px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Force hardware acceleration for smooth animations */
.service-card {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.service-image {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}





.service-image img {
    transition: transform var(--transition-normal);
}

.service-card:hover .service-image img {
    transform: scale(1.02);
}

/* Ensure no container hover effects */
.service-card:hover {
    transform: none !important;
}



.service-content {
    color: #000;
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content h4 {
    color: #000 !important;
    margin-bottom: 0;
    margin-top: 10px;
    font-size: 18px;
    color: var(--secondary-color);
}

.service-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.5;
}

.service-rating-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 90px;
}

.service-rating-icon {
    width: 30px;
    height: 30px;
    color: #000;
}

.service-rating-text {
    font-size: 10px;
    color: #000 !important;
    margin: 0;
}

.service-rating-score {
    font-size: 10px;
    color: #000 !important;
    margin: 0;
}

.service-learn-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #000;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-size: 0.95rem;
    transition: text-decoration-color var(--transition-normal);
}

.service-learn-more:hover {
    text-decoration-color: #0265D8;
}

.service-learn-more-arrow {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-normal);
}

.service-learn-more:hover .service-learn-more-arrow {
    transform: translateX(3px);
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--gray-medium);
}

.rating-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.rating-title {
    font-weight: 600;
    color: var(--secondary-color);
}

.rating-score {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
















































/* -=-=-=-=-=-=-=-=-= How It Works Section -=-=-=-=-=-=-=-=-=-=-=*/


.how-it-works-section {
    background: var(--white);
}

.how-it-works-section .section-title {
    color: var(--brown-color);
    font-size: 4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.2;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    width: 300px;
    background: none;
    padding: 0;
    box-shadow: none;
    flex: none;
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-top: -15px !important;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin: 0;
}

.step-number {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
}

.step h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #000000;
}

.step p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.95rem;
}

.step-arrow {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-arrow img {
    width: 100%;
    height: auto;
}

.step-arrow:nth-child(4) img {
    transform: rotate(0deg);
}

.step-arrow:nth-child(4) {
    transform: rotate(180deg) scaleX(-1) !important;
}

@media (max-width: 768px) {
    .step-arrow:nth-child(4) {
        transform: rotate(-90deg) scaleX(-1) !important;
    }
}

/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */






















































































































/*-=-=-=-=-=-=-=-=-=-=-=-= Team Section =-=-=-=-=-=-=-=-=-=-=-*/

.team-section {
    background: #F8F8F8;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: start;
    position: relative;
    z-index: 1;
    background: transparent;
    width: 100%;
    height: 120vh;
}

.team-background {
    position: absolute;
    top: 10px;
    left: -30%;
    z-index: 0;
}

.team-background-mobile {
    display: none;
}

.team-background img {
    width: 90rem;
    height: auto;
}

.team-left {
    padding-right: 2rem;
    background: transparent;
    position: relative;
    z-index: 3;
}

.team-section .section-title {
    color: var(--brown-color);
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 80px;
    line-height: 1.2;
}

.team-subtitle {
    color: var(--subtitle-color);
    font-style: italic;
    font-weight: 600;
}

.team-intro {
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.team-right {
    background: transparent;
    padding: 1rem;
    border-radius: 20px;
    position: relative;
    height: fit-content;
    z-index: 3;
}

.team-cards {
    display: flex;
    gap: 1rem;
}

.team-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 0;
    text-align: center;
    position: relative;
    flex: none;
    overflow: hidden;
    height: 400px;
    width: 150px;
}

.member-photo {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-inset {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: #000000;
    z-index: 2;
}

.member-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.418);
    z-index: 1;
}

.member-inset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
    text-align: center;
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.member-signature {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-family: cursive;
    font-size: 1rem;
    text-align: center;
    z-index: 2;
}

.member-signature img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.team-info h3 {
    color: #000000;
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.team-info p {
    color: #666666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.promise-section {
    background: #EBEBEB;
    padding: 1rem;
    border-radius: 15px;
    margin: 0.5rem 0;
}

.team-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.team-info li {
    color: #666666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.team-info li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #666666;
    font-weight: bold;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    color: var(--brown-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #000000;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */





































































/*-=-=-=-=-=-=-=-=-=-=-=-= Partnership Section =-=-=-=-=-=-=-=-=-=-=-=-=-*/

.partnership-section {
    background: #ffffff;
    position: relative;
    margin-top: -100px;
    overflow: visible;
}

.partnership-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 4rem;
    position: absolute;
    top: -100px;
    left: 50px;
    right: 50px;
    bottom: -170px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 40px;
    z-index: 10;
}

.partnership-content {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 5rem;
    width: 1150px;
}

.partnership-left {
    width: 350px;
    flex-shrink: 0;
}

.partnership-badge {
    display: inline-flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.partnership-badge .badge-circle {
    width: 35px;
    height: 35px;
    background: #F2F2F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partnership-badge .tick-icon {
    width: 17px;
    height: 17px;
}

.partnership-badge .badge-text {
    background: #F2F2F2;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 15px;
    color: #000000;
    font-weight: 500;
}

.partnership-title {
    font-size: 75px;
    font-weight: 700;
    color: #000000;
    margin-top: -20px;
    line-height: 1.1;
}

.partnership-subtitle {
    color: var(--brown-color);
    font-style: italic;
    font-weight: 600;
    font-family: 'Newsreader', serif;
}

.partnership-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000000;
}

.btn-partnership {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 16px;
    border-radius: 25px;
    font-weight: 100;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-partnership:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-2px);
}

.partnership-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 600px;
}

.partner-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 80px;
    gap: 3rem;
    padding: 30px 30px;
}



.votre-logo-container {
    position: relative;
    transform: rotate(-5deg);
}

.logo-arrow {
    position: absolute;
    top: -160px;
    right: -100px;
    width: 400px;
    height: 200px;
    z-index: 2;
    transform: scale(1.08);
}

.partner-logo img {
    width: 180px;
    height: auto;
    transition: all 0.3s ease;
}

/* Responsive for Partnership Section */
@media (max-width: 768px) {
    .partnership-card {
        padding: 2rem;
        flex-direction: column;
    }

    .partnership-content {
        max-width: 100%;
    }

    .partnership-title {
        font-size: 2.5rem;
    }

    .partnership-graphic {
        display: none;
    }

    .partnership-right {
        width: 100%;
    }

    .partner-logos {
        flex-direction: column;
        gap: 1rem;
    }

    .partner-logo img {
        max-width: 120px;
    }
}

/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */














































/*=-=-=-=-=-=-=-=-=-=-= Reviews Section =-=-=-=-=-=-=-=-=-=-*/

.reviews-section {
    background: #0265D8;
    background-image: url('asserts/airbnbGhost.svg');
    background-size: 50% auto;
    background-position: 0% 50%;
    background-repeat: no-repeat;
    padding: 4rem 10px;
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(128, 128, 128, 0);
    z-index: 1;
}

.reviews-content {
    display: flex;
    gap: 12%;
    width: 100%;
    padding: 0 10px !important;
    position: relative;
    z-index: 2;
}

.reviews-left {
    flex: 1;
    padding: 1rem 0;
    width: 100% !important;
    margin-left: -30px !important;
}

.reviews-title {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.reviews-subtitle {
    font-style: italic;
    font-weight: 600;
    font-size: 3.5rem;
    display: block;
    margin-top: 0.5rem;
}

.reviews-description {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.travelers-avatars {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: nowrap;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ffffff;
    margin-left: -12px;
    flex-shrink: 0;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.airbnb-logo {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    margin-left: -12px;
    flex-shrink: 0;
}

.airbnb-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-left: 1rem;
    flex-shrink: 0;
}

.rating-text {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
}

.stars {
    display: flex;
    gap: 0.15rem;
}

.stars i {
    color: #FF5A5F;
    font-size: 1rem;
}

.reviews-right {
    flex: 1;
    width: 80% !important;
    background: transparent;
    border-radius: 20px;
    padding: 0;
    box-shadow: none;
}

.swiper {
    width: 100%;
    padding-bottom: 100px;
}

.swiper-slide {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: 220px;
    width: 330px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.reviews-header {
    display: flex;
    align-items: start;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.reviews-header .tick-badge {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.reviews-header i {
    font-size: 1.2rem;
    color: #000000;
    background: #f0f0f0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.review-cards-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.review-cards {
    display: flex;
    gap: 1.2rem;
    transition: transform 0.5s ease-in-out;
    width: 500%;
    /* 5 cards total */
}

.review-card {
    min-width: calc(20% - 0.96rem);
    /* 5 cards total, each takes 20% */
    flex-shrink: 0;
}

/* Navigation arrows */
.review-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.review-nav:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.review-nav.prev {
    left: -20px;
}

.review-nav.next {
    right: -20px;
}

.review-nav i {
    font-size: 1.2rem;
    color: #333;
}

/* Disable arrows when at start/end */
.review-nav.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.review-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    min-height: 200px;
    border: 1px solid #f0f0f0;
    width: 70px;
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    position: relative;
}

.reviewer-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
}

.reviewer-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 0.3rem 0;
}

.review-stars {
    display: flex;
    gap: 0.1rem;
    color: #C09C64;
    line-height: 10px;
}

.airbnb-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    position: absolute;
    top: 0;
    right: 0;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #000000;
    margin: 0;
    margin-top: 10px;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

/* Responsive for Reviews Section */
@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 0;
    }

   
    .reviews-left {
        padding: 1rem 0;
    }

    .reviews-title {
        font-size: 2.2rem;
    }

    .reviews-subtitle {
        font-size: 2.8rem;
    }

    .reviews-description {
        font-size: 1rem;
    }

    .travelers-avatars {
        justify-content: center;
        gap: 0.6rem;
        margin-bottom: 1rem;
        flex-wrap: wrap;
    }

    .avatar {
        width: 40px;
        height: 40px;
        margin-left: -8px;
    }

    .avatar:first-child {
        margin-left: 0;
    }

    .reviews-right {
        padding: 1rem;
        width: 100vw !important;
        max-width: 350px;
        overflow: hidden;
        padding: 0 !important;
        margin-top: -25px !important;
    }

    .review-cards {
        width: 100vw;
        overflow-x: auto;
        padding: 0 10px;
        display: flex;
    }

    .review-card {
        width: 100vw;
        max-width: 320px;
        min-width: 280px;
    }

    .review-card {
        min-width: calc(50% - 0.5rem);
    }

    .swiper-slide {
    width: 100%;

  .reviewer-info h4 {
    text-align: left !important;
  }


}

}

/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */






























































/*-=-=-=-=-=-=-=-=-=-=-= Commission Info Box =-=-=-=-=-=-=-=-=-=*/

.commission-info-box {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-radius: 15px;
    padding: 0.8rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.commission-rate {
    text-align: center;
    margin-bottom: 0;
    background: #f5f5dc;
    padding: 0.6rem;
    border-radius: 8px;
    min-width: 140px;
}

.commission-label {
    display: block;
    font-size: 0.8rem;
    color: #666666;
    margin-bottom: 0.2rem;
}

.commission-percentage {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin: 0.2rem 0;
    transition: all 0.3s ease;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.commission-percentage.animate {
    animation: countUp 0.5s ease-out;
}

.commission-text {
    font-size: 0.8rem;
    color: #666666;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #333333;
}

.benefit-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */







































/*=-=-=-=-=-=-=-=-=-=-= Contact Section - Audit Form =-=-=-=-=-=-=-=-=-*/

.contact-section {
    background: #ffffff;
    padding: 0;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.audit-form-container {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    left: 50%;
    margin-top: -80px;
    transform: translateX(-55%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 90%;
    z-index: 10;
}

/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */

/*-=-=-=-=-=-=-=-=-=-=-=-= Right Form Section -=-=-=-=-=-=-=-=-=-=-*/

/*=-=-=-=-=-=-=-=-=-=-= Left Visual Section =-=-=-=-=-=-=-=-=-=-=-*/

.audit-visual-section {
    position: relative;
    margin: 10px;
    background: #ffffff;
    padding: 7px 8px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px; /* fixed height ki jagah flexible min-height */
}

.audit-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.audit-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.audit-overlay {
    position: absolute;
    inset: 0;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.audit-heading {
    width: 100px;
}

.audit-heading h2 {
  position: relative;
  margin: 25px;
  z-index: 2;
  font-size: 2.7rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-align: left;
  white-space: normal; /* 🟢 Desktop default: multiple lines allowed */
}

.audit-subtitle {
    font-style: italic;
    font-family: 'Newsreader', serif;
    font-weight: 600;
    font-size: 0.8em;
}

/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */

.audit-form-section {
    padding: 2rem 1rem;
    background: #ffffff;
    max-width: 450px;
    margin: 0 auto;
}

.form-description {
    margin-bottom: 1.2rem;
}

.form-description p {
    font-size: 1rem;
    color: #000000;
    line-height: 1.4;
    margin: 0;
    font-weight: 400;
}

.audit-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    padding: 0.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    background: #ffffff;
    height: 40px;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input::placeholder {
    color: #cccccc;
}

.btn-audit-submit {
    background: var(--brown-color);
    color: #000000;
    border: none;
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 0.8rem;
    align-self: flex-start;
}

.btn-audit-submit:hover {
    background: #666666;
    color: #ffffff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.171);
}

/* Responsive Design for Audit Form */

@media (max-width: 768px) {

    .contact-section {
    height: 85vh;
}

    .audit-form-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 90%;
        margin: 0 auto;
    }

    .audit-visual-section {
        align-items: center;
        min-height: 280px;
        padding: 7px 8px;
        margin: 10px;
    }

    .audit-heading h2 {
        font-size: 1.2rem;
        margin: 10px auto;
        line-height: 1.2;
        text-align: center;
        white-space: nowrap;
        width: 100%;
    }


    .audit-form-section {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {

    .audit-form-container {
        margin-top: 80px;
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
        overflow: visible;
        position: relative !important;
        padding-bottom: 2rem;
    }
}

    .audit-visual-section {
        min-height: 220px;
    }

    .audit-heading h2 {
        font-size: 1.2rem;
        margin: 10px;
        line-height: 1.2;
    }

    .form-description p {
        font-size: 0.85rem;
    }

    .form-group label {
        font-size: 0.7rem;
    }

    .form-group input,
    .form-group select {
        height: 35px;
        font-size: 0.8rem;
    }

    .btn-audit-submit {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }


/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */












































/*=-=-=-=-=-=-=-=-=-= Blog Section -==-=-=-=-=-=-=-=-=-=-=*/

.blog-section {
    background: #ffffff;
    padding: 6rem 0;
}

.blog-logo-dark {
    visibility: visible;
    opacity: 1;
}

.blog-nav-link {
    color: #3d3d3d;
}

.blog-header-bg {
    background-color: #F8F8F8;
    visibility: visible;
    opacity: 1;
    box-shadow: none;
}

.blog-section .section-title {
    color: var(--brown-color);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.blog-subtitle {
    color: var(--subtitle-color);
    font-style: italic;
    font-family: 'Newsreader', serif;
    font-weight: 600;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.blog-date {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 500;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-section {
        margin-top: 200px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .blog-section .section-title {
        font-size: 2.5rem;
    }
}

/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */
























/* --- Ambassadors Section Styles (copy and adapt from team-section) --- */

.ambassadors-section {
    position: relative;
    margin-top: 250px;
    background: #f8f9fb;
    overflow: hidden;
}

.ambassadors-background {
    position: absolute;
    top: 50px;
    left: -380px;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.ambassadors-background-mobile {
    display: none;
}

.ambassadors-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.ambassadors-left {
    flex: 1 1 350px;
    min-width: 300px;
    color: #000;
}

.ambassadors-right {
    margin-top: 140px;
    display: block;
    flex: 2 1 500px;
    min-width: 320px;
}

.ambassadors-cards {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.ambassador-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 0;
    text-align: center;
    position: relative;
    flex: none;
    overflow: hidden;
    height: 400px;
    width: 300px;
}

.ambassador-card-2 {
    background: #ffffff;
    border-radius: 15px;
    padding: 0;
    text-align: center;
    position: relative;
    flex: none;
    overflow: hidden;
    height: 400px;
    width: 150px;
}

.ambassador-photo {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.ambassador-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ambassador-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.418);
    z-index: 1;
}

.ambassadors-subtitle {
    color: #000000;
    font-weight: 700;
}

.ambassadors-info {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.185);
    margin-bottom: 25px;
}

.ambassadors-promise-section {
    background: #EBEBEB;
    padding: 1rem;
    border-radius: 15px;
    margin: 0.5rem 0;
}

.ambassadors-promise-section h3 {
    color: #000;
}

.ambassadors-stats-grid {
    display: flex;
    gap: 24px;
    margin-top: 16px;
}

.ambassadors-stat-item {
    background: #f8f9fb;
    border-radius: 12px;
    padding: 18px 12px;
    text-align: center;
    min-width: 110px;
}

.ambassadors-stat-item .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
}

.ambassadors-stat-item .stat-label {
    font-size: 0.85rem;
    color: #000000;
    margin-top: 4px;
}

/* Responsive */

@media (max-width: 550px) {
    .ambassadors-section .ambassador-title {
        font-size: 36px;
        margin-bottom: 40px;
        text-align: center;
        width: 100%;
        white-space: nowrap;
    }

    .ambassadors-section {
        margin-top: 450px !important;
    }

    .ambassadors-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 3rem !important;
        width: 100% !important;
        position: relative !important;
        z-index: 10 !important;
    }

    .ambassador-card {
        width: 150px !important;
    }

    .ambassadors-left {
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 600px !important;
        order: 1 !important;
    }

    .ambassadors-right {
        width: 90vw !important;
        max-width: 600px !important;
        padding: 0 1rem !important;
        order: 2 !important;
        margin: 0 auto !important;
    }

    .ambassadors-background {
        display: none;
    }

    .ambassadors-background-mobile {
        position: absolute;
        bottom: -200px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 0;
        height: 80%;
        width: 100%;
        display: block;
    }

    .ambassadors-background-mobile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */













































/*-=-=-=-=-=-=-=-=-=-=-=-= FAQ Section =-=-=-=-=-=-=-=-=-=-=-=-*/

.faq-section {
    background: #ffffff;
    padding: 6rem 0;
    position: relative;
}

.faq-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.faq-left {
    position: relative;
    z-index: 2;
    flex: 0 0 600px;
    margin: 0 2rem;
}

.faq-header {
    margin-bottom: 3rem;
}

.faq-title {
    font-size: 70px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1.5rem;
    text-align: center;
}

.faq-intro {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.6;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin: 0.5rem 0;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: transparent;
}

.faq-icon {
    font-size: 20px;
    font-weight: 100;
    color: #000000;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-question h3 {
    font-size: 15px;
    font-weight: 500;
    color: #333333;
    margin: 0;
    line-height: 1.4;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: transparent;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0;
    margin-top: 1rem;
}

.faq-answer p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    padding-top: 0;
}

/* FAQ Images */
.faq-images {
    position: absolute;
    top: 0;
    left: -100px;
    right: -100px;
    height: 600px;
    pointer-events: none;
}

.faq-image {
    position: absolute;
    overflow: hidden;
    pointer-events: auto;
}

.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Left side image */
.faq-image-left {
    bottom: 0;
    left: -90px;
    width: 310px;
    height: 600px;
}

/* Right side image */
.faq-image-right {
    top: 0;
    right: -125px;
    width: 300px;
    height: 550px;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
    .faq-content {
        flex-direction: column;
        align-items: center;
    }

    .faq-left {
        flex: none;
        width: 100%;
        margin: 0;
        order: 2;
    }

    .faq-title {
        font-size: 2.5rem;
    }

    .faq-images {
        display: none;
    }

    .faq-image-1,
    .faq-image-2,
    .faq-image-3,
    .faq-image-4,
    .faq-image-5,
    .faq-image-6 {
        width: 120px;
        height: 80px;
    }

    .faq-image-2,
    .faq-image-5 {
        width: 140px;
        height: 100px;
    }
}







.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-medium);
    border-radius: var(--border-radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

















































/* Footer */
.footer {
    background: #fff;
    color: #000;
    padding-left: 5%;
    padding-right: 5%;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

.footer .container {
    max-width: 1350px; /* thoda zyada space diya */
    margin: 0 auto;
    padding: 60px 0 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 100px; /* gap thoda bara */
}

/* Left Side */
.footer-left {
    flex: 1.3; /* width zyada */
    max-width: 600px; /* left portion aur wide */
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 55px; /* logo ka size bara */
    width: auto;
    display: block;
}

.contact-details p {
    margin: 0;
    font-size: 14px;
    color: #3d3d3d;
}

.footer-tagline {
    margin: 30px 0;
    width: 100%;
}

.footer-tagline h3 {
    font-size: 34px;
    font-weight: 500;
    color: #000;
    line-height: 1.2;
}

.footer-tagline h3 em {
    font-style: italic;
    font-size: 36px;
    font-weight: 700;
    color: #000;
}

.social-button {
    margin-top: -25px;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 10px 22px;
    font-size: 15px;
    background: #fff;
    cursor: pointer;
}

.btn-social i {
    font-size: 15px;
}

/* Right Side */
.footer-right {
    flex: 2;
}

.footer-sections {
    display: flex;
    gap: 80px;
    margin-bottom: 30px;
    width: 100%;
    justify-content: flex-start;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 15px;
    color: #333;
    text-decoration: none;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #000;
}

/* Disclaimer */
.footer-disclaimer {
    width: 92%;
    color: #555;
    line-height: 1.4;
    margin-top: 12px;
}

.footer-disclaimer p {
    font-size: 14px;
    font-weight: 300;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid #ddd;
    padding-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-bottom-left p {
    margin: 0;
    font-size: 14px;
    color: #000;
}

.footer-legal {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.footer-legal a {
    color: #000;
    text-decoration: none;
    margin: 0 5px;
}

.footer-legal span {
    margin: 0 5px;
    color: #999;
}

/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */





















































/* -=-=-=-=-=-=-=-=-=-= Responsive Design -=-=-=-=-=-=-=-=-=-=-=*/

@media (max-width: 1100px) {

    .nav-list {
        gap: 12px;
    }

    .nav-link {
        font-size: 10px;
    }

    .logo-img {
        height: 48px;
        width: 170px;
    }



    .btn-primary {
        padding: 8px 18px;
        font-size: 14px;
    }
}

@media (max-width: 1200px) {


    .nav-list {
        gap: 15px;
    }

    .nav-link {
        font-size: 11px;
    }

    .logo-img {
        height: 50px;
        width: 180px;
    }


}

@media (max-width: 1000px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }



    .nav-list {
        margin-left: 0;
    }

    .logo-img {
        height: 45px;
        width: 160px;
    }



    .btn-primary {
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .services-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-left: 0;
        margin-right: 0;
    }

    .services-sidebar {
        position: static;
        order: -1;
        margin-left: 100px;
        margin-right: 100px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .logo-img {
        height: 30px;
        width: 150px;
    }

    .header.scrolled .logo-img {
        height: 45px;
    }
}

@media (max-width: 768px) {

    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }




































    /* -=-=-=-=-=-=-=-=- Fix hamburger menu width and height -=-=-=-=-=-=-=-=-=-=-=*/


    .mobile-menu-toggle {
        margin-right: 5px;
        margin-top: -8px;
        width: 30px;
        height: 30px;
        max-width: 30px;
        flex-shrink: 0;
    }

    .nav-menu.active {
        width: 90vw !important;
        overflow-x: hidden;
    }

    .reviews-section {
        overflow: hidden;
    }

    .reviews-container {
        overflow: hidden;
        width: 100%;
    }

    .reviews-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
        overflow: hidden;
    }

    .reviews-left {
        width: 100% !important;
        margin-left: 0 !important;
        text-align: center;
    }

    .reviews-right {
        width: 100% !important;
        text-align: center;
    }

    .swiper {
        width: 100%;
        padding-bottom: 50px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-header {
        margin-bottom: 70px;
    }

    .steps-container {
        flex-direction: column;
        margin-top: 0.5rem;
        gap: 1.5rem;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-left {
        max-width: none;
        text-align: center;
    }
    
    .footer-tagline {
    width: 100%;
}

    .footer-right {
        align-items: center;
    }

    .footer-sections {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
        align-items: flex-start;
        justify-content: space-between;
    }

    .footer-section {
        text-align: left;
        min-width: auto;
        flex: 0 0 45%;
    }

    .footer-section:nth-child(3) {
        flex: 0 0 100%;
        margin-top: 1rem;
    }

    .footer-disclaimer {
        text-align: left;
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-bottom-left {
        order: 1;
    }

    .footer-bottom-right {
        order: 2;
        justify-content: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    align-items: center;
}

.footer-logo img {
    height: 38px; /* logo ka size bara */
    width: auto;
    display: block;
}

    .logo-img {
        align-items: center;
        height: 30px;
        width: 120px;
    }

    .header::after {
        width: 85%;
    }


    .btn-primary {
        padding: 8px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    section {
        padding: 60px 0;
    }

    .benefit-card {
        height: auto;
        min-height: 250px;
        padding: 2rem;
    }

    .benefit-icon {
        width: 35px;
        height: 35px;
    }

    .benefit-icon svg {
        width: 20px;
        height: 20px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .team-section .section-title {
        font-size: 36px;
        margin-bottom: 40px;
        text-align: center;
        width: 100%;
        white-space: nowrap;
    }

    .how-it-works-section .section-title {
        margin-top: 40px;
        font-size: 36px;
        margin-bottom: 10px;
    }

    .team-section {
        padding: 4rem 0;
        min-height: auto;
        height: auto;
        position: relative;
        padding-bottom: 8rem;
    }

    .team-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 3rem !important;
        width: 100% !important;
        position: relative !important;
        z-index: 10 !important;
        height: auto !important;
        grid-template-columns: none !important;
    }

    .team-left {
        padding-right: 0 !important;
        width: 100% !important;
        max-width: 600px !important;
        order: 1 !important;
    }

    .team-right {
        width: 90vw !important;
        max-width: 600px !important;
        padding: 0 1rem !important;
        order: 2 !important;
        margin: 0 auto !important;
    }

    .team-intro {
        text-align: center;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 90vw;
    }

    .promise-section {
        text-align: center;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 90vw;
    }

    .achievements-section {
        text-align: center;
        width: 100%;
        max-width: 90vw;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        margin-top: 1rem;
    }

    .partnership-card {
        display: block;
        margin: 2rem auto;
        width: 85vw;
        position: absolute;
        top: -70px;
        left: 50%;
        transform: translateX(-50%);
        padding: 1.5rem;
        height: 620px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.288);
    }

    .partnership-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
        width: 100%;
    }

    .partnership-left {
        width: 100%;
        order: 1;
    }

    .partnership-right {
        width: 100%;
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .partnership-title {
        font-size: 2.5rem;
        margin-top: 0;
        text-align: center;
    }

    .partnership-badge {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .partnership-description {
        text-align: center;
        padding: 0 1rem;
        width: 80vw;
        box-sizing: border-box;
        margin: 0 auto;
    }

    .partnership-description p {
        font-size: 1rem;
        line-height: 1.5;
        margin: 0;
    }

    .partnership-action {
        margin-top: 1rem;
    }

    .btn-partnership {
        background: var(--primary-color);
        color: #000000;
        padding: 12px 20px;
        font-size: 16px;
        border-radius: 25px;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        text-decoration: none;
        font-weight: 500;
    }

    .partner-logos {
        order: 3;
        margin-top: 2rem;
        margin-top: 10px;
        justify-content: center;
        gap: 0.5rem;
        margin-left: 0;
        flex-direction: row !important;
        flex-wrap: nowrap;
        display: flex;
        align-items: center;
    }

    .partner-logo {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
    }

    .partner-logo img {
        max-width: 70px;
        height: auto;
        object-fit: contain;
    }

    .logo-arrow {
        display: none;
    }

    .partnership-card {
        overflow: hidden;
        word-wrap: break-word;
    }

    .partnership-description p {
        font-size: 1rem;
        line-height: 1.5;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .promise-section {
        text-align: center;
        margin-bottom: 2rem;
    }

    .achievements-section {
        text-align: center;
    }

    .team-cards {
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .team-card {
        width: 28vw;
        height: 60vw;
        max-width: 120px;
        max-height: 280px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-background {
        display: none;
    }

    .team-background-mobile {
        position: absolute;
        bottom: -100px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 0;
        height: 35%;
        width: 100%;
        display: block;
    }

    .team-background-mobile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
    }

    .logo-img {
        height: 32px;
        width: 120px;
    }

    .header-container {
        width: 85%;
        margin: 16px 7.5%;
    }

    .header::after {
        width: 85%;
    }



    .nav-menu.active {
        padding: 1.5rem;
        width: 90vw !important;
        overflow: hidden;
    }

    .nav-menu.active .nav-link {
        font-size: 1rem;
        padding: 0.75rem 0;
    }

    .btn-primary {
        padding: 6px 12px;
        font-size: 13px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .services-faq-section {
        margin-top: 250px;
    }

}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.animate-slideInLeft {
    animation: slideInLeft 0.6s ease-out;
}

.animate-slideInRight {
    animation: slideInRight 0.6s ease-out;
}

.animate-slideInDown {
    animation: slideInDown 0.6s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}













/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus Styles */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Remove focus outline from logo */
.logo a:focus {
    outline: none;
}

/* Mobile Menu Styles */
.nav-menu.active {
    display: flex !important;
    position: fixed;
    margin: 20px !important;
    top: 0;
    width: 90vw;
    background: var(--white);
    flex-direction: column;
    z-index: 9999;
    padding: 0;
    height: 93vh;
    border-radius: 20px;
}

.nav-menu.active .nav-list {
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    height: calc(100vh - 120px);
    min-height: calc(100vh - 120px);
    max-height: calc(100vh - 120px);
    background: transparent;
    position: relative;
    z-index: 1;
    overflow-y: auto;
    align-items: flex-start;
    justify-content: flex-start;
    flex: 1;
}

.nav-menu.active .nav-link {
    color: #000000;
    font-size: 1rem;
    padding: 1rem 2rem;
    border-bottom: none;
    width: 100%;
    text-align: left;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.nav-menu.active .nav-dropdown {
    width: 100%;
    text-align: left;
}

.nav-menu.active .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    background: transparent;
    margin-top: 0;
    border-radius: 0;
    padding-left: 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    text-align: left;
}

.nav-menu.active .nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 200px;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.nav-menu.active .dropdown-arrow {
    transition: transform 0.3s ease;
}

.nav-menu.active .nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-menu.active .dropdown-menu li {
    padding: 0.5rem 0;
    list-style: none;
    position: relative;
}

.nav-menu.active .dropdown-menu li::before {
    content: "•";
    position: absolute;
    left: -1rem;
    color: #000000;
}

.nav-menu.active .dropdown-menu a {
    color: #000000;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

/* Mobile Menu Close Button */
.nav-menu.active .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 40px;
    color: #000000;
    cursor: pointer;
    z-index: 2;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    text-decoration: none;
    transition: transform 0.3s ease;
    font-weight: 400;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.nav-menu.active .close-btn:hover {
    transform: rotate(90deg);
}

/* Mobile Menu Logo */
.nav-menu.active .mobile-logo {
    padding: 1.5rem 2rem 1rem 2rem;
    border-bottom: 1px solid #f0f0f0;
    background: var(--white);
    flex-shrink: 0;
    text-align: left;
    margin-top: 1rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.nav-menu.active .mobile-logo img {
    height: 45px;
    width: auto;
    max-width: 100%;
    margin-left: 0;
    margin-right: auto;
    align-self: flex-start;
}

/* Mobile Menu Contact Button */
.nav-menu.active .mobile-contact-btn {
    position: fixed;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #000000;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    width: 60%;
    max-width: 200px;
    justify-content: center;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.nav-menu.active .mobile-contact-btn::after {
    content: "→";
    font-size: 1rem;
}

/* Hide contact button in mobile menu */
.nav-menu.active .header-actions {
    display: none;
}

/* Mobile Menu Toggle Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--white);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */




















































/*-=-=-=-=-=-=-=-=-=-= our sectors hero -=-=-=-=-=-=-=-=-*/

.city-hero {
    height: 123vh;
    position: relative;
    display: flex;
    justify-content: center;
}

.sector-hero-content {
    width: 100%;
    display: flex;
}

.sector-hero-image {
    display: flex;
    width: 50%;
    top: 0;
}

.sector-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sector-hero-text {
    margin: auto;
    padding-left: 60px;
    left: 0;
    width: 55%;
    color: #ffffff;
    animation: slideuphero 1.5s;
}

.badge {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.badge svg {
    width: 22px;
    height: 22px;
    border-radius: 25px;
    font-family: Arial, sans-serif;
    font-size: 16px;
}

.badge-svg {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background-color: #398be96b;
    border-radius: 50px;
}

.badge-text {
    color: var(--primary-color);
    background-color: #398be96b;
    padding: 7px 15px;
    border-radius: 25px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.sector-hero-title {
    font-size: 50px;
    font-weight: 400;
    line-height: 50px;
    margin-bottom: 35px;
}

.sector-underlined-text {
    line-height: 40px;
}

.sector-hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0;
}

.sector-hero-button {
    margin-top: 30px;
}

.sector-hero-button .btn {
    padding: 13px 24px;
    border-radius: 25px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */































































/*=-=-=-=-=-=-=-= Nos gérants à Paris et alentours Section =-=-=-=-=-=-=-=*/

.managers-section {
    position: relative;
    height: 50vh;
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.managers-section-title {
    color: var(--brown-color);
    font-size: 70px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.managers-subtitle {
    color: var(--subtitle-color);
    font-family: "Newsreader", serif;
}

.profiles {
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile {
    position: relative;
    margin-left: -10px;
    /* overlap effect */
    text-align: center;
}

.profile img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
}

.profile-name {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 500;
}

.tick {
    position: absolute;
    margin-top: -23px;
    right: 2px;
    background: var(--primary-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tick svg {
    width: 12px;
    height: 12px;
    fill: black;
}

.counter {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 30px;
    color: #000;
}

.counter-number {
    font-size: 40px;
    font-weight: 700;
}

.counter-text {
    font-size: 14px;
    line-height: 17px;
}

@media (max-width: 768px) {


    .city-hero {
        flex-direction: column;
        padding: 10px;
    }

    .sector-hero-content {
        flex-direction: column;
        width: 100%;
    }

    .sector-hero-image {
        width: 40vh;
        height: 40%;
        margin-left: 5%;
        order: -1;
        /* force image on top */
    }

    .sector-hero-image img {
        width: 100%;
        object-fit: cover;
    }

    .badge {
        justify-content: center;
    }

    .sector-hero-text {
        width: 100%;
        margin: 0;
        margin-top: -55px;
        padding: 0;
        text-align: center;
    }

    .sector-hero-title {
        font-size: 38px;
        line-height: 36px;
        margin-bottom: 30px;
        text-align: center;
    }

    .sector-hero-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 30px;
        text-align: center;
    }

    .sector-hero-button {
        margin-bottom: 30px;
    }

    .managers-section {
        height: 40vh;
    }

    .managers-section-title {
        text-align: center;
        font-size: 35px;
        margin-bottom: 25px;

    }
}

/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */


























































































/*-=-=-=-=-=-=-=-=-=-=-= faqs =-=-=-=-=-=-=-=-=-=-=-*/

.blog-nav-list .nav-link {
    color: #252525;
}

/* ✅ Hero Section */
.faq-hero {
    height: 60vh;
    background-image: url('asserts/pexels-fauxels-3184652.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.services-hero {
    background-image: url('asserts/pexels-pixabay-271624.webp');
}

.footer-page-hero {
    height: 50vh;
    padding-top: 3vh;
    background-image: none;
    background-color: #000;
}

.contact-page-hero {
    background-image: url('asserts/186588-min.webp');
}

.faq-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.651);
    z-index: 1;
}
.faq-hero-content {
    position: relative;
    z-index: 10;
    color: #ffffff;
    text-align: center;
    padding: 0 20px;
}
.faq-hero-content p {
    font-size: 1.2rem;
    margin-top: 15px;
    font-weight: 100;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}
.faq-hero-content h2 {
    font-size: 60px;
    margin-top: 20px;
    font-weight: 100;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}
.faq-hero-image2 {
    z-index: 2;
    position: absolute;
    height: 60%;
    bottom: 0;
}

/* ✅ FAQ Section */
.faqs-section-1 {
    width: 100%;
    background: var(--white);
    border-top-left-radius: 25px;
    margin-top: -20px;
    border-top-right-radius: 25px;
    padding: 50px;
}
.faq-page-container {
    display: flex;
    height: auto;
}
.faq-page-left {
    width: 40%;
    height: 60vh;
    position: sticky;
    top: 120px;
    align-items: center;
    padding: 20px;
    padding-top: 60px;
    color: rgb(0, 0, 0);
}
.faq-page-left h2 {
    color: var(--brown-color);
    font-weight: 600;
    font-size: 70px;
}
.faq-page-left em {
    color: #000;
}
.faq-page-left p {
    font-size: 1.1rem;
    font-weight: 100;
    margin-bottom: 35px;
}
.faq-page-right {
    width: 60%;
    height: 80vh;
    padding: 20px;
    padding-top: 60px;
    overflow: hidden;
}

/* ✅ Mobile Responsive */
@media (max-width: 991px) {
  .faq-hero {
    height: 50vh;
  }

  .faq-hero-content h2 {
    font-size: 40px;
    width: 90%;
  }

  .faq-hero-content p {
    font-size: 1rem;
    width: 90%;
  }

  .faq-hero-image2 {
    width: 100%;
    height: auto;
  }

  .faq-page-container {
    flex-direction: column; /* stack upar neeche */
  }

  .faq-page-left {
    width: 100%;
    height: auto;
    position: relative; /* sticky hatao mobile pe */
    top: unset;
    padding: 20px;
    text-align: center;
  }

  .faq-page-left h2 {
    font-size: 40px;
  }

  .faq-page-left p {
    font-size: 1rem;
  }

  .faq-page-right {
    width: 100%;
    height: auto;
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .faq-hero-content h2 {
    font-size: 28px;
  }

  .faq-hero-content p {
    font-size: 0.9rem;
  }

  .faq-page-left h2 {
    font-size: 28px;
  }

  .faq-page-left p {
    font-size: 0.9rem;
  }
}

/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */








































































/*-=-=-=-=-=-=-=-=-= blog section =-=-=-=-=-=-=-=-=-=-=*/

.header-grey-background {
    background: #F8F8F8;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
}

.blog-logo {
    display: block;
}

.container-blog {
      display: flex;
      max-width: 1300px;
      margin: auto;
      margin-top: 9%;
      padding: 20px;
      gap: 30px;
    }

    /* ✅ Sidebar */
    .sidebar {
      width: 25%;
      position: sticky;
      top: 20px;
      margin-left: 10px;
      height: fit-content;
    }

    .about-box {
      background: #f7f7f7;
      border-radius: 20px;
      padding: 20px;
      display: flex;
      gap: 10px;
      margin-bottom: 30px;
    }

    .about-box img {
      width: 35px;
      height: 35px;
      margin-bottom: 10px;
    }

    .about-box p {
      font-size: 16px;
        line-height: 1.5;
      color: #333;
    }

    /* Search */
    .search-box {
      margin-bottom: 30px;
    }

    .search-box h3 {
      margin-bottom: 10px;
      font-size: 23px;
      color: #000;
    }

    .search-form {
      display: flex;
      overflow: hidden;
      width: 100%;
      margin-top: 10px;
    }

    .search-form input {
      border: 1px solid #ccc;
      padding: 13px;
      border-radius: 10px;
      flex: 1;
      outline: none;
    }

    .search-form button {
  border-radius: 10px;
  margin-left: 10px;
  font-size: 17px;
  background: var(--primary-color);
  border: none;
   color: var(--white);
  padding: 8px 13px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.search-form button:hover {
  background-color: #000;
  color: #fff;
}


    /* Latest Posts */
    .latest-posts h3 {
      margin-bottom: 15px;
      font-size: 23px;
      color: #000;
    }

    .latest-post {
  display: flex;
  margin-bottom: 20px;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.latest-post:hover {
  background-color: #FFF8DB; /* halka grey ya apni marzi ka color */
  transform: scale(0.97); /* thoda chota ho jayega jaise press effect */
}

    .latest-post img {
      width: 100px;
      height: 80px;
      border-radius: 8px;
      object-fit: cover;
    }

    .latest-post div {
      font-size: 14px;
      color: #000;
    }

    .latest-post span {
      display: block;
      font-size: 12px;
      color: #777;
    }

    /* ✅ Blog Content */
    .blog-content {
      width: 75%;
    }

    .blog-post {
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 0.8s ease forwards;
}


/* sequence delay har post ke liye */
.blog-post:nth-child(1) {
  animation-delay: 0.2s;
}
.blog-post:nth-child(2) {
  animation-delay: 0.5s;
}
.blog-post:nth-child(3) {
  animation-delay: 0.8s;
}
.blog-post:nth-child(4) {
  animation-delay: 1.1s;
}
/* agar aur posts hain to isi tarah delay barhao */

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


    .blog-content h1 {
      font-size: 70px;
      margin-bottom: 50px;
      margin-top: -35px;
      color: var(--brown-color);
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

.blog-post {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  cursor: pointer;
}

.blog-post img {
  width: 100%;
  height: 150px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-post:hover img {
  transform: scale(1.1);
}



    .blog-post .info {
      padding: 15px;
    }

    .blog-post h2 {
      font-size: 18px;
      margin-bottom: 5px;
      font-weight: 400;
      color: #000;
    }

    .blog-post span {
      font-size: 13px;
      color: #464646;
      font-weight: 300;
    }

    /* ✅ Mobile Responsive Fix */
@media (max-width: 991px) {

    .search-form input {
      width: 73vw;
    }

  .container-blog {
    display: flex;
    flex-direction: column; /* stack vertically */
  }

  .blog-content h1 {
    font-size: 35px;
    margin-top: 70px;
    }

  .blog-content {
    width: 100%;
    order: 1; /* blog pehle aayega */
    text-align: center;
    padding: 0;
    margin-bottom: 30px;
  }

  .sidebar {
    width: 100%;
    margin-left: 0;
    position: relative;
    top: unset;
    order: 2; /* sidebar neeche aayega */
  }
}

/* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- */













/*-=-=-=-=-=-=-=-=-=-=-=-=-= Contact page =-=-=-=-=-=-=-=-=-=-=-=-=-*/

.contact-section-contact {
    margin-top: 50px;
    margin-bottom: 80px;
}

.audit-form-container-contact {
    height: 580px; /* default (desktop) */
}

/* button section */
.contact-btn-section {
    margin-top: -50px;
}

.contact-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 80px;
    color: #000;
}

.contact-bottom-2 {
    display: flex;
    flex-wrap: wrap;   /* ✅ wrap enable */
    justify-content: center; /* ✅ center align row wise */
    gap: 30px; /* gap thoda adjust */
}

.contact-page-hero-image2 {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* crop karega but blur nahi */
    object-position: center;
}


/* 🔹 Mobile Responsive Fix */
@media (max-width: 768px) {

    

    .contact-bottom {
    margin-top: 250px;
}


    .contact-section-contact {
        margin-top: 40px;
}

    .audit-form-container-contact {
        height: auto; /* content ke hisaab se adjust */
        min-height: 400px; /* thoda safe zone */
    }

    .contact-bottom {
        margin-bottom: 40px; /* kam spacing */
        text-align: center;
    }

    .contact-bottom-2 {
        width: 100%;
        padding: 20px;
        gap: 20px;
        align-items: center;
    }
}

@media (max-width: 380px) {

    .audit-form-container {
        margin-top: 250px;
    }

    .audit-form-container-contact {
        min-height: 350px;
        padding: 1rem; /* thoda breathing space */
    }

    .contact-bottom {
        margin-bottom: 30px;
    margin-top: 400px;
    }

    .contact-bottom-2 {
        gap: 15px;
    }

    .blog-section {
        margin-top: 280px;
    }
}






































/*=-=-=-=-=-=-=-=-=-=-=-=-= Services css =-=-=-=-=-=-=-=-=-=-=-=-=*/

.services-page-section-1 {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.services-page-section-2 {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 70px;
}

.services-section-1 {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.services-section-1 .section-title {
  color: var(--brown-color);
  font-size: 70px;
  line-height: 1.1;
}

.services-section-1 .section-title em {
  color: var(--subtitle-color);
  font-size: 70px;
  font-style: italic;
}

.services-section-1 .section-subtitle {
  color: #000;
  font-size: 20px;
  width: 60%;
  margin-top: 15px;
  line-height: 1.6;
}

/* Parent layout */
.left-sticky-section-parent {
  display: flex;
  align-items: flex-start;
  gap: 100px;
  padding: 60px 12%;
  background: #fff;
  flex-wrap: wrap; /* mobile ke liye helpful */
}

/* Left side (image + heading) */
.left-sticky-section-child-1 {
  flex: 1;
  min-width: 450px;
  position: sticky;
  top: 20%;
}

.left-sticky-section-child-1 h2 {
  font-size: 40px;
  color: #000;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 600;
}

.left-sticky-section-child-1 img {
  width: 100%;
  max-width: 500px;
  height: 330px;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.left-sticky-section-child-1-alt img {
  height: 270px;
}

/* Right side (content) */
.left-sticky-section-child-2 {
  flex: 1.5;
  min-width: 280px;
}

.left-sticky-section-child-2 h4 {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.3;
  color: #000;
}

.left-sticky-section-child-2 p {
  font-size: 16.5px;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Rating section */
.left-sticky-section-child-2-rating-section {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 25px 0;
  border-radius: 10px;
  line-height: 1;
}

.left-sticky-section-child-2-rating-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: flex;
  color: #000;
}

.left-sticky-section-child-2-rating-icon-text p {
  color: #000;
  margin-top: 12px;
  line-height: 0.2;
  font-size: 14px;
}

/* Last section (image + text) */
.left-sticky-section-child-2-last-section {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 30px;
}

.left-sticky-section-child-2-last-section img {
  width: 230px;
  height: 150px;
  border-radius: 10px;
  object-fit: cover;
  border: solid 1px rgb(227, 227, 227);
}

.left-sticky-section-child-2-last-section-text h4 {
  margin-bottom: 10px;
  font-size: 20px;
}

.left-sticky-section-child-2-last-section-text span {
  color: #0265D8;
}

.left-sticky-section-child-2-last-section-text p {
  margin: 5px 0;
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-section-1 .section-title {
    font-size: 50px;
  }

  .services-section-1 .section-title em {
    font-size: 50px;
  }

  .services-section-1 .section-subtitle {
    width: 70%;
    font-size: 18px;
  }

  .left-sticky-section-parent {
    gap: 30px;
    padding: 40px 5%;
  }

  .left-sticky-section-child-1 h2 {
    font-size: 38px;
  }

  .left-sticky-section-child-2 h4 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .services-section-1 .section-title {
    font-size: 35px;
  }

  .services-section-1 .section-title em {
    font-size: 35px;
  }

  .services-section-1 .section-subtitle {
    width: 100%;   /* full width on mobile */
    font-size: 16px;
    text-align: center;
  }

  .left-sticky-section-parent {
    flex-direction: column;
    padding: 30px 20px;
    gap: 40px;
  }

  .left-sticky-section-child-1 {
    position: static; /* mobile pe sticky hata diya */
    text-align: center;
    min-width: unset;
  }

  .left-sticky-section-child-1 img {
    max-width: 100%;
    margin: 0 auto;
    height: auto;
  }



  .left-sticky-section-child-2-last-section {
    flex-direction: column;
  }

  .left-sticky-section-child-2-last-section img {
    width: 100%;       /* full width on mobile */
    height: auto;      /* maintain aspect ratio */
    max-width: 500px;  /* limit for large screens */
  }

  .left-sticky-section-child-2-last-section-text {
    margin-top: 15px;
    text-align: start;
  }
}





































