/* --- Carlson Solutions LLC: Core Identity --- */

:root {
  --cyan-accent: 34, 211, 238;
  --var-bg: #09090b;
  --var-card: rgba(24, 24, 27, 0.6);
  --var-border: rgba(39, 39, 42, 0.5);
  --var-main: #ffffff;
  --var-dim: #a1a1aa;
  --var-text-main: #ffffff;
}

/* High-Contrast Light Mode */
body.light-mode {
  --var-bg: #f8fbff;
  --var-card: #ffffff;
  --var-border: #cfd8e3;
  --var-main: #0b1220;
  --var-dim: #334155;
  --var-text-main: #0b1220;
}

body.light-mode #main-header {
  background: rgba(248, 251, 255, 0.86);
  border-bottom-color: #cfd8e3;
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
}

body.light-mode .nav-link {
  color: #334155;
}

body.light-mode #mobile-menu {
  background: #f8fbff;
  border-left: 1px solid #cfd8e3;
}

body.light-mode #mobile-menu .mobile-link,
body.light-mode #mobile-menu #mobile-services-toggle,
body.light-mode #mobile-menu #close-mobile {
  color: #0b1220;
}

body.light-mode #mobile-menu #mobile-services-list .mobile-link {
  color: #0369a1;
}

body.light-mode #mobile-menu a[href="#contact"],
body.light-mode #mobile-menu a[href="/#contact"] {
  background: #0284c7;
  color: #ffffff;
}

body.light-mode #mobile-menu a[href="#contact"]:hover,
body.light-mode #mobile-menu a[href="/#contact"]:hover {
  background: #0369a1;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--var-bg);
  color: var(--var-main);
  transition: background-color 0.4s ease, color 0.4s ease;
  margin: 0;
  overflow-x: hidden;
}

#testimonials {
  scroll-margin-top: 7.5rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
  width: auto;
  height: auto;
  z-index: 200;
  background: rgb(var(--cyan-accent));
  color: #020617;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-weight: 700;
  font-size: 0.75rem;
  text-decoration: none;
}

.heading-font { 
  font-family: 'Space Grotesk', sans-serif; 
}

.hero-title-main {
  line-height: 1;
}

.hero-solutions-wrap {
  position: relative;
  display: inline-block;
  padding-right: 0.55em;
}

.hero-llc {
  position: absolute;
  right: -0.42em;
  bottom: -0.1em;
  font-size: 0.22em;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Typography Balance */
h1 {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

h1 span {
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Header & Navigation */
header {
  background: transparent;
  backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid var(--var-border);
}

.nav-link {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--var-dim);
  transition: color 0.3s;
}

.nav-link:hover, .nav-link-active { 
  color: rgb(var(--cyan-accent)); 
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  line-height: 1;
}

.nav-dropdown-trigger .fa-chevron-down {
  font-size: 0.62rem;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger .fa-chevron-down,
.nav-dropdown:focus-within .nav-dropdown-trigger .fa-chevron-down {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1)),
    rgba(10, 16, 28, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.55rem;
  padding: 0.45rem;
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px) scale(0.985);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  backdrop-filter: blur(18px) saturate(165%);
  -webkit-backdrop-filter: blur(18px) saturate(165%);
  z-index: 120;
  box-shadow:
    0 18px 38px -18px rgba(2, 6, 23, 0.82),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.nav-dropdown-menu::after {
  content: "";
  position: absolute;
  inset: -30% 44% 46% -34%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0) 72%);
  opacity: 0.55;
  transform: translate3d(-8%, 0, 0) rotate(-6deg);
  transition: transform 0.36s ease, opacity 0.36s ease;
  pointer-events: none;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.nav-dropdown:hover .nav-dropdown-menu::after,
.nav-dropdown:focus-within .nav-dropdown-menu::after {
  opacity: 0.72;
  transform: translate3d(4%, 0, 0) rotate(-4deg);
}

.nav-dropdown-item {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(248, 251, 255, 0.98);
  border: 1px solid transparent;
  border-radius: 0.4rem;
  padding: 0.55rem 0.65rem;
  background: rgba(255, 255, 255, 0.03);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.28);
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.nav-dropdown-item + .nav-dropdown-item {
  margin-top: 0.2rem;
}

.nav-dropdown-item:hover,
.nav-dropdown-item:focus-visible {
  color: rgb(229, 249, 255);
  border-color: rgba(var(--cyan-accent), 0.55);
  background: rgba(var(--cyan-accent), 0.26);
}

body.light-mode .nav-dropdown-menu {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.56)),
    rgba(227, 238, 247, 0.82);
  border-color: rgba(15, 23, 42, 0.16);
  box-shadow:
    0 18px 38px -22px rgba(15, 23, 42, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

body.light-mode .nav-dropdown-menu::after {
  opacity: 0.65;
}

body.light-mode .nav-dropdown-item {
  color: rgba(15, 23, 42, 0.92);
  background: rgba(255, 255, 255, 0.45);
  text-shadow: none;
}

body.light-mode .nav-dropdown-item:hover,
body.light-mode .nav-dropdown-item:focus-visible {
  color: rgb(8, 47, 73);
  border-color: rgba(14, 116, 144, 0.4);
  background: rgba(14, 116, 144, 0.12);
}

.hero-bg {
  background:
    linear-gradient(rgba(var(--cyan-accent), 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--cyan-accent), 0.04) 1px, transparent 1px),
    radial-gradient(circle at top, rgba(var(--cyan-accent), 0.07) 0%, transparent 65%);
  background-size: 48px 48px, 48px 48px, 100% 100%;
}

