*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    scroll-behavior: smooth;
   /* font-family: 'Lato', sans-serif;*/
    font-family: 'Poppins', sans-serif;
}


.logo-wrapper {
  /*width: 45px;
  height: 45px;*/
  background-color: white;
  border-radius: 50%;
  display: flex;
/* align-items: center;
  justify-content: center;*/
  box-shadow: 0 0 8px rgba(0,0,0,0.1); /* Optionnel pour un petit effet */
}


/*
 Navbar Start */
/* Pour les grands écrans uniquement (au-dessus de 768px) */
@media (min-width: 769px) {
    /* Navbar transparente */
    .navbar-transparent {
        background-color: transparent !important;
        box-shadow: none !important;
        opacity: 0.95;
        transition: background-color 0.5s ease, box-shadow 0.5s ease, opacity 0.5s ease;
    }

    /* Navbar visible après défilement */
    .navbar-scrolled {
        background-color: #01257D !important;
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
        opacity: 1;
        transition: background-color 0.5s ease, box-shadow 0.5s ease, opacity 0.5s ease;
    }

    #navbar {
        transition: background-color 0.5s ease, box-shadow 0.5s ease, opacity 0.5s ease;
    }
}

/* Pour les petits écrans */
@media (max-width: 768px) {
    /* Désactive les effets de transparence et de transition sur petits écrans */
    .navbar-transparent {
        background-color: #01257D !important; /* Fond solide */
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1); /* Ombrage */
        opacity: 1 !important; /* Opacité maximale */
        transition: none; /* Désactive la transition */
    }

    .navbar-scrolled {
        background-color: #01257D !important; /* Fond solide */
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1); /* Ombrage */
        opacity: 1; /* Opacité maximale */
        transition: none; /* Désactive la transition */
    }

    #navbar {
        transition: none; /* Désactive la transition */
    }
}

#logo{
    font-size: 36px;
    font-weight: 550;
    color: #4dd0e1;
    text-shadow: 0px 1px 1px;
    margin-bottom: 5px;
    
}
#logo span{
    color: #ffa500;
}
.navbar-toggler span{
    color: #ffa500;
}
.navbar-nav{
    margin-left: 20px;
   
}
.nav-item .nav-link{
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 550;
    color: #4dd0e1;
    letter-spacing: 1px;
    border-radius: 3px;
    transition: 0.5s ease;
}
.nav-item .nav-link:hover{
    background: #ffa500;
    color: white;
}
#navbar form button{
    background: orange;
    color: white;
    border: none;
}


/**/
/* Pour les petits écrans */
@media (max-width: 768px) {


    #logo {
        font-size: 28px; /* Réduit la taille du logo sur petit écran */
    }
    
    #logo span {
        font-size: 30px; /* Réduit la taille du texte du logo */
    }

    .navbar-toggler span {
        color: #ffa500; /* Change la couleur du bouton du menu hamburger */
    }

    .navbar-nav {
        margin-left: 0; /* Supprime la marge à gauche sur petits écrans */
    }

    .nav-item .nav-link {
        font-size: 12px; /* Légèrement plus grand que 10px pour meilleure lisibilité */
        text-align: center; /* Centre les liens de navigation sur les petits écrans */
    }

    .navbar-collapse {
        text-align: center; /* Centre le contenu du menu lorsqu'il est déplié */
    }

    .dropdown-menu {
     
        background-color: white !important;
        color: black;
        position: static;
        transform: none;
        margin-top: 10px; /* petit espace entre bouton et menu */
    
    }

    .navbar-brand img {
        width: 40px;
        height: 40px; /* Ajuste la taille de l'image du logo pour les petits écrans */
    }

    /* Cache certains éléments si nécessaire sur les petits écrans */
    .navbar-nav .nav-item {
        display: inline-block;
        margin-right: 10px;
    }

    /* Améliorer l'espacement du menu hamburger */
    .navbar-toggler {
        margin-left: auto;
    }

    /* Ajuste l'espacement du contenu principal sur petits écrans */
    .container {
        padding: 0 15px; /* Réduit les marges pour une meilleure utilisation de l'espace */
    }
}



