




         /* ========== ROOT : COULEURS OFFICIELLES ========== */
        :root {
            --color-primary: #1F3D67;
            --color-primary-dark: #162d4c;
            --color-secondary: #FF9926;
            --color-secondary-light: #ffb45c;
            --color-white: #FFFFFF;
            --color-light: #F5F7FA;
            --color-border: #E4EAF1;
            --color-text: #1B2430;
            --color-text-light: #5F6B7A;
            --transition-default: all 0.3s ease-in-out;
            --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
            --shadow-md: 0 30px 50px -20px rgba(0, 0, 0, 0.25);
            --shadow-hover: 0 20px 25px -12px rgba(0, 0, 0, 0.15);
            --shadow-btn: 0 6px 14px rgba(31, 61, 103, 0.25);
            --shadow-btn-hover: 0 12px 20px -8px rgba(31, 61, 103, 0.4);
             --font-primary: "Arial Narrow", "Arial", sans-serif;
  --font-secondary: "Times New Roman", serif;

        }
:root {
  --navy:#1F3D67; --navy-d:#152d50; --navy-l:#2a5290; --navy-xl:#0e1e35;
  --orange:#FF9926; --orange-d:#e8841a; --orange-l:#ffb357; --orange-xl:#fff3e0;
  --white:#FFFFFF; --off:#F7F5F1; --off2:#EEF2F8;
  --gray:#6b7280; --gray-l:#e2e8f0; --gray-xl:#f8fafc;
  --text:#0f172a; --text2:#334155;
  --radius:16px; --radius-sm:10px; --radius-lg:24px;
  --shadow:0 4px 24px rgba(31,61,103,.1);
  --shadow-lg:0 20px 60px rgba(31,61,103,.15);
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:'Plus Jakarta Sans',sans-serif;
background:var(--white);color:var(--text);overflow-x:hidden}


.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
    will-change: opacity, transform;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
    opacity: 1;
    transform: none;
}

/* Mobile */
@media (max-width:768px){

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale{
        transform: translateY(40px);
    }

    .reveal.active,
    .reveal-left.active,
    .reveal-right.active,
    .reveal-scale.active{
        transform:none;
    }
}



 .svg-wr{
  font-family: inherit;
  font-size: 15px;
    background: linear-gradient(105deg, #030f29, #0a0747);
    border: 1px solid var(--color-secondary-light);
  color:var(--color-secondary-light);
  padding: 0.2em 1em;
  padding-left: 0.9em;
  display: flex;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}

 .svg-wr span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}

 .svg-wr svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

 .svg-wr:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
  
}

 .svg-wr:hover svg {
  transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

 .svg-wr:hover span {
  transform: translateX(5em);

}

 .svg-wr:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }

  to {
    transform: translateY(-0.1em);
  }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar{width:5px}
::-webkit-scrollbar-track{background:var(--navy-xl)}
::-webkit-scrollbar-thumb{background:var(--orange);border-radius:10px}
        body {
            
font-family: var(--font-secondary);       
background:
  linear-gradient(rgba(255,255,255,.88),rgba(255,255,255,.92)),
  url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1600&auto=format&fit=crop') center/cover;
              color: var(--color-text);
            scroll-behavior: smooth;

        }
/* ========== BANDEAU DÉFILANT PREMIUM ========== */
.site-up {
    background: linear-gradient(105deg, #0b1627e1 0%, #0f172a 100%);
    position: relative;
    z-index: 100;
    overflow: hidden;
    border-bottom: 1px solid rgba(37, 99, 235, 0.3);
}

/* ── Conteneur parent obligatoire ── */
.site-up {
    position: relative;      /* indispensable pour les pseudo‑éléments */
    overflow: hidden;        /* pour que le deuxième effet ne déborde pas */
}

/* ── Effet de brillance principal (dégradé animé) ── */
.site-up::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        #eaaf1a, 
        #8b5cf6,
        #f6c13b, 
        #3b82f6, 
        #eaaf1a,
        transparent
    );
    background-size: 200% 100%;
    animation: shimmerLine 3s linear infinite;
    z-index: 1;
}

@keyframes shimmerLine {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 200% 0%;
    }
}

/* ── Effet secondaire (lumière qui glisse) ── */
.site-up::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: shine 3s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;   /* évite d'intercepter les clics */
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20%, 100% {
        left: 200%;
    }
}



