/* ==========================================================================================
*  DEK - Dynamique Eberande Kolongele
*  Fichier CSS Complet - Version Finale
*  Bleu doux #1a3c6d, Rouge doux #b84040, Fond crème #f5f0e8
*  Parallaxe fonctionnel, Testimonial conservé, Couleurs reposantes
* ========================================================================================== */


/* ==========================================================================
   01. VARIABLES GLOBALES
   ========================================================================== */

:root {
	/* Palette institutionnelle inspiree du logo DEK */
	--primary-color: #0f3d2e;
	--primary-dark: #08251d;
	--primary-light: #eaf3ef;
	--accent-color: #9e2f32;
	--accent-light: #f6e9e8;
	--cream-bg: #f7f4ec;
	--section-alt-bg: #edf4f1;
	--flag-blue: #164f7a;
	--flag-gold: #c9a227;

	/* Neutres */
	--white-color: #FFFFFF;
	--off-white: #fafafa;
	--text-color: #24313d;
	--text-light: #526474;
	--border-color: #e0e5ec;
	--divider-color: rgba(0, 0, 0, 0.06);
	--dark-divider-color: rgba(255, 255, 255, 0.12);

	/* Polices */
	--default-font: "Inter", sans-serif;
	--accent-font: "Playfair Display", serif;
}


/* ==========================================================================
   02. RESET & BASE
   ========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	background-color: var(--white-color);
	color: var(--text-color);
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--accent-font);
	margin: 0;
	font-weight: 700;
	line-height: 1.2em;
	color: var(--primary-color);
}

p {
	line-height: 1.8em;
	margin-bottom: 1.5em;
	color: var(--text-light);
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none;
	color: var(--primary-color);
	transition: color 0.3s ease;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: 0;
}

html,
body {
	width: 100%;
	overflow-x: clip;
}

.container {
	max-width: 1300px;
	margin: 0 auto;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters {
	margin-right: 0;
	margin-left: 0;
}

.row.no-gutters>* {
	padding-right: 0;
	padding-left: 0;
}


/* ==========================================================================
   03. ANIMATIONS IMAGES
   ========================================================================== */

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.reveal {
	position: relative;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

.reveal img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	transform-origin: left;
}


/* ==========================================================================
   04. BOUTONS
   ========================================================================== */

.btn-default {
	display: inline-block;
	font-family: var(--default-font);
	font-weight: 600;
	font-size: 14px;
	line-height: 1em;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	background: var(--accent-color);
	color: var(--white-color);
	border: 2px solid var(--accent-color);
	padding: 15px 30px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
}

.btn-default:hover {
	background: transparent;
	color: var(--accent-color);
}

.btn-default.btn-highlighted {
	background: var(--primary-color);
	border-color: var(--primary-color);
}

.btn-default.btn-highlighted:hover {
	background: transparent;
	color: var(--primary-color);
}

.readmore-btn {
	position: relative;
	color: var(--accent-color);
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	display: inline-block;
	padding-right: 25px;
	transition: all 0.3s ease;
}

.readmore-btn::after {
	content: '\f061';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 12px;
	transition: transform 0.3s ease;
}

.readmore-btn:hover {
	color: var(--primary-color);
}

.readmore-btn:hover::after {
	transform: translate(5px, -50%);
	color: var(--primary-color);
}


/* ==========================================================================
   05. PRELOADER
   ========================================================================== */

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	background-color: var(--primary-dark);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container {
	position: relative;
	width: 100px;
	height: 100px;
}

.loading {
	width: 100%;
	height: 100%;
	border: 2px solid transparent;
	border-top-color: var(--white-color);
	border-bottom-color: var(--accent-color);
	border-radius: 50%;
	animation: rotate-loading 1.5s linear infinite;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 60px;
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}


/* ==========================================================================
   06. TOPBAR
   ========================================================================== */

.topbar {
	background-color: var(--primary-dark);
	padding: 8px 0;
}

.topbar .container .row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.topbar-contact-info ul {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 25px;
}

.topbar-contact-info ul li {
	display: flex;
	align-items: center;
	color: rgba(255, 255, 255, 0.85);
	font-size: 13px;
	font-weight: 500;
	transition: color 0.3s ease;
}

.topbar-contact-info ul li a {
	color: inherit;
}

.topbar-contact-info ul li i {
	font-size: 14px;
	margin-right: 7px;
	color: rgba(255, 255, 255, 0.5);
}

.topbar-contact-info ul li:hover {
	color: var(--white-color);
}

.topbar-social-icons ul {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 3px;
	justify-content: flex-end;
}

.topbar-social-icons ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.08);
	color: var(--white-color);
	font-size: 12px;
	transition: all 0.3s ease;
}

.topbar-social-icons ul li a:hover {
	background-color: var(--accent-color);
	transform: translateY(-1px);
}


/* ==========================================================================
   07. HEADER
   ========================================================================== */

.main-header {
	position: relative;
	z-index: 1000;
	background-color: var(--white-color);
	box-shadow: 0 1px 15px rgba(0, 0, 0, 0.04);
	border-bottom: 1px solid var(--border-color);
}

