/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Brand Color */
:root {
  --brand-color: #073dd2;
  --background-color: #f8f8f8;
}

/* Header */
.header {
  background-color: white;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 80px;
}

.logo img {
  height: 100%;
  max-height: 40px;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: black;
  padding: 0.5rem;
  position: relative;
}

.nav-link.active,
.nav-link:hover {
  color: var(--brand-color);
}

.nav-link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: var(--brand-color);
  transition: width 0.3s;
}

/* WhatsApp Contact */
.whatsapp-contact {
  display: flex;
  align-items: center;
  font-size: 1rem;
}

.whatsapp-contact i {
  color: #25D366;
  margin-right: 0.5rem;
  font-size: 1.5rem; /* Make the icon more noticeable */
}

.whatsapp-contact a {
  color: #25D366; /* Change the number to bold green */
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    background: white;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }
}

/* Hero Section */
.hero {
  background-color: white;
  text-align: center;
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh; /* Ensure hero section takes full viewport height */
}

.hero h1 {
  font-size: 2.5rem;
  color: var(--brand-color);
  margin-bottom: 1rem; /* Adds spacing between heading and paragraph */
}

.hero p {
  font-size: 1.2rem;
  max-width: 800px; /* Restrict max width for readability */
  margin: 0 auto 1.5rem auto; /* Center the text and add space below */
}

.cta-btn {
  background-color: var(--brand-color);
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 1.5rem;
  display: inline-block;
}

.hero-content {
  line-height: 1.6;
}

/* Services Section */
.services {
  background-color: var(--background-color);
  padding: 3rem 1rem;
  text-align: center;
}

.services h2 {
  color: var(--brand-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  justify-items: center;
}

.service {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: left;
  transition: transform 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 450px; /* Set a fixed height for uniformity */
}

.service:hover {
  transform: translateY(-5px);
}

.service img {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
}

.service h3 {
  color: var(--brand-color);
  margin: 0.5rem 0;
  font-size: 1.2rem; /* Ensure consistent heading size */
}

.service p.price {
  margin: 0.5rem 0;
  font-weight: bold;
  color: #000;
}

.service ul {
  padding-left: 1rem;
  list-style: disc;
  margin-bottom: 1rem;
  overflow: auto;
  flex-grow: 1; /* Allow list to grow and fill available space */
}

.service ul li {
  margin-bottom: 0.5rem; /* Add spacing between list items */
}

.service p:last-child {
  margin-top: auto; /* Push this element to the bottom */
}

.cta-btn {
  margin-top: 2rem;
  background-color: var(--brand-color);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
}

/* Responsive styling */
@media (max-width: 768px) {
  .service {
    min-width: 80%;
    max-width: 80%;
    height: auto; /* Adjust height for smaller screens */
  }
}


/* Why Choose Us Section */
.why-choose-us {
  padding: 3rem 1rem;
  background-color: white;
  text-align: center;
}

.usp-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.usp {
  max-width: 250px;
  padding: 1rem;
  background-color: var(--background-color);
  border-radius: 8px;
}

/* Testimonials Section */
.testimonials {
  text-align: center;
  padding: 3rem 1rem;
  background-color: white;
}

.testimonial {
  margin-bottom: 1.5rem;
}
/* Contact Section */
.contact {
    background-color: var(--brand-color);
    color: white;
    padding: 3rem 1rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adding a subtle shadow for depth */
}

.contact h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-details {
    text-align: center;
    margin: 0 auto;
    max-width: 600px; /* Limiting the width for better readability */
    line-height: 1.6; /* Improving line spacing for readability */
}

.contact-details p {
    margin: 0.5rem 0; /* Adding some margin between lines */
}

.contact-details a {
    color: #ffcc00; /* Changing link color for better visibility */
    text-decoration: none;
    font-weight: bold;
}

.contact-details a:hover {
    text-decoration: underline; /* Adding underline on hover for links */
}


/* Footer */
.footer {
  background-color: #eee;
  text-align: center;
  padding: 2rem 1rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-links a {
  color: black;
  text-decoration: none;
}

.contact-info {
  margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    background: white;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .services-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .usp-points {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .logo img {
    height: 50px; /* Smaller height for mobile */
  }
}