* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
}

/* Top Header */
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  background: #028EC8; /* primary color */
  color: #fff;
  font-size: 14px;
}

.top-header .contact-info span {
  margin-right: 15px;
}

.top-header .social-icons a {
  color: #fff;
  margin-left: 10px;
  transition: color 0.3s;
}

.top-header .social-icons a:hover {
  color: #8EC241; /* secondary color */
}

/* Responsive Top Header */
@media (max-width: 768px) {
  .top-header {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  .top-header .contact-info span {
    display: block;
    margin: 3px 0;
  }

  .top-header .social-icons a {
    margin: 0 5px;
  }
}

/* Main Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: relative;
}

header .logo {
  font-size: 18px;
  font-weight: 600;
  color: #028EC8; /* primary color */
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

header nav ul li a {
  text-decoration: none;
  color: #028EC8; /* primary color */
  font-weight: 500;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: #8EC241; /* secondary color */
}

/* Hamburger Icon */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: #028EC8; /* primary color */
}

/* Responsive Main Menu */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
    align-self: flex-end;
    margin-bottom: 10px;
  }

  header nav ul {
    flex-direction: column;
    width: 100%;
    display: none;
  }

  header nav ul.show {
    display: flex;
  }

  header nav ul li {
    width: 100%;
    padding: 10px 0;
  }
}

/* Banner */
.page-banner {
  position: relative;
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay container to center text */
.page-banner .banner-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.page-banner .banner-overlay h1 {
  font-size: 48px;
  font-weight: 700;
  color: #8EC241; /* secondary color */
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .page-banner {
    height: 400px;
  }
  .page-banner h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .page-banner {
    height: 300px;
  }
  .page-banner h1 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .page-banner {
    height: 250px;
  }
  .page-banner h1 {
    font-size: 22px;
  }
}

/* About Section */
.about {
  padding: 50px 20px;
  background: #f7f7f7;
}

.about-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.about-content img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  color: #028EC8; /* primary color */
  margin-bottom: 20px;
}

.about-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Mission & Vision */
.mission-vision {
  background: #f5f5f5;
  padding: 50px 20px;
  text-align: center;
}

.mission-vision .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.mv-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mv-card h3 {
  color: #028EC8; /* primary color */
  margin-bottom: 15px;
}

/* Services Section */
.services, .home-services {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services h2, .home-services h2 {
  color: #028EC8; /* primary color */
  font-size: 36px;
  margin-bottom: 40px;
}

/* Services Grid */
.services-grid, .service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}

/* Individual Service Card */
.service-card, .card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover, .card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Image Zoom */
.service-card img, .card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover img, .card:hover img {
  transform: scale(1.1);
}

/* Service Button */
.service-btn, .btn-service {
  display: inline-block;
  margin: 15px 0 20px;
  padding: 12px 20px;
  background: #8EC241; /* secondary color */
  color: #028EC8; /* primary color */
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 18px;
  cursor: pointer;
}

.service-card:hover .service-btn, .btn-service:hover {
  background: #028EC8; /* primary color */
  color: #8EC241; /* secondary color */
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Gallery */
.gallery {
  background: #f7f7f7;
  padding: 50px 20px;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: auto;
}

.gallery img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

/* Footer */
footer {
  background: #028EC8; /* primary color */
  color: #fff;
  padding: 40px 20px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1;
  margin: 10px;
  min-width: 250px;
}

.footer-column h3 {
  margin-bottom: 15px;
  color: #8EC241; /* secondary color */
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #fff;
}

.map-container iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 10px;
}

.footer-bottom {
  text-align: center;
  background: #028EC8; /* primary color */
  padding: 10px;
  margin-top: 20px;
}

/* Responsive Sections */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    margin-top: 20px;
  }

  .mission-vision .container,
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-cards, .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
