/* ============================================================
   eduFa Global – Full Stylesheet (responsive)
   ============================================================ */

:root {
  --navy: #0a2540;
  --navy-light: #123a5c;
  --accent: #f97316;
  --accent-hover: #ea580c;
  --text: #1e293b;
  --muted: #64748b;
  --bg-light: #f8fafc;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 8px 30px rgba(10, 37, 64, 0.08);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', 'Roboto', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ---------- NAVBAR ---------- */
.navbar {
  background: var(--white) !important;
  box-shadow: 0 2px 16px rgba(10, 37, 64, 0.06);
  padding: 0.6rem 0;
  z-index: 1030;
}

.navbar .container {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.navbar-brand {
  margin-right: 1rem;
  flex-shrink: 0;
}

.header-logo {
  height: 44px !important;
  width: auto !important;
  max-width: 160px;
  object-fit: contain;
}

.navbar-nav .nav-link {
  color: var(--navy) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.5rem 0.75rem !important;
  white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent) !important;
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow);
  border-radius: 10px;
  padding: 0.5rem;
  min-width: 200px;
}

.dropdown-item {
  border-radius: 8px;
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  color: var(--navy);
}

.dropdown-item:hover {
  background: #fff7ed;
  color: var(--accent);
}

.btn-book {
  background: var(--accent) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px;
  padding: 0.5rem 1.2rem !important;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-book:hover {
  background: var(--accent-hover) !important;
  color: #fff !important;
}

.navbar-toggler {
  border: 1px solid #e2e8f0;
  padding: 0.35rem 0.55rem;
}

.navbar-toggler:focus { box-shadow: none; }

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230a2540' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0a2540 0%, #1a4a7a 50%, #0d3b66 100%);
  color: #fff;
  padding: 4rem 0 5rem;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}

.hero .container { position: relative; z-index: 2; }

.hero h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero p {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  opacity: 0.9;
  max-width: 520px;
}

.hero-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0;
}

.hero-flags span {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.hero-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.hero-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Floating service cards under hero */
.service-float {
  margin-top: -2.5rem;
  position: relative;
  z-index: 10;
  padding-bottom: 1rem;
}

.service-float .card {
  border: none;
  border-radius: 14px;
  box-shadow: var(--shadow);
  text-align: center;
  padding: 1.25rem 0.75rem;
  height: 100%;
  transition: transform 0.25s;
}

.service-float .card:hover { transform: translateY(-4px); }

.service-float .card i {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.service-float .card h6 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

/* ---------- SECTIONS ---------- */
.section {
  padding: 4rem 0;
}

.section.bg-light { background: var(--bg-light); }

.section-badge {
  display: inline-block;
  background: #fff7ed;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

/* Feature / step cards */
.feature-card,
.step-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow);
  height: 100%;
  border: 1px solid #f1f5f9;
  transition: transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover,
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(10, 37, 64, 0.12);
}

.feature-card .icon,
.step-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff7ed;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-card h5,
.step-card h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.feature-card p,
.step-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

/* Step number */
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

/* Awards / gallery */
.award-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.award-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Success stories */
.story-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
}

.story-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.story-card .body {
  padding: 1.25rem;
}

.story-card h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

.story-card p {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Why choose us */
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.why-item .icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: #fff7ed;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.why-item h6 {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.why-item p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

/* Blog cards */
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform 0.25s;
}

.blog-card:hover { transform: translateY(-4px); }

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card .body { padding: 1.25rem; }

.blog-card h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
}

/* Offices */
.office-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  height: 100%;
  border-left: 4px solid var(--accent);
}

.office-card h5 {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.office-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--navy), #1a4a7a);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.cta-band .btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.8rem;
  font-weight: 600;
}

