
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root {
  --primary-blue: #0c68e9;
  --secondary-cyan: #2563eb;
  --accent-orange: #ff6b35;
  --dark: #1f2937;
  --light-gray: #f8fafc;
  --white: #FFFFFF;
  --text-gray: #6b7280;
  --accent-red: #ef4444;
  --secondary-teal: #1e40af;
  --light-blue: #f0f7ff;
  --darker-blue: #0052cc;
  --medium-blue: #1e40af;
  --border-gray: #e5e7eb;
}

/* ========== GLOBAL STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background-color: var(--white);
  scroll-behavior: smooth;
}

/* ========== NAVBAR ========== */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}

.logo a{
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 1px;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  gap: 30px;
  flex: 1;
  margin-left: 60px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark);
  font-size: 14px;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
}

.nav-menu a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary-blue);
}

.nav-menu a:hover:after {
  width: 100%;
}

.nav-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.search-btn,
.menu-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 4px;
  background: rgba(12, 104, 233, 0.1);
}

.search-btn:hover,
.menu-btn:hover {
  transform: scale(1.15);
  background: rgba(12, 104, 233, 0.1);
}

.menu-btn {
  display: none;
}

/* ========== HERO SECTION ========== */
.hero {
  background:  linear-gradient(179deg, #0c68e9 -222.63%, #f0f7ff 80.64%);
  
  padding: 80px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  gap: 60px;
}

.hero-content {
  flex: 1;
  color: var(--white);
}

.hero h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 500px;
  color: #000;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
  color: #000;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(91deg, #0c68e9 0.8%, #0052cc 114.79%) !important;
  color: #fff !important;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    border-radius: 999px;
    white-space: nowrap;
    transition: all 0.2s ease;
    box-shadow: none !important;
    font-weight: 500 !important;
    font-size: 16px;
    width: max-content;
  box-shadow: 0 8px 20px rgba(12, 104, 233, 0.4);
    font-family: 'Inter', sans-serif !important;
}

.btn-primary:hover {
  background: #0052cc;
  transform: translateY(-2px);
}

.btn-secondary,
.btn-tertiary {
  background: #e0f2fe;
    border-radius: 24px;
    border: 1px solid #0c68e9;
    font-weight: 500;
    color: #0c68e9 !important;
    white-space: nowrap;
    transition: all 0.2s ease;
    box-shadow: none !important;
    font-weight: 500 !important;
    font-size: 16px;
    padding:12px 36px;
    font-family: 'Inter', sans-serif !important;
    width: max-content;
}

 .btn-secondary:hover {
 background-color: #0c68e9 !important;
    color: #ffffff !important;
    transform: translateY(0);
}

/* .btn-tertiary:hover { 
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-2px);
}  */

.hero-image {
  flex: 1;
  height: auto;
  background: rgba(255, 255, 255, 0.1);
  
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

/* ========== FOOTER ========== */
.footer {
  background: #1a1a1a;
  color: var(--white);
  padding: 60px 40px 30px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.newsletter-section {
  background: linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 100%);
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 50px;
}

.newsletter-section h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
}

.subscribe-btn {
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-btn:hover {
  background: #0052cc;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(12, 104, 233, 0.3);
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  cursor: pointer;
}

.checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  opacity: 0.8;
  position: relative;
  height: max-content;
}

.footer-links a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-blue);
  opacity: 1;
}

.footer-links a:hover:after {
  width: 100%;
}

.footer-social {
  text-align: right;
}

.footer-social h4 {
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 700;
}

.social-icons {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.social-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(86, 195, 224, 0.4);
}

.copyright {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  opacity: 0.7;
}

/* ========== ABOUT US SECTION ========== */
.about-us {
  padding: 100px 40px;
 
  position: relative;
  overflow: hidden;
}

.about-us::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: #dbeafe;
  border-radius: 50%;
  z-index: 1;
}

