/* NAVBAR */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 9999;
}

.navbar {
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.logo img {
  width: 200px;
  height:100px;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
}

nav ul li a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  font-size: 15px;
}

.btn-primary {
  background: #f97316;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
}
.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
}
/* FORCE MOBILE NAV TO WORK */
@media (max-width: 768px) {

  header {
    position: relative;
    z-index: 1000;
  }
  .navbar {
    position: relative;
    z-index: 1000;
  }

  .menu-toggle {
    display: block;
    z-index: 10001;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background: #ffffff;
    padding: 20px;
    gap: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }

  nav ul.show {
    display: flex;
  }
}

/*-----------------------------------Footer--------------------------------------------*/
.site-footer {
  background: #0f172a;
  color: #e5e7eb;
  padding: 70px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

/* Brand */
.footer-brand h3 {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: #cbd5f5;
}

/* Links */
.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #cbd5f5;
  text-decoration: none;
  font-size: 14px;
}

.footer-links ul li a:hover {
  color: #ffffff;
}

/* Social Icons */
.social-links {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-links img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}

.social-links img:hover {
  transform: scale(1.1);
}

/* Email */
.footer-email {
  font-size: 14px;
  color: #cbd5f5;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #1e293b;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #94a3b8;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}



/*------------------------------------- ABOUT HERO -------------------------------------*/
.about-hero {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: #ffffff;
  padding: 160px 20px 120px;
  text-align: center;
}

.about-hero h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 14px;
}

.about-hero p {
  max-width: 700px;
  margin: auto;
  font-size: 16px;
  opacity: 0.9;
}

.hero-highlights {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-highlights span {
  background: rgba(255,255,255,0.15);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
}

/* STORY */
.story-section {
  padding: 90px 20px;
}

.story-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.story-text h2 {
  font-size: 32px;
  color: #1e3a8a;
  margin-bottom: 14px;
}

.story-text p {
  font-size: 15px;
  color: #475569;
  margin-bottom: 14px;
  line-height: 1.7;
}

.story-image img {
  width: 100%;
  max-width: 420px;
}

/* WHY US */
.why-us-section {
  background: #f8fbff;
  padding: 90px 20px;
  text-align: center;
}

.why-us-section h2 {
  font-size: 32px;
  color: #1e3a8a;
  margin-bottom: 40px;
}

.why-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.why-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.why-card h3 {
  margin-bottom: 10px;
  color: #1e3a8a;
}

/* STATS */
.stats-section {
  background: #2563eb;
  color: #ffffff;
  padding: 70px 20px;
}

.stats-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat h3 {
  font-size: 36px;
  margin-bottom: 6px;
}

/* WHAT WE DO */
.what-we-do {
  padding: 90px 20px;
  text-align: center;
}

.do-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.do-card {
  background: #eef6ff;
  padding: 28px;
  border-radius: 16px;
}

/* CTA */
.about-cta {
  background: #0f172a;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.about-cta h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.about-cta p {
  margin-bottom: 26px;
}

.cta-btn {
  background: #f97316;
  color: #ffffff;
  padding: 12px 36px;
  border-radius: 10px;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .story-container,
  .why-grid,
  .do-grid,
  .stats-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
