* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #111827;
  background: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

hr {
  margin-bottom: 25px;
  border: 0;
  border-top: 1px solid #e5e7eb;
}

/* ---------------- NAVBAR ---------------- */

.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 9999;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #4B8A74;
  cursor: pointer;
}

.logo svg {
  color: #4B8A74;
}

/* NAV LINKS (DESKTOP) */
.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav-links a {
  text-decoration: none;
  color: #111827;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 2px;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #4666B4;
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: #000099;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: #000099;
}

/* hamburger */
#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #111827;
  transition: 0.3s;
}

@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    border-bottom: 1px solid #e5e7eb;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #f3f4f6;
  }

  #menu-toggle:checked ~ .nav-links {
    max-height: 260px;
    opacity: 1;
    visibility: visible;
  }

  #menu-toggle:checked + .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  #menu-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }
  #menu-toggle:checked + .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
}

/* ---------------- HERO ---------------- */

.hero-section {
  position: relative;
  height: 100vh;
  background-image: url("https://images.pexels.com/photos/7651824/pexels-photo-7651824.jpeg?auto=compress&cs=tinysrgb&w=1920");
  background-size: cover;
  background-position: center 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 720px;
  padding: 0 1.5rem;
}

.hero-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.75rem;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.9rem;
  opacity: 0.8;
}

.cta-button {
  background: #d23636;
  color: #ffffff;
  padding: 0.9rem 1.9rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-1px);
  background: #b91c1c;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
}

.link-secondary {
  align-self: center;
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.95rem;
}

.link-secondary:hover {
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Scroll arrow */

.scroll-chevron-container {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
}

.chevron {
  position: relative;
  width: 32px;
  height: 4px;
  opacity: 0;
  transform: scale(0.3);
  animation: move-chevron 3s ease-out infinite;
  margin: 6px auto;
}

.chevron::before,
.chevron::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  background: #ffffff;
}

.chevron::before {
  left: 0;
  transform: skewY(30deg);
}

.chevron::after {
  right: 0;
  transform: skewY(-30deg);
}

.chevron:nth-child(1) {
  animation-delay: 0s;
}
.chevron:nth-child(2) {
  animation-delay: 0.4s;
}
.chevron:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes move-chevron {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateY(12px);
  }
  66% {
    opacity: 1;
    transform: translateY(18px);
  }
  100% {
    opacity: 0;
    transform: translateY(26px) scale(0.5);
  }
}

/* ---------------- SECTION HEADERS ---------------- */

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 0.98rem;
  color: #6b7280;
}

/* ---------------- SERVICES ---------------- */

/* SERVICE CARD BASE */
.service-row {
  padding: 22px;
  margin-bottom: 20px;
  border-radius: 14px;
  display: flex;
  gap: 24px;
  align-items: center;
  border: 2px solid transparent; /* important */
  transition: 0.3s ease;
}

.service-row:hover {
  border-color: #4B8A74;
  box-shadow: 0 8px 20px rgba(75, 138, 116, 0.15);
  transform: translateY(-2px);
}

/* RANDOM FAINT BACKGROUNDS */
.service-row:nth-child(2) {
  background: #eef7ff;
}
.service-row:nth-child(3) {
  background: #fff6e8;
}
.service-row:nth-child(4) {
  background: #f2ffee;
}
.service-row:nth-child(5) {
  background: #f8f0ff;
}
.service-row:nth-child(6) {
  background: #e8faff;
}
.service-row:nth-child(7) {
  background: #fff2f5;
}

/* IMAGE */
.service-row img {
  width: 32%;
  border-radius: 10px;
  object-fit: cover;
}

/* TEXT */
.service-text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
}

.service-desc {
  color: #4b5563;
  font-size: 0.98rem;
  margin-bottom: 10px;
}

/* BULLET LIST */
.service-list {
  list-style: disc;
  padding-left: 20px;
}

.service-list li {
  font-size: 0.95rem;
  margin-bottom: 6px;
  line-height: 1.5;
  color: #1d4ed8;
}

/* Reverse layout */
.service-row.reverse {
  flex-direction: row-reverse;
}

.service-row img {
  width: 32%;
  border-radius: 10px;
  object-fit: cover;
}

.service-text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111827;
}

.service-desc {
  color: #4b5563;
  font-size: 0.98rem;
  margin-bottom: 10px;
}

/* Service bullet list style */
.service-list {
  list-style: none; /* Remove default bullets */
  padding-left: 0;
  margin-top: 15px;
}