.about-us::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: rgba(12, 104, 233, 0.05);
  border-radius: 50%;
  z-index: 1;
}

.about-us-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-us-header {
  text-align: center;
  margin-bottom: 70px;
}

.about-us-header h2 {
  font-size: 42px;
  color: var(--dark);
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.about-us-intro {
  font-size: 18px;
  color:#000;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.about-us-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.about-card {
  background: var(--white);
  padding: 50px 35px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gold), var(--secondary-teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.about-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: #0c68e9;
;
}

.about-card:hover::before {
  transform: scaleX(1);
}

.about-card-icon {
  margin-bottom: 5px;
  display: inline-block;
  /* animation: float 3s ease-in-out infinite; */
}

.about-card:nth-child(2) .about-card-icon {
  animation-delay: 0.5s;
}

.about-card:nth-child(3) .about-card-icon {
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.about-card h3 {
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 15px;
  font-weight: 700;
  transition: color 0.3s ease;
}

/* .about-card:hover h3 {
  color: var(--secondary-teal);
} */

.about-card p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}

/* ========== VISION & MISSION SECTION ========== */
.vision-mission {
  padding: 65px 40px;
  background: linear-gradient(135deg, #0c68e9 0%, #2563eb 50%, #1e40af 100%);
  position: relative;
  overflow: hidden;
}

.vision-mission::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

@keyframes floatLarge {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(30px); }
}

.vision-mission::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50px;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: floatLarge 10s ease-in-out infinite;
  animation-delay: 1s;
}

.vision-mission-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.vision-mission-header {
  text-align: center;
  margin-bottom: 50px;
  color: var(--white);
}

.vision-mission-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.vision-mission-header p {
  font-size: 18px;
  opacity: 0.95;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.vision-mission-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1080px;
  margin: 0 auto;
}

.vision-card,
.mission-card {
  background: rgba(255, 255, 255, 0.98);
  padding: 40px 42px;
  border-radius: 28px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.16);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  z-index: 1;
}

.vision-card {
  /* max-width: 720px; */
  width: 100%;
}

.mission-card {
  width: 100%;
  grid-template-columns: 88px minmax(0, 1fr);
}

.vision-card::before,
.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(12, 104, 233, 0.05));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.vision-card:hover,
.mission-card:hover {
  /* transform: translateY(-10px) scale(1.02); */
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.vision-card:hover::before,
.mission-card:hover::before {
  opacity: 1;
}

.vm-icon {
  width: 88px;
  height: 88px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(12, 104, 233, 0.12), rgba(30, 64, 175, 0.08));
  filter: drop-shadow(0 2px 4px rgba(12, 104, 233, 0.3));
}

.mission-card .vm-icon {
  animation-delay: 0.3s;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.vm-content {
  position: relative;
  z-index: 1;
}

.vm-content h3 {
  font-size: 30px;
  color: var(--dark);
  margin-bottom: 15px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.vision-card:hover h3,
.mission-card:hover h3 {
  color: #0c68e9;
}

.vm-content > p {
  font-size: 17px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 25px;
  font-weight: 500;
}

.vision-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}

.highlight {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary-teal), var(--primary-blue));
  color: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.highlight:hover {
  box-shadow: 0 4px 15px rgba(12, 104, 233, 0.4);
}

.mission-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.mission-list li {
  color: var(--text-gray);
  font-size: 15px;
  padding: 16px 18px;
  border: 1px solid rgba(12, 104, 233, 0.1);
  background: linear-gradient(180deg, rgba(240, 247, 255, 0.9), rgba(255, 255, 255, 0.95));
  border-radius: 18px;
  transition: all 0.3s ease;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 22px rgba(12, 104, 233, 0.06);
}

.mission-list li:last-child {
  border-bottom: none;
}

.mission-list li:hover {
  color: #0c68e9;
  background: rgba(12, 104, 233, 0.05);
  border-color: rgba(12, 104, 233, 0.2);
  transform: translateY(-3px);
}

