/* --- CSS VARIABLES & RESET --- */
:root {
  --primary: #7b3bae;
  --primary-dark: #4500a5;
  --secondary: #e67d87;
  --dark-bg: #131313;
  --light-bg: #fafafa;
  --white: #ffffff;
  --text-body: #4b5563;
  --text-dark: #111827;
  --gradient-main: linear-gradient(135deg, #c3a3ff 0%, #ff5e6d 100%);
  --gradient-dark: radial-gradient(
    ellipse at top,
    var(--primary),
    #14111c,
    #000000
  );
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.15);
  --shadow-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.25);
  --radius-lg: 24px;
  --radius-btn: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  font-size: 16px;
}
.mobile {
  display: none !important;
}
body {
  font-family: "Inter", sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
}

.font-serif {
  font-family: "IBM Plex Serif", serif;
  font-style: italic;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-subtitle {
  color: var(--secondary);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  display: block;
  margin-bottom: 0.5rem;
}

.text-highlight {
  color: var(--secondary);
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}

/* --- LAYOUT UTILITIES --- */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.about-section {
  overflow: auto;
}
.grid {
  display: grid;
  gap: 2rem;
}

/* --- COMPONENTS --- */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  font-size: 1rem;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--white);
  color: var(--primary-dark);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.btn-gradient {
  background: var(--gradient-main);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(195, 163, 255, 0.4);
}

.btn-gradient:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(195, 163, 255, 0.6);
}

.btn-outline {
  display: flex;
  width: max-content;
  border: 2px solid var(--primary);
  color: var(--primary) !important;
  background: transparent !important;
  transition: 0.4s background, 0.4s color, 0.4s gap;
}
.btn-outline span:last-child {
  transition: 0.4s transform;
}

.btn-outline:hover {
  transform: scale(1.03) !important;
}
.btn-outline:hover span:last-child {
  transform: translateX(5px);
}

/* Play Button */
.play-btn {
  width: 80px;
  height: 80px;
  background: #fdc11c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  box-shadow: 0 10px 25px rgba(255, 94, 109, 0.4);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.play-btn svg {
  fill: white;
  width: 24px;
  height: 24px;
  margin-left: 4px;
}

