  :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:Arial, Helvetica, sans-serif;
        line-height: 1.6;
        color: var(--dark);
        background-color: var(--light);
        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: white;
      }

      .section-titles:after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: red;
      }
      

      .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);
      }

      /* Header & Navigation */
      header {
        position:sticky;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: rgb(0, 0, 0);
        transition: var(--transition);
      }

      header.scrolled {
        background-color: var(--dark);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      }

      .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
      }

      .logo {
        font-size: 24px;
        font-weight: 700;
        color: var(--light);
      }

      .logo span {
        color: var(--primary);
      }

      .nav-links {
        display: flex;
      }

      .nav-links li {
        margin-left: 30px;
      }

      .nav-links a {
        color: var(--light);
        font-weight: 500;
        transition: var(--transition);
        position: relative;
      }

      .nav-links a:hover {
        color: #e2b00d;
      }

      .nav-links a:after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #e2b00d;
        transition: var(--transition);
      }

      .nav-links a:hover:after {
        width: 100%;
      }

      .nav-links a.active {
        color: #e2b00d;
      }

      .nav-links a.active:after {
        width: 100%;
      }

      .hamburger {
        display: none;
        cursor: pointer;
        background: none;
        border: none;
        color: var(--light);
        font-size: 24px;
      }

      /* Testimonial Page Hero - Animated */
.page-hero {
  height: 70vh;
  min-height: 600px;
  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://images.unsplash.com/photo-1563297552-8f0cec2c5226?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MzU2fHxhZHZlcnRpc2VtZW50JTIwM0R8ZW58MHx8MHx8fDA%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 Elements */
.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: float 6s ease-in-out infinite;
}

/* Floating Quote Marks */
.page-hero::after {
  content: '"';
  position: absolute;
  font-size: 20rem;
  color: rgba(255, 255, 255, 0.03);
  font-family: serif;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  animation: pulse 4s ease-in-out infinite;
}

.page-hero .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-hero h1 {
  font-family: 'Amonos', 'Anonymous Pro', monospace;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #e2b00d 0%, #e2b00d 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;
}

.page-hero p {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.6s forwards;
  line-height: 1.6;
  font-weight: 300;
  color: #e2b00d;
}

/* Animated CTA Button */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 35px;
  background: var(--gradient-primary);
  color: var(--light);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.9s forwards;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(179, 0, 0, 0.3);
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: all 0.6s ease;
}

.hero-cta:hover::before {
  left: 100%;
}

.hero-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(179, 0, 0, 0.4);
  background: var(--gradient-secondary);
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 3rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1.2s forwards;
}

.trust-item {
  text-align: center;
}

.trust-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  display: block;
  line-height: 1;
}

.trust-label {
  font-size: 0.9rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--light);
  text-decoration: none;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.scroll-indicator span {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 8px;
  opacity: 0.8;
}

.scroll-indicator::after {
  content: '';
  display: block;
  width: 2px;
  height: 30px;
  background: var(--light);
  margin: 0 auto;
  animation: bounce 2s infinite;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 0.03; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.05; transform: translateY(-50%) scale(1.05); }
}

/* Particle Background */
.testimonial-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.testimonial-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: floatParticle 8s infinite ease-in-out;
}

