@import url(' nav.css');

:root {
  --primary-color: #1a365d;
}

body {
  background-color: #f8f9fa;
}
/* side nqb */
.side-nav {
  display: none;
}


/* side nav */
.form-container {
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin: 30px auto;
  max-width: 1200px;
}

.section-title {
  color: var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 10px;
  margin-bottom: 25px;
  margin-top: 30px;
  font-weight: bold;
}

.form-label {
  font-weight: 600;
  color: #333;
}

.required::after {
  content: " *";
  color: red;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 40px;
}

.btn-primary:hover {
  background-color: #0f2344;
  border-color: #0f2344;
}

.form-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2c5282 100%);
  color: white;
  padding: 30px;
  border-radius: 10px 10px 0 0;
  margin: -30px -30px 30px -30px;
}

.checkbox-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.info-box {
  background-color: #e7f3ff;
  border-left: 4px solid var(--primary-color);
  padding: 15px;
  margin-bottom: 20px;
}
:root {
  --primary-color: #1a365d;
  --secondary-color: #8b0000;
  --accent-color: #d4af37;
  --light-color: #f5f5f5;
  --dark-color: #2d3748;
  --earth-color: #8b7355;
  --piketty-red: #c41e3a;
  --piketty-dark: #2c3e50;
  --piketty-light: #ecf0f1;
  --piketty-accent: #3498db;
  --piketty-success: #27ae60;
  --rse-green: #2e7d32;
  --rse-blue: #0277bd;
  --rse-orange: #f57c00;
  --donation-green: #2ecc71;
  --donation-blue: #3498db;
  --donation-gold: #f1c40f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--dark-color);
  line-height: 1.7;
  background-color: #ffffff;
  padding-top: 53px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--primary-color);
}

.piketty-font {
  font-family: "Montserrat", sans-serif;
}

/* Header et Navigation */
.navbar {
  background-color: rgba(26, 54, 93, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  transition: all 0.4s ease;
}

.navbar-brand {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: white !important;
  display: flex;
  align-items: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text span {
  font-size: 0.8em;
  opacity: 0.9;
}

.navbar-brand .logo-text {
  margin-left: 10px;
}

.logo-large {
  text-align: center;
  margin: 30px 0;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  border: 2px solid var(--accent-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.logo-img {
  max-width: 400px;
  width: 100%;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.logo-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  color: var(--earth-color);
  font-weight: 600;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-top: 2px solid var(--accent-color);
  padding-top: 10px;
}

@media (max-width: 768px) {
  .logo-img {
    max-width: 300px;
  }

  .logo-subtitle {
    font-size: 1.2rem;
  }
}

.nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  margin: 0 8px;
  transition: color 0.3s;
  position: relative;
  font-size: 12px !important;
}

.nav-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
  transition: width 0.3s;
}

.nav-link:hover:after,
.nav-link.active:after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-color) !important;
}

/* Section Message Président */
.president-section {
  background: linear-gradient(rgba(26, 54, 93, 0.92), rgba(26, 54, 93, 0.88)),
    url("https://images.unsplash.com/photo-1536152471326-642d7462d7f0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding: 120px 0 100px;
  position: relative;
}

.president-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--accent-color),
    var(--earth-color)
  );
}

.president-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.president-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.president-title h1 {
  color: white;
  font-size: 2.8rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.president-title:after {
  content: "";
  position: absolute;
  width: 150px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.president-message {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 50px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.president-message:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--secondary-color),
    var(--accent-color)
  );
}

.message-intro {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--accent-color);
  font-style: italic;
}

.message-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  line-height: 1.8;
  text-align: justify;
}

.message-signature {
  margin-top: 50px;
  text-align: right;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.signature-name {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.signature-title {
  font-size: 1.1rem;
  opacity: 0.9;
  padding-right: 76px;
}

.signature-organization {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 10px;
  color: white;
  padding-right: 63px;
}

.ancestor-symbol {
  text-align: center;
  margin-top: 50px;
  font-size: 2rem;
  color: var(--accent-color);
  opacity: 0.7;
}

/* Styles Piketty intégrés */
.piketty-header {
  background: linear-gradient(135deg, var(--piketty-dark) 0%, #1a252f 100%);
  color: white;
  padding: 60px 0;
  border-bottom: 5px solid var(--piketty-red);
}

.piketty-section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.piketty-card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
  margin-bottom: 30px;
  border-top: 4px solid var(--piketty-red);
}

.piketty-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.piketty-quote {
  border-left: 4px solid var(--piketty-red);
  padding-left: 20px;
  font-style: italic;
  color: #555;
  margin: 30px 0;
}

.piketty-metric {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--piketty-red);
  margin-bottom: 10px;
}

.metric-label {
  color: var(--piketty-dark);
  font-weight: 600;
}

.piketty-formula {
  background-color: #f8f9fa;
  border-left: 4px solid var(--piketty-accent);
  padding: 15px;
  font-family: monospace;
  font-size: 1.1rem;
  margin: 20px 0;
}

.timeline-piketty {
  position: relative;
  padding-left: 30px;
}

.timeline-piketty:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--piketty-red);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 20px;
}

