.news-bar {
      display: flex;
      align-items: center;
      height: 50px;
      overflow: hidden;
      background: white;
    }

    .news-title {
      background-color: #ffcc4d;
      color: black;
      font-weight: bold;
      padding: 0 20px;
      height: 100%;
      display: flex;
      align-items: center;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .marquee-container {
      flex: 1;
      overflow: hidden;
      position: relative;
      height: 100%;
      display: flex;
      align-items: center;
      background: white;
    }

    .marquee-content {
      display: inline-block;
      white-space: nowrap;
      position: absolute;
      animation: scroll-left 15s linear infinite;
      padding-left: 100%;
    }

    .news-bar:hover .marquee-content {
      animation-play-state: paused;
    }

    .marquee-content a {
      margin-right: 50px;
      text-decoration: none;
      color: #000;
      font-size: 16px;
    }

    @keyframes scroll-left {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }






.founder-vision {
      background-color: #065d52;
      color: white;
      border-radius: 30px;
      padding: 40px 20px;
      font-family: 'Montserrat', sans-serif;
    }
    .founder-image img {
      max-width: 350px;
      height: auto;
      border-radius: 20px;
    }
    .founder-content h4 {
      color: #a6c700;
      font-size: 1.5rem;
      margin-bottom: 10px;
    }
    .founder-content h1 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .founder-content hr {
      width: 60px;
      height: 4px;
      background-color: #a6c700;
      border: none;
      margin: 20px 0;
    }
    .founder-content p {
      font-size: 1.1rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .founder-content h1 {
        font-size: 3rem;
      }
    }


#leaders-message
{
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                url('bga.png');
    background-attachment: fixed;
    background-size: cover;
    padding: 8rem 0 5rem 0;
}

#leaders-message h2
{
    color: white;
}


.institution-card {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.institution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.institution-card img {
  height: 300px;
  object-fit: cover;
  width: 100%;
}


/* Birds animation */
.birds-container {
    position: absolute;
    top: 20%;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    color: black;
}

.birds {
    width: 100%;
    height: auto;
    animation: flyBirds 15s linear infinite;
}

.bird {
    animation: flapWings 1s ease-in-out infinite alternate;
}

@keyframes flyBirds {
    0% {
        transform: translateX(-100px);
    }
    100% {
        transform: translateX(1200px);
    }
}

@keyframes flapWings {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-3px);
    }
}

/* Adjust individual birds */
.bird:nth-child(1) {
    animation-delay: 0s;
}
.bird:nth-child(2) {
    animation-delay: 0.2s;
}
.bird:nth-child(3) {
    animation-delay: 0.4s;
}
.bird:nth-child(4) {
    animation-delay: 0.6s;
}
.bird:nth-child(5) {
    animation-delay: 0.8s;
}

.justify
{
    text-align: justify;
}

.intro
{
    padding: 15px;
}



#heroCarousel .carousel-inner {
    height: 400px; /* Make all images same height */
}

#heroCarousel .carousel-item {
    height: auto;
}

#heroCarousel img {
    height: auto;
    
    width: 100%;
    border-radius: 0.5rem;
    transition: opacity 0.5s ease-in-out;
}

.cloud-layer {
    position: absolute;
    top: 0;
    left: 80%;
    width: 200px; /* adjust size as needed */
    opacity: 0.7;
    animation: moveCloud 10s linear infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes moveCloud {
    0% {
        left: 100%;
    }
    100% {
        left: -250px;
    }
}

.cloud-layera {
    position: absolute;
    top: 0;
    right: 80%;
    width: 400px; /* adjust size as needed */
    opacity: 0.3;
    animation: moveClouda 30s linear infinite;
    z-index: -2;
    pointer-events: none;
}

@keyframes moveClouda {
    0% {
        right: 100%;
    }
    100% {
        right: -250px;
    }
}





.hero-section {
    background-color: #f8f9fa;
    padding: 80px 0 20px 0; /* Reduced bottom padding from 80px to 20px */
    background: linear-gradient(rgba(0,112,82,0.8), rgba(0,52,84,0.8)), 
                url('bg.png');
    background-size: cover;
    background-position: center;
}



@keyframes zoomLoop {
    0% {
        background-size: 140%;
    }
    50% {
        background-size: 100%;
    }
    100% {
        background-size: 140%;
    }
}
.hero-section,
.hero-section p,
.hero-section a.btn {
    color: white;
}

.hero-section .btn-outline-primary {
    color: white;
    border-color: white;
}

.hero-section .btn-outline-primary:hover {
    background-color: white;
    color: #115346; /* match your theme */
}
/* Dropdown on hover for desktop */
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
    }
    
    /* Optional: Add animation to dropdown items */
    .dropdown-menu li {
        transform: translateX(-10px);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .dropdown:hover .dropdown-menu li {
        transform: translateX(0);
        opacity: 1;
    }
    
    /* Delay each dropdown item */
    .dropdown-menu li:nth-child(1) { transition-delay: 0.1s; }
    .dropdown-menu li:nth-child(2) { transition-delay: 0.2s; }
    .dropdown-menu li:nth-child(3) { transition-delay: 0.3s; }
    .dropdown-menu li:nth-child(4) { transition-delay: 0.4s; }
    .dropdown-menu li:nth-child(5) { transition-delay: 0.5s; }
}/* Navigation Styles */
#mainNav {
    transition: all 0.3s ease;
    background: transparent;
    padding: 20px 0;
}

