/* Style général */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Zain:wght@200;300;400;700;800;900&display=swap');

body {
    font-family: 'Cairo';
    margin: 0;
    padding: 0;
    direction: rtl; /* Pour le texte en arabe */
    background-image: url(../img/back-page.svg);
    background-color: #c7def5;
    
}
a{
    text-decoration: none;
    color: #fff;
}
/* Header */
.header {
    direction: ltr;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #333;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    height: 50px;
    z-index: 9999;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    
    
}
.heading{
    color: #27398c;
}
.logo img {
    height: 50px;
    border-radius: 50%;
}

/* Navigation */
.nav-bar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    background-color: #333;
}

.nav-bar ul li {
    position: relative;
    padding: 15px 20px;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

.nav-bar ul li:hover {
    background-color: #555;
}

/* Sous-menu */
.nav-bar ul li ul {
    display: none;
    position: absolute;
    right: -80px;
    background-color: #444;
    min-width: 300px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 5px;
    padding: 0;
}

.nav-bar ul li:hover > ul {
    display: block;
}

.nav-bar ul li ul li {
    padding: 10px;
    color: white;
    transition: background 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.nav-bar ul li ul li a{
    text-decoration: none;
    color: #fff;
}
.nav-bar ul li ul li:last-child {
    border-bottom: none;
}

.nav-bar ul li ul li:hover {
    background-color: #666;
}
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
  }

.hero{
    margin-bottom: 80px;
    background-image:
    linear-gradient(to bottom, rgba(3, 12, 71, 0.582), rgba(0, 0, 10, 0.925)),
    url('../img/banner.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;

}
.hero .content-hero{
   transform: translate(-50%,-50%);
   position: absolute;
   left: 50%;
   top: 50%;
   text-align: center;
   line-height: 0.1;
   width: 100%;
}
.content-hero h2{
    color: #ADD6FF;
    font-size: 7.5rem;
    background: -webkit-linear-gradient(#391ed3, #f8f6f6);
    -webkit-background-clip: text;
    
    

}

.content-hero span {
    color: #dddd;
    font-size: 2rem;
    line-height: 0;
    font-weight: 700;
}

.content-hero h2, .content-hero h3 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-in-out forwards;
    
}

.content-hero h3 {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-hero h3 {
    color: #ffff;
    font-size: 2.5rem;
    font-weight: 600;
    width: 90%;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .content-hero h2 {
        font-size: 5rem;
    }
    .content-hero span {
        font-size: 1.8rem;
    }
    .content-hero h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .content-hero h2 {
        font-size: 3.5rem;
    }
    .content-hero span {
        font-size: 1.5rem;
    }
    .content-hero h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .content-hero h2 {
        font-size: 2.5rem;
    }
    .content-hero span {
        font-size: 1.2rem;
    }
    .content-hero h3 {
        font-size: 1rem;
    }
}

.about-section{
    padding: 50px 0;
    width: 90%;
    text-align: center;
    margin: 0 auto;
    background: linear-gradient(to bottom, #f5f5f5, #e8eaf6);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    
   
}
.about-section .heading{
    font-size: 2.2rem;
    color: #27398c;
}
.about-section p{
   
    text-align: left;
    margin: 2rem auto;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.8;
    color: #333;
    max-width: 90%;
    background: rgba(255, 255, 255, 0.6);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-section {
        width: 85%;
        padding: 60px 0;
    }
    
    .about-section .heading {
        font-size: 2rem;
    }

    .about-section p {
        font-size: 1.3rem;
        margin: 1.5rem auto;
    }
}

@media (max-width: 768px) {
    .about-section {
        width: 90%;
        padding: 50px 0;
    }

    .about-section .heading {
        font-size: 1.8rem;
    }

    .about-section p {
        font-size: 1.2rem;
        padding: 10px;
    }
}
.section-services{
    padding: 100px 0;
    width: 100%;
    text-align: center;
   

}
/* Conteneur des boîtes de services */
.section-services .box-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Style des boîtes individuelles */
.section-services .box-services .box {
    width: 320px;
    height: 340px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Effet au survol */
.section-services .box-services .box:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

/* Image dans la boîte */
.box img {
    width: 90%;
    height: 180px;
    border-radius: 12px;
    object-fit: cover;
    margin-top: 15px;
}

/* Contenu de la boîte */
.box .content {
    width: 90%;
    text-align: center;
    padding: 15px 0;
}

/* Titre */
.box .content h3 {
    font-size: 20px;
    font-weight: bold;
    color: #27398c;
    margin-bottom: 10px;
}

/* Texte */
.box .content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .section-services .box-services {
        gap: 15px;
    }
    .section-services .box-services .box {
        width: 280px;
        height: 320px;
    }
    .box img {
        height: 160px;
    }
    .box .content h3 {
        font-size: 18px;
    }
    .box .content p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .section-services {
        padding: 60px 3%;
    }
    .section-services .box-services {
        flex-direction: column;
        align-items: center;
    }
    .section-services .box-services .box {
        width: 90%;
        height: auto;
        padding-bottom: 20px;
    }
    .box img {
        height: 180px;
    }
}

.facbook-section{
    text-align: center;
    padding: 80px 0;
    width: 100%;
  

}
.facbook-section .heading {
    font-size: 2rem;
    color: rgb(24, 24, 243);
    padding-bottom: 20px;
}
.facbook-section .fb-page{
   border-radius: 8px;
   box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

footer {
    position :static;
    bottom: 0;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    width: 100%;
    margin-top: 100px;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
}

.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 10px 0 0;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}






/* CSS */
.button-52 {
    margin-top: 2.2rem;
  font-size: 16px;
  font-weight: 600;
color: #ffff;
  padding: 13px 20px 13px;
  outline: 0;
  border: 1px solid black;
  cursor: pointer;
  position: relative;
  background-color: rgba(0, 0, 0, 0);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  font-family: 'Cairo';
}

.button-52:after {
  content: "";
  background-color: #391ed3;
  width: 100%;
  z-index: -1;
  position: absolute;
  height: 100%;
  top: 7px;
  left: 7px;
  transition: 0.2s;
}

.button-52:hover:after {
  top: 0px;
  left: 0px;
}

@media (min-width: 768px) {
  .button-52 {
    padding: 13px 50px 13px;
  }
}


.hero-services{
    background-image:
    linear-gradient(to bottom, rgba(3, 12, 71, 0.582), rgba(0, 0, 10, 0.925)),
    url('../img/banner.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 50vh;
}

.hero-services .content-hero {
    transform: translate(-50%,-50%);
   position: absolute;
   left: 50%;
   top: 30%;
   text-align: center;

   width: 100%;

}

.hero-services .content-hero h3{
    font-size: 4rem;
}

.lien-section{
    direction: ltr;
    width: 100%;
    height: 100vh;
    padding: 80px 0;
}

.lien-section ul li {
    padding: 35px;

}
.lien-section ul li a {
    text-decoration: none;
    color: #000;
    transition: background-color 0.3s ease; 
    font-size: 23px;
}


.lien-section ul li {
    padding: 35px;
    border: 1px solid transparent; /* Bordure transparente par défaut */
    transition: border-color 0.5s ease; /* Transition douce pour la bordure */
    border-radius: 8px;
}

.lien-section ul li:hover {
    border-color: #222; /* Couleur de bordure au survol */
    background-color: #1280d4;
    color: #fff;
    
}
.slider{
    width: 100%;
    margin: 0 auto;
    padding-bottom: 100px;
}
swiper-container {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
  }

  swiper-slide img {
    display: block;
    width: 100%;
  }

  .section-services-1{
    direction: ltr;
    padding: 20px 0;
    width: 80%;
    margin: 0 auto;
  }
  .section-services-1 .heading {
    text-align: center;
    font-size: 2.5rem;
    color: #391ed3;
    font-weight: 600;
  }
  .section-services-1 h5 {
    font-weight: 700;
    font-size: 1.5rem;
  }
  .section-services-1 h4{
    text-align: center;
    color: red;
    font-size: 1.3rem;
  }

.section-services-1 .text-bleu{
    font-size: 1.3rem;
    text-align: center;
    color: #391ed3;
}
.section-services-1 p {
    font-size: 1.2rem;
}
.img-section{
    width: 80%;
    margin: 0 auto;
}
.img-section .heading-section{
    font-size: 1.2rem;
    color: red;
}



/* Style du conteneur vidéo */
.section-services-1 .video-div {
    background: #f5f5f5;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    direction: rtl;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    max-width: 700px;
}

/* Effet au survol */
.section-services-1 .video-div:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Titre des vidéos */
.section-services-1 .video-div h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

/* Rendre l'iframe responsive */
.section-services-1 .video-div iframe {
    width: 100%;
    height: 350px;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-services-1 .video-div {
        padding: 15px;
        max-width: 95%;
    }

    .section-services-1 .video-div h3 {
        font-size: 18px;
    }

    .section-services-1 .video-div iframe {
        height: 250px;
    }
}




.section-services-1 .content-section span{
   color: red;
   font-size: 2rem;
   padding-left: 5px;
}
.section-services-1 .content-section p{
    font-size: 2rem;
    font-weight: 500;
}


/* Style général de la section */
.section-services-1 .content-section {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-right: 4px solid #007bff; /* Indicateur visuel */
    direction: rtl;
    text-align: right;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Effet au survol */
.section-services-1 .content-section:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Texte des étapes */
.section-services-1 .content-section p {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
}

/* Mise en valeur des titres des étapes */
.section-services-1 .content-section p span {
    font-weight: bold;
    font-size: 20px;
    color: #007bff;
}

/* Style du texte en rouge */
.section-services-1 .red-text {
    font-size: 16px;
    font-weight: bold;
    color: #d9534f;
    background: #ffe6e6;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .content-section {
        padding: 15px;
    }

    .content-section p {
        font-size: 16px;
    }

    .content-section p span {
        font-size: 18px;
    }

    .red-text {
        font-size: 14px;
        padding: 10px;
    }
}



/* Style général de la section */

/* Style du titre */
.section-services-1 .heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #007bff;
    text-align: center;
    margin-bottom: 20px;

}

/* Liste des liens */
.liste-lien ol {
    list-style: none;
    padding: 0;
}

/* Élément de la liste */
.liste-lien ol li {
    background: #fff;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    color: #933938;
    font-size: 1.4rem;
    font-weight: 600;
}

/* Effet au survol */
.liste-lien ol li:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Style des paragraphes */
.liste-lien ol li p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

/* Liens */
.liste-lien ol li p a {
    color: #007bff;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}

.liste-lien ol li p a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .section-services-1 {
        padding: 20px;
    }
    
    .section-services-1 .heading {
        font-size: 22px;
    }
    
    .liste-lien ol li {
        padding: 10px;
    }

    .liste-lien ol li p {
        font-size: 14px;
    }
}


.hero-services-ar{
    background-image:
    linear-gradient(to bottom, rgba(3, 12, 71, 0.582), rgba(4, 4, 5, 0.925)),
    url('../img/black-sep-archive.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 80vh;
    margin-bottom: 50px;
}
.hero-services-ar .content-hero{
    transform: translate(-50%,-50%);
    position: absolute;
    left: 50%;
    top: 50%;
    text-align: center;
    width: 100%;

}

.hero-services-ar .content-hero h3{
    font-size: 4rem;
    width: 70%;
    margin: 0 auto;
}

.section-services-1 .lien-box {
    width: 80%;
    border: 2px solid transparent;
    margin: 0 auto;
    height: 300px;
    border-radius: 6px;
    background-color: #27398c;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    margin-bottom: 100px;
}
.section-services-1 .lien-box ul li {
    list-style: none;
    padding: 20px;
    text-align: center;

}

.section-services-1 .lien-box ul li a {
    text-decoration: underline;
    font-size: 1.6rem;
}

.section-services-1 .lien-box ul li a:hover{
  transition: 0.9s ;
  color: #933938;
}

.container {
    width: 80%;
    margin: auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-top: 20px;
    margin-bottom: 100px;
}

.container h2 {
    color: #193042;
    border-bottom: 2px solid #12192f;
    padding-bottom: 5px;
}

.container p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.container ol {
    padding-right: 20px;
}

.container ol li {
    background: #e9ecef;
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 1.2rem;
    font-weight: 600;
}

.container ol li:hover {
    background: #9ab9cc;
    color: #12192f;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }
}
.container-2 {
    direction: ltr;
    width: 70%;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
    margin-bottom: 100px;
}

.container-2 .archive-news h2 {
    color: #27398c;
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.container-2  .archive-news p {
    line-height: 1.8;
    color: #333;
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .container-2 {
        width: 95%;
    }
}
.container-3 p{
    font-size: 1.6rem;
    width: 90%;
    font-weight: 600;
}

.container-3  .pdf-container {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    padding: 20px;
    margin-bottom: 30px;
   
   
}

.pdf-container iframe  {
    border: 3px solid transparent;
    border-radius: 5px;
    box-shadow: 8.0px 16.0px 16.0px hsla(246, 92%, 38%, 0.25);

    border-radius: 10px;

}

.container-3 {
    width: 90%;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(38, 5, 114, 0.521) 0px 15px 12px;
    margin-bottom: 150px;
}
.hero-services-liv{
    position: relative;
    background-image:
    linear-gradient(to bottom, rgba(3, 12, 71, 0.582), rgba(4, 4, 5, 0.925)),
    url('../img/slider3.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 80vh;
    margin-bottom: 50px;
}
.hero-services-liv .content-hero {
    transform: translate(-50%,-50%);
   position: absolute;
   left: 50%;
   top: 50%;
   text-align: center;
   width: 100%;
   color: #fff;
}
.hero-services-liv .content-hero h2{
    font-size: 5rem;
}

.section-services-4{
    width: 80%;
    padding-right: 35px;
    margin-bottom: 100px;
}

.section-services-4 .h2{
    font-size: 2rem;
    color: #27398c;
    
}
.section-services-4 .p{
    color: #3320e4;
    font-weight: 600;
    font-size: 1.3rem;
}

.article {
    background: #ffffff;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 5px solid #007BFF;
    border-radius: 5px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

.article:hover{
    transition: 0.9s;
    transform: scale(0.9);
}

/* العناوين */
.section-title {
    color: #007BFF;
    font-size: 1.4em;
    margin-bottom: 10px;
}

/* الفقرات */
.paragraph {
    color: #333;
    line-height: 1.8;
    font-size: 1.1em;
}

/* تمييز النص */
.highlight {
    font-weight: bold;
    color: #d9534f;
}



header {
    background-color: #ADD6FF;
    color: #27398c;
    text-align: center;
    padding: 20px;
    font-size: 1.5em;
    width: 80%;
    margin: 0 auto;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;

}

/* Conteneur principal */
main {
    direction: ltr;
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Titres */
main h2 {
    color: #005f8a;
    border-bottom: 2px solid #0077b6;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

/* Liste des bibliothèques */
main section .ul {
    list-style: none;
    padding: 0;
}

main section .ul li {
    background: #e3f2fd;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}

main section  .ul li:hover {
    background: #ADD6FF;
}

/* Liens */
main section .ul li a {
    text-decoration: none;
    color: #0077b6;
    font-weight: bold;
}

main section .ul li a:hover {
    text-decoration: underline;
    color: #005f8a;
}

.service-description {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: right;
    direction: rtl;
}

.service-description h2 {
    color: #05519c;
    border-bottom: 2px solid #300397dd;
    padding-bottom: 5px;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.service-description p {
    color: #000;
    line-height: 1.8;
    font-size: 1.1em;
    margin-bottom: 15px;
}
.testmionnel {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background: #dddd;
    border-radius: 8px;
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
    text-align: center;
    direction: rtl;
}

.testmionnel .heading {
    color: #27398c;
    font-size: 2.2em;
    border-bottom: 2px solid #0077b6;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: inline-block;
}

.box-img-client {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.box-client {
    width: 600px;
    
    border-radius: 10%;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    transition: transform 0.3s ease-in-out;
}

.box-client:hover {
    transform: scale(1.1);
    border-radius: 0;
}

.box-client img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}


/* Fenêtre modale pour afficher l'image agrandie */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 10%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    text-align: center;
    padding-top: 50px;
}

.modal-content {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close:hover {
    color: #f1c40f;
}
/* Style de la section Contact */
.contact-section {
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-section .heading {
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 2px solid #0077b6;
    display: inline-block;
    padding-bottom: 5px;
}

.contact-section h4 {
    font-size: 1.4em;
    color: #34495e;
    margin-bottom: 15px;
}

.contact-info {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1.1em;
    color: #2c3e50;
    line-height: 1.6;
    margin: 5px 0;
}

/* Style de la carte Google Maps */
.maps {
    margin-top: 20px;
}

.maps h5 {
    font-size: 1.3em;
    color: #2c3e50;
    margin-bottom: 10px;
}

.maps iframe {
    width: 100%;
    max-width: 600px;
    height: 400px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.img-container{
    text-align: center;
    display: inline-block;
    cursor: pointer;
}
.img-section .heading-section{
    font-size: 1.5rem;
}
.img-container img {
    width: 100%;
  
    transition: transform 0.3s ease-in-out;
}

.fullscreen-img {
    position: fixed;
    top: 10%;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.fullscreen-img img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.instagram-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    animation: fadeIn 0.4s;
  }
  
  .popup-content {
    position: relative;
    background: linear-gradient(45deg, #405DE6, #3d34bd, #301274);
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    margin: 10% auto;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  }
  
  .popup-header {
    margin-bottom: 25px;
  }
  
  .popup-header i {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  }
  
  .popup-header h2 {
    font-size: 1.8rem;
    margin: 10px 0;
  }
  
  .popup-body p {
    font-size: 1.4rem;
    line-height: 1.5;
    margin: 20px 0;
  }
  
  .benefits {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
  }
  
  .benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .benefit-item i {
    font-size: 1.8rem;
    color: #FFDC80;
  }
  
  .instagram-btn {
    display: inline-block;
    background: white;
    color: #E1306C;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 20px 0;
    border: 2px solid white;
  }
  
  .instagram-btn:hover {
    background: transparent;
    color: white;
  }
  
  .brand {
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-top: 15px;
  }
  
  .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: white;
    transition: 0.3s;
  }
  
  .close-btn:hover {
    color: #FFDC80;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
  }
  
  @media (max-width: 480px) {
    .popup-content {
      padding: 25px;
    }
    
    .popup-header h2 {
      font-size: 1.5rem;
    }
    
    .popup-body p {
      font-size: 1.1rem;
    }
  }


  /* Responsive */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    padding: 15px;
    color: #fff;
}

@media (max-width: 768px) {
    .header {
        position: relative;
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 10px;
    }

    .hamburger {
        display: block;
        z-index: 1000;
    }

    .nav-bar {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #333;
        padding: 20px 0;
    }

    .nav-bar.active {
        display: block;
    }

    .nav-bar ul {
        flex-direction: column;
    }

    .nav-bar ul li {
        padding: 15px;
        position: relative;
    }

    .nav-bar ul li ul {
        display: none;
        background: #444;
        position: static;
        padding-left: 20px;
    }

    .nav-bar ul li ul.active {
        display: block;
    }
}


.whatsapp-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    animation: slideIn 0.5s ease-out;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-link:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.whatsapp-icon {
    width: 38px;
    height: 38px;
    fill: white;
}

@keyframes slideIn {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Optional text bubble */
.whatsapp-text {
    position: absolute;
    right: 80px;
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.whatsapp-link:hover .whatsapp-text {
    opacity: 1;
}
/* Responsive styles */
@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 20px;
        left: 20px;
    }

    .whatsapp-link {
        width: 56px;
        height: 56px;
    }

    .whatsapp-icon {
        width: 32px;
        height: 32px;
    }

    .whatsapp-text {
        left: 70px;
        font-size: 14px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .whatsapp-btn {
        bottom: 15px;
        left: 15px;
    }

    .whatsapp-link {
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }

    .whatsapp-text {
        left: 65px;
        font-size: 12px;
        padding: 5px 10px;
    }
}


