/* SK SECURITY - CSS complémentaire (avec Tailwind CDN)
   VERSION THÈME CLAIR COMPLET
   ----------------------------------------------- */

/* ===== Overrides des classes Tailwind sombres → clair ===== */

/* Fond global sombre => fond blanc */
.bg-brand-dark {
  background-color: #ffffff !important;
}

/* Header sticky : fond blanc OPAQUE + légère ombre */
.bg-brand-dark\/90 {
  background-color: #ffffff !important;
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(15,23,42,0.05);
}

/* Footer et éléments avec bg-black → footer noir élégant */
.bg-black {
  background-color: #020617 !important;
}

/* Sections très sombres remplacées par un gris très clair */
.bg-slate-950 {
  background-color: #f9fafb !important;
}

/* Bordures très sombres adoucies */
.border-slate-800 {
  border-color: #e5e7eb !important;
}

/* Texte très clair → texte foncé lisible */
.text-slate-100,
.text-slate-200,
.text-slate-300 {
  color: #0f172a !important;
}

/* Ton moyen pour l’info secondaire */
.text-slate-400 {
  color: #4b5563 !important;
}

.text-slate-500 {
  color: #6b7280 !important;
}

/* S’assurer que même les 600/700 restent bien lisibles sur blanc */
.text-slate-600,
.text-slate-700,
.text-slate-800,
.text-slate-900 {
  color: #0f172a !important;
}

/* ===== Thème clair global + fond animé ===== */

body {
  background-color: #ffffff;
  color: #0f172a;
  position: relative;      /* pour le fond animé */
  overflow-x: hidden;      /* éviter un scroll horizontal */
}

/* Fond blanc animé : halos bleus très légers */
body::before {
  content: "";
  position: fixed;
  inset: -140px;
  background:
    radial-gradient(circle at 10% 20%, rgba(43,130,194,0.08), transparent 55%),
    radial-gradient(circle at 85% 0%, rgba(56,189,248,0.08), transparent 55%),
    radial-gradient(circle at 50% 100%, rgba(148,163,184,0.06), transparent 55%);
  opacity: 1;
  z-index: -1;
  pointer-events: none;
  animation: sk-bg-move 24s ease-in-out infinite alternate;
}

/* Animation douce du fond */
@keyframes sk-bg-move {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-40px, -25px, 0) scale(1.02);
  }
  100% {
    transform: translate3d(40px, 20px, 0) scale(1);
  }
}

/* Légère réaction au survol global */
body:hover::before {
  opacity: 1.05;
  filter: brightness(1.04);
}

/* HERO : fond dégradé clair (remplace l’ancien dégradé noir) */
.sk-hero > .absolute.inset-0 {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f9fafb 35%,
    #e5f3ff 100%
  ) !important;
}

/* Bouton burger */
.sk-burger-line {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background-color: #0f172a;
  border-radius: 999px;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

#sk-menu-toggle:hover .sk-burger-line {
  background-color: #2B82C2;
  transform: scaleX(1.1);
}

/* HERO bloc global */
.sk-hero {
  position: relative;
  min-height: 70vh;
}

/* Frame du slider */
.sk-hero-frame {
  position: relative;
  min-height: 380px;
}

/* Slides */
.sk-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.sk-slide-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

/* Texte du HERO bien lisible */
.sk-hero h1,
.sk-hero h2,
.sk-hero p,
.sk-hero li {
  color: #0f172a !important;
}

/* Photos hero */
.sk-hero-photo {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(148,163,184,0.35);
  box-shadow: 0 18px 40px rgba(15,23,42,0.18);
  background-color: #ffffff;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.sk-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.sk-hero-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(15,23,42,0.22);
  border-color: rgba(56,189,248,0.8);
}

.sk-hero-photo:hover img {
  transform: scale(1.04);
  filter: saturate(1.12);
}

