body{
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}
/* HERO (carrousel) en plein écran */
#carouselExampleCaptions .carousel-item img {
    height: 100vh; /* occupe tout l'écran */
    object-fit: cover; /* évite la déformation */
}

/* Overlay sombre */
.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* noir transparent */
    z-index: 1; /* sous le texte mais au-dessus de l'image */
}

/* Texte bien visible au centre */
#carouselExampleCaptions .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2; /* au-dessus de l’overlay */
    width: 80%; /* largeur du texte */
}

.carousel-caption h1{
    font-size: 4rem; /* Augmenter la taille pour une meilleure lisibilité */
    font-weight: 700; /* Police plus épaisse */
    margin-bottom: 15px;
    letter-spacing: 2px; /* Espacement entre les lettres */
    text-transform: uppercase; /* Mettre le titre en majuscules pour un effet plus professionnel */
}

.carousel-caption p {
    font-size: 1.8rem; /* Augmenter la taille pour mieux capter l'attention */
    font-weight: 400;
    line-height: 1.6; /* Espacement entre les lignes pour plus de clarté */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Ombre subtile pour la lisibilité */
}

/* Réduction de la taille des images pour une meilleure adaptation sur les petits écrans */
@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2.5rem;
    }
    .carousel-caption p {
        font-size: 1.2rem;
    }
}

/* Variables de couleurs */
        :root {
            --primary-color: #1a4f8b;
            --secondary-color: #f8b739;
            --accent-color: #e63946;
            --light-color: #f8f9fa;
            --dark-color: #343a40;
        }
        
:root {
  --primary-color: #1a4f8b;
  --secondary-color: #f8b739;
  --accent-color: #e63946;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
}



/* --- NAVBAR GLOBALE --- */
.navbar {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2c6cb0 100%) !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 0.8rem 1rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: white !important;
  display: flex;
  align-items: center;
}

.navbar-brand i {
  color: var(--secondary-color);
  font-size: 1.8rem;
  margin-right: 0.5rem;
}

/* --- LIENS --- */
.nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 500;
  padding: 0.8rem 1rem !important;
  margin: 0 0.2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link:focus {
  color: white !important;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 70%;
}

.nav-link.active {
  color: white !important;
  background-color: rgba(255, 255, 255, 0.15);
}

.nav-link.active::after {
  width: 70%;
  background: var(--secondary-color);
}

/* --- NAVBAR GLOBALE --- */
.navbar {
  /* ... autres styles ... */
  position: fixed; /* 👈 C'est ce qui la rend visible partout */
  width: 100%;
  top: 0;
  z-index: 1000; /* Assure qu'elle est au-dessus du contenu */
}

/* --- TOGGLER --- */
.navbar-toggler {
  border: none;
  color: white !important;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}


/* --- TOGGLER (Pour le masquer quand le menu de fermeture est affiché) --- */
/* Pas de changement ici, il est géré par JS dans show/hidden events */

/* --- CLOSE BUTTON (Rendre l'icône de fermeture visible en mobile) --- */
.close-menu {
  display: none; /* Masqué par défaut */
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  color: white;
  font-size: 1.6rem;
  z-index: 1050; 
  /* Utilisez une couleur cohérente, j'utilise une variable ici */
  background: var(--primary-color); 
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  /* Utiliser flex pour centrer l'icône dans le cercle */
  display: flex; 
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-menu:hover {
  background: #c1121f; /* Rouge pour l'action de fermeture */
  transform: scale(1.1);
}

/* --- MODE MOBILE --- */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: var(--primary-color);
    padding: 1.2rem;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin-top: 0.4rem;
    max-height: 85vh;
    overflow-y: auto;
    transition: all 0.3s ease;
  }

  /* quand menu ouvert (classe ajoutée via JS) */
  .navbar-collapse.mobile-menu-open {
    background-color: var(--primary-color);
    margin-top: 0.5rem;
    border-top: 3px solid var(--secondary-color);
    animation: slideDown 0.35s ease;
  }

  /* animation d'apparition */
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-15px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .navbar-collapse .nav-link {
    display: block;
    text-align: center;
    padding: 0.9rem 0 !important;
    font-size: 1.05rem;
  }
}

