/* ========================================
   CAPEO - Solar Panel Company Website
   CSS Stylesheet
   ======================================== */

/* ---- CSS Variables ---- */
:root {
  --primary: #21305E;
  --primary-light: #334b94;
  --secondary: #e17a2d;
  --third: #22a866;
  --background: #fdfcfa;
  --foreground: #1a1a2e;
  --muted: #f5f4f0;
  --muted-foreground: #6b6b7b;
  --card: #ffffff;
  --border: #e8e6e1;
  --radius: 12px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --transition: all 0.3s ease;
  --nav-height: 0px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Avenir LT Pro', sans-serif;                                              
  /* font-family: 'Inter', system-ui, sans-serif; */
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Layout ---- */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.container {
  width: 100%;
  margin: 0 auto;
  height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 25px;

}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  width: 300px;
  height: 60px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  box-shadow: 0 4px 14px rgba(225, 122, 45, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 122, 45, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 2px solid var(--border);
}
.colored-btn{
  background-color: rgba(255, 255, 255, 0.363);
}
.btn-outline:hover {
  background: var(--foreground);
  color: white;
  border-color: var(--foreground);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
}

/* ---- Section Styles ---- */
 .section-header {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.section-container{
  position: relative;
  background-size: cover;
  background-position: center;
  /* height: 90vh; */
  width: 100%;
}
.section-badge {
  display: inline-block;
  color: var(--primary);
  background-color: white;
  font-size: clamp(30px, 6vw, 80px);
  font-weight: 800;
  width: 100%;
  letter-spacing: 5px;
}

.section-title {
  font-size: clamp(15px, 2vw, 30px);
  margin-left: 25%;
}

.section-description {
  font-size: clamp(14px, 3vw, 20px);
  color: var(--muted);
  max-width: 1400px;
  background-color: #00000036;
  padding: 20px;
  border: 1px solid white;
  border-radius: 5px;
  backdrop-filter: blur(5px);
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes wiggle {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes energyFlow {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  5% { opacity: 1; }
  100% { transform: translateY(-100px) translateX(10px)  scale(0.5); opacity: 0; }
}

.animate-on-scroll,
.animate-on-scroll-1,
.animate-on-scroll-2,
.animate-on-scroll-3,.animate-on-scroll-4  {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible,
.animate-on-scroll-1.visible,
.animate-on-scroll-2.visible,
.animate-on-scroll-3.visible,.animate-on-scroll-4.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-from-left {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-from-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.animate-from-right {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-from-right.visible {
  opacity: 1;
  transform: translateX(0);
}
/* ========================================
   HEADER
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 252, 250, 0.8);
  backdrop-filter: blur(20px);
  /* border-bottom: 1px solid var(--border); */
  transition: var(--transition);
}
.progress-container {
  width: 100%;
  height: 8px;
  background: transparent;
}
.progress-bar {
  height: 8px;
  background: #04AA6D;
  width: 0%;
}
.scrolled {
  background: rgba(32, 32, 32, 0.27);
  box-shadow: var(--shadow);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 16px 24px;
}

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

.logo-icon {
  width: 140px;
  height: 40px;
  color: var(--primary);
}
.sub-link{
  padding-left: 25px !important;
}
.sub-link1{
  padding-left: 15px !important;
}
.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--foreground);
}

.logo-tagline {
  font-size: 10px;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav {
  display: none;
}

@media (min-width: 1024px) {
  .nav {
    display: block;
  }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 700;
  color: var(--muted-foreground);
  border-radius: 8px;
  transition: var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit; 
}

.nav-link:hover {
  color: var(--foreground);
  background: var(--muted);
}

.dropdown-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 8px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: clamp(12px, 1vw, 14px);
  color: var(--muted-foreground);
  border-radius: 8px;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--muted);
  color: var(--foreground);
}

.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: inline-flex;
  }
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--foreground);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.nav.mobile-active {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  animation: all 1s ease;
}

.nav.mobile-active .nav-list {
  flex-direction: column;
  align-items: stretch;
}

.nav.mobile-active .nav-link {
  justify-content: space-between;
  padding: 12px 16px;
}

.nav.mobile-active .dropdown-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  border: none;
  padding-left: 16px;
  display: none;
}

