@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri&display=swap');

* {
  box-sizing: border-box;
}

body {
  font-family: 'Hind Siliguri', sans-serif;
  margin: 0;
  background: #e8f0e8;
  color: #2a3d1f;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* Header */
header {
  background: #5a8f43;
  padding: 10px 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 900;
  color: #f0f4f0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  color: #f0f4f0;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.btn-login:hover,
nav ul li a.btn-registration:hover,
nav ul li a.btn-logout:hover {
  background-color: #3f6e21;
}

/* Buttons in nav */
.btn-login, .btn-registration, .btn-logout {
  background-color: #7caf5a;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.btn-login {
  background-color: #7caf5a;
}

.btn-registration {
  background-color: #a2d149;
  color: #2a3d1f;
}

.btn-logout {
  background-color: #bf4c3d;
  color: #f0f4f0;
}

/* Hero Section */
.hero {
  background: linear-gradient(120deg, #43e97b 0%, #38f9d7 100%), url('images/banner-bg.jpg') center/cover no-repeat;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 32px rgba(44,62,80,0.10);
  animation: fadeInDown 1.2s cubic-bezier(.4,0,.2,1);
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-60px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero h1 {
  font-size: 44px;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(44,62,80,0.10);
}
.hero p {
  font-size: 22px;
  margin-bottom: 20px;
  color: #e0f7fa;
}
.btn-cta {
  background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(44,62,80,0.08);
  position: relative;
  overflow: hidden;
}
.btn-cta:hover {
  background: linear-gradient(90deg, #38f9d7 0%, #43e97b 100%);
  transform: scale(1.07);
  box-shadow: 0 8px 24px rgba(44,62,80,0.12);
}

/* Service Cards */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 40px 20px;
}
.card {
  background: #fff;
  padding: 24px 18px;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(44, 62, 80, 0.10);
  width: 290px;
  text-align: center;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s;
  opacity: 0;
  transform: translateY(40px);
}
.card.visible {
  opacity: 1;
  transform: translateY(0);
}
.card img {
  width: 90px;
  margin-bottom: 12px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44,62,80,0.08);
  transition: transform 0.3s;
}
.card:hover img {
  transform: scale(1.08) rotateZ(2deg);
}
.card h3 {
  font-size: 22px;
  margin: 12px 0 8px 0;
  color: #1976d2;
}
.card li {
  font-size: 15px;
  color: #444;
  margin-bottom: 4px;
}
.show-more-btn {
  background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 22px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 2px 8px rgba(44,62,80,0.08);
  transition: background 0.3s, transform 0.2s;
}
.show-more-btn:hover {
  background: linear-gradient(90deg, #38f9d7 0%, #43e97b 100%);
  transform: scale(1.06);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.card.animated {
  animation: fadeInUp 0.7s cubic-bezier(.4,0,.2,1) both;
}

/* Why Us Section */
.why-us {
  background: #f4f9f6;
  padding: 60px 0;
  animation: fadeInDown 1.2s cubic-bezier(.4,0,.2,1);
}
.why-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 30px;
  width: 250px;
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(40px);
}
.why-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.why-card i {
  font-size: 36px;
  color: #43e97b;
  margin-bottom: 15px;
  transition: color 0.3s;
}
.why-card:hover i {
  color: #1976d2;
}
.why-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  background: #f8fafc;
  font-family: 'Segoe UI', 'Arial', sans-serif;
  animation: fadeInDown 1.2s cubic-bezier(.4,0,.2,1);
}
.faq-accordion {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(44,62,80,0.08);
  padding: 20px 0;
}
.faq-item + .faq-item {
  border-top: 1px solid #e0e0e0;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  padding: 18px 16px;
  font-size: 1.15rem;
  color: #2d3a4b;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-question:hover {
  background: #f1f5fa;
}
.faq-icon {
  font-size: 1.5rem;
  color: #007bff;
  margin-left: 10px;
  transition: transform 0.3s;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #f8fafc;
  color: #444;
  font-size: 1rem;
  padding: 0 16px;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 16px;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Review Swiper */
.swiper {
  width: 100%;
  padding: 40px 0;
}
.swiper-slide {
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s;
}
.swiper-slide img {
  width: 100px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(44,62,80,0.08);
}
.review {
  font-size: 14px;
  color: #333;
  margin-top: 10px;
}
.badge {
  display: inline-block;
  background: #4caf50;
  color: white;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 6px;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 900px) {
  .service-cards { flex-direction: column; align-items: center; }
  .card { width: 95%; }
}
@media (max-width: 600px) {
  .faq-section { padding: 20px 0; }
  .faq-accordion { padding: 10px 0; }
  .faq-question { font-size: 1rem; padding: 14px 10px; }
  .faq-answer { font-size: 0.95rem; }
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 16px; }
}

body {
  background: #f7fcff;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.section-title {
  text-align: center;
  margin-top: 60px;
  font-size: 30px;
  color: #1976d2;
  letter-spacing: 1px;
}

/* Sections */
section {
  margin-bottom: 40px;
}

/* Services */
.services {
  background-color: #d1e4ca;
  border-radius: 12px;
  padding: 20px;
}

.services h2 {
  color: #2a3d1f;
  margin-bottom: 15px;
}

.services ul {
  list-style: disc inside;
  font-size: 18px;
  color: #375623;
}

.services li {
  margin: 10px 0;
}

/* Packages */
.packages {
  background-color: #d7ecc5;
  border-radius: 12px;
  padding: 20px;
}

.packages h2 {
  color: #2a3d1f;
  margin-bottom: 25px;
  text-align: center;
}

.package-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.package-card {
  background: #f4f9e9;
  border-radius: 15px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  padding: 20px;
  width: 280px;
  text-align: center;
  color: #335322;
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
}

.package-card h3 {
  margin-bottom: 10px;
  font-weight: 800;
  font-size: 24px;
}

/* Order Form */
.order-form {
  background: #e4f0d6;
  border-radius: 12px;
  padding: 25px;
}

.order-form h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #2a3d1f;
}

.order-form form {
  max-width: 500px;
  margin: auto;
}

.order-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #3a4f1c;
}

.order-form input,
.order-form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 18px;
  border: 1.5px solid #9fbf7a;
  border-radius: 8px;
  font-size: 16px;
  color: #375623;
  outline: none;
  transition: border-color 0.3s ease;
}