.service-list li {
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.5;
  color: #374151; /* Softer dark color for text */
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.service-icon {
  color: #4B8A74; /* Theme color */
  font-size: 1.2rem;
  margin-top: 2px; /* Align with the first line of text */
  min-width: 24px;
  text-align: center;
}

.service-list li strong {
  color: #111827; /* Darker color for headings */
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

/* ----------------------Partners------------------------ */

.partner-title{
  width: 100%;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}
.partners-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 30px 0 25px;
  height: auto;
  display: flex;
}

.partners-track {
  display: flex;
  gap: 70px;
  align-items: center;
  /* position: absolute;  <-- Removed */
  /* top: 25px;           <-- Removed */
  /* left: 0;             <-- Removed */
  flex-shrink: 0;      /* Prevent shrinking */
  padding-right: 70px; /* Gap between the two tracks */
  will-change: transform;
  animation: scroll 20s linear infinite;
  white-space: nowrap;
}

.partners-slider .partners-track img {
  height: 70px;
  opacity: 0.9;
  transition: 0.3s ease;
}

/* .track2 { left: 100%; } <-- Removed */

/* Pause on hover (optional) */
.partners-slider:hover .partners-track {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%); /* Move left by 100% of its width */
  }
}

/* ----------------------Awards & Certificates------------------------ */

.awards-section {
  background: #f9fafb;
  padding: 50px 0;
}

.awards-title {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.awards-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 30px 0 25px;
  height: auto;
  display: flex;
}

.awards-track {
  display: flex;
  gap: 150px;
  align-items: center;
  flex-shrink: 0;
  padding-right: 150px;
  will-change: transform;
  animation: scroll-awards 25s linear infinite;
  white-space: nowrap;
}

.awards-slider .awards-track img {
  height: 80px;
  opacity: 0.95;
  transition: 0.3s ease;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.awards-slider .awards-track img:hover {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Pause on hover */
.awards-slider:hover .awards-track {
  animation-play-state: paused;
}

@keyframes scroll-awards {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Award Placeholder Styling */
.award-placeholder {
  min-width: 300px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  flex-shrink: 0;
}

.award-placeholder span {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  padding: 20px;
}

.award-placeholder:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}


/* ---------------- ABOUT ---------------- */

.about-section {
  padding: 70px 0;
  background: #4b8a74;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.about-subtitle {
  color: #d1d5db;
}

.about-content p {
  color: #ffffff;
  font-size: 0.98rem;
  margin-bottom: 1rem;
}

.about-list {
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
}

.about-list li {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: black;
}

.about-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
}

/* ---------------- TESTIMONIALS ---------------- */

.testimonials-section {
  padding: 70px 0;
  background: #f9fafb;
}

.testimonial-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 26px;
}

.testimonials-carousel {
  display: flex;
  gap: 1.4rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 2px;
  scroll-snap-type: x mandatory;
}

.testimonials-carousel::-webkit-scrollbar {
  height: 6px;
}

.testimonials-carousel::-webkit-scrollbar-track {
  background: #f3f4f6;
}

.testimonials-carousel::-webkit-scrollbar-thumb {
  background: #cbd5f5;
  border-radius: 999px;
}

.testimonial-card {
  min-width: 280px;
  max-width: 300px;
  background: #ffffff;
  padding: 1.8rem 1.4rem;
  border-radius: 14px;
  scroll-snap-align: start;
  border: 1px solid #e5e7eb;
}

.profile-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 0.8rem auto;
  border-radius: 50%;
  overflow: hidden;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card h4 {
  text-align: center;
  margin-bottom: 2px;
  font-weight: 600;
}

.role {
  text-align: center;
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.stars {
  text-align: center;
  color: #fbbf24;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.testimonial-text {
  font-size: 0.9rem;
  color: #4b5563;
  text-align: center;
}

/* slider buttons */
.slide-btn {
  background: #D92525;
  color: #ffffff;
  border: none;
  font-size: 18px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  cursor: pointer;
  display: grid;
  place-items: center;
  position: absolute;
  transition: 0.2s;
}

.slide-btn:hover {
  background: #b91c1c;
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

/* ---------------- CONTACT ---------------- */

.contact-title{
  width: 100%;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}
.contact-map-section {
  padding: 80px 0;
  background: #1f2937; /* Dark background */
}

.contact-map-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Form Side */
.contact-form-block {
  background: transparent;
  padding: 0;
}

.contact-form-block h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f9fafb; /* Light text */
  margin-bottom: 24px;
  text-align: center;
}

#contactForm {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#contactForm input,
#contactForm textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #374151; /* Dark border */
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: "Inter", sans-serif;
  color: #f9fafb; /* Light text */
  background: #111827; /* Darker input bg */
  transition: all 0.2s ease;
}

#contactForm input::placeholder,
#contactForm textarea::placeholder {
  color: #9ca3af;
}

#contactForm input:focus,
#contactForm textarea:focus {
  outline: none;
  border-color: #4B8A74;
  background: #111827;
  box-shadow: 0 0 0 4px rgba(75, 138, 116, 0.15);
}

