/* CSS Reset */
:root {
  --primary-dark-green: #1a472a;
  --primary-black: #000000;
  --primary-white: #ffffff;
  --accent-green: #2d7d46;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--primary-black);
}

.navbar {
  background-color: var(--primary-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  color: var(--primary-dark-green);
}

.nav-link {
  color: var(--primary-dark-green);
  font-weight: 500;
}

.nav-link:hover {
  color: var(--accent-green);
}

.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1621963711656-8c6b8a8a5c0a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80");
  background-size: cover;
  background-position: center;
  color: var(--primary-white);
  padding: 100px 0;
  text-align: center;
}

/* Video Background Styles */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.video-iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-section {
  position: relative;
  color: var(--primary-white);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.service-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  margin-bottom: 30px;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 200px;
  object-fit: cover;
}

.card-body {
  padding: 25px;
}

.btn-primary {
  background-color: var(--primary-dark-green);
  border-color: var(--primary-dark-green);
}

.btn-primary:hover {
  background-color: var(--accent-green);
  border-color: var(--accent-green);
}

.section-title {
  position: relative;
  margin-bottom: 50px;
  color: var(--primary-dark-green);
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-green);
}

.about-section {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.contact-info {
  background-color: var(--primary-dark-green);
  color: var(--primary-white);
  padding: 40px;
  border-radius: 10px;
}

.contact-info i {
  font-size: 24px;
  margin-right: 10px;
  color: var(--primary-white);
}

footer {
  background-color: var(--primary-black);
  color: var(--primary-white);
  padding: 30px 0;
}

.social-icons a {
  color: var(--primary-white);
  margin: 0 10px;
  font-size: 20px;
}

.social-icons a:hover {
  color: var(--accent-green);
}

/* WhatsApp float button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  color: #fff;
}
