@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background-color: #fff;
}

.bg-primary {
  background-color: #6D28D9 !important; /* Purple */
}

.bg-light-purple {
  background-color: #EDE9FE;
}

.text-teal {
  color: #14B8A6; /* Teal */
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand img {
  height: 50px;
}

.nav-link {
  color: darkgreen; !important;
  font-weight: 600;
  margin-left: 1rem;
}

.nav-link:hover {
  color: #6D28D9 !important;
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
  url('https://cdn.pixabay.com/photo/2017/10/29/15/58/trees-2900064_1280.jpg');
  background-size: cover;
  min-height: 65vh;
  display: flex;
  align-items: center;
}

.section-padding {
  padding: 5rem 0;
}

.card {
  border: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

#location{
  background-image: url('images/African-Map.jpg');
  background-size: contain;
}

.footer {
  background-color: #333;
  color: #fff;
}

.footer a {
  color: #14B8A6;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* Animations */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

/* Service Card Styling */
.card-service {
  border: none;
  box-shadow: 0 4px 12px rgba(109, 40, 217, 0.1);
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%; /* For uniform height */
  background-color: #fff;
}

.card-service:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(109, 40, 217, 0.2);
}

.card-service .card-body {
  padding: 1.5rem;
}

.card-service .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #6D28D9;
  margin-bottom: 1rem;
}

.card-service p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.card-service ul {
  padding-left: 1.5rem;
  margin-bottom: 0;
}

.card-service ul li {
  font-size: 0.9rem;
  color: #666;
}

/* Section-specific styling */
.service-section {
  padding: 4rem 0;
  background-color: #fff;
}

.service-section:nth-child(even) {
  background-color: #F9F7FF; 
}

.service-section h2 {
  font-size: 2rem;
  color: darkgreen;
  margin-bottom: 2rem;
  text-align: center;
}

.service-section .container {
  max-width: 1200px;
}

/* For consistent column spacing */
.service-row {
  margin-bottom: 2rem;
}

.service-row .col-md-4 {
  margin-bottom: 2rem;
}



/* Mission and Vision Section */
.section-padding h2 {
  font-size: 2rem;
  color: darkgreen;
  margin-bottom: 2rem;
}

.section-padding h3 {
  font-size: 1.5rem;
  color: #333;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.section-padding p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

/* Content visibility during AOS animation */
[data-aos="fade-up"],
[data-aos="slide-up"] {
  opacity: 0;
  transform: translateY(20px);
  transition-property: opacity, transform;
}

[data-aos="fade-up"].aos-animate,
[data-aos="slide-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}