body{
   width: 100%; 
   height: 800px;
margin: 0;
}
body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: lightgray; /* light gray background */
      scroll-behavior: smooth;
      
    }

    .hero {
      position: relative;
      text-align: center;
      color :#1ca4f4;
    }

    .hero img {
      width: 100%;
      height: 100vh;
      object-fit: cover;
      filter: brightness(70%);
    }

    .hero-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 3rem;
      font-weight: bold;
      text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
      font-family: 'Times New Roman', Times, serif;
    
      
    }

    .btn {
      position: absolute;
      top: 70%;
      left: 50%;
      transform: translateX(-50%);
      padding: 10px 20px;
      background: #3498db;
      color: white;
      
      border: none;
      border-radius: 25px;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.2s, transform 0.1;
      text-decoration: none;
    }

    .btn:hover {
      background-color: #d6d6d6;
      transform: translateX(-50%) scale(1.05);

      
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  /* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Slider container */
.slider {
    position: relative;
    height: 800px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    min-height: 100vh;
}

/* Each background image */
.slide {
    position: absolute;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fade 40s infinite;
}

/* Animation for fading */
@keyframes fade {
    0% { opacity: 0; }
    5% { opacity: 1; }
    20% { opacity: 1; }
    25% { opacity: 0; }
    100% { opacity: 0; }
}

/* Delay each image */
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }
.slide:nth-child(4) { animation-delay: 15s; }
.slide:nth-child(5) { animation-delay: 20s; }
.slide:nth-child(6) { animation-delay: 25s; }
.slide:nth-child(7) { animation-delay: 30s; }
.slide:nth-child(8) { animation-delay: 35s; }
.slide:nth-child(9) { animation-delay: 40s; }
/* Centered text content */
.content {
    position: absolute;
    text-align: center;
    color:  lightblue;
    z-index: 10;
    animation: blink 2s infinite;
    align-items: first baseline;
    position: relative;bottom: 5px;
    margin-top: 5px;
}

/* Blinking animation for text */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.content h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    line-height: 1.5;
}

.content span {
    display: block;
    font-size: 2rem;
    font-style: italic;
    margin-top: 10px;
}

/* Hover "Read More" button */
.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    font-size: 1.2rem;
    color:lightblue;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid beige;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color:wheat;
    color: black;
    transform: scale(1.1);
}
body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Main section */
.about-section {
  text-align: center;
  padding: 50px 20px;
}

/* Title */
.main-title {
  font-size: 2.5em;
  color:#1ca4f4 ;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Subtitle */
.sub-title {
  font-size: 1.8em;
  color:#1ca4f4 ; ;
  margin-bottom: 30px;
}

/* Flex container */
.about-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  background-color: #ffffff;
  border: 2px solid #ccc;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Image section */
.about-image img {
  width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Description */
.about-description {
  text-align: left;
  max-width: 600px;
}

.about-description p {
  font-size: 1.1em;
  line-height: 1.7;
  color:black ;
}

/* Responsive design */
@media (max-width: 768px) {
  .about-box {
    flex-direction: column;
    text-align: center;
  }

  .about-description {
    text-align: center;
  }
  .about-image img {
    width: 90%;
  }
}
    


.formation-section {
  text-align: center;
  padding: 60px 5%;
  background: linear-gradient(to bottom right, #faf8ff, #f6f2fa, #fff);
  border-top: 4px solid #6a4bbf;
  border-bottom: 4px solid #6a4bbf;
}

.section-title {
  font-size: 2.5em;
  color: #1ca4f4 ;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-intro {
  max-width: 800px;
  margin: 0 auto 50px auto;
  font-size: 1.1em;
  color:black;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(40px);
}

.formation-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.formation-box {
  background: linear-gradient(to bottom, #ffffff, #f8f6fe);
  border: 1px solid #d8cfff;
  box-shadow: 0 4px 10px rgba(100, 80, 160, 0.1);
  border-radius: 15px;
  width: 300px;
  padding: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}

.formation-box.visible,
.section-intro.visible {
  opacity: 1;
  transform: translateY(0);
}

.formation-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(106, 75, 191, 0.25);
}

.formation-box h2 {
  color:#1ca4f4 ;
  margin-bottom: 15px;
  font-size: 1.5em;
}

.formation-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  border: 2px solid #ddd;
}

.formation-box p {
  font-size: 0.95em;
  text-align: justify;
  color: #555;
}

/* Fade-up animation */
.fade-up {
  transition: opacity 1s ease-out, transform 1s ease-out;
}

/* Responsive design */
@media (max-width: 900px) {
  .formation-container {
    flex-direction: column;
    align-items: center;
  }

  .formation-box {
    width: 90%;
  }
}
/* General Styling */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

.leadership-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
}

.leadership-section h1 {
  font-size: 2.5rem;
  color:#1ca4f4  ;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Flex Container */
.leadership-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Each Leader Box */
.leader-box {
  background-color: #f0f4f8;
  border: 2px solid #dcdcdc;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
  width: 300px;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.7s ease-in-out;
}

.leader-box.show {
  opacity: 1;
  transform: scale(1);
}

.leader-box:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.leader-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.leader-box h2 {
  font-size: 1.4rem;
  color: #1ca4f4 ;
  margin-bottom: 10px;
}

.leader-box p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth; /* 👈 Enables smooth scrolling */
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f7f7;
}

.mission-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #ffffff;
}