body.light-mode .hero-bg {
  background:
    linear-gradient(rgba(2, 132, 199, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 132, 199, 0.08) 1px, transparent 1px),
    radial-gradient(circle at top, rgba(2, 132, 199, 0.1) 0%, transparent 68%);
  background-size: 48px 48px, 48px 48px, 100% 100%;
}

/* Service Cards */
.project-card {
  background: var(--var-card);
  border: 1px solid var(--var-border);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.project-card:hover {
  border-color: rgba(var(--cyan-accent), 0.5);
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.15);
}

body.light-mode .project-card:hover {
  box-shadow: 0 10px 28px -14px rgba(2, 6, 23, 0.35);
}

.service-icon-box {
  width: 56px;
  height: 56px;
  background: var(--var-bg);
  border: 1px solid var(--var-border);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.project-card:hover .service-icon-box {
    border-color: rgb(var(--cyan-accent));
    box-shadow: 0 0 15px rgba(var(--cyan-accent), 0.2);
}

/* Status & Accents */
.skill-bubble {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 12px;
  background: rgba(var(--cyan-accent), 0.1);
  color: rgb(var(--cyan-accent));
  border-radius: 0.25rem;
  border: 1px solid rgba(var(--cyan-accent), 0.2);
}

body.light-mode .skill-bubble {
  background: #e0f2fe;
  color: #075985;
  border-color: #7dd3fc;
}

body.light-mode .text-cyan-500 {
  color: #0284c7 !important;
}

.service-read-more {
  color: rgb(var(--cyan-accent));
  width: fit-content;
  transition: color 0.25s ease, transform 0.25s ease;
}

.service-read-more:hover,
.service-read-more:focus-visible {
  color: #67e8f9;
  transform: translateX(2px);
}

body.light-mode .service-read-more {
  color: #0284c7;
}

body.light-mode .service-read-more:hover,
body.light-mode .service-read-more:focus-visible {
  color: #0369a1;
}

.glow-bar {
  width: 4px;
  background: linear-gradient(to bottom, rgb(var(--cyan-accent)), transparent);
  border-radius: 99px;
  box-shadow: 0 0 15px rgba(var(--cyan-accent), 0.3);
}

/* Testimonial Carousel */
.carousel-nav-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid var(--var-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--var-main);
  flex-shrink: 0;
  transition: background-color 0.3s, color 0.3s;
}

.carousel-nav-btn:hover {
  background-color: rgb(34 211 238);
  color: rgb(9 9 11);
}

#carousel-track {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-slide {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.7s ease, transform 0.7s ease, visibility 0.7s;
  transform: translateY(15px);
  width: 100%;
}

.testimonial-slide.active-slide {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

#carousel-dots div {
  transition: all 0.3s ease;
}

.service-carousel {
  position: relative;
  border: 1px solid var(--var-border);
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--var-card);
}

.service-carousel-track {
  position: relative;
  height: 320px;
}

.service-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease;
}

.service-slide.active {
  opacity: 1;
  visibility: visible;
}

.service-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f8fafc;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.78), rgba(2, 6, 23, 0));
}

.service-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(2, 6, 23, 0.45);
  color: #f8fafc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.service-carousel-nav:hover {
  background: rgba(var(--cyan-accent), 0.9);
  border-color: rgba(var(--cyan-accent), 0.95);
  color: #020617;
}

.service-carousel-nav.prev {
  left: 0.75rem;
}

.service-carousel-nav.next {
  right: 0.75rem;
}

/* Form Styling */
.input-field {
  width: 100%;
  background: var(--var-card);
  border: 1px solid var(--var-border);
  border-radius: 0.25rem;
  padding: 1.1rem;
  color: var(--var-main);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}