@media (max-width: 768px) { 
    .hero
    {
    flex-direction: column;
    }
}
/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  .about-us-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-card {
    padding: 40px 25px;
  }

  .about-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
  }

  .about-card h3 {
    font-size: 20px;
  }

  /* .vision-mission-cards {
    grid-template-columns: 1fr;
    gap: 40px;
  } */

  .vision-card,
  .mission-card {
    padding: 40px 30px;
  }

  .vm-icon {
    font-size: 45px;
  }

  .vm-content h3 {
    font-size: 24px;
  }

  .vision-highlights {
    flex-direction: column;
  }

  .highlight {
    width: 100%;
    text-align: center;
  }
}
 


.mission-box li:hover:before {
  transform: scale(1.2) rotate(10deg);
}

/* ========== WHAT WE DO SECTION ========== */
.what-we-do {
  padding: 80px 40px;
  background: var(--white);
  position: relative;
    overflow: hidden;
}
.what-we-do::before
{
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgb(219, 234, 254);
    border-radius: 50%;
    z-index: 1;
}
.what-we-do::after
{
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: rgba(12, 104, 233, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.what-we-do-container {
  max-width: 1200px;
  margin: 0 auto;
}

.what-we-do h2 {
  font-size: 36px;
  color: var(--dark);
  margin-bottom: 50px;
  text-align: center;
  font-weight: 700;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.activity-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
    z-index: 9;
    border: 2px solid transparent;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-color: #0c68e9;
  transform: translateY(-15px) !important;
}

.activity-icon {
  font-size: 48px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.activity-card:hover .activity-icon {
  transform: scale(1.15) rotate(5deg);
}

.activity-card h3 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.activity-card p {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.7;
}

/* ========== AWARDS & RECOGNITION SECTION ========== */
.awards-recognition {
  padding: 100px 40px;
  background: linear-gradient(135deg, #0c68e9 0%, #1e40af 100%);
  position: relative;
  overflow: hidden;
}

.awards-recognition::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: floatLarge 10s ease-in-out infinite;
}

.awards-recognition::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 50px;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: floatLarge 12s ease-in-out infinite;
  animation-delay: 1s;
}

.awards-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.awards-header {
  text-align: center;
  margin-bottom: 70px;
  color: var(--white);
}

.awards-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.awards-header p {
  font-size: 18px;
  opacity: 0.95;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.award-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
  color: var(--dark);
}

.award-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-gold), var(--secondary-teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.award-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.award-card:hover::before {
  transform: scaleX(1);
}

.award-icon {
  margin-bottom: 5px;
  display: inline-block;
  /* animation: iconBounce 2s ease-in-out infinite; */
}

.award-card:nth-child(2) .award-icon {
  animation-delay: 0.3s;
}

.award-card:nth-child(3) .award-icon {
  animation-delay: 0.6s;
}

.award-card:nth-child(4) .award-icon {
  animation-delay: 0.9s;
}

.award-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.award-card:hover h3 {
  color: var(--primary-gold);
}

.award-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-gray);
  margin: 0;
}

.awards-highlight {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 30px 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
  color: var(--white);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
}

.awards-highlight strong {
  color: #FFD700;
  font-weight: 700;
}

/* ========== OUR IMPACT SECTION ========== */
.our-impact {
  padding: 100px 40px;
  background: linear-gradient(135deg, #F5F9FC 0%, #F0F7FA 100%);
  position: relative;
  overflow: hidden;
}

.our-impact::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 400px;
  height: 400px;
  background: rgba(12, 104, 233, 0.08);
  border-radius: 50%;
  animation: floatLarge 12s ease-in-out infinite;
}

.our-impact::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: 50px;
  width: 500px;
  height: 500px;
  background: rgba(12, 104, 233, 0.08);
  border-radius: 50%;
  animation: floatLarge 10s ease-in-out infinite;
  animation-delay: 1.5s;
}

.impact-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.impact-header {
  text-align: center;
  margin-bottom: 70px;
}

