/* General Reset */
body {
  margin: 0;
  font-family: "Arial", sans-serif;
}

.gallery-item img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  height: 80vh; /* Full viewport height for the hero */
  background-image: url("../images/hero-bg.jpg"); /* Adjust this path as per your folder structure */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.hero1 {
  height: 80vh; /* Full viewport height for the hero */
  background-image: url("../images/service.jpg"); /* Adjust this path as per your folder structure */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.hero2 {
  height: 80vh; /* Full viewport height for the hero */
  background-image: url("../images/corporate.jpg"); /* Adjust this path as per your folder structure */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.hero3 {
  height: 80vh; /* Full viewport height for the hero */
  background-image: url("../images/faqs.jpg"); /* Adjust this path as per your folder structure */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.hero4 {
  height: 80vh; /* Full viewport height for the hero */
  background-image: url("../images/gasabo1.jpg"); /* Adjust this path as per your folder structure */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.hero5 {
  height: 80vh; /* Full viewport height for the hero */
  background-image: url("../images/kicukiro1.jpg"); /* Adjust this path as per your folder structure */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.hero6 {
  height: 80vh; /* Full viewport height for the hero */
  background-image: url("../images/nyarugenge.jpg"); /* Adjust this path as per your folder structure */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.navbar-brand img {
  max-height: 50px;
}

.nav-link {
  font-weight: 600;
  color: #333 !important;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #007bff !important;
}
/* About Us Section */
#about-us {
  background-color: #f8f9fa; /* Light background */
}

#about-us h2 {
  font-size: 2rem;
  color: #198754; /* Bootstrap's success green color */
}

#about-us p {
  line-height: 1.8;
  color: #333;
}

#about-us .btn {
  font-weight: bold;
  border-radius: 25px;
  padding: 10px 20px;
}

#about-us img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
/* Services Section */
#services .card {
  background-color: transparent;
}

#services .card img {
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

#services .card img:hover {
  transform: scale(1.05);
}

/* Testimonials Section */
#testimonials blockquote {
  font-style: italic;
  line-height: 1.8;
}

#testimonials blockquote p {
  color: #ddd;
}

#testimonials blockquote footer {
  color: #aaa;
}
/* Our Network Section */
#our-network {
  background-color: #fff;
}

#our-network h2 {
  border-bottom: 2px solid #198754; /* Green underline */
  display: inline-block;
  padding-bottom: 5px;
}

#our-network p {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #555;
}

/* Map Section */
#map .ratio {
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
}
/* News & Features Section */
#news {
  background-color: #f8f9fa; /* Light gray background */
}
#news h5 {
  color: #198754; /* Bootstrap's green color */
  font-weight: bold;
}
#news img {
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
#news .btn-outline-success {
  border-radius: 30px;
  padding: 8px 20px;
  transition: background-color 0.3s, color 0.3s;
}
#news .btn-outline-success:hover {
  background-color: #198754;
  color: #fff;
}

/* Free Quote Section */
#quote {
  color: #fff;
  background-size: cover;
  background-position: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
#quote h3 {
  font-size: 2rem;
  font-weight: bold;
}
#quote .btn-outline-light {
  border-radius: 30px;
  padding: 10px 25px;
  border: 2px solid #fff;
  color: #fff;
  transition: background-color 0.3s, color 0.3s;
}
#quote .btn-outline-light:hover {
  background-color: #fff;
  color: #198754;
}

/* Membership Section */
#membership {
  background-color: #e6f2e6; /* Light green background */
}
#membership img {
  max-width: 100%;
  height: 100px;
  margin: 0 auto;
  border-radius: 30%;
  display: block;
  filter: grayscale(100%); /* Logos in grayscale */
  transition: filter 0.3s ease-in-out;
}
#membership img:hover {
  filter: grayscale(0); /* Color logos on hover */
}
#membership p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer {
  background-color: #046930; /* Deep green shade */
  color: #fff;
  font-family: "Arial", sans-serif;
  font-size: 14px;
}

.footer-logo {
  max-width: 150px;
  margin: 0 auto;
  display: block;
}

.footer a {
  color: #fff;
  transition: color 0.3s ease-in-out;
}

.footer a:hover {
  color: #ccc; /* Light gray on hover */
}

.footer hr {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  width: 80%;
  margin: 0 auto;
}

.footer .fab {
  font-size: 20px;
  transition: transform 0.3s ease-in-out, color 0.3s;
}

.footer .fab:hover {
  color: #ccc;
  transform: scale(1.2); /* Enlarge icon on hover */
}

.footer p {
  margin-bottom: 0;
}

.footer small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
}
.form-section {
  background-color: #2b8a3e;
  padding: 30px;
  border-radius: 10px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.form-row {
  margin-bottom: 15px;
}

label {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

input[type="date"] {
  max-width: 200px;
}

textarea {
  min-height: 100px;
}

button {
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #45a049;
}

input[type="checkbox"] {
  margin-right: 10px;
}

input[type="checkbox"]:checked {
  background-color: #4caf50;
}
.contact-info-bar {
  font-size: 14px;
  border-bottom: 1px solid #ddd;
}

.contact-info-bar i {
  font-size: 18px;
  vertical-align: middle;
}

.contact-info-bar span {
  font-weight: 500;
}

.contact-info-bar .row > div {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-info-bar .row > div {
    flex-direction: column;
    text-align: center;
  }
}
