/* Base Styles */
body,html {
  margin: 0;
   font-family: 'Poppins', sans-serif;  /* For headings */
  font-family: 'Inter', sans-serif;    /* For body */
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 120px;
}



header {
   font-family: 'Poppins', sans-serif;  /* For headings */
  font-family: 'Inter', sans-serif;    /* For body */

  background: rgba(255, 255, 255, 0.08);           /* Glass effect */
  backdrop-filter: blur(14px);                     /* Glass blur */
  -webkit-backdrop-filter: blur(14px);             /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.15);      /* Light border */
  border-radius: 15px;
  padding: 10px 40px;
  max-width: 700px;
  margin: 40px auto;                                /* Center horizontally */
  text-align: center;
  box-shadow: 0 0 0 rgba(0,0,0,0);                  /* No glow */
  color: #fff;
  font-weight: 500;
}


.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo img {
  height: 70px;
}

/* Desktop Nav */
.navbar .nav-menu {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar .nav-menu li a {
  text-decoration: none;
  color: white;
  font-weight: 600;
}

.nav-menu li a.book-call {
  color: rgb(255, 123, 0);
  font-weight: bold;
}
.nav-menu li a:hover {
color: #ff9933;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  border-radius: 2px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar {
    display: none;
    position: absolute;
    top: 60px;
    right: 20px;
    background: linear-gradient(to right, #4a4a4a, #1b1b1b);
    border-radius: 10px;
    padding: 15px;
    z-index: 1000;
  }

  .navbar.active {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    gap: 15px;
  }

  .hamburger {
    display: flex;
  }
}

.landing {
   font-family: 'Poppins', sans-serif;  /* For headings */
  font-family: 'Inter', sans-serif;    /* For body */

  text-align: center;
  padding: -100px 10rem;
  max-height: 350px;
}

.landing h1 {
  font-size: 3.5rem;
  font-weight: 400;
}

.landing h1 strong {
  font-weight: 900;
  color: rgb(255, 123, 0);
}

.landing p {
  margin-top: 1rem;
  font-size:1rem;
  color: #ddd;
}

.landing .cta-button {
  margin-top: 2rem;
  display: inline-block;
  background: linear-gradient(135deg, #ff7a00, #ffb347); /* Warm orange gradient */
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(255, 149, 0, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.landing .cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-20deg);
  transition: 0.5s;
}

.landing .cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 30px rgba(255, 149, 0, 0.6);
}

.landing .cta-button:hover::before {
  left: 130%;
}


.landing .cta-button-h {
  margin-top: 2rem;
  display: inline-block;
  border: 2px solid #ff7a00;
  border-color: linear-gradient(135deg, #ff7a00, #ffb347); /* Warm orange gradient */
  color: #ff7a00;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  /* box-shadow: 0 4px 20px rgba(255, 149, 0, 0.4); */
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.landing .cta-button-h::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-20deg);
  transition: 0.5s;
}

.landing .cta-button-h:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 30px rgba(255, 149, 0, 0.6);
}

.landing .cta-button-h:hover::before {
  left: 130%;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .landing h1 {
    font-size: 2.8rem;
  }
}


.hero {
   font-family: 'Poppins', sans-serif;  /* For headings */
  font-family: 'Inter', sans-serif;    /* For body */
   margin-top: 160px;
  text-align: center;
  padding: -10px 40px 100px;
}
.hero h2 {
  font-size: 48px;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #ffffff;
}
.hero h2 span {
  color: rgb(255, 119, 0);
}

.services {
  width: 100%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 30px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  aspect-ratio: 1 / 1.1;
  transition: transform 0.5s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transform-style: preserve-3d;
  perspective: 1000px;
}

/* Shine Effect */
.service-card::after {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(246, 209, 140, 0.15) 50%,
    transparent 70%
  );
  transform: rotate(0deg);
  animation: shine 3s infinite linear;
  z-index: 1;
  pointer-events: none;
}

/* Hover Motion */
.service-card:hover {
  transform: scale(1.04) rotateY(4deg) rotateX(2deg);
  box-shadow: none;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
}

