/* ================================
   SIKO Conseils - Custom CSS
   Styles personnalisés pour le marché africain
   ================================ */

/* ================================
   Variables de couleurs inspirées de la charte
   ================================ */
:root {
    --siko-primary: #7BA05B; /* Vert sage/eucalyptus comme dans la charte */
    --siko-secondary: #7BA05B; /* Même vert pour cohérence */
    --siko-accent: #6B9344; /* Vert légèrement plus foncé */
    --siko-dark: #2C3E50; /* Gris foncé moderne */
    --siko-light: #F8FAF9; /* Blanc cassé très doux */
    --siko-gold: #8BC34A; /* Vert plus clair pour les accents */
}

/* ================================
   Améliorations générales - Style charte épurée
   ================================ */
body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--siko-dark);
    background: #ffffff;
}

/* Typographie moderne */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--siko-dark);
    letter-spacing: -0.02em;
}

/* Sections avec espacement généreux */
.pt-100 {
    padding-top: 120px !important;
}

.pb-70 {
    padding-bottom: 100px !important;
}

/* ================================
   Navigation améliorée
   ================================ */
.datatech_nav_manu {
    background: linear-gradient(135deg, var(--siko-primary) 0%, var(--siko-dark) 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    overflow: visible;
    z-index: 10000;
}

.datatech_nav_manu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

#sticky-header.sticky {
    background: linear-gradient(135deg, var(--siko-primary) 0%, var(--siko-dark) 100%) !important;
    position: relative !important;
    overflow: visible !important;
    z-index: 10000;
}

#sticky-header.sticky::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
}

.datatech_menu ul li a {
    color: #ffffff !important;
    font-weight: 500;
}

.datatech_menu ul li a:hover {
    color: var(--siko-gold) !important;
}

.datatech_menu ul li ul.sub-menu {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    z-index: 999999 !important;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

/* Ensure dropdowns are visible on hover */
.datatech_menu ul li:hover > ul.sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Make sure menu container doesn't clip dropdowns */
.datatech_menu {
    overflow: visible !important;
}

/* Ensure proper positioning for navigation area */
.datatech_nav_manu,
#sticky-header {
    overflow: visible !important;
}

.datatech_menu ul li ul.sub-menu li a {
    color: var(--siko-dark) !important;
}

.datatech_menu ul li ul.sub-menu li a:hover {
    background: var(--siko-light);
    color: var(--siko-primary) !important;
}

/* Suppression des icônes réseaux sociaux du header */
.socails-icon {
    display: none !important;
}

/* Menu mobile */
.mobile-menu-area {
    background: linear-gradient(135deg, var(--siko-primary) 0%, var(--siko-dark) 100%);
}

.mobile-menu-area .datatech_menu ul li a {
    color: #ffffff !important;
}

.mobile-menu-area .datatech_menu ul li ul.sub-menu {
    background: #fff;
    z-index: 999999 !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-area .datatech_menu ul li:hover > ul.sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Bouton header - Style charte épurée avec bords moins arrondis */
.header-btn-socails .header-button .dtbtn {
    background: var(--siko-primary) !important;
    color: #ffffff !important;
    border: 2px solid var(--siko-primary);
    border-radius: 8px !important;
    padding: 12px 30px !important;
    font-weight: 500 !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 5px 20px rgba(123, 160, 91, 0.2) !important;
}

.header-btn-socails .header-button .dtbtn:hover {
    background: #fff !important;
    color: var(--siko-primary) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(123, 160, 91, 0.3) !important;
}

/* Icônes sociales */
.header-btn-socails .socails-icon ul li a {
    color: #ffffff !important;
}

.header-btn-socails .socails-icon ul li a:hover {
    color: var(--siko-gold) !important;
}

/* Hero Section améliorée - Fond vert sage comme la charte */
.slider-area {
    background: linear-gradient(135deg, #E8F0E5 0%, #F0F6ED 50%, #E8F0E5 100%);
    position: relative;
    overflow: hidden;
}

/* Dégradé vert plus prononcé comme dans la charte */
.slider-area::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(123, 160, 91, 0.15) 0%, transparent 100%);
    z-index: 0;
}

/* Accent vert sur le côté */
.slider-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(135deg, var(--siko-primary) 0%, var(--siko-dark) 100%);
    z-index: 10;
}

.slider-content h1 {
    font-weight: 700;
    color: var(--siko-dark) !important;
    line-height: 1.2;
}