.flash-container {
    overflow: hidden;
    position: relative;
    background: linear-gradient(145deg, #010613, #010817);
}

.flash-track {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0.7rem 0;
    animation: scrollPremium 25s linear infinite;
    width: fit-content;
}

.flash-message {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 0 0.5rem;
    transition: all 0.2s;
}

.flash-message i {
    color: var(--color-secondary);
    font-size: 0.9rem;
    animation: pulse 2s ease-in-out infinite;
     background-color: white;
     padding: 5px;
     border-radius: 2px;
     border-radius: 10px;
}

.flash-message span {
    background: linear-gradient(135deg, #f1f5f9, #cbd5e1);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

@keyframes scrollPremium {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Pause au survol */
.flash-container:hover .flash-track {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    .flash-track {
        gap: 1.2rem;
        animation-duration: 20s;
    }
    .flash-message {
        font-size: 0.75rem;
        gap: 0.4rem;
    }
    .flash-message i {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .flash-track {
        gap: 1rem;
        animation-duration: 18s;
        padding: 0.5rem 0;
    }
    .flash-message {
        font-size: 0.65rem;
    }
}

/* Toolbox flottante avec toggle unique – version corrigée */
.toolbox-wrapper {
    position: fixed;
    bottom:1.8rem;
    left: 2rem;
    z-index: 1050;
}

/* Bouton principal (toggle) */
.toggle-toolbox-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dbbc5e, #020a39);
    border: none;
    border-radius: 60px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    color: white;
}

.toggle-toolbox-btn:hover {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 18px 32px rgba(139, 92, 246, 0.4);
        background: linear-gradient(90deg,#1F3D67,  #2e2a25, #0f022d);

}

.toggle-toolbox-btn svg {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 1.8;
    fill: none;
    transition: transform 0.2s;
}

/* Contenu de la toolbox (caché par défaut) */
.modern-toolbox-content {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 320px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(139, 92, 246, 0.2);
    padding: 1.2rem;
    transition: opacity 0.25s ease, visibility 0.25s, transform 0.25s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.96);
    pointer-events: none;
}

.modern-toolbox-content.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Titre */
.toolbox-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: #162d4c;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.toolbox-title svg{
 
    color:  orange;
    border-radius: 5px;
    padding: 1px;
}
/* Barre de recherche */
.toolbox-search {
    margin-bottom: 1.2rem;
    position: relative;
}

.toolbox-search input {
    width: 100%;
    padding: 12px 18px 12px 42px;
    border: none;
    background: #f1f5f9;
    border-radius: 10px;
    font-size: 0.85rem;
    outline: none;
    transition: all 0.2s;
    color: #0f172a;
    font-weight: 500;
}

.toolbox-search input:focus {
    background: white;
    box-shadow: 0 0 0 1px  #FF9926;
}

.toolbox-search svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    stroke:  #FF9926;
    stroke-width: 2;
    color:  #FF9926;
}

/* Section contact + WhatsApp */
.contact-section {
    background: rgba(139, 92, 246, 0.06);
    border-radius: 24px;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;
    border: 0.5px solid rgba(139, 92, 246, 0.2);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #1e293b;
}

.contact-item i {
    width: 16px;
    height: 16px;
    color:#FF9926;
    stroke-width: 1.5;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    border-radius: 60px;
    padding: 10px 16px;
    width: 100%;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.whatsapp-btn svg {
    width: 18px;
    height: 18px;
    fill: white;
    stroke: none;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(37, 211, 102, 0.3);
}

/* Raccourcis */
.toolbox-shortcuts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.shortcut-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.08);
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.65rem;
    font-weight: 500;
    color: #1e293b;
    text-decoration: none;
    transition: all 0.2s;
        stroke:#FF9926;


}

.shortcut-item svg {
    width: 14px;
    height: 14px;
    stroke-width: 1.8;
    border: 1px solid 12px orange;
}

.shortcut-item:hover {
    background: linear-gradient(135deg, #110331, #FF9926);
    color: white;
    transform: translateY(-2px);
}

.shortcut-item:hover svg {
    stroke: white;
}

/* Mobile */
@media (max-width: 768px) {
    .toolbox-wrapper {
        bottom: 1rem;
        left: 1rem;
    }
    .modern-toolbox-content {
        width: calc(100vw - 2rem);
        left: 0;
        bottom: 75px;
        padding: 1rem;
    }
}

/* conteneur des boutons */
.scroll-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1100;
}

.scroll-btn {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(145deg, #000000, #010f2c);
    border: 1px solid #180f3700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(241, 166, 60, 0.344), 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    backdrop-filter: blur(2px);
    color: #FF9926;
}

.scroll-btn.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* dégradé vif au survol */
.scroll-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg,#1F3D67,  #2e2a25, #0f022d);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.scroll-btn:hover::before {
    opacity: 1;
}

.scroll-btn:hover {
    color: white;
    border-color: var(--color-secondary-light);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 18px 30px rgba(3, 0, 11, 0.169), 0 0 0 3px rgba(249, 115, 22, 0.2);
}

/* icônes */
.scroll-btn svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--color-secondary-light);
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.2s ease, transform 0.2s;
}

.scroll-btn:hover svg {
    stroke: white;
    transform: scale(1.1);
}

/* animation de ripple au clic */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: rippleEffect 0.6s linear;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Tooltip moderne */
.scroll-btn {
    --tooltip-bg: #0f172a;
    --tooltip-color: orange;
        --tooltip-border-radius: 7px;


}

.scroll-btn::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    background: var(--tooltip-bg);
    color: var(--tooltip-color);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 10px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    backdrop-filter: blur(4px);
    letter-spacing: 0.3px;
    pointer-events: none;
}

.scroll-btn:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-5px);
}

/* responsive */
@media (max-width: 768px) {
    .scroll-buttons {
        bottom: 1.2rem;
        right: 1.2rem;
        gap: 0.8rem;
    }
    .scroll-btn {
        width: 44px;
        height: 44px;
    }
    .scroll-btn svg {
        width: 20px;
        height: 20px;
    }
    .scroll-btn::after {
        display: none; /* évite chevauchement sur mobile */
    }
}

        /* ========== NAVBAR ========== */
       
        /* ========== NAVBAR ========== */
        .navbar {
            background-color: var(--color-white);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease-in-out;
            padding: 0.1rem 0;
            box-shadow: var(--shadow-sm);
        }
        .navbar.scrolled {
            background-color: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(8px);
            box-shadow: 0 12px 25px -8px rgba(0,0,0,0.15);
            padding: 0.2rem 0;
        }
        .navbar.scrolled .logo-img img {
            width: 50px;
            height: 50px;
            transition: all 0.3s;
        }
        .navbar.scrolled .brand-name {
            font-size: 1.2rem;
        }
        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            padding: 0.2rem 1rem;
            gap: 1rem;
        }
        .brand-left {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .logo-img img {
                        transition: all 0.3s;

           max-width: 70px;
            display: block;
            border-radius: 14px;
            box-shadow: 0 10px 18px -8px rgba(79, 70, 229, 0.3);
        }

        
        .brand-name a{
            font-size: 1.35rem;
            font-weight: 800;
            background: linear-gradient(120deg, var(--color-primary), var(--color-primary-dark));
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            transition: font-size 0.3s;
            text-decoration: none;
        }
        .slogan-text a{
            font-size: 0.7rem;
            color: var(--color-text-light);
            text-transform: uppercase;
            text-decoration: none;
        }
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            list-style: none;
        }
        .nav-link {
            text-decoration: none;
            font-weight: 700;
            font-size: .95rem;
            color: var(--color-text);
            transition: var(--transition-default);
            position: relative;
            padding: 0.5rem 0;
            cursor: pointer;
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2.5px;
    background: linear-gradient(90deg,#1F3D67,  #ffb45c, #0f022d);
            transition: width 0.3s;
        }
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }
        .nav-link:hover {
            color: var(--color-secondary);
        }
        .nav-link.active {
            color: var(--color-primary);
            font-weight: 800;
        }
       
        .hamburger {
            display: none;
            background: transparent;
            border: none;
            cursor: pointer;
            width: 44px;
            height: 44px;
            border-radius: 40px;
            align-items: center;
            justify-content: center;
            transition: var(--transition-default);
        }
        .hamburger:hover {
            background-color: var(--color-light);
        }
        .hamburger-box {
            width: 24px;
            height: 18px;
            position: relative;
        }
        .hamburger-inner {
            width: 24px;
            height: 2px;
            background-color: var(--color-text);
            position: absolute;
            left: 0;
            transition: all 0.3s ease;
        }
        .hamburger-inner::before,
        .hamburger-inner::after {
            content: '';
            width: 24px;
            height: 2px;
            background-color: var(--color-text);
            position: absolute;
            left: 0;
            transition: all 0.3s ease;
        }
        .hamburger-inner {
            top: 8px;
        }
        .hamburger-inner::before {
            top: -8px;
        }
        .hamburger-inner::after {
            top: 8px;
        }
        .hamburger.active .hamburger-inner {
            background-color: transparent;
        }
        .hamburger.active .hamburger-inner::before {
            transform: rotate(45deg);
            top: 0;
        }
        .hamburger.active .hamburger-inner::after {
            transform: rotate(-45deg);
            top: 0;
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            .nav-menu {
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background: rgba(255,255,255,0.98);
                backdrop-filter: blur(12px);
                flex-direction: column;
                gap: 1rem;
                padding: 2rem;
                border-radius: 0 0 28px 28px;
                box-shadow: var(--shadow-md);
                transform: translateY(-120%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition-default);
                z-index: 999;
            }
            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            .nav-link {
                width: 100%;
                text-align: center;
            }
        }
