:root {
  --primary-color: #28a745;
  --secondary-color: #007bff;
  --dark-color: #343a40;
  --light-bg: #f8f9fa;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* Header Styles */
.navbar {
  /* background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  ); */
  /* padding: 1rem 0; */
  background: white;
  height: 80px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* .navbar-brand {
  font-size: 1.8rem;
  font-weight: bold;
  color: white !important;
} */

.navbar-nav .nav-link {
  color: black !important;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #28a745 !important;
}
.site-logo {
  max-height: 80px;    
  width: auto;         
}

/* Banner Section */
.banner-section {
  color: white;

  padding: 120px 0;
  padding-bottom: 70px;
  text-align: center;
  background: url('../images/services/bg-gif.gif');

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  object-fit: contain;
}

.banner-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-inquire {
  background: linear-gradient(45deg, #ff6b6b, #ffa500);
  border: none;
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-inquire:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

/* our service section */
.services-section {
  padding: 20px 0;
}

.section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
}
.service-card h4 {
  color: var(--dark-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.service-img {
  width: 100%;
  max-width: 325px;
  height: 200px;
  border-radius: 10px;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 600;
}

.service-desc {
  font-size: 0.95rem;
  color: #555;
  margin: 15px 0;
}

.btn-service {
  background: linear-gradient(90deg, #00b36b, #007bff);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
}
.btn-service:hover {
  opacity: 0.9;
}
/* Why Choose Us Section */
.why-choose-section {
  padding: 40px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.feature-item {
  text-align: center;
  margin-bottom: 40px;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #ffd700;
}

.feature-item h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-item p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 50px 0 20px;
}

.footer h5 {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
  color: white;
}

/* Modal Styles */
.modal-header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  border-bottom: none;
}

.modal-header .btn-close {
  filter: invert(1);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(40, 167, 69, 0.25);
}

.btn-submit {
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
}


/* Responsive Design */
@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .service-card {
    margin-bottom: 30px;
  }
  .navbar{
    height: auto;
  }
  .footer{
    text-align: center;
  }
}
@media (max-width: 992px) {
  .site-logo {
    max-height: 70px;
  }
}

@media (max-width: 576px) {
  .site-logo {
    max-height: 60px;
  }
}
