:root {
  --bg-gradient: linear-gradient(135deg, #0a1a2a, #0c253e , #6dd5ed);
  --btn-green: #00c853;
  --btn-green-hover: #009c44;
  --text-dark: #1a1a1a;
  --nav-bg: rgba(15, 74, 88, 0.9);
  --nav-bg-solid: rgb(15, 74, 88);
  --bg: #0a1a2a;          /* deep navy */
  --bg-2: #0f2740;        /* slightly lighter */
}


/* ================================
   Reset & Body
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: var(--bg-gradient);
  min-height: 100vh;
  line-height: 1.6;
}

/* ================================
   NAVBAR
================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background-color: var(--nav-bg);
  backdrop-filter: blur(10px);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background-color: var(--nav-bg-solid);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-box {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  overflow: hidden; /* ensures image stays inside rounded box */
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* keeps image proportionate */
}


.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text .title {
  font-size: 18px;
  font-weight: 700;
}

.logo-text .subtitle {
  font-size: 13px;
  color: #a7c4de;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a,
.dropbtn {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  color: #e6e6e6;
  transition: color 0.3s ease;
  padding: 6px 0;
}

.nav-links a:hover,
.dropbtn:hover {
  color: #64a2d5;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 200px;
  background: #0f4a58;
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  animation: fadeIn 0.2s ease;
}

.dropdown-content a {
  display: block;
  padding: 12px 16px;
  color: #d8d8d8;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}

.dropdown-content a:hover {
  background: #64a2d5;
  color: #fff;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Request Button */
.start span {
  padding: 10px 18px;
  border-radius: 8px;
  background: linear-gradient(to right, #64a2d5, #3b45d7);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.start span:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ================================
   MOBILE STYLES
================================ */
.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #fff;
}

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 250px;
    background: var(--nav-bg-solid);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 1rem;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background: transparent;
  }

  .dropdown-content a {
    padding: 10px 0;
  }

  .dropdown:hover .dropdown-content {
    display: none; /* disable hover effect on mobile */
  }

  .dropdown.open .dropdown-content {
    display: block;
  }
}

.hero { position: relative; min-height: 74vh; display: grid; place-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; filter: blur(6px) saturate(110%); transform: scale(1.04); }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(60% 40% at 50% 20%, rgba(0,212,255,0.18), transparent 60%), linear-gradient(180deg, rgba(4,18,31,0) 10%, rgba(4,18,31,0.85) 100%); }
.hero-content { position: relative; text-align: center; padding: 20px; max-width: 920px; }
.tagline { font-size: 4rem; margin: 0 0 12px; font-weight: 900; }
.sub { color: var(--muted); margin: 0 auto 22px; max-width: 720px; font-size: 1.5rem; }
.line {  width: 120px;             /* length of the line */ height: 4px;              /* thickness */ margin: 40px auto;        /* centers it horizontally */ background: linear-gradient(90deg,  rgb(17, 144, 180), rgb(3, 8, 44), rgb(40, 149, 185));border-radius: 2px;   }
.mission-container{display: flex; justify-content: space-between; padding: 4rem 1rem 5rem; }
.mission-header h4{color: rgb(14, 175, 203); font-size: 1.3rem; text-transform: capitalize; margin-left: 20px;}
.line-h{ width: 10%;height: 4px;background: linear-gradient(to right, rgb(4, 138, 150), rgb(18, 140, 173), rgb(43, 141, 168), rgb(30, 119, 144), rgb(43, 139, 158), rgb(31, 164, 176), rgb(15, 95, 97));border-radius: 2px;margin-left: 20px;}
.head {font-size: 3rem; word-spacing: 18px; margin-left: 20px;font-weight: 900; text-transform: capitalize;line-height: 40px;}
.me { background: linear-gradient(90deg, #03d2c0, #3ad3a3); -webkit-background-clip: text;-webkit-text-fill-color: transparent; font-weight: bold;}

.es {background: linear-gradient(90deg, #00c6ff, #0072ff);-webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: bold;}
.mission-header p {font-size: 1.1rem; margin-left: 20px;text-transform: capitalize;word-spacing: 5px;}
.impact-container{display: flex;justify-content: space-between;margin-left: 20px;}
.impact{display: flex;justify-content: space-between;gap: 30px;}
.impact-1{display: flex;justify-content: space-between;gap: 10px;}
.impact-2{display: flex;justify-content: space-between;gap: 10px;}
.impact-3{display: flex;justify-content: space-between;gap: 10px;}
.icons{border-radius: 5px;padding: 5px 9px;background-color: #6496a4;}
.impact h5 {font-size: 1rem;text-transform: capitalize;}
.img-container img{border-radius: 10px;height: 550px;width: 500px;}
.principles-container{padding: 4px 1px 5px;background-color: rgb(232, 232, 232);color: black;}
.core-values{text-align: center;}
.core-values h4 {color: black;text-transform: uppercase;text-align: center;}
.sen{background: linear-gradient(90deg, #03d2c0, #3ad3a3); -webkit-background-clip: text;-webkit-text-fill-color: transparent; font-weight: bold;}
.core-values h2{font-size: 3rem;}
.values-section {
  padding: 80px 20px;
}

.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.value-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.value-card i {
  font-size: 2.5rem;
  color: #2563eb; /* stylish blue */
  margin-bottom: 1rem;
}

.value-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: #111827;
}

.value-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
}
.timeline {
  position: relative;
  background-color: #0a1a2a;
  color: rgb(70, 68, 68);
}

.heading h4{text-align: center;font-size: 1.1rem;text-transform: uppercase;color: rgb(109, 109, 194);}
.heading h1{text-align: center;font-size: 3rem;font-weight: 900;}


.timeline-item {
  width: 50%;
  padding: 20px;
  position: relative;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.timeline-content img {
  width: 400px;
  height: 130px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.text-box {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.year {
  display: block;
  color: #2196f3;
  font-weight: bold;
  margin-bottom: 8px;
}

/* Plane icon */
.timeline-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #2196f3;
  color: #fff;
  font-size: 10px;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Section base styling */
#impact {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #004aad, #0077b6);
  color: #fff;
  text-align: center;
}

/* Heading and paragraph */
#impact h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
#impact p {
  margin-bottom: 2rem;
  line-height: 1.5;
}

/* Grid layout */
#impact .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Stat cards */
#impact .grid div {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem 1rem;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#impact .grid div:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Numbers */
#impact .counter {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

/* Sub text */
#impact .grid p {
  margin: 0.25rem 0;
}

/* ================================
   MOBILE RESPONSIVENESS FIXES
================================ */

/* Mission Section */
@media (max-width: 900px) {
  .mission-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }

  .mission-header h4,
  .mission-header p,
  .head {
    margin-left: 0;
  }

  .img-container img {
    width: 100%;
    height: auto;
    max-width: 400px;
  }
}

/* Impact Section */
@media (max-width: 900px) {
  .impact-container {
    flex-direction: column;
    align-items: center;
    margin-left: 0;
  }

  .impact {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Timeline Section */
@media (max-width: 900px) {
  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .timeline-content {
    flex-direction: column;
    text-align: center;
  }

  .timeline-content img {
    width: 100%;
    height: auto;
    max-width: 320px;
  }

  .timeline-icon {
    display: none; /* optional: hide center icon for mobile */
  }
}

/* Hero Section */
@media (max-width: 768px) {
  .tagline {
    font-size: 2.2rem;
  }

  .sub {
    font-size: 1rem;
    padding: 0 10px;
  }
}

/* Core Values Section */
@media (max-width: 768px) {
  .core-values h2 {
    font-size: 2rem;
  }
}

/* General Padding Adjustments */
@media (max-width: 600px) {
  .values-section,
  #impact,
  .mission-container,
  .principles-container {
    padding: 2rem 1rem;
  }
}

  .footer {
  background-color: #242436;
  padding: 40px 20px;
  font-size: 14px;
  line-height: 1.8;
}

/* Footer container */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section {
  flex: 1;
  min-width: 200px;
  margin: 15px;
}

.footer-section.about { flex: 1.5; }

.footer-section h3 {
  font-size: 16px;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 600;
}

.footer-section p {
  color: #fffafa;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.footer-section .powered-by {
  font-size: 13px;
  margin-top: 20px;
}

.footer-section .powered-by a {
  color: #FFD700;
  text-decoration: none;
}

.footer-section .powered-by a:hover {
  text-decoration: underline;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgb(201, 201, 201);
  text-transform: capitalize;
  cursor: pointer;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #cfcccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #fff;
}

.footer-section.contact-info p {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}

.footer-section.contact-info p i {
  margin-right: 10px;
  color: #90EE90;
  font-size: 16px;
  margin-top: 3px;
}

.footer-section.contact-info a {
  color: #bbb;
  text-decoration: none;
}

.footer-section.contact-info a:hover {
  text-decoration: underline;
}

.follow-us {
  margin-top: 30px;
  margin-bottom: 15px !important;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  background-color: #90EE90;
  color: #242436;
}

.social-links i { font-size: 16px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 20px auto 0;
  color: #bbb;
  font-size: 13px;
  flex-wrap: wrap;
}

.footer-bottom p { margin: 5px 0; }

.footer-legal a {
  color: #bbb;
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.3s ease;
}

.footer-legal a:hover { color: #fff; }

.footer-last p{
  align-items: center;
  max-width: 1200px;
  margin: 20px auto 0;
  color: #bbb;
  font-size: 13px;
  text-transform: capitalize;
}
