/********** CSS **********/
:root {
    --primary: #eab2ff;
    --secondary: #bc99c9;
    --light: #F5F5F5;
    --dark: #14141F;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*search*/

/* Container de la barre de recherche */
.search-container {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1); 
  border-radius: 25px;
  padding: 5px 12px;
  border: 1px solid rgba(55, 54, 54, 0.3);
  backdrop-filter: blur(6px); /* effet de flou (glassmorphism) */
  max-width: 200px;
  transition: box-shadow 0.3s ease;
  height: 40px; 
  margin-right: 20px;
}

.search-container:hover {
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

/* Champ de texte input */
.search-input {
  border: none;
  outline: none;
  flex: 1;
  padding: 0px 0px;
  font-size: 14px;
  color: rgb(21, 21, 21);
  background: transparent;
}

/* Placeholder */
.search-input::placeholder {
  color: rgba(8, 8, 8, 0.6);
}

/* Icône à gauche dans la barre */
.search-button {
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgb(75, 87, 107);
  font-size: 16px;
  padding: 0;
  display: flex;
  align-items: center;
  margin-right: 25px;
}




/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}

.img-fluid {
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.missvisi {
    margin-left: 120px;
  
  }

/* Style général */
.missvis {
  margin-left: 70px;
}

.font {
  max-width: 400px;
  margin-bottom: -40px;
}

.font p {
  font-weight: normal;
  font-size: 15px;
  margin-top: 20px;
}

.font h3 {
  font-weight: normal;
}

/* Responsive pour petits écrans (≤ 768px) */
@media (max-width: 768px) {
  .missvis {
    margin-left: 0; /* Réinitialise la marge sur mobile */
  }

  .font {
    max-width: 100%;
    margin-bottom: 20px;
    text-align: center; 
  }

  .font p {
    margin-top: 10px;
  }

  .missvis .d-flex {
    flex-direction: column;
    align-items: center; /* Centre le contenu horizontalement */
    text-align: center;  /* Centre le texte */
  }

  .missvis img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-left: -10px;
    display: block;
    margin-bottom: 20px;
  }
}

/* Responsive pour petits écrans (≤ 768px) */
@media (max-width: 768px) {
  .missvisi {
    margin-left: 0; 
  }

  .font {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .font p {
    margin-top: 10px;
  }

}

/*actualité*/

.blog-section {
  display: flex;
  justify-content: center;  /* centre les cartes */
  gap: 40px;
  padding: 40px 20px; 
  max-width: 1200px; 
  margin: auto; /* centre horizontalement */
}


.blog-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 33%;
  min-width: 390px;
  position: relative;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 260px;
  display: block;
  border-radius: 10px;
}

.blog-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f7f1f1;
  border-radius: 6px;
  text-align: center;
  padding: 5px 10px;
  font-weight: bold;
  color: #eb63c2;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  width: 45px;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.blog-date span {
  font-size: 18px;
  display: block;
  color: #333;
}

.blog-date small {
  font-size: 12px;
  text-transform: uppercase;
}

.blog-content {
  padding: 25px;
}

