:root {
    --primary: #086896;
    --primary-light: #0a7bb3;
    --primary-dark: #065a7a;
    --secondary: #72b23a;
    --secondary-light: #8bc94f;
    --secondary-dark: #5a9129;
    --accent: #f39c12;
    --success: #27ae60;
    --warning: #f39c12;
    --danger: #e74c3c;
    --dark: #2c3e50;
    --light: #ecf0f1;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #334155;
    overflow-x: hidden;
    padding-top: 120px;
    /* Espace pour top bar + navbar */
}

@media (max-width: 991px) {
    body {
        padding-top: 60px;
    }
}

/* NAVIGATION CORRIGÉE */
.navbar {
    background-color: transparent !important;
    /* Force la transparence */
    backdrop-filter: none;
    box-shadow: none;
    padding: 20px 0;
    transition: all 0.3s ease;
    position: fixed;
    top: 44px;
    /* Position sous la top bar */
    left: 0;
    right: 0;
    z-index: 1050;
}

@media (max-width: 991px) {
    .navbar {
        top: 0;
        background-color: white !important;
        padding: 5px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .burger-icon span {
        background-color: var(--primary) !important;
    }

    .navbar-brand img {
        height: 35px;
        filter: none !important;
    }
}

/* État scrollé de la navbar */
.navbar.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

/* Logo et texte */
.navbar-brand {
    color: white !important;
    font-weight: 700;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar.navbar-scrolled .navbar-brand {
    color: var(--primary) !important;
}

.brand-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: inherit;
    margin-left: 8px;
}

/* Navigation links */
.navbar-nav {
    gap: 8px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 10px 16px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar.navbar-scrolled .nav-link {
    color: #475569 !important;
}

.nav-link:hover {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.15);
}

.active {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.15) !important;
}

.navbar.navbar-scrolled .nav-link:hover {
    color: var(--primary) !important;
    background-color: rgba(8, 104, 150, 0.1);
}

/* Bouton CTA */
.btn-primary-custom {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(8, 104, 150, 0.3);
}

/* Top Bar Responsive */
@media (max-width: 991px) {
    .top-bar {
        display: none;
    }
}

/* Navbar toggler refined */
.navbar-toggler {
    border: none !important;
    padding: 0;
    outline: none !important;
    box-shadow: none !important;
}

/* Burger Icon Animation Refined */
.burger-icon {
    width: 24px;
    height: 18px;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1100;
}

.burger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.navbar.navbar-scrolled .burger-icon span {
    background-color: var(--primary);
}

/* Open State */
.menu-open .burger-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--primary) !important;
}

.menu-open .burger-icon span:nth-child(2) {
    opacity: 0;
}

.menu-open .burger-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--primary) !important;
}

/* Mobile Menu Overlay */
@media (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1050;
        padding: 0;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .navbar-collapse.show {
        opacity: 1;
        visibility: visible;
    }

    .navbar-nav {
        text-align: center;
        width: 100%;
    }

    .navbar-nav .nav-item {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .navbar-collapse.show .nav-item {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation */
    .navbar-collapse.show .nav-item:nth-child(1) {
        transition-delay: 0.1s;
    }

    .navbar-collapse.show .nav-item:nth-child(2) {
        transition-delay: 0.2s;
    }

    .navbar-collapse.show .nav-item:nth-child(3) {
        transition-delay: 0.3s;
    }

    .navbar-collapse.show .nav-item:nth-child(4) {
        transition-delay: 0.4s;
    }

    .navbar-collapse.show .nav-item:nth-child(5) {
        transition-delay: 0.5s;
    }

    .navbar-collapse.show .nav-item:nth-child(6) {
        transition-delay: 0.6s;
    }

    .navbar-collapse.show .nav-item:nth-child(7) {
        transition-delay: 0.7s;
    }

    .nav-link {
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--dark) !important;
        margin: 8px 0;
        padding: 8px 20px !important;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary) !important;
        background: transparent !important;
    }

    .nav-cta {
        display: none !important;
    }

    /* Prevent body scroll */
    body.menu-open {
        overflow: hidden;
    }
}

.hero-section {
    background-image: url('../images/bg-header.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8, 104, 150, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 1;
}

.hero-glass-morph {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(2px);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 5;
}

.hero-logo-small img {
    height: 45px;
    /* Size adjusted to align better with text badge */
    width: auto;
    filter: none;
    opacity: 1;
}

.hero-content {
    margin-top: -80px;
    /* Move text up */
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    /* Slightly more compact */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-title-premium {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.text-highlight {
    background: linear-gradient(45deg, #fff 30%, var(--secondary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle-premium {
    font-size: 1.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
}

.hero-lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    line-height: 1.6;
}

/* Hero CTA Buttons */
.btn-hero-primary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: #fff;
    color: var(--primary);
    font-weight: 700;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    color: var(--primary-dark);
}

.btn-hero-primary i {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
    transform: translateX(5px);
}

.btn-hero-outline {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-weight: 700;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    color: #fff;
    transform: scale(1.05);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.mouse {
    width: 25px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #fff;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    30% {
        opacity: 1;
        transform: translate(-50%, 5px);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 15px);
    }
}

.scroll-arrows span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
    margin: -5px;
    animation: scrollArrows 2s infinite;
}

.scroll-arrows span:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes scrollArrows {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .navbar-collapse .nav-link {
        color: #475569 !important;
    }
}

/* Additional styles for brand consistency */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 80px;
}

.text-primary-custom {
    color: var(--primary) !important;
}

.bg-primary-custom {
    background-color: var(--primary) !important;
}

.text-secondary-custom {
    color: var(--secondary) !important;
}

.bg-secondary-custom {
    background-color: var(--secondary) !important;
}

/* About Section */
.about-section {
    padding: 70px 0;
    background: var(--light);
}

/* Modern Mission Vision Values Section */
.mission-vision-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.mvv-card {
    background: white;
    border-radius: 24px;
    padding: 48px 32px;
    height: 100%;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.mvv-card:hover::before {
    transform: translateX(0);
}

.mvv-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mission-card-modern::before {
    background: var(--primary);
}

.vision-card-modern::before {
    background: var(--secondary);
}

.values-card-modern::before {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.mvv-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    position: relative;
    transition: all 0.3s ease;
}

.mission-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
}

.vision-icon {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: white;
}