.header-sticky {
	position: relative;
	transition: all 0.3s ease;
}

.navbar {
	padding: 0;
	height: 85px;
}

.navbar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.navbar-brand {
	display: flex;
	align-items: center;
	padding: 0;
	margin: 0;
	text-decoration: none;
}

.navbar-brand img {
	height: 45px;
	width: auto;
}

.main-menu {
	display: flex;
	align-items: center;
}

.main-menu .nav-menu-wrapper {
	margin: 0 15px;
}

.main-menu .navbar-nav {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 0;
}

.main-menu .nav-item .nav-link {
	display: block;
	font-family: var(--default-font);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	color: var(--text-light);
	padding: 12px 12px;
	position: relative;
	transition: color 0.3s ease;
}

.main-menu .nav-item .nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 12px;
	right: 12px;
	height: 2px;
	background-color: var(--accent-color);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.main-menu .nav-item .nav-link:hover,
.main-menu .nav-item .nav-link.active {
	color: var(--primary-color);
}

.main-menu .nav-item .nav-link:hover::after,
.main-menu .nav-item .nav-link.active::after {
	transform: scaleX(1);
}

.header-btn .btn-default {
	font-size: 12px;
	padding: 11px 22px;
}

/* Mobile */
.navbar-toggle {
	display: none;
	cursor: pointer;
}

.navbar-toggle .slicknav_btn {
	background-color: var(--primary-color);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
}

.slicknav_icon-bar {
	display: block;
	width: 22px;
	height: 2px;
	background-color: var(--white-color);
	margin: 4px auto;
	transition: all 0.3s ease;
}

.responsive-menu {
	display: none;
}

.slicknav_menu {
	background-color: var(--primary-color);
	padding: 8px 0;
	position: absolute;
	width: 100%;
	z-index: 999;
}

.slicknav_nav {
	list-style: none;
	padding: 0;
	margin: 0;
}

.slicknav_nav li a {
	display: block;
	font-family: var(--default-font);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--white-color);
	padding: 10px 22px;
	letter-spacing: 0.4px;
	transition: all 0.3s ease;
}

.slicknav_nav li a:hover {
	color: var(--accent-light);
	background-color: rgba(255, 255, 255, 0.04);
	padding-left: 28px;
}

/* Sticky */
header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	transform: translateY(0);
	background-color: var(--white-color);
	box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
	animation: slideDown 0.3s ease;
	z-index: 1000;
}

header.main-header .header-sticky.active .navbar {
	height: 72px;
}

header.main-header .header-sticky.active .navbar-brand img {
	height: 38px;
}

header.main-header .header-sticky.active .nav-scroll-progress {
	top: 72px;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
}

.nav-scroll-progress {
	--scroll-progress: 0%;
	position: absolute;
	left: 0;
	right: 0;
	top: 85px;
	height: 3px;
	background: rgba(15, 61, 46, 0.08);
	overflow: hidden;
	z-index: 1001;
}

.nav-scroll-progress span {
	display: block;
	width: var(--scroll-progress);
	height: 100%;
	background: linear-gradient(90deg, var(--primary-color), var(--flag-gold), var(--accent-color));
	transition: width 0.12s linear;
}

@keyframes slideDown {
	from {
		transform: translateY(-100%);
	}

	to {
		transform: translateY(0);
	}
}

.scroll-to-top {
	--scroll-progress: 0%;
	position: fixed;
	right: 24px;
	bottom: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: conic-gradient(var(--flag-gold) var(--scroll-progress), rgba(255, 255, 255, 0.2) 0), var(--accent-color);
	color: var(--white-color);
	box-shadow: 0 12px 30px rgba(8, 37, 29, 0.24);
	opacity: 0;
	visibility: hidden;
	transform: translateY(12px);
	transition: all 0.3s ease-in-out;
	z-index: 999;
}

.scroll-to-top::before {
	content: "";
	position: absolute;
	inset: 4px;
	border-radius: 50%;
	background: var(--accent-color);
	transition: background 0.3s ease-in-out;
}

.scroll-to-top i {
	position: relative;
	z-index: 1;
}

.scroll-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.scroll-to-top:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

.scroll-to-top:hover::before {
	background: var(--primary-color);
}


/* ==========================================================================
   08. HERO (avec parallaxe via parallaxie.js)
   ========================================================================== */

.hero {
	position: relative;
	padding: 100px 0 0 0;
	background-color: var(--primary-color);
	background-image: url('../images/hero-bg.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	overflow: hidden;
	z-index: 1;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(8, 37, 29, 0.92) 0%, rgba(15, 61, 46, 0.78) 52%, rgba(22, 79, 122, 0.48) 100%);
	z-index: 2;
	pointer-events: none;
}

.hero.parallaxie {
	/* Le fond est géré par parallaxie.js via l'attribut data-parallaxie */
	background-size: cover;
	background-position: center center;
}

.hero .container {
	position: relative;
	z-index: 3;
}