/*NUMER*/
/* Barre téléphone juste en dessous de la navbar */
.phone-bar {
    background-color: transparent; /* Invisible au début */
    box-shadow: none;
    opacity: 0; /* Cacher la barre au début */
    position: absolute; /* Fixe la barre juste sous la navbar */
    top: 100%; /* Juste en dessous de la navbar */
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 1029;
    transition: opacity 0.5s ease, background-color 0.5s ease;
}

/* Barre téléphone visible après scroll */
.phone-bar-visible {
    opacity: 1; /* Rendre la barre visible */
    background-color: #fff; /* Fond solide */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1); /* Ajouter une ombre */
}

/* Pour la disposition des éléments dans la barre */
.phone-bar .left, .phone-bar .center, .phone-bar .right {
    flex: 1; /* Chaque élément occupe un espace égal */
    text-align: center; /* Centrer les éléments dans chaque section */
}

.phone-bar .left {
    text-align: left; /* Aligner le numéro à gauche */
}

.phone-bar .center {
    text-align: center; /* Aligner l'email au centre */
}

.phone-bar .right {
    text-align: right; /* Aligner la localisation à droite */
}

/* Version pour petits écrans */
@media (max-width: 768px) {
    .phone-bar {
        flex-direction: column; /* Disposition verticale */
        text-align: center; /* Centrer les éléments sur petits écrans */
        padding: 10px 0; /* Ajuster le padding */
    }

    .phone-bar .left, .phone-bar .center, .phone-bar .right {
        flex: unset; /* Ne pas occuper un espace égal */
        margin-bottom: 8px; /* Espacer les éléments */
        text-align: center; /* Centrer le texte */
    }

    .phone-bar .right {
        text-align: center; /* Centrer la localisation */
    }
}


/*Navbar End */

/* bouton carrousel*/

/* Pour rendre les flèches plus visibles */
.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: #fff; /* Change la couleur de l'icône à noir (ou toute autre couleur) */
    width: 40px; /* Augmente la taille des flèches */
    height: 40px; /* Augmente la taille des flèches */
    border-radius: 50%; /* Arrondit les bords pour un effet circulaire */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Ajoute une ombre portée pour améliorer la visibilité */
    transition: background-color 0.3s ease; /* Transition douce pour l'effet de survol */
}

/* Ajoute un fond coloré au survol des flèches 
.carousel-control-prev:hover, .carousel-control-next:hover {
    background-color: #ff6600; /* Change la couleur de fond au survol */
}
*/
/* Pour s'assurer que les boutons sont bien visibles sur toutes les résolutions */
.carousel-control-prev, .carousel-control-next {
    z-index: 2; /* Assure que les flèches se superposent correctement */
}

/* Optionnel : ajout d'un effet de survol */
.carousel-control-prev:hover .carousel-control-prev-icon, 
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: #ff6600; /* Change la couleur au survol */
}


/**/
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

#customCarousel,
#customCarousel .carousel-item {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-caption {
  text-align: center;
  color: white;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
  padding: 0 15px;
}

.carousel-caption h1 {
  font-size: 3rem;
}

.carousel-caption p {
  font-size: 1.25rem;
  max-width: 700px;
}

/* Ajoute un fallback visuel pour tester si l'image est bien chargée */
.carousel-item img {
  display: none;
}

.carousel-item {
  position: relative;
  background-color: #000; /* En cas d'échec du chargement */
}

.carousel-item::after {

  color: #fff;
  font-size: 2rem;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}



/*about page */
/* Google Fonts applied to body */
body {
  font-family: 'Poppins', sans-serif;
}

/* --- Section About Modern Style --- */

.about-section {
  background-color: #f8f9fa;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.about-section h1 {
  font-family: 'Poppins', sans-serif;
  letter-spacing: -1px;
  font-weight: 600;
}

