  /* CSS Variables for Theme Colors */
      :root {
        --primary-red: #c8102e;
        --dark-red: #a00d25;
        --black: #121212;
        --dark-gray: #1e1e1e;
        --medium-gray: #2d2d2d;
        --light-gray: #e0e0e0;
        --gold: #e2b00d;
        --light-gold: #f4e4a6;
        --white: #ffffff;
        --text-light: #f5f5f5;
      }

      /* Global Styles */
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Poppins", sans-serif;
        line-height: 1.6;
        color: var(--text-light);
        background-color: var(--black);
        overflow-x: hidden;
      }

      .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
      }

      .section {
        padding: 80px 0;
      }

      .section-title {
        text-align: center;
        margin-bottom: 50px;
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--white);
        position: relative;
      }

      .section-title::after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(to right, var(--primary-red), var(--gold));
        border-radius: 2px;
      }

      .btn {
        display: inline-block;
        padding: 12px 30px;
        border-radius: 15px;
        text-decoration:none;
        font-weight: 600;
        text-align: center;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
        font-family: "Poppins", sans-serif;
      }

      .btn-primary {
        background-color: var(--primary-red);
        color: var(--white);
        box-shadow: 0 4px 15px rgba(200, 16, 46, 0.3);
      }

      .btn-primary:hover {
        background-color: gold;
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(200, 16, 46, 0.4);
      }

      .btn-outline {
        background-color: transparent;
        color: var(--white);
        border: 2px solid var(--white);
      }

      .btn-outline:hover {
        background-color: var(--white);
        color: var(--black);
        transform: translateY(-3px);
      }

      .btn-secondary {
        background-color: var(--gold);
        color: var(--black);
        font-weight: 600;
      }

      .btn-secondary:hover {
        background-color: var(--light-gold);
        transform: translateY(-3px);
      }

      /* Skip Link */
      .skip-link {
        position: absolute;
        top: -40px;
        left: 6px;
        background: var(--primary-red);
        color: white;
        padding: 8px;
        text-decoration: none;
        z-index: 1001;
        transition: top 0.3s;
      }

      .skip-link:focus {
        top: 6px;
      }

      /* Header & Navigation */
      #header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: rgba(2, 2, 2, 0);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
      }

      .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
      }

      .logo {
        font-size: 1.8rem;
        font-weight: 700;
        text-decoration: none;
        color: var(--white);
      }

      .logo span {
        color: var(--primary-red);
      }

      .nav-links {
        display: flex;
        list-style: none;
      }

      .nav-links li {
        margin-left: 30px;
      }

      .nav-links a {
        color: whitesmoke;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
      }

      .nav-links a:hover,
      .nav-links a.active {
        color: var(--gold);
      }

      .nav-links a::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--gold);
        transition: width 0.3s ease;
      }

      .nav-links a:hover::after,
      .nav-links a.active::after {
        width: 100%;
      }

      .hamburger {
        display: none;
        background: none;
        border: none;
        color: var(--white);
        font-size: 1.5rem;
        cursor: pointer;
      }

      /* Hero Section */
      .hero {
        position: relative;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
      }

      .hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
      }

      .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          to bottom,
          rgba(18, 18, 18, 0.7),
          rgba(18, 18, 18, 0.9)
        );
        z-index: -1;
      }

      .hero-content {
        max-width: 800px;
        padding: 0 20px;
        z-index: 1;
      }

      .hero-content h1 {
        font-family: 'Amonos', 'Anonymous Pro', monospace;
        font-size: 4rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--white);
      }

      .hero-content h1 .highlight {
        font-family: 'Amonos', 'Anonymous Pro', monospace;
        color: #e2b00d;
      }

      .hero-tagline {
        font-size: 1.5rem;
        margin-bottom: 25px;
        color: var(--light-gray);
      }

      .hero-tagline span {
        color: #e2b00d;
        font-weight: 600;
      }

      .hero-desc {
        font-size: 1.2rem;
        margin-bottom: 40px;
        color: var(--light-gray);
        line-height: 1.8;
      }

      .hero-desc .accent {
        color: #e2b00d;
        font-weight: 600;
      }

      .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
      }
/* Hero Slides with Fade Transition */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1);
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide.fade-out {
  opacity: 0;
}

.hero-slide.fade-in {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(200, 16, 47, 0) 0%,
    rgba(18, 18, 18, 0.082) 100%
  );
}
.reveal {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
  text-shadow: 0px 2px 12px rgba(0, 0, 0, 0.45);
}

