
:root {
  --primary: #0D1B2A;
  --secondary: #1B263B;
  --accent: #2ECC71;
  --light-bg: #F8F9FA;
  --dark-text: #212529;
}

	body {
	    font-family: 'Inter', sans-serif;
	    background-color: #f8f9fa;
	}

	h1, h2, h3 {
	    font-family: 'Poppins', sans-serif;
	    font-weight: 600;
	}    

/* ========================= NAVBAR  =================== */
/* Navbar */

/* Navbar */
.custom-navbar {
  padding: 15px 0;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

/* Logo */
.logo-highlight {
  color: #2563EB;
}

/* Liens */
.nav-link {
  color: #374151 !important;
  font-weight: 500;
  position: relative;
  transition: 0.3s ease;
}

.nav-link:hover {
  color: #2563EB !important;
}

/* Soulignement animé */
.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #2563EB;
  left: 0;
  bottom: -4px;
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* Bouton inscription */
.btn-register {
  background-color: #2563EB;
  color: white;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-register:hover {
  background-color: #1E40AF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Bouton langue circulaire */
.btn-language {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #F3F4F6;
  border: none;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.btn-language:hover {
  background-color: #E5E7EB;
  transform: scale(1.05);
}



/* MAIN SECION =========================== */
/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  overflow: hidden;
  padding-top: 120px;
}

/* Texte */
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #0D1B2A;
}

.highlight {
  color: #2563EB;
}

.hero-text {
  color: #6B7280;
  font-size: 1.1rem;
  max-width: 500px;
}

/* Boutons */
.btn-primary-hero {
  background-color: #2563EB;
  color: white;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary-hero:hover {
  background-color: #1E40AF;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-outline-hero {
  border: 2px solid #2563EB;
  color: #2563EB;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-outline-hero:hover {
  background-color: #2563EB;
  color: white;
}

/* Image */
.hero-image {
  position: relative;
  z-index: 2;
  max-width: 90%;
}

/* FORMES DECORATIVES */
.shape {
  position: absolute;
  z-index: 1;
  opacity: 0.15;
}

/* 1️⃣ Grand cercle bleu */
.shape-1 {
  width: 300px;
  height: 300px;
  background: #2563EB;
  border-radius: 50%;
  top: 10%;
  right: -100px;
}

/* 2️⃣ Cercle vert */
.shape-2 {
  width: 180px;
  height: 180px;
  background: #2ECC71;
  border-radius: 50%;
  bottom: 15%;
  left: -70px;
}

/* 3️⃣ Blob organique */
.shape-3 {
  width: 250px;
  height: 250px;
  background: #4F46E5;
  border-radius: 60% 40% 70% 30% / 40% 60% 40% 60%;
  top: 50%;
  left: 35%;
}

/* 4️⃣ Demi-cercle */
.shape-4 {
  width: 220px;
  height: 110px;
  background: #F59E0B;
  border-radius: 220px 220px 0 0;
  bottom: 0;
  right: 20%;
}

/* 5️⃣ Triangle */
.shape-5 {
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 140px solid #EC4899;
  top: 20%;
  left: 10%;
}

/* 6️⃣ Rectangle arrondi */
.shape-6 {
  width: 160px;
  height: 100px;
  background: #10B981;
  border-radius: 30px;
  top: 70%;
  right: 10%;
}

/* 7️⃣ Petit cercle décoratif */
.shape-7 {
  width: 80px;
  height: 80px;
  background: #6366F1;
  border-radius: 50%;
  top: 30%;
  right: 35%;
}



/* Bouton flottant SAV */
.btn-sos {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #2563EB;
  color: white;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  z-index: 999;
  backdrop-filter: blur(5px);
}

.btn-sos:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.4);
  background-color: #1E40AF;
}

/* Icône */
.btn-sos i {
  font-size: 1.2rem;
}

/* Texte */
.btn-sos span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
}



/* Modal */

.modal-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #374151;
}

/* Bouton Bourse */
.btn-bourse {
  background-color: #10B981; /* Vert émeraude */
  color: white;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-bourse:hover {
  background-color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* Bouton Financement */
.btn-financement {
  background-color: #2563EB; /* Bleu moderne */
  color: white;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-financement:hover {
  background-color: #1E40AF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Icônes */
.btn-bourse i, .btn-financement i {
  font-size: 1.2rem;
}