/* ========== HERO SECTION ========== */
        .hero-section {
            background-attachment: fixed;
            position: relative;
            padding: 3rem 1.5rem 5rem;
background:
  linear-gradient(rgba(255,255,255,.88),rgba(255, 255, 255, 0.92)),
  url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1600&auto=format&fit=crop') center/cover;
         }

        .hero-premium-container {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .hero-premium-carousel {
            flex: 0.6;
            min-width: 280px;
            perspective: 1000px;
        }

        .carousel-frame {
            width: 100%;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: var(--shadow-md);
            background: var(--color-white);
            transition: var(--transition-default);
        }

        .carousel-frame:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .carousel-card {
            flex: 0 0 100%;
            position: relative;
        }

        .carousel-image img {
            width: 100%;
            /* aspect-ratio: 4 / 3; */
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .carousel-image img:hover {
            transform: scale(1.02);
        }

        .carousel-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            color: white;
            padding: 0.5rem;
            font-weight: 600;
            text-align: center;
            backdrop-filter: blur(3px);
        }

        .carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 1.2rem;
        }

        .carousel-btn {
            background: var(--color-white);
            border: none;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            color: var(--color-primary);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: var(--transition-default);
        }

        .carousel-btn:hover {
    background: linear-gradient(145deg, #010613, #02236b);
          color: var(--color-secondary);
            transform: scale(1.08);
        }

        .carousel-dots {
            display: flex;
            gap: 10px;
        }

        .carousel-dot {
            width: 8px;
            height: 8px;
    background: linear-gradient(145deg, #010613, #02236b);
       border-radius: 50%;
            cursor: pointer;
            transition: var(--transition-default);
            border: none;
        }

        .carousel-dot.active {
            background: var(--color-secondary);
            width: 24px;
            border-radius: 10px;
        }

        .hero-premium-content {
            flex: 1;
            min-width: 280px;
        }

        .hero-tag {
            display: inline-block;
            background: rgba(31, 61, 103, 0.08);
            color: var(--color-primary);
            padding: 0.3rem 1rem;
            border-radius: 8px;
            font-size: 0.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
            border: solid 1px var(--color-secondary-light);
        }

        .hero-main-title {
            font-size: clamp(2rem, 5vw, 3.4rem);
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 0.5rem;
            color: var(--color-text);
            font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif        }

        .gradient-text {
              font-family: Orbitron;

    background: linear-gradient(145deg, #010613, #02236b);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;     
        }

        .hero-text {
              font-family: Verdana, Geneva, Tahoma, sans-serif;

            font-size: 1rem;
            line-height: 1.8;
            color: var(--color-text-light);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .onelj-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.onelj-stat {
  text-align: left;
}

.onelj-stat-number {
  font-size: 2.2rem;
  font-weight: 800;
   font-family: Orbitron;
  color: var(--color-SE, #081532);
  line-height: 1.2;
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: Orbitron;
}

.onelj-stat-number .onelj-symbol {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-secondary);
  
}

.onelj-stat-label {
  font-size: 0.9rem;
  color: var(--color-text, #555);
  font-weight: 600;
}

        .hero-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        
/* Bouton 1 (primaire) avec remplissage latéral */
.hero-btn-1 {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(145deg, #010613, #010817);
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    color: var(--color-secondary);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-btn);
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-size: 15px;
}

/* Pseudo-élément pour le remplissage latéral (glisse depuis la gauche) */
.hero-btn-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(105deg, var(--color-secondary), var(--color-primary));
    transition: width 0.4s ease-in-out;
    z-index: -1;
}

.hero-btn-1:hover {
    color: var(--color-light);
    transform: translateY(-3px);
    /* On garde l'effet de brillance, mais le fond est géré par ::before */
    filter: brightness(1.05);
    box-shadow: var(--shadow-btn-hover);
}

.hero-btn-1:hover::before {
    width: 100%;
}

/* Bouton 2 (outline) avec remplissage latéral */
.hero-btn-2 {
    display: inline-block;
    text-decoration: none;
    background: rgba(209, 237, 234, 0.248);
    border: 1px solid var(--color-secondary);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    color: var(--color-secondary);
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    box-shadow: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    font-size: 15px;
}

/* Pseudo-élément pour le remplissage latéral (fond primaire) */
.hero-btn-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(145deg, #010613, #010817);
    transition: width 0.4s ease-in-out;
    z-index: -1;
}

.hero-btn-2:hover {
    transform: translateY(-3px);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.hero-btn-2:hover::before {
    width: 100%;
}



        .hero-shape-divider {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .hero-shape-divider svg {
            display: block;
            width: calc(100% + 1.3px);
            height: 60px;
        }

        .shape-fill {
            fill: var(--color-white);
        }



        

/* ========== SECTION À PROPOS (DEUX COLONNES) ========== */
.dg-apropos {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5fe 100%);
    border-radius: 0;
    margin: 0;
}

.two-col {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1280px;
    margin: 0 auto;
}

.two-col .col {
    flex: 1 1 45%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(2px);
    border-radius: 2rem;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.two-col .col:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px -18px rgba(0, 0, 0, 0.2);
    border-color: var(--color-secondary-light);
}

/* Titres avec dégradé et barre décorative */
.col h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 1.2rem;
    background: linear-gradient(145deg, #010613, #02236b);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.col h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg,#1F3D67,  #ffb45c, #0f022d);
    border-radius: 3px;
      --color-primary: #1F3D67;
            --color-primary-dark: #162d4c;
}

/* Photos */
.dg-photo,
.team-photo {
    width: 100%;
    border-radius: 1.5rem;
    margin: 1.2rem 0;
    object-fit: cover;
    box-shadow: 0 15px 25px -12px rgb(184, 132, 12);
    transition: transform 0.4s, box-shadow 0.3s;
    border: 2px solid var(--color-secondary);
}

.dg-photo {
    aspect-ratio: 1 / 1;
    max-width: 350px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    object-fit: contain;
}

.team-photo {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.col:hover .dg-photo,
.col:hover .team-photo {
    transform: scale(1.02);
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.2);
}

/* Paragraphes */
.col p {
    color: #334155;
    line-height: 1.6;
    margin: 1rem 0;
    font-size: 0.95rem;
}

/* Boutons (adaptés aux classes .btn et .btn.small) */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
  background:  #08244e;
    border: 1px solid var(--color-secondary-light);
  color:var(--color-secondary-light);
    padding: 0.7rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.2);
    border: none;
    cursor: pointer;
}



.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
    gap: 0.8rem;
    color: var(--color-secondary);
}

.btn i {
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
    gap: 0.9rem;
}

.btn.secondary {
   background:  #08244e;
    border: 1px solid var(--color-secondary-light);
  color:var(--color-secondary-light);
    box-shadow: none;
}

.btn.secondary:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

/* Responsive */
@media (max-width: 900px) {
    .two-col {
        gap: 2rem;
        flex-direction: column;
    }
    .two-col .col {
        flex: 1 1 100%;
        text-align: center;
    }
    .col h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .dg-photo {
        max-width: 160px;
    }
    .btn {
        margin-top: 0.5rem;
    }
}

@media (max-width: 480px) {
    .dg-apropos {
        padding: 2rem 1rem;
    }
    .two-col .col {
        padding: 1.5rem;
    }
}

.director-text {
            color: var(--color-text);
            line-height: 1.6;
            font-size: 1rem;
        }

        /* Première phrase en relief */
        .first-sentence {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--color-primary);
            display: block;
            margin-bottom: 0.1rem;
            letter-spacing: -0.2px;
        }

        /* Mots clés */
        .highlight {
            color: var(--color-primary-dark);
            font-weight: 600;
            background: linear-gradient(120deg, rgba(8, 85, 111, 0.1), transparent);
            padding: 0 0.2rem;
            border-radius: 6px;
        }

        /* Texte coupé / déroulé */
        .short-text, .full-text {
            transition: all 0.3s ease;
                        margin-top: 10rem;

        }
 .short-text {
            transition: all 0.3s ease;
                        margin-top: 1rem;

        }
        .full-text {
            display: none;
            margin-top: 0rem;
        }

        .full-text.show {
            display: block;
                        margin-top: 0rem;

        }
/* Bouton stylé */
        .ctn-onel {
        
      font-weight: 600;
      font-size: 1rem;
      padding: 0.9rem 1.9rem;
      border-radius: 10px;
      border: 1.5px solid var(--color-secondary);
    background: linear-gradient(105deg, #030f29, #0a0747);
      color: var(--color-secondary);

      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      text-decoration: none;
      transition: 0.25s;
      font-family: var(--font-primary);
            cursor: pointer;
                        margin-top: 1.5rem;




        }

        .ctn-onel:hover {
     border-color: var(--color-secondary);
      background: var(--color-secondary);
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
      color: var(--color-white);


        }


















        
    /* ---------- CONTENEUR PRINCIPAL (center + effet fade-up natif) ---------- */
    .center {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      
      /* Animation fade-up intégrée (remplace AOS sans JS) */
      opacity: 0;
      transform: translateY(30px);
      /*animation: fadeUpCustom 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
      animation-delay: 0.75s;  correspond à data-aos-delay="750" */
    }



 @keyframes fadeUpCustom {
      0% {
        opacity: 0;
        transform: translateY(30px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ---------- LE LIEN (bouton stylé, dynamique, centré) ---------- */
    .ctn-center {
        
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.85rem;
      
      /* Style chic & moderne */
    background: linear-gradient(145deg, #010613, #02236b);
   border: 1px solid var(--color-secondary-light);
  color:var(--color-secondary);   
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 0.01em;
      text-decoration: none;
          padding: 0.8rem 1rem;

      border-radius: 10px;
      
      /* Ombres profondes mais raffinées */
      box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.25), 0 4px 10px rgba(0, 0, 0, 0.1);
      
      /* Transitions pour tous les effets dynamiques */
      transition: transform 0.25s cubic-bezier(0.2, 0.9, 0.4, 1.1),
                  box-shadow 0.35s ease,
                  background 0.3s ease,
                  gap 0.25s ease;
      
      /* Accessibilité + nettoyage */
      user-select: none;
      -webkit-tap-highlight-color: transparent;
      overflow: hidden;
      z-index: 1;
      cursor: pointer;
    }

    /* Ajout d'une petite flèche après le texte (élément généré) */
    .ctn-center::after {
      content: "→";
      display: inline-block;
      font-size: 1rem;
      font-weight: 400;
      transition: transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1), filter 0.2s;
      filter: drop-shadow(0 1px 2px rgba(181, 124, 19, 0.2));
      line-height: 1;
        border-right: solid  2px var(--color-secondary-light); 
    border-radius: 5px;
    }

    /* ---------- EFFETS DYNAMIQUES AU SURVOL ---------- */
    .ctn-center:hover {
    color: var(--color-white);
    background: linear-gradient(90deg,#1F3D67,  #2e2a25, #0f022d);
      box-shadow: 0 28px 40px -16px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
      transform: translateY(-5px) scale(1.02);
      gap: 1.15rem;
    }
    
    .ctn-center:hover::after {
      transform: translateX(7px) rotate(2deg) scale(1.08);
      filter: drop-shadow(0 0 6px rgba(100, 200, 255, 0.6));
    }
    
    /* ---------- EFFET AU CLIC (ACTIVE) : retour immédiat ---------- */
    .ctn-center:active {
      transform: translateY(3px) scale(0.97);
      transition: transform 0.08s linear;
      box-shadow: 0 8px 18px -6px rgba(0, 0, 0, 0.3);
    }
    
    /* Accessibilité clavier */
    .ctn-center:focus-visible {
      outline: 3px solid #2c7be5;
      outline-offset: 4px;
      border-radius: 60px;
    }
    
    /* ---------- BRILLANCE LUMINEUSE QUI DÉFILE AU SURVOL ---------- */
    .ctn-center::before {
      content: '';
      position: absolute;
      top: 0;
      left: -80%;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transform: skewX(-25deg);
      transition: left 0.7s ease-in-out;
      pointer-events: none;
      z-index: 1;
      border-radius: 60px;
    }
    
    .ctn-center:hover::before {
      left: 140%;
    }
    
    /* ---------- PETIT FLASH VISUEL AU CLIC ---------- */
    .ctn-center:active {
      box-shadow: 0 2px 8px rgba(0,0,0,0.2), 0 0 0 2px rgba(255,255,255,0.4);
    }
    
    /* ---------- RESPIRATION SUBTILE AU REPOS (dynamique sans être lourd) ---------- */
    @keyframes gentlePulse {
      0% {
        box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.25), 0 4px 10px rgba(0, 0, 0, 0.1);
      }
      50% {
        box-shadow: 0 24px 38px -10px rgba(0, 100, 180, 0.2), 0 0 0 1px rgba(255,255,255,0.08) inset;
      }
      100% {
        box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.25), 0 4px 10px rgba(0, 0, 0, 0.1);
      }
    }
    
    @media (prefers-reduced-motion: no-preference) {
      .ctn-center {
        animation: gentlePulse 4s infinite ease-in-out;
      }
      .ctn-center:hover {
        animation: none;
      }
    }
    
    /* ---------- RESPONSIVE ---------- */
    @media (max-width: 580px) {
      .ctn-center {
        padding: 0.8rem 1.9rem;
        font-size: 1.15rem;
        gap: 0.6rem;
      }
      .ctn-center::after {
        font-size: 1.45rem;
      }
      .ctn-center:hover {
        gap: 0.9rem;
      }
    }



















    




        /* ========== SECTIONS GÉNÉRIQUES ========== */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 5rem 2rem;
        }

        /* .section-title {
            font-size: 2.2rem;
            font-weight: 800;
    background: linear-gradient(145deg, #010613, #02236b);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            
        }
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
    background: linear-gradient(90deg,#1F3D67,  #ffb45c, #0f022d);
            margin: 1rem auto 0;
            border-radius: 4px;
        } */









/* Conteneur principal */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem auto;
    padding: 0 1.5rem;
}

/* Titre (en premier) */
.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    background: linear-gradient(145deg, #010613, #02236b);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;            
    letter-spacing: -0.02em;
}

/* Badge (sous le titre) */
.section-badge {
    display: inline-block;
     background: rgba(37, 99, 235, 0.1);
    color: #2564ebc3;
    font-size: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.4rem 1.2rem;
    border-radius: 5px;
    margin-bottom: 1.2rem;
    border: 1px solid var(--color-secondary-light);
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.section-badge:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ede9fe 0%, #e0e7ff 100%);
    border-color: var(--color-secondary-light);
    box-shadow: 0 6px 14px rgba(109, 40, 217, 0.12);
}

/* Sous-titre (en dessous du badge) */
.section-subtitle {
    font-size: 1.2rem;
 color: #334155;
    line-height: 1.6;    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
}

/* Ligne décorative optionnelle sous le titre (si vous voulez un trait) */
.section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg,#1F3D67,  #ffb45c, #0f022d);
    border-radius: 5px;
    margin: 0.8rem auto 0 auto;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-title::after {
        width: 55px;
        margin-top: 0.6rem;
    }
    .section-badge {
        font-size: 0.75rem;
        padding: 0.3rem 1rem;
        margin-bottom: 1rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }
    .section-subtitle {
        font-size: 0.95rem;
    }
}








        