.nav.mobile-active .nav-dropdown.active .dropdown-menu {
  display: block;
}
/* ========================================
   EQUIPE SECTION
   ======================================== */
.equipe {
  background-image: url('assets/bg2.png');
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  flex-direction: column;
  
}
.equipe-bg {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 40px;
  height: 60vh;
}
.equipe-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
    rgba(90, 87, 87, 0.151) 0%, 
    rgba(190, 190, 190, 0.164) 50%, 
    rgba(29, 28, 27, 0.267) 100%
  );
}

.equipe-content {
  display: flex;
  justify-content: center;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.equipe-parent {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 80px;
}

.equipe-1{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  
}
.equipe-1 img{
  width: 250px;
  height: 235px;
  height: auto;
  margin: 0 20px;
}

.equipe-1 div{
 background: var(--primary);
 width: 250px;
 height: 150px;
   display: flex;
  justify-content: space-around;
  align-items: center;
  color: var(--muted);
  text-align: center;
  padding: 0 10px;
}

.equipe-text{
  font-size: 18px;
  text-align: center;
  width: 250px;
  box-shadow: rgb(254, 254, 255) 0px 10px 30px -10px;
  border-radius: 30% 10% 30% 10%;
}
@media (max-width: 768px) {

}
/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding: 160px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url('assets/cover.png');
  background-size: cover;
  background-position: center;
}

.hero-gradient {
  position: absolute;
  /* backdrop-filter: blur(10px); */
  inset: 0;
  background: linear-gradient(135deg, rgba(253, 252, 250, 0.44) 0%, rgba(255, 247, 237, 0.05) 50%, rgba(254, 243, 199, 0.13) 100% );
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
   background: var(--primary); 
  border-radius: 50%;
  z-index: 2;
  opacity: 0.8;
  animation: float 3s ease-in-out infinite;
}

.sun-rays {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 154, 0.877) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.hero-text {
  flex: 1;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.hero-badge svg {
  color: var(--primary);
}

.hero-title-img{
  animation: wiggle 2s ease-in-out infinite;
}
.hero-title {
  font-size: clamp(20px, 6vw, 32px);
  margin: 26px;
  line-height: 1.1;
  color: var(--muted);
}

.hero-description {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.stat {
  background-color: #ffffff42;
  border-radius: 10px;
  border: 1px solid var(--border);
  backdrop-filter: blur(5px);
  text-align: center;
  padding: 4px;
  width: clamp(140px, 20vw, 300px);;
}
.bigger-stat{
  font-size: clamp(30px, 2vw, 45px) !important;
}
.bigger-label{
  font-size: clamp(16px, 2vw, 20px) !important;
}
.stat-value {
  display: block;
  font-size: clamp(14px, 2vw, 22px);
  font-weight: 700;
  color: var(--foreground);
}

.stat-label {
  font-size: clamp(9px, 1vw, 16px);
  color: var(--foreground);
  background-color: rgba(110, 110, 110, 0.034);
}





.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  animation: float 2s ease-in-out infinite;
}
@media (max-width: 768px) {

  .scroll-indicator{
    left: 43%;
  }


}

.scroll-arrow {
  width: 24px;
  height: 24px;
}

.scroll-arrow svg {
  width: 100%;
  height: 100%;
}

/* ========================================
   BRANDS SECTION
   ======================================== */

.brand-logo {
  width: 100px;
  height: 100px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}
/* .brands-logos{
  padding-block: 1rem;
   overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  mask: linear-gradient(90deg, transparent, rgb(221, 40, 40) 20%, rgb(33, 192, 94) 80%, transparent);
   width: max-content;
  animation: inf-scroll 20s linear infinite; 
} */
.scroller {
  max-width: 900px;
}

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    white 20%,
    white 80%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll 20s forwards linear infinite;
}

