/*
    Author  : Ben Musampa
    For     : Kimyah tech 
    Version : 1.0
    Year    : 2024
*/

/*--------------------------------------------------------
  # Fonts 
----------------------------------------------------------*/
:root {
  --default-font: "Poppins",  sans-serif, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Poppins",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}
/*--------------------------------------------------------
  # root Color
---------------------------------------------------------*/
:root { 
  --background-color: #ffffff; 
  --default-color: #212529; 
  --heading-color: #2d465e;
  --red-color: #f10410; 
  --accent-color: #8cc63f; 
  --surface-color: #ffffff; 
  --contrast-color: #ffffff;
}

.light-background {
  --background-color: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #8cc63f;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/*------------------------------------------------------------ 
  # Smooth scroll 
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, #fff, transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  text-transform: capitalize;
}
/*--------------------------------------------------------------
# Navbar Style
--------------------------------------------------------------*/
.navbar{
  box-shadow: 0 3px 15px rgba(0, 0, 0, .2);
}
.navbar-brand img {
  height: 49px;
}
.navbar-nav .nav-link {
  color: #333; 
  font-size: 16px;
  padding: 10px 15px; 
  transition: color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #f10410;
}

@keyframes bgColorChange {
  0% { color: #333; }
  100% { color: #f10410; }
}

.navbar-nav .nav-link:hover {
  animation: bgColorChange 0.3s ease-in-out;
}
.dropdown-item i {
  margin-right: 8px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 1px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #f10410;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  animation: bounce 1.7s ease-in-out infinite alternate;
}
@keyframes bounce {
  to { transform: scale(1.2); }
}
.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  border: 1px solid #f10410;
  border-color: #f10410;
  background-color: color-mix(in srgb, #f10410, transparent 10%);
  color: #333;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  .navbar-collapse {
    flex-wrap: wrap; 
  }
  .navbar-nav .nav-link {
    text-align: center; 
    padding: 10px; 
  }

}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 50px;
  overflow: clip;
}
.section .section-title h2 {
  color: var(--accent-color);
  font-size: 32px;
}
.section .section-title p{
  font-size: 26px;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}
/*--------------------------------------------------------------
# centers
--------------------------------------------------------------*/
.centers {
  justify-content: center;
  align-items: center;
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
  font-family: var(--heading-font);
  font-size: 40px;
}
main {
  margin-top: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: calc(110vh - 110px);
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
  z-index: 1;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}
.hero .carousel-container p {
  text-transform: capitalize;
}
.carousel-container .btn-danger {
  background-color: transparent; /* Pas de fond par défaut */
  border: 1px solid #8cc63f; /* Contour vert */
  color: #8cc63f; /* Texte vert */
  border-radius: 25px; /* Arrondi conséquent */
  padding: 8px 16px; /* Espacement confortable */
  font-weight: bold;
  transition: all 0.3s ease-in-out; /* Transition fluide */
}

.carousel-container .btn-danger:hover {
  background-color: #8cc63f; /* Fond vert au survol */
  color: white; /* Texte blanc */
  box-shadow: 0px 0px 10px rgba(140, 198, 63, 0.5); /* Effet lumineux */
}

.hero .carousel-container button {
  margin: 20px;
  animation: bounce 1.9s ease-in-out infinite alternate;
}
@keyframes bounce {
  to { transform: scale(1.2); }
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 500;
  animation: fadeInDown 1.5s both;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  animation: fadeInUp 1s both 0.2s;
}

@media (min-width: 1024px) {

  .hero h2,
  .hero p {
    max-width: 60%;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes SlideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes SlideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.cc {
  margin: 7px;
}
/*--------------------------------------------------------------
# Hero Section other
--------------------------------------------------------------*/
.hero-team {
  position: relative; 
  height: 45vh;
  background: url("../img/group.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #f9f9f9;
  padding: 15px;
  z-index: 2; 
}

.hero-team::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1; 
}

.hero-team .contents {
  max-width: 600px;
  position: relative;
  z-index: 2;
  padding: 15px;
  border-radius: 10px;

}
.hero-team h2 {
  font-size: 40px;
  color: var(--accent-color);
}
.hero-team p {
  color: white;
  font-size: 16px;
  margin-bottom: 12px;

}
@media (max-width: 768px){
  .hero-team {
    height: 50vh;
  }
  .hero-team h2 {
    font-size: 30px;
  }
  .hero-team .contents {
    padding: 15px;
    font-size: 14px;
  }
}
/*--------------------------------------------------------------
# Hero Section other
--------------------------------------------------------------*/
.hero-services {
  position: relative; 
  height: 45vh;
  background: url("../img/hero_5.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #f9f9f9;
  padding: 15px;
  z-index: 2; 
}

.hero-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1; 
}

.hero-services .contents {
  max-width: 600px;
  position: relative;
  z-index: 2;
  padding: 15px;
  border-radius: 10px;

}
.hero-services h2 {
  font-size: 40px;
  color: var(--accent-color);
}
.hero-services p {
  color: white;
  font-size: 16px;
  margin-bottom: 12px;

}
@media (max-width: 768px){
  .hero-services {
    height: 50vh;
  }
  .hero-services h2 {
    font-size: 30px;
  }
  .hero-services .contents {
    padding: 15px;
    font-size: 14px;
  }
}
/*----------------------------------------------------------
 Who Are We
 -----------------------------------------------------------*/
.presentation {
  justify-content: center;
  align-items: center;
}
.presentation .section-title h2 {
  color: var(--accent-color);
  font-size: 32px;
}
.presentation .section-title p {
  font-size: 26px;
}
.presentation .section-title h3 {
  font-size: 18px;
  color: #6c757d;
}
.presentation .content-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.presentation .content-text p {
  color: #6c757d;
  margin: 0;
  padding: 10px 0;
}
.presentation .row {
  display: flex;
  align-items: stretch;
}
.presentation .content-image {
  justify-content: center;
  align-items: center;
}
.presentation .content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ----------------------------------------------------------
" About us
-------------------------------------------------------------*/

.aboutus {
  justify-content: center;
  align-items: center;
}
.aboutus .section-title h2 {
  color: var(--accent-color);
  font-size: 32px;
  text-transform: capitalize;
}
.aboutus .section-title p{
  font-size: 26px;
  text-transform: capitalize;
}
.aboutus .content-image {
  justify-content: center;
  align-items: center;
  animation: fadeUp 1s both;
}
.aboutus .content img {
  justify-content: center;
  align-items: center;
  width: 90%;
  animation: SlideInRight 1.5s ease-out;

}
.aboutus .content-text {
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1.5s both;
  text-align: center;
}

@media screen and (max-width: 768px){
  .aboutus .content-image{
    margin-bottom: 40px;
    justify-content: center;
    align-items: center;
  }
  .aboutus .content image {
    width: 80%;
  }
}
/*-------------------------------------------------------------
# missions sections
-------------------------------------------------------------*/
.missions{
  justify-content: center;
  align-items: center;
}
.missions .section-title h2{
  color: var (var(--accent-color));
  font-size: 32px;
  text-transform: capitalize;
}

.image-container {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 5px;
}

.shape-green {
  position: absolute;
  width: 100%;
  height: 100%;
  left: -10px;
  top: 10px;
  z-index: 1;
  transform: rotate(-3deg);
  background-color: #8cc63f;
  border-radius: 10px;
}
.styled-image {
  position: relative;
  z-index: 2;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}
/*-------------------------------------------------------------
# 
-------------------------------------------------------------*/

/*-------------------------------------------------------------
# Industries sections
-------------------------------------------------------------*/
.industries-section p {
  font-size: 26px;
  text-align: center;
  margin-bottom: 30px;
}
.industries-list {
  columns: 1;
  column-gap: 20px;
}
@media (min-width: 576px) {
  .industries-list {
    columns: 2;
  }
}
@media (min-width: 768px) {
  .industries-list {
    columns: 3;
  }
}
.industries-list li {
  list-style-type: none;
  background: #ffffff;
  align-items: flex-start;
  margin: 0 0 10px;
  padding: 10px 15px;
  border: 1px solid #dee2e6;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}
.industries-list li .bi {
  color: #8cc63f;
}
.industries-list li:hover {
  transform: translateY(-5px);
}
.industries-list li i {
  margin-right: 9px;
  font-size: 1.25rem;
}
.industries-list li h6 {
  font-size: 14px;
  color: #212529;
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  align-items: center;
  justify-content: center;
}
.services .section-title h2 {
  color: var(--accent-color);
  font-size: 32px;
}
.services .section-title p{
  font-size: 26px;
}
.services .content-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.services .content-text p{
  color: #6c757d;
  margin: 0;
  padding: 10px 0;
}
.services .content-image {
  justify-content: center;
  align-items: center;
}
.services .content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(241, 4, 16, 0.3);
  border-radius: 10px;
}
.service-card {
  display: flex;
  text-align: left;
  border: 1px solid #dee2e6;
  box-shadow: 0 4px 8px rgba(241, 4, 16, 0.3);
  border-radius: 10px;
  margin-bottom: 30px;
  overflow: hidden;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
}
.service-card .img-holder {
  max-width: 200px;
  min-width: 200px;
}
.service-card .img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card .content {
  padding: 30px 20px 30px 30px;
}
.service-card .content .title {
  font-weight: 400;
  font-size: 18px;
  opacity: .8;
}

.service-card .content li {
  font-size: 13px;
  margin: 15px 0 15px !important;
}
.service-card .content i {
  margin: 10px;
}
.service-card .content .bi {
  font-size: 1.4rem;
  color: #8cc63f
}


@media (max-width: 991.98px){
  .service-card {
    flex-direction: column;
    display: flex;
    text-align: left;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
  }
  .service-card .img-holder {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
}
.accordion {
  margin-bottom: 10px;
}
.accordion-button {
  font-size: 16px;
  padding: 15px;
}
/* other service card

/*--------------------------------------------------------------
# What we do
--------------------------------------------------------------*/
.wwdo-title {
  margin-top: 20px;
  justify-content: center;
  align-items: center;
}
.wwdo-title h4 {
  color: var(--accent-color);
  font-size: 32px;
}
.wwdo-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  text-align: center;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: space-between;
}
.wwdo-card:hover{
  transform: translate(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}
.wwdo-card i {
  font-size: 46px;
  color: #8cc63f;
  margin-bottom: 10px;
}
.wwdo-card h4 {
  font-weight: bold;
  margin-bottom: 10px;
  color: #8cc63f;
}
.wwdo-card p{
  color: #555;
  font-size: 15px;
}
/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team-section {
  padding: 60px 0;
}
.team-section .section-title p{
  font-size: 26px;
}
.team-section .section-title h2 {
  color: var(--accent-color);
  font-size: 32px;
}
.card {
  border: none;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  height: 100px;
}

.card-img-top {
  height: 50%;
  overflow: hidden;
}

.card-img-top img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card-body {
  justify-content: center;
  align-items: center;
  height: calc(50% - 00.5rem);
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
}

.card-title {
  font-size: 1.22rem;
  font-weight: bold;
}

.card-text {
  font-size: 1rem;
  color: #6c757d;
}
.card-post{
  font-size: 1rem;
  color: #060606;
  font-weight: bold;
}

.card-img-top img:hover {
  transform: scale(1.1); /* Zoom léger au survol */
}
.social-icons {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.social-icons:hover {
  opacity:1;
  visibility:visible;
  bottom:0px
}

.social-icons li {
  display: inline-block;
}

.social-icons a {
  color: #333;
  font-size: 1.3rem;
  transition: color 0.3s;
  color: #8cc63f;
}

.social-icons a:hover {
  color: #f10410;
}
/* Responsive layout */
@media (max-width: 991px) {
  .col-lg-3 {
    max-width: 50%;
  }
}

@media (max-width: 575px) {
  .col-lg-3 {
    max-width: 100%;
  }
}
/*-------------------------------------------------------------
  # footer
------------------------------------------------------------*/
footer {
  padding-top: 40px;
  position: relative;
  display: flex;
  background-color: #212529;
  background-size: cover;
  height: 370px;
}
.footer-content {
  position: relative;
  z-index: 2;
  color: white;
  width: 100%;
  align-items: center;
}
.footer-content h2{
  font-size: 24px;
  color: white;
  font-weight: bold;
  text-align: center;
}
.footer-content .items {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /*margin-left: 70px; */
}

.footer-content .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-content .logo img {
  max-height: 80px;
}
.footer-content .bi {
  font-size: 1.4rem;
}

.footer-content .contactus {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-content .contactus p{
  color: white;
}
.footer-bottom {
  text-align: center;
}
.footer-bottom p {
  color: white;
  font-size: 16px;
  padding: 30px;
}
.footer-bottom a {
  color: #f10410;
}
.social-icons {
  text-align: center;
  margin-top: 10px;
}
.footer .social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 18px;
  transition: color 0.3s;
}
.footer .social-icons a:hover {
  color: #8cc63f;
}
@media screen and (max-width: 768px){
  .footer {
    height: 500px;
  }
  .footer-content h2{
    font-size: 16px;
    color: white;
  }

  .footer-content .logo img {
    max-height: 70px;
    padding: 5px;
  }
  .footer-content .contactus p{
    font-size: 12px;
  }
  .footer-content .bi {
    font-size: 1rem;
  }
  .footer-content .items li {
    font-size: 14px;
  }
  .footer-bottom p {
    font-size: 12px;
    padding: 5px;
  }
}
/*----------------------------------------------------------
# Bounce effect
-----------------------------------------------------------*/
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

.bounce {
  animation: bounce 2s;
}
/*----------------------------------------------------------
# option card
-----------------------------------------------------------*/
.option-card {
  background: #fff;
  padding: 30px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.option-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.option-card i {
  font-size: 4rem;
  color: #f10410;
  margin-bottom: 15px;
}
.option-card p {
  font-size: 1rem;
  color: #666;
}
/*-------------------------------------------------------------
  # Other sections services
--------------------------------------------------------------*/
.service-sec {
  padding-top: 20px;
  position: relative;
  display: flex;
  background: url('../img/footer.jpg') no-repeat center center fixed;
  background-color: #f10410;
  background-size: cover;
  height: 500px;
  justify-content: center;
  align-items: center;
}
.service-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}
.values-card {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  padding: 10px;
}
@media screen and (max-width: 768px){
  .service-sec {
    height: 900px;
  }
}
.values-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}
.values {
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.values h2 {
  color: #8cc63f;
  font-size: 32px;
  margin-bottom: 10px;
}
.values-card h4 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 7px;
}
.values-card i {
  font-size: 3rem;
  color: #8cc63f;
  margin-bottom: 15px;
}
.values-card p {
  color: #ffffff;
}
.values .section-title h2 {
  color: white;
  font-size: 32px;
  text-transform: capitalize;
}
.values .section-title p{
  font-size: 18px;
}

/*----------------------------------------------------------
# renewable section
-----------------------------------------------------------*/
.renewable {
  padding-top: 20px;
  position: relative;
  display: flex;
  background: url('../img/IMG_7279.JPG') no-repeat center center fixed;
  background-size: cover;
  height: 400px;
  justify-content: center;
  align-items: center;
}
.renewable::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}
@media screen and (max-width: 768px){
  .renewable {
    height: 900px;
  }
}
.sas-card {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  text-align: justify;
}
.sas-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}
.sas {
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.sas h2 {
  color: #8cc63f;
  font-size: 29px;
  margin-bottom: 7px;
}
.sas p {
  color: #ffffff;
  font-size: 16px;
}

.sas-card h4 {
  font-size: 1.3rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 7px;
}
.sas-card i {
  font-size: 2.5rem;
  color: #8cc63f;
  margin-bottom: 10px;
}
.sas-card p {
  color: #ffffff;
  font-size: 13px;
}
.sas .section-title h2 {
  color: white;
  font-size: 32px;
  text-transform: capitalize;
  margin-bottom: 7px;
}
.sas .section-title p{
  font-size: 18px;
}

/*----------------------------------------------------------
# renewable section
-----------------------------------------------------------*/

.feature {
  margin-bottom: 30px; }
  .feature .icon {
    display: inline-block;
    position: relative;
    margin-bottom: 20px; }
    .feature .icon:before {
      content: "";
      width: 33px;
      height: 33px;
      position: absolute;
      background: rgba(59, 93, 80, 0.2);
      border-radius: 50%;
      right: -8px;
      bottom: 0; }
  .feature h3 {
    font-size: 14px;
    color: #2f2f2f; }
  .feature p {
    font-size: 14px;
    line-height: 22px;
    color: #6a6a6a; }
.feature .icon i {
  font-size: 28px;
  color: #8cc63f; }

/*----------------------------------------------------------
# filter section
-----------------------------------------------------------*/
/* Styliser les boutons de filtrage */
.filter-btn {
  border: 2px solid #8cc63f; /* Contour vert */
  color: #8cc63f; /* Texte vert */
  background: transparent; /* Fond transparent */
  padding: 10px 20px;
  border-radius: 25px; /* Arrondi des bords */
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
  margin-bottom: 7px;
}

/* Effet au survol */
.filter-btn:hover {
  background: #8cc63f; /* Fond vert */
  color: white; /* Texte blanc */
}

/* Bouton actif */
.filter-btn.btn-primary {
  background: #8cc63f !important;
  color: white !important;
  border-color: #8cc63f !important;
}


/* Animation pour l'affichage des services */
.services-card {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Afficher uniquement ceux qui sont actifs */
.services-card.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Design des cartes */
.service-box {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.service-box:hover {
  transform: translateY(-5px);
}