.blog-meta {
  font-size: 14px;
  color: #888;
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.blog-meta i {
  color: #bc99c9;
  margin-right: 4px;
}

.blog-text {
  color: #153d67;
  line-height: 1.6;
  font-size: 16px;
}

@media (max-width: 480px) {
  .blog-section {
    flex-direction: column; /* empiler verticalement */
    padding: 20px 10px;
    gap: 20px;
    align-items: center; 
  }

  .blog-card {
    width: 100%;
    min-width: auto;
  }

  .blog-card img {
    height: 180px;
  }

  .blog-content {
    padding: 15px;
  }
}
/*end actualite*/

/*
---------------------------------------------
details actualités page
---------------------------------------------
*/

.blog-item {
    background: #f1f1f1;
    padding: 20px;
}
.image-blog img{
	padding: 0 !important;
	width: 100%;
	margin: 0 !important;
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	-moz-opacity: 1;
	-khtml-opacity: 1;
	-webkit-transition: all 150ms ease-in-out;
	-moz-transition: all 150ms ease-in-out;
	-o-transition: all 150ms ease-in-out;
	-ms-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}
.image-blog img:hover{
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	-moz-opacity: 0.8;
	-khtml-opacity: 0.8;
	opacity: 0.8;
}
.blog-item .meta-info-blog{
	margin-top: 25px;
	padding: 0;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 300;
}

.meta-info-blog > span {
    display: inline-block;
    padding-right: 14px;
    color: #777;
}
.meta-info-blog > span > a {
	color: #eea412;
}
.meta-info-blog > span > a:hover {
	color: #4babb1;
}
.blog-title > h2{
	margin: 15px 0;
	padding: 0px;
}
.blog-title a {
    font-size: 18px;
    line-height: 25px;
    font-weight: 500;
    color: #555;
    text-transform: capitalize;
}
.blog-button .hover-btn-new{
	line-height: 35px;
}
.blog-button a.hover-btn-new::before, .blog-button a.hover-btn-new::after {
    background: #bc99c9;
    content: '';
    position: absolute;
    z-index: 1;
}
.blog-button a.hover-btn-new::after {
    background: #333333 !important;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}
.blog-button a.hover-btn-new span {
    position: relative;
    z-index: 2;
    color: #fff;
}
.blog-button a.hover-btn-new:hover span {
    color: #333333;
}
.blog-button a.hover-btn-new::before {
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}
.blog-button a.hover-btn-new:hover::after {
    height: 0;
    left: 50%;
    top: 50%;
    width: 0;
}
.blog-button a.hover-btn-new::after {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}


.post-content .post-date{
	display: inline-block;
	float: right;
}
.post-content .post-date span{
	float: left;
}
.post-content .post-date .day{
	background: #bc99c9;
	color: #FFFFFF;
	font-size: 22px;
	font-weight: 600;
	padding: 0px 10px;
}
.post-content .post-date .month{
	background: #6d6d6d;
	color: #FFFFFF;
	padding: 7px 10px;
}
blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #ffffff;
}
blockquote.default {
    border-color: #bc99c9;
    color: #666;
    background: #ffffff;
    font-size: inherit;
}

.right-single .widget-search{
	margin-bottom: 30px;
	position: relative;
	display: inline-block;
	width: 100%;
}
#site-searchform {
  display: flex;
  align-items: center;
  width: 100%;
}

#site-searchform .form-control {
  border: 1px solid #eee;
  background-color: #fff;
  width: 82%;
  height: 41px;
  padding: 5px 10px;
  color: #999;
  border-radius: 0;
  font-size: 17px;
}

#site-searchform #searchsubmit {
  width: 16%;
  height: 41px;
  background: #bc99c9;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
  color: white;
  font-size: 16px;
}

/* recherche dans la page*/
.highlight {
  background-color: #e0c8da; 
  padding: 0 2px;
  border-radius: 2px;
}

#site-searchform #searchsubmit:hover {
  background-color: #bc99c9;
}