#contactForm textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit-btn {
  background: #4B8A74;
  color: #ffffff;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 8px;
  align-self: flex-start;
}

.contact-submit-btn:hover {
  background: #3b6e5c;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Info Side */
.contact-info-block {
  padding-top: 10px;
}

.contact-info-block h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f9fafb; /* Light text */
  margin-bottom: 24px;
}

.office-address {
  font-size: 1.05rem;
  color: #d1d5db; /* Light gray text */
  line-height: 1.6;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: rgba(75, 138, 116, 0.15); /* Low opacity teal */
  color: #4B8A74;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.info-item p {
  font-size: 1rem;
  color: #d1d5db; /* Light gray text */
  font-weight: 500;
}

.contact-note {
  font-size: 0.95rem;
  color: #9ca3af;
  padding-top: 20px;
  border-top: 1px solid #374151;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-map-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-submit-btn {
    width: 100%;
  }
}
/* ---------------- FOOTER ---------------- */

.footer {
  background: #111827;
  color: #e5e7eb;
  padding: 18px 0;
  font-size: 0.85rem;
}

/* Flexbox layout */
.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  justify-content: center; /* centers first text */
  align-items: center;
  position: relative; /* allows right alignment */
}

.footer-left {
  text-align: center;
  width: 100%;
}

/* Right-corner text */
.footer-text {
  position: absolute;
  right: 0;
  font-size: 12px;
}

/* Link styles */
.footer-link {
  color: #1a3a8c;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
  background-color: #1a3a8c;
  /* padding: 3px 6px;
  border-radius: 4px; */
}

/* ---------------- WHATSAPP POPUP ---------------- */
.whatsapp-popup-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: all 0.3s ease;
}

.whatsapp-popup-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.whatsapp-popup-btn i {
  font-size: 34px;
}

/* Pulse Animation */
.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Overlay */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  display: none;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popup-overlay.show {
  display: block;
  opacity: 1;
}

/* Popup Box */
.popup-box {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 350px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 10001;
  display: none;
  overflow: hidden;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: 'Inter', sans-serif;
}

.popup-box.show {
  display: block;
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Header */
.popup-header {
  background: #075e54; /* WhatsApp Dark Green */
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.agent-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.agent-profile img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.agent-info h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.agent-info {
  font-size: 0.8rem;
  opacity: 0.9;
  display: flex;
  flex-direction: column;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #25d366;
  border-radius: 50%;
  margin-right: 4px;
}

.close-icon {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.8;
  transition: 0.2s;
}

.close-icon:hover {
  opacity: 1;
}

/* Body */
.popup-body {
  padding: 20px;
  background: #e5ddd5; /* WhatsApp Chat Bg */
  background-image: url("https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png");
  background-size: 300px;
}

.chat-bubble {
  background: white;
  padding: 12px 16px;
  border-radius: 0 12px 12px 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  position: relative;
  max-width: 85%;
}

.chat-bubble p {
  font-size: 0.95rem;
  color: #111827;
  margin-bottom: 4px;
  line-height: 1.4;
}

.chat-time {
  font-size: 0.7rem;
  color: #9ca3af;
  float: right;
}

/* Form */
.input-group {
  margin-bottom: 12px;
}

#whatsappForm input,
#whatsappForm textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid white;
  border-radius: 24px;
  font-size: 0.95rem;
  outline: none;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: 0.2s;
}

#whatsappForm textarea {
  border-radius: 16px;
  resize: none;
}

#whatsappForm input:focus,
#whatsappForm textarea:focus {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.wp-send-btn {
  width: 100%;
  padding: 12px;
  background: #25d366;
  color: white;
  border: none;
  border-radius: 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: 0.2s;
}

.wp-send-btn:hover {
  background: #128c7e;
  transform: translateY(-1px);
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }

  .service-row,
  .service-row.reverse {
    flex-direction: column;
  }

  .service-row img {
    width: 100%;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-map-wrapper {
    grid-template-columns: 1fr;
  }

  .testimonial-wrapper {
    padding: 0 8px;
  }

  .prev-btn {
    left: -4px;
  }
  .next-btn {
    right: -4px;
  }
}

@media (max-width: 640px) {
  .hero-section {
    background-attachment: scroll;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  /* Responsive WhatsApp Popup */
  .whatsapp-popup-btn {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-popup-btn i {
    font-size: 28px;
  }

  .popup-box {
    width: 95%;
    max-width: none;
    right: 2.5%; /* Center horizontally */
    left: 2.5%;
    bottom: 80px; /* Above the button */
    transform: translateY(20px) scale(0.95);
  }

  .popup-box.show {
    transform: translateY(0) scale(1);
  }
}