.slider-content h1 span {
    color: var(--siko-primary);
    background: linear-gradient(135deg, var(--siko-primary) 0%, var(--siko-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slider-content p {
    color: #666666 !important;
    font-size: 18px;
    line-height: 1.8;
}

.slider-button a {
    background: transparent;
    border: 2px solid var(--siko-primary);
    color: var(--siko-primary) !important;
    border-radius: 8px !important;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(123, 160, 91, 0.25);
    padding: 18px 40px;
    font-weight: 500;
    border-radius: 35px;
    display: inline-block;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.slider-button a:hover {
    background: var(--siko-primary);
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(123, 160, 91, 0.3);
    border-color: var(--siko-primary);
}

.slider-button .btn-outline {
    background: transparent;
    border: 2px solid var(--siko-primary);
    color: var(--siko-primary) !important;
    margin-left: 15px;
}

.slider-button .btn-outline:hover {
    background: var(--siko-primary);
    color: #fff !important;
}


/* Amélioration de la lisibilité du contenu slider - Design épuré */
.slider-content {
    position: relative;
    z-index: 1;
    max-width: 100%;
}

.slider-content h1,
.slider-content p {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}

.slider-button {
    margin-top: 20px;
}

/* Section Services améliorée - Style charte épurée */
.service-area {
    background: var(--siko-light);
    padding: 100px 0;
}

.dreamit-service-box1 {
    transition: all 0.4s ease;
    border: none;
    background: #ffffff;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.dreamit-service-box1:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(123, 160, 91, 0.2);
    background: var(--siko-primary);
    color: #fff;
    position: relative;
}

/* Design épuré inspiré de la charte - formes géométriques douces */
.dreamit-service-box1:hover::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.dreamit-service-box1:hover::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.dreamit-service-box1:hover .em-service-icon {
    color: #fff;
    position: relative;
    z-index: 2;
}

.dreamit-service-box1:hover h3,
.dreamit-service-box1:hover p {
    color: #fff;
    position: relative;
    z-index: 2;
}

.dreamit-service-box1:hover .service-button a {
    color: #fff;
    border-color: #fff;
    position: relative;
    z-index: 2;
}

.dreamit-service-box1 .em-service-icon {
    color: var(--siko-primary);
}

.dreamit-service-box1:hover .em-service-icon {
    color: var(--siko-primary);
}

.service-button a {
    color: var(--siko-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-button a:after {
    content: '→';
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.service-button a:hover {
    color: var(--siko-primary);
}

.service-button a:hover:after {
    margin-left: 10px;
}

/* Section Pourquoi nous choisir - Style charte épurée */
.why-choose-us-area {
    background: #ffffff;
    position: relative;
    padding: 100px 0;
}

.why-choose-box {
    background: var(--siko-light);
    padding: 40px 35px;
    border-radius: 25px;
    border: none;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-choose-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(123, 160, 91, 0.15);
    background: #fff;
}

.why-choose-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--siko-primary) 0%, var(--siko-accent) 100%);
    border-radius: 25px 25px 0 0;
}


.why-icon {
    font-size: 50px;
    color: var(--siko-primary);
    margin-bottom: 20px;
    text-align: center;
}

.why-choose-box:hover .why-icon {
    color: var(--siko-secondary);
}

.why-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--siko-dark);
}

/* Statistiques */
.why-choose-stats {
    margin-top: 50px;
}

.single-stat {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.stat-icon {
    font-size: 40px;
    color: var(--siko-secondary);
    margin-bottom: 20px;
}

.single-stat h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--siko-primary);
    margin-bottom: 0;
    display: inline-block;
}

.single-stat span {
    font-size: 36px;
    color: var(--siko-secondary);
}

/* Section Process améliorée */
.process-area {
    background: #fff;
    padding: 100px 0;
}

.dreamit-process-icon-box {
    position: relative;
    margin-bottom: 30px;
}

.process-icon {
    background: var(--siko-primary);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    position: relative;
    margin-bottom: 20px;
}

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--siko-secondary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

/* Section témoignages */
.testimonial-area {
    background: linear-gradient(135deg, var(--siko-primary) 0%, var(--siko-dark) 100%);
    padding: 100px 0;
    position: relative;
}

.testimonial-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.dreamit-single-testimonial-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 40px;
    border-radius: 15px;
    color: #fff;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.testi-icon {
    font-size: 40px;
    color: var(--siko-gold);
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-thumb img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--siko-gold);
}