#mainNav.scrolled {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

#mainNav.scrolled .navbar-brand,
#mainNav.scrolled .nav-link {
    color: #333 !important;
}

#mainNav.scrolled .navbar-toggler-icon {
    filter: brightness(0);
}



/* Dark text for transparent navbar */

.navbar-brand img
    {
        max-width: 60%;
    }
/* Mobile menu adjustments */
@media (max-width: 992px) {
    .navbar-brand {
        width: 250px;
    } 
    
}
.hero-section {
    padding-bottom: 0px; /* Adjust this value as needed */
    min-height: 100vh; /* Optional: sets a minimum height */
}
.navbar-dark .navbar-brand,
.navbar-dark .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.navbar-dark .nav-link:hover {
    color: white !important;
}

/* Dropdown menu styling */
.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Mobile menu adjustments */
@media (max-width: 992px) {
    #mainNav {
        background: white !important;
    }

    
    .navbar-dark .navbar-brand,
    .navbar-dark .nav-link {
        color: #333 !important;
    }
    
    .hero-section {
        padding-top: 70px;
    }
    #hero
    {
        padding-top: 150px;
        padding-bottom: 0px;
    }
    p.lead
    {
        padding: 0;
        margin-top: -100;
    }
}
        /* Custom CSS to enhance Bootstrap */
        .hero-section {
            background-color: #f8f9fa;
            padding-top: 80px; /* Account for fixed navbar */
            background: linear-gradient(rgba(0,112,82,0.8), rgba(0,52,84,0.8)), 
                        url('bg.png');
            background-size: cover;
            background-position: center;
        }

        .portfolio-item {
            position: relative;
            overflow: hidden;
            border-radius: 0.25rem;
        }

        .portfolio-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 1rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .portfolio-item:hover .portfolio-overlay {
            transform: translateY(0);
        }

        .testimonial-item {
            background-color: white;
            border-radius: 0.25rem;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
        }

        /* Animation classes */
        .animate-on-scroll {
            opacity: 0;
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in {
            opacity: 1;
        }
        
        .slide-up {
            transform: translateY(20px);
        }
        
        .slide-up.animate {
            transform: translateY(0);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-section {
                padding-top: 70px;
                height: auto !important;
                padding-bottom: 2rem;
                text-align: center;
            }
            
            .hero-section img {
                margin-top: 2rem;
            }
            
            .navbar-nav {
                padding-top: 1rem;
            }
            
            .dropdown-menu {
                position: static !important;
                transform: none !important;
            }
        }




.custom-card {
  background: #ffffff;
  
  padding: 25px ;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
}

.custom-card:hover {
  transform: translateY(-5px);
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #00824a;
  border-bottom: 2px solid #dee2e6;
  
}
.contactsection
{
    margin: 8rem 0 8rem 0;
}
.map-container iframe {
  border-radius: 8px;
  width: 100%;
  height: 100px;
}

.footer {
  background-color: #00824a;
  color: white;
  padding: 20px 0;
  margin-top: 60px;
}

.footer a {
  color: #ffc107;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.donate
{
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0)), 
                        url('purple.png');
    background-size: cover;
    color: white;
    text-align: right;
}

.donate img
{
    height: auto;
    width: 100%;
}

.bootcamp {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,1)), 
                        url('bga.png') no-repeat center center;
  background-size: cover;
  padding: 180px 0;
  text-align: center;
  color: white;
  position: relative;
}

.bootcamp h1 {
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}
#about-us
{
    padding: 8rem 25px;
}
.vision
{
    padding: 30px;
    background: white;
    margin: 15px;
    border-radius: 25px;
}
#vision
{
    background: linear-gradient(rgba(0,0,0,0), rgba(0,0,0,5)), 
                        url('bg.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 8rem 0;
}



.events-section {
  padding: 6rem 1rem;
}

.event-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid #00824a;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.event-card h2 {
  color: #065d52;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.event-card p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
    text-align: justify;
}

#events .btn-success {
  background-color: #00824a;
  border: none;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 30px;
  transition: 0.3s ease;
    
}

#events .btn-success:hover {
  background-color: #065d52;
}

#events img.event
{
    width: 100%;
    height: auto;
    border-radius: 25px;
    margin: 25px 0;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 30px;
  padding: 13px;
  font-size: 24px;
  z-index: 999;
   
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20b954;
}

.whatsapp-icon {
  font-size: 28px;
}

#gallery img
{
    width: 100%;
    height: auto;
    border-radius: 25px;
    margin-top: 20px;
}
.more:hover
{
    filter: grayscale();
    transition: 0.7s;
}