/* ========== SECTION SERVICES ========== */
.services {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.services.container {
    max-width: 1280px;
    margin: 0 auto;
}








/* Grille responsive */
.grid-4{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:2rem;
    margin-bottom:2rem;
}

/* Carte service */
.service-card{
    position:relative;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    border:1px solid rgba(31,61,103,.08);
    box-shadow:
        0 10px 25px rgba(31,61,103,.08),
        0 2px 8px rgba(31,61,103,.04);
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
    height:100%;
}

/* Effet lumineux */
.service-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(255,153,38,.08),
        rgba(31,61,103,.05)
    );
    opacity:0;
    transition:opacity .35s ease;
    pointer-events:none;
}

/* Hover */
.service-card:hover{
    transform:translateY(-8px);
    border-color:rgba(255,153,38,.35);
    box-shadow:
        0 20px 40px rgba(31,61,103,.12),
        0 8px 20px rgba(31,61,103,.08);
}

.service-card:hover::before{
    opacity:1;
}

/* Tablettes */
@media (max-width:992px){
    .grid-4{
        gap:1.5rem;
        grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    }
}

/* Mobiles */
@media (max-width:768px){
    .grid-4{
        grid-template-columns:1fr;
        gap:1.25rem;
    }

    .service-card{
        border-radius:18px;
    }
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.15);
}

