@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}
/* NAVBAR */
.navbar {
  width: 100%;
  padding: 12px 25px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  position: relative;
  z-index: 999;
}

/* LOGO */
.logo-link {
  text-decoration: none;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-box img {
  width: 52px;
}

.logo-text h2 {
  font-size: 18px;
  color: #00a8ff;
}

.logo-text p {
  font-size: 13px;
  color: #555;
}


/* NAV LINKS (DESKTOP) */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 22px;
  background: #05b4ff;
  padding: 12px 22px;
  border-radius: 12px;
}

.nav-links li a,
.legal-btn {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* LEGAL DROPDOWN */
.legal-item {
  position: relative;
}

.legal-btn {
  display: flex;
  align-items: center;
  gap: 6px;
}

.legal-menu {
  position: absolute;
  top: 45px;
  left: 0;
  background: #fff;
  list-style: none;
  min-width: 220px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: none;
}

.legal-menu li a {
  display: block;
  padding: 12px 16px;
  color: #333;
  font-size: 14px;
}

.legal-menu li a:hover {
  background: #05b4ff;
  color: #fff;
}

.legal-menu.show {
  display: block;
}

/* SCHOLARSHIP BUTTON */
.scholar-desktop {
  background: #00a8ff;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* MOBILE SCHOLAR */
.mobile-scholar {
  display: none;
}

/* ================= MOBILE VIEW ================= */
@media (max-width: 900px) {

  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 88px;
    left: -100%;
    width: 100%;
    height: auto;
    background: #05b4ff;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
    transition: 0.4s ease;
    border-radius: 0;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    margin: 1px 0;
  }

  .nav-links li a,
  .legal-btn {
    font-size: 17px;
    padding: 6px 0;
  }

  .legal-menu {
    position: static;
    box-shadow: none;
    width: 90%;
    margin-top: 6px;
  }

  .scholar-desktop {
    display: none;
  }

  .mobile-scholar {
    display: block;
    margin-top: 10px;
  }

  .mobile-scholar-btn {
    background: #fff;
    color: #05b4ff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
  }
}



/* ===== Hero Section ===== */

.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* ---------- Video Slider ---------- */
.video-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.video-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.video-slide.active {
  opacity: 1;
}

/* ---------- Overlay ---------- */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(15, 25, 10, 0.55);
  z-index: 1;
}