.values-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.mvv-card:hover .mvv-icon {
    transform: scale(1.1) rotate(5deg);
}

.mvv-title {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.mvv-title strong {
    font-weight: 700;
    color: var(--dark);
    display: block;
    font-size: 1.75rem;
}

.mvv-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 1rem;
}

.mvv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mvv-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    color: var(--gray-600);
    line-height: 1.6;
}

.mvv-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
}

.mvv-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mvv-values-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: var(--gray-700);
    font-weight: 500;
    line-height: 1.5;
}

.value-bullet {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    margin-right: 16px;
    flex-shrink: 0;
}

.mvv-values-list em {
    color: var(--gray-500);
    font-weight: 400;
    font-style: italic;
}

/* Services Section */
.services-section {
    padding: 100px 0;
}

.service-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--primary);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-description {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Business Units Section */
.business-units-section {
    background: #f8fafc;
    padding: 120px 0;
}

.bu-slider-header {
    margin-bottom: 60px;
}

.bu-slider-title {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bu-slider-desc {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.premium-carousel {
    border-radius: 32px;
    background: white;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.bu-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    background: #f1f5f9;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

.bu-premium-img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item:hover .bu-premium-img {
    transform: scale(1.02);
}

.bu-control-btn {
    width: 56px;
    height: 56px;
    background: white !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 50%;
    opacity: 1 !important;
    color: var(--dark) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
}

.bu-control-btn:hover {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.bu-control-btn i {
    font-size: 1.5rem;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #cbd5e1;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: var(--primary);
    transform: scale(1.2);
}

.guarantee-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 48px;
    margin-bottom: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.guarantee-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 1.25rem;
}

.feature-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--gray-600);
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 100px 0;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    color: white;
    font-size: 1.5rem;
}

.value-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.value-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--gray-600);
    font-weight: 500;
}

/* Clients Section */
.clients-section {
    background: var(--gray-100);
    padding: 80px 0;
}

.client-logo {
    padding: 30px 20px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.client-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.client-logo h5 {
    color: var(--gray-700);
    font-weight: 600;
    margin: 0;
    font-size: 1rem;
}

/* Timeline Section */
.timeline-section {
    padding: 100px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 30px;
    margin: 0 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.timeline-content h4 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--gray-600);
    margin: 0;
}

/* Contact Section */
.contact-section {
    background: var(--gray-100);
    padding: 100px 0;
}

.contact-info {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: white;
    font-size: 1.125rem;
}

.map-placeholder {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 40px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 100px;
    }

    .timeline-year {
        position: absolute;
        left: 0;
    }

    .timeline-content {
        margin: 0;
    }

    .value-card {
        margin-bottom: 20px;
    }

    .hero-section {
        padding: 80px 0 60px;
        text-align: center;
    }

    .guarantee-card {
        padding: 32px 24px;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
}


/* Styles pour le footer */
.footer {
    background-color: var(--dark);
    color: #fff;
    position: relative;
    margin-top: 3rem;
}