@keyframes floatParticle {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-40px) rotate(120deg); }
  66% { transform: translateY(20px) rotate(240deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-hero {
    height: 60vh;
    min-height: 500px;
    background-attachment: scroll;
  }
  
  .page-hero::after {
    font-size: 12rem;
    left: 5%;
  }
  
  .trust-indicators {
    gap: 20px;
  }
  
  .trust-number {
    font-size: 1.5rem;
  }
  
  .hero-cta {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .page-hero {
    height: 70vh;
    min-height: 500px;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 15px;
  }
  
  .page-hero::after {
    font-size: 8rem;
  }
}

      /* Testimonials Section */
      .testimonials {
        background-color: black;
        color: var(--light);
      }
      .testimonials h1{
        color: #e2b00d;
      }

      .testimonial-slider {
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
      }

      .testimonial-slide {
        padding: 30px;
        text-align: center;
        display: none;
      }

      .testimonial-slide.active {
        display: block;
        animation: fadeIn 1s;
      }

      .testimonial-text {
        font-size: 1.2rem;
        font-style: italic;
        margin-bottom: 20px;
        position: relative;
      }

      .testimonial-text:before,
      .testimonial-text:after {
        content: '"';
        font-size: 4rem;
        color: var(--secondary);
        opacity: 0.3;
        position: absolute;
        line-height: 1;
      }

      .testimonial-text:before {
        top: -20px;
        left: -10px;
      }

      .testimonial-text:after {
        bottom: -40px;
        right: -10px;
      }

      .testimonial-author {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-bottom: 5px;
      }

      .author-image {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid var(--secondary);
      }

      .author-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .author-info h4 {
        margin-bottom: 5px;
      }

      .author-position {
        color: var(--secondary);
        font-size: 0.9rem;
      }

      .testimonial-rating {
        color: var(--secondary);
        margin-top: 10px;
      }

      .slider-controls {
        display: flex;
        justify-content: center;
        margin-top: 30px;
      }

      .slider-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.3);
        margin: 0 5px;
        cursor: pointer;
        transition: var(--transition);
      }

      .slider-dot.active {
        background-color: var(--primary);
      }

      .slider-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.1);
        border: none;
        color: var(--light);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: var(--transition);
      }

      .slider-nav:hover {
        background: var(--primary);
      }

      .slider-prev {
        left: 10px;
      }

      .slider-next {
        right: 10px;
      }

      /* Client Logos */
      .clients-section {
        background-color: rgba(0, 0, 0, 0);
      }

      .clients-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
        align-items: center;
      }

      .client-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        background-color: var(--light);
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
        height: 100px;
      }

      .client-logo:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      }

      .client-logo img {
        max-width: 100%;
        max-height: 60px;
        /*filter: grayscale(100%);*/
        opacity: 0.7;
        transition: var(--transition);
      }

      .client-logo:hover img {
        filter: grayscale(0%);
        opacity: 1;
      }

      /* Detailed Testimonials */
      .detailed-testimonials {
        background-color: black;
      }
      .detailed-testimonials h1{
        color: #e2b00d;
      }

      .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
      }

      .testimonial-card {
        background-color: var(--light);
        border-radius: 8px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
        position: relative;
      }

      .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      }

      .testimonial-card:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(to right, var(--primary), var(--secondary));
        border-radius: 8px 8px 0 0;
      }

      .testimonial-content {
        margin-bottom: 20px;
      }

      .testimonial-meta {
        display: flex;
        align-items: center;
        gap: 15px;
      }

      .testimonial-service {
        display: inline-block;
        padding: 5px 10px;
        background-color: var(--primary);
        color: var(--light);
        border-radius: 20px;
        font-size: 0.8rem;
        margin-bottom: 15px;
      }

      /* Case Studies */
      .case-studies {
        background-color: var(--light);
      }

      .case-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
      }

      .case-study {
        background-color: var(--light);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: var(--transition);
      }

      .case-study:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      }

      .case-image {
        height: 200px;
        overflow: hidden;
      }

      .case-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
      }

      .case-study:hover .case-image img {
        transform: scale(1.05);
      }

      .case-content {
        padding: 20px;
      }

      .case-tag {
        display: inline-block;
        padding: 5px 10px;
        background-color: var(--secondary);
        color: var(--dark);
        border-radius: 4px;
        font-size: 0.8rem;
        font-weight: 500;
        margin-bottom: 10px;
      }

      .case-stats {
        display: flex;
        justify-content: space-between;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #eee;
      }

      .stat-item {
        text-align: center;
      }

      .stat-number {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary);
      }

      .stat-label {
        font-size: 0.8rem;
        color: #666;
      }

      /* CTA Section */
      .cta-section {
        background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
          url("https://images.unsplash.com/photo-1565688840395-37f27d1e7a9d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1000&q=80");
        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 Quote Button */
      .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);
      }

      /* 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;
        }

        .slider-nav {
          display: none;
        }
      }

      @media (max-width: 768px) {
        .hamburger {
          display: block;
        }

        .nav-links {
          position: fixed;
          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;
        }

        .testimonial-grid {
          grid-template-columns: 1fr;
        }
      }

      @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;
        }

        .testimonial-text {
          font-size: 1rem;
        }

        .testimonial-author {
          flex-direction: column;
          text-align: center;
        }
      }
      
      /* 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 */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    z-index: 1002;
    position: relative;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: var(--transition);
  }

  .hamburger:hover {
    color: var(--primary);
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, var(--dark) 0%, #000000 100%);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 30px 30px;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    gap: 0;
    visibility: hidden;
  }

  .nav-links.active {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-links li {
    margin: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateX(0);
  }

  /* Staggered animation for menu items */
  .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
  .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
  .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
  .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 18px 0;
    display: block;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    color: var(--light);
  }

  .nav-links a:hover {
    color: #e2b00d;
    padding-left: 15px;
  }

  .nav-links a.active {
    color: #e2b00d;
    font-weight: 600;
    padding-left: 15px;
  }

  .nav-links a.active:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 20px;
    background: var(--primary);
    border-radius: 2px;
  }

  /* Menu Overlay */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

/* Ensure header has proper z-index */
header {
  z-index: 999;
  position: sticky;
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* Enhanced hamburger animation */
.hamburger.active {
  transform: rotate(90deg);
  color: var(--primary);
}

     .hero-tagline {
        font-size: 1.5rem;
        margin-bottom: 25px;
        color: #e2b00d;
      }

      .hero-tagline span {
        color:white;
        font-weight: 600;
      }