.impact-header h2 {
  font-size: 42px;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.impact-header p {
  font-size: 18px;
  color: #0c68e9
;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.impact-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-bottom: 70px;
}

.metric-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(12, 104, 233, 0.05));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
  border-color: var(--secondary-teal);
}

.metric-card:hover::before {
  opacity: 1;
}

.metric-number {
  font-size: 44px;
  font-weight: 700;
  color: #0c68e9;
  margin-bottom: 8px;
  display: block;
}

.metric-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  display: block;
}

.metric-card p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.5;
  margin: 0;
}

.impact-story {
  background: linear-gradient(135deg, rgba(12, 104, 233, 0.95), rgba(30, 64, 175, 0.95));
  color: var(--white);
  padding: 50px 50px;
  border-radius: 16px;
  text-align: center;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.3px;
  box-shadow: 0 15px 45px rgba(12, 104, 233, 0.2);
}

/* ========== COMMUNITY & NETWORK SECTION ========== */
.community-network {
  padding: 80px 40px;
  background: url(./Images/dark-bg-image.webp);
  color: var(--white);
}

.community-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.community-network h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
}

.community-container > p {
  font-size: 16px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.community-highlights h3 {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 700;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.network-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.network-item:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.network-item h4 {
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.network-item:hover h4 {
  transform: scale(1.05);
}

.community-tagline {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.9;
}

/* ========== INSIGHTS & UPDATES SECTION ========== */
.insights-updates {
  padding: 100px 40px;
  background: linear-gradient(135deg, #F8FAFB 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}

.insights-updates::before {
  content: '';
  position: absolute;
  top: -100px;
  right: 100px;
  width: 400px;
  height: 400px;
  background: rgba(12, 104, 233, 0.08);
  border-radius: 50%;
  animation: floatLarge 10s ease-in-out infinite;
}

.insights-updates::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -50px;
  width: 350px;
  height: 350px;
  background: rgba(12, 104, 233, 0.08);
  border-radius: 50%;
  animation: floatLarge 12s ease-in-out infinite;
  animation-delay: 1s;
}

.insights-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.insights-header {
  text-align: center;
  margin-bottom: 70px;
}

.insights-header h2 {
  font-size: 42px;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.insights-header p {
  font-size: 18px;
  color: #000;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

.insight-item {
  background: var(--white);
  padding: 45px 35px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.insight-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.insight-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  border-color:#0c68e9;
}

.insight-item:hover::before {
  transform: scaleX(1);
}

.insight-icon {
  margin-bottom: 5px;
  display: inline-block;
  /* animation: iconBounce 2.5s ease-in-out infinite; */
}

.insight-item:nth-child(2) .insight-icon {
  animation-delay: 0.3s;
}

.insight-item:nth-child(3) .insight-icon {
  animation-delay: 0.6s;
}

.insight-item h3 {
  font-size: 22px;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.insight-item:hover h3 {
  color: #0c68e9;
}

.insight-item p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 25px;
}

.insight-link {
  display: inline-block;
  color: #0c68e9;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.insight-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-gold), var(--secondary-teal));
  transition: width 0.4s ease;
}

.insight-item:hover .insight-link::after {
  width: 100%;
}

.insight-link:hover {
  color: var(--primary-gold);
  transform: translateX(5px);
}

/* ========== FINAL CTA SECTION ========== */
.final-cta {
  padding: 100px 40px;
  background: linear-gradient(135deg, #1e40af 0%, #0c68e9 100%);
  color: var(--white);
  text-align: center;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: 42px;
  margin-bottom: 10px;
  font-weight: 700;
}

.final-cta > p {
  font-size: 20px;
  margin-bottom: 50px;
  opacity: 0.95;
}

.cta-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
  margin-top: 40px;
}

.cta-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.cta-item:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.cta-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.cta-item:hover h3 {
  transform: scale(1.08);
}

.cta-item p {
  font-size: 14px;
  opacity: 0.95;
  line-height: 1.6;
  transition: opacity 0.3s ease;
}

.cta-item:hover p {
  opacity: 1;
}

.cta-tagline {
  font-size: 16px;
  font-style: italic;
  opacity: 0.95;
  line-height: 1.7;
}

/* ========== KEYFRAME ANIMATIONS ========== */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

section {
  animation: slideInUp 0.6s ease-out;
}

.activity-card,
.insight-item,
.network-item {
  animation: slideInUp 0.5s ease-out;
}

.hero-content {
  animation: slideInLeft 0.7s ease-out;
}

.hero-image {
  animation: slideInRight 0.7s ease-out;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 786px) {
  .navbar {
    position: sticky;
  }

  .nav-container {
    position: relative;
    padding: 14px 20px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .nav-menu {
    display: none;
    order: 3;
    width: 100%;
    margin-left: 0;
    margin-top: 8px;
    padding: 18px;
    flex-direction: column;
    gap: 14px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(12, 104, 233, 0.12);
    border-radius: 20px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  }

  .nav-menu.is-open {
    display: flex;
        display: flex;
        width: 100%;
        position: absolute;
        top: 60px;
        right: 0;
        text-align: right;
        border-radius: 0;
  }

  .nav-menu a {
    width: 100%;
    padding: 10px 0;
    font-size: 15px;
  }

  .nav-menu a:after {
    bottom: 4px;
  }

  .nav-icons {
    margin-left: auto;
    gap: 10px;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  
  .hero {
    flex-direction: column;
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-image {
    height: 300px;
  }

  .hero-buttons {
    flex-direction: column;
  
    
  }

  .footer-social {
    text-align: left;
  }

  .social-icons {
    justify-content: flex-start;
  }

  .vision-mission-cards {
    gap: 24px;
  }

  .vision-card,
  .mission-card {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
    padding: 36px 28px;
  }

  .vm-icon {
    width: 50px;
    height: 50px;
  }

  .vm-content h3 {
    font-size: 24px;
  }

  .mission-list {
    grid-template-columns: 1fr;
  }

  /* .vision-highlights {
    flex-direction: column;
  } */

  .highlight {
    width: 100%;
    text-align: center;
  }


  .award-card {
    padding: 35px 25px;
  }

  .award-icon {
    font-size: 42px;
    margin-bottom: 15px;
  }

  .award-card h3 {
    font-size: 18px;
  }

  .award-card p {
    font-size: 13px;
  }

  .awards-highlight {
    padding: 25px 20px;
    font-size: 14px;
  }

  .impact-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .metric-card {
    padding: 30px 20px;
  }

  .metric-number {
    font-size: 36px;
  }

  .metric-label {
    font-size: 14px;
  }

  .metric-card p {
    font-size: 13px;
  }

  .impact-story {
    padding: 40px 30px;
    font-size: 15px;
  }



  .insight-item {
    padding: 35px 25px;
  }

  .insight-icon {
    font-size: 45px;
    margin-bottom: 15px;
  }

  .insight-item h3 {
    font-size: 20px;
  }

  .insight-item p {
    font-size: 14px;
  }
  .footer-links
  {
    gap: 15px;
    margin-bottom: 20px;
  }
  .footer-bottom
  {
    display: block;
  }
  .footer-social
  {
    margin-bottom: 20px;
  }

}


  @media (max-width: 500px) {
    .impact-metrics {
      grid-template-columns: 1fr;
    }

    .metric-number {
      font-size: 32px;
    }

    .awards-grid {
      gap: 20px;
    }

    .award-icon {
      font-size: 38px;
    }

    .insights-grid {
      gap: 20px;
    }

    .insight-icon {
      font-size: 40px;
    }
    .btn-primary
    {
        width: 100%;
    }
    .btn-secondary, .btn-tertiary
    {
        width: 100%;
    }
    .newsletter-form
    {
        flex-wrap:wrap;
    }
  }
