/* Global Reset */
* {
  margin: 0; padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}
/* Header - Fixed Responsive */
header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  color: white;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .logo span {
  font-size: 2.0rem;
  font-family: 'Brush Script MT', cursive;
  color: black;
}

/* Mobile Navigation */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #000;
  background: none;
  border: none;
  padding: 5px;
}
/* Mobile Navigation - Simple Fix */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    z-index: 1001;
  }
  
  header {
    position: relative;
  }
  
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 15px 0;
    z-index: 1000;
  }
  
  nav.active {
    display: flex;
  }
  
  nav a {
    margin: 8px 0;
    padding: 12px 20px;
    text-align: center;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    font-size: 1.1rem;
    margin-left: 0;
  }
  
  /* Make sure toggle button stays above menu */
  .menu-toggle {
    position: relative;
    z-index: 1001;
  }
}

  nav a:last-child {
    border-bottom: none;
  }
  
  nav .cta {
    margin: 15px 20px;
    text-align: center;
    border-radius: 8px;
  }
/* } */
/* Hero Section - Mobile Fix */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
    min-height: 400px;
    padding: 0 15px;
    background-attachment: scroll;
  }
  
  .hero h1 {
    font-size: 1.8rem !important;
    line-height: 1.3;
  }
  
  .hero h3 {
    font-size: 1rem !important;
  }
  
  .hero p {
    font-size: 0.9rem !important;
  }
}
/* General Mobile Improvements */
@media (max-width: 480px) {
  section {
    padding: 40px 15px;
  }
  
  section h2 {
    font-size: 1.5rem;
  }
  
  .call-banner h2 {
    font-size: 1.8rem;
  }
  
  .call-banner h2 span {
    font-size: 2rem;
  }
  
  .service-banner {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px;
  }
  
  .contact-about {
    flex-direction: column;
    text-align: center;
    padding: 40px 15px;
  }
  
  .testimonial-card {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  
  .testimonial-header h2 {
    font-size: 1.5rem;
  }
}

/* Prevent horizontal scrolling */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
/* Why Choose Us - Mobile Fix */
@media (max-width: 768px) {
  .why-choose {
    flex-direction: column;
    text-align: center;
    padding: 40px 15px;
  }
  
  .why-left h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  
  .why-right {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature {
    flex-direction: column;
    text-align: center;
  }
  
  .feature i {
    margin-bottom: 10px;
  }
}
/* Header */

header {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
}
/* Logo - Fixed Responsive */
header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

header .logo span {
  font-size: 2.2rem;
  font-family: 'Brush Script MT', cursive;
  color: black;
  line-height: 1.1;
  white-space: nowrap; /* Prevents awkward line breaks */
}

header .logo img {
  height: 60px;
  width: 100px;
  object-fit: contain;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  header .logo span {
    font-size: 2rem;
  }
  
  header .logo img {
    height: 55px;
    width: 90px;
  }
}

@media (max-width: 768px) {
  header .logo span {
    font-size: 1.8rem;
    white-space: normal; /* Allows breaking on very small screens */
    line-height: 1.2;
    max-width: 200px;
  }
  
  header .logo img {
    height: 50px;
    width: 80px;
  }
}

@media (max-width: 480px) {
  header .logo span {
    font-size: 1.6rem;
    max-width: 150px;
  }
  
  header .logo img {
    height: 45px;
    width: 70px;
  }
  
  header {
    padding: 12px 15px;
  }
}

/* For very small screens */
@media (max-width: 360px) {
  header .logo span {
    font-size: 1.4rem;
    max-width: 130px;
  }
  
  header .logo img {
    height: 40px;
    width: 60px;
  }
}

header .logo img {
  height: 60px;  /* Adjust size as needed */
  width: 100px;
}

/* header .logo { font-size: 1.5rem; font-weight: bold;color: #3a86ff; } */

/* book now tag */
nav .cta {
  background: linear-gradient(135deg, #ff006e, #3a86ff);
  color: white !important;
  padding: 8px 15px;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
}
nav .cta:hover {
  background: linear-gradient(135deg, #3a86ff, #ff006e);
  transform: scale(1.05);
}

nav a {
  color: black;
  text-decoration: none;
  margin-left: 20px;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}
nav a:hover { color: #3a86ff; }
nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, #3a86ff, #ff006e);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
nav a:hover::after { transform: scaleX(1); }
/* Hero */
.hero {
  background: url('hero.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex; align-items: center; justify-content: center;
  color: white; text-align: center;
  padding: 0 20px;
  background-attachment: fixed;
}
.hero h1 { font-size: 3rem; margin-bottom: 15px; }
.hero p { font-size: 1.2rem; margin-bottom: 20px; }
.hero button {
  background: linear-gradient(135deg, #0d6efd, #6610f2);
  color: white; border: none; padding: 12px 25px;
  border-radius: 8px; font-size: 1rem;
  cursor: pointer; transition: 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);

}
.hero button:hover {
  background: linear-gradient(135deg, #6610f2, #0d6efd);
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
@media (max-width: 768px){
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .hero button { padding: 10px 20px; font-size: 0.9rem; }
}

/* Section Titles */
section { padding: 60px 20px; text-align: center; }
section h2 { font-size: 2rem; margin-bottom: 20px; color: #0d6efd; }

/* Services */
.service-grid {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 20px;
}
.service-card {
  background: white; border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  padding: 20px; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-10px) scale(1.05) rotateX(5deg);
  box-shadow: 0 12px 30px rgba(13, 110, 253, 0.4);
}
/* Make images fully responsive */
img { max-width: 100%; height: auto; }
/* About */
.about {
  background: #f1f8ff;
  padding: 60px 20px;
}

.about h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #333;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.about-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
  line-height: 1.8;
  font-size: 1rem;
  color: #444;
}

.about-text strong {
  color: #0d6efd;
}

.about-images {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.about-images img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.about-images img:hover {
  transform: scale(1.05);
}

/* .about { background: #f1f8ff; padding: 60px 20px; } */
/* Why Choose Us Section */
.why-choose {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 80px 20px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
}

.why-left {
  flex: 1;
  min-width: 250px;
}

.why-left h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 10px;
}

.why-left h2 {
  font-size: 2rem;
  font-weight: 900;
  color: #000;
  line-height: 1.4;
}

.why-right {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature i {
  font-size: 2rem;
  color:#0d6efd;
  flex-shrink: 0;
}

.feature h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 5px;
}

.feature p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}
@media (max-width: 1024px){
  .about-content, .why-choose, .contact-container, .contact-about {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .service-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
}

@media (max-width: 480px){
  .about-text, .about-images, .why-left, .why-right, .contact-left, .contact-form {
    min-width: 100%;
  }
}
/* review */
/* Testimonials - Fixed Responsive */
.testimonial-section {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.testimonial-header h2 {
  font-size: 2.5rem;
  color: #0d6efd;
  margin-bottom: 10px;
}

.rating {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.testimonial-card {
  height: 280px;
  perspective: 1000px;
  margin-bottom: 20px;
}

.card-front, .card-back {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  padding: 25px;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-front {
  transform: rotateY(0deg);
}

.card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #e2efff, #ffffff);
  color: #333;
}

.testimonial-card:hover .card-front {
  transform: rotateY(-180deg);
}

.testimonial-card:hover .card-back {
  transform: rotateY(0deg);
}

.card-front h3 {
  margin: 0 0 5px 0;
  font-size: 1.3rem;
  color: #0d6efd;
}

.card-front span {
  font-size: 0.9rem;
  color: #777;
  display: block;
  margin-bottom: 15px;
}

.card-front p, .card-back p {
  font-style: italic;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .testimonial-section {
    padding: 40px 15px;
  }
  
  .testimonial-header h2 {
    font-size: 2rem;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 10px;
  }
  
  .testimonial-card {
    height: 250px;
    margin-bottom: 15px;
  }
  
  .card-front, .card-back {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .testimonial-section {
    padding: 30px 10px;
  }
  
  .testimonial-header h2 {
    font-size: 1.8rem;
  }
  
  .rating {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .testimonial-card {
    height: 220px;
  }
  
  .card-front h3 {
    font-size: 1.2rem;
  }
  
  .card-front p, .card-back p {
    font-size: 0.9rem;
  }
}


/* Call Banner */
.call-banner {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
}

.call-banner p {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: #444;
}

.call-banner h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #0d6efd;
  margin-bottom: 20px;
}

.call-banner h2 span {
  font-size: 3rem;  /* make the number bigger */
  color: #0d6efd;
}

.call-banner .btn-readmore {
  display: inline-block;
  background: #0d6efd;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.call-banner .btn-readmore:hover {
  background: #0d6efd;
  transform: scale(1.05);
}


/* Contact Form */
.contact {
  background: #fff;
  padding: 60px 20px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  justify-content: space-between;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}

.contact-info h2,
.contact-form h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: #000;
}

.contact-info p {
  margin: 10px 0;
  font-size: 1rem;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  color: #0d6efd;
  font-size: 1.2rem;
}

.contact-form {
  flex: 1.5;
  min-width: 300px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row input {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background: #0d6efd;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #0d6efd;
}

/* Map */
.map-container { margin-top: 40px; border-radius: 12px; overflow: hidden; }
.map-container iframe {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.map-container:hover iframe {
  transform: scale(1.02);
  box-shadow: 0 12px 25px rgba(0,123,255,0.4);
}
/* Orange Banner */
.service-banner {
  background: #0d6efd;   /* orange */
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  flex-wrap: wrap;
}

.service-banner p {
  font-size: 1.2rem;
  font-weight: 500;
}

.service-banner .call-btn {
  border: 2px solid white;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.service-banner .call-btn:hover {
  background: white;
  color: #0d6efd;
}

/* Contact + About Section */
.contact-about {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

.contact-left {
  flex: 1;
  min-width: 250px;
}

.contact-left h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0d6efd;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-left h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #0d6efd;
  margin-bottom: 15px;
}

.contact-left p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 8px;
}

.about-right {
  flex: 2;
  min-width: 300px;
}

.about-right h4 {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 10px;
}

.about-right h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.about-right p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Footer */
/* footer { */
  /* background: #0d6efd; color: white; text-align: center;
  padding: 15px; margin-top: 30px;
} */
.service-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}
.site-footer {
  background: #1c1c1c;
  color: #f0f0f0;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 10px;
}

.footer-brand h3 {
  margin: 0;
  font-size: 1.5em;
  color: #0d6efd;
}

.footer-brand p {
  font-size: 0.95em;
  color: #ccc;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover {
  color: #0d6efd;
}

.footer-contact p,
.footer-contact a {
  font-size: 0.95em;
  color: #ccc;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer-contact i {
  margin-right: 8px;
  color:#0d6efd;
}

.footer-social a {
  font-size: 1.2em;
  margin-right: 15px;
  color: #ccc;
  text-decoration: none;
}

.footer-social a:hover {
  color:#0d6efd;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 0.9em;
  color: #aaa;
}

.footer-bottom .badge {
  display: inline-block;
  background:#0d6efd;
  color: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  margin-left: 10px;
  font-size: 0.85em;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-social a {
    margin: 0 10px;
  }
}

 .stars {
  position: relative;
  font-size: 2rem;
  color: #ccc; /* empty stars */
  display: inline-block;
}

.stars::before {
  content: "★★★★★"; /* 5 empty stars */
}

.stars-full {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  color: #ffb400; /* gold stars */
}

.stars-full::before {
  content: "★★★★★"; /* 5 gold stars */
}


/* Offer Block */
.offer-block {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background: transparent;
}

.offer-card {
  background: linear-gradient(135deg, #ff006e, #3a86ff);
  color: white;
  padding: 30px 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 600px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  transform-style: preserve-3d;
  animation: float 3s ease-in-out infinite;
}

.offer-card h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.offer-card p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.offer-btn {
  display: inline-block;
  background: #fff;
  color: #3a86ff;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.offer-btn:hover {
  background: #ff006e;
  color: #fff;
  transform: scale(1.05);
}

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotateX(0deg) rotateY(0deg); }
  50% { transform: translateY(-10px) rotateX(5deg) rotateY(5deg); }
}
/* Offer Popup */
/* Offer Popup with Close Button */
.offer-popup {
  position: fixed;
  top: 150px;
  right: -400px; /* hidden initially */
  width: 280px;
  background: linear-gradient(135deg, #865d36, #ac8968);
  color: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  animation: slideIn 1s forwards, floaty 3s ease-in-out infinite;
  z-index: 9999;
  transform-style: preserve-3d;
}

.offer-content {
  position: relative;
}

.close-popup {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #fff;
  color: #865d36;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.close-popup:hover {
  background: #ff4444;
  color: white;
  transform: scale(1.1);
}

.offer-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  margin-top: 5px;
}

.offer-content p {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.popup-btn {
  display: inline-block;
  background: #3e362e;
  color: #fff;
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
  text-align: center;
  width: 100%;
}

.popup-btn:hover {
  background: #93785b;
  transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .offer-popup {
    width: 250px;
    top: 100px;
    right: 10px;
  }
  
  .offer-content h3 {
    font-size: 1.2rem;
  }
  
  .offer-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .offer-popup {
    width: 220px;
    top: 80px;
    right: 10px;
  }
  
  .close-popup {
    width: 22px;
    height: 22px;
    font-size: 1rem;
    top: -8px;
    right: -8px;
  }
}
@media (max-width: 768px){
  .offer-card { max-width: 90%; padding: 20px; }
  .offer-popup { width: 80%; right: 10px; top: 100px; }
}

/* Slide in animation */
@keyframes slideIn {
  from { right: -400px; opacity: 0; }
  to { right: 20px; opacity: 1; }
}

/* Floating 3D animation */
@keyframes floaty {
  0%, 100% { transform: translateY(0px) rotateX(0deg) rotateY(0deg); }
  50% { transform: translateY(-6px) rotateX(4deg) rotateY(4deg); }
}
.whatsapp-chat {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
}

/* WhatsApp Floating Button */
.chat-button img {
  width: 60px;
  height: 60px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}
.chat-button img:hover {
  transform: scale(1.1);
}

/* Popup Box */
.chat-popup {
  display: none;
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 260px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  overflow: hidden;
}

/* Header */
.chat-header {
  background: #06b847;
  color: white;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-header .close-btn {
  cursor: pointer;
  font-size: 20px;
}

/* Body */
.chat-body {
  padding: 25px;
  size: 20%;
  text-align: center;
}
.chat-body p {
  margin-bottom: 20px;
}
.chat-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #06b847;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s;
}
.chat-btn:hover {
  background: #1eb346;
}
/* =========================== */
/* Mobile Navbar */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #000;
}

@media (max-width: 768px) {
  nav {
    display: none;                /* hidden by default */
    flex-direction: column;       /* vertical stacking */
    align-items: center;          /* center links */
    width: 100%;
    background: #fff;             /* use white background for clarity */
    position: absolute;
    top: 70px;                    /* just below header */
    left: 0;
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  nav.active { display: flex; }

  nav a {
    margin: 12px 0;
    text-align: center;
    font-size: 1.2rem;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    color: #000;
  }

  nav a:last-child {
    border-bottom: none;
  }

  .menu-toggle { display: block; }
}
/* ================= Responsive Adjustments ================= */



 /* About & Why Choose Us */
@media (max-width: 1024px) {
  .about-content, .why-choose, .contact-container, .contact-about {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about-images { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .about-images { grid-template-columns: 1fr; }
} 


/* Contact */
@media (max-width: 768px) {
  .contact-container { flex-direction: column; text-align: center; }
  .form-row { flex-direction: column; gap: 10px; }
}

/* Footer */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer-social { margin-top: 15px; }
}

/* Offer Popup on Mobile */
@media (max-width: 600px) {
  .offer-popup {
    width: 40%;
    right: 5%;
    top: auto;
    bottom: 80px; /* sits above WhatsApp button */
  }
}
/* Quick Fix testimonials - Add to existing CSS */
.why-right {
  min-width: 0;
}

.feature > div {
  min-width: 0;
  flex: 1;
}

@media (max-width: 768px) {
  .why-choose {
    flex-direction: column;
    text-align: center;
  }
  
  .feature {
    flex-direction: column;
  }
}