/** @format */
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway", serif;
}

body {
  line-height: 1.6;
  text-align: center;
  background: #fafafa;
}

span {
  font-weight: bold;
  font-size: 0.8rem;
}

a {
  text-decoration: none;
  color: #1e1e1e;
}

a:hover {
  color: #fad02c;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.6); /* Semi-transparent white */
  backdrop-filter: blur(10px); /* Apply blur effect */
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  max-height: 70px;
}

.navbar .logo img {
  height: 60px;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  font-weight: bold;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  color: rgb(21, 21, 21);
  text-decoration: none;
  transition: color 0.3s;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: rgb(21, 21, 21);
  cursor: pointer;
}

.nav-links a:hover {
  color: #fad02c;
}


.header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 5%;
  background: #1e1e1e;
  margin-top: 60px;
  color: #fff;
  gap: 30px;
  background: rgba(0, 0, 0, 0.836);
}

.header-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.header-text h3 {
  font-weight: lighter;
  font-size: 20px;
}

.header-text h1 {
  font-weight: bold;
  font-size: 50px;
}

.header-logo {
  flex: 0.5; /* Reduce the space taken */
  display: flex;
  justify-content: center; /* Center image */
  align-items: center;
}

.header-logo img {
  width: 100%;
  border-radius: 50%;
  border: 1px solid #bbbbbb;
  animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.header-logo-text {
  width: 250px; /* Adjust size as needed */
  max-width: 100%;
  height: auto;
}

.logo {
  height: 150px;
}

#about {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 50px 5%;
  background: #fff;
  gap: 30px;
}

#services {
  padding: 50px 5%;
  background: #fff;
}

.about-text {
  flex: 1;
  text-align: center;
  max-width: 800px;
  justify-content: center;
}

.service-text {
  flex: 1;
  text-align: center;
  justify-content: center;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #fad02c; /* Underline */
  padding-bottom: 5px; /* Space between text and underline */
  display: inline-block;
}

.service-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #fad02c; /* Underline */
  padding-bottom: 5px; /* Space between text and underline */
  display: inline-block;
}

.clients-text h2 {
    font-size: 2rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #fad02c; /* Underline */
  padding-bottom: 5px; /* Space between text and underline */
  display: inline-block;
}

.contact-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #fad02c; /* Underline */
  padding-bottom: 5px; /* Space between text and underline */
  display: inline-block;
}

.about-text p {
  font-size: 1rem;
  color: #333;
}

.about-image {
  width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 50%;
}

.service-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 10px 0;
  flex-wrap: wrap;
}

.card {
  background: rgba(255, 255, 255, 0.6); /* Semi-transparent white */
  backdrop-filter: blur(10px); /* Apply blur effect */
  -webkit-backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 280px;
  transition: transform 0.3s ease-in-out;
}

.card-text {
  font-size: 0.9rem;
  line-height: 1.5rem;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  margin-bottom: 10px;
  width: 60px; /* Increased size */
  height: 60px;
  object-fit: cover;
}

#clients {
  padding: 50px 5%;
  background: #fff;
  text-align: center;
}

.clients-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #fad02c;
  padding-bottom: 5px;
  display: inline-block;
}

.clients-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 10px 15px;
  margin-top: 10px;
  background: #fad02c;
  color: #1e1e1e;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #1e1e1e;
  color: #fad02c;
}

#contact {
  padding: 50px 20px;
  background: #fff;
  color: #222;
}

footer {
  background: #bbbbbb;
  padding: 10px;
}

@media (max-width: 768px) {
  .navbar {
    background: rgba(255, 255, 255, 0.6); /* Semi-transparent white */
    backdrop-filter: blur(10px); /* Apply blur effect */
    -webkit-backdrop-filter: blur(10px); /* For Safari */
  }

  .nav-links {
    background: rgba(
      255,
      255,
      255,
      0.8
    ); /* Slightly stronger white for dropdown */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background: #fafafa;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .nav-links a {
    color: #1e1e1e;
  }

  .menu-btn {
    display: block;
  }

  .header {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
  }

  .header-logo img {
    max-width: 100%;
    height: auto;
  }

  .header-text {
    order: 1; /* Ensures text appears first */
  }

  .header-text h3 {
    font-size: 1rem;
  }

  .header-text h1 {
    font-weight: bold;
    font-size: 2rem;
  }

  .header-logo {
    order: 2; /* Image appears below text */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%; /* Reduce image width */
    margin-top: 20px; /* Space between text and image */
  }

  .header-logo-text {
    width: 200px; /* Smaller logo on mobile */
  }

  .service-cards {
    flex-direction: column;
    align-items: center;
  }
  .about-text h2 {
    font-size: 1.5rem;
  }

  .service-text h2 {
    font-size: 1.5rem;
  }

  .clients-text h2 {
    font-size: 1.5rem;
  }

  .contact-text h2 {
    font-size: 1.5rem;
  }
  .about-text p {
    font-size: 1rem;
  }

  .service-text p {
    font-size: 1rem;
  }

  .contact-text p {
    font-size: 1rem;
  }

  .card h3 {
    font-size: 1.1rem;
  }


  .card p {
    font-size: 1rem;
  }

  span {
    font-size: 0.7rem;
  }

  .price {
    font-size: 0.9rem;
  }

  #about {
    flex-direction: column;
    text-align: center;
    padding: 80px 10%;
  }

  .about-text {
    text-align: center;
    margin-bottom: 20px;
  }

  .about-image {
    width: 200px;
  }

  .icon {
    margin-left: 35px;
  }
}
 
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

