header {
    position: fixed;
    width: 100%;
    height: 100px;
    padding: 1rem;
    top: 0;
    z-index: 99999;
    transition: all 0.4s ease;
    font-family: var(--font-header);
    color: #fff;
}

header.sticky {
    backdrop-filter: blur(12px);
    background: linear-gradient(135deg, rgba(21, 68, 32, 1) 37%, rgba(0, 7, 5, 1));
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.4);
}

.logo-content {
    width: 80px;
    padding: 5px;
}

.nav-desktop {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.nav-desktop ul {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.nav-desktop .nav-lks {
    color: var(--white);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1;
}

.nav-desktop .nav-lks:hover {
    color: #EDC500;
    transition: ease-out 0.1s;
}

.actions {
    display: flex;
    gap: 20px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: #EDC500;
    display: none;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    width: 200px;
}

.menu-caret {
    font-size: 12px;
    margin-left: 6px;
}

.services-dropdown-menu {
    width: 460px;
    display: none;
    flex-direction: row;
    gap: 0;
    padding: 12px;
    background: #f3f6f4;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.service-group {
    width: 50%;
    padding: 8px;
}

.service-group-title {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 700;
    color: #154420;
}

.services-dropdown-menu a {
    border-radius: 6px;
    padding: 8px 10px;
    margin-bottom: 4px;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu a {
    font-size: 16px;
    padding: 10px 15px;
    color: var(--color-primary-900);
    font-weight: 600;
}

.dropdown-menu a:hover {
    background: rgba(0, 0, 0, 0.25);
    color: var(--color-surface);
    transition: ease-out 0.1s;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 8px;
    width: 45px;
    background: white;
    margin: 4px 0;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -500px;
    width: 500px;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 61, 46, 1), rgba(0, 7, 5, 1));
    color: white;
    transition: 0.4s ease;
    padding: 80px 20px 20px 20px;
    z-index: 99999;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
}

.mobile-menu.active {
    right: 0;
}

.mobile-btn-box {
    width: 100%;
    display: flex;
    row-gap: 20px;
    flex-direction: column;

}

.mobile-content {
    display: flex;
    flex-direction: column;
    gap: 85px;
    width: 100%;
    padding: 0 20px 0 40px;
}

.mobile-header img {
    width: 100px;
}

.mobile-nav {
    padding: 0;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-nav li {
    margin: 15px 0;
}

.mobile-actions .full {
    width: 100%;
    display: block;
    margin-bottom: 10px;
}

.mobile-contact {
    margin-top: 30px;
    font-size: 25px;
    font-weight: 300;
}

.mobile-contact p {
    font-size: 26px;
}

.mobile-contact p i {
    margin-right: 10px;
}

.nav-lks.active,
.mobile-nav a.active {
    color: var(--color-accent-500);
    font-weight: 800;
    /* font-size: 22px; */
}

.mobile-nav a {
    font-size: 18px;
    transition: 0.2s;
}

/* .mobile-nav a.active {
    font-size: 20px;
} */

.mobile-nav .nav-lks {
    font-size: 2rem;
}

.mobile-submenu-item {
    margin: 0;
}

.mobile-submenu-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: 0;
    color: inherit;
    padding: 0;
    text-align: left;
}

.mobile-submenu {
    list-style: none;
    padding-left: 12px;
    margin: 10px 0 0 0;
    display: none;
    border-left: 2px solid rgba(255, 255, 255, 0.25);
}

.mobile-submenu.open {
    display: block;
}

.mobile-submenu li {
    margin: 8px 0;
}

.mobile-submenu .nav-lks {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.95;
}

.mobile-submenu-heading {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-top: 14px;
    opacity: 0.8;
}

.mobile-btn-box .button {
    font-size: 1.5rem;
    min-height: 5rem;
}

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.close-menu {
    background: transparent;
    border: none;
    color: white;
    font-size: 75px;
    cursor: pointer;
    line-height: 1;
}

.close-menu:hover {
    color: var(--secondary);
    transform: scale(1.1);
    transition: 0.2s;
}

.hero {
    position: relative;
    height: 100%;
    width: 100%;
    background: url('../images/bg.png') center/ cover no-repeat;
    display: flex;
    align-items: center;
    padding: 2rem 2rem 0 2rem;
    overflow-x: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 7, 5, 1), rgba(21, 68, 32, 1) 40%, rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.hero-glass {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-glass::before,
.hero-glass::after {
    content: "";
    position: absolute;
    top: 30%;
    left: 10%;
    width: 1200px;
    height: 1200px;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.010) 0%,
            rgba(255, 255, 255, 0.010) 20%,
            rgba(255, 255, 255, 0.010) 40%,
            transparent 30%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    will-change: transform;
    opacity: 0;
}

.hero-glass::after {
    animation-delay: 0.6s;
}

@keyframes glassWave {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.hero-glass.active::before {
    animation: glassWave 2.5s ease-out forwards;
}

.hero-glass.active::after {
    animation: glassWave 2.5s ease-out forwards;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5rem;
}

.hero-left {
    animation: fadeUp 1s ease forwards;
}

.text-slider {
    position: relative;
    min-height: 280px;
}

.text-slide {
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
    pointer-events: none;
}

.text-slide.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
    pointer-events: auto;
    width: 100%;
}

.text-slide.exit {
    opacity: 0;
    transform: translateY(-40px);
}

.animate-text {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: letterIn 0.5s forwards;
}

@keyframes letterIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.yellow-word span {
    color: #ffc107 !important;
}

.hero-text {
    margin: 20px 0;
    /* opacity: 0.8;
    font-size: 20px; */
}

.search-bar {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    padding: 15px;
    gap: 10px;
    color: #0f3d2e;
    margin-top: 2rem;
}

.search-bar .dropdown {
    padding: 10px 20px;
    border-right: 1px solid #a83232;
    position: relative;
}


.search-field {
    position: relative;
    flex: 1;
    border-right: 1px solid #ddd;
    padding: 5px 15px;
}

.search-field:last-child {
    border-right: none;
}

.search-field input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
}