.cta-band .btn:hover { background: var(--accent-hover); color: #fff; }

/* Page header (inner pages) */
.page-header {
  background: linear-gradient(135deg, var(--navy), #1a4a7a);
  color: #fff;
  padding: 3rem 0 2.5rem;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
}

.page-header p {
  opacity: 0.85;
  margin: 0;
}

/* Contact form */
.contact-form .form-control,
.contact-form .form-select {
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  padding: 0.7rem 1rem;
}

.contact-form .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.btn-primary-custom {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.8rem;
  font-weight: 600;
}

.btn-primary-custom:hover {
  background: var(--accent-hover);
  color: #fff;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 3.5rem 0 0;
}

.footer h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer a {
  color: rgba(255,255,255,0.7);
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}

.footer a:hover { color: var(--accent); }

.footer p.small { font-size: 0.88rem; line-height: 1.6; }

.footer-logo {
  height: 60px !important;
  width: auto !important;
  max-width: 200px;
  object-fit: contain;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  background: #25d366;
  color: #fff !important;
  border-radius: 50px;
  padding: 0.7rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  color: #fff !important;
}

.whatsapp-float i { font-size: 1.4rem; }

/* ============================================================
   Horizontal infinite scroll (countries + universities)
   ============================================================ */
.countries-section,
.universities-section {
  overflow: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
}

.hs-viewport {
  overflow: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
  position: relative;
  display: block !important;
}

.hs-track {
  display: block !important;
  width: max-content !important;
  white-space: nowrap !important;
  font-size: 0;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.hs-set {
  display: inline-block !important;
  white-space: nowrap !important;
  vertical-align: top;
  font-size: 0;
}

.hs-card {
  display: inline-block !important;
  vertical-align: top;
  position: relative;
  width: 260px !important;
  height: 170px !important;
  margin-right: 14px !important;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none !important;
  box-shadow: 0 6px 18px rgba(10, 37, 64, 0.12);
  font-size: 16px;
}

.hs-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  max-width: none !important;
  border: 0;
}

.hs-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  background: linear-gradient(to top, rgba(10,37,64,0.92), transparent);
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hs-logo {
  display: inline-block !important;
  vertical-align: middle;
  width: 130px !important;
  height: 72px !important;
  margin-right: 18px !important;
  background: #fff;
  border: 1px solid #e8eef5;
  border-radius: 12px;
  padding: 10px 12px;
  box-sizing: border-box;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  text-align: center;
  line-height: 52px;
  font-size: 0;
}

.hs-logo img {
  max-width: 100% !important;
  max-height: 50px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  vertical-align: middle;
  display: inline-block !important;
}

.hs-left {
  animation: hsLeft 40s linear infinite;
  -webkit-animation: hsLeft 40s linear infinite;
}
.hs-right {
  animation: hsRight 40s linear infinite;
  -webkit-animation: hsRight 40s linear infinite;
}
.hs-left.hs-slow {
  animation-duration: 55s;
  -webkit-animation-duration: 55s;
}
.hs-right.hs-slow {
  animation-duration: 55s;
  -webkit-animation-duration: 55s;
}

.hs-viewport:hover .hs-track {
  animation-play-state: paused;
  -webkit-animation-play-state: paused;
}

@keyframes hsLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes hsRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
@-webkit-keyframes hsLeft {
  from { -webkit-transform: translateX(0); }
  to   { -webkit-transform: translateX(-50%); }
}
@-webkit-keyframes hsRight {
  from { -webkit-transform: translateX(-50%); }
  to   { -webkit-transform: translateX(0); }
}

/* ============================================================
   RESPONSIVE – Tablet
   ============================================================ */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-top: 0.75rem;
  }

  .navbar-nav .nav-link {
    padding: 0.6rem 0.5rem !important;
  }

  .btn-book {
    margin-top: 0.75rem;
    display: inline-block;
    width: 100%;
    text-align: center;
  }

  .hero {
    padding: 3rem 0 4rem;
    min-height: auto;
    text-align: center;
  }

  .hero p { margin-left: auto; margin-right: auto; }

  .hero-flags { justify-content: center; }

  .hero-img { margin-top: 2rem; }

  .service-float { margin-top: -1.5rem; }

  .section { padding: 3rem 0; }
}

/* ============================================================
   RESPONSIVE – Phone
   ============================================================ */