/* 🔆 Glowing heading */
.glow-text {
  font-size: 2.5em;
  margin-bottom: 40px;
  color:#1ca4f4  ;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeDown 1s ease forwards, glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0% {
    text-shadow: 0 0 5px #99ccff, 0 0 10px #99ccff;
    opacity: 1;
  }
  50% {
    text-shadow: 0 0 20px #66a3ff, 0 0 30px #3385ff, 0 0 40px #0052cc;
    opacity: 0.85;
  }
  100% {
    text-shadow: 0 0 5px #99ccff, 0 0 10px #99ccff;
    opacity: 1;
  }
}

/* Layout for the boxes */
.mission-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
}

/* Mission Boxes */
.mission-box {
  background: #f2f2f2;
  border: 2px solid #ddd;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  flex: 1 1 300px;
  max-width: 350px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(40px);
}

.mission-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.mission-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* Box content */
.mission-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.mission-box h3 {
  color:#1ca4f4 ;
  margin-bottom: 10px;
  font-size: 1.5em;
}

.mission-box p {
  color: #555;
  font-size: 1em;
  line-height: 1.6;
}

/* 🌿 Read More Button */
.read-more-container {
  margin-top: 40px;
}

.read-more-btn {
  display: inline-block;
  background-color: #1ca4f4 ;;
  color: white;
  padding: 12px 30px;
  font-size: 1.1em;
  text-decoration: none;
  border-radius: 30px;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* ✨ Glowing Button Animation */
.glow-btn {
  animation: glowPulseBtn 3s ease-in-out infinite;
}

@keyframes glowPulseBtn {
  0% {
    box-shadow: 0 0 8px #99ccff, 0 0 12px #66a3ff;
  }
  50% {
    box-shadow: 0 0 16px #66a3ff, 0 0 25px #3385ff;
  }
  100% {
    box-shadow: 0 0 8px #99ccff, 0 0 12px #66a3ff;
  }
}

/* Hover effect */
.read-more-btn:hover {
  background-color: #ffffff;
  color: #003366;
  border: 2px solid #003366;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

/* Fade-down animation for title */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade-in for boxes and button */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cascading delays */
.delay-1.visible { transition-delay: 0.2s; }
.delay-2.visible { transition-delay: 0.5s; }
.delay-3.visible { transition-delay: 0.8s; }
.delay-4.visible { transition-delay: 1.1s; }

    

#footer{
    width: 100%;
    height: 280px;
    display: flex;
    background-color: gray;
}
.footer1{
    width: 25%;
    font-family:sans-serif ;
    text-align: center;
}
.footer1 img{
    width: 100px;
    height: 100px;
}

.footer2{
    width: 10%;
    font-family:sans-serif ;
    text-align: center;
    color: black;
    font-size: 2rem;
}
.footer2 img{
    width: 25px;
    height: 25px;
    padding-left: 20px;
}
.footer3{
    width: 30%;
    font-family:sans-serif ;
    text-align: center;
    color: black;
}
.footer3 ul{list-style: none;}
    
.footer4{
    width: 25%;
    color: black; 
    font-family:sans-serif ;
 }
.footer4 img{
    width: 20px;
    height: 20px;
}
.ft1{
    display: flex;
    align-items: center;
    gap: 10px;
}
.ft2{
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
}
.ft3{
    display: flex;
    align-items: center;
    gap: 10px;
    row-gap: 5px;
}
.ft4{
    display: flex;
    align-items: center;
    gap: 10px;
    row-gap: 5px;
}


    