.timeline-item:before {
  content: "";
  position: absolute;
  left: -33px;
  top: 5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--piketty-red);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--piketty-red);
}

.inequality-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 8px;
}

.badge-high {
  background-color: #ffebee;
  color: #c62828;
}

.badge-medium {
  background-color: #fff3e0;
  color: #ef6c00;
}

.badge-low {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.piketty-table {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.piketty-table th {
  background-color: var(--piketty-dark);
  color: white;
  border: none;
  font-weight: 600;
}

.piketty-table td {
  border-color: #eee;
}

.chart-container {
  position: relative;
  height: 300px;
  margin: 30px 0;
}

.revenue-model {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px;
  border-radius: 8px;
  margin: 30px 0;
}

.impact-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.impact-item {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--piketty-success);
}

/* Section Valeurs */
.values-section {
  padding: 100px 0;
  background-color: var(--light-color);
}

.section-title {
  position: relative;
  margin-bottom: 60px;
  text-align: center;
}

.section-title h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.section-title:after {
  content: "";
  position: absolute;
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--accent-color)
  );
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.value-card {
  background-color: white;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  border-top: 5px solid var(--accent-color);
  position: relative;
  overflow: hidden;
}

.value-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--secondary-color),
    var(--accent-color),
    var(--earth-color)
  );
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.value-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 25px;
}

.value-card h4 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

/* Section RSE (Responsabilité Sociétale des Entreprises) */
.rse-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.rse-pillar {
  background: white;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--rse-green);
  height: 100%;
  transition: transform 0.3s;
}

.rse-pillar:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.rse-pillar.environment {
  border-top-color: var(--rse-green);
}

.rse-pillar.social {
  border-top-color: var(--rse-blue);
}

.rse-pillar.economic {
  border-top-color: var(--rse-orange);
}

.rse-pillar.governance {
  border-top-color: var(--primary-color);
}

.rse-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--rse-green);
}

.rse-pillar.environment .rse-icon {
  color: var(--rse-green);
}

.rse-pillar.social .rse-icon {
  color: var(--rse-blue);
}

.rse-pillar.economic .rse-icon {
  color: var(--rse-orange);
}

.rse-pillar.governance .rse-icon {
  color: var(--primary-color);
}

.rse-badge {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.badge-environment {
  background-color: rgba(46, 125, 50, 0.1);
  color: var(--rse-green);
}

.badge-social {
  background-color: rgba(2, 119, 189, 0.1);
  color: var(--rse-blue);
}

.badge-economic {
  background-color: rgba(245, 124, 0, 0.1);
  color: var(--rse-orange);
}

.badge-governance {
  background-color: rgba(26, 54, 93, 0.1);
  color: var(--primary-color);
}

.rse-metrics {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
}

/* Section Programmes */
.programs-section {
  padding: 100px 0;
  background-color: white;
}

.program-card {
  background: linear-gradient(145deg, #ffffff, #f5f5f5);
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--accent-color);
  transition: all 0.3s;
}

.program-card:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.program-card h4 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.program-tag {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

/* Section Engagement */
.engagement-section {
  padding: 100px 0;
  background: linear-gradient(rgba(26, 54, 93, 0.9), rgba(26, 54, 93, 0.85)),
    url("https://images.unsplash.com/photo-1518834103328-922d6fcc01a1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
}

.engagement-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s;
}

.engagement-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

.engagement-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 15px;
}

/* Section Dons */
.donation-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.donation-card {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-top: 5px solid var(--donation-green);
  margin-bottom: 30px;
  transition: transform 0.3s;
}

.donation-card:hover {
  transform: translateY(-10px);
}

.donation-card.gold {
  border-top-color: var(--donation-gold);
}

.donation-card.blue {
  border-top-color: var(--donation-blue);
}

.donation-icon {
  font-size: 3rem;
  color: var(--donation-green);
  margin-bottom: 20px;
}

.donation-card.gold .donation-icon {
  color: var(--donation-gold);
}

.donation-card.blue .donation-icon {
  color: var(--donation-blue);
}

.donation-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 20px 0;
}

.donation-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.donation-features li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.donation-features li:last-child {
  border-bottom: none;
}

.donation-features li i {
  color: var(--donation-green);
  margin-right: 10px;
}

.btn-donation {
  background-color: var(--donation-green);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s;
  display: block;
  width: 100%;
  margin-top: 20px;
}

.btn-donation:hover {
  background-color: #27ae60;
  transform: scale(1.05);
  color: white;
}

.btn-donation.gold {
  background-color: var(--donation-gold);
}

.btn-donation.blue {
  background-color: var(--donation-blue);
}

.payment-methods {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
}

.payment-method {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #eee;
  transition: all 0.3s;
  height: 100%;
}

.payment-method:hover {
  border-color: var(--donation-green);
  transform: translateY(-5px);
}

.payment-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.bank-details {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

/* Section Carte Interactive */
.map-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

#madagascar-map {
  height: 600px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  border: 1px solid #ddd;
}