.hero .row {
	display: flex;
	align-items: flex-end;
}

.hero .col-lg-7 {
	padding-bottom: 60px;
}

.hero-content {
	position: relative;
	z-index: 3;
}

.hero-content .section-title h3 {
	font-family: var(--default-font);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 18px;
}

.hero-content .section-title h1 {
	font-family: var(--accent-font);
	font-size: 52px;
	font-weight: 800;
	line-height: 1.15em;
	letter-spacing: -0.02em;
	color: var(--white-color);
	margin-bottom: 20px;
}

.hero-content .section-title h1 span {
	color: var(--accent-color);
}

.hero-content .section-title p {
	font-size: 16px;
	line-height: 1.7em;
	color: rgba(255, 255, 255, 0.8);
	max-width: 520px;
	margin-bottom: 35px;
}

.hero-body {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 40px;
}

.hero-body .btn-default {
	font-size: 13px;
	padding: 16px 30px;
	background: var(--accent-color);
	border-color: var(--accent-color);
	color: var(--white-color);
}

.hero-body .btn-default:hover {
	background: transparent;
	color: var(--white-color);
	border-color: var(--white-color);
}

.hero-body .btn-default.btn-highlighted {
	background: transparent;
	border-color: var(--white-color);
	color: var(--white-color);
}

.hero-body .btn-default.btn-highlighted:hover {
	background: var(--white-color);
	color: var(--primary-color);
}

.hero-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding-top: 25px;
}

.hero-footer p {
	font-family: var(--accent-font);
	font-size: 18px;
	font-weight: 600;
	font-style: italic;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

.hero-image {
	position: relative;
	z-index: 4;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin-bottom: -1px;
	min-height: 560px;
	isolation: isolate;
}

.hero-image::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: min(88%, 390px);
	height: 76%;
	background: linear-gradient(160deg, rgba(201, 162, 39, 0.22), rgba(15, 61, 46, 0.34) 46%, rgba(22, 79, 122, 0.22));
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 46% 46% 8px 8px;
	transform: translateX(-50%);
	box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
	z-index: -1;
}

.hero-image::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: min(76%, 340px);
	height: 14px;
	background: rgba(0, 0, 0, 0.25);
	border-radius: 50%;
	filter: blur(8px);
	transform: translateX(-50%);
	z-index: -2;
}

.hero-image figure {
	margin: 0;
	display: block;
	line-height: 0;
	width: 100%;
	max-width: 430px;
}

.hero-image img {
	display: block;
	width: 100%;
	max-width: 100%;
	max-height: 560px;
	height: auto;
	object-fit: contain;
	object-position: bottom center;
	filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.34));
}


/* ==========================================================================
   09. TITRES DE SECTION
   ========================================================================== */

.section-row {
	position: relative;
	margin-bottom: 60px;
	z-index: 1;
}

.section-row .section-title {
	width: 100%;
	max-width: 600px;
	text-align: center;
	margin: 0 auto;
}

.section-row .section-title.section-title-left {
	max-width: 100%;
	text-align: left;
	margin: 0 auto;
}

.section-title {
	margin-bottom: 35px;
}

.section-title h3 {
	font-family: var(--default-font);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--accent-color);
	margin-bottom: 10px;
}

.section-title h1,
.section-title h2 {
	font-family: var(--accent-font);
	letter-spacing: -0.02em;
	margin-bottom: 0;
	color: var(--primary-color);
}

.section-title h1 {
	font-size: 52px;
	font-weight: 800;
}

.section-title h2 {
	font-size: 38px;
	font-weight: 700;
}

.section-title h1 span,
.section-title h2 span {
	color: var(--accent-color);
}

.section-title p {
	margin-top: 15px;
	margin-bottom: 0;
	color: var(--text-light);
}

.section-title.dark-section h1,
.section-title.dark-section h2,
.section-title.dark-section p,
.section-title.dark-section h3 {
	color: var(--white-color);
}

.section-title.dark-section h3 {
	color: rgba(255, 255, 255, 0.7);
}

.section-title-content {
	margin-left: 25px;
}

.section-title-content p {
	margin: 0;
	color: var(--text-light);
}


/* ==========================================================================
   10. SECTION ACTUALITÉS
   ========================================================================== */

.our-campaign {
	background-color: var(--section-alt-bg);
	padding: 90px 0;
}

.campaign-list {
	display: flex;
	flex-wrap: wrap;
	border-left: 1px solid var(--border-color);
}

.campaign-item {
	position: relative;
	width: 33.33%;
	border: 1px solid var(--border-color);
	border-left-width: 0;
	padding: 35px;
	transition: all 0.4s ease;
	overflow: hidden;
	background: transparent;
}

.campaign-item:nth-child(-n+3) {
	border-top-width: 1px;
}

.campaign-item:nth-child(n+4) {
	border-top-width: 0;
}

.campaign-item:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--section-alt-bg);
	width: 100%;
	height: 100%;
	transition: all 0.4s ease;
	z-index: 1;
}

.campaign-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	transition: all 0.4s ease;
}