/* ---------- Hero Content ---------- */
.hero-content {
  position: relative;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.trust-quote {
  font-size: 2.2rem;
  font-weight: 700;
  color: #007BFF; /* Blue Highlight */
  text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
  animation: glow 2s ease-in-out infinite alternate;
}

.trust-tagline {
  margin-top: 15px;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

/* ---------- Glow Animation ---------- */
/* @keyframes glow {
  from { text-shadow: 0 0 10px #FFD700; }
  to { text-shadow: 0 0 30px #FFF6A9, 0 0 50px #FFD700; }
} */

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .trust-quote {
    font-size: 1.6rem;
  }
  .trust-tagline {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .trust-quote {
    font-size: 1.3rem;
  }
}


/* Who We Are Section */
/* ---------- Who We Are Section ---------- */
.who-we-are {
  background: #f8f9f7;
  padding: 100px 8%;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #007BFF;
  margin-bottom: 20px;
  font-weight: 700;
}

.who-desc {
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

/* ---------- Images Layout ---------- */
.who-images {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.image-card {
  flex: 1 1 400px;
  max-width: 600px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.image-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-bottom: 4px solid #007BFF;
}

.image-card h3 {
  color: #007BFF;
  font-size: 1.5rem;
  margin: 15px 0 10px;
}

.image-card p {
  padding: 0 20px 25px;
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
}

/* ---------- Responsive Design ---------- */
@media (max-width: 768px) {
  .who-we-are {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  .image-card img {
    height: 280px;
  }
}

/* .guiding-principles  */
.guiding-principles {
  background-color: #007BFF;
  color: #fff;
  padding: 80px 8%;
  font-family: "Poppins", sans-serif;
}

.guiding-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.guiding-text {
  flex: 1 1 550px;
}

.guiding-text h2 {
  font-size: 2.3rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.guiding-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guiding-text ul li {
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 12px;
  padding: 14px 18px;
  border-radius: 10px;
  line-height: 1.6;
  font-size: 1.05rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.guiding-text ul li:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.25);
}

.guiding-image {
  flex: 1 1 400px;
  text-align: center;
}

.guiding-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* Responsive Design for mobile */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    margin-bottom: 10px;
  }

  /* Hide image on mobile */
  .about-image {
    display: none;
  }

  /* Align content text left on mobile */
  .about-content {
    text-align: left;
  }

  .about-btn {
    margin-top: 10px;
  }
}




/* .about-profenaa */
.about-profenaa {
  background-color: #f9f9f9;
  padding: 80px 8%;
  font-family: "Poppins", sans-serif;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

.about-content {
  flex: 1 1 550px;
}

.about-content h2 {
  font-size: 2.3rem;
  color: #007BFF;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-content p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-btn {
  display: inline-block;
  background-color: #007BFF;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

.about-btn:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

.about-image {
  flex: 1 1 450px;
  text-align: center;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    margin-bottom: 10px;
  }

  .about-btn {
    margin-top: 10px;
    
  }
}
/* Programs Section */
.programs-section {
  background-color: #f9f9f9;
  padding: 50px 10%;
  text-align: center;
}

.programs-heading {
  font-size: 2.2rem;
  color: #007BFF; /* Blue Highlight */
  display: inline-block;
}

/*.programs-heading::after {*/
/*  content: "";*/
/*  display: block;*/
/*  width: 60%;*/
/*  height: 3px;*/
/*  background-color: #00aaff;*/
/*  margin: 10px auto 0;*/
/*  border-radius: 3px;*/
/*}*/

.programs-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.program-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(34, 139, 34, 0.2);
}

.program-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.program-card h3 {
  font-size: 1.4rem;
  color: #00aaff;
  margin: 15px 0 10px;
}

.program-card p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 0 15px 20px;
  text-align: justify;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .programs-section {
    padding: 40px 5%;
  }

  .programs-heading {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .program-card img {
    height: 180px;
  }

  .program-card p {
    font-size: 0.9rem;
    padding: 0 10px 15px;
  }
}

@media (max-width: 480px) {
  .programs-heading {
    font-size: 1.8rem;
  }

  .program-card img {
    height: 160px;
  }

  .program-card h3 {
    font-size: 1.3rem;
  }

  .program-card p {
    font-size: 0.85rem;
  }
}



/* recent-events */
#recent-events {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

#recent-events h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #00aaff;
}

.events-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

.event {
  display: flex;
  flex-direction: column;
  background-color: #f5faff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.event:hover {
  transform: translateY(-4px);
}

.event img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.event-content {
  padding: 20px;
  text-align: left;
}

.event-content h3 {
  font-size: 20px;
  color: #0077b6;
  margin-bottom: 10px;
}

.event-content p {
  color: #444;
  font-size: 15px;
}

/* Responsive */
@media (min-width: 768px) {
  .event {
    flex-direction: row;
  }

  .event img {
    width: 40%;
    height: 100%;
  }

  .event-content {
    width: 60%;
    padding: 30px;
  }
}


/* ===== Footer Section ===== */


.footer {
  position: relative;
  background: linear-gradient(135deg, #003c5f, #007BFF);
  color: #fff;
  padding: 60px 20px 30px;
  overflow: hidden;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.footer-about,
.footer-programs,
.footer-links,
.footer-contact {
  flex: 1 1 250px;
  margin: 20px;
  min-width: 250px;
}

.footer-about h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.footer-about p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Social Icons */
.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-block;
  margin-right: 12px;
  color: #fff;
  font-size: 1.1rem;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #ffcc00;
  transform: translateY(-3px);
}

.footer-programs h3,
.footer-links h3,
.footer-contact h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  border-left: 4px solid #ffcc00;
  padding-left: 10px;
}

.footer-programs ul,
.footer-links ul {
  list-style: none;
}

.footer-programs ul li,
.footer-links ul li {
  margin-bottom: 10px;
}

.footer-programs ul li a,
.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-programs ul li a:hover,
.footer-links ul li a:hover {
  color: #ffcc00;
}

.footer-contact p {
  margin-bottom: 8px;
  font-size: 1rem;
}

.footer-contact i {
  margin-right: 8px;
  color: #ffcc00;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  opacity: 0.85;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
}

.footer-bottom a {
  color: #ffcc00;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Floating Dot Effect */
.footer-dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff, rgba(255, 255, 255, 0.2));
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.07s ease-out;
  z-index: 1;
  opacity: 0;
  box-shadow: 0 0 10px rgba(255,255,255,0.8);
}

.footer:hover .footer-dot {
  opacity: 1;
}

/* Responsive Design - Improved for Mobile */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: left;
    gap: 15px; /* Add small gap instead of big margins */
  }

  .footer-about,
  .footer-programs,
  .footer-links,
  .footer-contact {
    margin: 10px 0; /* Reduce vertical margin */
    flex: 1 1 auto;
  }

  .footer-about h2 {
    font-size: 1.5rem;
  }

  .footer-about p,
  .footer-contact p,
  .footer-programs ul li a,
  .footer-links ul li a {
    font-size: 0.95rem; /* Slightly smaller text for mobile */
  }

  .footer-programs h3,
  .footer-links h3,
  .footer-contact h3 {
    border: none;
    padding-left: 0;
    margin-bottom: 8px;
    font-size: 1.1rem;
  }

  .footer-social a {
    margin-right: 8px;
    font-size: 1rem;
  }

  .footer-bottom {
    text-align: left;
    font-size: 0.8rem;
    margin-top: 20px;
    padding-top: 10px;
  }
}