/* --- Quand menu ouvert via JS --- */
body.menu-open {
  overflow: hidden;
}

.navbar-toggler.hidden-by-js {
  display: none !important;
}


        
        /* Style pour la section hero */
        .hero-section {
            background: linear-gradient(rgba(26, 79, 139, 0.8), rgba(26, 79, 139, 0.9)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?ixlib=rb-4.0.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 6rem 0;
            text-align: center;
            margin-top: -2rem;
            margin-left: -2rem;
            margin-right: -2rem;
        }
        
        .footer {
            background-color: var(--primary-color);
            color: white;
            padding: 2rem 0;
            text-align: center;
            margin-left: -2rem;
            margin-right: -2rem;
            margin-bottom: -2rem;
        }

.carousel-inner button{
  
    background: linear-gradient(45deg, #0055ff, #0088ff);
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 94, 255, 0.3);
}
.about-section {
  padding: 80px 0;
  background: #f9f9f9;
  position: relative;
}

.about-section.alt {
  background: linear-gradient(135deg, #0362c5 0%, #004080 100%);
  color: #fff;
}

.about-section h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.about-section h1::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #ffcc00;
  display: block;
  margin-top: 10px;
  border-radius: 2px;
}

.about-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 400;
}

.about-section p span {
  color: #ffcc00;
  font-weight: 600;
}

.ima {
  width: 100%;
  border-radius: 25px;
  transition: transform 0.4s ease;
}

.ima:hover {
  transform: scale(1.05);
}

.shadow {
  box-shadow: 0px 15px 30px rgba(0,0,0,0.1);
}

/* Animation apparition */
.about-section .content {
  animation: fadeInUp 1.2s ease both;
}

@keyframes fadeInUp {
  0% {opacity: 0; transform: translateY(40px);}
  100% {opacity: 1; transform: translateY(0);}
}

/* SECTION Pourquoi nous choisir */
#why-choose-us {
  background: #f9f9ff;
  padding: 60px 20px;
  text-align: center;
}

#why-choose-us .section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #0362c5;
  font-weight: bold;
}

#why-choose-us .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

#why-choose-us .card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease-in-out;
}

#why-choose-us .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

#why-choose-us .card .icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

#why-choose-us .card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #0362c5;
}

#why-choose-us .card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.programs {
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #0362c5;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.program-card {
  position: relative;
  height: 300px;
  border-radius: 15px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.program-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.program-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.program-content {
  position: relative;
  padding: 20px;
  color: #fff;
  text-align: left;
  z-index: 2;
}

.program-content h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.program-content p {
  font-size: 0.95rem;
  line-height: 1.4;
}

