/* Navbar */
    .navbar {
      transition: background-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
      background: transparent !important;
      position: absolute;
      width: 100%;
      z-index: 10;
   margin-top: 0.8px;
 padding: 1.5rem 0;

    }
    .navbar-brand {
  position: relative;
}

.logo {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: opacity 0.3s ease;
 padding-top: 10px;
}

.logo-top {
  opacity: 1;
}

.logo-scroll {
  opacity: 0;
}

.navbar.scrolled .logo-top {
  opacity: 0;
}

.navbar.scrolled .logo-scroll {
  opacity: 1;
}
/* Navbar */
.navbar {
  position: fixed;
  width: 100%;
  z-index: 1000; /* High z-index so toggler is clickable */
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  background: transparent;
   
}

/* Logo container */
.navbar-brand {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 10; /* Make sure logos are above navbar background but below toggler */
}

/* Logos stacked */
.logo {
  max-height: 80px;
  width: auto;
  transition: opacity 0.4s ease;
  pointer-events: none; /* Allow clicks to pass through */
 
}

/* Opacity swap on scroll */
.logo-top { opacity: 1; }
.logo-scroll { opacity: 0; }

.navbar.scrolled .logo-top { opacity: 0; }
.navbar.scrolled .logo-scroll { opacity: 1; }

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo { max-height: 50px; }
}

    .navbar.scrolled {
      position: fixed;
      background: #fff !important;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }
    .navbar .nav-link { color: white; transition: color 0.3s; }
    .navbar.scrolled .nav-link { color: black !important; }
    .navbar-brand img { height: 80px; }
    .navbar-toggler-icon { filter: invert(1); }
    .navbar.scrolled .navbar-toggler-icon { filter: invert(0); }

  /* Hero Section */
    .hero {
      position: relative;
      height: 90vh;
      background: url(Background2.jpg) center/cover no-repeat;
      display: flex;
      align-items: center;
      color: white;
    }
    .hero::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.55);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin-left: 10%;
    }
    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
    }
    .hero p {
      font-size: 1.25rem;
      margin: 20px 0;
    }
    .btn-hero {
      background: #FFD700;
      border: none;
      padding: 12px 30px;
      font-weight: 600;
      border-radius: 30px;
      color: #000;
      transition: 0.3s;
    }
    .btn-hero:hover {
      background: #e6c200;
    }

    /* Section Titles */
    .section-title {
      font-weight: 700;
      margin-bottom: 20px;
    }
    .highlight {
      color: #FFD700;
    }

    /* Vision, Mission, Values */
    .icon-card {
      background: #fff;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
    }
    .icon-card:hover {
      transform: translateY(-8px);
    }
    .icon-card i {
      font-size: 2rem;
      color: #FFD700;
      margin-bottom: 15px;
    }

    /* Strategic Pillars */
    .pillar-card {
      background: #f8f9fa;
      border-radius: 15px;
      padding: 25px;
      text-align: center;
      transition: 0.3s;
    }
    .pillar-card:hover {
      background: #FFD700;
      color: #000;
    }

    /* Stats Section */
    .stats {
      background: #44B64A ;
      color: white;
      padding: 60px 0;
    }
    .stats h3 {
      font-size: 2rem;
      font-weight: bold;
      color: #FFD700;
    }

    /* Leadership */
    .leader-card {
      background: #fff;
      border-radius: 15px;
      text-align: center;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      transition: 0.3s;
    }
    .leader-card img {
      border-radius: 50%;
      width: 120px;
      height: 120px;
      object-fit: cover;
      margin-bottom: 15px;
    }
    .leader-card:hover {
      transform: translateY(-8px);
    }

    /* CTA */
    .cta {
      background: #FFD700;
      color: #000;
      padding: 60px 20px;
      text-align: center;
    }
    .cta h2 {
      font-weight: bold;
      margin-bottom: 20px;
    }
    .cta .btn-dark {
      border-radius: 30px;
      padding: 12px 30px;
      margin: 10px;
    }
          @keyframes fadeZoomIn {
      to { opacity: 1; transform: rotate(0deg) scale(1); }
    }
/* Dropdown menu styling */
    .dropdown-menu a { color: black; 
   
    }
    .dropdown-menu a:hover { background-color: #f8f9fa; }
       /* Dropdown hover animation */
    .dropdown-menu {
      display: none;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.3s ease;
      border-radius: 10px;
    }
    .nav-item:hover .dropdown-menu {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }
    /* About Section (Who We Are) */
#about {
  background: #fff;
  color:  #000000 
;
  padding: 80px 0;
}

#about .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color:  #44B64A 
;
}

#about p {
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: justify; /* aligns your text neatly */
  margin-bottom: 15px;
}

#about img {
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

@media (min-width: 992px) {
  #about .row {
    display: flex;
    align-items: center; /* vertically centers image and text */
  }
}

@media (max-width: 768px) {
  #about {
    text-align: center;
  }

  #about p {
    text-align: justify;
  }

  #about img {
    margin-bottom: 25px;
  }
}
/* Launch Section */
#launch {
  background: #f8f9fa;
  color: #222;
}

#launch .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color:  #44B64A ;
;
}

#launch p {
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 15px;
}

#launch img {
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

@media (min-width: 992px) {
  #launch .row {
    display: flex;
    align-items: center;
  }
}

@media (max-width: 768px) {
  #launch {
    text-align: center;
  }

  #launch img {
    margin-bottom: 25px;
  }
}
#launch {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
#launch.visible {
  opacity: 1;
  transform: translateY(0);
}
