/* services-overview.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;
  }
  
  .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 {
    height: 350px;
    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: 3rem;
    margin-bottom: 15px;
  }
  
  .page-hero-content p {
    font-size: 1.2rem;
  }
  
  .services-grid-full {
    padding: 80px 0;
    background: #fff;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
  }
  
  .service-card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    align-items: flex-end;
    transition: all 0.4s ease;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px rgba(10, 74, 122, 0.2);
  }
  
  .card-content {
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(1px);
    padding: 30px 25px;
    width: 100%;
    color: white;
    transition: all 0.3s ease;
  }
  
  .service-card:hover .card-content {
    background: rgba(10, 74, 122, 0.9);
  }
  
  .service-icon {
    font-size: 2.5rem;
    color: #7ED957;
    margin-bottom: 15px;
    transition: all 0.3s ease;
  }
  
  .service-card:hover .service-icon {
    color: white;
    transform: scale(1.1);
  }
  
  .card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
  }
  
  .card-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
  }
  
  .service-link {
    color: #7ED957;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    background: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
  }
  
  .service-card:hover .service-link {
    background: #0A4A7A;
    color: white;
    gap: 12px;
  }
  
  .cta-blue {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6edfa 100%);
    padding: 80px 0;
    text-align: center;
  }
  
  .cta-blue h2 {
    font-size: 2.5rem;
    color: #0A4A7A;
    margin-bottom: 15px;
  }
  
  .cta-blue p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 35px;
  }
  
  .btn-primary {
    background: #7ED957;
    color: #0A4A7A;
    padding: 16px 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: #5FB83A;
    transform: translateY(-3px);
  }
  
  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 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;
  }
  
  @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;
      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;
    }
    
    .services-grid {
      grid-template-columns: 1fr;
    }
    
    .cta-blue h2 {
      font-size: 1.8rem;
    }
    
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  }
  
  @media (max-width: 480px) {
    .page-hero h1 {
      font-size: 2rem;
    }
    
    .page-hero p {
      font-size: 1rem;
    }
  }