/* Section Chiffres Clés */
.stats-section {
  background: linear-gradient(135deg, #0362c5, #4dabf7);
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}

.stats-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: bold;
  letter-spacing: 1px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 40px 20px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.stat-box h3 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.stat-box p {
  font-size: 1.1rem;
  font-weight: 500;
}

/* ==================================== */
/* SECTION CTA VIDÉO PREMIUM */
/* ==================================== */

.cta-video-premium {
  position: relative;
  width: 100%;
  /* Utiliser une hauteur plus gérée, Vh peut être trop agressif sur mobile */
  height: 600px; 
  min-height: 80vh; 
  overflow: hidden;
  display: flex;
  align-items: center; /* Centrer verticalement le contenu */
  justify-content: center;
  text-align: center;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.cta-overlay-premium {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Dégradé subtil pour un look plus riche et pour améliorer la lisibilité */
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cta-content-premium {
  color: #fff;
  max-width: 900px;
  /* Ajout d'une ombre portée subtile au texte pour le faire ressortir de la vidéo */
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  /* Utiliser la puissance de la flexbox pour le contenu si nécessaire, 
     mais ici, le positionnement par le parent est suffisant */
}

/* Slogan/Pré-titre */
.cta-slogan {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
}

.cta-content-premium h2 {
  font-size: 3.5rem; /* Augmentation de la taille pour un impact maximal */
  font-weight: 900; /* Très gras et percutant */
  margin-bottom: 30px;
  line-height: 1.2;
}

.cta-text-body {
  font-size: 1.35rem; /* Texte plus grand pour la lisibilité */
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Bouton CTA - Le cœur de la section */
.cta-btn-premium {
  /* Arrière-plan plus vibrant et contrasté, utilisant la couleur primaire de l'école */
  background: #ffc107; /* Jaune ou orange vif pour contraster avec le bleu/vidéo */
  color: #2c3e50; /* Texte foncé pour un contraste maximal sur le jaune */
  padding: 16px 40px; /* Plus grand pour plus d'impact */
  border-radius: 50px; /* Effet "pill" (pilule) */
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  /* Ajout d'une ombre pour un effet 3D subtil */
  box-shadow: 0 8px 15px rgba(255, 193, 7, 0.4);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-btn-premium:hover {
  background: #e0a800; /* Assombrissement au survol */
  color: #fff;
  transform: translateY(-3px); /* Petit soulèvement au survol */
  box-shadow: 0 12px 20px rgba(255, 193, 7, 0.6);
}

/* Règle d'adaptation pour les écrans plus petits */
@media (max-width: 768px) {
    .cta-video-premium {
        min-height: 60vh;
    }
    .cta-content-premium h2 {
        font-size: 2.5rem;
    }
    .cta-text-body {
        font-size: 1.1rem;
    }
}

.testimonials {
    padding: 100px 0; /* Plus d'espace vertical */
    /* Dégradé de fond très léger pour un look épuré */
    background: linear-gradient(to right, #ffffff 0%, #f4f7fa 100%);
    text-align: center;
}

.section-title {
    font-size: 2.8rem; /* Titre plus grand */
    font-weight: 800; /* Plus de poids pour le style */
    margin-bottom: 60px;
    color: #2c3e50; /* Couleur plus foncée et élégante */
    letter-spacing: -0.5px; /* Pour une meilleure lisibilité */
    position: relative;
}

.section-title::after {
    content: "";
    width: 80px; /* Trait plus long */
    height: 5px; /* Trait plus épais */
    background: #0362c5; /* Utilisation de la couleur primaire */
    display: block;
    margin: 20px auto 0;
    border-radius: 3px;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px; /* Coins légèrement moins arrondis */
    padding: 35px 25px; /* Plus de padding */
    /* Ombre plus douce et plus profonde pour un effet 3D subtil */
    box-shadow: 0 15px 30px rgba(44, 62, 80, 0.1); 
    border: 1px solid #eef5ff; /* Petite bordure très claire */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); /* Transition plus sophistiquée */
    height: 100%; /* Assure que toutes les cartes ont la même hauteur dans une rangée */
}

.testimonial-card:hover {
    /* Effet de survol plus marqué et élégant */
    transform: translateY(-15px); 
    box-shadow: 0 25px 45px rgba(44, 62, 80, 0.15); /* Ombre accentuée au survol */
}

.parent-photo {
    width: 120px; /* Photo légèrement plus petite */
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 25px;
    /* Bordure double effet avec couleur primaire */
    border: 5px solid #0362c5; 
    padding: 3px; /* Ajoute un petit espace entre la bordure et l'image */
    box-shadow: 0 0 0 5px rgba(3, 98, 197, 0.1); /* Anneau lumineux externe */
}

.testimonial-card p {
    font-size: 1.1rem; /* Texte de citation légèrement plus grand */
    font-style: italic;
    color: #555;
    line-height: 1.8; 
    margin-bottom: 10px;
    position: relative;
    text-align: center; /* Alignez le texte à gauche pour une meilleure lecture */
}

/* Ajout d'une icône de citation pour un meilleur visuel */
.testimonial-card p::before {
    content: "\201C"; /* Guillemet ouvrant typographique */
    font-size: 4rem; 
    color: rgba(3, 98, 197, 0.15); /* Couleur très transparente */
    position: absolute;
    left: -10px;
    top: -10px;
    line-height: 1;
    z-index: 1;
}

.testimonial-card h5 {
    margin-top: 20px;
    font-weight: 700;
    color: #0362c5; 
    text-transform: uppercase;
    font-size: 1em;
    letter-spacing: 1px;
    text-align: right; /* Alignez le nom de l'auteur à droite */
}

/* Espace entre les cartes en version mobile */
@media (max-width: 767px) {
  .testimonial-card {
    margin-bottom: 25px;
  }
}

/* Styles pour la fonctionnalité "Voir plus" */

.testimonial-text {
    overflow: hidden; /* Masque le contenu qui dépasse */
    transition: max-height 0.3s ease-out; /* Ajoute une transition douce */
    margin-bottom: 5px; /* Petit espace avant le bouton */
    padding-bottom: 0; /* Assurez-vous qu'il n'y a pas de padding qui affecte la hauteur */
}

.collapse-text {
    /* Hauteur initiale. 
       Ajustez cette valeur pour n'afficher que les premières lignes. */
    max-height: 120px; 
}

.expand-text {
    /* Hauteur illimitée pour afficher tout le texte */
    max-height: 1000px; /* Une valeur large est OK pour simuler l'affichage complet */
}

.read-more-btn {
    display: block;
    text-align: left; /* Aligner le lien à gauche après le texte aligné à gauche */
    color: #0362c5; /* Utiliser la couleur primaire du design */
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95em;
    margin-top: 5px;
    text-decoration: underline; /* Ajoute un soulignement pour l'effet de lien */
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: #004d99; /* Changement de couleur au survol */
}

.testimonial-card p:last-of-type {
    /* Ceci peut être nécessaire si votre CSS d'origine ajoute une marge au dernier paragraphe */
    margin-bottom: 0;
}


.map-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 450px;
            margin: 0 auto;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

#backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  background: #0362c5;
  color: #fff;
  border: none;
  padding: 15px 18px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  display: none; /* caché au début */
  transition: background 0.3s ease, transform 0.3s ease;
}

#backToTop:hover {
  background: #024a94;
  transform: scale(1.1);
}

/*PAGE A PRPS*/
.about-banner {
  background: url('images/abuu.jpg') center/cover no-repeat;
  height: 60vh; /* prend toute la hauteur de l’écran */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.about-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* rend le texte lisible */
}

.about-banner .content {
  position: relative;
  z-index: 1;
}

.about-banner h1 {
  font-size: 3rem;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .about-banner {
    height: 50vh; /* réduit un peu sur mobile */
    background-attachment: scroll; /* éviter bug sur certains mobiles */
  }
  .about-banner h1 {
    font-size: 2rem;
  }
}



footer {
    background: #053a74;
    color: #ffffff;
    padding: 60px 0 30px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(45deg, #FFA500, #FFD700);
    transform: rotate(-2deg);
    z-index: 0;
}

footer .container {
    position: relative;
    z-index: 1;
}

footer h4 {
    color: #FFD700;
    font-size: 1.4em;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer h4::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, transparent);
}

footer p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 15px;
    font-weight: 300;
}

footer button {
    background: linear-gradient(45deg, #FFA500, #FFD700);
    color: #053a74;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

footer button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,215,0,0.5);
}

.social-icons a {
    display: inline-block;
    color: #fff;
    padding: 10px 20px;
    margin: 8px 0;
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 200px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.social-icons a:hover::before {
    left: 100%;
}

.social-icons a:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(10px);
}

.social-icons i {
    margin-right: 10px;
    font-size: 1.2em;
    vertical-align: middle;
}

footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

footer a:hover {
    color: #FFD700;
}

footer a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #FFD700;
    transition: width 0.3s ease;
}

footer a:hover::after {
    width: 100%;
}

.c {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,215,0,0.2);
    color: rgba(255,255,255,0.6);
    font-size: 0.9em;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    footer::before {
        top: -30px;
        height: 60px;
    }
    
    footer .col-md-3 {
        margin-bottom: 40px;
        text-align: center;
    }
    
    footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons a {
        max-width: 250px;
        margin: 8px auto;
    }
}

/*nnnnn*/