.footer-top {
    padding: 4rem 0 3rem;
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.footer-logo {
    filter: none;
    transition: all 0.3s ease;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    transform: translateY(-3px);
}

.footer-social-link:hover i.bi-facebook {
    color: #1877f2;
}

.footer-social-link:hover i.bi-linkedin {
    color: #0a66c2;
}

.footer-social-link:hover i.bi-twitter {
    color: #1da1f2;
}

.footer-social-link:hover i.bi-instagram {
    color: #e4405f;
}

.footer-social-link:hover i.bi-youtube {
    color: #ff0000;
}

.footer-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

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

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-menu a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-menu a::before {
    content: '\2192';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-menu a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1rem;
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    font-size: 0.9rem;
}

.copyright {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.footer-legal a:hover {
    color: var(--primary);
}

@media (max-width: 767px) {
    .footer-legal {
        justify-content: flex-start;
        margin-top: 1rem;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-title {
        margin-top: 1.5rem;
    }

    .footer-top {
        padding: 3rem 0 2rem;
    }
}

/* News Section Styles - Modern Design */
.news-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e9ecef" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.news-section .container {
    position: relative;
    z-index: 2;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title-modern {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(45deg, #212529, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle-modern {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Hero Article */
.news-card-hero {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.news-card-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.news-hero-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.news-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card-hero:hover .news-hero-image img {
    transform: scale(1.05);
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(8, 104, 150, 0.8), rgba(114, 178, 58, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 30px;
}

.news-card-hero:hover .news-overlay {
    opacity: 1;
}

.news-badge-hero {
    background: white;
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.news-hero-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 400px;
}

.news-meta-hero {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.news-date-hero {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.news-category-hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.news-title-hero {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #212529;
}

.news-excerpt-hero {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 30px;
}

.news-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 0.95rem;
}

.news-btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(8, 104, 150, 0.25);
    align-self: flex-start;
    margin-top: 10px;
}

.news-btn-hero:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(8, 104, 150, 0.35);
    color: #fff;
    text-decoration: none;
}

.news-btn-hero i {
    font-size: 1.2rem;
    transition: transform 0.4s ease;
}

.news-btn-hero:hover i {
    transform: translateX(6px);
}

.stat-item i {
    color: var(--primary);
}

.btn-news-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-news-hero:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(8, 104, 150, 0.3);
    color: white;
}

/* Modern News Cards */
.news-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.news-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.news-image-modern {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card-modern:hover .news-image-modern img {
    transform: scale(1.1);
}

.news-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.news-category-badge.formation,
.news-category-badge.partenariat {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.news-content-modern {
    padding: 30px;
}

.news-meta-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #6c757d;
}

.news-date-modern {
    font-weight: 600;
}

.news-read-time {
    background: #f8f9fa;
    padding: 4px 10px;
    border-radius: 10px;
    font-weight: 500;
}

.news-title-modern {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}

.news-title-modern a {
    color: #212529;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title-modern a:hover {
    color: var(--primary);
}

.news-excerpt-modern {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.news-footer-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-link-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(8, 104, 150, 0.05);
}

.news-link-modern:hover {
    background: var(--primary);
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(8, 104, 150, 0.15);
}

.news-link-modern i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.news-link-modern:hover i {
    transform: translateX(3px);
}

.news-share {
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.news-share:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* Call to Action */
.news-cta {
    background: linear-gradient(135deg, #f8f9fa, white);
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.news-cta h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #212529;
}

.news-cta p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .section-title-modern {
        font-size: 2.5rem;
    }

    .news-hero-content {
        padding: 40px 30px;
    }

    .news-title-hero {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 80px 0;
    }

    .section-title-modern {
        font-size: 2rem;
    }

    .news-hero-image,
    .news-hero-content {
        height: auto;
    }

    .news-hero-content {
        padding: 30px 20px;
    }

    .news-title-hero {
        font-size: 1.5rem;
    }

    .news-stats {
        flex-direction: column;
        gap: 15px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Quality Policy Section */
.quality-policy-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.quality-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quality-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.quality-icon i {
    font-size: 2rem;
    color: white;
}

.quality-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.quality-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.quality-certifications {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.certification-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.certification-item i {
    font-size: 1.2rem;
    color: white;
}

.certification-item span {
    font-weight: 600;
    color: white;
}

/* Who We Are Section */
.who-we-are-section {
    padding: 10px 0;
    background: var(--gray-100);
}

.who-we-are-card {
    background: white;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.who-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.who-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 30px;
}

.who-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.highlight-item i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.highlight-item span {
    font-weight: 500;
    color: var(--gray-700);
}

.who-image img {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Who We Are Certifications */
.who-certifications {
    border-top: 1px solid var(--gray-200);
    padding-top: 25px;
}

.certifications-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px;
}

.certification-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.certification-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(8, 104, 150, 0.2);
}

.certification-badge i {
    font-size: 1rem;
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    background: white;
}

.partners-category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 30px;
    text-align: center;
}

.partner-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.partner-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(8, 104, 150, 0.15);
}

.partner-card.international {
    border-color: var(--secondary);
}

.partner-card.international:hover {
    border-color: var(--secondary);
    box-shadow: 0 10px 25px rgba(114, 178, 58, 0.15);
}

.partner-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.partner-icon i {
    font-size: 1.5rem;
    color: white;
}

.partner-card h5 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.partner-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

/* Enhanced Client Cards */
.client-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.client-icon i {
    font-size: 1.2rem;
    color: white;
}

.client-type {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 5px;
    font-style: italic;
}

.clients-summary {
    background: var(--gray-100);
    padding: 30px;
    border-radius: 16px;
    margin-top: 20px;
}

.stat-highlight {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Animated Counter */
.stat-number {
    transition: all 0.3s ease;
}

.stat-number.counting {
    color: var(--secondary);
    transform: scale(1.1);
}

/* Modern MVV Section */
.mvv-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.mvv-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.mvv-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.mvv-main-title,
.mvv-impact-title {
    /* Added .mvv-impact-title and applied 2.2rem */
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.mvv-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    font-weight: 500;
    position: relative;
}

.mvv-subtitle::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.mvv-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mvv-card {
    height: 400px;
    perspective: 1000px;
    cursor: pointer;
}

.mvv-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.mvv-card:hover .mvv-card-inner {
    transform: rotateY(180deg);
}

.mvv-front,
.mvv-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 24px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mvv-front {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
}

.mvv-back {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    transform: rotateY(180deg);
}

.mvv-icon-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.mvv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.mvv-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.mission-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.vision-gradient {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
}

.values-gradient {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.mvv-card-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.mvv-card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.mvv-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.mvv-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.95;
}

.mvv-vision-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.mvv-vision-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
}

.mvv-vision-list li i {
    margin-right: 12px;
    color: #fbbf24;
    font-size: 1.2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
}

.value-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.value-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.value-item span:last-child {
    font-size: 0.9rem;
    font-weight: 600;
}

/* MVV Tabs Styles */
.mvv-tabs-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
}

.mvv-tabs-header {
    text-align: center;
    margin-bottom: 40px;
}

.mvv-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.mvv-section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin: 0;
}

.mvv-nav-tabs {
    border: none;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #e2e8f0;
}

.mvv-nav-tabs .nav-link {
    border: none;
    background: transparent;
    color: #64748b;
    padding: 15px 20px;
    margin: 0 5px;
    border-radius: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: none;
    border-bottom: 3px solid transparent;
    position: relative;
}

.mvv-nav-tabs .nav-link:hover {
    background: transparent;
    color: var(--primary);
    transform: none;
    box-shadow: none;
    border-bottom-color: var(--primary);
}

.mvv-nav-tabs .nav-link.active {
    background: transparent;
    color: var(--primary);
    transform: none;
    box-shadow: none;
    border-bottom-color: var(--primary);
    font-weight: 700;
}

.mvv-nav-tabs .nav-link i {
    font-size: 1.2rem;
}

.mvv-tab-content {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mvv-tab-panel {
    padding: 40px;
}

.mvv-tab-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.mvv-tab-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.mvv-tab-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.mvv-tab-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 0;
}

.mvv-tab-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.mvv-tab-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #475569;
}

.mvv-tab-list li i {
    color: var(--secondary);
    margin-right: 15px;
    font-size: 1.3rem;
}

.mvv-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.mvv-value-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.mvv-value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-emoji {
    font-size: 2rem;
    margin-right: 15px;
    color: var(--primary);
}

.value-emoji i {
    color: inherit;
}

.value-content strong {
    display: block;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 5px;
}

.value-content small {
    color: #64748b;
    font-size: 0.9rem;
}

/* Departments Page Styles */
.departments-hero {
    background: linear-gradient(135deg, rgba(0, 51, 102, 0.95), rgba(0, 102, 204, 0.95)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23003366" width="1200" height="800"/><g fill="%23ffffff" opacity="0.1"><circle cx="200" cy="150" r="80"/><circle cx="800" cy="300" r="120"/><circle cx="1000" cy="600" r="100"/></g></svg>');
    background-size: cover;
    background-position: center;
    min-height: 40vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.departments-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 51, 102, 0.8), rgba(0, 102, 204, 0.6));
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.departments-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.department-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.department-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.department-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.department-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.department-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.department-icon i {
    font-size: 2.5rem;
    color: white;
    z-index: 2;
    position: relative;
}

.department-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.department-description {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

.department-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.department-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #475569;
}

.department-features li i {
    color: var(--secondary);
    margin-right: 12px;
    font-size: 1.2rem;
}

.department-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.department-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.contact-form-section {
    padding: 100px 0;
    background: white;
}

.contact-form-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 15px;
}

.form-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    text-align: center;
    margin-bottom: 40px;
}

.form-section {
    margin-bottom: 40px;
}



.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.required {
    color: #ef4444;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    outline: none;
}

.form-actions {
    text-align: center;
    margin-top: 40px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Partners Section - Modern Design */
.partners-header {
    text-align: center;
    margin-bottom: 50px;
}

.partners-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(8, 104, 150, 0.3);
}

.partners-badge i {
    font-size: 1rem;
}

.partners-category-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
}

.partners-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 0;
}

