 :root {
        --primary: #b30000; /* Maroon/Red */
        --secondary: #d4af37; /* #e2b00den */
        --dark: #1a1a1a; /* Black */
        --light: #ffffff; /* White */
        --gray: #f5f5f5;
        --transition: all 0.3s ease;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Poppins", sans-serif;
        line-height: 1.6;
        color: var(--dark);
        background: url("https://images.unsplash.com/photo-1743167150074-4fe3fd1cd2b6?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NDd8fHdlYnNpdGUlMjBiYWNrZ3JvdW5kJTIwZm9yJTIwYSUyMGJyYW5kaW5nJTIwY29tcGFueXxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&q=60&w=700")
          no-repeat center center/cover;
        overflow-x: hidden;
      }

      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        font-weight: 600;
        line-height: 1.3;
        margin-bottom: 1rem;
        
      }

      a {
        text-decoration: none;
        color: inherit;
      }

      ul {
        list-style: none;
      }

      img {
        max-width: 100%;
        height: auto;
      }

      .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
      }

      .section {
        padding: 80px 0;
      }

      .section-title {
        text-align: center;
        margin-bottom: 50px;
        position: relative;
      }

      .section-title:after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: var(--primary);
      }

      .section-titles {
        text-align: center;
        margin-bottom: 50px;
        position: relative;
        color: #e2b00d;
      }

      .section-titles:after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: var(--primary);
      }

      .btn {
        display: inline-block;
        padding: 12px 30px;
        background-color: var(--primary);
        color: var(--light);
        border: none;
        border-radius: 4px;
        font-weight: 500;
        cursor: pointer;
        transition: var(--transition);
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .btn:hover {
        background-color: var(--secondary);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      }

      .btn-secondary {
        background-color: var(--secondary);
      }

      .btn-secondary:hover {
        background-color: var(--primary);
      }

      /* FIXED HEADER + RESPONSIVE NAV */
/* ============================= */

header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

header.scrolled {
  background-color: var(--dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--light);
}

.logo span {
  color: var(--primary);
}

/* Desktop Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: var(--light);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--secondary);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--secondary);
}

/* Hamburger Menu (Hidden on Desktop) */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--light);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 8px;
  transition: var(--transition);
  z-index: 1100;
}

.hamburger:hover {
  color: var(--primary);
}

      /* Page Hero - Animated */
.page-hero {
  height: 70vh;
  min-height: 500px;
  background: 
    linear-gradient(135deg, 
      rgba(179, 0, 0, 0.3) 0%, 
      rgba(212, 175, 55, 0.2) 50%,
      rgba(0, 0, 0, 0.7) 100%),
    url("https://plus.unsplash.com/premium_photo-1733938563565-3720eba96daf?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mjc3fHxhZHZlcnRpc2VtZW50JTIwM0R8ZW58MHx8MHx8fDA%3D&auto=format&fit=crop&q=60&w=500");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--light);
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

/* Animated Background Overlay */
.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(179, 0, 0, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
  animation: floatBackground 8s ease-in-out infinite;
}

/* Floating Design Elements */
.page-hero::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.4;
  animation: float 15s linear infinite;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* Animated Heading */
.page-hero h1 {
  font-family: 'Amonos', 'Anonymous Pro', monospace;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.3s forwards;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Animated Tagline */
.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.6s forwards;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Individual Word Animations */
.hero-tagline span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: bounceIn 0.6s ease forwards;
}

.hero-tagline span:nth-child(1) { animation-delay: 0.8s; }
.hero-tagline span:nth-child(2) { animation-delay: 1.1s; }
.hero-tagline span:nth-child(3) { animation-delay: 1.4s; }

/* Star Separator */
.hero-tagline span:nth-child(2),
.hero-tagline span:nth-child(4) {
  color: var(--secondary);
  font-weight: 600;
  margin: 0 15px;
  animation: spinIn 0.8s ease forwards;
}