.scroller[data-direction="right"] {
  --_animation-direction: reverse;
}

.scroller[data-direction="left"] {
  --_animation-direction: forwards;
}

.scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}

.scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}
/* ========================================
   COMMON SECTION STYLES
   ======================================== */


/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  background-image: url('assets/nous.png');
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
    flex-direction: column;
}

.about-bg{
  height: 80vh;
}
.about-img-qm{
  position: absolute;
  right: 15px;
  width: 300px;
  top: 15px;
}




.about-grid {
  gap: 100px;
  display: flex;
  justify-content: center;
}

.about-card {
  padding: 2px 5px; 
  border-radius: var(--radius);
  transition: var(--transition);
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  gap: 24px;
  width: 300px;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.about-card-icon {
  /* width: 56px;
  height: 56px; */
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  margin-bottom: 20px;
}



.about-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.about-card p {
  font-size: clamp(10px, 2vw, 18px);
  color: var(--muted);
  text-align: left;
}
.about-card img{
  width: 90px;
}

.objectives {
   background: var(--primary); 
  width: 100%;
  color: white;
  /* position: absolute; */
  /* bottom: 0; */
  height: 180px;
}
@keyframes BGobjectives {
    0%{background-position:68% 0%}
    50%{background-position:33% 100%}
    100%{background-position:68% 0%}
}
.objectives-title {
  font-size: clamp(18px, 5vw, 30px);
  margin: 10px;
  text-align: Left;
}

.objectives-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 768px) {
  .objectives-list {
    flex-direction: row;
  }
}

.objective {
  flex: 1;
  display: flex;
  gap: 16px;
}



.objective-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.objective-content p {
  font-size: 14px;
  opacity: 0.8;
}

/* ========================================
   SOLEA SECTION
   ======================================== */
.solea {
  background-image: url('assets/imgsolea.png');
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  flex-direction: column;
}
.solea-container{

  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
.solea-bg{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.solea-header {
  text-align: center;
  width: 100%;
}

.solea-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}
.solea-home{
  width: 70%;
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.5));
  animation: float 2s ease-in-out infinite;
}
.diagram-stage {
    position: relative;
    width: 100%;
    max-width: 1000px; /* Adjust this to change the overall size */
    margin: 0 auto;
    aspect-ratio: 1000 / 560; /* Keeps the coordinate system locked */
    overflow: hidden;
    animation: float 2s ease-in-out infinite;
}


.sol-asset {
    position: absolute;
    height: auto;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.5));
    
}

/* Positioning Assets */
.house {
    top: 2%;
    left: 23%;
    width: 54%;
}

.step-1 {
    top: 55%;
    left: 0%;
    width: 25%;
    cursor: pointer;
}
.step-1:hover,.step-2:hover,.step-3:hover {
    transform: translateY(-5px) scale(1.05);
}
.step-2 {
    top: 55%;
    left: 37.5%;
    width: 25%;
    cursor: pointer;

}

.step-3 {
    top: 55%;
    left: 75%;
    width: 25%;
    cursor: pointer;

}

/* Arrow Positioning & Rotations */
.arrow-curved-right {
    top: 25%;
    left: 78%;
    width: 11%;
}

.arrow-curved-left {
    left: 11%;
    top: 24%;
    width: 11%;
    transform: scaleX(-1); 
}

.arrow-straight-1 {
    top: 85%;
    left: 26%;
    width: 9%;
}

.arrow-straight-2 {
    top: 85%;
    left: 62.5%;
    width: 9%;
}



.feature-card {
  position: relative;
  padding: 32px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card.featured {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border: none;
}
.solead-description{
  color: var(--primary);
}
.feature-card.featured .feature-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--muted);
  border-radius: 12px;
  margin-bottom: 20px;
}