/* Optional Background Image */
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: 0;
}

/* === ICON STYLING === */
.service-card .service-icon,
.service-card .service-icon-brand,
.service-card .service-icon-graphic {
  position: relative;
  width: 100%;
  max-width: 150px;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
  margin: 0 auto 10px auto;
  z-index: 2;
  background-image: none;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  padding: 10px;
}

/* FRAME STYLE */
.service-icon-frame {
  width: 110px;
  height: 110px;
  margin: 0 auto 16px auto;
  background: url('orange frame.png') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* === TEXT === */
.service-card h3,
.service-card p,
.learn-more {
  position: relative;
  z-index: 2;
  color: #fff;
  margin: 0;
  text-align: center;
}

.service-card h3 {
   font-family: 'Poppins', sans-serif;  /* For headings */
  font-family: 'Inter', sans-serif;    /* For body */

  color: #ff7700;
  font-size: 22px;
  margin-bottom: 10px;
}

.service-card p {
   font-family: 'Poppins', sans-serif;  /* For headings */
  font-family: 'Inter', sans-serif;    /* For body */

  font-size: 15px;
  line-height: 1.4;
  color: #eee;
  margin-bottom: 12px;
}

.learn-more {
  font-size: 14px;
  text-decoration: underline;
  color: #feb766;
  transition: color 0.3s ease;
}

.learn-more:hover {
  color: #fff;
}


 .our-work {
   font-family: 'Poppins', sans-serif;  /* For headings */
  font-family: 'Inter', sans-serif;    /* For body */

  padding: 60px 20px;
  text-align: center;
}

.our-work h2 {
   font-family: 'Poppins', sans-serif;  /* For headings */
  font-family: 'Inter', sans-serif;    /* For body */

  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #eee;
}

.our-work h2 span {
   font-family: 'Poppins', sans-serif;  /* For headings */
  font-family: 'Inter', sans-serif;    /* For body */

  color: #ff6600;
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}


.work-item {
  width: 100%;
  border-radius: 13px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.work-item:hover {
  transform: scale(1.03);
}



/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.85);
}

.modal-content {
  margin: 5% auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: rgb(34, 34, 34);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}


.testimonial-section {

  padding: 10px 20px 80px 20px; /* reduced top padding */
  margin-top: -70px;
  text-align: center;
  color: #fff;
}

.testimonial-section h2 {
   font-family: 'Poppins', sans-serif;  /* For headings */
  font-family: 'Inter', sans-serif;    /* For body */

  font-size: 2.4rem;
  margin-bottom: 30px;
  color: #fff;
}

.testimonial-section h2 span {
   font-family: 'Poppins', sans-serif;  /* For headings */
  font-family: 'Inter', sans-serif;    /* For body */

  color: #ff6600;
}

.testimonial-frame-container {
  max-width: 1500px; /* increased from 1000px */
  padding: 60px;
  margin: 0 auto;
  position: relative;
}

.testimonial-frame-container::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  background-size: 130% 320%;
  pointer-events: none;
  z-index: -1;
}

.testimonial-wrapper {
  position: relative;
}