.partners-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.partner-card-modern {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.partner-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.partner-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.partner-card-modern:hover::before {
    transform: scaleX(1);
}

.partner-logo-wrapper {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding: 15px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-logo-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.partner-card-modern:hover .partner-logo-wrapper::before {
    transform: rotate(45deg) translateX(100%);
}

.partner-logo-img {
    max-height: 50px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(30%);
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.partner-card-modern:hover .partner-logo-img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.partner-info-modern h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.partner-info-modern p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.5;
}

.partner-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.specialty-tag {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(8, 104, 150, 0.2);
    transition: all 0.3s ease;
}

.partner-card-modern:hover .specialty-tag {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(8, 104, 150, 0.3);
}

/* Partners Statistics */
.partners-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.stat-icon i {
    font-size: 1.8rem;
    color: white;
    z-index: 2;
    position: relative;
}

.stat-content h4 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-content p {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .partners-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .partner-card-modern {
        padding: 25px 20px;
    }

    .partners-category-title {
        font-size: 1.8rem;
    }

    .partners-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 25px 20px;
    }

    .stat-content h4 {
        font-size: 2rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .partner-logo-card {
        padding: 20px;
    }

    .partner-logo {
        height: 60px;
    }

    .partner-logo img {
        max-height: 45px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .departments-section {
        padding: 60px 0;
    }

    .department-card {
        padding: 30px;
        margin-bottom: 30px;
    }

    .contact-form-card {
        padding: 30px 20px;
    }

    .form-title {
        font-size: 2rem;
    }

    .mvv-section-title {
        font-size: 2rem;
    }

    .mvv-tabs-section {
        padding: 20px;
    }

    .mvv-nav-tabs .nav-link {
        padding: 12px 20px;
        margin: 5px;
        font-size: 0.9rem;
    }

    .mvv-tab-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .mvv-tab-title {
        font-size: 1.5rem;
    }

    .mvv-values-grid {
        grid-template-columns: 1fr;
    }

    .mvv-main-title {
        font-size: 2.5rem;
    }

    .mvv-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mvv-card {
        height: 350px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .quality-card {
        padding: 40px 20px;
    }

    .quality-certifications {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .who-we-are-card {
        padding: 30px 20px;
    }

    .who-highlights {
        margin-top: 30px;
    }

    .timeline-item-service {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-year-service {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .news-nav-tabs .nav-link {
        padding: 0.75rem 1rem;
        margin: 0.25rem;
        font-size: 0.9rem;
    }

    .news-nav-tabs .nav-link span {
        display: none;
    }

    .newsletter-form .form-control,
    .newsletter-btn {
        border-radius: 25px;
        margin-bottom: 1rem;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .map-overlay {
        position: relative;
        top: 0;
        left: 0;
        margin: 1rem;
        max-width: none;
    }

    .contact-info-card {
        margin-bottom: 2rem;
    }

    .quick-contact-item {
        flex-direction: column;
        text-align: center;
    }

    .realisation-specs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .realisation-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .realisation-btn {
        justify-content: center;
    }

    .realisation-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .realisation-title {
        margin-right: 0;
    }
}


/* TOP BAR - CORRIGÉ */
.top-bar {
    background: var(--dark);
    color: white;
    padding: 10px 0;
    font-size: 0.875rem;
    border-bottom: 2px solid var(--primary);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1060;
    /* Plus élevé que navbar */
    width: 100%;
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.top-bar-item i {
    color: var(--primary);
    font-size: 0.875rem;
}

.top-bar-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.social-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-right: 8px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 16px;
}

.lang-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid transparent;
}

.lang-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.lang-link.active {
    background: var(--primary);
    border-color: var(--primary-light);
}

.flag-icon {
    width: 16px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
}

.lang-text {
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
}

.social-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 8px;
}

/* Search Tool Styles */
.search-container {
    margin-right: 16px;
}

.search-form {
    position: relative;
}

.search-input-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.search-input-group:focus-within {
    box-shadow: 0 4px 15px rgba(8, 104, 150, 0.3);
    transform: translateY(-1px);
}

.search-input {
    border: none;
    outline: none;
    padding: 8px 16px;
    font-size: 0.875rem;
    background: transparent;
    color: var(--dark);
    width: 200px;
    transition: width 0.3s ease;
}

.search-input::placeholder {
    color: var(--gray-500);
}

.search-input:focus {
    width: 250px;
}

.search-btn {
    background: var(--primary);
    border: none;
    padding: 8px 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: var(--primary-dark);
}

.search-btn i {
    font-size: 0.875rem;
}

/* News Section Styles */
.news-section {
    padding: 20px 0;
    background: var(--light);
}

.news-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(8, 104, 150, 0.08);
    border: 1px solid rgba(8, 104, 150, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 45px rgba(8, 104, 150, 0.15);
}

.news-card.featured {
    border: 2px solid var(--primary);
}



.news-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}


.news-card .news-image .news-category,
.news-card .news-image .news-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 7px 18px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 12px 24px rgba(8, 104, 150, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 58px;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.75);
}

.news-card .news-image .news-category::before,
.news-card .news-image .news-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}

.news-card .news-image .news-category--innovation,
.news-card .news-image .news-badge--innovation,
.news-card .news-image .news-category--ia,
.news-card .news-image .news-badge--ia,
.news-card .news-image .news-category--telemedecine,
.news-card .news-image .news-badge--telemedecine,
.news-card .news-image .news-category--partenariat,
.news-card .news-image .news-badge--partenariat,
.news-card .news-image .news-category--education,
.news-card .news-image .news-badge--education,
.news-card .news-image .news-category--reseau,
.news-card .news-image .news-badge--reseau,
.news-card .news-image .news-category--formation,
.news-card .news-image .news-badge--formation,
.news-card .news-image .news-category--evenement,
.news-card .news-image .news-badge--evenement,
.news-card .news-image .news-category--webinaire,
.news-card .news-image .news-badge--webinaire {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.news-content {
    padding: 24px 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
    font-size: 0.8rem;
    color: #718096;
}

.news-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.news-category {
    background: var(--secondary);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.news-title {
    margin-bottom: 8px;
}

.news-title a {
    color: var(--dark);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.news-title a:hover {
    color: var(--primary);
}

.news-excerpt {
    color: var(--gray-600);
    line-height: 1.55;
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
}

.news-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* Compact News Cards */
.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-card.compact {
    display: flex;
    gap: 16px;
    padding: 16px;
}

.news-image-small {
    flex-shrink: 0;
}

.news-image-small img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.news-content-small {
    flex: 1;
}

.news-date-small {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--gray-500);
    font-size: 0.75rem;
    margin-bottom: 8px;
}

.news-title-small {
    margin-bottom: 8px;
}

.news-title-small a {
    color: var(--dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.news-title-small a:hover {
    color: var(--primary);
}

.news-excerpt-small {
    color: var(--gray-600);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* Responsive News */
@media (max-width: 768px) {
    .news-section {
        padding: 60px 0;
    }

    .news-card.compact {
        flex-direction: column;
        text-align: center;
    }

    .news-image-small {
        align-self: center;
    }

    .news-image-small img {
        width: 120px;
        height: 80px;
    }

    .news-title a {
        font-size: 1.25rem;
    }
}

/* NAVBAR - FOND FIXE */
.navbar {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
    position: fixed;
    top: 46px;
    /* Position sous la top bar (hauteur top-bar + border) */
    left: 0;
    right: 0;
    z-index: 1050;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* État scrollé de la navbar (optionnel - peut être supprimé) */
.navbar.navbar-scrolled {
    background-color: rgba(255, 255, 255, 1) !important;
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
}

/* Logo et texte */
.navbar-brand {
    color: var(--primary) !important;
    font-weight: 700;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar.navbar-scrolled .navbar-brand {
    color: var(--primary-dark) !important;
}

.navbar-brand img {
    max-height: 50px;
    width: auto;
}

/* Navigation links */
.navbar-nav {
    gap: 8px;
}

.nav-link {
    color: #475569 !important;
    font-weight: 500;
    padding: 10px 16px !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.navbar.navbar-scrolled .nav-link {
    color: #334155 !important;
}

.nav-link:hover {
    color: var(--primary) !important;
    background-color: rgba(8, 104, 150, 0.1);
}

.nav-item.active .nav-link {
    color: white !important;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 2px 8px rgba(8, 104, 150, 0.3);
}

.navbar.navbar-scrolled .nav-link:hover {
    color: var(--primary-dark) !important;
    background-color: rgba(8, 104, 150, 0.15);
}

/* Bouton CTA */
.btn-primary-custom {
    background: var(--primary);
    border: 1px solid var(--primary);
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(8, 104, 150, 0.3);
}

/* Navbar toggler */
.navbar-toggler {
    border: 1px solid #cbd5e1;
    padding: 8px;
    border-radius: 8px;
    background: none;
}

.navbar.navbar-scrolled .navbar-toggler {
    border-color: #94a3b8;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2871, 85, 105, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.navbar-scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2851, 65, 85, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}



/* Responsive - Mobile */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 10px;
        margin-top: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .navbar-collapse .nav-link {
        color: #475569 !important;
    }

    .navbar-collapse .nav-link:hover {
        color: var(--primary) !important;
        background-color: rgba(8, 104, 150, 0.1);
    }

    .top-bar {
        padding: 8px 0;
    }

    .top-bar-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 8px;
    }

    .top-bar-social {
        justify-content: flex-start;
        gap: 8px;
        flex-wrap: wrap;
    }

    .language-selector {
        margin-right: 8px;
        margin-bottom: 4px;
    }

    .social-divider {
        display: none;
    }

    .social-text {
        display: none;
    }

    .top-bar-item {
        font-size: 0.8rem;
    }

    .social-link {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .flag-icon {
        width: 14px;
        height: 10px;
    }

    .lang-text {
        font-size: 0.7rem;
    }

    /* Mobile Search Styles */
    .search-container {
        margin-right: 8px;
        margin-bottom: 8px;
    }

    .search-input {
        width: 150px;
    }

    .search-input:focus {
        width: 180px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 140px;
        /* Plus d'espace sur mobile */
    }

    .hero-section {
        padding-top: 140px;
        text-align: center;
    }

    .navbar {
        top: 60px;
        /* Ajuster pour mobile */
    }
}

.navbar {
    padding-bottom: 0px !important;
}

/* Hours list styles for homepage */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hours-item:hover {
    transform: translateX(3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.hours-item.emergency {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.hours-item .day {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.hours-item .time {
    color: #64748b;
    font-weight: 500;
    font-size: 0.95rem;
}

.hours-item.emergency .day,
.hours-item.emergency .time {
    color: white;
    font-weight: 600;
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    background: white;
}

.partners-slider-wrapper {
    overflow: hidden;
    padding: 20px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.partners-track {
    display: flex;
    gap: 80px;
    align-items: center;
    width: max-content;
}

.partner-logo-container {
    padding: 0 20px;
}

.partner-logo {
    max-width: 160px;
    max-height: 70px;
    height: auto;
    width: auto;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 0.9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-240px * 13));
    }

    /* logo width + gap */
}

.partners-track-animated {
    animation: scrollPartners 40s linear infinite;
}

.partners-track-animated:hover {
    animation-play-state: paused;
}

/* Impact 2030 Section Styles */
.impact-2030-card .department-icon {
    position: static;
    margin-bottom: 24px;
    box-shadow: none;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
}

.impact-2030-card .department-content {
    padding: 0;
}

.impact-2030-description {
    color: #475569;
    line-height: 1.8;
    font-size: 1.1rem;
}

.impact-2030-description p {
    margin-bottom: 1.2rem;
}

.axes-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
}

.axis-item {
    background: #f8fafc;
    border: 1px solid rgba(8, 104, 150, 0.1);
    border-radius: 20px;
    padding: 24px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.axis-item:hover {
    background: #fff;
    box-shadow: 0 15px 30px rgba(8, 104, 150, 0.1);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.axis-number {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.axis-content {
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .impact-2030-card {
        padding: 30px 20px;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 40px;
    font-size: 25rem;
    color: rgba(8, 104, 150, 0.03);
    font-family: serif;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card {
    background: white;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(8, 104, 150, 0.05);
    transition: all 0.4s ease;
    height: 100%;
    margin: 20px 10px;
    position: relative;
}

.testimonial-quote-icon {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.15;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #1e293b;
    font-style: italic;
    margin-bottom: 30px;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h5 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 0;
    font-weight: 600;
}

/* Custom Controls for Testimonials */
.testimonials-carousel .carousel-indicators {
    bottom: -60px;
}

.testimonials-carousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary);
    opacity: 0.3;
    margin: 0 6px;
}

.testimonials-carousel .carousel-indicators .active {
    opacity: 1;
    width: 30px;
    border-radius: 10px;
}

.testimonial-control {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    box-shadow: 0 10px 20px rgba(8, 104, 150, 0.3);
}

.testimonial-control:hover {
    background: var(--secondary);
    box-shadow: 0 15px 30px rgba(8, 104, 150, 0.4);
}

.testimonial-control-prev {
    left: -75px;
}

.testimonial-control-next {
    right: -75px;
}

@media (max-width: 1200px) {
    .testimonial-control {
        display: none;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }
}

/* RSE Section Styles */
.rse-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    z-index: 10;
}

.rse-card {
    background: #f8fafc;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(114, 178, 58, 0.1);
    transition: all 0.3s ease;
}

.rse-card:hover {
    box-shadow: 0 20px 40px rgba(114, 178, 58, 0.08);
}

.rse-title {
    color: #b91c1c;
    /* Using a red similar to the image, or var(--danger) if available */
    font-weight: 800;
    margin-bottom: 24px;
    text-transform: uppercase;
    font-size: 1.5rem;
}

.rse-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 30px;
}

.rse-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.rse-pillar-item {
    background: white;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(114, 178, 58, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
}

.rse-pillar-item:hover {
    transform: translateY(-5px);
    border-color: #72b23a;
    /* Secondary greenish color */
    box-shadow: 0 10px 25px rgba(114, 178, 58, 0.1);
}

.rse-pillar-icon {
    width: 48px;
    height: 48px;
    background: rgba(114, 178, 58, 0.1);
    color: #72b23a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.rse-pillar-content {
    font-weight: 600;
    color: #1e293b;
    line-height: 1.5;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .rse-card {
        padding: 30px 20px;
    }
}

/* Impact 2030 Premium Section */
.impact-2030-premium-section {
    position: relative;
    padding: 120px 0;
    background: #021526;
    color: #fff;
    overflow: hidden;
}

.impact-2030-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(8, 104, 150, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 10% 80%, rgba(114, 178, 58, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.impact-2030-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    z-index: 1;
    user-select: none;
    pointer-events: none;
}

.impact-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(8, 104, 150, 0.2);
    border: 1px solid rgba(8, 104, 150, 0.3);
    border-radius: 50px;
    color: var(--primary-light);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.impact-title {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 30%, var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.impact-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
}

.impact-image-container {
    position: relative;
    z-index: 2;
}

.shadow-premium {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.image-glass-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60%;
    height: 60%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    z-index: -1;
}

/* Glass Cards for Axes */
.axis-glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.axis-glass-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-10px);
    border-color: rgba(8, 104, 150, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.axis-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(8, 104, 150, 0.3);
}

.axis-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.axis-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.axis-subtext {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.btn-impact-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 16px 40px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 15px 30px rgba(8, 104, 150, 0.3);
}

.btn-impact-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(8, 104, 150, 0.4);
    color: #fff;
}

@media (max-width: 991px) {
    .impact-2030-premium-section {
        padding: 80px 0;
    }

    .impact-2030-watermark {
        font-size: 40vw;
    }

    .impact-image-container {
        margin-top: 50px;
    }
}

/* RSE Premium Section - Eco-Tech Aesthetic */
.rse-premium-section {
    position: relative;
    padding: 120px 0;
    background: #fdfdfd;
    overflow: hidden;
}

.rse-leaf-decoration {
    position: absolute;
    background: linear-gradient(135deg, var(--secondary-light), transparent);
    opacity: 0.1;
    border-radius: 50% 0 50% 0;
    z-index: 1;
}

.leaf-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    transform: rotate(15deg);
}

.leaf-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    transform: rotate(-15deg);
}

.rse-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(114, 178, 58, 0.1);
    color: var(--secondary-dark);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
}

.rse-premium-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
}

.rse-premium-intro {
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
}

.rse-strategy-badge {
    display: inline-block;
    background: #fff;
    border: 1px dashed var(--secondary);
    padding: 10px 20px;
    border-radius: 12px;
    color: var(--secondary-dark);
    font-weight: 600;
}

/* Pillar Cards */
.rse-pillar-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    padding: 40px 25px;
    text-align: center;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.rse-pillar-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(114, 178, 58, 0.12);
    border-color: var(--secondary-light);
}

.pillar-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.rse-pillar-card:hover .pillar-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.circle-primary {
    background: rgba(8, 104, 150, 0.1);
    color: var(--primary);
}

.circle-secondary {
    background: rgba(114, 178, 58, 0.1);
    color: var(--secondary);
}

.circle-success {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
}

.circle-accent {
    background: rgba(243, 156, 18, 0.1);
    color: var(--accent);
}

.pillar-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.pillar-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Check List */
.rse-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rse-check-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 600;
    color: #334155;
}

.odd-grid-mini {
    margin-top: 20px;
}

.odd-icon-mini {
    width: 65px;
    height: 65px;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.odd-icon-mini:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 20px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

/* Lightbox Styles */
.odd-lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
}

.odd-lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 450px;
    animation: zoomInLight 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    border: 4px solid rgba(255,255,255,0.1);
}

@keyframes zoomInLight {
    from {transform:scale(0.8); opacity: 0;}
    to {transform:scale(1); opacity: 1;}
}

.odd-lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.odd-lightbox-close:hover {
    background: var(--secondary);
    transform: rotate(90deg);
}

#odd-lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #fff;
    padding: 30px 0;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .rse-premium-section {
        padding: 80px 0;
    }
}

/* Business Units Premium Slider */
.business-units-premium-section {
    padding: 120px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.bu-premium-badge {
    padding: 8px 16px;
    background: rgba(8, 104, 150, 0.08);
    border: 1px solid rgba(8, 104, 150, 0.15);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.bu-premium-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
}

.bu-premium-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    margin: 24px auto;
}

.bu-premium-subtitle {
    color: #64748b;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

.bu-main-slider-wrapper {
    margin-top: 60px;
    background: #fff;
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.bu-slide-premium-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bu-slide-text {
    position: relative;
    padding-right: 20px;
}

.bu-index {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(8, 104, 150, 0.05);
    line-height: 1;
    position: absolute;
    top: -40px;
    left: -10px;
    z-index: 0;
}

.bu-slide-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.bu-slide-description {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 30px;
}

.bu-slide-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: grid;
    gap: 15px;
}

.bu-slide-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #1e293b;
}

.bu-slide-features i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.bu-slide-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.bu-slide-link:hover {
    color: var(--primary-dark);
    transform: translateX(8px);
}

.bu-slide-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-decoration {
    position: absolute;
    width: 85%;
    height: 85%;
    background: linear-gradient(135deg, rgba(8, 104, 150, 0.05) 0%, rgba(8, 104, 150, 0.15) 100%);
    border-radius: 40px;
    z-index: 0;
    transform: rotate(-3deg);
}

.decoration-secondary {
    background: linear-gradient(135deg, rgba(114, 178, 58, 0.05) 0%, rgba(114, 178, 58, 0.15) 100%);
}

.decoration-accent {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.05) 0%, rgba(243, 156, 18, 0.15) 100%);
}

.decoration-dark {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.05) 0%, rgba(44, 62, 80, 0.15) 100%);
}

.decoration-support {
    background: linear-gradient(135deg, rgba(8, 104, 150, 0.05) 0%, rgba(8, 104, 150, 0.25) 100%);
}

.bu-visual-img {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 450px;
    object-fit: contain;
}

.carousel-item:hover .bu-visual-img {
    transform: translateY(-10px) scale(1.02);
}

/* Slider Navigation */
.bu-slider-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.bu-nav-btn {
    width: 50px;
    height: 50px;
    border: 1px solid #e2e8f0;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.bu-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 10px 20px rgba(8, 104, 150, 0.2);
}

.bu-carousel-indicators {
    display: flex;
    gap: 12px;
}

.bu-carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    border: none;
    padding: 0;
    transition: all 0.3s ease;
}