.feature-card.featured .feature-icon {
  background: rgba(255, 255, 255, 0.2);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.feature-card.featured .feature-icon svg {
  color: white;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted-foreground);
  margin-bottom: 16px;
}

.feature-card.featured p {
  color: rgba(255, 255, 255, 0.9);
}

.feature-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--muted);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
}

.solea-process {
  background: white;
  border-radius: 24px;
  padding: 48px;
}

.process-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 48px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.solea-content{
  display: flex;
  width: 100%;
  height: 600px;
  border-radius: 8px;
  overflow: hidden;
  gap: 16px;
}
.solea-card{
  position: relative;
  flex: 1;
  height: 100%;
  cursor: pointer;
  transition: flex 0.3s ease;
  background-size: cover;
  background-position: center; 
  background-repeat: no-repeat ; 
  animation: all 1s ease;
}
.solea-content:hover .solea-card {
    filter: blur(4px);
    justify-content: center;
}

/* Remove blur on hovered one */
.solea-content .solea-card:hover {
    filter: blur(0);
}

.solea-content:hover .solea-card .solea-card-overlay{
    backdrop-filter: blur(0);
}
.solea-content .solea-card:hover  .solea-card-overlay {
    filter: blur(0);
    /* justify-content: flex-start; */

}
.solea-content .solea-card:hover  .solea-card-div {
    display: none;

}
.solea-card-overlay{
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  animation: all 1s ease;
  padding: 15px;

}
.solea-card-div{
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid white;
  border-radius: 10px;
  height: 100px;
  width: 300px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  
}
.solea-card-div h3{
  font-size: 25px
}
.solea-card:nth-child(1) .solea-card-div{
  position: absolute;
}
.solea-card:nth-child(2) .solea-card-div{
  position: absolute;
}
.solea-card:nth-child(3) .solea-card-div{
  position: absolute;
}
.solea-card:nth-child(1){
  background-image: url('assets/solps.png');

}
.solea-card:nth-child(2){
  background-color: var(--primary);
  background-image: url('assets/solbat.png');

}
.solea-card:nth-child(3){
  background-image: url('assets/solmo.png');
}
.solea-card:hover{
  flex: 3;
}
.solea-card-content{
  display: flex;
  flex-direction: column;
  gap: 15px;
  opacity: 0;
  transition: all .5s ease;
  color: white;
}
.solea-card-content h2{
  color: var(--third);
  font-size: 20px;
}
.solea-card-ctn{
  display: flex;
  align-items: center;
  gap: 16px;
}
.solea-card-ctn img{
  width: 150px;
}
.solea-content .solea-card:hover  .solea-card-content {
    /* display: flex; */
    flex-direction: column;
    opacity: 1;

}

.solea-card-ctn2{
  display: flex;
  align-items: center;
  gap: 16px;
}
.solea-card-ctn2 img{
  width: 110px;
}

.solea-card-bottom{
  display: flex;
  flex-direction: column;
  border: 2px solid var(--third);
  border-radius: 8px;
  padding: 10px;
  background-color: #0000004b;
}
.solea-card-bottom-row{
  display: flex;
  gap: 16px;
}
.solea-card-bottom-row div{
  width: 170px;
}
.solea-card-bottom-row div h3{
  color: var(--third);
  font-size: 18px;
}
.solea-card-bottom-row p{
  font-size: 13px;
}

.solea-bat p{
  font-size: clamp(10px, 3vw, 16px);
}
.solea-bat img{
  width: 100px;
}
.bold-span{
  font-weight: 800;
  color: var(--third)
}
.bolder{
  font-weight: 800;
}
@media (min-width: 768px) {
  .process-steps {
    flex-direction: row;
    justify-content: center;
  }
}


@media (max-width: 768px) {
  .solea-content{
    display: none;
  }

}