.search-bar .dropdown:last-child {
    border-right: none;
}

.suggestions {
    position: absolute;
    top: 120%;
    left: 0;
    width: 100%;
    background: #f1f8f4;
    border-radius: 15px;
    list-style: none;
    padding: 5px 0;
    display: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.suggestions li {
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 15px;
}

.suggestions li:hover {
    background: #e0f2e9;
    border-radius: 15px;
}

.search-btn {
    background: #154420;
    color: white;
    padding: 15px 25px;
    border-radius: 15px;
    border: none;
}

.hero-right {
    position: relative;
    max-width: 500px;
    display: flex;
    align-items: center;
}

.hero-right img {
    object-fit: contain;
    position: relative;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease;
}

.hero-right img.hide {
    opacity: 0;
    transform: translateX(80px);
}

.hero-right img.show {
    opacity: 1;
    transform: translateX(0);
}

.card-banner {
    position: absolute;
    width: auto;
    padding: 15px;
    border-radius: 15px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
}

.card-inner {
    display: flex;
    flex-direction: column;
}

.card-inner .number {
    font-size: 2.25rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 1px;
    line-height: 1;
}

.num1 {
    color: #154420;
}

.num2 {
    color: #921913;
}

.num3 {
    color: #EDC500;
}

.card-inner .denomination {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin: 0;
    line-height: 1.1;
    letter-spacing: 1px;
}

.card1 {
    top: 220px;
    left: -15px;
    animation: floatX 4s infinite alternate;
}

.card2 {
    top: 322px;
    right: -25px;
    animation: floatY 5s infinite;
}

.card3 {
    bottom: 100px;
    left: 65px;
    animation: floatX 6s infinite alternate;
}

.card-banner i {
    font-size: 20px;
    padding: 10px;
    border-radius: 10px;
}

.svg-icon-wrap {
    font-size: 20px;
    padding: 5px 10px;
    border-radius: 10px;
}

.svg-iw1 {
    background: #D0F3D8;
    color: #2e7d32;
}

.card1 i {
    background: #D0F3D8;
    color: #2e7d32;
}

.card2 i {
    background: #FED7D6;
    color: #921913;
}

.card3 i {
    background: #FFF5C3;
    color: #f9a825;
}

@keyframes floatY {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes floatX {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(20px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-bottom {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 160px;
    border-radius: 0 0 150px 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-down {
    width: 30px;
    height: 30px;
    border-bottom: 3px solid #1e5f3a;
    border-right: 3px solid #1e5f3a;
    transform: rotate(45deg);
    animation: bounce 1.5s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0) rotate(45deg);
    }

    50% {
        transform: translateY(10px) rotate(45deg);
    }
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 25px;
    height: 25px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim {
    0% {
        transform: translate(-50%, 0) rotate(45deg);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, 10px) rotate(45deg);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, 0) rotate(45deg);
        opacity: 1;
    }
}

/* ============== expertise ==============*/
.expertise-section {
    padding: 80px 5%;
    background: #f5f5f5;
    text-align: center;
}

.cards-container {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.card {
    background: #cfe5d6;
    padding: 25px;
    border-radius: 15px;
    width: 260px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.glass-effect {
    position: relative;
    overflow: hidden;
    transition:
        transform 0.5s cubic-bezier(.2, .8, .2, 1),
        background 0.4s ease,
        color 0.3s ease,
        box-shadow 0.4s ease;
    will-change: transform;
    transition: all 0.4s ease;
}

.card-innerr {
    overflow: hidden;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.glass-effect::before,
.glass-effect::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 80px;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.25),
            rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    transform: rotate(25deg) translateX(-150%);
    opacity: 0;
    pointer-events: none;
}

.glass-effect::after {
    transform: rotate(-25deg) translateX(150%);
}

.glass-effect:hover::before {
    animation: glassMove1 1s ease forwards;
}

.glass-effect:hover::after {
    animation: glassMove2 1s ease forwards;
}

@keyframes glassMove1 {
    0% {
        transform: rotate(25deg) translateX(-150%);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        transform: rotate(25deg) translateX(150%);
        opacity: 0;
    }
}

@keyframes glassMove2 {
    0% {
        transform: rotate(-25deg) translateX(150%);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        transform: rotate(-25deg) translateX(-150%);
        opacity: 0;
    }
}

.icons-btn {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.icon-box {
    width: 45px;
    height: 45px;
    background: #154420;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-box i {
    color: white;
    font-size: 18px;
}

.card:hover .icon-box {
    background: transparent;
}

.card:hover .icon-box i {
    color: #fff;
    font-size: 2rem;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    position: relative;
    font-weight: 800;
}

.card h3::after {
    content: "";
    display: block;
    width: 40%;
    height: 3px;
    background: #154420;
    margin-top: 5px;
    transition: all 0.9s ease;
}

.card p {
    color: #000;
}

.card .card-btn {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 15px 20px;
}

.card::marker {
    display: none;
}

.card::before,
.card::after {
    mix-blend-mode: overlay;
}

.card:hover {
    background: #154420;
    color: white;
    transform: translateY(-50px) scale(20%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card:hover h3::after {
    background: white;
    width: 90%;
}

.card:hover p {
    color: #fff;
}

.card:hover .card-btn {
    opacity: 1;
    transform: translateY(0);
}

/* ================== */

.banner {
    height: 500px;
}

.green-banner {
    background: url('../images/samurai.png') top right / contain no-repeat;
    animation: moveBg 3s alternate;
}

.red-banner {
    background: linear-gradient(258.7deg, #000000 82.83%, #921913 107.2%);
}

@keyframes moveBg {
    0% {
        background-position: left center;
    }

    100% {
        background-position: right center;
    }
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(89deg,
            rgba(0, 7, 5, 1), rgba(21, 68, 32, 1)58%, rgba(0, 0, 0, 0)70%, transparent 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 40px;
}

.banner-text {
    max-width: 60%;
    color: white;
    font-family: 'montserrat', sans-serif;
}

.banner-text .banner-title {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-text .banner-sub-title {
    color: #EDC500;
}

.banner-text .banner-description {
    font-size: 1.8rem;
    opacity: 1;
    font-weight: 400;
    margin-bottom: 2rem;
}



.profiles-section {
    text-align: center;
    background: #ffffff;
}

.profiles-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.proSwiper {
    width: 100%;
    padding: 50px 0;
}

.pro-swiper-slide,
.team-card {
    height: 400px;
}

.profile-card {
    width: 100%;
    margin: auto;
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background: #D0F3D8;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-card-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    padding: 0 1rem;
}

.profile-name {
    font-size: 25px;
    font-weight: 700;
    color: #154420;
    width: 80%;
    position: relative;
    text-align: left;
    line-height: 1;
    padding: 0.8rem 0 0.2rem 0;
    font-family: "montserrat", sans-serif;
}

svg,
svg path {
    transition: all 0.4s ease;
}

.profile-name::after {
    content: "";
    display: block;
    width: 45%;
    height: 3px;
    background: #154420;
    margin-top: 8px;
    transition: all 0.09s ease;
}

/* HEADER */
.card-header {
    position: absolute;
    width: 100%;
    top: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    background: none;
    border-bottom: 0;
}

.premium-title {
    font-size: 10px;
    font-weight: 400;
    color: #edc500;
}

.premuim-wrapper {
    gap: 5px;
}

.status-dot {
    width: 16px;
    height: 16px;
    background: #00d720;
    border-radius: 50%;
}

.candidat-img-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    padding: 20px;
}

.profile-img {
    width: 100%;
}

/* BODY */
.profile-body {
    background: rgba(255, 255, 255, 0.934);
    border-radius: 20px;
    padding: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    transition: all 0.4s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profil-body-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.job {
    background: #fff;
    color: #1e5631;
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 14px;
    transition: 0.4s;
    font-family: "roboto", sans-serif;
}

.location {
    font-size: 12px;
    color: #000;
    font-family: "roboto", sans-serif;
}

.icon-localisation svg {
    width: 20px;
    height: 20px;
}

.location {
    font-size: 1rem;
}

.right-profil {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
}

.score {
    background: #1e5631;
    color: #fff;
    padding: 8px 10px;
    border-radius: 10px;
    font-weight: bold;
    transition: 0.4s;
}

.profile-card:hover,
.testimonial-card:hover {
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.069);
}

.profile-card:hover::before {
    opacity: 1;
}

.profile-card:hover .profile-body {
    background: #154420;
}

.profile-card:hover .profile-name,
.profile-card:hover .location {
    color: #fff;
}

.profile-card:hover .localisation .icon-localisation svg path {
    fill: #fff;
    transition: 0.4s;
}

.profile-card:hover .badge-icon svg path {
    fill: #fff;
    transition: 0.4s;
}

.profile-card:hover .profile-name::after {
    background: #fff;
}

.profile-card:hover .card-body {
    background: transparent;
    color: #fff;
}

.profile-card:hover .location {
    color: #ddd;
}

.profile-card:hover .score {
    background: #fff;
    color: #1e5631;
}

.swiper-slide-active .profile-card {
    transform: scale(1.1);
}

.profile-card:hover {
    transform: scale(1.1) translateY(-10px);
}

.swiper-pagination {
    margin-top: 4rem;
    position: relative;
}

.swiper-pagination-bullet {
    width: 25px;
    height: 12px;
    border-radius: 3px;
    background: #cfcfcf;
}

.swiper-pagination-bullet-active {
    background: #154420;
    width: 40px;
}

/* ================================ */

.missions {
    background: #fff;
}

.text-mutedd {
    padding: 15px 15px 15px 0;
    color: #000;
}

.mySwiper {
    width: 100%;
    padding: 80px 0 40px 0;
}

.swiper-slide-mission {
    width: 360px;
    height: 360px;
    border-radius: 20px;
    overflow: hidden;
}

.swiper-slide-mission img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mySwiper .swiper-slide-active {
    width: 420px;
    height: 410px;
    box-shadow: 0 5px 5px rgba(21, 68, 32, 0.196);
}

.swiper-button-next,
.swiper-button-prev {
    top: 100% !important;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: 40%;
    right: 40%;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: 50%;
    left: 50%;
}

/* .nav-arrows div:hover {
    background: #2e6b52;
} */

/* ============== TESTOMINIES =============== */
.testimonials {
    background: #fff;
    position: relative;
}

.testimonialSwiper {
    width: 100%;
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

.testimonialSwiper .swiper-wrapper {
    padding: 30px;
}

.testimonial-card {
    width: 100%;
    height: 100%;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;

    /* 🔥 glassmorphism */
    background: rgba(240, 240, 240, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(50px) scale(0.92);
}

/* animation visible */
.testimonial-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* 🔥 effet blur sur slides inactifs */
.swiper-slide .testimonial-card {
    filter: blur(1px);
    opacity: 0.8;
    transform: scale(0.92);
}

/* 🔥 slide active mise en avant */
.swiper-slide-active .testimonial-card {
    filter: blur(0);
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

/* 🔥 hover = priorité visuelle */
.swiper-slide:hover .testimonial-card {
    filter: blur(0);
    opacity: 1;
    transform: scale(1.02);
}

/* 🟢 sandow vert (bordure animée) */
/* .testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(120deg, transparent, #1f4d2e, transparent);
    opacity: 0;
    transition: 0.4s;
} */

/* .testimonial-card:hover::before {
    opacity: 1;
} */

/* glow au hover */
.testimonial-card:hover {
    box-shadow: 0 10px 10px rgba(31, 77, 46, 0.3);
}

/* contenu */
.testimonial-card-one,
.testimonial-card-two {
    width: 100%;
    height: 100%;
}

.testimonial-card-one {
    padding: 20px 40px;
    margin-bottom: 2rem;
}

.testimonial-logo img {
    height: 50px;
}

.testimonial-text {
    color: #000;
}

/* USER */
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    width: 100%;
    height: 100%;
    justify-content: space-between;
}

.user-img-wrapper {
    position: absolute;
    width: 114px;
    height: 114px;
    left: -2%;
    top: -20%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #154420;
}

.user-img {
    width: 85%;
    height: 85%;
    border-radius: 50%;
    object-fit: cover;
}

.fonction-name {
    background: #154420;
    border-radius: 40px 0 25px 25px;
    width: 100%;
    padding: 20px;
}

.fn-content {
    margin-left: 4rem;
}

.testimonial-user h6 {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
}

.testimonial-user span {
    font-size: 14px;
    color: #fff;
}


.swiper-slide-prev .testimonial-card,
.swiper-slide-next .testimonial-card {
    transform: scale(0.95);
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 10px 0 15px;
}

.star {
    font-size: 18px;
    color: #ccc;
    transition: all 0.3s ease;
    transform: scale(0.8);
    opacity: 0.5;
}

.star.active {
    color: #FFD700;
    transform: scale(1);
    opacity: 1;
}

/* ✨ animation entrée */
.star.animate {
    animation: popStar 0.4s ease forwards;
}

@keyframes popStar {
    0% {
        transform: scale(0.3) rotate(-20deg);
        opacity: 0;
    }

    100% {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

.testimonial-card:hover .star.active {
    transform: scale(1.2);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.testimonial-rating {
    display: none;
}

/* .testimonials {
    background: #fff;
}

.testimonialSwiper {
    width: 100%;
    padding: 50px 0;
}

.testimonialSwiper .swiper-wrapper {
    padding: 30px;
}

.testimonial-card {
    width: 100%;
    height: 100%;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    background: #F0F0F0;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.testimonial-card-one,
.testimonial-card-two {
    width: 100%;
    height: 100%;
}

.testimonial-card-one {
    padding: 20px 40px;
    margin-bottom: 2rem;
}

.testimonial-logo img {
    height: 40px;

}

.testimonial-text {
    color: #000;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    width: 100%;
    height: 100%;
    justify-content: space-between;
}

.user-img-wrapper {
    position: absolute;
    width: 114px;
    height: 114px;
    left: -2%;
    top: -20%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #154420;
}

.user-img {
    width: 85%;
    height: 85%;
    border-radius: 50%;
    object-fit: cover;
}

.fonction-name {
    background: #1f4d2e;
    border-radius: 40px 0 25px 25px;
    width: 100%;
    padding: 20px;
}

.testimonial-user h6 {
    margin: 0;
    color: #fff;
    font-size: 14px;
}

.testimonial-user span {
    font-size: 12px;
    color: #ddd;
}

.testimonial-card {
    opacity: 0.7;
    transform: scale(0.95);
}

.swiper-slide-active .testimonial-card {
    opacity: 1;
    transform: scale(1);
} */


/* ============== CLIENTS =============== */

.clients {
    background: #fff;
    margin-bottom: 2rem;
}

.logo-client {
    max-height: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.4s ease;
}

/* HOVER */
.logo-client:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ALIGNEMENT */
.clientSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ESPACEMENT */
.clientSwiper {
    padding: 10px 0;
}

.clientSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.clients {
    position: relative;
    overflow: hidden;
}

.clients::before,
.clients::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.clients::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.clients::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

/* ======================== CTA + CONTACT FORM ================== */
.cta-section {
    background: #000;
    margin-top: 8rem;
    padding: 0;
    position: relative;
}

.cta-wrapper {
    position: relative;
    top: -70px;
}

.cta-box {
    color: #000;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(90.44deg, #EDC500 42.56%, #000000 96%);
    border-radius: 50px;
}

.cta-title {
    font-weight: 700;
    font-size: clamp(2rem, 3vw, 2.8rem);
}

.cta-text {
    margin: 1rem 0;
    max-width: 500px;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.5;
    text-align: left;
}

.red {
    color: #921913;
}

/* ================= CONTACT ================= */
.contact-section {
    background: #000;
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
}

.contact-title {
    font-size: clamp(1.5rem, 5vw, 3.2rem);
    font-weight: 700;
}

.contact-text {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 90%;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "roboto", sans-serif;
    font-size: 20px;
}

/* ================= FORM ================= */
.contact-form {
    width: 100%;
}

.input-wrapper {
    width: 100%;
    margin-bottom: 1rem;
}

.custom-input {
    border: none;
    width: 100%;
    background: #D9D9D9;
    border-radius: 15px;
    width: 100%;
    padding: 25px;
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    transition: .3s ease;
}


.custom-input:focus {
    box-shadow: none;
    outline: 2px solid #f5c400;
}


/* ======================== CTA + CONTACT FORM ================== */
/* ======================== FOOTER ================== */

.footer {
    padding: 2rem 1rem;
    background: linear-gradient(180.92deg, #000000 0.79%, #030F06 99.21%);
}

.footer__container {
    width: 100%;
    margin: auto;
    background: #154420;
    border-radius: 25px;
    padding: clamp(1.5rem, 3vw, 3rem);
    display: grid;
    gap: 2rem;
}

.footer__logo {
    width: 80px;
    margin-bottom: 1rem;
}

.footer__description {
    /* color: var(--muted); */
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.footer__socials {
    display: flex;
    gap: 15px;
}

.footer__socials a {
    width: 20px;
    height: 20px;
    background: #fff;
    /* color: white; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20%;
    text-decoration: none;
    transition: 0.3s;
}

.footer__socials a:hover {
    background: #edc500;
}

.footer__socials i {
    font-size: 16px;
    color: #154420;
}

.footer__socials .instagram-icon {
    background: transparent;
    color: #fff;
}

.footer__socials a:hover .instagram-icon {
    background: transparent;
}

.footer__socials .instagram-icon i {
    color: #fff;
    font-size: 21px;
}

.footer-title {
    margin-bottom: 1rem;
    color: #edc500;
    font-size: 24px;
    font-weight: 500;
}

.footer__links .links-content ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 10px;
}

.footer__links .links-content ul li {
    margin-bottom: 0.5rem;
}

.footer__links .links-content ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 0.875rem;
    font-family: "roboto", sans-serif;
    transition: 0.3s;
}

.footer__links .links-content ul li a:hover {
    font-weight: 500;
    color: #edc500;
}

.footer__newsletter p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    /* gap: 0.5rem; */
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border-radius: 12px 0 0 12px;
    border: none;
    outline: none;
}

.footer-btn {
    border-radius: 0 12px 12px 0;
}

.form-message {
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

.visually-hidden {
    position: absolute;
    left: -9999px;
}

/* .pb-team {
    padding: 10px;
} */
.team-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 cards par ligne */
    gap: 20px;
    border-radius: 25px;
    height: 100%;
    /* margin: 4rem 0 0 0;
    padding: 4rem 0; */
}

.team-card {
    padding: 1rem;
}

/* .pn-team {
    margin: 0 !important;
} */

.pn-team::after {
    display: none;
}

.pn-team {
    width: 100%;
    font-size: 20px;
    text-align: center;
}

.function-name {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 14px;
    color: #154420;
    text-align: center;
    padding: 0;
}

.function-name::after {
    display: none;
}

[data-aos] {
    opacity: 1;
}

.about-hero {
    background: linear-gradient(113.79deg, #154420 46.31%, #000000 119.6%);
}

.banner-left-content {
    color: #fff;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400
}

.number-ten {
    font-size: 128px;
    line-height: 52px;
}

.description {
    font-size: 52px;
    line-height: 52px;
}

.enps-name {
    font-weight: 700;
    font-size: 52px;
    line-height: 52px;
}

.ten-reason-cards {
    height: 250px;
    width: 100%;
    position: relative;
}

/* SWIPER */
.tenRaisonSwiper {
    height: 100%;
    width: 100%;
}

/* WRAPPER IMPORTANT */
.tenRaisonSwiper .swiper-wrapper {
    transition-timing-function: linear;
}

/* SLIDES */
.tenRaisonSwiper .swiper-slide {
    background: #FFFFFF;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    opacity: 0.4;
    transform: scale(0.85);
    transition: all 0.4s ease;

}

/* SLIDE ACTIVE (effet Apple) */
.tenRaisonSwiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

/* ICON */
.icon-box {
    width: 40px;
    height: 40px;
    background: #1f5d3a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

/* NAV */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .cards-container {
        height: auto;
    }

    .tenRaisonSwiper {
        height: 280px;
    }
}