.testimonial-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.testimonial {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  padding: 40px 40px;
  margin: 0 auto;
  max-width: 850px; /* increased from 700px */
  border-radius: 16px;
  background: linear-gradient(
    to right bottom,
    rgba(255, 102, 0, 0.1),
    rgba(0, 0, 0, 0.4)
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.testimonial.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.testimonial p {
   font-family: 'Poppins', sans-serif;  /* For headings */
  font-family: 'Inter', sans-serif;    /* For body */

  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #eee;
}

.testimonial h4 {
   font-family: 'Poppins', sans-serif;  /* For headings */
  font-family: 'Inter', sans-serif;    /* For body */

  font-size: 16px;
  color: #ff6600;
  font-weight: 500;
}

/* Arrows */
.testimonial-controls {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.testimonial-controls i {
  font-size: 30px;
  color: #ff6600;
  cursor: pointer;
  transition: color 0.3s ease;
}

.testimonial-controls i:hover {
  color: #fff;
}

/* Dots */
.testimonial-dots {
  margin-top: 25px;
}

.dot {
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 6px;
  background-color: #999;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.active-dot {
  background-color: #ff6600;
}

.about-me-section {
  font-family: 'Poppins', sans-serif;  /* For headings */
  font-family: 'Inter', sans-serif;    /* For body */
  padding: 20px 20px 100px 20px;
  margin-top: -70px;
  text-align: center;
  color: #fff;
}

.about-me-section h2 {
  font-family: 'Poppins', sans-serif;  /* For headings */
  font-family: 'Inter', sans-serif;    /* For body */
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #eee;
}

.about-me-section h2 span {
  font-family: 'Poppins', sans-serif;  /* For headings */
  font-family: 'Inter', sans-serif;    /* For body */
  color: #ff6600;
}

.about-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.about-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 30px;
  border: 3px solid rgba(255, 123, 0, 0.5);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-radius: 24px;
  max-width: 1000px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  gap: 30px;
}

.about-card:hover {
  transform: scale(1.04) rotateY(4deg) rotateX(2deg);
  box-shadow: none;
}

.about-image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.1) rotate(-2deg);
  filter: brightness(1.1) contrast(1.1);
}

/* Right side text */
.about-content {
  flex: 1;
  text-align: left;
  color: #fff;
  margin-left: 40px;
}

.about-content h3 {
  font-family: 'Poppins', sans-serif;  /* For headings */
  font-family: 'Inter', sans-serif;    /* For body */
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #ff6600;
}

.about-content p {
  font-family: 'Poppins', sans-serif;  /* For headings */
  font-family: 'Inter', sans-serif;    /* For body */
  font-size: 1rem;
  color: #ccc;
}

.about-content .social-icons {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  gap: 12px;
}

.about-content .social-icons a {
  color: #ffffff;
  font-size: 1.4rem;
  margin-right: 20px;
  transition: color 0.3s ease;
}

.about-content .social-icons a:hover {
  color: #ff9900;
}

/* ✅ Mobile responsive layout */
@media (max-width: 768px) {
  .about-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    padding: 25px 20px;
  }

  .about-content {
    margin-left: 0;
    margin-top: 20px;
    text-align: center;
  }

  .about-content .social-icons {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
  }

  .about-content .social-icons a {
    margin-right: 0;
    margin: 0 10px;
  }
}
.simple-footer {
  background-color: #000000;
  color: #ff9900;
  text-align: left;
  margin-top: 40px;
  padding: 40px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}



@media (max-width: 768px) {
  .landing {
    padding: 20px 15px;
    height: 100vh;
    background-position: center;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    left: 20px;
    top: 10px;
  }

  .logo img {
    height: 50px;
  }

  .nav-menu {
    flex-direction: column;
    gap: 5px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 10px;
  }

  .nav-item {
    padding: 8px 0;
    font-size: 13px;
  }

  .left-icons {
    bottom: 10px;
    top: auto;
    left: 15px;
    flex-direction: row;
    gap: 10px;
  }

  .left-icons .tools {
    display: none;
  }

  .left-icons .social-icons {
    flex-direction: row;
    gap: 10px;
  }

  .content {
     font-family: 'Poppins', sans-serif;  /* For headings */
  font-family: 'Inter', sans-serif;    /* For body */

    position: absolute;
    top: 25%;
    left: 5%;
    right: 5%;
    max-width: 90%;
    text-align: center;
  }

  .content h2 {
     font-family: 'Poppins', sans-serif;  /* For headings */
  font-family: 'Inter', sans-serif;    /* For body */

    font-size: 18px;
    letter-spacing: 0.5px;
  }

  .content h1 {
     font-family: 'Poppins', sans-serif;  /* For headings */
  font-family: 'Inter', sans-serif;    /* For body */

    font-size: 36px;
    margin: 5px 0;
  }

  .content p {
     font-family: 'Poppins', sans-serif;  /* For headings */
  font-family: 'Inter', sans-serif;    /* For body */

    font-size: 14px;
    line-height: 1.5;
  }

  .btn {
    width: 250px;
    height: 90px;
    font-size: 16px;
    margin: 20px auto 0 auto;
    background-size: 100% 100%;
    display: inline-flex;
  }
}