.bu-carousel-indicators button.active {
    width: 30px;
    border-radius: 10px;
    background: var(--primary);
}

@media (max-width: 991px) {
    .bu-slide-premium-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .bu-slide-text {
        padding-right: 0;
        order: 2;
    }

    .bu-slide-visual {
        order: 1;
    }

    .bu-slide-features {
        justify-content: center;
    }

    .bu-main-slider-wrapper {
        padding: 40px;
    }

    .bu-index {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Partners Premium Slider - Infinite Scroll */
.partners-premium-slider-section {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    overflow: hidden;
}

.partners-track-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.partners-track-animated-premium {
    display: flex;
    width: fit-content;
    animation: infiniteScrollPartners 40s linear infinite;
    gap: 100px;
    align-items: center;
}

.partner-logo-box {
    flex: 0 0 auto;
    width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    filter: none;
    /* No grayscale as per user request */
    opacity: 0.9;
}

.partner-logo-box:hover {
    opacity: 1;
    transform: scale(1.1);
}

.partner-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes infiniteScrollPartners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 50px));
    }
}

/* Testimonials Premium Section */
.testimonials-premium-section {
    padding: 80px 0;
    background: radial-gradient(circle at 10% 10%, rgba(8, 104, 150, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(114, 178, 58, 0.03) 0%, transparent 40%);
}

.testimonial-premium-badge {
    padding: 4px 10px;
    background: #f1f5f9;
    color: #475569;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
}

.testimonial-premium-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark);
}