.service-img {
    overflow: hidden;
    height: 200px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
     font-size: 1.3rem;
            font-weight: 700;
    margin-bottom: 0.75rem;
                color: var(--color-primary);

}

.service-content p {
   color: var(--color-text-light);
            font-size: 0.9rem;
            line-height: 1.5;

    margin-bottom: 1rem;
}

/* Liste des fonctionnalités */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem 0;
}

.service-features li {
    font-size: 1rem;
    color: #334155;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li i {
    color: var(--color-secondary);
    font-size: 1rem;

}

/* Lien "Découvrir" */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: gap 0.2s;
    border-left: solid  2px var(--color-secondary-light); 
    border-radius: 5px;
    padding: 5px;
}

.service-link:hover {
    gap: 0.8rem;
    text-decoration: underline;
      color:var(--color-secondary-light);

}

/* Bouton "Voir tous nos services" */
  .sercenter-bot{
    font-size: 18px;
            display: block;
            width: fit-content;
            margin: 0 auto;
             background:  #13366a;
    border: 1px solid var(--color-secondary-light);
  color:var(--color-secondary-light);
            padding: 0.8rem 2rem;
            border-radius: 10px;
            font-weight: 700;
            text-decoration: none;
            text-align: center;
            box-shadow: var(--shadow-btn);
            font-size: 1rem;
            transition:  all 0.3s ease-in-out;
        }

        .sercenter-bot:hover {
 background: #2563eb;
    color: white;
    border-color: #2563eb;        }

/* Responsive */
@media (max-width: 768px) {
    .services {
        padding: 3rem 1rem;
    }
    .grid-4 {
        gap: 1.5rem;
    }
    .service-img {
        height: 180px;
    }
    .service-content {
        padding: 1rem;
    }
}













/* ========== SECTION FORMATIONS ========== */
.formations {
    padding: 4rem 1.5rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

/* .formations h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #0f172a, #2563eb);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
} */



.formations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto 2.5rem;
}

.formation-col {
    background: white;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.formation-col:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px -15px rgba(0, 0, 0, 0.12);
}

.formation-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s;
}

.formation-col:hover .formation-img {
    transform: scale(1.02);
}

.formation-content {
    padding: 1.8rem;
}

.formation-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.formation-content h3 i {
    color: #2563eb;
    font-size: 1.6rem;
}

.formation-content p {
    color: #334155;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.formation-content strong {
    color: #1e293b;
    font-weight: 600;
}



.center {
    text-align: center;
   
}