.hero-tagline span:nth-child(2) { animation-delay: 1s; }
.hero-tagline span:nth-child(4) { animation-delay: 1.3s; }

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }
  50% {
    transform: translateY(-5px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes spinIn {
  0% {
    opacity: 0;
    transform: rotate(-180deg) scale(0);
  }
  60% {
    transform: rotate(10deg) scale(1.2);
  }
  100% {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

@keyframes float {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  50% {
    transform: translateX(-50px) translateY(-50px) rotate(180deg);
  }
  100% {
    transform: translateX(0) translateY(0) rotate(360deg);
  }
}

@keyframes floatBackground {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.02);
  }
}

/* Particle Animation */
.contact-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.contact-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: floatParticle 6s infinite ease-in-out;
}

@keyframes floatParticle {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
    opacity: 0.3;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-hero {
    height: 60vh;
    min-height: 400px;
    background-attachment: scroll;
  }
  
  .hero-tagline span {
    margin: 0 8px;
  }
  
  .hero-tagline span:nth-child(2),
  .hero-tagline span:nth-child(4) {
    margin: 0 10px;
  }
}

@media (max-width: 480px) {
  .page-hero {
    height: 50vh;
    min-height: 350px;
  }
  
  .hero-tagline {
    font-size: 1rem;
  }
  
  .hero-tagline span {
    display: block;
    margin: 5px 0;
  }
  
  .hero-tagline span:nth-child(2),
  .hero-tagline span:nth-child(4) {
    display: inline;
    margin: 0 5px;
  }
}

      /* Contact Section */
      .contact-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
      }

      .contact-info {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }

      .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
        background-color: var(--gray);
        border-radius: 8px;
        transition: var(--transition);
      }

      .contact-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      }

      .contact-icon {
        font-size: 24px;
        color: var(--primary);
        margin-top: 5px;
      }

      .contact-details h3 {
        margin-bottom: 5px;
      }

      .contact-form {
        background-color: var(--light);
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      .form-group {
        margin-bottom: 20px;
      }

      .form-control {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-family: "Poppins", sans-serif;
        transition: var(--transition);
      }

      .form-control:focus {
        border-color: var(--primary);
        outline: none;
        box-shadow: 0 0 0 2px rgba(179, 0, 0, 0.2);
      }

      textarea.form-control {
        min-height: 150px;
        resize: vertical;
      }

      /* Branches Section */
      .branches-section {
        background-color: var(--gray);
      }

      .branches-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
      }

      .branch-card {
        background-color: black;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
      }

      .branch-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      }

      .branch-image {
        height: 200px;
        overflow: hidden;
      }

      .branch-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
      }

      .branch-card:hover .branch-image img {
        transform: scale(1.05);
      }

      .branch-content {
        padding: 20px;
        color: white;
      }

      .branch-hours {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #eee;
        
      }

      .branch-hours h4 {
        margin-bottom: 10px;
        color: white;
      }

      .hours-list li {
        display: flex;
        justify-content: space-between;
        margin-bottom: 5px;
      }
      #branch-p{
        color: rgb(8, 84, 197);
        text-decoration: none;
      }

      /* Map Section */
      .map-container {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        height: 500px;
        
      }
      .map-placeholder h3{
        color: #e2b00d;
      }

      .map-placeholder {
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, black, #e0e0e0);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: var(--dark);
      }

      .map-placeholder i {
        font-size: 3rem;
        color: var(--primary);
        margin-bottom: 20px;
      }

      /* FAQ Section */
      .faq-section {
        background-color: var(--gray);
      }

      .faq-container {
        max-width: 800px;
        margin: 0 auto;
      }

      .faq-item {
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
      }

      .faq-question {
        padding: 20px;
        background-color: var(--light);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: var(--transition);
      }

      .faq-question:hover {
        background-color: #f9f9f9;
      }

      .faq-question h3 {
        margin-bottom: 0;
        font-size: 1.1rem;
      }

      .faq-icon {
        color: var(--primary);
        transition: var(--transition);
      }

      .faq-answer {
        padding: 0 20px;
        background-color: var(--light);
        max-height: 0;
        overflow: hidden;
        transition: var(--transition);
      }

      .faq-item.active .faq-answer {
        padding: 20px;
        max-height: 500px;
      }

      .faq-item.active .faq-icon {
        transform: rotate(180deg);
      }

      /* CTA Section */
      .cta-section {
        background: linear-gradient(rgba(0, 0, 0, 0.767), rgba(0, 0, 0, 0.678)),
          url("https://images.unsplash.com/photo-1644483513208-acfc1e358447?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8NzV8fHdlYnNpdGUlMjBiYWNrZ3JvdW5kJTIwZm9yJTIwYSUyMGJyYW5kaW5nJTIwY29tcGFueXxlbnwwfHwwfHx8MA%3D%3D&auto=format&fit=crop&q=60&w=700");
        background-size: cover;
        background-position: center;
        color: var(--light);
        text-align: center;
      }

      .cta-section h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #e2b00d;
      }

      .cta-section p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto 30px;
      }

      /* Footer */
      footer {
        background-color: black;
        color: var(--light);
        padding: 60px 0 30px;
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
      }

      .footer-logo {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 20px;
      }

      .footer-logo span {
        color: var(--primary);
      }

      .footer-about p {
        margin-bottom: 20px;
      }

      .footer-links h3,
      .footer-contact h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        position: relative;
        color: #e2b00d;
      }

      .footer-links h3:after,
      .footer-contact h3:after {
        content: "";
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 40px;
        height: 2px;
        background-color: var(--primary);
      }

      .footer-links ul li {
        margin-bottom: 10px;
      }

      .footer-links ul li a {
        transition: var(--transition);
      }

      .footer-links ul li a:hover {
        color: var(--primary);
        padding-left: 5px;
      }

      .footer-contact ul li {
        margin-bottom: 15px;
        display: flex;
        align-items: flex-start;
        gap: 10px;
      }

      .footer-contact ul li i {
        color: var(--primary);
        margin-top: 5px;
      }

      .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
      }

      .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        transition: var(--transition);
      }

      .social-links a:hover {
        background-color: var(--primary);
        transform: translateY(-3px);
      }

      .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      /* Sticky Elements */
      .sticky-quote {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 999;
        background-color: var(--primary);
        color: var(--light);
        padding: 15px 25px;
        border-radius: 50px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        font-weight: 500;
        transition: var(--transition);
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .sticky-quote:hover {
        background-color: var(--secondary);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      }

      .whatsapp-float {
        position: fixed;
        bottom: 30px;
        left: 30px;
        z-index: 999;
        background-color: #25d366;
        color: var(--light);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: var(--transition);
        font-size: 28px;
      }

      .whatsapp-float:hover {
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
      }

      /* Animations */
      @keyframes fadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }

      .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
      }

      .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* Responsive Styles */
      @media (max-width: 992px) {
        .page-hero h1 {
          font-size: 2.5rem;
        }
      }

      @media (max-width: 768px) {
        .hamburger {
          display: block;
        }

        .nav-links {
          position: sticky;
          top: 70px;
          left: 0;
          width: 100%;
          background-color: var(--dark);
          flex-direction: column;
          align-items: center;
          padding: 20px 0;
          transform: translateY(-100%);
          opacity: 0;
          transition: var(--transition);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        }

        .nav-links.active {
          transform: translateY(0);
          opacity: 1;
        }

        .nav-links li {
          margin: 15px 0;
        }

        .page-hero h1 {
          font-size: 2rem;
        }

        .section {
          padding: 60px 0;
        }

        .whatsapp-float {
          bottom: 90px;
          left: 20px;
        }
      }

      @media (max-width: 576px) {
        .page-hero h1 {
          font-size: 1.8rem;
        }

        .btn {
          padding: 10px 20px;
          font-size: 0.9rem;
        }

        .section-title {
          font-size: 1.8rem;
        }

        .contact-form {
          padding: 20px;
        }
      }
      
      /* Logo Image Styles */