.widget-categories{
	margin-bottom: 30px;
}
.widget-categories .widget-title{
	font-size: 18px;
	font-weight: 400;
	padding: 0px;
	margin-bottom: 15px;
	border-right: 3px solid #bc99c9;
}
.widget-categories ul{
	list-style: none;
	margin: 0px;
	padding: 0px;
}
.widget-categories ul li{
	border-bottom: 1px solid #f2f2f2;
	font-size: 12px;
	line-height: 20px;
	padding: 8px 2px 8px 12px;
}
.widget-categories ul li a{
	color: #777;
	font-size: 13px;
}
.widget-categories ul li a:hover{
	color: #bc99c9;
}
.widget-tags .widget-title{
	font-size: 18px;
	font-weight: 400;
	padding: 0px;
	margin-bottom: 15px;
	border-right: 3px solid #bc99c9;
}
.widget-tags .tags{
	list-style: none;
	margin: 0px;
	padding: 0px;
}
.tags li {
    float: left;
    padding: 0px;
    margin: 0px 5px 5px 0px;
    list-style-type: none;
    line-height: 25px;
    border: 1px solid #bc99c9;
    color: #212121;
	  text-transform: capitalize;
    float: left;
    font-size: 12px;
    padding: 3px 8px;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.tags li:hover {
	border-color: #bc99c9;
	background: #bc99c9;
	color: #ffffff;
}

.blog-link {
  text-decoration: none;
  color: inherit;
  display: block;
}



/* les images des partenaires */
.partnership-images {
  display: flex;
  justify-content: center;
  gap: 40px; /* Espace entre les images */
  flex-wrap: wrap; /* à la ligne */
}

/* Style pour chaque image */
.partner-img {
  width: 140px; 
  height: 120px;
  border-radius: 4px;
  transition: transform 0.3s ease-in-out; /* Effet lors du survol */
}

.partner-img:hover {
  transform: scale(1.1); /* Agrandissement de l'image au survol */
}

/*** Navbar ***/

/* Logo normal */
.navbar-light .navbar-brand img {
    height: 60px;
    width: auto;
    transition: .5s;
    filter: drop-shadow(0 0 4px rgba(90, 89, 89, 0.57));
    
}

/* Logo en mode sticky (au scroll) */
.sticky-top.navbar-light .navbar-brand img {
    height: 60px;
    filter: none;
}


.navbar-light .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 10px 0;
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 8px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}


/* Positionne le sous-menu */
.has-sub {
  position: relative;
}


/* Sous-menu masqué par défaut */
.has-sub .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  width: 240px;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease-in-out;
  z-index: 999;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Affichage du menu au survol */
.has-sub:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Style des éléments du sous-menu */
.has-sub .sub-menu li a {
  display: block;
  padding: 12px 20px;
  color: #2a2a2a !important;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

/* Effet au survol des liens */
.has-sub .sub-menu li a:hover {
  /* background-color: #f8f9fa; */
  color: var(--primary) !important;
  padding-left: 25px;
}

/* Supprimer bordure pour le dernier */
.has-sub .sub-menu li:last-child a {
  border-bottom: none;
}



@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}


/*** Hero Header ***/
.hero-header {
    position: relative;
    background: url(../img/agent.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 600px;
    overflow: hidden;
}

.hero-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(128, 128, 128, 0.4);/* voile noire */
    z-index: 1;
}
/*
---------------------------------------------
page Etude
---------------------------------------------
*/

.meeting-single-item .down-content {
  background-color: #fff;
  padding: 40px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.meeting-single-item .down-content h4 {
  font-size: 32px;
  color: #1f272b;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.meeting-single-item .down-content h6 {
  font-size: 14px;
  color: #ec6dd5;
  font-weight: normal;
}


.meeting-single-item .down-content h5 {
  font-size: 26px;
  color: #1f272b;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 15px;
}

.meeting-single-item .down-content p {
  color: #1f272b;
  font-size: 18px;
}

.meeting-single-item .down-content p.description {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #eee;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
}



/* visa */
#visa .bg-light-row {
    background-color: #f2f2f2;
    padding: 20px 0;           
    border-radius: 10px;       
}


/* Limite la largeur des colonnes */
#visa .row > div {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* Colonnes de contenu plus étroites */
#visa .row > .col-xl-6,
#visa .row > .col-lg-6 {
    max-width: 80%;
    padding: 20px; 
}

/* Sous-titres */
#visa h2 {
    font-size: 35px;
    color: #0056b3;
    margin-bottom: 25px; 
}

#visa h4 {
    font-size: 20px;
    color: #6c757d;
    margin-bottom: 20px; 
}

/* Texte */
#visa p {
    font-size: 16px;
    color: #555;
    margin-bottom: 24px; 
}

/* Image */
#visa .img-fluid {
    width: 100%;
    height: 340px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease-in-out;
    display: block;
    margin: 20px auto; 
}