.campaign-image:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	opacity: 88%;
}

.campaign-item.active:before,
.campaign-item:hover:before {
	transform: translate(100%, -100%);
}

.campaign-item.active .campaign-image,
.campaign-item:hover .campaign-image {
	opacity: 1;
}

.campaign-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.campaign-content {
	position: relative;
	z-index: 2;
}

.campaign-icon {
	margin-bottom: 25px;
}

.campaign-content-info {
	margin-bottom: 25px;
}

.campaign-item .campaign-icon img {
	max-width: 50px;
	transition: all 0.4s ease;
}

.campaign-item.active .campaign-icon img,
.campaign-item:hover .campaign-icon img {
	filter: brightness(0) invert(1);
}

.campaign-content-info h3 {
	font-size: 18px;
	margin-bottom: 15px;
	transition: all 0.4s ease;
	color: var(--primary-color);
}

.campaign-content-info p {
	margin-bottom: 0;
	transition: all 0.4s ease;
	color: var(--text-light);
	font-size: 14px;
}

.campaign-item.active .campaign-content-info h3,
.campaign-item:hover .campaign-content-info h3,
.campaign-item.active .campaign-content-info p,
.campaign-item:hover .campaign-content-info p,
.campaign-item.active .campaign-readmore-btn .readmore-btn,
.campaign-item:hover .campaign-readmore-btn .readmore-btn {
	color: var(--white-color);
}

.section-footer-text {
	margin-top: 50px;
	text-align: center;
}

.section-footer-text p {
	color: var(--primary-color);
	margin-bottom: 0;
	font-weight: 500;
	font-size: 14px;
}

.section-footer-text p a {
	text-decoration: underline;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--accent-color);
	transition: color 0.3s ease;
}

.section-footer-text p a:hover {
	color: var(--primary-color);
}


/* ==========================================================================
   11. SECTION SECTEURS D'ACTIVITÉ
   ========================================================================== */

.our-achievements {
	padding: 90px 0;
}

.achievement-images {
	position: relative;
	padding: 0 140px 50px 0;
	margin-right: 20px;
}

.achievement-img-1 {
	padding: 0 0 30px 30px;
}