.testimonial-premium-subtitle {
    font-size: 1rem;
    color: #64748b;
}

.testimonial-premium-slider-wrapper {
    max-width: 800px;
    margin: 40px auto 0;
    background: #fff;
    border-radius: 30px;
    padding: 50px 70px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.04);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.testimonial-premium-content {
    text-align: center;
}

.quote-icon-premium {
    font-size: 2.5rem;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-premium-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-premium-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.circle-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    background: var(--primary);
    box-shadow: 0 8px 16px rgba(8, 104, 150, 0.2);
}

.avatar-secondary {
    background: var(--secondary);
    box-shadow: 0 10px 20px rgba(114, 178, 58, 0.2);
}

.avatar-accent {
    background: var(--accent);
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.2);
}

.author-details {
    text-align: left;
}

.author-name {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.author-role {
    margin: 0;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.testimonial-premium-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

.ts-control-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.ts-control-btn:hover {
    color: var(--primary);
    transform: scale(1.2);
}

.ts-indicators {
    display: flex;
    gap: 15px;
}

.ts-indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ts-indicator-dot.active {
    background: var(--primary);
    transform: scale(1.5);
}

@media (max-width: 991px) {
    .testimonial-premium-slider-wrapper {
        padding: 60px 40px;
    }

    .testimonial-premium-text {
        font-size: 1.4rem;
    }

    .testimonial-premium-title {
        font-size: 2.2rem;
    }
}

/* About Premium Section */
.about-premium-section {
    padding: 120px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about-premium-visual {
    position: relative;
}

.visual-main-frame {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
}

.experience-badge-premium {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.experience-badge-premium .number {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.experience-badge-premium .text {
    font-size: 0.55rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(8, 104, 150, 0.05);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.about-premium-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
}

.lead-premium {
    font-size: 1.1rem;
    color: #475569;
    font-weight: 600;
    line-height: 1.6;
}

.highlight-item-premium {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.highlight-item-premium .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.highlight-item-premium:hover .icon-box {
    background: var(--primary);
    color: #fff;
    transform: rotate(10deg);
}

.highlight-item-premium h5 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.highlight-item-premium p {
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
}

/* Premium Stats Wrapper */
.premium-stats-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-top: 40px;
}

.p-stat-card {
    text-align: center;
    padding: 30px;
    border-radius: 24px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.p-stat-card:hover {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.p-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.p-stat-label {
    font-weight: 600;
    color: #64748b;
    font-size: 0.95rem;
}

/* MVV Premium Section */
.mvv-premium-section {
    padding: 120px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.mvv-premium-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #fff;
    color: var(--secondary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.mvv-premium-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
}

.mvv-premium-subtitle {
    color: #64748b;
    font-size: 1.15rem;
}

/* MVV List Layout (replacing cards) */
.mvv-list-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 60px auto 0;
}

.mvv-list-item {
    display: grid;
    grid-template-columns: 70px 40px 1fr;
    align-items: flex-start;
    padding: 40px 0;
    border-bottom: 1px solid #f1f5f9;
    gap: 0;
    transition: all 0.3s ease;
}

.mvv-list-item:last-child {
    border-bottom: none;
}

.mvv-list-item:hover .mvv-list-icon {
    transform: scale(1.1);
}

.mvv-list-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.mission-icon {
    background: var(--primary);
}

.vision-icon {
    background: var(--secondary);
}

.values-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.mvv-list-divider {
    width: 1px;
    min-height: 100%;
    background: #e2e8f0;
    margin: 0 30px;
    align-self: stretch;
}

.mvv-list-content {
    padding-top: 6px;
}

.mvv-list-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 10px;
}

.mvv-list-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 14px;
}

.mvv-list-text {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0 0 16px;
}

.mvv-list-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mvv-list-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.98rem;
    color: #475569;
    font-weight: 500;
}

.mvv-list-bullets li i {
    color: var(--secondary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Values Pills */
/* Values Grid & Cards */
.mvv-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.value-card-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 24px;
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.value-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(8, 104, 150, 0.1);
    border-color: rgba(8, 104, 150, 0.15);
}

.value-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(8, 104, 150, 0.06);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.value-card-item:hover .value-card-icon {
    background: var(--primary);
    color: #fff;
}

.value-card-content span {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
}

@media (max-width: 767px) {
    .mvv-values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .premium-stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .mvv-list-item {
        grid-template-columns: 55px 30px 1fr;
    }
}

@media (max-width: 575px) {
    .premium-stats-wrapper {
        grid-template-columns: 1fr;
    }

    .about-premium-title {
        font-size: 2rem;
    }

    .mvv-list-item {
        grid-template-columns: 50px 20px 1fr;
    }

    .mvv-list-title {
        font-size: 1.4rem;
    }
}

/* ============================
   Departements Page — Premium
   ============================ */

/* Page Hero */
.dept-page-hero {
    position: relative;
    min-height: 50vh;
    background-image: url('../images/bg-header.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.dept-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 104, 150, 0.85) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.dept-hero-content {
    position: relative;
    z-index: 5;
    padding: 80px 0;
}

.dept-hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.dept-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.1;
}

.dept-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Showcase Section */
.dept-showcase-section {
    padding: 100px 0;
    background: #fff;
}

.dept-showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 550px;
    margin-bottom: 80px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dept-showcase-item:last-child {
    margin-bottom: 0;
}

.dept-showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.12);
}

.dept-showcase-item.reverse {
    direction: rtl;
}

.dept-showcase-item.reverse>* {
    direction: ltr;
}

/* Visual Side */
.dept-showcase-visual {
    position: relative;
    overflow: hidden;
    background-color: #f8fafc;
}

.dept-slide-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s ease;
}

.dept-showcase-item:hover .dept-slide-img {
    transform: scale(1.05);
}

.dept-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8, 104, 150, 0.15) 0%, transparent 100%);
}