.text-accent {
  color: #ff7a00;
}

.about-section p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #444;
}

.about-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-img img {
  transition: transform 0.4s ease;
  border-radius: 20px;
  object-fit: cover;
  height: 100%;
}

.about-img:hover img {
  transform: scale(1.03);
}

.img-overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom right, rgba(0,0,0,0.1), rgba(0,0,0,0.05));
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-section h1 {
    font-size: 2rem;
  }

  .about-section p {
    font-size: 1rem;
  }
}


/*about page */



/* Section Packages Start */
.main-txt h1{
    text-align: center;
    margin-top: 30px;
    font-weight: 600;
    text-shadow: 0px 1px 1px black;
}
.main-txt h1 span{
    color: #ffa500;
}

.packages .card{
    border-radius: 5px;
    border: none;
    box-shadow: rgba(0,0,0,0.1) 0px 4px 12px;
}
.packages .card img{
    border-radius: 5px;
}
.packages .card .card-body{
    background: transparent;
}
.packages .card .card-body h3{
    font-size: 25px;
    font-weight: 600;
}
.packages .card .card-body p{
    font-size: 15px;
}
.checked{
    color: #ffa500;
}
.star i{
    font-size: 15px;
}
.packages .card .card-body h6{
    font-size: 20px;
}
.packages .card .card-body a{
    padding: 10px;
    text-decoration: none;
    background: #ffa500;
    color: white;
    border-radius: 5px;
}


/* Section Packages End */

.card textarea:focus,
.card input:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
}


/* Section Services Start */
.service-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
}

.card.animated-card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  background-color: #fff;
}

.card.animated-card:hover {
  transform: translateY(-8px);
}


/* Section Services End */





/* Section Gallary Start */


/* Section Gallary Start 
  .gallary{
    margin-top: 50px;
}
.gallary .card{
    border-radius: 10px;
    box-shadow: rgba(0,0,0,0.1) 0px 4px 12px;
    cursor: pointer;
}
.gallary .card img{
    border-radius: 10px;
    transition: 0.5s;
}
.gallary .card img:hover{
    transform: scale(1.1);
}

*/


/* Section Gallary End */




/* About Start */
.about{
    padding: 50px;
    margin-top: 50px;
    background: #f9f9f9;
}
.about .card{
    border-radius: 10px;
}
.about .card img{
    border-radius: 10px;
}
.about h2{
    font-weight: 600;
    letter-spacing: 1px;
}
.about p{
    font-weight: 500;
}
#about-btn{
    width: 200px;
    height: 50px;
    border: none;
    border-radius: 5px;
    background: #ffa500;
    color: white;
    letter-spacing: 2px;
    font-weight: 550;
    transition: 0.5s ease;
    cursor: pointer;
}
#about-btn:hover{
    width: 170px;
}
@media (max-width:765px){
    .about{
        padding: 0;
    }
}
/* About End */




/* Footer Start */

#footer{
    width: 100%;
    margin-top: 150px;
    text-align: center;
    background: #f9f9f9;
}
#footer h1{
    font-weight: 600;
    padding-top: 30px;
    text-shadow: 0px 0px 1px black;
}
#footer h1 span{
    color: #ffa500;
}
.social-links i{
    padding: 10px;
    border-radius: 5px;
    font-size: 20px;
    background: black;
    color: white;
    margin-left: 10px;
    margin-bottom: 10px;
    transition: 0.5s ease;
    cursor: pointer;
}
.social-links i:hover{
    background: #ffa500;
}

/* Footer End */
#btn-back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
  }

  .fade-in-top {
    opacity: 0;
    transform: translateY(-100px);
    transition: opacity 1.0s ease-out, transform 1.0s ease-out;
}

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


.bounce-in-left {
    opacity: 0;
    transform: translateX(-100%);
    animation: bounceInLeft 1s forwards;
}

