html, body {
  overflow-x: hidden;
}
body {
  font-family: Arial, sans-serif;
  color: #222;
}

.hero-section {
  min-height: 85vh;
  padding: 15px;
  background: linear-gradient(rgba(8, 32, 50, 0.75), rgba(8, 32, 50, 0.75)),
              url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
}

.page-header {
  padding: 80px 0;
  background: linear-gradient(rgba(8, 32, 50, 0.85), rgba(8, 32, 50, 0.85)),
              url('https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
}

.info-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  backdrop-filter: blur(4px);
}
 .hidden-field {
      display: none;
    }
.feature-box,
.service-card,
.card {
  border-radius: 16px;
}

.feature-box {
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.section-dark {
  background: #0d1b2a;
}

.cta-section {
  background: #f8f9fa;
}

.footer-link {
  color: #fff;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.service-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

#formMessage {
  font-weight: 600;
}
.card-img-top {
  height: 200px;
  object-fit: cover;
}
body {
      font-family: Arial, sans-serif;
      color: #222;
    }

    .navbar {
      box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }

    .hero-section {
      min-height: 90vh;
      display: flex;
      align-items: center;
      background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
      color: white;
    }

    .hero-box {
      background: rgba(255,255,255,0.08);
      padding: 30px;
      border-radius: 18px;
      backdrop-filter: blur(5px);
    }

    .service-card {
      border: none;
      border-radius: 18px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    }

    .card-img-top {
      height: 220px;
      object-fit: cover;
    }

    .about-section {
      background: #f8f9fa;
    }

    .cta-section {
      background: #0d6efd;
      color: white;
    }

    .cta-section .btn-light:hover {
      transform: translateY(-2px);
      transition: 0.3s;
    }

    footer a {
      text-decoration: none;
      color: white;
    }

    footer a:hover {
      text-decoration: underline;
    }
    .whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  font-size: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20b358;
}