.testi-titile h2 {
    color: #fff;
    font-size: 20px;
    margin: 15px 0 5px;
}

.testi-titile span {
    color: var(--siko-gold);
    font-size: 14px;
}

/* Footer amélioré - Style charte épurée */
.footer-middle {
    background: var(--siko-light);
    color: var(--siko-dark);
    border-top: 1px solid #e0e0e0;
}

.footer-middle .widget-title {
    color: var(--siko-primary);
    position: relative;
    padding-bottom: 15px;
    font-weight: 600;
}

.footer-middle .widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--siko-primary);
}

/* Correction du logo dans le footer */
.footer-middle .datatech-logo {
    margin-bottom: 20px !important;
    max-width: 200px;
    overflow: hidden;
    position: relative;
}

.footer-middle .datatech-logo a.logo_img {
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 50px; /* Hauteur fixe pour masquer le texte sous le logo */
}

.footer-middle .datatech-logo img {
    width: 180px !important;
    height: auto !important;
    max-width: 100%;
    position: relative;
    top: -5px; /* Ajustement pour bien positionner le logo */
}

/* Correction du texte de description */
.footer-middle .company-info-desc {
    margin-top: 15px;
    padding-right: 20px;
}

.footer-middle .company-info-desc p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 15px;
}

/* Widget company info */
.footer-middle .widgets-company-info {
    position: relative;
}

/* Responsive pour le logo du footer */
@media (max-width: 768px) {
    .footer-middle .datatech-logo {
        text-align: center;
        margin-bottom: 30px !important;
    }
    
    .footer-middle .datatech-logo img {
        width: 150px !important;
    }
    
    .footer-middle .company-info-desc {
        text-align: center;
        padding: 0;
    }
}

.footer-bottom-area {
    background: #1a1a1a;
    padding: 20px 0;
    color: #fff;
}

/* Styles pour les pages de services enrichies */
.migration-type-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
}

.migration-type-card:hover {
    background: var(--siko-primary);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.migration-type-card i {
    font-size: 48px;
    color: var(--siko-primary);
    margin-bottom: 20px;
}

.migration-type-card:hover i {
    color: #fff;
}

.migration-type-card h5 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--siko-dark);
}

.migration-type-card:hover h5 {
    color: #fff;
}

.guarantee-box {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--siko-primary);
}

.guarantee-item {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.guarantee-item i {
    font-size: 36px;
    color: var(--siko-secondary);
    margin-bottom: 15px;
}

.guarantee-item h5 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--siko-dark);
}

.decision-criteria {
    background: #f0f7ff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #d0e5ff;
}

.criteria-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.criteria-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.criteria-list li i {
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--siko-primary);
}

/* Correction des cercles orange (.round-circle) - retour au blanc */
.round-circle {
    border: 2px dotted #ffffff !important; /* Cercle blanc */
}

.round-circle:before {
    background: var(--siko-primary) !important;
}

/* Correction spécifique pour les cercles animés */
.dreamit-service-box1 .round-circle,
.dreamit-service-box2 .round-circle {
    border-color: var(--siko-primary) !important;
}

/* Animation du point blanc - le rendre visible sur fond vert */
.dreamit-service-box1:hover .round-circle:before,
.dreamit-service-box2 .round-circle:before {
    background: #ffffff !important; /* Point blanc pour contraster avec le fond vert */
}

/* Suppression des transitions orange dans les service boxes - vert clair et transparent */
.dreamit-service-box1:before,
.dreamit-service-box2:before {
    background: rgba(123, 160, 91, 0.15) !important; /* Vert très clair et transparent pour laisser voir le texte */
}

/* Correction des éléments process-icon et process-number orange */
.process-icon i {
    background: var(--siko-light) !important; /* Fond vert clair */
    color: var(--siko-primary) !important;
    border: 3px solid #ffffff !important; /* Bordure blanche */
}

.process-number span,
.em-process-number span {
    background: var(--siko-light) !important; /* Fond vert clair */
    color: var(--siko-primary) !important;
    border: 2px solid #ffffff !important; /* Bordure blanche */
}

.em-process-icon i {
    background: var(--siko-light) !important; /* Fond vert clair */
    color: var(--siko-primary) !important;
    border: 3px solid #ffffff !important; /* Bordure blanche */
}


/* Suppression complète de la couleur orange #F16722 */
/* Navigation */
.datatech_menu > ul > li > a:hover {
    color: var(--siko-gold) !important;
}

.datatech_menu ul .sub-menu {
    border-top: 2px solid var(--siko-primary) !important;
}