.map-controls {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.region-info-panel {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.region-info-panel h4 {
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--accent-color);
}

.thematic-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 8px;
}

.badge-economy {
  background-color: #e3f2fd;
  color: #1565c0;
}

.badge-demography {
  background-color: #f3e5f5;
  color: #7b1fa2;
}

.badge-peace {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.badge-rights {
  background-color: #ffebee;
  color: #c62828;
}

.badge-ecology {
  background-color: #e8f5e9;
  color: #1b5e20;
}

.badge-education {
  background-color: #fff3e0;
  color: #ef6c00;
}

.representative-card {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  border-left: 4px solid var(--accent-color);
}

.representative-name {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.representative-role {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 8px;
}

/* Nouvelles sections : Blog, Presse, TV, Bibliothèque */
.media-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.media-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
  height: 100%;
}

.media-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.media-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.media-card-body {
  padding: 25px;
}

.media-card h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.media-card .date {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.pdf-library {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.pdf-item {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  transition: background-color 0.3s;
}

.pdf-item:hover {
  background-color: #f8f9fa;
}

.pdf-item:last-child {
  border-bottom: none;
}

.pdf-icon {
  font-size: 2rem;
  color: var(--piketty-red);
  margin-right: 20px;
}

.pdf-info h5 {
  margin-bottom: 5px;
  color: var(--primary-color);
}

.pdf-info p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.btn-pdf {
  background-color: var(--piketty-red);
  color: white;
  border: none;
  padding: 5px 15px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
  transition: background-color 0.3s;
}

.btn-pdf:hover {
  background-color: #a51830;
  color: white;
}

/* Footer */
.footer {
  background-color: var(--primary-color);
  color: white;
  padding: 80px 0 30px;
}

.footer h5 {
  color: white;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer h5:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: 0;
  left: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.footer-links a i {
  margin-right: 10px;
  color: var(--accent-color);
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 12px;
  color: white;
  transition: all 0.3s;
}

.social-icons a:hover {
  background-color: var(--accent-color);
  transform: translateY(-5px);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-top: 60px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 992px) {
  .president-title h1 {
    font-size: 2.3rem;
  }

  .president-message {
    padding: 40px 30px;
  }

  #madagascar-map {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .president-section {
    padding: 100px 0 80px;
  }

  .president-title h1 {
    font-size: 2rem;
  }

  .president-message {
    padding: 30px 20px;
  }

  .message-content p {
    font-size: 1rem;
  }

  .signature-name {
    font-size: 1.5rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .metric-value {
    font-size: 2rem;
  }

  #madagascar-map {
    height: 400px;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Navigation active */
.nav-active {
  background-color: rgba(26, 54, 93, 0.98);
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Animation du logo */
@keyframes logoPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

.logo-img {
  animation: logoPulse 3s infinite ease-in-out;
}

.president {
  display: flex;
}

.message {
  width: 55%;
  margin-right: 40px;
}

.image-president {
  padding: 30px 20px 20px 0;
}

.img-responsive {
  max-width: 100%;
  height: auto;
}

.message-content-bottom p {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: justify;
}

@media (max-width: 1102px) {
  .image-president {
    padding-top: 110px;
  }
}

@media (max-width: 992px) {
  .president {
    flex-direction: column;
  }

  .message {
    width: 100%;
    margin-right: 0;
  }

  .image-president {
    padding: 20px 0 30px 0;
    justify-content: center;
    margin: auto;
  }

  .message-signature {
    text-align: center;
  }

  .signature-title {
    padding-right: 0;
  }

  .signature-organization {
    padding-right: 0;
  }

  .signature img {
    position: unset !important;
  }
}

/* modal create use */

.btn-gradient {
  background: linear-gradient(90deg, #4b6cb7, #182848);
  color: #fff;
  border: none;
  transition: 0.3s;
}
.btn-gradient:hover {
  background: linear-gradient(90deg, #182848, #4b6cb7);
}
.modal-content {
  background-color: #fff;
}
.modal-body .form-control {
  box-shadow: none;
  border: 1px solid #ddd;
  transition: 0.3s;
}
.modal-body .form-control:focus {
  border-color: #4b6cb7;
  box-shadow: 0 0 5px rgba(75, 108, 183, 0.3);
}

label.form-label.label {
  color: rgba(26, 54, 93);
}

:root {
  --primary-gradient: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
  --shadow-light: 0 10px 40px rgba(0, 0, 0, 0.08);
}

body {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

.bg-primary-gradient {
  background: var(--primary-gradient);
}

.card {
  background: #fff;
  border: none;
}

.form-control,
.form-select {
  border: 2px solid #e9ecef;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #4b6cb7;
  box-shadow: 0 0 0 0.25rem rgba(75, 108, 183, 0.15);
}

.btn-primary {
  background: var(--primary-gradient);
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-light);
}

.shadow-lg {
  box-shadow: var(--shadow-light) !important;
}

@media (max-width: 768px) {
  .card-body {
    padding: 1.5rem !important;
  }
}
