.at-navbar {
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 2px 0;
}

/* Liens */
.at-navbar .nav-link {
    color: #333;
    font-weight: 500;
    padding: 0 15px;
    font-size: 15px;
}

/* Hover */
.at-navbar .nav-link:hover {
    color: #0072bc;
}
@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
/* Dropdown au hover */
.navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Animation légère */
.dropdown-menu {
    transition: all 0.3s ease;
}

/* Effet fluide */
.navbar .dropdown-menu {
    opacity: 0;
    visibility: hidden;
}

.navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

/*  carousel      */

.carousel-item {
	height: 80vh;
	min-height: 400px;

}

.bg-1 {
	background-image: url(images/image1.jpg);
}
.bg-2 {
	background-image: url(images/vacances2026.jpg);
}
.bg-3 {
	background-image: url(img/3.jpg);
}
.bg-1, .bg-2, .bg-3 {
    
   	-webkit-background-size: cover;
	background-size: cover;
}
.carousel-caption {
	bottom: 120px;
	z-index: 2;
	position: absolute;
	z-index: 5;
	animation: none !important;
	transform: none !important;
	opacity: 1 !important;
}
.carousel-caption h5 {
	font-size: 85px;
	text-transform: capitalize;
	letter-spacing: 2px;
	margin-top: 25px;
	font-family: 'Moon Dance', cursive;
}
.carousel-caption p {
	width: 60%;
	margin: auto;
	font-size: 18px;
	line-height: 1.9;
}
.carousel-caption a {
	text-transform: uppercase;
	text-decoration: none;
	padding: 5px 20px;
	display: inline-block;
	color: #fff;
	margin-top: 15px;
	border-radius: 5px;
}
.carousel-inner:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 1;
}
.carousel-indicators {
	bottom: 65px;
}
.carousel-indicators button {
	width: 100px !important;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.navbar-nav {
		text-align: center;
	}
	.navbar-collapse {
		background: #fff;
	}
	.navbar-collapse .nav-item .nav-link {
		color: #000;
	}
	.carousel-caption {
		bottom: 350px;
	}
	.carousel-caption h5 {
		font-size: 65px;
	}
	.carousel-caption p {
		font-size: 18px;
		width: 100%;
	}
}
@media only screen and (max-width: 767px) {
	.navbar-nav {
		text-align: center;
	}
	.navbar-collapse .nav-item .nav-link {
		color: #000;
	}
	.carousel-caption {
		bottom: 165px;
	}
	.carousel-caption h5 {
		font-size: 25px;
	}
	.carousel-caption p {
		font-size: 12px;
		width: 100%;
	}
	.carousel-caption a {
		padding: 10px 15px;
		font-size: 15px;
	}
	.navbar-collapse {
		background: #fff;
	}
}

.thumb-item {
    overflow: hidden;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.thumb-item img {
    transition: transform 0.3s ease;
}

/* Effet au survol */
.thumb-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}


.particle {
	position: absolute;
	width: 6px;
	height: 6px;
	background: rgba(255,255,255,0.7);
	border-radius: 50%;
	animation: particleMove 8s linear infinite;
}

@keyframes particleMove {
	from {
		transform: translateY(0);
		opacity: 1;
	}
	to {
		transform: translateY(-200px);
		opacity: 0;
	}
}

.floating-img {
	position: absolute;
	width: 600px;
	height: 600px;
	background-size: contain;
	background-repeat: no-repeat;
	animation: float 6s ease-in-out infinite;
	z-index: 3;
}

.img1 {
	top: 9%;
	left: 1%;
	background-image: url(images/image6.png);
}

.img2 {
	top: 9%;
	left: 75%;
	background-image: url(images/image6-1.png);
	animation-delay: 2s;
}

@keyframes float {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-20px);
	}
	100% {
		transform: translateY(0);
	}
}
.carousel-item img {
	animation: zoomInSlow 12s ease-in-out infinite;
}

@keyframes zoomInSlow {
	0% { transform: scale(1); }
	50% { transform: scale(1.08); }
	100% { transform: scale(1); }
}
.news-section {
    background: #f8f9fa;
}

/* Titre */
.section-title h2 {
    font-size: 22px;
    font-weight: 600;
    border-left: 4px solid #0072bc;
    padding-left: 12px;
}

/* Carte news */
.news-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.news-content {
    padding: 15px;
}

.news-date {
    font-size: 12px;
    color: #777;
}

.news-content h5 {
    font-size: 15px;
    margin: 10px 0;
    color: #333;
}

