* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

html {
  scroll-behavior: auto;
}

/* 🌌 Dégradé animé du body */
body {
  background: radial-gradient(ellipse at top, #ff9a56, transparent),
             radial-gradient(ellipse at bottom, #009fe3, transparent),
             radial-gradient(ellipse at left, #f7941e, transparent),
             radial-gradient(ellipse at right, #1e3c72, transparent);
  background-blend-mode: multiply;
  min-height: 100vh;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 🌟 Particules flottantes */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255,255,255,0.7);
  animation: floatUp linear infinite, twinkle ease-in-out infinite;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) scale(0.6);
    opacity: 0;
  }
  50% { opacity: 1; }
  100% {
    transform: translateY(-10vh) scale(1.2);
    opacity: 0;
  }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

header {
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom-left-radius: 27px;
  border-bottom-right-radius: 27px;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #424244;
}
.logo img {
  height: 40px;
  margin-right: 10px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: #424244;
  position: relative;
  transition: 0.3s;
}

nav a:hover {
  color: #009FE3;
}

nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #F7931E;
  transition: 0.3s;
}

nav a:hover::after {
  width: 100%;
}

.cta {
  background: #F7931E;
  color: #fff !important;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-weight: 600;
}

.cta:hover {
  background: #009FE3;
}

/* Section Hero avec effet de superposition */

        .hero-section {
            height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            margin: 20px auto 0;
            border-radius: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

  
        .hero-logo-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            text-align: center;
            opacity: 0;
            animation: logoFadeIn 2s ease forwards 0.5s;
        }

        @keyframes logoFadeIn {
            to {
                opacity: 1;
            }
        }

        .hero-logo {
            width: min(400px, 80%);
            height: auto;
            animation: float 3s ease-in-out infinite;
            filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
            font-size: 4rem;
            font-weight: 700;
            color: white;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .hero-text {
            color: white;
            font-size: 1.5rem;
            margin-top: 20px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            font-weight: 500;
        }

        .scroll-down-btn {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(45deg, #F7931E, #009FE3);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 50;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 10px 30px rgba(247, 147, 30, 0.4);
            animation: energyPulse 2s infinite;
        }

        .scroll-down-btn:hover {
            transform: translateX(-50%) scale(1.2) rotate(10deg);
            box-shadow: 0 15px 50px rgba(247, 147, 30, 0.6);
            animation-duration: 0.5s;
        }

        .scroll-down-btn:active {
            transform: translateX(-50%) scale(0.9);
        }

        .scroll-down-btn svg {
            width: 30px;
            height: 30px;
            fill: white;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
        }

        @keyframes energyPulse {
            0% {
                box-shadow: 0 10px 30px rgba(247, 147, 30, 0.4), 0 0 0 0 rgba(247, 147, 30, 0.7);
            }
            50% {
                box-shadow: 0 10px 30px rgba(247, 147, 30, 0.4), 0 0 0 20px rgba(247, 147, 30, 0);
            }
            100% {
                box-shadow: 0 10px 30px rgba(247, 147, 30, 0.4), 0 0 0 0 rgba(247, 147, 30, 0);
            }
        }

        .content-section {
            min-height: 100vh;
            background: #ffffff;
            padding: 100px 0;
            position: relative;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .content-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            min-height: 80vh;
        }

        .content-text {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 1s ease;
        }

        .content-text.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .content-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #424244;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .content-title .highlight {
            background: linear-gradient(135deg, #F7931E, #009FE3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .content-subtitle {
            font-size: 1.3rem;
            color: #666;
            margin-bottom: 3rem;
            line-height: 1.7;
        }

        .stats-container {
            display: flex;
            gap: 2rem;
            margin: 2.5rem 0;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            border-radius: 15px;
            background: linear-gradient(135deg, rgba(247, 147, 30, 0.1), rgba(0, 159, 227, 0.1));
            flex: 1;
            min-width: 150px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #F7931E, #009FE3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1rem;
            color: #424244;
            font-weight: 500;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, #F7931E, #009FE3);
            color: white;
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(247, 147, 30, 0.3);
            transform: translateY(20px);
            opacity: 0;
            animation: buttonSlideUp 0.8s ease forwards 0.8s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(247, 147, 30, 0.4);
        }

        .btn-secondary {
            background: #67b0d1;
            color: white;
            border: 2px solid #e0e0e0;
            padding: 1rem 2rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            transform: translateY(20px);
            opacity: 0;
            animation: buttonSlideUp 0.8s ease forwards 1s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-secondary:hover {
            background: #F7931E;
            color: white;
            border-color: #F7931E;
            transform: translateY(-2px);
        }

        .content-images {
            position: relative;
            opacity: 0;
            transform: translateX(50px);
            transition: all 1s ease;
            height: 500px;
        }

        .content-images.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .image-item {
            position: absolute;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            border: 5px solid white;
            background: linear-gradient(135deg, #F7931E, #009FE3);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
        }

        .image-item:hover {
            transform: translateY(-10px) !important;
            z-index: 10 !important;
            box-shadow: 0 25px 60px rgba(0,0,0,0.3);
        }

        .image-item:nth-child(1) {
            width: 280px;
            height: 180px;
            top: 50px;
            right: 200px;
            z-index: 3;
            transform: rotate(-5deg);
            background: linear-gradient(135deg, #F7931E, #FF6B35);
        }

        .image-item:nth-child(2) {
            width: 300px;
            height: 200px;
            top: 150px;
            right: 120px;
            z-index: 2;
            transform: rotate(3deg);
            background: linear-gradient(135deg, #009FE3, #67b0d1);
        }

        .image-item:nth-child(3) {
            width: 260px;
            height: 170px;
            top: 280px;
            right: 180px;
            z-index: 1;
            transform: rotate(-2deg);
            background: linear-gradient(135deg, #67b0d1, #F7931E);
        }

        @keyframes buttonSlideUp {
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .scroll-indicator {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 100;
        }

        .scroll-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(66, 66, 68, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .scroll-dot.active {
            background: #F7931E;
            transform: scale(1.5);
            box-shadow: 0 0 20px rgba(247, 147, 30, 0.5);
        }

        .hero-navigation {
            position: absolute;
            bottom: 30px;
            right: 30px;
            z-index: 100;
            display: flex;
            gap: 15px;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-dot.active {
            background: #fff;
            transform: scale(1.3);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
        }

        .hero-arrows {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 100;
            transform: translateY(-50%);
            pointer-events: none;
        }

        .arrow {
            pointer-events: all;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .arrow:hover {
            background: rgba(255, 255, 255, 0.7);
        }

        .arrow svg {
            width: 24px;
            height: 24px;
            fill: white;
        }

        .swipe-hint {
            position: absolute;
            bottom: 120px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            background: rgba(0, 0, 0, 0.5);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            opacity: 0;
            animation: swipeHint 3s ease-in-out 2s 3;
            z-index: 100;
        }

        @keyframes swipeHint {
            0%, 100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
            50% { opacity: 1; transform: translateX(-50%) translateY(0); }
        }

        @media (max-width: 768px) {
            .content-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .content-title {
                font-size: 2.5rem;
            }
            
            .hero-section {
                margin: 10px;
                border-radius: 20px;
            }
            
            .stats-container {
                gap: 1rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

/* Section Qui Sommes-Nous */
.about-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #1E1E2E, #2A2A40);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  display: flex;
  align-items: center;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

/* Éléments flottants décoratifs */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(247, 147, 30, 0.1), rgba(0, 159, 227, 0.1));
  filter: blur(40px);
  animation: float 15s infinite ease-in-out;
}

.floating-element.element-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-element.element-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 10%;
  animation-delay: -5s;
}

.floating-element.element-3 {
  width: 250px;
  height: 250px;
  bottom: 10%;
  left: 15%;
  animation-delay: -10s;
}

.floating-element.element-4 {
  width: 180px;
  height: 180px;
  top: 20%;
  right: 20%;
  animation-delay: -7s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(20px) rotate(-5deg); }
}

/* Titre */
.about-title {
  font-size: 5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 4rem;
  color: white;
  background: linear-gradient(135deg, #F7931E, #009FE3, #2AF598);
  -webkit-background-clip: text;
  background-clip: text;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px);
  animation: titleWord 1s forwards;
}

.title-word-1 { animation-delay: 0.3s; }
.title-word-2 { animation-delay: 0.6s; }
.title-word-3 { animation-delay: 0.9s; }

@keyframes titleWord {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.title-decor {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #F7931E, #009FE3);
  border-radius: 2px;
}

/* Grille de contenu */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 4rem;
}

.about-text {
  color: white;
}

.about-intro {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  position: relative;
  padding-left: 2rem;
  border-left: 4px solid #F7931E;
}

.about-highlight {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-highlight:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.highlight-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.highlight-content h3 {
  color: #F7931E;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.highlight-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #F7931E;
}

.feature-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Partie visuelle */
.about-visual {
  position: relative;
  height: 500px;
}

.visual-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.main-visual {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.main-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.main-visual:hover img {
  transform: scale(1.05);
}

.floating-card {
  position: absolute;
  background: linear-gradient(135deg, #F7931E, #009FE3);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: floatCard 6s infinite ease-in-out;
}

.floating-card h4 {
  margin: 0;
  font-size: 1.1rem;
  white-space: nowrap;
}

.floating-card.card-1 {
  top: 20px;
  right: -20px;
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: 60px;
  left: -20px;
  animation-delay: -2s;
}

.floating-card.card-3 {
  bottom: 20px;
  right: 30px;
  animation-delay: -4s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}




/* Responsive */
@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-title {
    font-size: 3.5rem;
  }
  
  .about-visual {
    height: 400px;
  }
  
  .floating-card {
    padding: 0.8rem 1.2rem;
  }
  
  .floating-card h4 {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 1rem;
  }
  
  nav ul {
    margin-top: 1rem;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero-section {
    border-radius: 20px;
    margin: 10px;
  }
  
  .hero-text {
    font-size: 1.1rem;
  }
  
  .content-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .content-title {
    font-size: 2.5rem;
  }
  
  .content-subtitle {
    font-size: 1.1rem;
  }

  .stats-container {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-item {
    min-width: 100%;
  }

  .cta-buttons {
    justify-content: center;
  }

  .content-images {
    height: 350px;
  }

  .image-item:nth-child(1) {
    width: 200px;
    height: 130px;
    top: 20px;
    right: 80px;
  }

  .image-item:nth-child(2) {
    width: 220px;
    height: 150px;
    top: 100px;
    right: 40px;
  }

  .image-item:nth-child(3) {
    width: 180px;
    height: 120px;
    top: 180px;
    right: 70px;
  }

  .hero-image:nth-child(2) {
    transform: translateX(20%) rotateY(-3deg) scale(0.95);
  }
  
  .hero-image:nth-child(3) {
    transform: translateX(40%) rotateY(-6deg) scale(0.9);
  }
  
  .hero-image:nth-child(4) {
    transform: translateX(60%) rotateY(-9deg) scale(0.85);
  }

  .scroll-down-btn {
    width: 60px;
    height: 60px;
    bottom: 20px;
  }

  .scroll-down-btn svg {
    width: 24px;
    height: 24px;
  }

  .scroll-indicator {
    right: 15px;
  }
  
  .about-title {
    font-size: 2.8rem;
  }
  
  .about-intro {
    font-size: 1.2rem;
    padding-left: 1rem;
  }
  
  .about-highlight {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
  }
  
  .feature {
    padding: 1rem;
  }
  
  .visual-container {
    height: 350px;
  }
  
  .main-visual {
    height: 300px;
  }
  
  .floating-card {
    display: none;
  }
  
  .hero-arrows {
    display: none;
  }
  
  .swipe-hint {
    display: block;
  }
}
.services-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e0e0e0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
  z-index: 0;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Navigation par icônes */
.services-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.service-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 3px solid transparent;
  min-width: 160px;
}

.service-icon:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 50px rgba(247, 147, 30, 0.2);
}

.service-icon.active {
  background: linear-gradient(135deg, #F7931E, #009FE3);
  color: white;
  border-color: white;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 40px rgba(247, 147, 30, 0.3);
}

.icon-wrapper {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 147, 30, 0.1);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.service-icon.active .icon-wrapper {
  background: rgba(255, 255, 255, 0.2);
}

.icon-wrapper svg {
  width: 28px;
  height: 28px;
  color: #F7931E;
}

.service-icon.active .icon-wrapper svg {
  color: white;
}

.service-icon span {
  font-weight: 600;
  font-size: 1rem;
  color: #424244;
  text-align: center;
}

.service-icon.active span {
  color: white;
}

/* Container des slides */
.services-slides-container {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  background: white;
  min-height: 500px;
}

.services-slides {
  display: flex;
  width: 400%;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-slide {
  width: 25%;
  padding: 3rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.service-slide.active {
  opacity: 1;
}

.slide-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  height: 100%;
}

.slide-text h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #424244;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #F7931E, #009FE3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.slide-description {
  color: #666;
  line-height: 1.7;
}

.slide-description p {
  margin-bottom: 1.5rem;
}

/* Types de panneaux */
.panel-types {
  margin-top: 2rem;
}

.panel-types h4 {
  color: #424244;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.type-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.type-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.type-item:hover {
  background: #e9ecef;
  transform: translateX(10px);
}

.type-icon {
  font-size: 1.5rem;
}

/* Économies */
.economy-highlight {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(247, 147, 30, 0.1), rgba(0, 159, 227, 0.1));
  padding: 2rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  border: 2px solid rgba(247, 147, 30, 0.2);
}

.economy-number {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, #F7931E, #009FE3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.economy-text {
  font-size: 1.3rem;
  font-weight: 600;
  color: #424244;
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: #e9ecef;
  transform: translateX(10px);
}

.benefit-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

/* Urgence */
.urgency-points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.urgency-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 15px;
  border-left: 4px solid #F7931E;
  transition: all 0.3s ease;
}

.urgency-item:hover {
  background: #e9ecef;
  transform: translateX(10px);
  border-left-color: #009FE3;
}

.urgency-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.action-box {
  background: linear-gradient(135deg, rgba(247, 147, 30, 0.1), rgba(0, 159, 227, 0.1));
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid rgba(247, 147, 30, 0.2);
  text-align: center;
}

.action-box p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #424244;
}

/* Boutons CTA */
.cta-intro {
  font-size: 1.4rem;
  font-weight: 600;
  color: #424244;
  text-align: center;
  margin-bottom: 2rem;
}

.quote-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.quote-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: #424244;
}

.quote-icon {
  color: #2AF598;
  font-size: 1.2rem;
}

.cta-buttons-large {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.btn-quote-primary {
  background: linear-gradient(135deg, #F7931E, #009FE3);
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(247, 147, 30, 0.3);
  text-align: center;
  width: fit-content;
}

.btn-quote-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(247, 147, 30, 0.4);
}

.btn-quote-primary svg {
  width: 24px;
  height: 24px;
}

.btn-quote-secondary {
  background: transparent;
  color: #424244;
  border: 2px solid #ddd;
  padding: 1rem 2.5rem;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  width: fit-content;
}

.btn-quote-secondary:hover {
  background: #424244;
  color: white;
  border-color: #424244;
  transform: translateY(-2px);
}

.btn-quote-secondary svg {
  width: 20px;
  height: 20px;
}

/* Visuels des slides */
.slide-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
  transition: all 0.3s ease;
}

.visual-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.visual-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1rem;
}

.visual-overlay {
  position: relative;
  margin-top: -50px;
  margin-bottom: 1rem;
  text-align: center;
}

.tech-badge {
  display: inline-block;
  background: linear-gradient(135deg, #F7931E, #009FE3);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(247, 147, 30, 0.3);
}

/* Graphique d'économies - Correction complète */
.savings-chart {
  text-align: center;
}

.savings-chart h4 {
  text-align: center;
  color: #424244;
  margin-bottom: 2rem;
  font-size: 1.3rem;
}

.chart-bars {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  height: 150px;
  align-items: flex-end;
  padding: 0 1rem;
}

.bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.bar {
  width: 60px;
  border-radius: 8px 8px 0 0;
  transition: all 0.5s ease;
  position: relative;
  display: block;
}

/* Barres spécifiques avec classes */
.bar-before {
  height: 120px !important; /* Force la hauteur */
  background: linear-gradient(to top, #ff6b6b, #ee5a52) !important;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  border: 2px solid rgba(238, 90, 82, 0.3);
  animation: pulseRed 2s ease-in-out infinite alternate;
}

.bar-after {
  height: 45px !important; /* Force la hauteur */
  background: linear-gradient(to top, #2AF598, #009FE3) !important;
  box-shadow: 0 4px 15px rgba(42, 245, 152, 0.4);
  border: 2px solid rgba(0, 159, 227, 0.3);
  animation: pulseGreen 2s ease-in-out infinite alternate;
}

@keyframes pulseRed {
  0% { 
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    transform: scale(1);
  }
  100% { 
    box-shadow: 0 6px 25px rgba(255, 107, 107, 0.6);
    transform: scale(1.02);
  }
}

@keyframes pulseGreen {
  0% { 
    box-shadow: 0 4px 15px rgba(42, 245, 152, 0.4);
    transform: scale(1);
  }
  100% { 
    box-shadow: 0 6px 25px rgba(42, 245, 152, 0.6);
    transform: scale(1.02);
  }
}

.bar-item span {
  font-weight: 600;
  color: #424244;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.savings-amount {
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #F7931E;
  margin-top: 1rem;
  padding: 0.5rem;
  background: rgba(247, 147, 30, 0.1);
  border-radius: 10px;
}

/* Animation des barres au hover */
.bar-item:hover .bar {
  transform: scaleY(1.1) !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3) !important;
}

/* Version responsive pour mobile */
@media (max-width: 768px) {
  .chart-bars {
    gap: 1rem;
    height: 120px;
  }
  
  .bar {
    width: 40px;
  }
  
  .bar-before {
    height: 90px !important;
  }
  
  .bar-after {
    height: 35px !important;
  }
  
  .savings-chart h4 {
    font-size: 1.1rem;
  }
  
  .savings-amount {
    font-size: 1rem;
  }
}

.bar-item span {
  font-weight: 600;
  color: #424244;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.savings-amount {
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: #F7931E;
  margin-top: 1rem;
  padding: 0.5rem;
  background: rgba(247, 147, 30, 0.1);
  border-radius: 10px;
}

/* Animation des barres au hover */
.bar-item:hover .bar {
  transform: scaleY(1.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

/* Version responsive pour mobile */
@media (max-width: 768px) {
  .chart-bars {
    gap: 1rem;
    height: 120px;
  }
  
  .bar {
    width: 40px;
  }
  
  .savings-chart h4 {
    font-size: 1.1rem;
  }
  
  .savings-amount {
    font-size: 1rem;
  }
}
/* Graphique de tendance */
.trend-graph h4 {
  text-align: center;
  color: #424244;
  margin-bottom: 2rem;
  font-size: 1.3rem;
}

.graph-container {
  position: relative;
  height: 150px;
  background: #f8f9fa;
  border-radius: 15px;
  overflow: hidden;
  padding: 1rem;
}

.graph-line {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, #2AF598, #F7931E, #ff4757);
  border-radius: 2px;
  transform: rotate(15deg);
}

.graph-points {
  position: relative;
  height: 100%;
}

.point {
  position: absolute;
  font-size: 0.9rem;
  font-weight: 600;
  color: #424244;
  transform: translateX(-50%);
}

.point.highlight {
  color: #F7931E;
  font-weight: 700;
}

/* Informations de contact */
.contact-info h4 {
  text-align: center;
  color: #424244;
  margin-bottom: 2rem;
  font-size: 1.3rem;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.step:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #F7931E, #009FE3);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-text strong {
  color: #424244;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  display: block;
}

.step-text p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
}

/* Flèches de navigation */
.services-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 100;
  transform: translateY(-50%);
  pointer-events: none;
}

.services-arrow {
  pointer-events: all;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  color: #424244;
}

.services-arrow:hover {
  background: linear-gradient(135deg, #F7931E, #009FE3);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(247, 147, 30, 0.3);
}

.services-arrow svg {
  width: 24px;
  height: 24px;
}

/* Indicateurs */
.services-indicators {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 2rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(66, 66, 68, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #F7931E;
  transform: scale(1.5);
  box-shadow: 0 0 20px rgba(247, 147, 30, 0.5);
}

/* Responsive */
@media (max-width: 968px) {
  .slide-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .services-nav {
    gap: 1rem;
  }
  
  .service-icon {
    min-width: 140px;
    padding: 1.2rem 1.5rem;
  }
  
  .slide-text h3 {
    font-size: 2rem;
  }
  
  .economy-highlight {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .economy-number {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }
  
  .services-nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .service-icon {
    flex-direction: row;
    min-width: 250px;
    padding: 1rem 1.5rem;
  }
  
  .icon-wrapper {
    width: 40px;
    height: 40px;
  }
  
  .icon-wrapper svg {
    width: 24px;
    height: 24px;
  }
  
  .service-slide {
    padding: 2rem 1.5rem;
  }
  
  .slide-text h3 {
    font-size: 1.8rem;
  }
  
  .services-arrows {
    display: none;
  }
  
  .cta-buttons-large {
    gap: 0.8rem;
  }
  
  .btn-quote-primary {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
  }
  
  .btn-quote-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 300px;
  }
  
  .visual-card {
    padding: 1.5rem;
  }
  
  .chart-bars {
    gap: 1rem;
  }
  
  .bar {
    width: 40px;
  }
}

/* Animations au défilement */
.services-section.animate .service-icon {
  animation: iconSlideIn 0.6s ease forwards;
}

.services-section.animate .service-icon:nth-child(1) { animation-delay: 0.1s; }
.services-section.animate .service-icon:nth-child(2) { animation-delay: 0.2s; }
.services-section.animate .service-icon:nth-child(3) { animation-delay: 0.3s; }
.services-section.animate .service-icon:nth-child(4) { animation-delay: 0.4s; }

@keyframes iconSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Styles pour l'en-tête de section */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header.centered {
  text-align: center;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #424244;
  margin-bottom: 1rem;
}
.section-title1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #e3d3d3;
  margin-bottom: 1rem;
}

.section-title .highlight {
  background: linear-gradient(135deg, #F7931E, #009FE3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title1 .highlight {
  background: linear-gradient(135deg, #F7931E, #009FE3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.section-subtitle1 {
  font-size: 1.3rem;
  color: #e3d3d3;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.title-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #F7931E, #009FE3);
  margin: 0 auto;
  border-radius: 2px;
}

/* Styles pour la section about-content manquante */
.about-content {
  position: relative;
  z-index: 2;
}

/* Correction pour le titre about-section */
.about-section .about-title {
  font-size: 5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 4rem;
  color: white;
  background: linear-gradient(135deg, #F7931E, #009FE3, #2AF598);
  -webkit-background-clip: text;
  background-clip: text;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

/* Styles pour les écrans très larges */
@media (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
  
  .navbar {
    max-width: 1400px;
  }
  
  .hero-section {
    max-width: 1400px;
  }
}

/* Amélioration de l'accessibilité */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Styles d'impression */
@media print {
  .particles-container,
  .scroll-down-btn,
  .hero-navigation,
  .scroll-indicator,
  .hero-arrows,
  .swipe-hint {
    display: none !important;
  }
  
  body {
    background: white !important;
  }
  
  .hero-section {
    height: auto;
    box-shadow: none;
  }
  
  .hero-image::before {
    background: rgba(0, 0, 0, 0.1) !important;
  }
}
/* Styles pour la badge technologique */
.tech-badge {
  display: inline-block;
  background: linear-gradient(135deg, #F7931E, #009FE3);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(247, 147, 30, 0.3);
}

/* Styles pour l'overlay visuel */
.visual-overlay {
  position: relative;
  margin-top: -50px;
  margin-bottom: 1rem;
  text-align: center;
  z-index: 5;
}

/* Correction pour l'image dans la carte visuelle */
.visual-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1rem;
  display: block;
}

/* Portfolio Section - Nos Réalisations */
.portfolio-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  overflow: hidden;
  min-height: 100vh;
}

.portfolio-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Éléments de fond animés */
.energy-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.energy-wave {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: energyPulse 6s ease-in-out infinite;
}

.wave-1 {
  width: 600px;
  height: 600px;
  top: -300px;
  right: -300px;
  background: radial-gradient(circle, #fbbf24 0%, transparent 70%);
  animation-delay: 0s;
}

.wave-2 {
  width: 800px;
  height: 800px;
  bottom: -400px;
  left: -400px;
  background: radial-gradient(circle, #10b981 0%, transparent 70%);
  animation-delay: 2s;
}

.wave-3 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
  animation-delay: 4s;
}

@keyframes energyPulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.2) rotate(180deg);
    opacity: 0.3;
  }
}

.solar-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.solar-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #fbbf24;
  border-radius: 50%;
  opacity: 0.8;
  animation: particleFloat 8s linear infinite;
}

.solar-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.solar-particle:nth-child(2) { left: 30%; animation-delay: 2s; }
.solar-particle:nth-child(3) { left: 50%; animation-delay: 4s; }
.solar-particle:nth-child(4) { left: 70%; animation-delay: 6s; }
.solar-particle:nth-child(5) { left: 90%; animation-delay: 8s; }

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: scale(1);
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) scale(0);
    opacity: 0;
  }
}

/* En-tête de section */
.section-header.centered {
  text-align: center;
  margin-bottom: 80px;
}

.section-title2 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.section-title2 .highlight {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title2 .highlight::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 2px;
}

.section-subtitle2 {
  font-size: 1.25rem;
  color: #94a3b8;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.title-divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  margin: 0 auto;
  border-radius: 2px;
  position: relative;
}

.title-divider::before,
.title-divider::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fbbf24;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.title-divider::before { left: -30px; }
.title-divider::after { right: -30px; }

/* Grille de projets - Optimisée pour 6 projets */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.portfolio-item {
  opacity: 1;
  transform: scale(1);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-item.hide {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

.project-card {
  background: rgba(30, 41, 59, 0.8);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(148, 163, 184, 0.1);
  transition: all 0.4s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(251, 191, 36, 0.3);
}

.project-card.featured {
  border: 2px solid #fbbf24;
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.2);
}

.project-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  flex-shrink: 0;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: #ffffff;
  padding: 20px;
}

.project-info {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: rgba(30, 41, 59, 0.95);
}

.project-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  text-align: center;
}

.project-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #10b981;
  font-size: 0.95rem;
  font-weight: 500;
}

.project-location i {
  color: #10b981;
  font-size: 0.9rem;
}

.project-power {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #0f172a;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
  border: 2px solid rgba(251, 191, 36, 0.2);
}

.project-power i {
  color: #0f172a;
  font-size: 1rem;
}

.project-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.6);
  padding: 8px 12px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

.stat i {
  color: #10b981;
  font-size: 0.8rem;
}

.view-project-btn {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #0f172a;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.view-project-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

.featured-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.project-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.production-bar {
  flex: 1;
  height: 8px;
  background: rgba(148, 163, 184, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.production-fill {
  height: 100%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 4px;
  transition: width 0.8s ease;
}

.production-text {
  font-weight: 600;
  color: #e2e8f0;
  font-size: 0.9rem;
}

/* Call to Action */
.portfolio-cta {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
  background: rgba(30, 41, 59, 0.8);
  border-radius: 30px;
  padding: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(148, 163, 184, 0.1);
  margin: 60px auto 0;
  max-width: 80%;
}

.cta-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.2rem;
  color: #94a3b8;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary-large {
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #0f172a;
}

.btn-primary-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(251, 191, 36, 0.3);
}

.cta-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.energy-orb {
  position: relative;
  width: 200px;
  height: 200px;
}

.orb-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbPulse 2s ease-in-out infinite;
}

.orb-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid rgba(251, 191, 36, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: orbRotate 8s linear infinite;
}

.ring-1 {
  width: 120px;
  height: 120px;
  animation-delay: 0s;
}

.ring-2 {
  width: 160px;
  height: 160px;
  animation-delay: 2s;
}

.ring-3 {
  width: 200px;
  height: 200px;
  animation-delay: 4s;
}

@keyframes orbPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.8);
  }
}

@keyframes orbRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 1400px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 1200px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .section-title2 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .portfolio-section {
    padding: 60px 0;
  }
  
  .portfolio-container {
    padding: 0 15px;
  }
  
  .section-title2 {
    font-size: 2.5rem;
  }
  
  .section-subtitle2 {
    font-size: 1.1rem;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .project-image {
    height: 240px;
  }
  
  .overlay-content h3 {
    font-size: 1.3rem;
  }
  
  .overlay-content p {
    font-size: 0.95rem;
  }
  
  .project-stats {
    gap: 15px;
  }
  
  .stat {
    font-size: 0.85rem;
    padding: 6px 10px;
  }
  
  .view-project-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  
  .portfolio-cta {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 30px;
    max-width: 95%;
  }
  
  .cta-content h3 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .energy-orb {
    width: 150px;
    height: 150px;
  }
  
  .orb-core {
    width: 40px;
    height: 40px;
  }
  
  .ring-1 { width: 80px; height: 80px; }
  .ring-2 { width: 110px; height: 110px; }
  .ring-3 { width: 150px; height: 150px; }
}

@media (max-width: 480px) {
  .section-title2 {
    font-size: 2rem;
  }
  
  .project-card {
    border-radius: 15px;
  }
  
  .project-image {
    height: 200px;
  }
  
  .overlay-content {
    padding: 15px;
  }
  
  .overlay-content h3 {
    font-size: 1.2rem;
  }
  
  .project-location {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
  
  .project-power {
    font-size: 0.9rem;
    padding: 6px 12px;
    margin-bottom: 15px;
  }
  
  .project-stats {
    flex-direction: column;
    gap: 8px;
  }
  
  .stat {
    justify-content: center;
    font-size: 0.8rem;
    padding: 6px 10px;
  }
  
  .view-project-btn {
    font-size: 0.8rem;
    padding: 8px 16px;
  }
  
  .portfolio-cta {
    padding: 30px 20px;
  }
  
  .cta-content h3 {
    font-size: 1.8rem;
  }
  
  .btn-primary-large {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* les partenaire section*/
.partners-section {
            position: relative;
            padding: 120px 0;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            overflow: hidden;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        .partners-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        /* Éléments de fond créatifs */
        .partners-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .energy-bubble {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.05));
            animation: bubbleFloat 8s ease-in-out infinite;
        }

        .bubble-1 {
            width: 120px;
            height: 120px;
            top: 10%;
            left: 15%;
            animation-delay: 0s;
        }

        .bubble-2 {
            width: 80px;
            height: 80px;
            top: 60%;
            right: 10%;
            animation-delay: 2s;
        }

        .bubble-3 {
            width: 150px;
            height: 150px;
            bottom: 20%;
            left: 70%;
            animation-delay: 4s;
        }

        .bubble-4 {
            width: 100px;
            height: 100px;
            top: 30%;
            left: 80%;
            animation-delay: 6s;
        }

        @keyframes bubbleFloat {
            0%, 100% {
                transform: translateY(0px) scale(1);
                opacity: 0.3;
            }
            50% {
                transform: translateY(-20px) scale(1.1);
                opacity: 0.6;
            }
        }

        .connection-network {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .network-line {
            position: absolute;
            height: 2px;
            background: linear-gradient(90deg, transparent 0%, rgba(251, 191, 36, 0.3) 50%, transparent 100%);
            animation: networkPulse 4s ease-in-out infinite;
        }

        .line-1 {
            width: 200px;
            top: 25%;
            left: 20%;
            transform: rotate(30deg);
            animation-delay: 0s;
        }

        .line-2 {
            width: 150px;
            top: 45%;
            right: 25%;
            transform: rotate(-45deg);
            animation-delay: 1s;
        }

        .line-3 {
            width: 180px;
            bottom: 35%;
            left: 30%;
            transform: rotate(60deg);
            animation-delay: 2s;
        }

        .line-4 {
            width: 120px;
            bottom: 20%;
            right: 40%;
            transform: rotate(-30deg);
            animation-delay: 3s;
        }

        @keyframes networkPulse {
            0%, 100% {
                opacity: 0.2;
                transform: scale(1) rotate(var(--rotation, 0deg));
            }
            50% {
                opacity: 0.6;
                transform: scale(1.1) rotate(var(--rotation, 0deg));
            }
        }

        /* En-tête de section */
        .section-header.centered {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-title2 {
            font-size: 3.5rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .highlight {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-subtitle2 {
            font-size: 1.3rem;
            color: #94a3b8;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .title-divider {
            width: 100px;
            height: 4px;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            margin: 0 auto;
            border-radius: 2px;
            position: relative;
        }

        .title-divider::before,
        .title-divider::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: #fbbf24;
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
        }

        .title-divider::before { left: -30px; }
        .title-divider::after { right: -30px; }

        /* Grille hexagonale des partenaires */
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
            max-width: 800px;
            margin: 0 auto 100px;
            justify-items: center;
        }

        .partner-hexagon {
            position: relative;
            width: 200px;
            height: 200px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
        }

        .partner-hexagon:hover {
            transform: translateY(-15px) scale(1.05);
        }

        .hexagon-inner {
            position: relative;
            width: 100%;
            height: 100%;
            background: rgba(30, 41, 59, 0.9);
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            backdrop-filter: blur(10px);
            transition: all 0.4s ease;
            overflow: hidden;
        }

        .partner-hexagon:hover .hexagon-inner {
            background: rgba(30, 41, 59, 0.95);
            box-shadow: 0 0 40px rgba(251, 191, 36, 0.3);
        }

        .hexagon-border {
            position: absolute;
            top: -3px;
            left: -3px;
            width: calc(100% + 6px);
            height: calc(100% + 6px);
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #10b981 100%);
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
            animation: borderRotate 4s linear infinite;
        }

        .partner-hexagon:hover .hexagon-border {
            opacity: 1;
        }

        @keyframes borderRotate {
            0% { filter: hue-rotate(0deg); }
            100% { filter: hue-rotate(360deg); }
        }

        .partner-logo-container {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 160px;
            height: 160px; 
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
        }

        .logo-placeholder {
            width: 150px;  
            height: 150px; 
            background: rgba(251, 191, 36, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(251, 191, 36, 0.3);
            transition: all 0.4s ease;
            font-size: 2rem;
            color: #fbbf24;
            position: relative;
            overflow: hidden;
        }

        .partner-hexagon:hover .logo-placeholder {
            background: rgba(251, 191, 36, 0.2);
            border-color: #fbbf24;
            transform: scale(1.1);
        }

        /* === STYLES POUR LES LOGOS - TAILLE DOUBLÉE === */
        .partner-logo-img {
            width: 140px;  
            height: 140px; 
            object-fit: contain;
            object-position: center;
            transition: all 0.4s ease;
            border-radius: 8px;
            background: #ffffff;
            padding: 5px;
            box-sizing: border-box;
        }

        .partner-hexagon:hover .partner-logo-img {
            transform: scale(1.1);
        }

        /* Style alternatif pour les logos qui ont besoin de plus d'espace */
        .logo-contain {
            object-fit: contain !important;
            padding: 10px !important;
        }

        .partner-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: opacity 0.4s ease;
            animation: glowPulse 2s ease-in-out infinite;
        }

        .partner-hexagon:hover .partner-glow {
            opacity: 1;
        }

        @keyframes glowPulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.2); }
        }

        .partner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.9) 100%);
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 3;
        }

        .partner-hexagon:hover .partner-overlay {
            opacity: 1;
        }

        .overlay-content {
            text-align: center;
            color: #ffffff;
            padding: 20px;
        }

        .overlay-content h3 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #fbbf24;
            margin-bottom: 10px;
        }

        .overlay-content p {
            font-size: 0.9rem;
            color: #94a3b8;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .partner-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .partner-badge.premium {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            color: #ffffff;
        }

        .partner-badge.tech {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
            color: #ffffff;
        }

        .partner-badge.strategic {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: #ffffff;
        }

        .partner-badge.innovation {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            color: #ffffff;
        }

        /* Message de confiance */
        .trust-message {
            text-align: center;
            margin-bottom: 80px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .trust-content {
            background: rgba(30, 41, 59, 0.8);
            border: 1px solid rgba(148, 163, 184, 0.1);
            border-radius: 25px;
            padding: 50px 40px;
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .trust-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent 0%, rgba(251, 191, 36, 0.05) 50%, transparent 100%);
            animation: trustSweep 3s ease-in-out infinite;
        }

        @keyframes trustSweep {
            0% { left: -100%; }
            50% { left: 100%; }
            100% { left: 100%; }
        }

        .trust-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 2rem;
            color: #0f172a;
            animation: trustIconFloat 3s ease-in-out infinite;
            position: relative;
            z-index: 2;
        }

        @keyframes trustIconFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .trust-content h3 {
            font-size: 2rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .trust-content p {
            font-size: 1.1rem;
            color: #94a3b8;
            line-height: 1.6;
            position: relative;
            z-index: 2;
        }

        /* Animation d'entrée */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .partner-hexagon {
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .partner-hexagon:nth-child(1) { animation-delay: 0.1s; }
        .partner-hexagon:nth-child(2) { animation-delay: 0.2s; }
        .partner-hexagon:nth-child(3) { animation-delay: 0.3s; }
        .partner-hexagon:nth-child(4) { animation-delay: 0.4s; }

        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .section-title2 {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .partners-section {
                padding: 80px 0;
            }
            
            .partners-container {
                padding: 0 15px;
            }
            
            .section-title2 {
                font-size: 2.5rem;
            }
            
            .section-subtitle2 {
                font-size: 1.1rem;
            }
            
            .partners-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
                max-width: 400px;
            }
            
            .partner-hexagon {
                width: 150px;
                height: 150px;
            }
            
            .partner-logo-container {
                width: 90px;
                height: 90px;
            }
            
            .logo-placeholder {
                width: 60px;
                height: 60px;
            }
            
            .overlay-content h3 {
                font-size: 1rem;
            }
            
            .overlay-content p {
                font-size: 0.8rem;
            }
            
            .trust-content {
                padding: 40px 30px;
            }
            
            .trust-content h3 {
                font-size: 1.8rem;
            }
            
            .trust-content p {
                font-size: 1rem;
            }
            
            .partner-icon {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .partners-grid {
                grid-template-columns: 1fr;
                max-width: 200px;
            }
            
            .section-title2 {
                font-size: 2rem;
            }
            
            .trust-icon {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }
            
            .bubble-1, .bubble-2, .bubble-3, .bubble-4 {
                width: 60px !important;
                height: 60px !important;
            }
            
            .network-line {
                width: 80px !important;
            }
        }



      
  