.footer-info,
.header-info {
  width: 100%;
  background: #fafafa;
  display: flex;
  padding: 8px 50px;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.header-info {
  position: relative;
  z-index: 1;
}

.footer-info p,
.header-info p {
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.22px;
}

header {
  position: relative;
  /* max-height: 100vh; */
  color: rgb(255 255 255 / 1);
  background: radial-gradient(ellipse at top, #960ac1af, #14111c99, #000),
    #480179;
  background-size: 160% 140%;
  background-position: 50% 0px;
  overflow: hidden;
  background-repeat: no-repeat;
}

nav {
  padding: 2rem 2.5rem !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-items {
  /* Layout & Positioning */
  display: inline-flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
  padding: 1rem 1.8rem; /* Left 1rem, Right 0.75rem */
  box-sizing: border-box;

  /* Shape & Visuals */
  border-radius: 9999px; /* Pill shape */
  background-color: rgba(255, 255, 255, 0.2); /* 50% opacity black */
  backdrop-filter: blur(24px); /* Strong blur for glass effect */

  /* Typography */
  /* font-family: "Figtree", sans-serif; */
  color: white;
  -webkit-font-smoothing: antialiased;

  /* Borders & Outlines */
  border: 1px solid transparent;
  outline: 1px solid rgba(255, 255, 255, 0.1); /* Faint white outline */

  /* Shadows */
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05),
    0 4px 6px -4px rgba(0, 0, 0, 0.05);

  /* Animation */
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item {
  font-size: 14px;
  color: #fff;
}
.logo img {
  width: 180px;
}

.btn {
  padding: 0.75rem 1.5rem;
  background-color: #4500a5;
  color: #fff;
  border-radius: 9999px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.btn:hover {
  transform: scale(1.05);
}

.btn-primary {
  background-color: #fff;
  color: #000;
  font-weight: 600;
}

.hero-content {
  padding: 60px 20px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}
.hero-tag {
  /* Layout */
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.625rem;
  box-sizing: border-box;

  /* Typography */
  /* font-family: Figtree, sans-serif; */
  font-size: 0.875rem; /* 14px */
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  -webkit-font-smoothing: antialiased;

  /* Visuals & Shape */
  border-radius: 9999px;
  border: 1px solid #ffffff;
  background-image: radial-gradient(ellipse at center, transparent, #ffffff4d);
  backdrop-filter: blur(4px);
}

.pulse {
  /* Animation */
  /* The odd opacity in your snippet was likely a snapshot of this animation running */
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Required for the animation to work */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-title,
h1 {
  /* Typography */
  /* font-family: Figtree, sans-serif; */
  font-size: 5.5rem; /* 72px */
  line-height: 1;
  color: white;
  text-align: center;
  font-weight: inherit; /* Takes weight from parent, usually you want 'bold' here */
  -webkit-font-smoothing: antialiased;

  /* Box Model */
  position: relative;
}
h1 span {
  position: relative;
  /* display: inline-block; */
}
.highlight-img {
  /* Positioning */
  position: absolute;
  z-index: -1;
  margin-top: -5%;
  bottom: 5px;
  left: -10%;
  right: 0;
  align-self: center;
  justify-self: center;

  /* Layout & Sizing */
  display: block;
  max-width: 100%;
  width: 80%;
  height: auto;

  /* Visuals */
  /* Replaces the complex variable chain: --tw-scale-x: 1.3 */
  transform: scale(1.3);
  /* width: 25%; */

  /* Note: Typography styles (font-size, color) were removed 
     as they usually don't affect images/SVGs. 
     If this IS text, re-add: font-size: 4.5rem; color: white; */
}

.hero-tagline {
  /* Layout & Spacing */
  margin: 0 auto; /* Centers the block horizontally */
  padding: 1.5rem 0; /* 40px top/bottom, 0 left/right */
  max-width: 36rem; /* Constrains width to approx 576px for readability */
  box-sizing: border-box;

  /* Typography */
  /* font-family: Figtree, sans-serif; */
  font-size: 1.125rem; /* 18px */
  line-height: 1.75rem; /* 28px */
  text-align: center;
  color: white;
  -webkit-font-smoothing: antialiased;
}
/* --- ANIMATED GRID BACKGROUND (The Key Detail) --- */
.grid-floor {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.07) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 30px 30px;
  transform: perspective(500px) rotateX(60deg) rotateZ(0deg);
  animation: planeMove 5s linear infinite;
  z-index: 0;
  /* Add a vignette so edges fade to black */
  mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(
    circle at center,
    black 30%,
    transparent 70%
  );
}

@keyframes planeMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 60px; /* Must match background-size height to loop perfectly */
  }
}
.cta-btn {
  /* Layout */
  display: inline-flex; /* 'inline-flex' naturally fits content, replacing max-width: max-content */
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;

  /* Spacing */
  padding: 1rem 2rem;
  box-sizing: border-box;

  /* Typography */
  /* font-family: Figtree, sans-serif; */
  font-weight: 700;
  line-height: 1;
  color: #000000e1;
  text-decoration: none !important;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;

  /* Visuals */
  background-color: #fdc11c;
  border: 1px solid rgba(255, 255, 255, 0.1); /* Faint white border */
  border-radius: 9999px; /* Pill shape */
  cursor: pointer;
}

.semibold {
  /* Layout */
  display: flex;
  align-items: center;
  margin: 0;
  box-sizing: border-box;

  /* Typography */
  /* font-family: Figtree, sans-serif; */
  line-height: 1.75rem; /* 28px */
  color: black;
  -webkit-font-smoothing: antialiased;

  /* Alignment */
  text-align: right !important;
  /* Note: text-align affects text inside the flex items, 
     not the flex items themselves. */
}

.text-lg {
  /* Layout */
  display: flex;
  align-items: center;
  margin: 0;
  box-sizing: border-box;

  /* Typography */
  /* font-family: Figtree, sans-serif; */
  font-size: 1.125rem; /* 18px */
  line-height: 1.75rem; /* 28px */
  color: black;
  -webkit-font-smoothing: antialiased;

  /* Alignment */
  text-align: right !important;
  /* Note: text-align affects text inside the flex items, 
     not the flex items themselves. */
}

/* --- STATS SECTION --- */
.stats-section {
  background: #7a3bae86;
  background: transparent;
  /* margin-top: -10rem; */
  /* padding-top: 1rem; */
  padding-block: 1rem;
  backdrop-filter: blur(10px);
  /* border-radius: 40px 40px 0 0; */
  position: relative;
  z-index: 20;
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.stat-card {
  /* background: white; */
  /* padding: 2.5rem; */
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  /* border-radius: 20rem; */
  text-align: center;
  /* box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.15);; */
  transition: var(--transition);
}

.stat-card:not(:last-child) {
  /* border-right: 2px solid #480179; */
  border-right: 2px solid #fff;
}

.stat-card:hover {
  /* transform: translateY(-5px); */
  /* box-shadow: var(--shadow-hover); */
}
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  /* color: var(--primary); */
  /* margin-bottom: 0.5rem; */
  color: #fff;
}
.stat-label {
  font-size: 1.1rem;
  /* color: var(--text-body); */
  color: #fff;
  font-weight: 500;
}

/* --- ABOUT SECTION --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-image,
.testimonials-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 1/1.09;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-content p {
  margin-bottom: 1.5rem;
  color: var(--text-body);
  font-size: 1.1rem;
}

.about-content p .link {
  position: relative;
}
.about-content p .link::after {
  content: "";
  position: absolute;
  display: block;
  width: 00px;
  border: 3px solid #fdc11c;
  border-radius: 0.5rem;
  inset: 0;
  background: url(../assets/cac-reg.jpg) no-repeat;
  background-size: cover;
  aspect-ratio: 4/5;
  /* display: none; */
  transition: 0.4s;
  transition-delay: 0.6s;
  border-color: transparent;
  transform: rotate(-20deg);
  box-shadow: -5px 5px 5px 3px transparent;
}

.about-content p .link:hover::after {
  /* display: block; */
  border-color: #fdc11c;
  transform: rotate(-2deg);

  top: -10px;
  left: 100px;
  width: 250px;
  box-shadow: -5px 5px 5px 3px #0000002f;
}

/* --- SERVICES SECTION --- */
.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  position: relative;
  height: 300px;
  border-radius: 1rem;
  overflow: hidden;
  background: #f0f0f0;
  transition: var(--transition);
  cursor: pointer;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-overlay,
.person-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, #c3a3ff, transparent);
  z-index: 2;
}
.person-info {
  z-index: 3;
}
.service-content {
  position: absolute;
  width: calc(100% - 2rem);
  z-index: 3;
  background: white;
  padding: 1.25rem;
  margin: 1rem;
  border-radius: 0.5rem;
  /* margin-top: -60px; */
  bottom: 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.5rem;
  transition: var(--transition);
}

.service-content-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.service-card:hover .service-content {
  transform: translateY(-5px);
}

.service-icon {
  width: 40px;
  height: 40px;
  background: rgba(230, 125, 135, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--secondary);
}

/* --- CEO SECTION --- */
.ceo-section {
  background: url(../assets/bg5.jpg), #2e0d664d;
  background: #f7f7f7;
  padding: 0rem 0;
}

.ceo-section .grid-floor {
  background-image: linear-gradient(rgb(67 67 67 / 7%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(30 30 30 / 7%) 1px, transparent 1px);
}
.ceo-content {
  padding-block: 5rem;
}

.ceo-section p {
  color: #000;
  padding-bottom: 1rem;
}

.person-card {
  height: 100%;
  width: 100%;
  min-height: 500px;
  max-width: 100%;
  border-radius: var(--radius-lg);
  /* overflow: hidden; */
  position: relative;
  margin: 0 auto;
}

.person-card img {
  width: 100%;
  height: 100%;
  /* top: -150px; */
  /* right: -2rem; */
  position: absolute;
  object-fit: contain;
}

.person-info {
  position: absolute;
  /* bottom: 1rem; */
  /* left: 1rem; */
  /* right: 1rem; */
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  width: max-content;
  box-shadow: -5px 5px 5px 3px #0000002f;
  right: 2rem;
  top: 45%;
}

.person-name {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}
.person-role {
  color: var(--secondary);
  font-size: 1rem;
  font-style: italic;
  font-family: "IBM Plex Serif", serif;
}

/* --- TESTIMONIALS --- */
.testimonials-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}
.testimonials-image {
  aspect-ratio: 1/1;
}
.testimonial-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.testimonial-quote {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  max-width: 800px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-tag {
  background: var(--primary);
  color: white;
  padding: 0.5rem 0.75rem;
  width: fit-content;
  border-radius: var(--radius-btn);
  font-size: 0.8rem;
}

/* --- CTA --- */
.cta-section {
  background: var(--gradient-dark) no-repeat, #0a0a0a;
  /* background-size: 100% 100%; */
  background-position: center;

  text-align: center;
  padding: 6rem 1rem;
}

.cta-title {
  font-size: 3rem;
  color: white;
  margin-bottom: 2rem;
}

/* --- FOOTER --- */
footer {
  background: #0a0a0a;
  background: #0a0a0a;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-desc {
  color: #888;
  margin-top: 1rem;
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-links h4 {
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}
.footer-links ul li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: #aaa;
  transition: color 0.3s;
  font-size: 0.95rem;
}
.footer-links a:hover {
  color: var(--primary);
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-icon:hover {
  background: var(--primary);
  transform: translateY(-3px);
}
.social-icon svg {
  width: 18px;
  height: 18px;
  stroke: white;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: #666;
  font-size: 0.875rem;
}
.copyright a {
  text-decoration: underline;
}
.copyright a:hover {
  color: var(--primary);
}

/* --- ANIMATIONS --- */
.fade-in {
  /* opacity: 0; */
  /* transform: translateY(30px); */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .logo img {
    width: 150px;
  }
  .nav-items {
    display: none;
  }
  .menu-btn {
    display: flex !important;
  }
  .nav-btn {
    display: none;
  }
  .hero-title,
  h1 {
    font-size: 4.5rem;
  }

  .hero-content {
    padding: 45px 20px 30px;
  }
  .container {
    width: 95%;
  }
}

@media (min-width: 992px) {
  .testimonials-wrapper {
    flex-direction: row;
  }
  .hero-title {
    font-size: 4.5rem;
  }
}

@media (max-width: 890px) {
  .stats-grid::after {
    content: "";
    display: block;
    width: 2px;
    height: 50%;
    position: absolute;
    left: 50%;
    top: 0;

    right: 50%;
    background-color: white;
  }
  .stat-card {
    border-right: none !important;
  }
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    background: rgba(20, 20, 20, 0.98);
    flex-direction: column;
    justify-content: center;
    transition: 0.4s ease;
    z-index: 100;
    border-radius: 0;
  }
  .nav-menu.active {
    right: 0;
  }
  .mobile-toggle {
    display: block;
    z-index: 101;
  }

  .hero-title {
    font-size: 2.75rem;
  }
  .about-grid,
  .ceo-content {
    grid-template-columns: 1fr;
  }

  .person-card {
    overflow: hidden;
  }
  .ceo-grid {
    gap: 2.5rem !important;
  }
  .ceo-content {
    padding-block: 0 2rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 594px) {
  /* .stat-card{
    border-right:none !important;
  } */
  .stats-grid::after {
    /* content: ""; */
    display: none;
  }
}
@media (max-width: 480px) {
  .mobile {
    display: flex;
  }
  .menu-btn span {
    display: none;
  }
  .menu-btn {
    width: 40px;
    height: 40px;
    border-radius: 1rem;
    padding: 0;
  }
  .hero-tag {
    font-size: 0.7rem;
  }
  .container {
    width: 100%;
  }
  .about-content p .link:hover::after {
    /* display: block; */
    border-color: #fdc11c;
    transform: rotate(-2deg);

    top: 10px;
    left: -10px;
    width: 250px;
    box-shadow: -5px 5px 5px 3px #0000002f;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav-btn {
    display: none;
  }

  .hero-content {
    padding: 45px 20px 30px;
  }

  nav {
    padding: 1.5rem 2rem !important;
  }
  .hero-title,
  h1 {
    font-size: 2.5rem;
  }

  .nav-items {
    display: none;
  }

  .hero-tagline {
    padding: 0rem 0;
    font-size: 1rem; /* 16px */
    line-height: 1.5rem; /* 20px */
  }

  .nav .nav-btn {
    display: none;
  }
}

.mobile-nav {
  height: 100vh;
  width: 60vw;
  max-width: 300px;
  background-color: var(--light-bg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  position: fixed;
  padding: 2.5rem 1rem;

  /* position: absolute; */
  inset: 0;
}
.mobile-nav .logo img {
  width: 50px;
  margin: 1.5rem 1rem;
}
.mobile-nav-items {
  margin-top: 3rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-nav-items li {
  width: 100%;
}

.mobile-nav .nav-item {
  font-size: 1.2rem;
  display: block;
  padding: 1rem 1rem;
  border-radius: 0.5rem;
  width: 100%;
  color: var(--text-dark);
  transition: 0.4s color, 0.4s background;
}

.mobile-nav .nav-item:hover {
  /* color: var(--primary); */
  background: #fdc11c;
}

/* ===========================
   MOBILE NAVIGATION STYLES
   Add this to your existing CSS
   =========================== */

.mobile-nav {
  height: 100vh;
  width: 60vw;
  max-width: 300px;
  background-color: var(--light-bg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  position: fixed;
  padding: 2.5rem 1rem;
  top: 0;
  left: -100%; /* Hidden by default */
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.active {
  left: 0; /* Slide in when active */
}

.mobile-nav .logo img {
  width: 50px;
  margin: 1.5rem 1rem;
}

.mobile-nav-items {
  margin-top: 3rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-items li {
  width: 100%;
}

.mobile-nav .nav-item {
  font-size: 1.2rem;
  display: block;
  padding: 1rem 1rem;
  border-radius: 0.5rem;
  width: 100%;
  color: var(--text-dark);
  transition: 0.4s color, 0.4s background;
}

.mobile-nav .nav-item:hover {
  background: #fdc11c;
}

/* Overlay when menu is open */
/* .mobile-nav::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 40vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: -20;
}

.mobile-nav.active::before {
  opacity: 1;
  visibility: visible;
} */

.link {
  transition: color 0.3s;
  text-decoration: underline;
  /* font-size: 0.95rem; */
}
.link:hover {
  color: var(--primary);
}