.news-link {
    font-size: 14px;
    color: #0072bc;
    text-decoration: none;
}

.news-link:hover {
    text-decoration: underline;
}
section {
  position: relative;
  padding: 80px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
}

.news-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.top-actions {
  position: relative;
}

.btn-login {
  border-radius: 30px;
  padding: 8px 18px;
  font-weight: 500;
}

.lang-switch .btn {
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.page-banner {
    background: url('../images/banner.jpg') center/cover no-repeat;
    height: 200px;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* HEADER */
.top-header {
  text-align: center;
  padding: 20px;
  background: #fff;
}

/* LOGO ANIMATION */
.logo-anim {
  width: 160px;
  opacity: 0;
  transform: translateY(-10px) scale(0.9);
  animation: logoIn 1s ease forwards;
}
.logo-anim {
  display: inline-block;
  
}

@keyframes logoIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* 2 COLONNES */
.content {
  display: flex;
  min-height: 80vh;
}

/* LEFT */
.left-col {
  flex: 1;
  padding: 30px;
  background: #f5f5f5;
}

/* RIGHT */
.right-col {
  flex: 1;
  padding: 30px;
  background: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .content {
    flex-direction: column;
  }
}
.page .pHolder {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* 2 colonnes */
.page .pHolder > li {
  width: 50%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .page .pHolder {
    flex-direction: column;
  }

  .page .pHolder > li {
    width: 100%;
  }
}

.page .pHolder {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px;
}

/* colonnes */
.page .pHolder > li {
  flex: 0 0 50% !important;
  max-width: 50% !important;
}

/* mobile */
@media (max-width: 768px) {
  .page .pHolder > li {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
.page-wrapper {
  width: 100%;
}

/* 2 colonnes */
.page-wrapper .content {
  display: flex;
  gap: 30px;
  padding: 30px;
}

/* gauche + droite */
.left-col,
.right-col {
  flex: 1;
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* responsive */
@media (max-width: 768px) {
  .page-wrapper .content {
    flex-direction: column;
  }
}
.logo-anim {
  width: 180px;
  opacity: 0;
  transform: translateY(-40px) scale(0.9);
  animation: logoFade 1s ease forwards;
}

@keyframes logoFade {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.left-col,
.right-col {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.right-col {
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* FORCE LAYOUT */
.page-wrapper .content {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 20px;
}

/* FORCE COLONNES */
.page-wrapper .left-col,
.page-wrapper .right-col {
  flex: 0 0 50% !important;
  max-width: 50% !important;
}
@media (max-width: 768px) {
  .page-wrapper .content {
    flex-direction: column !important;
  }

  .left-col,
    .right-col {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
.page-wrapper .content {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 20px;
}
.left-col, 
.right-col {
  padding: 10px;
}
.justify-text {
  text-align: justify;
  line-height: 1.8;
  font-size: 15px;
}

/* SECTION */
.president-section {
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

/* TITRE */
.title-pres {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
}

/* ligne sous titre */
.title-pres::after {
  content: "";
  width: 70px;
  height: 3px; 
  background: #0072bc;
  display: block;
  margin: 10px auto 0;
}

/* IMAGE */
.president-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #f1f1f1;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* TEXTE */
.president-text {
  text-align: justify;
  line-height: 1.8;
  font-size: 16px;
  color: #444;
  margin-bottom: 15px;
}

/* SIGNATURE */
.signature {
  margin-top: 20px;
  font-size: 15px;
  color: #222;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .president-img {
    margin-bottom: 20px;
  }

  .title-pres {
    font-size: 28px;
  }
}

.president-img:hover {
  transform: scale(1.05);
  transition: 0.3s;
}
.center-img {
  display: block;
  margin: 0 auto;
}

.services-section{
    background: #f4f6f9;
}

.service-card{
    border: none;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.service-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.service-card .btn{
    border-radius: 30px;
    padding: 8px 20px;
}

.service-icon i{

    font-size:40px;

    color:#0d6efd;

    transition:0.3s;
}

.service-card:hover .service-icon i{

    transform:scale(1.1);

    color:#ffffff;
}
<style>
.nav-link{
    transition:0.3s;
}

.nav-link:hover{
    color:#0d6efd !important;
}


<style>
.accordion-button{
    background:#fff;
    padding:20px;
    font-size:18px;
}

.accordion-button:not(.collapsed){
    background:#f8f9fa;
    color:#0d6efd;
    box-shadow:none;
}

.accordion-body{
    background:#fff;
    color:#555;
}
</style>
</style>