/* Petite carte stats dans le hero */
.sk-hero-card {
  position: absolute;
  bottom: -14px;
  left: 10%;
  right: 10%;
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid rgba(209,213,219,0.9);
  padding: 0.8rem 1rem;
  box-shadow: 0 18px 40px rgba(15,23,42,0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.sk-hero-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 60px rgba(15,23,42,0.25);
  border-color: rgba(56,189,248,0.7);
  background: radial-gradient(circle at top left, #E5F3FF, #ffffff 55%);
}

/* Badge sur le slide 3 */
.sk-hero-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 0.65rem 0.8rem;
  border-radius: 0.9rem;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(209,213,219,0.9);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  box-shadow: 0 14px 32px rgba(15,23,42,0.16);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.sk-hero-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(56,189,248,0.8);
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(15,23,42,0.22);
}

/* Tag sur le slide 2 */
.sk-small-tag {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 0.7rem 0.9rem;
  border-radius: 0.9rem;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(209,213,219,0.9);
  box-shadow: 0 14px 32px rgba(15,23,42,0.16);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.sk-small-tag:hover {
  transform: translateY(-2px);
  border-color: rgba(56,189,248,0.8);
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(15,23,42,0.22);
}

/* Animations flottantes */
.sk-float {
  animation: sk-float 8s ease-in-out infinite;
}

.sk-float-slow {
  animation: sk-float 12s ease-in-out infinite;
}

@keyframes sk-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* BANDEAU PARALLAX (Présence sur le terrain) */
.sk-parallax-band {
  position: relative;
  background-image: url('../assets/img/parallax-agents.jpg'); /* remplace par ton image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.sk-parallax-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.3), rgba(15,23,42,0.25));
}

/* Texte de cette section bien visible */
.sk-parallax-band h2,
.sk-parallax-band p,
.sk-parallax-band li,
.sk-parallax-band span {
  color: #0f172a !important;
}

/* Bloc intérieur avec effet hover */
.sk-parallax-inner {
  border-radius: 1.25rem;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 22px 60px rgba(15,23,42,0.18);
  padding: 1.75rem 1.75rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.sk-parallax-inner:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.99);
  box-shadow: 0 32px 80px rgba(15,23,42,0.24);
}

/* Image de cette section */
.sk-parallax-photo {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(209,213,219,0.9);
  box-shadow: 0 18px 45px rgba(15,23,42,0.18);
  background-color: #ffffff;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.sk-parallax-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.sk-parallax-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 65px rgba(15,23,42,0.24);
  border-color: rgba(56,189,248,0.8);
}

.sk-parallax-photo:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

/* Badges (petites pastilles dans le hero) */
.sk-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background-color: #ffffff;
  border: 1px solid rgba(209,213,219,0.9);
  color: #0f172a;
  box-shadow: 0 8px 20px rgba(15,23,42,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.sk-badge-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #22c55e, #16a34a);
}

.sk-badge:hover {
  transform: translateY(-1px);
  background-color: #f9fafb;
  border-color: rgba(56,189,248,0.7);
  box-shadow: 0 12px 28px rgba(15,23,42,0.16);
}

/* Dots / flèches du slider */
.sk-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background-color: rgba(148,163,184,0.6);
  cursor: pointer;
  transition: all 0.25s ease;
}

.sk-dot-active {
  background-color: #2B82C2;
  width: 20px;
}

.sk-dot:hover {
  transform: scale(1.2);
  background-color: #38bdf8;
}

.sk-arrow-btn {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.6);
  background: #ffffff;
  color: #0f172a;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 16px rgba(15,23,42,0.12);
}

.sk-arrow-btn:hover {
  border-color: #2B82C2;
  color: #1f2937;
  transform: translateY(-1px) scale(1.05);
  box-shadow: 0 12px 24px rgba(15,23,42,0.18);
}

/* === Cartes services AVEC IMAGES === */
.sk-service-card {
  border-radius: 1rem;
  border: 1px solid rgba(209,213,219,0.9);
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15,23,42,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.sk-service-thumb {
  position: relative;
  height: 170px;
  overflow: hidden;
}

.sk-service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.sk-service-body {
  padding: 0.9rem 1rem 1.1rem;
}

.sk-service-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #0f172a;
}

.sk-service-card p {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #4b5563;
}

.sk-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15,23,42,0.18);
  border-color: rgba(56,189,248,0.7);
  background: radial-gradient(circle at top left, rgba(56,189,248,0.10), #ffffff 70%);
}

.sk-service-card:hover .sk-service-thumb img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

/* === Cartes "secteurs" (types de sites sécurisés) === */
.sk-sector-card {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(209,213,219,0.9);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15,23,42,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.sk-sector-photo {
  height: 170px;
  overflow: hidden;
}

.sk-sector-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.sk-sector-body {
  padding: 0.9rem 1rem 1.1rem;
}

.sk-sector-body h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: #0f172a;
}