.highlight {
  color: #f5c542; /* premium gold */
  text-shadow: 0px 2px 10px rgba(245, 197, 66, 0.3);
}


.hero-title {
  font-family: "Montserrat Alternates", sans-serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 1px;
  
}
/* Premium Serif Font Like Your Reference */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;900&display=swap');

.hero-title {
  font-family: 'Amonos', monospace; 
  font-weight: 700; 
  font-size: clamp(3rem, 6vw, 5rem);
  color: #ffffff; 
  line-height: 1.1;
  text-transform: none; /* keeps text as typed */
}

.hero-title .highlight {
  color: #f5c542; /* premium gold */
  text-shadow: 0 2px 10px rgba(245, 197, 66, 0.3);
}


.brand-gold {
  color: #f5c542; /* gold for 'Buni' */
  text-shadow: 2px 4px 12px rgba(245,197,66,0.4);
}


/* Mix 5 → Subtle Premium Fade-Up Animation */
@keyframes fadeLift {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
  }
  60% {
    opacity: 0.9;
    transform: translateY(6px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.animate {
  animation: fadeLift 1.4s ease-out forwards;
  animation-delay: 0.2s;
}





/* Slide Indicators */
.slide-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.indicator.active {
  background-color: var(--gold);
  transform: scale(1.2);
  border-color: var(--white);
}

.indicator:hover {
  background-color: var(--primary-red);
  transform: scale(1.1);
}

/* Hero Overlay */
.hero-overlay {
  background: linear-gradient(
    to bottom,
    rgba(18, 18, 18, 0.4),
    rgba(18, 18, 18, 0.8)
  );
}
      /* Services Showcase */
      .services-showcase {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
      }
      .services-showcase h4{
        color: #e2b00d;
      }

      .service-card {
        background-color: var(--dark-gray);
        border-radius: 10px;
        padding: 40px 30px;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-top: 4px solid var(--primary-red);
      }

      .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        border-top-color: var(--gold);
      }

      .service-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 25px;
        background: linear-gradient(
          135deg,
          var(--primary-red),
          var(--dark-red)
        );
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 2rem;
      }

      .service-card:hover .service-icon {
        background: linear-gradient(135deg, var(--gold), var(--light-gold));
        color: var(--black);
      }

      .service-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #e2b00d;;
      }

      .service-card p {
        color: var(--light-gray);
        margin-bottom: 20px;
      }

      /* Why Choose Us */
      .why-choose-us {
        background-color: var(--dark-gray);
      }
      

      .stats-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        text-align: center;
      }

      .stat-item {
        padding: 30px 20px;
        background-color: var(--medium-gray);
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
      }

      .stat-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      }

      .stat-number {
        font-size: 3rem;
        font-weight: 700;
        color: var(--gold);
        margin-bottom: 10px;
      }

      .stat-text {
        font-size: 1.1rem;
        color: var(--light-gray);
      }

      /* Testimonials */
      .testimonials {
        background-color: var(--black);
      }
      .testimonials h2{
        color: #e2b00d;
      }

      .testimonial-slider {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
        overflow: hidden;
      }

      .testimonial-slide {
        display: none;
        padding: 40px;
        background-color: var(--dark-gray);
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        text-align: center;
      }

      .testimonial-slide.active {
        display: block;
      }

      .testimonial-text {
        font-size: 1.2rem;
        font-style: italic;
        margin-bottom: 25px;
        color: var(--light-gray);
        line-height: 1.8;
      }

      .testimonial-author {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 5px;
        color: var(--white);
      }

      .testimonial-position {
        color: var(--gold);
        margin-bottom: 15px;
      }

      .testimonial-rating {
        color: var(--gold);
        font-size: 1.2rem;
      }

      .slider-controls {
        display: flex;
        justify-content: center;
        margin-top: 30px;
        gap: 10px;
      }

      .slider-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: var(--medium-gray);
        cursor: pointer;
        transition: background-color 0.3s ease;
      }

      .slider-dot.active {
        background-color: var(--primary-red);
      }

      /* Footer */
      footer {
        background-color: black;
        padding: 60px 0 20px;
        
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 40px;
      }

      .footer-about .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--white);
      }

      .footer-about .footer-logo span {
        color: var(--primary-red);
      }

      .footer-about p {
        color: var(--light-gray);
        margin-bottom: 25px;
        line-height: 1.7;
      }

      .social-links {
        display: flex;
        gap: 15px;
      }

      .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: var(--medium-gray);
        border-radius: 50%;
        color: var(--white);
        text-decoration: none;
        transition: all 0.3s ease;
      }

      .social-links a:hover {
        background-color: var(--primary-red);
        transform: translateY(-3px);
      }

      .footer-links h3,
      .footer-contact h3 {
        font-size: 1.3rem;
        margin-bottom: 25px;
        color: #e2b00d;;
        position: relative;
        padding-bottom: 10px;
      }

      .footer-links h3::after,
      .footer-contact h3::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background-color: var(--gold);
      }

      .footer-links ul {
        list-style: none;
      }

      .footer-links li {
        margin-bottom: 12px;
      }

      .footer-links a {
        color: var(--light-gray);
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .footer-links a:hover {
        color: var(--gold);
        padding-left: 5px;
      }

      .footer-contact ul {
        list-style: none;
      }

      .footer-contact li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
      }

      .footer-contact i {
        color: var(--gold);
        margin-right: 15px;
        margin-top: 5px;
        font-size: 1.1rem;
      }

      .footer-contact p {
        color: var(--light-gray);
        line-height: 1.6;
      }

      .footer-contact a {
        color: var(--light-gray);
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .footer-contact a:hover {
        color: var(--gold);
      }

      .footer-bottom {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid var(--medium-gray);
        color: var(--light-gray);
        font-size: 0.9rem;
      }

      .footer-bottom a {
        color: var(--gold);
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .footer-bottom a:hover {
        color: var(--light-gold);
      }

      /* Sticky Quote Button */
      .sticky-quote {
        position: fixed;
        bottom: 50px;
        right: 30px;
        background: linear-gradient(
          135deg,
          var(--primary-red),
          var(--dark-red)
        );
        color: var(--white);
        padding: 15px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        box-shadow: 0 5px 15px rgba(200, 16, 46, 0.4);
        z-index: 999;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
      }

      .sticky-quote:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(200, 16, 46, 0.6);
        background: linear-gradient(135deg, var(--gold), var(--light-gold));
        color: var(--black);
      }

      /* Animation Classes */
      .reveal {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 15s ease forwards;
      }

      .reveal-delay {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 8s ease 0.3s forwards;
      }

      .reveal-late {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 8s ease 0.6s forwards;
      }

      .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
      }

      .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
      }

      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Responsive Design */
      @media (max-width: 992px) {
        .hero-content h1 {
          font-size: 3rem;
        }

        .hero-tagline {
          font-size: 1.3rem;
        }

        .hero-desc {
          font-size: 1.1rem;
        }

        .section-title {
          font-size: 2.2rem;
        }
      }

      @media (max-width: 768px) {
        .nav-links {
          position: fixed;
          top: 80px;
          left: -100%;
          width: 100%;
          height: calc(100vh - 80px);
          background-color: var(--dark-gray);
          flex-direction: column;
          align-items: center;
          justify-content: flex-start;
          padding-top: 50px;
          transition: left 0.3s ease;
          z-index: 999;
        }

        .nav-links.active {
          left: 0;
        }

        .nav-links li {
          margin: 15px 0;
        }

        .hamburger {
          display: block;
        }

        .hero-content h1 {
          font-size: 2.5rem;
        }

        .hero-tagline {
          font-size: 1.2rem;
        }

        .hero-desc {
          font-size: 1rem;
        }

        .section-title {
          font-size: 2rem;
        }

        .hero-buttons {
          flex-direction: column;
          align-items: center;
        }

        .btn {
          width: 100%;
          max-width: 250px;
        }
      }

      @media (max-width: 576px) {
        .hero-content h1 {
          font-size: 2rem;
        }

        .hero-tagline {
          font-size: 1.1rem;
        }

        .section {
          padding: 60px 0;
        }

        .section-title {
          font-size: 1.8rem;
        }

        .service-card {
          padding: 30px 20px;
        }

        .testimonial-slide {
          padding: 30px 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;
   
  }
  
  .footer-logo-image {
    height: 45px;
  }
}
 .typewriter-text {
        display: inline-block;
        overflow: hidden;
        border-right: 3px solid var(--accent);
        white-space: nowrap;
        margin: 0 auto;
        animation: typing 3.5s steps(40, end),
          blink-caret 0.75s step-end infinite;
          color:var(--gold)
      }
 