.datatech_menu ul .sub-menu .sub-menu li:hover>a,
.datatech_menu ul .sub-menu .sub-menu .sub-menu li:hover>a,
.datatech_menu ul .sub-menu .sub-menu .sub-menu .sub-menu li:hover>a {
    background: var(--siko-primary) !important;
}

/* Boutons et éléments interactifs */
.header-button .dtbtn,
.datatech_nav_manu.sticky a.dtbtn {
    background: var(--siko-primary) !important;
    border: 2px solid var(--siko-primary) !important;
}

/* Carrousel et navigation */
.owl-next i, .owl-prev i,
.case-study .owl-next i,
.case-study .owl-prev i:hover {
    background-color: var(--siko-primary) !important;
}

/* Sliders */
.slider-two .slider-button1 a,
.slider-three .slider-button a {
    background: var(--siko-primary) !important;
}

.slider-two .slider-button a,
.slider-two .slider-button1 a:hover {
    color: var(--siko-primary) !important;
}

/* Éléments de contenu slider */
.slider-four .slider-content span,
.slider-five .slider-content span,
.slider-six .slider-content span,
.slider-six .slider-content h4 {
    color: var(--siko-primary) !important;
}

.slider-six .slider-content h4:before {
    background: var(--siko-primary) !important;
}

/* Icônes services style-two */
.style-two .em-service-icon i {
    color: var(--siko-primary) !important;
}

.style-two .em-service-title h2:hover {
    color: var(--siko-primary) !important;
}

.style-two .service-button a {
    background: var(--siko-primary) !important;
}

/* Bordures service box style-two */
.style-two .dreamit-service-box3:before {
    border-top: 2px solid var(--siko-primary) !important;
    border-bottom: 2px solid var(--siko-primary) !important;
}

.style-two .dreamit-service-box3:after {
    border-left: 2px solid var(--siko-primary) !important;
    border-right: 2px solid var(--siko-primary) !important;
}

/* Correction de la lisibilité du texte de l'accueil - en vert comme les titres */
.slider-content p {
    color: var(--siko-primary) !important; /* Vert comme les titres */
    background: linear-gradient(135deg, var(--siko-primary) 0%, var(--siko-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600 !important;
    text-shadow: none !important;
    background-color: rgba(255, 255, 255, 0.95) !important; /* Fond blanc pour lisibilité */
    -webkit-text-fill-color: var(--siko-primary) !important; /* Fallback pour le vert */
    padding: 20px 30px !important;
    border-radius: 15px !important;
    backdrop-filter: blur(10px) !important;
    margin: 20px 0 !important;
    border: 1px solid rgba(123, 160, 91, 0.2) !important;
}

/* Correction des icônes encore en orange */
.company_icon i,
.company-info-desc i {
    background: var(--siko-primary) !important;
    color: #fff !important;
}

.em-service-icon1,
.em-service-icon {
    background: var(--siko-primary) !important;
    color: #fff !important;
    border: none !important;
}

.em-service-icon1 i,
.em-service-icon i {
    color: #fff !important;
    background: transparent !important;
}

/* Correction spécifique pour l'icône Infogérance et toutes les icônes de services */
.dreamit-service-box1 .em-service-icon,
.dreamit-service-box1 .em-service-icon1 {
    background: var(--siko-primary) !important;
    border: none !important;
}

.dreamit-service-box1:hover .em-service-icon,
.dreamit-service-box1:hover .em-service-icon1 {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

/* Surcharge pour corriger toutes les icônes orange dans le CSS principal */
.flaticon-strategy:before,
.flaticon-planning:before,
.flaticon-migration:before,
.flaticon-optimization:before,
.flaticon-server:before,
.flaticon-support:before,
.flaticon-maintenance:before,
.flaticon-security:before {
    color: #fff !important;
}

/* Correction des textes orange dans la section à propos */
.about-content h2,
.about-content h3,
.about-title h2,
.about-title h3,
.dreamit-section-title h2 span,
.dreamit-section-title h5 {
    color: var(--siko-primary) !important;
}

/* Correction des boutons et éléments interactifs encore en orange */
.dtbtn,
.header-button .dtbtn,
.about-button a,
.contact-button button,
.career-button a,
.service-button a {
    background: var(--siko-primary) !important;
    border-color: var(--siko-primary) !important;
    color: #fff !important;
}

.dtbtn:hover,
.header-button .dtbtn:hover,
.about-button a:hover,
.contact-button button:hover,
.career-button a:hover {
    background: #fff !important;
    color: var(--siko-primary) !important;
    border-color: var(--siko-primary) !important;
}

/* Refonte générale - Design plus épuré et blanc */

/* Section témoignages épurée - Style charte */
.testimonial-area {
    background: var(--siko-light);
    position: relative;
    padding: 100px 0;
}

.dreamit-single-testimonial-box {
    background: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 50px 40px;
    position: relative;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.dreamit-single-testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(123, 160, 91, 0.15);
}

.dreamit-single-testimonial-box::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: var(--siko-primary);
    border-radius: 50%;
    opacity: 0.1;
}

.testimonial-content::before {
    background: var(--siko-primary);
    opacity: 0.1;
}

/* Counter section épurée */
.counter-area {
    background: #fafafa;
    border-top: 3px solid var(--siko-primary);
    border-bottom: 3px solid var(--siko-primary);
}

.single_counter {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    margin: 20px 0;
    border: 1px solid #f0f0f0;
    position: relative;
}

.single_counter::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--siko-primary) 0%, var(--siko-secondary) 100%);
    border-radius: 2px;
}