/* Responsive */
@media (max-width: 768px) {
    .formations {
        padding: 2.5rem 1rem;
    }
    .formations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .formation-img {
        height: 180px;
    }
    .formation-content {
        padding: 1.2rem;
    }
    .formation-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .formations h2 {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 0.3rem;
    }
    .btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
}













    :root {
            --color-primary: #1F3D67;
            --color-primary-dark: #162d4c;
            --color-secondary: #FF9926;
            --color-secondary-light: #ffb45c;
            --color-white: #FFFFFF;
            --color-light: #F5F7FA;
            --color-border: #E4EAF1;
            --color-text: #1B2430;
            --color-text-light: #5F6B7A;
            --transition: all 0.3s ease-in-out;
            --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 20px 30px -10px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 25px 35px -12px rgba(0, 0, 0, 0.15);
            --shadow-btn: 0 6px 14px rgba(31, 61, 103, 0.25);
            --shadow-btn-hover: 0 12px 20px -8px rgba(31, 61, 103, 0.4);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
     
        /* SECTION RÉALISATIONS */
        .realisations-section {
            padding: 5rem 2rem;
            background: var(--color-light);
        }
        .realisations-section .container {
            max-width: 1280px;
            margin: 0 auto;
        }
    
        /* Grille */
        .realisations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }
        /* Carte */
        .realisation-card {
            background: var(--color-white);
            border-radius: 24px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border);
            display: flex;
            flex-direction: column;
        }
        .realisation-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
            border-color: var(--color-secondary);
        }
        .card-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .realisation-card:hover .card-image img {
            transform: scale(1.05);
        }
        .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(31, 61, 103, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .realisation-card:hover .card-overlay {
            opacity: 1;
        }
        .btn-details {
      background-color: #08244e;
            color: var(--color-secondary);
            padding: 0.6rem 1.2rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            border: 1px solid var(--color-secondary-light);
        }
        .btn-details:hover {
            background: var(--color-primary);
            transform: translateX(5px);
            color: white;
        }
        .card-content {
            padding: 1.5rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .card-content h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--color-primary);
            margin-bottom: 0.5rem;
        }
        .card-location {
            font-size: 0.75rem;
            color: var(--color-secondary);
            font-weight: 600;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }
        .card-content p {
            color: var(--color-text-light);
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 1rem;
        }
        .card-domain {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--color-secondary);
            margin-top: auto;
            padding-top: 1rem;
            border-top: 1px dashed var(--color-border);
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: linear-gradient(105deg, var(--color-primary), var(--color-secondary));
            color: var(--color-white);
            padding: 0.8rem 2rem;
            border-radius: 10px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: var(--shadow-btn);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-btn-hover);
            gap: 0.8rem;
        }
        /* MODALE */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.85);
            backdrop-filter: blur(5px);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .modal.active {
            display: flex;
            opacity: 1;
        }
        .modal-content {
            background: var(--color-white);
            max-width: 800px;
            width: 90%;
            max-height: 85vh;
            border-radius: 32px;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
            animation: modalSlide 0.4s ease;
        }
        @keyframes modalSlide {
            from { transform: translateY(30px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        .modal-close {
            position: sticky;
            top: 1rem;
            right: 1rem;
            float: right;
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--color-primary);
            cursor: pointer;
            transition: transform 0.2s;
            background: var(--color-white);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }
        .modal-close:hover {
            transform: scale(1);
            color: var(--color-secondary);
            background: var(--color-light);
        }
        .modal-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        .modal-body {
            padding: 2rem;
            clear: both;
        }
        .modal-body h3 {
            font-size: 1.8rem;
            color: var(--color-primary);
            margin-bottom: 0.3rem;
        }
        .modal-location {
            color: var(--color-secondary);
            font-weight: 600;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .modal-body h4 {
            font-size: 1.1rem;
            margin: 1rem 0 0.5rem;
            color: var(--color-primary);
        }
        .modal-body p {
            color: var(--color-text-light);
            line-height: 1.6;
            margin-bottom: 0.8rem;
        }
        .modal-techs {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .modal-techs span {
            background: rgba(31,61,103,0.08);
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 500;
            color: var(--color-primary);
        }
        .modal-stats {
            display: flex;
            gap: 1.5rem;
            background: var(--color-light);
            padding: 1rem;
            border-radius: 24px;
            margin: 1rem 0;
            flex-wrap: wrap;
        }
        .modal-stats div {
            flex: 1;
            text-align: center;
        }
        .modal-stats .stat-number {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--color-secondary);
        }
        @media (max-width: 768px) {
            .realisations-section { padding: 3rem 1rem; }
            .card-image { height: 180px; }
            .modal-body { padding: 1.2rem; }
            .modal-body h3 { font-size: 1.4rem; }
        }











         /* Témoignages */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        .testimonial-card {
            background: var(--color-light);
            padding: 2rem;
            border-radius: 24px;
            transition: var(--transition-default);
            border-left: 4px solid var(--color-secondary);
        }
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }
        .testimonial-text {
            font-style: italic;
            color: var(--color-text);
            margin-bottom: 1rem;
        }
        .testimonial-author {
            font-weight: bold;
            color: var(--color-primary);
        }










 /* ===== SECTION UNIQUE POUR ÉVITER CONFLITS ===== */
        .testimonials-auto-slider {
            padding: 5rem 1.5rem;
            background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
            overflow: hidden;
            font-family: 'Inter', system-ui, sans-serif;
        }

        .testimonials-auto-slider .slider-container {
            max-width: 1280px;
            margin: 0 auto;
        }

        
        /* Slider */
        .testimonials-auto-slider .slider-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 2rem;
        }

        .testimonials-auto-slider .slider-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            will-change: transform;
        }

        .testimonials-auto-slider .slide {
            flex: 0 0 100%;
            padding: 0.5rem;
            box-sizing: border-box;
        }

        .testimonials-auto-slider .slide-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.8rem;
        }

        /* Cartes */
        .testimonials-auto-slider .testimonial-card {
            background: white;
            border-radius: 1.5rem;
            padding: 1.8rem;
            text-align: center;
            box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.05);
            border: 1px solid #eef2ff;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .testimonials-auto-slider .testimonial-card:hover {

              transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
            border-color: var(--color-secondary);
        }

        .testimonials-auto-slider .testimonial-card img {
            width: 85px;
            height: 85px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1rem;
            border: 3px solid white;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s;
        }

        .testimonials-auto-slider .testimonial-card:hover img {
            transform: scale(1.05);
            border-color: #2563eb;
        }

        .testimonials-auto-slider .testimonial-card h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.6rem;
            color: var(--color-primary);

        }

        .testimonials-auto-slider .testimonial-card p {
            font-size: 0.85rem;
            line-height: 1.5;
            color: #334155;
            font-style: italic;
            flex-grow: 1;
        }

        /* Navigation */
        .testimonials-auto-slider .slider-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1.2rem;
            margin-top: 2.5rem;
        }

        .testimonials-auto-slider .slider-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: white;
            border: 1px solid var(--color-secondary-light);
            cursor: pointer;
            font-size: 1.2rem;
            color: #010a1f;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 6px rgba(0,0,0,0.05);
            transition: var(--transition-default);
        }

        .testimonials-auto-slider .slider-btn:hover {
            color: var(--color-secondary);
            transform: scale(1.08);
            border-color: var(--color-secondary-light);
    background: linear-gradient(145deg, #010613, #02236b);
  
        }

        .testimonials-auto-slider .slider-dots {
            display: flex;
            gap: 0.7rem;
        }

        .testimonials-auto-slider .dot {
            width: 10px;
            height: 10px;
    background: linear-gradient(145deg, #010613, #02236b);
         border-radius: 50%;
            cursor: pointer;
            transition: all 0.2s;
        }

        .testimonials-auto-slider .dot.active {
            width: 28px;
            border-radius: 10px;
            background:#FF9926;

        }
  /* Petit style pour les étoiles (à ajouter dans votre CSS existant) */
    .rating-stars {
        margin: 0.5rem 0;
        font-size: 0.9rem;
        color: var(--color-secondary);
        letter-spacing: 2px;
    }
    .rating-stars i {
        margin-right: 2px;
    }
    .rating-stars .far {
        color: var(--color-border);
    }

    .rating-stars {
    color: var(--color-secondary);
    font-size: 1rem;
    letter-spacing: 2px;
}
.rating-stars .star-full::before {
    content: "★";
}
.rating-stars .star-half::before {
    content: "½★"; /* ou utiliser un pseudo-élément plus élaboré */
}
.rating-stars .star-empty::before {
    content: "☆";
}
        /* Responsive */
        @media (max-width: 900px) {
            .testimonials-auto-slider .slide-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.2rem;
            }
        }

        @media (max-width: 640px) {
            .testimonials-auto-slider {
                padding: 3rem 1rem;
            }
            .testimonials-auto-slider .slide-grid {
                grid-template-columns: 1fr;
            }
            .testimonials-auto-slider .testimonial-card {
                padding: 1.2rem;
            }
            .testimonials-auto-slider .testimonial-card img {
                width: 70px;
                height: 70px;
            }
            .testimonials-auto-slider .slider-btn {
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }
        }





        /* Conteneur principal */
        .stagger-section {
             max-width: 1280px;
            margin: 0 auto;
            padding: 5rem 2rem;
        }

        
        /* Grille avec décalage en escalier (stagger) */
        .stagger-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            align-items: start;
        }

        /* Cartes de base */
        .stagger-card {
            background: var(--color-white);
            border-radius: 32px;
            padding: 1.8rem;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border);
            transition: var(--transition);
            height: 100%;
        }
        .stagger-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: var(--color-secondary);
        }

        /* Décalages en escalier */
        .stagger-card:nth-child(1) {
            transform: translateY(0);
        }
        .stagger-card:nth-child(2) {
            transform: translateY(25px);
        }
        .stagger-card:nth-child(3) {
            transform: translateY(50px);
        }

        /* Au survol, on lisse un peu l'effet (remontée) */
        .stagger-card:hover {
            transform: translateY(-8px);
        }
        /* Pour éviter que la carte 2 et 3 ne remontent trop bas au survol */
        .stagger-card:nth-child(2):hover,
        .stagger-card:nth-child(3):hover {
            transform: translateY(-8px);
        }

        /* Style interne des cartes */
        .stagger-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--color-primary);
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .stagger-card h3 i {
            color: var(--color-secondary);
            font-size: 1.4rem;
        }