.input-field:focus {
  border-color: rgb(var(--cyan-accent));
  background: var(--var-bg);
}

.input-field::placeholder {
  color: var(--var-dim);
  opacity: 0.6;
}

textarea.input-field {
  overflow: hidden;
  resize: vertical;
}

/* Animations */
@keyframes reveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-reveal { 
  animation: reveal 0.8s ease-out forwards; 
}

#theme-toggle:hover {
  background: var(--var-border);
  transform: scale(1.05);
}

.header-quote-btn {
  background: var(--var-text-main);
  color: var(--var-bg);
}

.header-quote-btn:hover {
  background: rgb(var(--cyan-accent));
  color: #020617;
}

.hero-quote-btn {
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.hero-quote-btn:hover,
.hero-quote-btn:focus-visible {
  border-color: rgb(var(--cyan-accent));
  background: rgb(var(--cyan-accent));
  color: #020617;
  box-shadow: none;
  transform: none;
}

body.light-mode .hero-quote-btn:hover,
body.light-mode .hero-quote-btn:focus-visible {
  background: #0284c7;
  border-color: #0284c7;
  color: #ffffff;
  box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-quote-btn {
    transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  }

  .hero-quote-btn:hover,
  .hero-quote-btn:focus-visible {
    transform: none;
  }
}

/* Section Boxes */
.section-box {
  background: var(--var-card);
  border: 1px solid var(--var-border);
  border-radius: 0.5rem;
  padding: 3rem;
}

/* About Timeline Points */
.about-points {
  display: grid;
  gap: 1.5rem;
}

.about-point {
  border-left: 3px solid rgba(var(--cyan-accent), 0.25);
  padding: 0.25rem 0 0.25rem 1rem;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.about-point:hover {
  border-left-color: rgba(var(--cyan-accent), 0.95);
  background: rgba(var(--cyan-accent), 0.06);
}

body.light-mode .about-point {
  border-left-color: rgba(2, 132, 199, 0.4);
}

body.light-mode .about-point:hover {
  border-left-color: #0284c7;
  background: rgba(2, 132, 199, 0.08);
}

.project-init-btn {
  background: var(--var-main);
  color: var(--var-bg);
}

.project-init-btn:hover {
  background: rgb(var(--cyan-accent));
  color: #020617;
}

body.light-mode .project-init-btn {
  border: 1px solid #cbd5e1;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  #mobile-menu {
    justify-content: flex-start;
    gap: 1.45rem;
    padding: 5.75rem 1.25rem 2.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  #mobile-menu .mobile-link,
  #mobile-menu #mobile-services-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.35rem 0.4rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    text-transform: none;
    text-align: center;
    letter-spacing: 0.045em;
    line-height: 1.25;
  }

  #mobile-menu #mobile-services-list {
    width: min(100%, 24rem);
    margin-top: 0.35rem;
  }

  #mobile-menu #mobile-services-list:not(.hidden) {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
  }

  #mobile-menu #mobile-services-list .mobile-link {
    display: block;
    width: 100%;
    min-height: 2.4rem;
    padding: 0.45rem 0.35rem;
    text-align: center;
    line-height: 1.3;
    white-space: normal;
  }

  #main-header .max-w-7xl {
    padding: 0.9rem 1rem;
  }

  #main-header .heading-font {
    font-size: 1rem;
  }

  #home {
    padding-top: 8.5rem;
    padding-bottom: 4rem;
  }

  #home h1 {
    font-size: 2.6rem;
    line-height: 1.05;
    letter-spacing: -0.02em;
  }

  .hero-solutions-wrap {
    padding-right: 0.52em;
  }

  .hero-llc {
    right: -0.38em;
    bottom: -0.08em;
    font-size: 0.23em;
  }

  #home p {
    font-size: 1rem;
    line-height: 1.6;
  }

  #services,
  #testimonials,
  #about,
  #contact {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  #services .px-8,
  #testimonials .px-8,
  #about .px-8,
  #contact .px-8,
  footer .px-8 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  #carousel-track {
    height: 360px;
  }

  .testimonial-slide > p {
    font-size: 1rem;
    line-height: 1.65;
    padding: 0;
    margin-bottom: 1rem;
  }

  .testimonial-slide > div {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }

  .testimonial-slide > div > a {
    font-size: 10px;
    line-height: 1.45;
    white-space: normal;
  }

  #testimonials .mt-24 {
    margin-top: 4rem;
  }

  #about .bg-var-card,
  #contact form,
  #contact #contact-success {
    padding: 1.5rem;
  }

  #about .grid,
  #contact .grid {
    gap: 1.25rem;
  }

  .section-box {
    border-radius: 0.5rem;
    padding: 2rem 1.25rem;
  }

  .testimonial-slide p {
    font-size: 1rem;
    padding: 0 10px;
  }
  
  .project-card {
    border-radius: 0.5rem;
  }

  h1 span {
    font-size: 1.75rem; /* Better scaling for mobile headings */
  }

  footer .max-w-7xl {
    text-align: center;
  }

  footer .max-w-7xl > p {
    order: 3;
    margin: 0 auto;
    margin-top: 0.7rem;
    max-width: 32rem;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.04em;
    text-transform: none;
    opacity: 0.92;
  }

  footer .max-w-7xl > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  footer .max-w-7xl > div > div:first-child {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem 1.1rem;
    order: 2;
    margin-top: 0.95rem;
  }

  footer .max-w-7xl > div > div:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    order: 1;
  }

  footer .max-w-7xl > div > div:first-child a {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: none;
    line-height: 1.35;
    text-align: center;
  }

  footer .max-w-7xl > div > div:last-child a {
    text-align: center;
  }

  footer .max-w-7xl > div > div:last-child a i {
    font-size: 1.7rem;
  }


  #mobile-menu a[href="#contact"],
  #mobile-menu a[href="/#contact"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 13.5rem;
    min-height: 3.05rem;
    padding: 0.9rem 1.6rem;
    border-radius: 0.5rem;
    border: 1px solid transparent;
    background: rgb(var(--cyan-accent));
    color: #020617;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: none;
    transition: background-color 0.2s ease, transform 0.2s ease, filter 0.2s ease;
  }

  #mobile-menu a[href="#contact"]:active,
  #mobile-menu a[href="/#contact"]:active {
    transform: translateY(1px);
    filter: brightness(0.98);
  }

  #mobile-menu a[href="#contact"]:hover,
  #mobile-menu a[href="/#contact"]:hover {
    background: #67e8f9;
  }
}

