*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html{
  width: 100%;
  position: relative;
}
body {
  scroll-padding-top: 94px;
  font-family: 'Poppins';
  font-weight: 400;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: none;
}

/* Animation on scroll */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.fade-in.is-visible {
  opacity: 1;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url(../images/background.png);
  background-position: center;
  background-size: cover;
}





.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 80px);
  align-items: center;
}

.hero-content {
  max-width: 600px;
}



.hero-title {
    font-family: 'Poppins';
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 24px 0;
}

.hero-title .highlight {
  background: linear-gradient(135deg, #29abe2 0%, #0071bc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .dark {
  color: #1f2937;
}

.hero-description {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.7;
  color: #4b5563;
  margin: 0 0 32px 0;
  max-width: 540px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #29abe2 0%, #0071bc 100%);
  color: white;
  text-decoration: none;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.5s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  border-radius: 6px;
}

.hero-cta:hover {
  background: linear-gradient(135deg, #228dbb 0%, #0064a7 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
   transition: all 0.5s ease;
}

.hero-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.hero-cta:hover svg {
  transform: translateX(4px);
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(16, 42, 137, 0.15));
  animation: heroImageFloat 6s ease-in-out infinite;
}



/* Responsive */
@media (max-width: 1500px) {
  .hero-section {
    padding: 120px 50px;
  }
}
@media (max-width: 1124px) {
  .hero-container {
    gap: 10px;
      grid-template-columns: 1fr 0.8fr;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 0px 50px;
      min-height: 100vh;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-cta {
    display: inline-flex;
  }

  .hero-image-wrapper {
    display: none;
  }

}

@media (max-width: 480px) {
  .hero-section {
    padding: 80px 20px 40px;
  }

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

  .hero-image {
    max-width: 300px;
  }
}

/* À Propos Section */
.about-section {
  width: 100%;
  padding: 80px 50px;
  background-color: #f5f5f5;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 80px);
  align-items: center;
}

.about-content {
  max-width: 600px;
}

.about-title {
  font-family: 'Poppins';
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 24px 0;
  color: #1f2937;
}

.about-text {
  font-family: 'Poppins';
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  font-weight: 400;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}

.about-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  object-fit: cover;
}
.about-image:hover{
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 1124px) {
  .about-container {
    gap: 30px;
    grid-template-columns: 1fr 0.9fr;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 30px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-title {
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .about-image-wrapper {
    order: -1;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 40px 20px;
  }

  .about-title {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .about-text {
    font-size: 0.95rem;
  }

  .about-image {
    max-width: 100%;
  }
}

/* Services Section */
.services-section {
  width: 100%;
  padding: 80px 50px;
  background-color: #ffffff;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
}

.services-title {
  font-family: 'Poppins';
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 50px 0;
  color: #1f2937;
  text-align: left;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: transparent;
  border: 3px solid #CFFDF7;
  border-radius: 16px;
  padding: 0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #CFFDF7;
  padding: 25px 30px;
  height: 120px;
}

.service-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.service-card-title {
  font-family: 'Poppins';
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1f2937;
  margin: 0;
  text-transform: uppercase;
}

.service-description {
  font-family: 'Poppins';
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 400;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
  padding: 30px;
  min-height: 140px;
  display: flex;
  align-items: center;
}

/* Responsive */
@media (max-width: 1324px) {
  .service-card-title {
  font-size: 1.1rem;

}

}
@media (max-width: 1024px) {
  .service-card-title {
  font-size: 1.1rem;

}
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
    .service-card-title {
  font-size: 1.4rem;

}
  .services-section {
    padding: 60px 30px;
  }

  .services-title {
    text-align: center;
    margin-bottom: 40px;
  }

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

  .service-header {
    height: 120px;
  }

  .service-icon {
    width: 70px;
    height: 70px;
  }

  .service-description {
    min-height: 120px;
    padding: 25px;
  }
}

@media (max-width: 480px) {
     .service-card-title {
  font-size: 1.1rem;

}
  .services-section {
    padding: 40px 20px;
  }

  .service-header {
    gap: 12px;
    height: 100px;
    padding: 20px;
  }

  .service-icon {
    width: 60px;
    height: 60px;
  }

  .service-description {
    min-height: 100px;
    padding: 20px;
  }
}
