:root {
  --primary: #1E88E5;
  --accent: #FFA726;
  --text-dark: #333;
  --bg-light: #F9FAFB;
  --white: #fff;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  margin: 0;
  padding: 0;
}

header {
  background-color: var(--white);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

header h1 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary);
  margin: 0;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary);
}

.services-header {
  text-align: center;
  padding: 4rem 2rem 2rem;
}

.services-header h2 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: 'Poppins', sans-serif;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem;
}

.service-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.service-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  /* border: 3px solid var(--accent); */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: block;
  margin-left: auto;
  margin-right: auto;
}


.service-card h3 {
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-size: 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}

.service-card p {
  font-size: 16px;
}

.cta-section {
  background-color: var(--accent);
  color: var(--white);
  padding: 3rem 2rem;
  text-align: center;
}

.cta-button {
  background-color: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  display: inline-block;
}

footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 2rem;
  text-align: center;
}

/* Whatsapp Button */

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  /* background-color: red; */
}

.whatsapp-button img {
  width: 55px;
  height: 55px;
  transition: transform 0.3s ease;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-button img:hover {
  transform: scale(1.1);
}

/* Hamburger Icon */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #1E88E5;
}

/* Responsivness part */

/* Tablets & Small Desktops (<= 992px) */
@media (max-width: 992px) {
  .services-list {
    gap: 1.5rem;
    padding: 2rem 1rem;
  }

  .service-card {
    width: 45%;
  }

  .services-header h2 {
    font-size: 28px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-card p {
    font-size: 15px;
  }

  .cta-section {
    padding: 2.5rem 1.5rem;
  }

  .cta-button {
    padding: 10px 20px;
  }
}

/* Tablets & Large Phones (<= 768px) */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 106px;
    left: 146px;
    width: 60%;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    z-index: 1000;
  }

  nav.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  header {
    position: relative;
    flex-direction: row;
  }

  header h1 {
    font-size: 20px;
  }

  nav a {
    padding: 15px;
    /* border-top: 1px solid #eee; */
    text-align: center;
    margin-left: 0;
    font-size: 16px;
  }

  .service-card {
    width: 100%;
    max-width: 360px;
  }

  .services-header h2 {
    font-size: 24px;
  }

  .cta-section {
    padding: 2rem 1rem;
  }

  .cta-button {
    font-size: 14px;
    padding: 10px 18px;
  }

  footer {
    font-size: 14px;
    padding: 1.5rem 1rem;
  }

  .whatsapp-button img {
    width: 45px;
    height: 45px;
  }
}

/* Small Phones (<= 480px) */
@media (max-width: 480px) {
  .services-header h2 {
    font-size: 20px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }

  .service-img {
    width: 80px;
    height: 80px;
  }

  .cta-button {
    font-size: 13px;
    padding: 8px 16px;
  }

  nav {
    flex-direction: column;
    align-items: center;
  }

  nav a {
    font-size: 14px;
  }
}