/* ===== About Page Styles — Navy Blue + Glassmorphism ===== */

:root {
  --navy-deep: #0A1A3A;
  --navy-mid: #1E3A8A;
  --navy-light: #3A5FCD;
  --accent-orange: #FFBE0B;
  --glass-bg: rgba(255, 255, 255, 0.12);
  --border-glass: rgba(255, 255, 255, 0.2);
}

/* Override body for this page only */
body {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  color: #fff;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  /* Add padding to prevent content from hiding under fixed header */
  padding-top: 120px; /* Announcement bar (40px) + Header (80px) */
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* Hero Section */
.about-hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(rgba(10, 26, 58, 0.85), rgba(10, 26, 58, 0.9)), url('../images/hero-1.jpg') center/cover no-repeat;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.btn {
  display: inline-block;
  background: var(--accent-orange);
  color: var(--navy-deep);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #e0a800;
  transform: scale(1.05);
}

/* Mission Vision */
.mission-vision {
  padding: 4rem 0;
  background: rgba(15, 35, 75, 0.3);
}

.mv-card {
  padding: 2rem;
  text-align: center;
}

.mv-card h2 {
  color: var(--accent-orange);
  margin-bottom: 1rem;
}

/* Section Title */
.section-title {
  font-size: 2.3rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent-orange);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Grid System */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Glass Cards */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.icon-lg {
  width: 60px;
  margin-bottom: 1rem;
}

/* Stats */
.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--accent-orange);
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
}

/* Testimonials */
.testimonial {
  font-style: italic;
  position: relative;
  padding: 1.5rem;
}

.testimonial::before {
  content: "";
  font-size: 4rem;
  position: absolute;
  top: -15px;
  left: 10px;
  opacity: 0.2;
  font-family: Georgia, serif;
}

.client {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}

.client img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
  border: 2px solid var(--border-glass);
}

/* Sections Background */
.why-us-section {
  padding: 5rem 0;
  background: rgba(20, 40, 80, 0.2);
}

.stats-section {
  padding: 5rem 0;
  background: rgba(15, 35, 75, 0.4);
}

.testimonials-section {
  padding: 5rem 0;
}

/* Footer Styling (Optional Enhancement) */
footer {
  background: rgba(10, 26, 58, 0.95);
  color: #fff;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.footer-logo img {
  height: 60px;
}

.footer-links a,
.footer-contact p {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin: 0.3rem 0;
}

.footer-links a:hover {
  color: var(--accent-orange);
}

.request-form {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-glass);
  max-width: 500px;
  margin: 0 auto 2rem;
}

.request-form input,
.request-form button {
  width: 100%;
  padding: 0.8rem;
  margin: 0.5rem 0;
  border-radius: 8px;
  border: 1px solid #444;
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.request-form button {
  background: var(--accent-orange);
  color: var(--navy-deep);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}

.request-form button:hover {
  background: #e0a800;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-glass);
  color: #aaa;
}

/* =============
   MOBILE MENU STYLES (NEW)
   ============= */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
}

/* Responsive */
@media (max-width: 768px) {
  body {
    padding-top: 110px; /* Adjusted for mobile */
  }

  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
  }

  /* Hide full nav on mobile */
  .navbar ul {
    position: fixed;
    top: 80px; /* Announcement (40px) + Header (40px on mobile) */
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--navy-deep);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 2rem;
    gap: 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1001;
  }

  .navbar ul.active {
    left: 0;
  }

  .navbar a {
    color: white;
    font-size: 1.2rem;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    width: 100%;
    text-align: center;
    transition: background 0.3s;
  }

  .navbar a:hover,
  .navbar a.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-orange);
  }

  /* Hide search box on mobile */
  .search-box {
    display: none;
  }

  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .request-form {
    max-width: 100%;
  }
}