@media (max-width: 767px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw;
  }

  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .header-logo {
    height: 36px !important;
    max-width: 130px;
  }

  .navbar {
    padding: 0.45rem 0;
  }

  .hero {
    padding: 2.5rem 0 3.5rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.92rem;
  }

  .hero-flags span {
    font-size: 0.68rem;
    padding: 0.25rem 0.55rem;
  }

  .service-float {
    margin-top: -1.25rem;
  }

  .service-float .card {
    padding: 1rem 0.5rem;
    margin-bottom: 0.75rem;
  }

  .service-float .card h6 {
    font-size: 0.78rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .section-subtitle {
    font-size: 0.88rem;
  }

  .feature-card,
  .step-card {
    padding: 1.25rem 1rem;
    margin-bottom: 0.75rem;
  }

  .award-img img {
    height: 150px;
  }

  .story-card img {
    height: 160px;
  }

  .blog-card img {
    height: 150px;
  }

  .cta-band {
    padding: 2.5rem 0;
  }

  .cta-band h2 {
    font-size: 1.25rem;
  }

  .page-header {
    padding: 2.25rem 0 1.75rem;
  }

  .page-header h1 {
    font-size: 1.4rem;
  }

  /* Footer mobile */
  .footer {
    padding: 2.5rem 0 0;
    text-align: center;
  }

  .footer .col-6 {
    margin-bottom: 1.5rem;
  }

  .footer .col-lg-4,
  .footer .col-lg-3,
  .footer .col-lg-2 {
    margin-bottom: 1.75rem;
  }

  .footer-logo {
    height: 50px !important;
    margin-left: auto;
    margin-right: auto;
  }

  .footer .d-flex.gap-3 {
    justify-content: center;
  }

  .footer a {
    display: inline-block;
    margin: 0 0.4rem 0.35rem;
  }

  .footer-bottom {
    margin-top: 1.5rem;
    padding: 1rem 0;
    font-size: 0.75rem;
  }

  /* WhatsApp */
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    padding: 0.65rem 0.9rem;
    font-size: 0.82rem;
  }

  .whatsapp-float span {
    display: none; /* icon only on very small screens */
  }

  /* Horizontal scroll mobile */
  .hs-card {
    width: 200px !important;
    height: 135px !important;
    margin-right: 10px !important;
  }

  .hs-card span {
    font-size: 12px;
    padding: 10px 12px;
  }

  .hs-logo {
    width: 100px !important;
    height: 58px !important;
    margin-right: 12px !important;
    padding: 8px 10px;
    line-height: 42px;
  }

  .hs-logo img {
    max-height: 40px !important;
  }

  .hs-left, .hs-right {
    animation-duration: 30s;
    -webkit-animation-duration: 30s;
  }

  .hs-left.hs-slow, .hs-right.hs-slow {
    animation-duration: 42s;
    -webkit-animation-duration: 42s;
  }

  /* Prevent any element from causing horizontal overflow */
  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* Extra small phones */
@media (max-width: 400px) {
  .header-logo {
    height: 32px !important;
    max-width: 110px;
  }

  .hero h1 {
    font-size: 1.4rem;
  }

  .hs-card {
    width: 175px !important;
    height: 120px !important;
  }

  .service-float .card h6 {
    font-size: 0.72rem;
  }
}

/* ---------- Hero slides (background image style) ---------- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
  padding: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,37,64,0.88) 0%, rgba(10,37,64,0.55) 60%, rgba(10,37,64,0.3) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-content h1 {
  font-size: clamp(1.7rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
}

.hero-content .lead {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  opacity: 0.92;
  margin-bottom: 1.5rem;
  max-width: 500px;
  color: #fff;
}

.btn-hero {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.8rem;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s;
}

.btn-hero:hover {
  background: var(--accent-hover);
  color: #fff !important;
}

/* Floating service cards */
.service-card-float {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform 0.25s, box-shadow 0.25s;
  color: var(--navy);
}

.service-card-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10,37,64,0.12);
  color: var(--navy);
}

.service-card-float .service-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: #fff7ed;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.service-card-float h5 {
  font-size: 0.88rem;
  font-weight: 600;
  margin: 0;
  color: var(--navy);
}

.service-card-float .arrow {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Dest cards (legacy) */
.dest-card {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  display: block;
  height: 200px;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dest-card span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(10,37,64,0.9));
  color: #fff;
  font-weight: 600;
}

/* Mobile hero fixes */
@media (max-width: 767px) {
  .hero {
    min-height: 380px !important;
  }

  .hero .container {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .hero .row {
    min-height: auto !important;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(10,37,64,0.75) 0%, rgba(10,37,64,0.85) 100%);
  }

  .service-card-float {
    padding: 0.85rem 0.75rem;
    gap: 0.5rem;
  }

  .service-card-float .service-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 1rem;
  }

  .service-card-float h5 {
    font-size: 0.75rem;
  }

  .service-card-float .arrow {
    display: none;
  }

  /* Fix inline min-height on hero row */
  .hero [style*="min-height"] {
    min-height: auto !important;
  }
}

@media (max-width: 400px) {
  .service-card-float h5 {
    font-size: 0.7rem;
  }
}

.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(10, 37, 64, 0.12);
}