.process-step {
  flex: 1;
  max-width: 280px;
  text-align: center;
}
.process-step img{
  width: 50px;
}
.step-number {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 16px;
}

.process-step h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: var(--muted-foreground);
}

.process-connector {
  display: none;
}

@media (min-width: 768px) {
  .process-connector {
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
  }
}

/* ========================================
   ADVANTAGES SECTION
   ======================================== */
.nous-container{
  background-image: url('assets/whyus.png');
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}


.advantages-header {
  text-align: center;
  margin-bottom: 64px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.advantage-card {
  padding: 32px;
  background: var(--muted);
  border-radius: var(--radius);
  transition: var(--transition);
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.advantage-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 20px;
}

.advantage-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}
.nous-features{
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  bottom: 150px;
  width: 100%;
  padding: 0 20px;
}
.nous-feature{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 300px;
}
.nous-feature img{
  height: 100px;
}

.nous-feature p{
  color: var(--muted);
}
.separtor{
  width: 2px;
  height: 100px;
  background: var(--muted);
}
.advantage-icon.green { background: linear-gradient(135deg, #22c55e, #16a34a); }
.advantage-icon.orange { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.advantage-icon.blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.advantage-icon.purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.advantage-icon.teal { background: linear-gradient(135deg, #14b8a6, #0d9488); }
.advantage-icon.red { background: linear-gradient(135deg, #f43f5e, #e11d48); }
.advantage-icon img{
  width: 40px;
}
.advantage-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.advantage-card p {
  font-size: 14px;
  color: var(--muted-foreground);
}

.key-service {
  background: linear-gradient(135deg, var(--foreground) 0%, #2d2d44 100%);
  border-radius: 24px;
  padding: 48px;
}

.key-service-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

@media (min-width: 768px) {
  .key-service-content {
    flex-direction: row;
    text-align: left;
  }
}

.key-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 20px;
  flex-shrink: 0;
}

.key-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.key-text {
  flex: 1;
  color: white;
}

.key-text h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.key-text p {
  opacity: 0.8;
}
/* ========================================
   INTERET SECTION
   ======================================== */
.interet-container{
  background-image: url('assets/interet.png');
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}


.interet-header {
  text-align: center;
  margin-bottom: 64px;
}
.interet-features{
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
  position: absolute;
  left: 0;
  width: 100%;
  margin-left: 25px;
}
.interet-feature{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 36px;
  width: 500px;
}
.interet-feature img{
  width: 120px;
}


/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials {
  padding: 100px 0;
  background: var(--muted);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.testimonial-card {
  padding: 32px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #fbbf24;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: var(--foreground);
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  font-weight: 600;
  border-radius: 50%;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
}

.author-location {
  font-size: 14px;
  color: var(--muted-foreground);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-badge {
  text-align: center;
}

.trust-value {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
}

.trust-label {
  font-size: 14px;
  color: var(--muted-foreground);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
  background: var(--primary);
}

.contact-header {
  text-align: center;
  margin-bottom: 64px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: 50px;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1.5fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--muted);
  border-radius: var(--radius);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateX(5px);
}

.info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 12px;
  flex-shrink: 0;
}

.info-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.info-content h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.info-content p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}

.info-content span {
  font-size: 12px;
  color: var(--muted-foreground);
}

.contact-form {
  padding: 40px;
  background: var(--muted);
  border-radius: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: white;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(225, 122, 45, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.form-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted-foreground);
  text-align: center;
}

/* ========================================
   FOOTER
   ======================================== */

.contact-container{
     width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 25px;
}
.footer-container{
   width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 25px;
}
.footer {
  background: var(--foreground);
  color: white;
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand .logo {
  margin-bottom: 24px;
}

.footer-brand .logo-icon {
  color: var(--primary);
}

.footer-brand .logo-name {
  color: white;
}

.footer-brand .logo-tagline {
  color: rgba(255, 255, 255, 0.6);
}

.footer-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.footer-links h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
.white-text {
  color: white;
}

.reveal {
  opacity: 0;
  transform: translateY(50px) scale(1.5);
  transition: all 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Variants */
.reveal-left {
  transform: translateX(-80px);
}
.reveal-right {
  transform: translateX(80px);
}

.reveal.visible.reveal-left,
.reveal.visible.reveal-right {
  transform: translateX(0);
}

.panel {
  justify-content: flex-start;
  background-image: url('assets/nous.png');
  background-size: cover;
  background-position: center;
  /* width: 100%; */
}
.onduleur {
  justify-content: flex-end;
  background-image: url('assets/bg2.png');
  background-size: cover;
  background-position: center;
  /* width: 100%; */
}
.panel, .onduleur {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 10%;
}
.overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
}

.sp-content {
  position: relative;
  max-width: 600px;
  z-index: 2;
}

.title.fixed {
  position: fixed;
  top: 100px;
  right: 0;
  left: auto;
  z-index: 999;
  padding: 0 40px;
  transition: all 0.8s cubic-bezier(.2,.65,.3,1);
  font-size: 60px;
  color: var(--muted);
  padding-bottom: 5px;
  background-color: #4c464645;
  border-radius: 35px 0 0 35px;
  backdrop-filter: blur(5px);
}

.title.fixed.left {
  left: 0;
  right: auto;
  border-radius: 0 35px 35px 0;
}

.text-block {
  margin-bottom: 40px;
}

.text-block h2 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 40px;
}

.text-block p {
  color: var(--muted);
  line-height: 1.7;
}

.text-block ul {
  margin-top: 10px;
  padding-left: 20px;
}

.text-block li {
  margin-bottom: 8px;
  transition: var(--transition);
}

/* Hover effet stylé */
.text-block li:hover {
  transform: translateX(10px);
  color: var(--color-secondary);
}

.animate {
  opacity: 0;
  transform: translateY(60px) scale(0.98);
  filter: blur(10px);
  transition: all 1s cubic-bezier(.2,.65,.3,1);
}

.animate.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Delay classes */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.image-card {
  margin-top: 40px;
  overflow: hidden;
  border-radius: 20px;
  transform: scale(0.95);
  transition: var(--transition);
}

.image-card img {
  width: 600px;
  display: block;
  transition: transform 1.2s ease;
}

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

.image-card:hover {
  transform: scale(1);
}


.simulator-iframe{
  width: max(80%, 599px);
  height: 90%;
  background-color: white;
  border: none;
  border-radius: 10px;
  margin-right: 10%;
  overflow: hidden;
  z-index: 2;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.simulator-bg{
  background-image: url('assets/sim.png');
  height: 78vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.simulator-bg img{
  height: 100%;
}

section {
  scroll-margin-top: 80px;
}main {
  margin-top: var(--nav-height);
}

main section {
  scroll-margin-top: var(--nav-height);
}
.section-badge-page{
  display: inline-block;
  color: white;
  background-color:   var(--primary);
  font-size: clamp(24px, 6vw, 70px);
  font-weight: 800;
  width: 100%;
  letter-spacing: 5px;
}

/* ========================================
   STOCKAGE PAGE
   ======================================== */
.stockage-img-container{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  width: 100%;
  margin-top: 25px;
}
.stockage-img-1{
  width: 200px;

}

.stockage-img-2{
  filter: drop-shadow(5px 5px 10px rgba(255, 250, 250, 0.5));
  width: 900px;

}

 .stockage-container{
  background-image: url('assets/stockagebg.png');
  background-size: cover;
  background-position: center;
  /*h eight: 100vh; */
  height: auto;
  width: 100%;
  position: relative;
}
.stock-container{
  display: flex;
  gap: 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 50px;
}
.stock-container h2{
  color: var(--primary);
  font-size: clamp(18px, 1vw, 25px);
} 
.solea-bat-left{
  color: var(--primary);
  width: 80%;
}

.solea-bat{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 1150px;
}
/* ========================================
   PRECONISATION PAGE
   ======================================== */
.preconisation-container{
  background-image: url('assets/precobg.png');
  background-size: cover;
  background-position: center;
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.preconisation-content{
  display: flex;
  width: 100%;
  height: 100%;
}
.preco-left{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  width: 30%;
  padding-top: 100px;
}
.preco-left-item{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 320px;
  gap: 30px;
}
.preco-left-item img{
  width: 100px;
}
.preco-left-item p{
  font-size: 20px;
  color: var(--muted);
  font-weight: 800;
}

.preco-right{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  width: 70%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  padding: 20px;
}
.preco-right h2{
  color: var(--muted);
  font-size: clamp(28px, 1vw, 60px);
}
.preco-right p{
  color: var(--muted);
  font-size: clamp(14px, 1vw, 60px);
  width: 700px;
}


/* ========================================
   Panel PAGE
   ======================================== */
 .panel-container{
  background-image: url('assets/panneaubg.jpg');
  background-size: cover;
  background-position: center;
  height: auto;
  width: 100%;
  position: relative;
}
 .onduleur-container{
  background-image: url('assets/onduleurbg.jpg');
  background-size: cover;
  background-position: center;
  height: auto;
  width: 100%;
  position: relative;
}
.panel-content{
  display: flex;
  gap: 15px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.panel-cards{
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
  flex-wrap: wrap;
  }

.panel-card{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  width: 250px;
  height: 300px;
  padding: 20px;
  background-color: var(--primary);
  color: var(--muted);
  border-radius: 10px;
  transition: var(--transition);
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.panel-card h3{
  color: var(--third);
  font-size: 18px;
  font-weight: 800;
}
.panel-card p{
  font-size: 13px;
}
.panel-card:hover{
  transform: translateY(-10px);
}

.panel-cards-bottom{
  display: flex;
  flex-direction: column;
  border: 2px solid var(--third);
  border-radius: 8px;
  padding: 10px;
  background-color: #040030a3;
  margin-bottom: 100px;
}
.panel-card-bottom{
  display: flex;
  gap: 56px;
}

.panel-card-bottom h3{
  color: var(--third);
  font-size: 18px;
  width: 100px;
}
.panel-card-bottom p{
  font-size: 13px;
  color: var(--muted);
}
.medal{
  width: 150px;
  animation: float 2s ease-in-out infinite;
}


/* ========================================
   Mobile Responsiveness
   ======================================== */

@media (max-width: 900px) {
   .parallax {
    background-attachment: scroll;
  }
  .white-text {
  color: var(--muted-foreground);
}
.header{
  height: 72px;
}
   /*=================  HERO  ====================== */

  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding: 120px 24px 80px;
    overflow: hidden;
  }
  .hero-bg{
    background-image: url('assets/mobile/Cover.png');
  }
  .hero-buttons{
    margin-bottom: 24px;
  }
  .stat-value, .stat-label {
    color: var(--muted);
    padding: 0;
  }
  .btn{
    width: 250px;
    height: 50px;
  }
  .btn-primary {
    padding: 12px 24px;
    font-size: 14px;
  }
  .scroll-indicator{
    /* bottom: 130px; */
  }

  /*=================  NOUS  ====================== */
  .about{
    background-image: url('assets/mobile/nous.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    position: relative;
  }
  .about-img-qm{
  width: 120px;
  top: 50px;
}
.about-grid{
  gap: 30px;
}
 .about-card{
  gap: 12px;
  width: 130px;
  flex-direction: column;
 }
 .about-card img{
  width: 40px;
 }
 .about-card p{
  font-size: 12px;
 }

/*=================  EQUIPE  ====================== */
 .equipe{
  background-image: url('assets/mobile/equipe.png');
 }
 .equipe-content{
  flex-wrap: wrap;
  gap: 12px;
 }
 .equipe-bg{
  position: absolute;
  bottom: 20px;
 }

.equipe-1 div{
 width: 160px;
 height: 90px;
}
.equipe-1 img{
  width: 120px;
}
.equipe-text{
  font-size: 10px;
}

/*=================  SOLEA  ====================== */
.solea{
  background-image: url('assets/mobile/solea.png');
}
.solea-home{
  width: 100%;
}
.solea-bg{
  height: 60vh;
}

/*=================  WHYUS  ====================== */
.nous-container{
  background-image: url('assets/mobile/whyus.png');

}
.nous-features{
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: static; 
  bottom: auto; 
}
.nous-feature img{
  height: 80px;
}
.nous-feature p{
  font-size: 12px;
  background-color: #0d0e3e62;
  padding: 10px;
  text-align: center;
  border-radius: 10px;
}
.separtor{
  display: none;
}

/*=================  INTERET  ====================== */

.interet-container{
  background-image: url('assets/mobile/interet.png');
}
.interet-header {
  margin-bottom: 10px;
}
.interet-features{
  gap: 15px;
  justify-content: flex-start;
  align-items: flex-start;
  left: 0;
  width: 100%;
  margin-left: 25px;
}

.interet-feature img{
  width: 60px;
}
.interet-features{
  margin: 0;
}
.interet-feature{
  background-color: #bdbdbd26;
  padding: 5px;
  width: 90%;
  border-radius: 0 10px 10px 0;
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 36px;
  border: 1px solid #07023d4a;
}
.interet-text{
  font-size: 12px;
  width: 50%;
}
/*=================  SIMULATOR  ====================== */
.simulator-bg{
  background-image: url('assets/mobile/simbg.png');

}
.simulator-iframe{
  width: min(90%, 599px);
  height: 80%;
  margin: 0 auto;
}


.contact-grid{
  padding: 24px;
}
/*=================  PRECONISATION  ====================== */
.preconisation-container{
  background-image: url('assets/mobile/precobg.png');
  height: auto;
}
.preconisation-content{
  flex-direction: column-reverse;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(3, 8, 66, 0.407), rgba(0, 0, 0, 0.1));
}
.preco-left{
  flex-direction: row;
  width: 100%;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 25px;
}
.preco-right{
  width: 100%;
  padding: 0;
  
}
.preco-right h2{
  padding: 12px;
  text-align: center;
    width: 100%;
}
.preco-right p{
  font-size: clamp(14px, 1vw, 60px);
  width: 100%;
  padding: 12px;
}
.preco-left-item{
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 150px;
  height: 200px;
  background-color: #ffffff17;
  border-radius: 10px;
  backdrop-filter: blur(1px);
  padding: 8px;
}
.preco-left-item img{
  width: 60px;
}
.preco-left-item p{
  font-size: 14px;
  text-align: center;
}
.panel-container{
  background-image: url('./assets/mobile/psbg.jpg');
}
.onduleur-container{
  background-image: url('./assets/mobile/ondbg.jpg');
}
.panel-cards{
  flex-direction: column;
   gap: 20px;
   margin: 30px 0;
}
.panel-card{
  width: 250px;
  height: 250px;
}
.medal{
  width: 100px;
}
.panel-card-bottom{
  gap: 20px;
}
.panel-card h3,.panel-card-bottom h3{
  font-size: 14px;
}
.panel-card p,.panel-card-bottom p{
  font-size: 12px;
}



.stockage-img-container{
  flex-direction: column;
  gap: 20px;
}
.stockage-img-1{
  width: 200px;
}
.stockage-img-2{
  width: 100%;
}
.stockage-container{
  height: auto;
}
.solea-bat{
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.solea-bat img{
  width: 80px;
  transform: rotate(90deg);
}
.solea-bat{
  width: 100%;
}
}

