@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --primary: #ef4444;
  --secondary: #111827;
  --text: #898c93df;
  --light-bg: #F8F8F8;
  --white: #FFFFFF;
  --color-text: #000000;
  --testimonial:#bdb9b9c4;
  --from: #b8b8b8ae;
  --bg-from: #eef2f4;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    /* background-color: #111827; */
    color: var(--white);
    line-height: 1.6;
}

.hero {
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(16, 35, 88, 0.6)), url("../images/about.png");
    background-size: cover;
    background-position: center;
    object-fit: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero .fleche {
    font-size: 1.3em;
    font-weight: 400;
}

.breadcrumb {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb a:hover {
    color: var(--text);
}

.breadcrumb .active {
    color: var(--primary);
    /* font-weight: 600; */
}

.abouts {
    background-color: var(--secondary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.image-section {
    flex: 1;
    position: relative;
}

.image-section img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.years-badge {
    position: absolute;
    top: 1rem;
    left: -1rem;
    background-color: var(--primary);
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
}

.badge-content svg {
    margin-bottom: 0.25rem;
}

.years-text {
    font-size: 0.875rem;
}

.service-text {
    font-weight: bold;
}

.text-section {
    flex: 1;
}

.about-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.red-line {
    width: 3rem;
    height: 2px;
    background-color: var(--primary);
}

.about-label span {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
}

.about__title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.text-section .about__subtitle {
    color: var(--text);
    margin-bottom: 1.5rem;
    font-size: 1.02em;
}

.bullet-list {
    list-style: none;
    margin-bottom: 2rem;
}

.bullet-list li {
    display: flex;
    align-items: center;
    color: var(--text);
    margin-bottom: 1rem;
}

.bullet-list li::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--primary);
    border-radius: 50%;
    margin-right: 0.75rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card {
    display: flex;
    gap: 1rem;
}

.icon-box {
    background-color: var(--primary);
    padding: 0.75rem;
    border-radius: 0.5rem;
    height: fit-content;
}

.service-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.service-info p {
    color: var(--text);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}


/* START STATS */

/* Stats Section */


.stats {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: var(--testimonial); */
    position: relative;
    color: var(--white);
    width: 100%;
    height: auto;
    /* padding: .64rem 0; */
    overflow: hidden;
    /* background-image: url('../images/bg-pheader.jpg'); */
    /* background-color: green; */
    /* background-size: cover; */
    /* background-position: center; */
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(68, 109, 136, 0.176) 60%, #fa9e9e2f 50%);
    z-index: 1;
}

.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary);

}

.icon-circle {
    background-color: rgba(206, 97, 97, 0.1);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    /* color: #ef4444; */

}

.stat-item:hover .icon-circle {
    transform: scale(1.1);
    color: var(--primary);

}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);

}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--primary);

}

/* END STATS */


/* START WRAPPER */

.wrapper {
    min-height: 100vh;
    /* background-color: white; */
    position: relative;
  }
  
  /* .wrapper__background-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    opacity: 0.1;
    background-image: url('../images/shape.png');
    background-color: green;
    background-size: cover;
    background-position: center;
  } */
  
  .wrapper__content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
  }
  
  .wrapper__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }
  
  .wrapper__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .wrapper__header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .wrapper__subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text);
  }
  
  .wrapper__title {
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary);
  }
  
  .wrapper__description {
    font-size: 1.02em;
    color: var(--secondary);
    margin-top: 1rem;
  }
  
  .wrapper__features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .wrapper__feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .wrapper__icon {
    background-color: var(--testimonial);
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: var(--primary);
  }
  
  .wrapper__feature-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary);
  }
  
  .wrapper__feature-content p {
    color: var(--text);
  }
  
  .wrapper__image-container {
    height: 500px;
    border-radius: 0.5rem;
    overflow: hidden;
  }
  
  .wrapper__image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @media (max-width: 900px) {
    .wrapper__grid {
        grid-template-columns: 1fr;
      }
  }
  
  @media (min-width: 768px) {
    .container {
      padding: 6rem 1rem;
    }

  
    h1 {
      font-size: 3rem;
    }
  }










/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--testimonial);
    overflow: hidden;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.red-line {
    width: 3rem;
    height: 2px;
    background-color: var(--primary);
}

.section-label span {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #111827;
}

.section-title span {
    color: var(--primary);
}