@media (max-width: 420px) {
  #mobile-menu {
    padding: 5.1rem 1rem 1.9rem;
    gap: 1.15rem;
  }

  #mobile-menu .mobile-link,
  #mobile-menu #mobile-services-toggle {
    font-size: 1.3rem;
    letter-spacing: 0.035em;
    min-height: 2.7rem;
    padding: 0.35rem 0.25rem;
  }

  #mobile-menu #mobile-services-list .mobile-link {
    font-size: 0.95rem;
    min-height: 2.4rem;
    padding: 0.4rem 0.2rem;
  }

  footer .max-w-7xl > p {
    font-size: 0.66rem;
    letter-spacing: 0.035em;
  }

  footer .max-w-7xl > div > div:first-child a:last-child {
    flex-basis: 100%;
  }

  footer .max-w-7xl > div > div:last-child a i {
    font-size: 1.95rem;
  }

  #mobile-menu a[href="#contact"],
  #mobile-menu a[href="/#contact"] {
    min-width: 13.5rem;
    min-height: 3.1rem;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }

  #main-header .max-w-7xl {
    padding: 0.75rem 0.85rem;
  }

  #main-header .heading-font {
    font-size: 0.88rem;
    max-width: 11.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  #home {
    padding-top: 7.6rem;
    padding-bottom: 3.25rem;
  }

  #home h1 {
    font-size: 2.15rem;
  }

  .hero-solutions-wrap {
    padding-right: 0.48em;
  }

  .hero-llc {
    right: -0.34em;
    bottom: -0.07em;
    font-size: 0.24em;
  }

  #home .inline-flex {
    margin-bottom: 1.5rem;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  #services,
  #testimonials,
  #about,
  #contact {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }

  #services .px-8,
  #testimonials .px-8,
  #about .px-8,
  #contact .px-8,
  footer .px-8 {
    padding-left: 0.95rem;
    padding-right: 0.95rem;
  }

  #carousel-track {
    height: 400px;
  }

  .testimonial-slide > p {
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .testimonial-slide > div > a {
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  #testimonials .absolute.-bottom-5 {
    width: calc(100% - 2rem);
    justify-content: center;
    gap: 0.75rem;
  }

  #contact .text-center.mb-12 {
    margin-bottom: 1.75rem;
  }

  #contact .mt-16 {
    margin-top: 2.5rem;
  }

  #about .bg-var-card,
  #contact form,
  #contact #contact-success,
  #testimonials .max-w-4xl,
  #testimonials .max-w-3xl {
    padding: 1.15rem;
  }

  #mobile-menu .mobile-link {
    font-size: 1.2rem;
  }
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}