.process-section {
   font-family: 'Poppins', sans-serif;  /* For headings */
  font-family: 'Inter', sans-serif;    /* For body */

  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.process-section h2 {
   font-family: 'Poppins', sans-serif;  /* For headings */
  font-family: 'Inter', sans-serif;    /* For body */

  font-size: 42px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #fff;
}

.process-section h2 span {
   font-family: 'Poppins', sans-serif;  /* For headings */
  font-family: 'Inter', sans-serif;    /* For body */

  color: #ff6600;
}

.process-carousel-container {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.process-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: none; /* Firefox */
}

.process-carousel::-webkit-scrollbar {
  display: none; /* Chrome */
}

.process-card {
  flex: 0 0 80%;
  background: #1b1b1b;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 30px 24px;
  min-width: 300px;
  color: #ddd;
  transition: transform 0.3s ease;
  text-align: left;
}

.process-card:hover {
  transform: translateY(5px);
}

.step-number {
  font-size: 36px;
  font-weight: 600;
  color: #ff6600;
  margin-bottom: 16px;
}

.process-controls {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.process-controls button {
  background: none;
  border: none;
  font-size: 36px;
  color: #ff6600;
  cursor: pointer;
  transition: color 0.3s ease;
}

.process-controls button:hover {
  color: #ffffff;
}

/* Section base */
.tools-section {
  padding: -10px 20px;
  margin-top: 200px;
  display: flex;
  justify-content: center;
}

/* Glassmorphism card */
.tools-glass-card {
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  background: rgba(255, 102, 0, 0.07); /* Faint orange tint */
  border: 1px solid rgba(255, 102, 0, 0.1);
  border-radius: 20px;
  padding: 40px;
  max-width: 1150px;
  width: 100%;
  box-shadow: none; /* no glow */
  overflow: hidden;
}

/* Title */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.section-title span {
  color: #ff6600
}

/* Marquee area */
.tools-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Scrolling Track (doubled for smooth infinite loop) */
.tools-track {
  display: flex;
  width: fit-content;
  animation: scrollLoop 20s linear infinite;
}

.tools-track img {
  height: 65px;
  margin: 0 25px;
  transition: transform 0.3s ease;
  opacity: 0.9;
  filter: grayscale(0.1) brightness(1.1);
}

.tools-track img:hover {
  transform: scale(1.1);
}

/* Keyframes for smooth infinite loop */
@keyframes scrollLoop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #0d0d0d;
  color: white;
}

/* Footer Container */
.footer-container {
  background-color: #000000;
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

/* Social Icons */
.footer-social a {
  color: white;
  margin-right: 14px;
  font-size: 35px;
  transition: transform 0.3s ease;
}

.footer-social a:hover {
  transform: scale(1.2);
  color: #ff6600;
}

/* Footer Text */
.footer-text {
  font-family: 'Poppins', sans-serif;  /* For headings */
  font-family: 'Inter', sans-serif;    /* For body */
   
  font-size: 14px;
  margin-top: 10px;
}
.footer-left {
  flex: 1;
  min-width: 250px;
}

.footer-logo img {
  width: 500px;
  margin-bottom: 10px;
}


/* Contact Form */
.contact-form {
  max-width: 600px;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  font-family: 'Poppins', sans-serif;  /* For headings */
  font-family: 'Inter', sans-serif;    /* For body */

  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Input Styling */
.input-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.input-row input {
  flex: 1;
  min-width: 180px;
}

input,
textarea {
  background-color: #1a1a1a;
  color: white;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
  width: 100%;
  margin-bottom: 15px;
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #ff6600;
  outline: none;
}

textarea {
  height: 150px;
  resize: vertical;
}

/* Full width for subject and message */
.full-width {
  width: 96%;
}

/* Button Style - Glass, No Glow */
.send-button {
  background: rgba(251, 107, 39, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.send-button:hover {
  background: rgba(255, 125, 32, 0.15);
}                                                                             

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: transparent;
  pointer-events: none;  /* 👈 Add this */
}


