* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #111827;
  color: #fdfffe;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 2rem 0;
}

.transparent-navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0rem 0rem;
  background: rgba(0, 0, 0, 0.425);
  z-index: 10;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.logo-img {
  height: 200px;
  width: auto;
}



header {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('images/banner.png') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 13rem 0rem;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

header p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #030fb669;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #01092b;
}

.intro {
  background: #111827;
  text-align: center;
}

.service-boxes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
}

.service-box {
  position: relative;
  width: 300px;
  background: rgba(0, 0, 0, 0.466);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-box h3 {
  margin: 0;
  padding: 0.5rem;
  text-align: center;
}

.service-box::after {
  content: '';
  display: block;
  height: 0;
}

.service-box:hover::after {
  content: attr(data-description);
  background: rgba(69, 111, 131, 0.555);
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.95rem;
  transition: 0.3s;
  border-radius: 15px;
}

.services {
  background: rgb(49, 49, 70);
  text-align: center;
}

.services h2,
.about h2,
.contact h2,
.testimonials h2 {
  margin-bottom: 1.5rem;
}

.service-cards,
.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.card {
  background: #00000071;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.about {
  background: rgb(49, 49, 70);
  text-align: center;
  padding-bottom: 3rem;
}

.contact {
  background: rgba(49, 49, 70, 0.541);
  text-align: center;
}

.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: auto;
}

.contact input,
.contact textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact button {
  padding: 0.75rem;
  background: #040d99;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.contact button:hover {
  background: #020141;
}

footer {
  background: #111827;
  color: white;
  text-align: center;
  padding: 1rem 0;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  right: 20px;
  background-color: #0754ee;
  color: white;
  font-size: 32px;
  text-align: center;
  line-height: 55px;
  border-radius: 50%;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #021341;
}