/* ===== PARTENAIRES : CORRECTION DÉFILEMENT HORIZONTAL PRO ===== */

.stagger-card {
    overflow: hidden;
}

/* conteneur du slider */
.partners-list {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    list-style: none;
    width: max-content;
    padding: 0.5rem 0;

    /* défilement fluide */
    animation: scrollPartners 22s linear infinite;

    /* meilleure fluidité */
    will-change: transform;
}

/* pause au hover */
.partners-list:hover {
    animation-play-state: paused;
}

/* animation horizontale propre */
@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* cartes partenaires */
.partners-list li {
    flex: 0 0 auto;

    background: var(--color-light);
    border-radius: 22px;
    padding: 0.8rem;

    width: 95px;
    height: 95px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid transparent;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

/* hover partenaire */
.partners-list li:hover {
    transform: translateY(-6px) scale(1.05);

    background: rgba(255, 153, 38, 0.12);

    border-color: rgba(255, 153, 38, 0.35);

    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

/* logos */
.partners-list img {
    max-width: 68px;
    max-height: 68px;
    object-fit: contain;

    filter: grayscale(15%);
    transition: var(--transition);
}

/* effet logo */
.partners-list li:hover img {
    filter: grayscale(0%);
    transform: scale(1.06);
}

/* responsive */
@media (max-width: 768px) {
    .partners-list {
        gap: 0.9rem;
    }

    .partners-list li {
        width: 78px;
        height: 78px;
        padding: 0.6rem;
    }

    .partners-list img {
        max-width: 52px;
        max-height: 52px;
    }
}

        /* Listes actualités & astuces */
        .actus-list, .tips-list {
            list-style: none;
            padding: 0;
        }
        .actus-list li, .tips-list li {
            margin-bottom: 1rem;
            border-bottom: 1px dashed var(--color-border);
            padding-bottom: 0.8rem;
            transition: var(--transition);
        }
        .actus-list li:last-child, .tips-list li:last-child {
            border-bottom: none;
        }
        .actus-list a, .tips-list a {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            color: var(--color-text);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }
        .actus-list a i, .tips-list a i {
            color: var(--color-secondary);
            font-size: 0.9rem;
            transition: transform 0.2s;
        }
        .actus-list a:hover, .tips-list a:hover {
            color: var(--color-secondary);
            transform: translateX(5px);
        }
        .actus-list a:hover i, .tips-list a:hover i {
            transform: translateX(3px);
        }

        /* Responsive : annuler les décalages sur mobile/tablette */
        @media (max-width: 900px) {
            .stagger-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1.5rem;
            }
            .stagger-card:nth-child(2),
            .stagger-card:nth-child(3) {
                transform: translateY(0);
            }
        }
        @media (max-width: 768px) {
          
            .stagger-card {
                padding: 1.2rem;
            }
            .partners-list li {
                width: 70px;
                height: 70px;
            }
            .partners-list img {
                max-width: 50px;
                max-height: 50px;
            }
        }
        /* ===== HEADER PARTENAIRES ===== */

.partners-header {
    margin-bottom: 1.5rem;
}

.partners-mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;

    background: rgba(31, 61, 103, 0.08);
    color: var(--color-primary);

    padding: 0.45rem 1rem;
    border-radius: 50px;

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;

    margin-bottom: 1rem;
}