#visa .img-fluid:hover {
    transform: scale(1.03);
}

/* Espacement entre sections */
#visa .row {
    margin-bottom: 60px; 
}

.btn-fixed-rdv {
  position: fixed;
  top: 50%;
  right: 0; /* le bouton soit visible */
  transform: translateY(-50%);
  background-color: #d8b1de;
  color: #fff;
  padding: 8px 14px;
  border-radius: 30px 0 0 30px;
  font-weight: bold;
  text-decoration: none;
  z-index: 10000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  font-size: 14px;
}

.btn-fixed-rdv:hover {
  color: #ffffff !important;
}




/* Meeting item column */
.templatemo-item-col {
	width: 31%;
}

@media (max-width: 992px) {
	.templatemo-item-col {
		width: 45%;
	}
}

@media (max-width: 767px) {
	.templatemo-item-col {
		width: 100%;
	}
}


.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Destination ***/
.destination img {
    transition: .5s;
}

.destination a:hover img {
    transform: scale(1.1);
}


/*** Package ***/
.package-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.package-item img {
    transition: .5s;
    width: 420PX;
    height: 260px;
}

.package-item:hover img {
    transform: scale(1.1);
}


/*** Booking ***/
.booking {
    background: linear-gradient(rgba(54, 68, 102, 0.7), rgba(15, 23, 43, .7)), url(../img/consultation.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.section-padding {
    padding-top: 40px; 
  }

.section-paddingg {
    padding-top: 80px; 
  }  

.section-padding-conn {
    padding-top: 60px; 
  }

.section-padding-con {
    padding-top: 120px; 
  }  

 /* Force la même hauteur que form-floating */
.intl-tel-input-custom,
.iti input {
  height: calc(3.5rem + 2px); /* même que .form-floating .form-control */
  padding-top: 1rem;
  padding-bottom: 0.8rem;
  background-color: transparent;
}


/* Ajuster le container de intl-tel-input */
.iti {
  width: 100%;
}
 

/* login */  

.cascading-right {
      margin-right: -50px;
    }

    @media (max-width: 991.98px) {
      .cascading-right {
        margin-right: 0;
      }
    }  


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 20px;
    border-bottom: 1px solid var(--primary);
}

.team-item .btn:hover {
    background: var(--primary);
    color: #FFFFFF;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

/*** card cuisinier **/
.offer-card {
  max-width: 1100px; 
  margin: 0 auto;   
  transition: all 0.3s ease;
}

.offer-card:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.offer-card i {
  margin-right: 30px;
}

/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* details offre */

.job-section {
  padding: 40px 0;
}

.job-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.job-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.job-col-sidebar {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

.job-col-content {
  flex: 0 0 66.6666%;
  max-width: 66.6666%;
}

.job-card {
  background-color: white;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
}

.job-card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #0d3b66;
}

.job-map-iframe {
  width: 100%;
  max-height: 150px; 
  border-radius: 8px;
  border: none;
  margin-bottom: 16px;
}

.job-icon-green {
  color: #2ea44f;
  font-weight: bold;
}

.job-map-link {
  color: #1d4ed8;
  margin-top: 10px;
}

.job-social-icons {
  font-size: 20px;
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
}

.job-date-posted {
  font-size: 14px;
  color: #888;
  margin-top: 8px;
}

.job-title {
  font-size: 26px;
  font-weight: bold;
  color: #0d3b66;
  margin-bottom: 16px;
}

.job-subtitle {
  font-size: 20px;
  font-weight: bold;
  margin: 16px 0 8px;
}

.job-benefits-list {
  margin-top: 10px;
  margin-left: 20px;
  padding-left: 0;
}

.job-benefits-list li {
  margin-bottom: 6px;
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #bc99c9; 
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s;
  padding: 5px 5px;
}

.icon-circle:hover {
  background: #bc99c9;
  color: #fff;
}

select.form-control.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff;
  color: #999;
  padding: 15px 15px 15px;
}

select.form-control.custom-select:invalid {
  color: #999;
}