.sk-sector-body p {
  font-size: 0.85rem;
  color: #4b5563;
}

.sk-sector-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(15,23,42,0.18);
  border-color: rgba(56,189,248,0.8);
  background: radial-gradient(circle at top left, rgba(56,189,248,0.10), #ffffff 70%);
}

.sk-sector-card:hover .sk-sector-photo img {
  transform: scale(1.06);
  filter: saturate(1.08);
}

/* === Cartes CTA + photos "Pourquoi / Recrutement" === */
.sk-cta-card {
  border-radius: 1.25rem;
  border: 1px solid rgba(209,213,219,0.9);
  background: #ffffff;
  padding: 1.5rem 1.5rem 1.75rem;
  box-shadow: 0 18px 45px rgba(15,23,42,0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.sk-cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 65px rgba(15,23,42,0.16);
  border-color: rgba(56,189,248,0.8);
  background: radial-gradient(circle at top, rgba(43,130,194,0.10), #ffffff 70%);
}

.sk-why-photo {
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(209,213,219,0.9);
  box-shadow: 0 18px 45px rgba(15,23,42,0.10);
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.sk-why-photo img {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.sk-why-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 65px rgba(15,23,42,0.18);
  border-color: rgba(56,189,248,0.8);
}

.sk-why-photo:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

/* Icône check (si utilisé) */
.sk-check-icon {
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #22c55e, #16a34a);
  box-shadow: 0 0 0 4px rgba(34,197,94,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

li:hover .sk-check-icon {
  transform: scale(1.05);
  box-shadow: 0 0 0 6px rgba(34,197,94,0.22);
}

/* Animations d'apparition au scroll */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-left"] {
  transform: translateX(24px);
}

.is-visible {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

/* Surligneur animé automatique pour les h2 des blocs animés */
[data-animate] h2 {
  position: relative;
}

[data-animate] h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 3px;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #2B82C2, #38bdf8);
  transition: width 0.5s ease;
}

[data-animate].is-visible h2::after {
  width: 120px;
}

/* NAV & liens globaux */
header nav a {
  position: relative;
  padding-bottom: 2px;
  transition: color 0.25s ease, transform 0.25s ease;
}

header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #2B82C2, #38bdf8);
  border-radius: 999px;
  transition: width 0.25s ease;
}

header nav a:hover {
  color: #38bdf8;
  transform: translateY(-1px);
}

header nav a:hover::after {
  width: 100%;
}

/* Logo hover */
header a[href="index.php"] img {
  transition: transform 0.25s ease, filter 0.25s ease;
}

header a[href="index.php"]:hover img {
  transform: translateY(-1px) scale(1.03);
  filter: drop-shadow(0 0 10px rgba(56,189,248,0.7));
}

/* Boutons arrondis globaux (CTA) */
a.rounded-full,
button.rounded-full {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

a.rounded-full:hover,
button.rounded-full:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(15,23,42,0.20);
}

/* Footer liens (footer clair éventuel) */
footer a {
  transition: color 0.25s ease;
}

footer a:hover {
  color: #0f172a;
}

/* Footer noir spécifiquement (bg-black) */
footer.bg-black {
  color: #e5e7eb;
}

footer.bg-black p,
footer.bg-black span,
footer.bg-black a,
footer.bg-black .text-slate-200,
footer.bg-black .text-slate-300,
footer.bg-black .text-slate-400,
footer.bg-black .text-slate-500 {
  color: #e5e7eb !important;
}

footer.bg-black a:hover {
  color: #e5f3ff !important;
}

/* === ICONES ANIMÉES (Mission / Vision / Valeurs / Repères) === */

.sk-icon-badge{
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #2B82C2, #0f172a);
  border: 1px solid rgba(148,163,184,0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  box-shadow: 0 14px 36px rgba(15,23,42,0.20);
  animation: sk-icon-float 3s ease-in-out infinite;
}

.sk-icon-badge i{
  font-size: 1.4rem;
  color: #E5F3FF;
  animation: sk-icon-wiggle 4s ease-in-out infinite;
}

/* Variante plus petite pour les chiffres clés */
.sk-icon-badge.sk-icon-badge-sm{
  width: 40px;
  height: 40px;
  box-shadow: 0 10px 28px rgba(15,23,42,0.18);
}

.sk-icon-badge.sk-icon-badge-sm i{
  font-size: 1.2rem;
}

/* Flottement léger de la bulle */
@keyframes sk-icon-float{
  0%,100%{
    transform: translateY(0) scale(1);
  }
  25%{
    transform: translateY(-3px) scale(1.03);
  }
  50%{
    transform: translateY(0) scale(1.02);
  }
  75%{
    transform: translateY(3px) scale(1.01);
  }
}

/* Petit mouvement de l’icône (bascule) */
@keyframes sk-icon-wiggle{
  0%,100%{
    transform: rotate(0deg);
  }
  20%{
    transform: rotate(-6deg);
  }
  40%{
    transform: rotate(4deg);
  }
  60%{
    transform: rotate(-3deg);
  }
  80%{
    transform: rotate(2deg);
  }
}

/* === Icônes animées "Pourquoi nous choisir" === */
.sk-feature-icon{
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 9999px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 30% 20%, #E5F3FF, #2B82C2);
  color: #0b1120;
  box-shadow: 0 8px 24px rgba(15,23,42,0.16);
  font-size: 1.35rem;
  animation: sk-icon-breath 2.2s infinite ease-in-out;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sk-feature-icon i{
  line-height: 1;
}

/* Effet au survol de la ligne */
li:hover .sk-feature-icon{
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 32px rgba(15,23,42,0.20);
}

/* Animation "respiration" douce */
@keyframes sk-icon-breath{
  0%, 100%{
    transform: scale(1);
    opacity: 0.95;
  }
  50%{
    transform: scale(1.08);
    opacity: 1;
  }
}

/* Réduire la hauteur du hero par le bas */
.sk-hero > .max-w-6xl{
  padding-bottom: 2.9rem;
}

@media (min-width: 768px){
  .sk-hero > .max-w-6xl{
    padding-bottom: 3rem;
  }
}

@media (min-width: 1024px){
  .sk-hero > .max-w-6xl{
    padding-bottom: 3.5rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .sk-hero-frame {
    min-height: 420px;
  }

  .sk-hero-card {
    left: 6%;
    right: 6%;
  }

  .sk-parallax-band {
    background-attachment: scroll; /* éviter les bugs sur mobile */
  }
}

@media (max-width: 640px) {
  .sk-hero {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .sk-slide {
    transform: translateY(24px);
  }
}

/* ===== BOUTON WHATSAPP FLOTTANT (fond blanc) ===== */

.sk-whatsapp-fab{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #22c55e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(22,163,74,0.45);
  z-index: 50;
  cursor: pointer;
  animation: sk-pulse-whatsapp 1.6s infinite;
}

.sk-whatsapp-fab i{
  font-size: 1.6rem;
}

/* Animation de pulsation/clignotement doux */
@keyframes sk-pulse-whatsapp{
  0%{
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
  }
  60%{
    transform: scale(1.06);
    box-shadow: 0 0 0 14px rgba(34,197,94,0);
  }
  100%{
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(34,197,94,0);
  }
}

/* Petits textes bleu pâle (PROTECTION CONTINUE 24H/24, etc.) */
.text-brand-light {
  color: #64748b !important; /* gris-bleu bien lisible */
}

/* Toutes les variantes text-slate-xxx avec /xx trop claires */
[class*="text-slate-100\/"],
[class*="text-slate-200\/"],
[class*="text-slate-300\/"] {
  color: #4b5563 !important;   /* gris moyen lisible */
}
/* ===== FOOTER NOIR ===== */

footer.bg-black{
  background-color: #020617 !important; /* noir bleuté */
  color: #e5e7eb !important;
}

.footer-title{
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: #e5e7eb;
}

.text-footer{
  color: #cbd5f5;
  font-size: 0.8rem;
}

.text-footer-muted{
  color: #9ca3af;
  font-size: 0.8rem;
}

.footer-link{
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #cbd5f5;
  font-size: 0.8rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link::before{
  content: "•";
  font-size: 0.7rem;
  opacity: 0.7;
}

.footer-link:hover{
  color: #38bdf8;
  transform: translateX(2px);
}