.single_counter h2 {
    color: var(--siko-primary);
    font-weight: 700;
}

.single_counter p {
    color: var(--siko-dark);
}

/* Section CTA épurée */
.cta-section {
    background: #ffffff;
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, var(--siko-primary) 0%, var(--siko-secondary) 100%);
    border-image-slice: 1;
    position: relative;
}

.cta-content {
    text-align: center;
    padding: 60px 0;
}

.cta-content h2 {
    color: var(--siko-dark);
    margin-bottom: 20px;
}

.cta-content p {
    color: #666;
    margin-bottom: 30px;
}

/* Sections générales plus épurées */
.pt-100 {
    background: #ffffff;
}

.pb-70 {
    background: #ffffff;
}

/* Portfolio section épurée */
.portfolio-area {
    background: #ffffff;
}

.single_portfolio {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.single_portfolio:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

/* Animations supplémentaires */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.bounce-animate-slow {
    animation: float 6s ease-in-out infinite;
}

/* Responsive améliorations */
@media (max-width: 768px) {
    .slider-content h1 {
        font-size: 32px;
    }
    
    .why-choose-box {
        margin-bottom: 30px;
    }
    
    .single-stat {
        margin-bottom: 20px;
    }
    
    .slider-button {
        text-align: center;
    }
    
    .slider-button .btn-outline {
        margin-left: 0;
        margin-top: 10px;
        display: block;
    }
}

/* Boutons CTA améliorés avec bords moins arrondis */
.dtbtn {
    background: var(--siko-secondary);
    color: #fff !important;
    padding: 12px 30px;
    border-radius: 8px !important;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.dtbtn:hover {
    background: var(--siko-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Section titles améliorés */
.dreamit-section-title h2 span {
    color: var(--siko-secondary);
}

.em_bar_bg {
    background: linear-gradient(to right, var(--siko-primary), var(--siko-secondary));
    height: 4px;
    width: 80px;
    margin: 20px auto;
}

/* Amélioration des icônes flaticon */
[class^="flaticon-"]:before,
[class*=" flaticon-"]:before {
    font-size: inherit;
}

/* Ajout d'un pattern africain subtil */
.african-pattern {
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.1) 35px, rgba(255,255,255,.1) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px);
}

/* Section CTA */
.cta-area {
    background: linear-gradient(135deg, var(--siko-primary) 0%, var(--siko-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}


@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.3; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

.cta-content h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: #fff;
    color: var(--siko-primary) !important;
    padding: 15px 30px;
    border-radius: 8px !important;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.cta-btn-secondary {
    background: transparent;
    color: #fff !important;
    padding: 15px 30px;
    border-radius: 8px !important;
    border: 2px solid #fff;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    background: #fff;
    color: var(--siko-primary) !important;
}

.cta-btn-secondary i {
    margin-right: 8px;
}

@media (max-width: 991px) {
    .cta-content {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
}

/* Section Contact avec fond vert et motifs */
.contact-address-content {
    background: linear-gradient(135deg, var(--siko-primary) 0%, var(--siko-dark) 100%);
    position: relative;
    overflow: hidden;
}

.contact-address-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.contact-address-content > * {
    position: relative;
    z-index: 2;
}

/* Section Quick Button avec fond vert et motifs */
.quick-button-area {
    background: linear-gradient(135deg, var(--siko-primary) 0%, var(--siko-dark) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.quick-button-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.quick-button-area > * {
    position: relative;
    z-index: 2;
}

.quick-button-area h1 {
    color: #ffffff !important;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.quick-button-area p {
    color: rgba(255,255,255,0.9) !important;
    font-size: 18px;
}

/* About Page Styles */
.about-single-feature {
    text-align: center;
    margin-bottom: 30px;
}

.about-single-feature i {
    font-size: 50px;
    color: var(--siko-primary);
    margin-bottom: 20px;
}

.about-single-feature h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--siko-dark);
}

.about-single-feature p {
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
}

/* Mission Vision Styles */
.mission-box {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.mission-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.mission-icon {
    margin-bottom: 30px;
}

.mission-icon i {
    font-size: 60px;
    color: var(--siko-primary);
}

.mission-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--siko-dark);
}

.mission-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

/* Team Styles */
.team-member {
    text-align: center;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.team-thumb {
    overflow: hidden;
    position: relative;
}

.team-thumb img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .team-thumb img {
    transform: scale(1.05);
}

.team-content {
    padding: 30px 20px;
}

.team-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--siko-dark);
}

.team-content span {
    font-size: 14px;
    color: var(--siko-secondary);
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.team-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--siko-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--siko-dark);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--siko-primary);
    color: #fff;
}

/* About responsive */
@media (max-width: 768px) {
    .mission-box {
        padding: 30px 20px;
    }
    
    .mission-icon i {
        font-size: 50px;
    }
    
    .mission-content h3 {
        font-size: 20px;
    }
    
    .team-thumb img {
        height: 250px;
    }
}

/* Services Page Styles */
.service-single-box {
    background: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.service-single-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-icon {
    margin-bottom: 30px;
}

.service-icon i {
    font-size: 60px;
    color: var(--siko-primary);
    transition: color 0.3s ease;
}

.service-single-box:hover .service-icon i {
    color: var(--siko-secondary);
}

.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--siko-dark);
}

