/* aboutus.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    color: #222;
    background-color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  /* Header Styles */
  .sticky-header {
    position: sticky;
    top: 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 16px 0;
  }
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  
  .nav-menu ul {
    display: flex;
    list-style: none;
    gap: 32px;
  }
  
  .nav-menu a {
    text-decoration: none;
    font-weight: 500;
    color: #222;
    transition: 0.2s;
    font-size: 0.95rem;
  }
  
  .nav-menu a:hover,
  .nav-menu a.active {
    color: #0A4A7A;
    border-bottom: 2px solid #7ED957;
    padding-bottom: 4px;
  }
  
  .call-btn {
    background: #0A4A7A;
    color: white !important;
    padding: 12px 22px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }
  
  .call-btn:hover {
    background: #063A60;
    transform: translateY(-2px);
  }
  
  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
  }
  
  .mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #0A4A7A;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
  }
  
  .mobile-only {
    display: none;
  }
  
  /* Page Hero */
  .page-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
  }
  
  .page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
  }
  
  .page-hero-content p {
    font-size: 1.3rem;
  }
  
  .about-page {
    padding: 60px 0 80px;
  }
  
  .mission-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 40px;
    background: linear-gradient(135deg, #f0f7ff 0%, #fff 100%);
    border-radius: 30px;
    border: 1px solid #eaeef5;
  }
  
  .mission-icon {
    font-size: 4rem;
    color: #7ED957;
    margin-bottom: 20px;
    background: rgba(126, 217, 87, 0.1);
    padding: 20px;
    border-radius: 50%;
    display: inline-block;
  }
  
  .mission-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #0A4A7A;
  }
  
  .mission-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #444;
  }
  
  .story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 80px 0;
    align-items: center;
  }
  
  .story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #0A4A7A;
    position: relative;
    padding-bottom: 15px;
  }
  
  .story-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #7ED957;
  }
  
  .story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 3px solid #7ED957;
  }
  
  .story-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  }
  
  .stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 80px 0;
  }
  
  .stat-item {
    text-align: center;
    padding: 40px 20px;
    background: #f0f7ff;
    border-radius: 20px;
    transition: all 0.3s ease;
  }
  
  .stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(10, 74, 122, 0.1);
  }
  
  .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0A4A7A;
    margin-bottom: 10px;
  }
  
  .stat-label {
    font-size: 1.1rem;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
  }
  
  .values-section {
    margin: 80px 0;
  }
  
  .section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #0A4A7A;
  }
  
  .section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #7ED957;
    margin: 15px auto 0;
  }
  
  .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .value-card {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eaeef5;
    transition: all 0.3s ease;
  }
  
  .value-card:hover {
    transform: translateY(-10px);
    border-color: #7ED957;
  }
  
  .value-card i {
    font-size: 3rem;
    color: #7ED957;
    margin-bottom: 20px;
  }
  
  .value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #0A4A7A;
  }
  
  .value-card p {
    color: #666;
    line-height: 1.7;
  }
  
  .map-section {
    margin: 80px 0;
  }
  
  .map-section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #0A4A7A;
  }
  
  .map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  }
  
  .map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
  }
  
  .location-note {
    margin-top: 20px;
    padding: 15px 25px;
    background: #f0f7ff;
    border-radius: 12px;
    color: #555;
    border-left: 4px solid #7ED957;
  }
  
  .location-note i {
    color: #7ED957;
    margin-right: 10px;
  }
  
  .about-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px;
    background: linear-gradient(135deg, #0A4A7A 0%, #063A60 100%);
    border-radius: 30px;
    color: white;
  }
  
  .about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .about-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  .btn-primary {
    background: #7ED957;
    color: #0A4A7A;
    padding: 18px 48px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    border: 2px solid white;
  }
  
  /* Footer */
  footer {
    background: #0A2A4A;
    color: #fff;
    padding: 70px 0 20px;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
  }
  
  .footer-description {
    color: #aaa;
    margin-top: 15px;
  }
  
  footer h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    border-left: 3px solid #7ED957;
    padding-left: 15px;
  }
  
  footer ul {
    list-style: none;
  }
  
  footer ul li {
    margin-bottom: 12px;
  }
  
  footer a {
    color: #ddd;
    text-decoration: none;
    transition: 0.2s;
  }
  
  footer a:hover {
    color: #7ED957;
    padding-left: 5px;
  }
  
  .accent-green {
    color: #7ED957;
    margin-right: 10px;
  }
  
  .footer-bottom {
    border-top: 1px solid #1A4A6A;
    padding-top: 25px;
    text-align: center;
    color: #aaa;
  }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .mobile-menu-toggle {
      display: flex;
    }
    
    .desktop-only {
      display: none;
    }
    
    .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 350px;
      height: 100vh;
      background: white;
      box-shadow: -5px 0 30px rgba(0,0,0,0.1);
      transition: right 0.3s ease;
      padding: 80px 30px 30px;
      z-index: 1000;
    }
    
    .nav-menu.active {
      right: 0;
    }
    
    .nav-menu ul {
      flex-direction: column;
      gap: 20px;
    }
    
    .mobile-only {
      display: block;
      margin-top: 20px;
    }
    
    .mobile-call-btn {
      background: #0A4A7A;
      color: white !important;
      padding: 12px 20px;
      border-radius: 40px;
      text-align: center;
      display: block;
      font-weight: 600;
    }
    
    .page-hero {
      height: 300px;
    }
    
    .page-hero h1 {
      font-size: 2.2rem;
    }
    
    .story-section {
      grid-template-columns: 1fr;
    }
    
    .stats-section {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
      grid-template-columns: 1fr;
    }
    
    .footer-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 480px) {
    .stats-section {
      grid-template-columns: 1fr;
    }
    
    .page-hero h1 {
      font-size: 1.8rem;
    }
  }