* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}
.header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 200px;
  height: auto;
}

/* NAV DESKTOP */
.nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  text-decoration: none;
  font-size: 16px;
  color: #555;
  font-weight: 500;
}
.call-now a {
  padding: 8px 18px;
  background: #d4af37;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
}

.call-now a:hover {
  background: #d4af37;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100%;

  background-image: url("./assets/banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.2)
  );
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-content {
  max-width: 520px;
  color: #ffffff;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #e5e5e5;
}

.hero-form {
  width: 380px;
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.hero-form h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-form form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-form input,
.hero-form textarea {
  padding: 12px 14px;
  border-radius: 8px;
  border: none;
  background: #eeeeee;
  font-size: 14px;
  outline: none;
}

.hero-form textarea {
  resize: none;
  height: 90px;
}

.hero-form button {
  margin-top: 10px;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #d4af37;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.hero-form button:hover {
  background: #c39a2d;
}

/* mobile from start */

.mobile form {
  display: none;
}

.hero-form-section {
  width: 95%;
  margin: auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  margin-top: 30px;
  display: none;
}

.hero-form-section h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-form-section form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-form-section input,
.hero-form-section textarea {
  padding: 12px 14px;
  border-radius: 8px;
  border: none;
  background: #eeeeee;
  font-size: 14px;
  outline: none;
}

.hero-form-section textarea {
  resize: none;
  height: 90px;
}

.hero-form-section button {
  margin-top: 10px;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: #d4af37;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.hero-form-section button:hover {
  background: #c39a2d;
}
/* mobile form end */

@media (max-width: 768px) {
  .call-now {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .header-container {
    flex-direction: row; /* keep logo + toggle in one row */
    align-items: center;
    justify-content: space-between;
  }

  .nav ul {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-container {
    flex-direction: column;
    padding: 60px 20px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-form {
    width: 100%;
    max-width: 420px;
    display: none;
  }
  .hero-form-section {
    display: block;
  }
}

.about {
  margin-top: 80px;
  width: 100%;
  padding: 26px 20px;
  background: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 60px;
}

.about-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 14px;
  object-fit: cover;
}

.about-content {
  max-width: 560px;
}

.about-content h2 {
  font-size: 40px;
  font-weight: 00;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
}

.stat h3 {
  font-size: 26px;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 4px;
}

.stat span {
  font-size: 13px;
  color: #333;
  line-height: 1.4;
}

.divider {
  width: 1px;
  height: 45px;
  background: #d4af37;
}

.about-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #d4af37;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
}

.about-btn:hover {
  background: #c39a2d;
}

@media (max-width: 768px) {
  .about {
    margin-top: 30px;
  }

  .about-container {
    flex-direction: column;
    gap: 40px;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .divider {
    display: none;
  }

  .stat {
    width: 45%;
  }
}

.services {
  padding: 100px 20px;
  text-align: center;
  background: #ffffff;
}

.services-title {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 70px;
}

.services-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
/* === SERVICES AS CARDS (KEEP LAYOUT SAME) === */

.services-track {
  transform: none !important;
}

.services-slide {
  min-width: auto;
  width: 100%;
}

/* Each card stays exactly same */
.service {
  flex: 0 0 auto;
}

/* Hide arrows */
.services-arrows {
  display: none;
}

.service {
  position: relative;
  display: flex;
  align-items: center;
}

.service img {
  width: 400px;
  height: 400px;
  /* object-fit: cover; */
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

.service-content {
  background: #eef5e6;
  padding: 28px 36px;
  border-radius: 16px;
  max-width: 460px;
  margin-left: -25px;
  z-index: 1;
  text-align: left;
}

.service-content h3 {
  font-size: 21px;
  margin-bottom: 14px;
}

.service-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 18px;
}

.service-content a {
  display: inline-block;
  background: #d4af37;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
}

.services-arrows {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 60px;
}

.services-arrows span {
  font-size: 34px;
  color: #d4af37;
  cursor: pointer;
}

@media (max-width: 768px) {
  .services-title {
    font-size: 32px;
  }

  .services-slide {
    flex-direction: column;
    gap: 50px;
  }

  .service {
    flex-direction: column;
  }

  .service img {
    width: 100%;
    max-width: 340px;
    height: auto;
  }

  .service-content {
    margin-left: 0;
    margin-top: -20px;
    max-width: 100%;
    text-align: left;
  }
}

.results {
  position: relative;
  width: 100%;
  padding: 120px 20px;
  background-image: url("./assets/ourresult.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.results-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}

.results-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.results-title {
  font-size: 40px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 60px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.result-card {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 50px 20px;
}

.result-card h3 {
  font-size: 42px;
  font-weight: 600;
  color: #d4af37;
  margin-bottom: 14px;
}

.result-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
}

@media (max-width: 1024px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .results {
    padding: 90px 16px;
  }

  .results-title {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .result-card {
    padding: 40px 20px;
  }

  .result-card h3 {
    font-size: 36px;
  }
}

.special-services {
  padding: 90px 20px;
  background: #fff;
  text-align: center;
}

.special-title {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 60px;
}

.special-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.special-track {
  display: flex;
  transition: transform 0.6s ease;
}

.special-card {
  min-width: 33.3333%;
  padding: 0 12px;
  box-sizing: border-box;
  position: relative;
}

.special-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

/* 1. Create the overlay */
.special-card::before {
  content: "";
  position: absolute;

  /* Match the image positioning (based on your padding) */
  top: 8px;
  left: 12px;
  right: 12px;
  height: 400px;

  /* Dark gradient from bottom to top so text is readable */
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );

  /* Match image styling exactly */
  border-radius: 16px;
  z-index: 1; /* Sits on top of image */
  pointer-events: none; /* Allows clicks to pass through to the image/link */

  /* Match the existing Image Transition & Transform exactly */
  transform: scale(0.96);
  transition: transform 0.4s ease;
}

/* 2. Animate the overlay on hover (Sync with Image) */
.special-card:hover::before {
  transform: scale(1) translateY(4px);
  /* Optional: Make overlay darker on hover if desired */
  /* background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%); */
}

/* 3. Bring text to the front */
.card-text {
  z-index: 2; /* Ensures text sits on top of the overlay */
}
.card-text-call {
  margin-top: 10px;
  display: inline-block;
  background: #d4af37;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
}

.card-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  text-align: center;
}

.card-text .title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.card-text .call {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.special-card {
  position: relative;
  overflow: hidden;
  padding-top: 8px;
}

.special-card img {
  transform: scale(0.96);
  transition: transform 0.4s ease;
}

.special-card:hover img {
  transform: scale(1) translateY(4px);
}

.special-card:hover .title {
  transform: translateY(-6px);
}

.special-card:hover .call {
  opacity: 1;
  transform: translateY(0);
}

.special-arrows {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.special-arrows span {
  font-size: 34px;
  color: #d4af37;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .special-card {
    min-width: 50%;
  }
}

@media (max-width: 600px) {
  .special-card {
    min-width: 100%;
  }

  .special-title {
    font-size: 32px;
  }

  .special-card img {
    height: 360px;
  }
}
.testimonials {
  padding: 20px 20px;
  background: #ffffff;
  text-align: center;
  margin-bottom: 20px;
}

.testimonials-title {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 60px;
}

.testimonials-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-card {
  min-width: 33.33%;
  padding: 0 15px;
  box-sizing: border-box;
}

.testimonial-inner {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
  height: 100%;
}

.quote {
  font-size: 60px;
  color: #8bc34a;
  font-weight: bold;
  margin-bottom: 10px;
}

.testimonial-inner p {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

.client {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.client span {
  font-size: 14px;
  font-weight: 600;
  color: #d4af37;
}

.testimonial-arrows {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.testimonial-arrows span {
  font-size: 34px;
  color: #d4af37;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .testimonial-card {
    min-width: 50%;
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    min-width: 100%;
  }

  .testimonials-title {
    font-size: 32px;
  }
}

.video-testimonials {
  padding: 90px 20px;
  background: #fbf6e6;
  text-align: center;
}

.video-title {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 60px;
}

.video-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.video-track {
  display: flex;
  transition: transform 0.6s ease;
}

.video-page {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.video-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.35);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.name {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #d4af37;
  color: #000;
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 20px;
}

.video-arrows {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.video-arrows span {
  font-size: 34px;
  color: #d4af37;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .video-page {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .video-page {
    grid-template-columns: 1fr;
  }

  .video-title {
    font-size: 32px;
  }

  .video-card img {
    height: 220px;
  }
}

.consult-banner {
  width: 100%;
  min-height: 100vh;

  background-image: url("./assets/consultation.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  padding: 80px 20px;
}

.consult-banner-inner {
  max-width: 600px;
  margin-left: 80px;
}

.consult-banner-inner h1 {
  font-size: 42px;
  font-weight: 500;
  color: #000;
  margin-bottom: 14px;
}

.consult-banner-inner p {
  font-size: 16px;
  color: #000;
  margin-bottom: 30px;
}

.consult-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.consult-form input {
  padding: 14px 16px;
  border-radius: 8px;
  border: none;
  font-size: 14px;
  outline: none;
}

.consult-form button {
  grid-column: span 2;
  padding: 14px;
  border-radius: 8px;
  border: none;
  background: #000;
  color: #f5c542;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

@media (max-width: 900px) {
  .consult-banner {
    min-height: auto;
    padding: 70px 20px;

    background-position: center;
  }

  .consult-banner-inner {
    margin-left: 0;
    max-width: 100%;
  }

  .consult-banner-inner h1 {
    font-size: 30px;
  }

  .consult-form {
    grid-template-columns: 1fr;
  }

  .consult-form button {
    grid-column: span 1;
  }
}

.faq-section {
  padding: 90px 20px;
  background: #ffffff;
}

.faq-title {
  text-align: center;
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 50px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  margin-bottom: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  overflow: hidden;
  transition: background 0.3s ease;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  font-size: 15px;
  line-height: 1.7;
  color: #ffffff;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active {
  background: #8bc34a;
}

.faq-item.active .faq-question {
  color: #ffffff;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 26px 26px;
}

.faq-arrow {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

@media (max-width: 600px) {
  .faq-title {
    font-size: 30px;
  }

  .faq-question {
    font-size: 16px;
    padding: 18px 20px;
  }

  .faq-answer {
    font-size: 14px;
  }
}

.contact-section {
  padding: 12px 20px 100px;
  background: #ffffff;
  text-align: center;
}

.contact-title {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 50px;
}

.contact-form {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
}

.contact-form input {
  background: #e6e6e6;
  border: none;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 14px;
  outline: none;
}

.contact-form button {
  grid-column: span 3;
  margin-top: 20px;
  padding: 10px 28px;
  background: #d4af37;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  width: fit-content;
  justify-self: center;
}

.footer-bar {
  background: #d4af37;
  color: #ffffff;
  padding: 25px 15px;
  font-size: 14px;
}

.footer-bar h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: center;
}

/* 3-column layout */
.footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 15px;
}

.footer-col {
  flex: 1;
  text-align: center;
  margin-bottom: 10px;
}
.footer-col a {
  text-decoration: none;
  font-size: 16px;
  color: #ffffff;
}
.footer-col a img {
  /* margin-right: 2px; */
  vertical-align: middle;
  width: 20px;
  height: 20px;
}
.footer-col p {
  margin: 4px 0;
}

.footer-col strong {
  font-size: 15px;
}

/* copyright */
.footer-copy {
  text-align: center;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 10px;
}

/* Responsive: stack on mobile */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 28px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form button {
    grid-column: span 1;
  }
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25d366;

  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: transform 0.3s ease;
}

.whatsapp-btn img {
  width: 60%;
  height: 60%;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
}

.call-btn {
  position: fixed;
  bottom: 90px;

  right: 20px;
  width: 55px;

  height: 55px;

  background-color: #d4af37;

  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: #d4af37;

  z-index: 999;
  transition: transform 0.3s ease;
}

.call-btn img {
  width: 50%;

  height: 50%;
  filter: brightness(0) invert(1);
}

.call-btn:hover {
  transform: scale(1.08);
}
/* Smooth animation */
.services-track,
.testimonials-track,
.special-track {
  transition: transform 0.6s ease;
}
.call-number {
  position: absolute;
  right: 70px; /* distance from button */
  bottom: 50%;
  transform: translateY(50%);
  background: #fff;
  border: 2px solid #d4af37; /* red border like image */
  padding: 6px 14px;
  font-size: 14px;
  font-weight: bold;
  color: #000;
  white-space: nowrap;
  border-radius: 4px;

  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

/* Speech bubble arrow */
.call-number::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent transparent #d4af37;
}

/* Show on hover */
.call-btn:hover .call-number {
  opacity: 1;
  visibility: visible;
}

/* --- Mobile Menu Logic --- */
/* ===== MOBILE MENU ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #000;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    transition: right 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  }

  .nav.show {
    right: 0;
  }

  .nav ul {
    display: flex;
    flex-direction: column;
    padding: 100px 20px;
    gap: 20px;
  }

  .nav ul li {
    border-bottom: 1px solid #eee;
  }

  .nav ul li a {
    font-size: 18px;
    font-weight: 600;
    color: #333;
  }
}
/* CLOSE BUTTON */
.menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
  display: none;
}

@media (max-width: 768px) {
  .menu-close {
    display: block;
  }
}
.services-track,
.special-track,
.testimonials-track {
  cursor: grab;
}

.services-track:active,
.special-track:active,
.testimonials-track:active {
  cursor: grabbing;
}

/* === DISABLE SPECIAL SERVICES SLIDER === */
.special-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  transform: none !important;
}

.special-card {
  min-width: unset;
}

.special-arrows {
  display: none;
}
/* === DISABLE TESTIMONIAL SLIDER === */
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  transform: none !important;
}

.testimonial-card {
  min-width: unset;
}

.testimonial-arrows {
  display: none;
}
/* === OUR SERVICES : ONE CARD BELOW THE OTHER === */

.services-track {
  display: flex;
  flex-direction: column; /* 🔑 vertical stacking */
  gap: 80px;
  transform: none !important;
}

.services-slide {
  display: flex;
  flex-direction: column; /* 🔑 stack services inside */
  gap: 80px;
  align-items: center;
}

/* Card layout stays SAME */
.service {
  display: flex;
  align-items: center;
}
.services-arrows {
  display: none;
}