.logo-image {
  height: 100px;
  width: auto;
  transition: all 0.3s ease;
  margin-left: -35px;
}

.footer-logo-image {
  height: 100px;
  width: auto;
  margin-bottom: 15px;
}

/* Adjust header height if needed for logo */
.navbar {
  align-items: center;
}

/* Make sure logo doesn't affect mobile menu */
@media (max-width: 768px) {
  .logo-image {
    height: 35px;
    
    margin-left: 0;
  
  .footer-logo-image {
    height: 45px;
  }
}}
/* ===== MOBILE NAVIGATION STYLES ===== */

/* Hide hamburger on desktop */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  transition: var(--transition);
}

.hamburger:hover {
  color: var(--primary);
}

/* MOBILE NAVIGATION */
/* ================= */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, var(--dark), #000000);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 30px;
    gap: 0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    transition: right 0.4s ease;
    z-index: 1050;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 18px 0;
    color: var(--light);
    font-size: 1.1rem;
    transition: var(--transition);
  }

  .nav-links a:hover {
    color: var(--primary);
  }
}


  .nav-links a.active {
    color:#e2b00d;
    font-weight: 600;
    padding-left: 15px;
  }

  /* Menu Overlay */
  .menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 999;
}
  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
/* Prevent content from hiding under sticky header */

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Ensure header has proper z-index */
header {
  position: sticky;
  z-index: 1002;
}
     .hero-tagline {
        font-size: 1.5rem;
        margin-bottom: 25px;
        color: var(--light-gray);
      }

      .hero-tagline span {
        color: #e2b00d;
        font-weight: 600;
      }
      .nav-links {
  z-index: 1060;
}