/* ==============================
   TRUST PARTNERS SECTION – SKY BLUE
================================ */
.trust-partners {
  padding: 90px 20px;
  background: #f4f9fd; /* soft sky background */
  font-family: "Poppins", sans-serif;
  color: #1f3a5f;
}

.trust-container {
  max-width: 1100px;
  margin: auto;
}

/* ==============================
   HEADING
================================ */
.trust-heading {
  text-align: center;
  margin-bottom: 60px;
}

.trust-heading h2 {
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  font-weight: 700;
  color: #1e5fa3; /* main sky blue */
}

.trust-heading p {
  max-width: 640px;
  margin: 12px auto 0;
  font-size: 1.05rem;
  color: #4a6fa5;
}

/* ==============================
   CARD STYLE
================================ */
.trust-card {
  background: #ffffff;
  border-left: 5px solid #4da3ff;
  border-radius: 10px;
  padding: 32px;
  margin-bottom: 35px;
  box-shadow: 0 12px 30px rgba(77, 163, 255, 0.15);
}

.trust-card h3 {
  font-size: 1.35rem;
  color: #2c6fb2;
  margin-bottom: 12px;
}

.trust-card p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #2b4c73;
}

/* ==============================
   PROJECT AREA
================================ */
.trust-project {
  padding-bottom: 40px;
}

.project-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: center;
  margin-top: 20px;
}

.project-layout img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(77, 163, 255, 0.25);
}

.project-text h4 {
  font-size: 1.2rem;
  color: #1e5fa3;
  margin-bottom: 8px;
}

/* ==============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .project-layout {
    grid-template-columns: 1fr;
  }

  .trust-card {
    padding: 26px;
  }
}



/* ==============================
   IMPACT VOICES – TRUST STYLE
================================ */
.impact-voices {
  padding: 80px 20px;
  background: #f4f9fd;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.impact-voices h2 {
  font-size: 2.3rem;
  color: #1e5fa3;
}

.impact-sub {
  max-width: 650px;
  margin: 10px auto 40px;
  color: #4a6fa5;
}

/* ==============================
   SLIDER
================================ */
.impact-slider-wrapper {
  overflow: hidden;
  max-width: 1100px;
  margin: auto;
}

.impact-slider {
  display: flex;
  gap: 25px;
  transition: transform 0.5s ease;
}

/* FIXED CARD SIZE */
.impact-slide {
  min-width: 33.33%;
  display: flex;
  justify-content: center;
}

/* FIXED VIDEO SIZE */
.impact-slide video {
  width: 100%;
  max-width: 340px;          /* 🔒 fixed width */
  height: 350px;             /* 🔒 fixed height */
  object-fit: cover;         /* prevents stretching */
  border-radius: 14px;
  background: #000;
  box-shadow: 0 10px 25px rgba(77, 163, 255, 0.25);
}

/* ==============================
   CONTROLS (BELOW SLIDER)
================================ */
.impact-controls {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.impact-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #b7e7c5;
  background: #fff;
  color: #007BFF;
  font-size: 18px;
  cursor: pointer;
}

.impact-btn:hover {
  background: #e6f7ee;
}

/* DOTS */
.impact-dots {
  display: flex;
  gap: 8px;
  background: #e9f8ef;
  padding: 8px 16px;
  border-radius: 30px;
}

.impact-dots span {
  width: 10px;
  height: 10px;
  background: #9be2b8;
  border-radius: 50%;
  cursor: pointer;
}

.impact-dots span.active {
  background: #007BFF;
}

/* ==============================
   RESPONSIVE FIXES
================================ */
@media (max-width: 900px) {
  .impact-slide {
    min-width: 50%;
  }

  .impact-slide video {
    max-width: 300px;
    height: 190px;
  }
}

@media (max-width: 600px) {
  .impact-slide {
    min-width: 100%;
  }

  .impact-slide video {
    max-width: 100%;
    height: 190px;
  }
}