.service-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    color: #666;
    font-size: 14px;
}

.service-features li::before {
    content: "✓";
    color: var(--siko-primary);
    font-weight: bold;
    margin-right: 10px;
}

.service-button {
    margin-top: auto;
}

.service-button .dtbtn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
}

/* Process Steps */
.process-step {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--siko-secondary);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    z-index: 2;
}

.process-icon {
    background: var(--siko-light);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.process-icon i {
    font-size: 40px;
    color: var(--siko-primary);
}

.process-step:hover .process-icon {
    background: var(--siko-primary);
    transform: scale(1.1);
}

.process-step:hover .process-icon i {
    color: #fff;
}

.process-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--siko-dark);
}

.process-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

/* Why Choose Features */
.why-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.why-feature-item i {
    font-size: 18px;
    color: var(--siko-primary);
    margin-right: 15px;
}

.why-feature-item span {
    font-size: 16px;
    color: var(--siko-dark);
    font-weight: 500;
}

/* Services responsive */
@media (max-width: 768px) {
    .service-single-box {
        padding: 30px 20px;
    }
    
    .service-icon i {
        font-size: 50px;
    }
    
    .service-content h3 {
        font-size: 20px;
    }
    
    .process-icon {
        width: 80px;
        height: 80px;
    }
    
    .process-icon i {
        font-size: 30px;
    }
    
    .process-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Service Details Pages Styles */
.service-details-area {
    background: #fff;
}

.service-details-content {
    padding-right: 30px;
}

.service-details-thumb {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 10px;
}

.service-details-thumb img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-details-thumb:hover img {
    transform: scale(1.05);
}

.service-details-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--siko-dark);
    margin-bottom: 20px;
}

.service-details-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.service-approach {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.service-approach h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--siko-dark);
    margin-bottom: 20px;
}

.approach-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.approach-icon {
    margin-right: 20px;
    flex-shrink: 0;
}

.approach-icon i {
    font-size: 40px;
    color: var(--siko-primary);
}

.approach-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--siko-dark);
    margin-bottom: 10px;
}

.approach-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 0;
}

.service-benefits {
    background: #fff;
    padding: 40px 30px;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
}

.service-benefits h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--siko-dark);
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #666;
}

.benefits-list li i {
    font-size: 18px;
    color: var(--siko-primary);
    margin-right: 15px;
}

/* Service Sidebar Styles */
.service-sidebar {
    padding-left: 30px;
}

