* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
  background-color: #f5f7fa;
}

.container {
  width: 90%;
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  background-color: #fff;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 100px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #444;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #007B9E;
}

.hero {
  height: 100vh;
  background: linear-gradient(rgba(245, 247, 250, 0.8), rgba(245, 247, 250, 0.8)), 
              url('../images/hero1.jpeg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #222;
}

.highlight {
  color: #007B9E;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #333;
}

.btn {
  background-color: #007B9E;
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #005f77;
}

/* Hamburger Button Styling */
.hamburger {
  display: none;
  font-size: 2rem;
  color: #007B9E;
  cursor: pointer;
}

/* Mobile Menu */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background-color: #fff;
    position: absolute;
    top: 70px;
    right: 5%;
    width: 90%;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .nav-links a {
    color: #444;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* About Page Hero */
.about-hero {
  background: linear-gradient(rgba(245, 247, 250, 0.85), rgba(245, 247, 250, 0.85)),
              url('../images/about-hero.jpg') center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: #222;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.about-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: #444;
}

/* Sections Styling */
section.container {
  padding: 3rem 0;
  color: #333;
}

section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #007B9E;
}

section p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
}

.why-choose-us ul {
  list-style-type: disc;
  margin-left: 2rem;
  font-size: 1.1rem;
  max-width: 800px;
  color: #444;
}

.why-choose-us ul li {
  margin-bottom: 0.8rem;
}

/* Footer */
footer {
  background-color: #007B9E;
  color: white;
  text-align: center;
  padding: 1.5rem 0;
  margin-top: 3rem;
  font-weight: 600;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.2rem;
  }

  section h2 {
    font-size: 2rem;
  }

  section p, .why-choose-us ul {
    font-size: 1rem;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  z-index: 999;
}

.whatsapp-float img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}
.swiper {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 2rem auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}
.nav-links.show {
  display: block;
}


