body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
}

h2 {
  text-align: center;
  color: #007ac2;
  margin-top: 40px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: white;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 60px;
  max-width: 100%;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navbar a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}

.nav-book-btn {
  padding: 8px 16px;
  background-color: #0077b6;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

.hamburger {
  display: none;
  cursor: pointer;
  font-size: 24px;
}

.why-savaari {
  background: #f1f8fd;
  padding: 40px 20px;
}

.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.feature-card {
  background: #00aaff;
  color: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 160px;
  text-align: center;
}

.feature-card img {
  height: 40px;
  margin-bottom: 10px;
}

.our-services {
  padding: 40px 20px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding-bottom: 20px;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-card h3 {
  text-align: center;
  color: #007ac2;
  margin: 20px 0 10px;
}

.service-card p {
  padding: 0 20px;
  text-align: justify;
  font-size: 14px;
}

.service-card ul {
  padding: 0 30px;
  list-style: none;
  font-size: 14px;
  margin-top: 10px;
}

.service-card ul li::before {
  content: "✔️ ";
  color: green;
}

.intro {
  display: flex;
  flex-wrap: wrap;
  padding: 50px;
  background-color: #f9f9f9;
}

.intro-text {
  flex: 1;
  padding: 20px;
  min-width: 300px;
}

.intro-text h2 {
  color: #0077b6;
  font-size: 26px;
  margin-bottom: 15px;
  text-align: left;
}

.intro-text p {
  font-size: 16px;
}

.intro-image {
  flex: 1;
  text-align: center;
  min-width: 300px;
}

.intro-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.details {
  padding: 40px 60px;
  background-color: #fff;
}

.details h3 {
  color: #0077b6;
  font-size: 22px;
  margin-top: 30px;
}

.details p {
  margin-top: 15px;
  font-size: 16px;
}

.details ul {
  margin-top: 20px;
  padding-left: 20px;
}

.details ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.footer {
  background-color: #f9f9f9;
  padding: 60px 20px 30px;
  color: #fff;
  background-color: #000;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  width: 100px;
  margin-bottom: 10px;
}

.footer-col h3,
.footer-col h4 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-col p,
.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.social-icons a img {
  width: 20px;
  margin-right: 10px;
}

.call-now {
  margin-top: 20px;
  font-size: 1rem;
  color: #fff;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .intro {
    padding: 30px;
  }

  .details {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  header {
    padding: 15px 20px;
  }

  .navbar {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 999;
  }

  .navbar.active {
    left: 0;
  }

  .hamburger {
    display: block;
  }

  .intro {
    flex-direction: column;
    padding: 30px 20px;
  }

  .intro-text,
  .intro-image {
    flex: none;
    width: 100%;
  }

  .intro-text h2 {
    text-align: center;
  }

  .details {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .feature-card {
    width: 120px;
    padding: 15px 10px;
  }

  .footer-col {
    min-width: 100%;
  }

  .footer-container {
    flex-direction: column;
  }
}
