/* index.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;
  }
  
  .logo svg {
    display: block;
    height: 45px;
    width: auto;
  }
  
  .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;
    letter-spacing: 0.3px;
  }
  
  .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;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(10, 74, 122, 0.2);
  }
  
  .call-btn:hover {
    background: #063A60;
    transform: translateY(-2px);
  }
  
  /* Mobile Menu Toggle */
  .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-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .mobile-only {
    display: none;
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    padding: 0;
    background: linear-gradient(135deg, #0A4A7A 0%, #7ED957 100%);
  }
  
  .hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') center/cover;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 74, 122, 0.85) 0%, rgba(126, 217, 87, 0.75) 100%);
    z-index: 2;
  }
  
  .hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 80px 24px;
    text-align: center;
  }
  
  .hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 20px;
  }
  
  .hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  }
  
  .hero-content .subhead {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
  }
  
  .hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
  }
  
  .btn {
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  
  .btn-primary {
    background: #7ED957;
    color: #0A4A7A;
    border: 2px solid #7ED957;
  }
  
  .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  }
  
  .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
  }
  
  .btn-outline:hover {
    background: white;
    color: #0A4A7A;
    transform: translateY(-3px);
  }
  
  /* About Preview */
  .about-preview {
    background: linear-gradient(135deg, #f0f7ff 0%, #fff 100%);
    padding: 70px 0;
    text-align: center;
  }
  
  .about-text {
    max-width: 900px;
    margin: 0 auto 32px;
    font-size: 1.2rem;
    color: #333;
    line-height: 1.8;
  }
  
  .btn-secondary {
    background: transparent;
    border: 2px solid #0A4A7A;
    color: #0A4A7A;
    padding: 12px 32px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }
  
  .btn-secondary:hover {
    background: #0A4A7A;
    color: white;
    gap: 12px;
  }
  
  /* Services Section */
  .services-grid-section {
    padding: 80px 0;
    background: #fff;
  }
  
  .section-heading {
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
  }
  
  .section-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: #7ED957;
    border-radius: 2px;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .service-card {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    overflow: hidden;
    min-height: 400px;
    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.2rem;
    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.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
  }
  
  .card-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
  }
  
  .view-details {
    color: #7ED957;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    background: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
  }
  
  .service-card:hover .view-details {
    background: #0A4A7A;
    color: white;
    gap: 10px;
  }
  
  /* Scroll Animation */
  .scroll-animate {
    opacity: 0;
    transition: all 0.8s ease;
  }
  
  .scroll-animate.left {
    transform: translateX(-50px);
  }
  
  .scroll-animate.right {
    transform: translateX(50px);
  }
  
  .scroll-animate.visible {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Service Area */
  .service-area {
    background: #fff;
    padding: 70px 0;
    border-top: 1px solid #eaeef5;
    border-bottom: 1px solid #eaeef5;
    text-align: center;
  }
  
  .service-area h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #0A4A7A;
  }
  
  .service-area p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #555;
  }
  
  /* CTA Green */
  .cta-green {
    background: linear-gradient(135deg, #7ED957 0%, #5FB83A 100%);
    color: #0A4A7A;
    padding: 80px 0;
    text-align: center;
  }
  
  .cta-green h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 600;
    color: #0A4A7A;
  }
  
  .btn-white {
    background: white;
    color: #0A4A7A;
    padding: 18px 50px;
    font-size: 1.3rem;
    border-radius: 60px;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  .btn-white:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
  }
  
  /* 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;
    line-height: 1.6;
    margin-top: 15px;
  }
  
  footer h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #fff;
    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;
    font-size: 0.95rem;
  }
  
  footer a:hover {
    color: #7ED957;
    padding-left: 5px;
  }
  
  .accent-green {
    color: #7ED957;
    width: 24px;
    margin-right: 10px;
  }
  
  .footer-bottom {
    border-top: 1px solid #1A4A6A;
    padding-top: 25px;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
  }
  
  /* Mobile Responsive */
  @media (max-width: 992px) {
    .hero-content h1 {
      font-size: 2.5rem;
    }
    
    .section-heading {
      font-size: 2rem;
    }
    
    .service-area h2 {
      font-size: 2rem;
    }
    
    .cta-green h2 {
      font-size: 2.2rem;
    }
  }
  
  @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;
    }
    
    .nav-menu a {
      font-size: 1.1rem;
      display: block;
      padding: 10px 0;
    }
    
    .mobile-only {
      display: block;
      margin-top: 20px;
    }
    
    .mobile-call-btn {
      background: #0A4A7A;
      color: white !important;
      padding: 12px 20px;
      border-radius: 40px;
      text-align: center;
      font-weight: 600;
    }
    
    .hero {
      min-height: 500px;
    }
    
    .hero-content h1 {
      font-size: 2rem;
    }
    
    .hero-content .subhead {
      font-size: 1rem;
    }
    
    .hero-btns {
      flex-direction: column;
      gap: 15px;
    }
    
    .hero-btns .btn {
      width: 100%;
      justify-content: center;
    }
    
    .about-text {
      font-size: 1rem;
    }
    
    .services-grid {
      grid-template-columns: 1fr;
    }
    
    .service-card {
      min-height: 350px;
    }
    
    .service-area h2 {
      font-size: 1.8rem;
    }
    
    .service-area p {
      font-size: 1rem;
    }
    
    .cta-green {
      padding: 60px 0;
    }
    
    .cta-green h2 {
      font-size: 1.8rem;
    }
    
    .btn-white {
      padding: 15px 40px;
      font-size: 1.1rem;
    }
    
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }
  }
  
  @media (max-width: 480px) {
    .hero {
      min-height: 450px;
    }
    
    .hero-content h1 {
      font-size: 1.6rem;
    }
    
    .section-heading {
      font-size: 1.6rem;
    }
    
    .service-area h2 {
      font-size: 1.5rem;
    }
    
    .cta-green h2 {
      font-size: 1.5rem;
    }
    
    .service-card {
      min-height: 300px;
    }
  }