/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #ffffff;
  color: #333;
}

/* Mobile Menu Enhancements */
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #87CEEB;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: white;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: white;
  letter-spacing: 1px;
}

.menu-icon {
  display: none;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

#menu-toggle {
  display: none;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background-color: #00ffcc;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: #00ffcc;
}

/* Responsive Header */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  nav {
    flex-direction: column;
    width: 100%;
    display: none;
    margin-top: 10px;
  }

  #menu-toggle:checked + .menu-icon + nav {
    display: flex;
  }

  nav a {
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}

/* Banner Section */
.banner-section {
  margin-top: 0px;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.banner-slider {
  width: 100%;
  height: auto;
}

.banner-slider .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Home Services Section */
.home-services {
  padding: 60px 20px;
  background-color: #fff;
}

.home-services .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

.home-services .text-content {
  flex: 1 1 600px;
}

.home-services h2 {
  font-size: 32px;
  color: #2b3a55;
  margin-bottom: 10px;
}

.home-services p {
  font-size: 18px;
  color: #444;
  margin-bottom: 25px;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.service-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.service-box img {
  height: 90px;
  margin-top: 5px;
}

.service-box h4 {
  font-size: 18px;
  color: #2b3a55;
  margin-bottom: 8px;
}

.service-box p {
  font-size: small;
  color: #7c7979;
  line-height: 1.3;
}

.image-content {
  flex: 1 1 400px;
  text-align: center;
}

.image-content img {
  max-width: 100%;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .home-services .container {
    flex-direction: column-reverse;
  }
  .services-list {
    grid-template-columns: 1fr;
  }
}

/* Button Style */
.v-btn__content {
  background-color: #33cc99;
  color: #ffffff;
  font-size: 16px;
  border-radius: 6px;
  border: none;
  padding: 10px 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 15px;
  display: inline-block;
  text-align: center;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.v-btn__content:hover {
  background-color: #15946a;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Grid Sections */
.services, .features, .steps, .testimonials, .footer {
  padding: 60px 40px;
  background: white;
  margin-top: 20px;
}

.services h2, .features h2, .steps h2, .testimonials h2 {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background-color: #e0f2f1;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: center;
  padding: 20px;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  margin: 10px 0;
  color: #00796b;
}

.card p {
  font-size: 14px;
}

/* Footer */
footer {
  background-color: #2b3a55;
  color: #ffffff;
  padding: 40px 20px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 250px;
  margin: 20px 10px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 20px;
  border-bottom: 2px solid #3b20b344;
  padding-bottom: 5px;
}

.footer-col p, .footer-col li, .footer-col a {
  color: #ccc;
  font-size: 14px;
  line-height: 1.8;
  text-decoration: none;
}

.footer-col ul {
  list-style: none;
  padding-left: 0;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  border-top: 1px solid #ffffff22;
  padding-top: 10px;
  color: #aaa;
}

/* Floating WhatsApp & Call Buttons */
.whatsapp-float, .call-float {
  position: fixed;
  right: 0;
  color: white;
  font-size: 16px;
  font-weight: 500;
  height: 50px;
  padding: 0 15px;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  z-index: 999;
  display: flex;
  align-items: center;
  overflow: hidden;
  transition: width 0.3s ease, padding 0.3s ease;
  width: 55px;
}

.whatsapp-float {
  top: 45%;
  background-color: #25D366;
}

.call-float {
  top: 55%;
  background-color: #f44336;
}

.whatsapp-float i, .call-float i {
  font-size: 24px;
  margin-right: 10px;
}

.whatsapp-float span, .call-float span {
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.whatsapp-float:hover, .call-float:hover {
  width: 170px;
  padding-right: 20px;
}

.whatsapp-float:hover span, .call-float:hover span {
  opacity: 1;
}

/* Rate List Section */
.dry-clean-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 40px;
}

.dry-clean-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.price-table {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 25px 20px;
  width: 100%;
  max-width: 350px;
  transition: transform 0.3s;
}

.price-table:hover {
  transform: translateY(-5px);
}

.price-table h3 {
  font-size: 22px;
  font-weight: 600;
  color: #b40e82;
  margin-bottom: 20px;
}

.price-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.price-table thead {
  background-color: #87ceeb;
  color: #fff;
}

.price-table thead th {
  padding: 12px;
  text-align: left;
}

.price-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.price-table tbody tr:hover {
  background-color: #f1f1f1;
}

.price-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  color: #333;
}

.price-table td:last-child {
  text-align: right;
  font-weight: 600;
}

.book-btn {
  margin-top: 40px;
}

.book-now-button {
  background-color: #87ceeb;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.book-now-button:hover {
  background-color: #87ceeb;
}

@media (max-width: 768px) {
  .dry-clean-container {
    flex-direction: column;
    align-items: center;
  }
}
/*REVIEW START */
/* ✅ Add this to your existing CSS if not already present */

/*.testimonials {*/
/*  padding: 60px 40px;*/
/*  background: white;*/
/*  margin-top: 20px;*/
/*}*/

/*.testimonials h2 {*/
/*  font-size: 32px;*/
/*  margin-bottom: 20px;*/
/*  text-align: center;*/
/*  color: #2b3a55;*/
/*}*/

/*.grid {*/
/*  display: grid;*/
/*  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));*/
/*  gap: 20px;*/
/*}*/

/*.card {*/
/*  background-color: #e0f2f1;*/
  border-top: 4px solid #87CEEB; /* matches header color */
/*  border-radius: 12px;*/
/*  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);*/
/*  padding: 20px;*/
/*  text-align: center;*/
/*  transition: transform 0.3s ease;*/
/*}*/

/*.card:hover {*/
/*  transform: translateY(-5px);*/
/*}*/

/*.card h3 {*/
/*  margin: 10px 0 5px;*/
/*  color: #00796b;*/
/*}*/

/*.card p {*/
/*  font-size: 14px;*/
/*  color: #444;*/
/*}*/

/*.user-photo {*/
/*  width: 70px;*/
/*  height: 70px;*/
/*  border-radius: 50%;*/
/*  object-fit: cover;*/
/*  margin-bottom: 10px;*/
/*}*/

/*.star-rating {*/
/*  color: #FFD700;*/
/*  font-size: 18px;*/
/*  margin-bottom: 10px;*/
/*}*/
.customer-review-form {
  max-width: 700px;
  margin: 50px auto;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.customer-review-form h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.customer-review-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.customer-review-form input,
.customer-review-form textarea {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.customer-review-form button {
  padding: 10px;
  background: #25D366;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.customer-review-form button:hover {
  background: #1ea958;
}

.star-rating {
  display: flex;
  gap: 5px;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
}

.star-rating span {
  color: #ccc;
  transition: color 0.2s;
}

.review-card {
  background: #f9f9f9;
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.review-header {
  display: flex;
  gap: 15px;
  align-items: center;
}

.review-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.review-message {
  margin-top: 10px;
}

/*REVIEW END*/
/*offer start**/
.offer-banner {
    background: linear-gradient(90deg, #ff5e62, #ff9966);
    color: white;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    padding: 15px 25px;
    border-radius: 12px;
    margin: 30px auto;
    max-width: 700px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    animation: glow 2s ease-in-out infinite;
  }

  @keyframes glow {
    0% { box-shadow: 0 0 10px rgba(255, 94, 98, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 94, 98, 1); }
    100% { box-shadow: 0 0 10px rgba(255, 94, 98, 0.5); }
  }
/*offer end*/
/*FOOTER ICON */
.footer-social {
  text-align: center;
  margin-bottom: 15px;
}

.footer-social a {
  margin: 0 10px;
  color: #fff;
  background-color: #333;
  padding: 10px;
  border-radius: 50%;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.footer-social a:hover {
  background-color: #007bff;
  color: #fff;
}

footer {
  background-color: #222;
  color: #ccc;
  padding: 30px 10px;
  text-align: center;
  font-size: 14px;
}
/*FOOTER ICON END */