.service-sidebar .widget {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.service-sidebar .widget h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--siko-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--siko-primary);
}

.service-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.service-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    margin-right: 15px;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 24px;
    color: var(--siko-secondary);
}

.info-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--siko-dark);
    margin-bottom: 5px;
}

.info-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

.service-contact {
    background: var(--siko-primary) !important;
    color: #fff;
}

.service-contact h3 {
    color: #fff !important;
    border-bottom-color: rgba(255,255,255,0.3) !important;
}

.service-contact p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.contact-info {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #fff;
}

.contact-item i {
    font-size: 18px;
    margin-right: 10px;
    color: var(--siko-gold);
}

.contact-button .dtbtn {
    background: #fff;
    color: var(--siko-primary) !important;
    border: 2px solid #fff;
}

.contact-button .dtbtn:hover {
    background: transparent;
    color: #fff !important;
}

.related-services {
    background: #f8f9fa !important;
}

.related-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-list li {
    margin-bottom: 15px;
}

.related-list li:last-child {
    margin-bottom: 0;
}

.related-list a {
    display: flex;
    align-items: center;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-list a:hover {
    color: var(--siko-primary);
}

.related-list a i {
    font-size: 14px;
    margin-right: 10px;
    color: var(--siko-secondary);
}

/* Service Details Responsive */
@media (max-width: 991px) {
    .service-details-content {
        padding-right: 0;
        margin-bottom: 50px;
    }
    
    .service-sidebar {
        padding-left: 0;
    }
    
    .service-details-text h2 {
        font-size: 28px;
    }
    
    .service-approach {
        padding: 30px 20px;
    }
    
    .service-benefits {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .service-details-thumb img {
        height: 300px;
    }
    
    .service-details-text h2 {
        font-size: 24px;
    }
    
    .approach-item {
        flex-direction: column;
        text-align: center;
    }
    
    .approach-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .service-sidebar .widget {
        padding: 20px;
    }
}

/* ============================================
   Portfolio Page Styles
   ============================================ */

/* Portfolio Stats Area */
.portfolio-stats-area {
    background: #f8f9fa;
}

.portfolio-stat-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.portfolio-stat-box:hover {
    transform: translateY(-5px);
}

.portfolio-stat-box .stat-icon {
    font-size: 3rem;
    color: var(--siko-primary);
    margin-bottom: 1rem;
}

.portfolio-stat-box .stat-content h3 {
    color: var(--siko-dark);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.portfolio-stat-box .stat-content span {
    color: var(--siko-secondary);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Portfolio Items */
.single_portfolio {
    margin-bottom: 2rem;
}

.single_portfolio_content {
    background: white;
    padding: 1.5rem;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.single_portfolio_content span {
    color: var(--siko-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.single_portfolio_content h3 {
    color: var(--siko-dark);
    font-size: 1.3rem;
    margin: 0.5rem 0;
}

.single_portfolio_content h3 a {
    color: var(--siko-dark);
    text-decoration: none;
}

.single_portfolio_content h3 a:hover {
    color: var(--siko-primary);
}

.single_portfolio_content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.portfolio-tech span {
    background: var(--siko-primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.single_portfolio_thumb {
    position: relative;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.single_portfolio_thumb img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.single_portfolio:hover .single_portfolio_thumb img {
    transform: scale(1.05);
}

/* Portfolio Filter */
.portfolio_nav {
    margin-bottom: 3rem;
}

.portfolio_menu ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.portfolio_menu ul li {
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-weight: 500;
    color: var(--siko-dark);
}

.portfolio_menu ul li:hover,
.portfolio_menu ul li.current_menu_item {
    background: var(--siko-primary);
    color: white;
    border-color: var(--siko-primary);
}

/* Client Logos Area */
.client-logos-area {
    background: #f8f9fa;
}

.client-logo-box {
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.client-logo-box:hover {
    transform: translateY(-5px);
}

.client-logo-box img {
    width: 100px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.client-info h4 {
    color: var(--siko-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.client-info span {
    color: var(--siko-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Expertise Area */
.expertise-area {
    background: white;
}

.expertise-box {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.expertise-box:hover {
    transform: translateY(-5px);
}

.expertise-icon {
    font-size: 3rem;
    color: var(--siko-primary);
    margin-bottom: 1rem;
}

.expertise-content h4 {
    color: var(--siko-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.expertise-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertise-content ul li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.95rem;
    border-bottom: 1px solid #eee;
}

.expertise-content ul li:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .portfolio_menu ul {
        flex-direction: column;
        align-items: center;
    }
    
    .portfolio_menu ul li {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .portfolio-tech {
        justify-content: center;
    }
    
    .client-logo-box {
        margin-bottom: 1rem;
    }
    
    .expertise-box {
        margin-bottom: 1rem;
    }
}

/* Portfolio Animation */
.grid-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.grid-item:nth-child(1) { animation-delay: 0.1s; }
.grid-item:nth-child(2) { animation-delay: 0.2s; }
.grid-item:nth-child(3) { animation-delay: 0.3s; }
.grid-item:nth-child(4) { animation-delay: 0.4s; }
.grid-item:nth-child(5) { animation-delay: 0.5s; }
.grid-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* End Portfolio Page Styles */

/* ============================================
   DROPDOWN MENU FIX - Critical Styles
   ============================================ */

/* Force dropdown visibility override */
.datatech_menu ul li:hover > .sub-menu,
.datatech_menu ul li:hover > ul.sub-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    top: 100% !important;
}

/* Ensure all navigation containers allow overflow */
.navigation-area,
.datatech_nav_manu,
#sticky-header,
.header-area,
.datatech_menu,
.main-menu {
    overflow: visible !important;
}

/* Fix z-index layering for dropdowns */
.datatech_menu ul li .sub-menu {
    z-index: 999999 !important;
    position: absolute !important;
}

/* Backup visibility fix for any remaining issues */
.datatech_menu ul li:hover .sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* ============================================
   WhatsApp Business Widget
   ============================================ */

.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: #25D366;
    border-radius: 50px;
    padding: 15px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-widget i {
    font-size: 1.8rem;
    color: white;
    line-height: 1;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: var(--siko-dark);
    padding: 10px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: white;
}

.whatsapp-widget:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    }
}

/* Responsive WhatsApp Widget */
@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 80px;
        right: 15px;
        padding: 12px;
    }
    
    .whatsapp-widget i {
        font-size: 1.5rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

/* ============================================
   Client Logos Styling
   ============================================ */

.client-logos-area {
    background: #f8f9fa;
}

.client-logo-box {
    text-align: center;
    padding: 3rem 1rem;
    margin-bottom: 3rem;
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    /* Supprimer tout style de cadre */
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.client-logo-box::before,
.client-logo-box::after {
    display: none !important;
}

.client-logo-box img {
    max-height: 200px;
    height: auto;
    width: auto;
    max-width: 90%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
    cursor: pointer;
    /* Supprimer tout style de cadre de l'image */
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
}

.client-logo-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15);
}

.client-info {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    white-space: nowrap;
    z-index: 10;
}

.client-logo-box:hover .client-info {
    opacity: 1;
    visibility: visible;
    bottom: -40px;
}

.client-info h4 {
    font-size: 0.95rem;
    color: var(--siko-dark);
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.client-info span {
    font-size: 0.8rem;
    color: var(--siko-primary);
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .client-logo-box {
        height: 180px;
        margin-bottom: 4rem;
        padding: 2rem 1rem;
    }
    
    .client-logo-box img {
        max-height: 140px;
    }
    
    .client-logo-box:hover img {
        transform: scale(1.1);
    }
}

/* Agrandissement spécifique pour certains logos */
.client-logo-box img[alt="Vodafone"],
.client-logo-box img[alt="Bergerat Monnoyeur"],
.client-logo-box img[alt="Vinci Construction"],
.client-logo-box img[alt="Boursorama Bank"] {
    transform: scale(1.3);
}

.client-logo-box:hover img[alt="Vodafone"],
.client-logo-box:hover img[alt="Bergerat Monnoyeur"],
.client-logo-box:hover img[alt="Vinci Construction"],
.client-logo-box:hover img[alt="Boursorama Bank"] {
    transform: scale(1.5);
}


/* ============================================
   Hero Glassmorphism Effect
   ============================================ */

.glassmorphism-hero {
    background: rgba(255,255,255,0.15) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.glassmorphism-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.glassmorphism-hero h1 {
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.glassmorphism-hero p {
    color: rgba(255,255,255,0.95) !important;
    font-size: 1.1rem;
    line-height: 1.7;
    text-shadow: 0 1px 5px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}

/* Responsive hero glassmorphism */
@media (max-width: 768px) {
    .glassmorphism-hero {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .glassmorphism-hero h1 {
        font-size: 2rem;
    }
    
    .glassmorphism-hero p {
        font-size: 1rem;
    }
}