body {font-family: Arial, sans-serif;}
/* Watermark background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/logo.png") center center no-repeat;
  background-size: 400px; /* Adjust size */
  opacity: 0.05; /* Very faint */
  z-index: -1; /* Behind everything */
}
h2 {font-weight: bold;}
.card {border-radius: 10px;}
.hero-section {
  background: url('assets/banner.jpg') center/cover no-repeat;
  min-height: 80vh;
}
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}
:root {
  --primary-green: #198754; /* bootstrap green */
  --primary-blue: #056c8c;
  --primary-black: #1a1a1a;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--primary-black);
}

.btn-success {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
}

header, footer {
  background-color: var(--primary-blue) !important;
}
/* Service cards hover effect */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  background-color: #fff;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
}
.service-card .icon i {
  transition: transform 0.3s ease, color 0.3s ease;
}
.service-card:hover .icon i {
  transform: scale(1.1);
  color: var(--primary-blue);
}
/* Contact form custom styles */
#contact .card {
  border-radius: 12px;
}

#contact .input-group-text {
  border: none;
}

#contact input,
#contact textarea {
  border-left: none;
}

#contact .form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(5, 108, 140, 0.25);
}

#contact button {
  transition: background-color 0.3s ease, transform 0.2s ease;
}
#contact button:hover {
  background-color: var(--primary-blue);
  transform: translateY(-2px);
}
#references .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  background-color: #fff;
}
#references .card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 6px 18px rgba(0,0,0,0.15);
}
#references .icon i {
  transition: transform 0.3s ease, color 0.3s ease;
}
#references .card:hover .icon i {
  transform: scale(1.2);
  color: var(--primary-blue);
}