.bounce-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    60% {
        opacity: 1;
        transform: translateX(30px);
    }
    80% {
        transform: translateX(-10px);
    }
    100% {
        transform: translateX(0);
    }
}


.animated-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.animated-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
   background: #4dd0e1;
   color: #ffffff;
}

.flipped {
    transform: rotateY(180deg);
}


.img-thumbnail {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


.gallery-image {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


/**/

.profile-circle {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  border: 5px solid #fff;
 
  transition: transform 0.3s ease;
}
.profile-circle:hover {
  transform: scale(1.05);
}
.profile-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  padding: 10px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.profile-circle:hover .info-overlay {
  transform: translateY(0);
}
.profile-circle .info-overlay h5 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}
.profile-circle .info-overlay p {
  font-size: 0.85rem;
  margin: 0 0 8px;
}
.text-pink {
  color: #E1306C;
}
.text-pink:hover {
  color: #c2185b;
}




@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');



p {
    margin: 0px
}


.card .backgroundEffect {
    bottom: 0;
    height: 0px;
    width: 100%
}

.card:hover {
    color: #fff;
    transform: scale(1.025);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 10px
}

.card:hover .backgroundEffect {
    bottom: 0;
    height: 320px;
    width: 100%;
    position: absolute;
    z-index: -1;
    background: #1b9ce3;
    animation: popBackground 0.3s ease-in
}

@keyframes popBackground {
    0% {
        height: 20px;
        border-top-left-radius: 50%;
        border-top-right-radius: 50%
    }

    50% {
        height: 80px;
        border-top-left-radius: 75%;
        border-top-right-radius: 75%
    }

    75% {
        height: 160px;
        border-top-left-radius: 85%;
        border-top-right-radius: 85%
    }

    100% {
        height: 320px;
        border-top-left-radius: 100%;
        border-top-right-radius: 100%
    }
}

.card .pic {
    position: relative
}

.card .pic img {
    width: 100%;
    height: 280px;
    object-fit: cover
}

.card .date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 70px;
    background-color: #ffffff;
    color: white;
    position: absolute;
    bottom: 0px;
    transition: all ease
}

.card .date .day {
    font-size: 14px;
    font-weight: 600
}

.card .date .month,
.card .date .year {
    font-size: 10px
}

.card .text-muted {
    font-size: 12px
}

.card:hover .text-muted {
    color: #fff !important
}

.card .content {
    padding: 0 20px
}

.card .content .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    background-color: #1b9ce3;
    border-radius: 25px;
    font-size: 12px;
    border: none
}

.card:hover .content .btn {
    background: #fff;
    color: #1b9ce3;
    box-shadow: #0000001a 0px 3px 5px
}

.card .content .btn .fas {
    font-size: 10px;
    padding-left: 5px
}

.card .content .foot .admin {
    color: #1b9ce3;
    font-size: 12px
}

.card:hover .content .foot .admin {
    color: #fff
}

.card .content .foot .icon {
    font-size: 12px
}



    /* CSS supplémentaire pour styliser le texte et ajouter des icônes */
    .contact-info .fa-phone, .contact-info .fa-map-marker {
        margin-right: 5px;
    }
    .social-links a {
        color: inherit;
        text-decoration: none;
    }
    .social-links a:hover {
        color: #007bff; /* Couleur de survol */
    }
    
   /* au au */   
   /* ========== Témoignages (carousel) ========== */

.testimonial-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 3.2rem;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: none;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background: linear-gradient(120deg, #b3e5fc, #e1f5fe, #fff);
  opacity: 0.15;
  z-index: 0;
  transform: rotate(10deg);
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 40px rgba(255, 165, 0, 0.2);
}

.testimonial-photo {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin: auto;
  position: relative;
  z-index: 2;
}

.testimonial-text {
  color: #444;
  font-style: italic;
  z-index: 2;
}

.testimonial-name {
  font-weight: 600;
  color: #007bff;
  z-index: 2;
}