.partners-title-wrap h3 {
    display: flex;
    align-items: center;
    gap: 0.7rem;

    font-size: 1.6rem;
    font-weight: 800;

    color: var(--color-primary);

    margin-bottom: 0.8rem;
}

.partners-title-wrap h3 i {
    color: var(--color-secondary);
}

.partners-title-wrap p {
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 0.96rem;
}

/* zone slider */
.partners-slider {
    overflow: hidden;
    position: relative;
    width: 100%;

    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );

    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

/* footer */
.partners-footer-text {
    margin-top: 1.4rem;

    font-size: 0.85rem;
    color: var(--color-text-light);

    text-align: center;
    line-height: 1.6;
}

/* responsive */
@media (max-width: 768px) {

    .partners-title-wrap h3 {
        font-size: 1.3rem;
    }

    .partners-title-wrap p {
        font-size: 0.9rem;
    }
 }







 

/* ========== SECTION CONFIANCE & NEWSLETTER ========== */
.trust-newsletter {
    padding: 4rem 1.5rem;
    background: linear-gradient(145deg, #f1f5fe 0%, #ffffff 100%);
    border-top: 1px solid #eef2ff;
    border-bottom: 1px solid #eef2ff;
}

.trust-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.trust-content {
    flex: 1.5;
}

.trust-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.trust-content h2 {
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.trust-content p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.trust-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.trust-stat {
  text-align: center;
  background: rgba(255,255,255,0.05);
  padding: 1rem;
  border-radius: 1rem;
  min-width: 150px;
  backdrop-filter: blur(4px);
}

.trust-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary, #2563eb);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  font-family: orbitron;
}

.trust-stat-label {
  font-size: 0.9rem;
  color: var(--color-text, #4b5563);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.newsletter-box {
    flex: 1;
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 30px 12px rgba(0, 0, 0, 0.358);
    border: 1px solid #eef2ff;
    transition: transform 0.2s;
}

.newsletter-box:hover {
    transform: translateY(-5px);
}

.newsletter-box i {
    font-size: 2.5rem;
    color: var(--color-secondary);
}

.newsletter-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
        margin-top: 0.4rem;

    color: #0f172a;
}

.newsletter-box p {
    color: #475569;
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.newsletter-form input {
    flex: 2;
    padding: 0.8rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: 0.2s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-secondary-light);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.newsletter-form i{
color:var(--color-secondary);
font-size: 20px;
}
.newsletter-form button {
    flex: 1;
    background: linear-gradient(105deg, #030f29, #0a0747);
    border: none;
    padding: 2px;
    border-radius: 6px;
    color: var(--color-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    gap: 0.8rem;
    background-color: var(--color-secondary);
    color: white;
}

.newsletter-note {
    font-size: 0.7rem;
    color: #94a3b8;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .trust-container {
        flex-direction: column;
        gap: 2rem;
    }
    .trust-content {
        text-align: center;
    }
    .trust-stats {
        justify-content: center;
    }
    .stat {
        text-align: center;
    }
}







@media (max-width: 480px) {
    .trust-newsletter {
        padding: 2.5rem 1rem;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form button {
        width: 100%;
    }
}














 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }



  /* ── FOOTER ─────────────────────────────────────────────── */
  .footer {
    background: linear-gradient(145deg, #02011b, #010f2c);
    color: #fff;
    padding: 52px 5% 0;
  }

  /* ── BRAND ── */
  .footer-brand {
    display: none;
    align-items: center;
    gap: 12px;
    margin-bottom: 44px;
    justify-content: end;
    
   
  }
  .footer-brand .badge {
    width: 48px;
    height: 48px;
    background: #FF9926;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .5px;
    flex-shrink: 0;
  }
  .footer-brand .brand-text .name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
    line-height: 1;
  }
  .footer-brand .brand-text .tagline {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #FF9926;
    text-transform: uppercase;
    margin-top: 4px;
  }

  /* ── GRID ── */
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 36px 24px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  /* ── COLUMN ── */
  .footer-col h3 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #FF9926;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 153, 38, .25);
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
  }

  .footer-col ul li a {
    text-decoration: none;
    font-size: 15px;
    color: rgba(255, 255, 255, .62);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color .2s, gap .2s;
    line-height: 1.4;
  }
  .footer-col ul li a:hover {
    color: #fff;
    gap: 13px;
  }

  .footer-col ul li a i {
    font-size: 13px;
    color: rgba(255, 153, 38, .65);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
    transition: color .2s;
  }
  .footer-col ul li a:hover i {
    color: #FF9926;
  }

  /* chevron links — smaller icon */
  .footer-col ul li a .fa-chevron-right {
    font-size: 9px;
    color: rgba(255, 255, 255, .25);
  }
  .footer-col ul li a:hover .fa-chevron-right {
    color: #FF9926;
  }

  /* ── CONNECT COL ── */
  .social-links-list {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
  }
  .social-links-list a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .65);
    font-size: 14px;
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s, transform .2s;
  }
  .social-links-list a:hover {
    background: #FF9926;
    border-color: #FF9926;
    color: #fff;
    transform: translateY(-2px);
  }

  .contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .contact-details p,
  .contact-details .email-direct {
    font-size: 13px;
    color: rgba(255, 255, 255, .58);
    display: flex;
    align-items: flex-start;
    gap: 9px;
    line-height: 1.5;
  }
  .contact-details i {
    font-size: 13px;
    color: #FF9926;
    margin-top: 1px;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
  }
  .contact-details a {
    color: rgba(255, 255, 255, .58);
    text-decoration: none;
    transition: color .2s;
  }
  .contact-details a:hover { color: #fff; }

  /* ── BOTTOM BAR ── */
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 0;
  }
  .footer-bottom .copy {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .32);
  }
  .footer-bottom .copy strong {
    color: #FF9926;
    font-weight: 600;
  }
  .footer-bottom nav {
    display: flex;
    gap: 24px;
  }
  .footer-bottom nav a {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .32);
    text-decoration: none;
    transition: color .2s;
  }
  .footer-bottom nav a:hover {color: var(--color-secondary-light); text-decoration: underline; }

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) {
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 720px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 480px) {
    .footer { padding: 40px 6% 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .footer-bottom nav { flex-wrap: wrap; gap: 14px; }
  }