.achievement-img-2 {
	position: absolute;
	bottom: 25px;
	right: 30px;
	max-width: 220px;
	transform: rotate(12deg);
	border: 5px solid var(--white-color);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.achievement-img-1 img,
.achievement-img-2 img {
	width: 100%;
	object-fit: cover;
}

.achievement-list-item {
	display: flex;
	align-items: center;
	gap: 20px 60px;
	border-bottom: 1px solid var(--border-color);
	margin-bottom: 25px;
	padding-bottom: 25px;
	transition: all 0.3s ease;
}

.achievement-list-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.achievement-item {
	width: calc(100% - 80px);
	display: flex;
	align-items: center;
}

.achievement-item .icon-box {
	width: 65px;
	height: 65px;
	border: 2px solid var(--border-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 25px;
	overflow: hidden;
	transition: all 0.3s ease;
	background-color: var(--white-color);
}

.achievement-list-item:hover .icon-box {
	background-color: var(--primary-color);
	border-color: var(--primary-color);
}

.achievement-item .icon-box img {
	max-width: 30px;
	transition: all 0.3s ease;
}

.achievement-list-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.achievement-item-content {
	width: calc(100% - 90px);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.achievement-item-content p {
	margin-bottom: 0;
	font-weight: 500;
	font-size: 15px;
	color: var(--text-color);
}

.achievement-item-content h3 {
	font-size: 20px;
	margin-left: 30px;
	color: var(--accent-color);
	font-family: var(--default-font);
	font-weight: 700;
}

.achievement-button a {
	display: block;
	transform: rotate(-45deg);
	transition: all 0.3s ease;
}

.achievement-button a:hover {
	transform: rotate(0);
}

.achievement-button a img {
	max-width: 24px;
}


/* ==========================================================================
   12. SECTION GALERIE
   ========================================================================== */

.our-gallery {
	background: var(--primary-light);
	padding: 90px 0 60px;
}

.photo-gallery {
	overflow: hidden;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	border-radius: 4px;
}

.photo-gallery a {
	position: relative;
	display: block;
	cursor: pointer;
}

.photo-gallery a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease;
	z-index: 1;
}

.photo-gallery:hover a::before {
	opacity: 0.75;
	visibility: visible;
}

.photo-gallery a::after {
	content: '\f002';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 20px;
	color: var(--white-color);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease;
	z-index: 1;
}

.photo-gallery:hover a::after {
	opacity: 1;
	visibility: visible;
}

.photo-gallery img {
	width: 100%;
	aspect-ratio: 1 / 1.1;
	object-fit: cover;
}


/* ==========================================================================
   13. SECTION PRÉSIDENT / TESTIMONIAL (CONSERVÉ COMME L'ORIGINAL)
   ========================================================================== */



.our-testimonial {
    background: url(../images/testimonial-bg-image.png), var(--primary-color);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 100px 0 0;
}

.our-testimonial::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('../images/testimonial-bg-image.png') no-repeat center center;
	background-size: cover;
	opacity: 0.06;
	z-index: 0;
}

.our-testimonial .container {
	position: relative;
	z-index: 1;
}

.testimonial-slider {
	margin-right: 50px;
}

.testimonial-slider .swiper-wrapper {
	cursor: pointer;
}

.testimonial-quote {
	margin-bottom: 20px;
}

.testimonial-quote img {
	max-width: 36px;
	opacity: 0.7;
}

.testimonial-content {
	margin-bottom: 20px;
}

.testimonial-content p {
	font-size: 18px;
	line-height: 1.7em;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 0;
	font-style: italic;
}

.testimonial-rating {
	margin-bottom: 20px;
}

.testimonial-rating i {
	font-size: 13px;
	color: var(--accent-color);
	margin-right: 3px;
}

.testimonial-rating i:last-child {
	margin-right: 0;
}

.author-content {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	padding-top: 20px;
}

.author-content p {
	display: inline-block;
	font-weight: 600;
	color: var(--white-color);
	margin: 0;
	font-size: 16px;
}

.author-content p span {
	color: rgba(255, 255, 255, 0.6);
	border-left: 1px solid rgba(255, 255, 255, 0.3);
	margin-left: 20px;
	padding-left: 20px;
	font-weight: 400;
}

.testimonial-slider .testimonial-pagination {
	margin-top: 30px;
	padding-bottom: 5px;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: rgba(255, 255, 255, 0.4);
	opacity: 1;
	margin: 0 6px;
	transition: all 0.3s ease;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active {
	background: var(--accent-color);
	transform: scale(1.3);
}

.testimonial-image {
	text-align: right;
	padding-left: 50px;
}

.testimonial-image img {
	width: 100%;
	max-width: 100%;
	object-fit: contain;
	object-position: bottom center;
}


/* ==========================================================================
   14. SECTION PARCOURS POLITIQUE
   ========================================================================== */

.our-ability {
	padding: 90px 0 60px;
	background-color: var(--white-color);
}

.ability-nav {
	margin-bottom: 50px;
}

.ability-nav ul {
	list-style: none;
	border: none;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px 60px;
	padding: 0 0 20px 0;
	margin: 0;
	border-bottom: 1px solid var(--border-color);
}

.ability-nav ul li .nav-link {
	position: relative;
	background: transparent;
	border: none;
	font-family: var(--default-font);
	font-size: 15px;
	font-weight: 600;
	color: var(--text-light);
	padding: 8px 0;
	margin: 0;
	text-transform: capitalize;
	transition: all 0.3s ease;
	cursor: pointer;
}

.ability-nav ul li .nav-link::after {
	content: '';
	position: absolute;
	bottom: -21px;
	left: 0;
	right: 0;
	height: 3px;
	background-color: var(--accent-color);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.ability-nav ul li .nav-link.active,
.ability-nav ul li .nav-link:hover {
	color: var(--primary-color);
	background: transparent;
}

.ability-nav ul li .nav-link.active::after,
.ability-nav ul li .nav-link:hover::after {
	transform: scaleX(1);
}

.ability-tab-content {
	margin-right: 30px;
}

.ability-tab-content .section-title h2 {
	font-size: 30px;
	margin-bottom: 15px;
}

.ability-tab-content .section-title p {
	font-size: 15px;
}

.ability-content-list ul {
	list-style: none;
	padding: 0;
	margin: 0 0 30px 0;
}

.ability-content-list ul li {
	position: relative;
	text-transform: capitalize;
	line-height: normal;
	padding-left: 25px;
	margin-bottom: 15px;
	font-size: 15px;
	color: var(--text-color);
}

.ability-content-list ul li:last-child {
	margin-bottom: 0;
}

.ability-content-list ul li::before {
	content: '\f00c';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 14px;
	top: 3px;
	left: 0;
	color: var(--accent-color);
}

.ability-button {
	margin-top: 25px;
}

.ability-tab-image figure {
	display: block;
	border-radius: 6px;
	overflow: hidden;
}

.ability-tab-image img {
	width: 100%;
	aspect-ratio: 1 / 0.65;
	object-fit: cover;
}


/* ==========================================================================
   15. TICKER & ACTIVITES
   ========================================================================== */

.row.no-gutters {
	margin-right: 0;
	margin-left: 0;
}

.row.no-gutters > * {
	padding-right: 0;
	padding-left: 0;
}

.scrolling-ticker {
	padding: 44px 0 88px;
	background: var(--white-color);
	overflow: hidden;
}

.scrolling-ticker-box {
	--gap: 30px;
	display: flex;
	align-items: center;
	gap: var(--gap);
	overflow: hidden;
	user-select: none;
}

.scrolling-content {
	display: flex;
	flex-shrink: 0;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 80s linear infinite;
}

.scrolling-ticker:hover .scrolling-content {
	animation-play-state: paused;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}

.scrolling-ticker-box .scrolling-content span {
	display: flex;
	align-items: center;
	font-family: var(--accent-font);
	font-size: clamp(48px, 7vw, 96px);
	font-weight: 800;
	line-height: 1.2em;
	text-transform: uppercase;
	white-space: nowrap;
	color: transparent;
	-webkit-text-stroke: 1px rgba(15, 61, 46, 0.35);
	opacity: 0.8;
}

.our-activity .container-fluid {
	padding-right: 0;
	padding-left: 0;
}

.activity-video-box {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	min-height: 620px;
	padding: 0 30px;
	text-align: center;
	background: url('../images/activity-video-bg.jpg') no-repeat center center / cover;
	overflow: hidden;
}

.activity-video-box::before {
	content: "";
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(8, 37, 29, 0.9), rgba(15, 61, 46, 0.78));
	z-index: 0;
}

.activity-video-box::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at center, rgba(201, 162, 39, 0.2), transparent 48%);
	z-index: 0;
	pointer-events: none;
}

