body{
    margin: 0;
    padding: 0;
    font-family: "Poppins" 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.hero-section {
    background: url('https://picsum.photos/1920/600') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.cta-button {
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    font-size: 1.25rem;
    border-radius: 5px;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #0056b3;
    color: white;
}

.testimonial {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
#logo{
width: 80px;
height: 80px;
border-radius: 50px;
}

.btn-maroon {
    background-color: #800000;
    border-color: #800000;
  }
  
  .btn-maroon:hover {
    background-color: #a00000;
    border-color: #a00000;
  }
  
  .text-maroon {
    color: #800000;
  }
  
  .hover-lift {
    transition: all 0.3s ease-in-out;
  }
  
  .hover-lift:hover {
    transform: translateY(-5px);
  }
  
  .fade-in {
    animation: fadeIn 1.2s ease-in-out;
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  

/* Option 1: Using Flexbox (Recommended for modern browsers) */
.navbar-nav {
    display: flex; /* Enable flexbox for the navbar links container */
    justify-content: space-around; /* Distribute space evenly between links */
    align-items: center;
    width: 100%; /* Ensure the nav takes full width for even spacing */
}

.navbar-nav .nav-item {
  text-align: center; /* Center text within each item */
  font-size: large;
  font-weight: bold;
}

/* Option 2: Using Flexbox and setting width to the container */
.navbar-collapse {
    justify-content: center; /* Center the entire navbar content */
}

.navbar-nav {
    display: flex;
    width: 100%; /* Important for even distribution if justify-content: space-around is used */
    justify-content: space-around; /* Or space-between to push to the sides */
}

/*Option 3: Using Grid (Alternative approach) */
.navbar-nav {
  display: grid;
  grid-auto-flow: column; /* Arrange items in columns */
  justify-content: space-around; /* Distribute space evenly */
  width: 100%; /* Take full width */
}

.feature{
    height: 400px;
    width: 400px;
   
}

/* Common Styling (Apply to all options) */
.navbar-nav .nav-link {
    padding: 0 1rem; /* Add some horizontal padding between links */
}
.initiative-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    border: none;
  }
  
  .initiative-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #fff0f0;
    border-left: 5px solid maroon;
  }
  
  .initiative-card .card-title {
    color: maroon;
  }
  
  .initiative-card .card-text {
    font-size: 0.95rem;
    color: #555;
  }
  
  .text-maroon {
    color: maroon;
  }
  
  .why-card {
    background-color: #fff;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
  }
  
  .why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    background-color: #fff7f7;
    border-left: 5px solid maroon;
  }
  
  .icon-lg {
    font-size: 2.5rem;
    transition: transform 0.3s ease;
  }
  
  .why-card:hover .icon-lg {
    transform: scale(1.2);
  }
  
  .cta-section {
    background-color: #fff7f7;
    border-radius: 20px;
  }
  
  .text-maroon {
    color: maroon;
  }
  
  .btn-maroon {
    background-color: maroon;
    color: #fff;
    border: none;
    transition: all 0.3s ease;
    font-weight: 600;
    border-radius: 8px;
  }
  
  .btn-maroon:hover {
    background-color: #a30000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(128, 0, 0, 0.2);
  }
  
  .image-box {
    overflow: hidden;
    border-radius: 15px;
  }
  
  .hover-zoom img {
    transition: transform 0.4s ease;
    border-radius: 15px;
  }
  
  .hover-zoom:hover img {
    transform: scale(1.05);
  }
  
  .footer-section {
    background-color: maroon;
  }
  
  .footer-links a {
    color: #f8f9fa;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    margin-bottom: 8px;
  }
  
  .footer-links a:hover {
    color: #ffc107;
    transform: translateX(5px);
  }
  
  .social-links i {
    font-size: 1.1rem;
  }
  
  .footer-section hr {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .text-maroon {
    color: maroon;
  }
  
  .btn-maroon {
    background-color: maroon;
    color: white;
    transition: all 0.3s ease-in-out;
    border: none;
  }
  
  .btn-maroon:hover {
    background-color: #a00000;
    transform: scale(1.05);
  }
  
  /* Card styling */
.card {
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Profile image styling */
.card img {
    object-fit: cover;
    border: 5px solid #f8f9fa;
    padding: 5px;
}

/* Carousel button styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #007bff;
    border-radius: 50%;
}

/* Text styling for testimonials */
.card p {
    font-size: 1.1rem;
    color: #555;
}

.card p.text-muted {
    font-size: 0.9rem;
    font-style: italic;
    color: #777;
}


/* Media Query for smaller screens (Optional) */
@media (max-width: 991.98px) { /* Adjust breakpoint as needed */
    .navbar-nav {
        flex-direction: column; /* Stack links vertically on smaller screens */
        text-align: center; /* Center text within each item */
    }
    .navbar-collapse{
        text-align: center;
    }
    .navbar-nav .nav-link {
        padding: 0.5rem 0; /* Adjust vertical padding on smaller screens */
        display: block; /* Make links take full width of their container */
    }
}