.order-form input:focus,
.order-form select:focus {
  border-color: #6b994e;
}

.order-form button {
  display: block;
  width: 100%;
  background-color: #5a8f43;
  color: #f0f4f0;
  padding: 14px;
  font-weight: 700;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.order-form button:hover {
  background-color: #467735;
}

.login-warning {
  text-align: center;
  color: #bf4c3d;
  font-weight: 700;
}

/* Top maid Profiles */
.top-maid {
  background-color: #d7ecc5;
  border-radius: 12px;
  padding: 20px;
}

.top-maid h2 {
  color: #2a3d1f;
  margin-bottom: 20px;
  text-align: center;
}

.maid-profiles {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.maid-card {
  background: #f4f9e9;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  width: 280px;
  display: flex;
  padding: 15px;
  align-items: center;
  gap: 15px;
  transition: box-shadow 0.3s ease;
}

.maid-card:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.maid-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #a2d149;
}

.maid-card div h3 {
  margin: 0 0 5px 0;
  color: #335322;
}

.maid-card div p {
  margin: 3px 0;
  color: #556c34;
  font-size: 14px;
}

/* FAQ */
.faq {
  background-color: #d1e4ca;
  border-radius: 12px;
  padding: 20px;
}

.faq h2 {
  color: #2a3d1f;
  margin-bottom: 20px;
  text-align: center;
}

.faq ul {
  list-style: none;
  padding-left: 0;
  font-size: 16px;
  color: #375623;
}

.faq ul li {
  margin-bottom: 15px;
  border-bottom: 1px solid #a2d149;
  padding-bottom: 12px;
}

/* Terms */
.terms {
  background-color: #e4f0d6;
  border-radius: 12px;
  padding: 20px 30px;
  max-width: 800px;
  margin: auto;
}

.terms h2 {
  color: #2a3d1f;
  margin-bottom: 15px;
  text-align: center;
}

.terms ol {
  color: #375623;
  font-size: 16px;
  line-height: 1.5;
  padding-left: 18px;
}

.terms ol li {
  margin-bottom: 10px;
}

/* Footer */
footer {
  background-color: #5a8f43;
  color: #f0f4f0;
  padding: 15px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .package-cards, .maid-profiles {
    flex-direction: column;
    align-items: center;
  }
  .package-card, .maid-card {
    width: 90%;
  }
}

/* Header & Section Title */
.section-title {
  text-align: center;
  margin-top: 60px;
  font-size: 30px;
  color: #1976d2;
  letter-spacing: 1px;
}

/* General Button */
.btn-cta {
  background: linear-gradient(90deg, #43e97b 0%, #38f9d7 100%);
  color: #fff;
  padding: 14px 30px;
  border: none;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(44,62,80,0.08);
}
.btn-cta:hover {
  background: linear-gradient(90deg, #38f9d7 0%, #43e97b 100%);
  transform: scale(1.07);
}

/* FAQ, Why-us, etc. */
.faq-section, .why-us {
  background: #f4f9f6;
}

/* Add more as needed for other service-related pages */