.activity-title {
	position: relative;
	max-width: 460px;
	margin: 0 auto 40px;
	z-index: 1;
}

.activity-title h2 {
	font-family: var(--accent-font);
	font-size: 42px;
	line-height: 1.15em;
	color: var(--white-color);
}

.video-play-button {
	position: relative;
	text-align: center;
	z-index: 1;
}

.video-play-button a {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 82px;
	height: 82px;
	border-radius: 50%;
	background: var(--white-color);
	color: var(--accent-color);
	transition: all 0.4s ease-in-out;
}

.video-play-button a:hover {
	background: var(--accent-color);
	color: var(--white-color);
}

.video-play-button a::before,
.video-play-button a::after {
	content: "";
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 42px solid rgba(255, 255, 255, 0.42);
	border-radius: 50%;
	transform: scale(0.62);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button a::after {
	animation-delay: 0.3s;
}

@keyframes border-zooming {
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button a i {
	font-size: 32px;
	margin-left: 3px;
	color: currentColor;
}

.activity-content-list,
.activity-list-item {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.activity-list-item:nth-child(even) {
	flex-direction: row-reverse;
}

.activity-list-item {
	overflow: hidden;
}

.activity-content-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 50%;
	min-height: 310px;
	padding: 3.125vw 4.688vw;
	text-align: center;
	background: var(--accent-color);
	transition: filter 0.35s ease, transform 0.35s ease;
}

.activity-list-item:nth-child(even) .activity-content-box {
	background: var(--primary-color);
}

.activity-list-item:hover .activity-content-box {
	filter: brightness(1.04);
	transform: translateY(-2px);
}

.activity-content-box .icon-box {
	margin-bottom: 28px;
}

.activity-content-box .icon-box img {
	width: 100%;
	max-width: 58px;
	filter: brightness(0) invert(1);
}

.activity-content h3 {
	font-family: var(--accent-font);
	font-size: 24px;
	line-height: 1.25em;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 8px;
}

.activity-content p {
	color: rgba(255, 255, 255, 0.88);
	margin-bottom: 0;
}

.activity-image {
	width: 50%;
	overflow: hidden;
}

.activity-image figure {
	display: block;
	height: 100%;
}

.activity-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.832;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.activity-list-item:hover .activity-image img {
	transform: scale(1.05);
}


/* ==========================================================================
   15. FOOTER
   ========================================================================== */

.main-footer {
	background: var(--primary-dark);
	padding: 70px 0 0;
	color: var(--white-color);
}

.footer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	margin-bottom: 40px;
	padding-bottom: 35px;
}

.footer-header .section-title {
	width: 60%;
	margin-bottom: 0;
}

.footer-newsletter-form {
	width: 35%;
}

.footer-newsletter-form .form-group {
	display: flex;
}

.footer-newsletter-form .form-control {
	width: 65%;
	font-size: 14px;
	padding: 12px 18px;
	border: none;
	border-radius: 0;
	outline: none;
	font-family: var(--default-font);
	color: var(--text-color);
}

.footer-newsletter-form .btn-default {
	width: 35%;
	padding: 12px 15px;
	font-size: 13px;
	background: var(--accent-color);
	border-color: var(--accent-color);
}

.footer-newsletter-form .btn-default:hover {
	background: transparent;
	color: var(--accent-color);
}

.footer-logo {
	margin-bottom: 18px;
}

.footer-logo img {
	max-width: 220px;
}

.about-footer-content p {
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
	font-size: 14px;
}

.footer-links h3 {
	font-size: 18px;
	color: var(--white-color);
	margin-bottom: 20px;
}

.footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links ul li {
	margin-bottom: 12px;
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	transition: color 0.3s ease;
}

.footer-links ul li a:hover {
	color: var(--accent-color);
}

.footer-contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.footer-contact-item:last-child {
	margin-bottom: 0;
}

.footer-contact-item .icon-box {
	margin-right: 10px;
}

.footer-contact-item .icon-box img {
	max-width: 18px;
}

.footer-contact-content {
	width: calc(100% - 28px);
}

.footer-contact-content p,
.footer-contact-content p a {
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 0;
	font-size: 14px;
	transition: color 0.3s ease;
}

.footer-contact-content p a:hover {
	color: var(--accent-color);
}

.footer-copyright {
	background-color: rgba(0, 0, 0, 0.2);
	padding: 18px 0;
	margin-top: 60px;
	text-align: center;
}

.copyright-text p {
	color: rgba(255, 255, 255, 0.6);
	margin: 0;
	font-size: 13px;
}


/* ==========================================================================
   16. RESPONSIVE - TABLETTE
   ========================================================================== */

@media only screen and (max-width: 1200px) {
	.main-menu .nav-item .nav-link {
		font-size: 12px;
		padding: 12px 8px;
	}

	.hero-content .section-title h1 {
		font-size: 42px;
	}
}

@media only screen and (max-width: 991px) {
	.navbar {
		height: 65px;
	}

	.navbar-brand img {
		height: 35px;
	}

	header.main-header .header-sticky.active .navbar {
		height: 65px;
	}

	header.main-header .header-sticky.active .navbar-brand img {
		height: 35px;
	}

	.nav-scroll-progress,
	header.main-header .header-sticky.active .nav-scroll-progress {
		top: 65px;
	}

	.main-menu,
	.header-btn {
		display: none;
	}

	.navbar-toggle {
		display: block;
	}

	.responsive-menu {
		display: block;
	}

	.hero {
		padding: 60px 0 0 0;
	}

	.hero .row {
		flex-direction: row;
		align-items: flex-end;
	}

	.hero .col-lg-7 {
		width: 60%;
		flex: 0 0 60%;
		max-width: 60%;
		padding-bottom: 40px;
		text-align: left;
		order: 1;
	}

	.hero .col-lg-5 {
		width: 40%;
		flex: 0 0 40%;
		max-width: 40%;
		order: 2;
	}

	.hero-content .section-title h1 {
		font-size: 38px;
	}

	.hero-content .section-title p {
		max-width: 520px;
	}

	.hero-body {
		justify-content: flex-start;
	}

	.hero-footer {
		text-align: left;
	}

	.hero-image {
		min-height: 430px;
		max-width: 360px;
		margin-left: auto;
	}

	.hero-image figure {
		max-width: 330px;
	}

	.hero-image img {
		max-height: 430px;
	}

	.section-row {
		margin-bottom: 35px;
	}

	.section-title h2 {
		font-size: 30px;
	}

	.section-title-content {
		margin-left: 0;
		margin-top: 8px;
	}

	.our-campaign {
		padding: 60px 0;
	}

	.campaign-item {
		width: 50%;
		padding: 25px;
	}

	.campaign-item:nth-child(-n+3) {
		border-top-width: 0;
	}

	.campaign-item:nth-child(-n+2) {
		border-top-width: 1px;
	}

	.our-achievements {
		padding: 60px 0;
	}

	.achievement-images {
		max-width: 70%;
		margin: 0 auto 30px;
		padding: 0 100px 50px 0;
	}

	.our-testimonial {
		padding: 60px 0 0;
	}

	.testimonial-slider {
		margin: 0 0 30px 0;
	}

	.testimonial-image {
		max-width: 60%;
		padding-left: 0;
		margin: 0 auto;
	}

	.our-ability {
		padding: 60px 0 40px;
	}

	.ability-nav {
		margin-bottom: 35px;
	}

	.ability-tab-content {
		margin: 0 0 25px 0;
	}

	.scrolling-ticker {
		padding: 28px 0 56px;
	}

	.activity-video-box {
		min-height: auto;
		padding: 96px 30px;
	}

	.activity-title {
		margin-bottom: 30px;
	}

	.activity-title h2 {
		font-size: 34px;
	}

	.video-play-button a {
		width: 70px;
		height: 70px;
	}

	.video-play-button a i {
		font-size: 26px;
	}

	.activity-content-box {
		min-height: 260px;
		padding: 30px;
	}

	.activity-content-box .icon-box {
		margin-bottom: 18px;
	}

	.activity-content-box .icon-box img {
		max-width: 48px;
	}

	.activity-content h3 {
		font-size: 22px;
	}

	.our-gallery {
		padding: 60px 0 30px;
	}

	.main-footer {
		padding: 50px 0 0;
	}

	.footer-header {
		flex-direction: column;
		text-align: center;
		margin-bottom: 25px;
		padding-bottom: 25px;
	}

	.footer-header .section-title {
		width: 100%;
	}

	.footer-newsletter-form {
		width: 70%;
		margin-top: 15px;
	}

	.about-footer {
		margin-bottom: 25px;
	}

	.footer-links {
		margin-bottom: 25px;
	}

	.footer-copyright {
		margin-top: 35px;
	}
}


/* ==========================================================================
   17. RESPONSIVE - MOBILE
   ========================================================================== */

@media only screen and (max-width: 767px) {
	.topbar .container .row {
		flex-direction: column;
		gap: 6px;
	}

	.topbar-contact-info ul {
		justify-content: center;
		flex-wrap: wrap;
		gap: 12px;
	}

	.topbar-contact-info ul li {
		font-size: 11px;
	}

	.topbar-social-icons {
		display: none;
	}

	.navbar {
		height: 60px;
	}

	.navbar-brand img {
		height: 30px;
	}

	header.main-header .header-sticky.active .navbar {
		height: 60px;
	}

	header.main-header .header-sticky.active .navbar-brand img {
		height: 30px;
	}

	.nav-scroll-progress,
	header.main-header .header-sticky.active .nav-scroll-progress {
		top: 60px;
	}

	.scroll-to-top {
		right: 16px;
		bottom: 16px;
		width: 42px;
		height: 42px;
	}

	.hero {
		padding: 45px 0 0 0;
	}

	.hero .row {
		flex-direction: column;
		align-items: center;
	}

	.hero .col-lg-7,
	.hero .col-lg-5 {
		width: 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.hero .col-lg-7 {
		padding-bottom: 25px;
		text-align: center;
	}

	.hero-content .section-title h1 {
		font-size: 26px;
	}

	.hero-content .section-title p {
		font-size: 14px;
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	.hero-body {
		flex-direction: column;
		align-items: stretch;
		justify-content: center;
		gap: 10px;
		margin-bottom: 25px;
	}

	.hero-body .btn-default {
		width: 100%;
		text-align: center;
	}

	.hero-body .btn-default.ms-3 {
		margin-left: 0 !important;
	}

	.hero-footer {
		text-align: center;
	}

	.hero-footer p {
		font-size: 14px;
	}

	.hero-image {
		min-height: 320px;
		max-width: 250px;
		margin: 18px auto 0;
	}

	.hero-image figure {
		max-width: 240px;
	}

	.hero-image img {
		max-height: 320px;
	}

	.footer-logo img {
		max-width: 210px;
	}

	.scrolling-ticker {
		padding: 22px 0 44px;
	}

	.scrolling-ticker-box {
		--gap: 18px;
	}

	.scrolling-ticker-box .scrolling-content span {
		font-size: 42px;
	}

	.activity-video-box {
		padding: 64px 20px;
	}

	.activity-title h2 {
		font-size: 26px;
	}

	.video-play-button a {
		width: 60px;
		height: 60px;
	}

	.video-play-button a::before,
	.video-play-button a::after {
		top: -34%;
		left: -34%;
	}

	.video-play-button a i {
		font-size: 22px;
	}

	.activity-list-item,
	.activity-list-item:nth-child(even) {
		flex-direction: column;
	}

	.activity-content-box,
	.activity-image {
		width: 100%;
	}

	.activity-content-box {
		min-height: auto;
		padding: 28px 20px;
	}

	.activity-content-box .icon-box {
		margin-bottom: 12px;
	}

	.activity-content h3 {
		font-size: 20px;
	}

	.activity-image img {
		aspect-ratio: 1 / 0.7;
	}

	.section-title h2 {
		font-size: 24px;
	}

	.campaign-item {
		width: 100%;
		padding: 20px;
	}

	.campaign-item:nth-child(-n+2) {
		border-top-width: 0;
	}

	.campaign-item:first-child {
		border-top-width: 1px;
	}

	.achievement-images {
		max-width: 100%;
		padding: 0 50px 60px 0;
	}

	.achievement-img-2 {
		max-width: 130px;
		bottom: 15px;
		right: 15px;
	}

	.achievement-list-item {
		gap: 15px;
	}

	.achievement-item .icon-box {
		width: 50px;
		height: 50px;
		margin-right: 15px;
	}

	.achievement-item .icon-box img {
		max-width: 24px;
	}

	.achievement-item-content {
		width: calc(100% - 65px);
		flex-direction: column;
		align-items: flex-start;
		gap: 3px;
	}

	.achievement-item-content h3 {
		margin-left: 0;
		font-size: 16px;
	}

	.testimonial-image {
		max-width: 85%;
	}

	.testimonial-content p {
		font-size: 15px;
	}

	.ability-nav ul {
		gap: 10px 20px;
		flex-wrap: wrap;
		padding-bottom: 15px;
	}

	.ability-nav ul li .nav-link {
		font-size: 13px;
	}

	.ability-nav ul li .nav-link::after {
		bottom: -16px;
	}

	.footer-newsletter-form {
		width: 100%;
	}

	.footer-newsletter-form .form-group {
		flex-direction: column;
		gap: 10px;
	}

	.footer-newsletter-form .form-control,
	.footer-newsletter-form .btn-default {
		width: 100%;
	}

	.footer-copyright {
		margin-top: 30px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.scrolling-content,
	.video-play-button a::before,
	.video-play-button a::after {
		animation: none;
	}

	.scroll-to-top,
	.nav-scroll-progress span,
	.activity-content-box,
	.activity-image img,
	header.main-header .header-sticky,
	header.main-header .header-sticky.active .navbar,
	header.main-header .header-sticky.active .navbar-brand img {
		transition: none;
	}
}