.dept-number {
    position: absolute;
    bottom: 24px;
    left: 28px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    font-style: italic;
    pointer-events: none;
}

/* Content Side */
.dept-showcase-content {
    background: #fff;
    padding: 60px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dept-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(8, 104, 150, 0.07);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.dept-showcase-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.dept-showcase-desc {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.dept-showcase-features {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dept-showcase-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #475569;
    font-size: 0.97rem;
}

.dept-showcase-features li i {
    color: var(--secondary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.dept-showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.dept-showcase-btn:hover {
    background: var(--primary-dark, #065a85);
    color: #fff;
    transform: translateX(6px);
}

.dept-showcase-btn i {
    transition: transform 0.3s ease;
}

.dept-showcase-btn:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {

    .dept-showcase-item,
    .dept-showcase-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        min-height: auto;
    }

    .dept-showcase-visual {
        height: 320px;
    }

    .dept-showcase-content {
        padding: 40px 36px;
    }
}

@media (max-width: 575px) {
    .dept-showcase-content {
        padding: 32px 24px;
    }

    .dept-showcase-title {
        font-size: 1.6rem;
    }
}

/* ============================
   Smart Health Section
   ============================ */

.smart-health-section {
    padding: 100px 0;
    background: #f8fafc;
}

.sh-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(8, 104, 150, 0.08);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sh-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.15;
}

.sh-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin: 0;
}

.sh-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sh-text {
    color: #475569;
    font-size: 1.02rem;
    line-height: 1.75;
    margin: 0;
}

/* Pilot Project Card */
.sh-pilot-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(8, 104, 150, 0.1);
    border: 1px solid rgba(8, 104, 150, 0.08);
}

.sh-pilot-header {
    background: linear-gradient(135deg, var(--primary), #065a85);
    padding: 36px 40px;
    color: #fff;
}

.sh-pilot-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    color: #fff;
}

.sh-pilot-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

.sh-pilot-body {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sh-pilot-body p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.sh-pilot-footer {
    padding: 24px 40px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sh-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.93rem;
    font-weight: 600;
    color: #1e3a5f;
}

.sh-stat i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* Smart Health ODD Logos */
.sh-odd-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.sh-odd-item {
    transition: all 0.3s ease;
}

.sh-odd-item img.odd-icon-mini {
    height: 95px !important;
    width: 95px !important;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    background: #fff;
    padding: 8px;
    border: 1px solid rgba(8, 104, 150, 0.1);
}

.sh-odd-item:hover {
    transform: translateY(-8px);
}

.sh-odd-item:hover img {
    box-shadow: 0 10px 25px rgba(8, 104, 150, 0.15);
    border-color: var(--primary);
}

@media (max-width: 991px) {

    .sh-pilot-header,
    .sh-pilot-body,
    .sh-pilot-footer {
        padding-left: 28px;
        padding-right: 28px;
    }

    .sh-title {
        font-size: 2rem;
    }
}

/* Hide language on desktop */
@media (min-width: 992px) {
    .language-selector {
        display: none !important;
    }
}
/* Navbar Dropdown Hover */
@media (min-width: 992px) {
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block !important;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-item.dropdown > .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        border: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        pointer-events: none;
    }

    .nav-item.dropdown:hover > .dropdown-menu {
        pointer-events: auto;
    }
}