.testimonials-slider {
    position: relative;
    width: 100%;
    padding: 1rem 0 4em;
    /* padding-bottom: 4rem;
    background-color: #DC2626; */
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.stars {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.testimonial-card p {
    color: var(--text);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h3 {
    font-size: 1.125rem;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--secondary);
    font-size: 0.875rem;
}

.rating {
    margin-left: auto;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.swiper-pagination {
    /* position: relative; */
    position: static !important;
    margin-top: 2rem;
    bottom: 0;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid var(--primary);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* END STARTS */

/* contact */

/* Section Contact */
.contact-section {
    margin-top: 4rem;
  }
  
  .contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }
  
  .contact-card {
    background: var(--white);
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(237, 237, 237, 0.613);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.052);
  }
  
  .contact-icon {
    width: 3rem;
    height: 3rem;
    background: var(--bg-from);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary);
  }
  
  .contact-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    color: var(--secondary);
  }

  .contact-card .mailto-contact a{
    text-decoration: none;
    font-size: 1.1em;
    color: var(--text);
  }

  .contact-card .mailto-contact a:hover {
    color: var(--primary);
  }
  
  .contact-card .tel-contact a {
    text-decoration: none;
    font-size: 1.1em;
    color: var(--text);
  }

  .contact-card .tel-contact a:hover {
    color: var(--primary);
  }
  
  .contact-card p {
    color: var(--text);
    font-size: 0.875rem;
  }
  
  .contact-form {
    padding: 4em;
    border: 1px solid var(--from);
  }
  
  .contact-form h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--color-text);
  }
  
  .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
  }
  
  input, textarea {
    width: 100%;
    padding: 0.75rem;
    border: none;
    /* border-radius: 0.375rem; */
    outline: none;
    background: var(--bg-from);
    font-size: 0.845rem;
  }
  
  textarea {
    height: 150px;
    resize: vertical;
    margin-bottom: 1rem;
  }
  
  .submit-button {
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    /* border-radius: 0.375rem; */
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .submit-button:hover {
    background: #ef4444d8;
  }
  
  @media (min-width: 768px) {
    /* .container {
      padding: 6rem 1rem;
    }
  
    .grid {
      grid-template-columns: 1fr 1fr;
    }
  
    h1 {
      font-size: 3rem;
    } */
  
    .contact-cards {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .form-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }


  /* Footer */

  
/* Footer */
footer {
  background: var(--secondary);
  color: #aaa;
  padding: 80px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.footer-column h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.footer-column p {
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
  .footer-content {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .about-content {
      flex-direction: column;
  }
  
  .about-img-experience {
      right: 0;
  }
}


 /* Start button scroll Up */

 .back-to-top {
  position: fixed;
  bottom: 25px;
  left: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
}




.back-to-top:hover {
  background-color: #ef4444bb;;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top i {
  font-size: 20px;
}

@media (max-width: 768px) {
  .back-to-top {
      width: 40px;
      height: 40px;
      bottom: 20px;
      left: 20px;
  }
  
  .back-to-top i {
      font-size: 16px;
  }
}



/* .footer {
    background: #1A1A1A;
    color: #fff;
    padding: 4rem 0 0;
    position: relative;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
  }
  
  .footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
  }
  
  .footer-brand .logo span {
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .footer-brand p {
    color: #6C757D;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    line-height: 1.6;
  }
  
  .contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  
  .footer h3 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
  }
  
  .footer-links ul,
  .footer-services ul {
    list-style: none;
  }
  
  .footer-links a,
  .footer-services a {
    color: #6C757D;
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 2;
    transition: color 0.2s;
  }
  
  .footer-links a:hover,
  .footer-services a:hover {
    color: #fff;
  }
  
  .instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  
  .instagram-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 0.25rem;
  }
  
  .footer-bottom {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #6C757D;
    font-size: 0.875rem;
  }
  
  .back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #E31E24;
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    z-index: 100;
  }
  
  .back-to-top:hover {
    background: #c91920;
    transform: translateY(-3px);
  }
  
  @media (min-width: 768px) {
    .container {
      padding: 6rem 1rem;
    }
  
    .grid {
      grid-template-columns: 1fr 1fr;
    }
  
    h1 {
      font-size: 3rem;
    }
  
    .contact-cards {
      grid-template-columns: repeat(3, 1fr);
    }
  
    .form-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .footer-grid {
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 2rem;
    }
  } */