﻿  /* ----- Services Intro ----- */
  .services-intro {
    padding: 4rem 2rem;
    text-align: center;
    background: url('../../static/image/hero_background.jpg') no-repeat center/cover;
    color: white;
    position: relative;
    margin-top: 148px;
    background-size: cover;
    min-height: 300px;
  }
  
  /* Add overlay to darken the background */
  .services-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 35, 71, 0.9), rgba(0, 51, 102, 0.85));
  }
  
  /* Ensure text stays above the overlay */
  .services-intro h1,
  .services-intro p {
    position: relative;
    z-index: 2;
  }
  
  .services-intro h1 {
    margin-bottom: 2rem;
    font-size: 3.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .services-intro p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  /* ----- Service Category Sections ----- */
  .service-category {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border-radius: 8px;
  }
  .service-category h2 {
    margin-bottom: 1.5rem;
    color: #0f1c94;
    font-size: 2rem;
    border-bottom: 2px solid #003366;
    padding-bottom: 0.5rem;
  }
  .service-category ul {
    margin-top: 1rem;
    list-style-type: disc;
    padding-left: 2rem;
  }
  .service-category ul li {
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  .service-category ul li strong {
    color: #003366;
  }
  .service-category h3 {
    margin: 2rem 0 1rem 0;
    color: #003366;
    font-size: 1.5rem;
  }
  .service-category p {
    line-height: 1.8;
    color: #444;
  }
  
  /* ----- Footer ----- */
  footer {
    text-align: center;
    padding: 1rem;
    background: #eaeaea;
    margin-top: 2rem;
  }
  
  /* ----- Responsive Styles ----- */
  @media (max-width: 768px) and (min-width: 480px) {
      /* ----- Services Intro ----- */
  .services-intro {
    padding: 4rem 2rem;
    text-align: center;
    background: url('../../static/image/hero_background.jpg') no-repeat center/cover;
    color: white;
    position: relative;
    margin-top: 92px;
    background-size: cover;
    min-height: 300px;
  }
  
  /* Add overlay to darken the background */
  .services-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 35, 71, 0.9), rgba(0, 51, 102, 0.85));
  }
  }
    /* Footer Styles */
    footer {
      background-color: #333;
      color: white;
      padding: 40px 0;
      width: 100%;
      text-align: center;
    }
  
    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 100px;
    }
  
    .footer-section {
      flex: 0 1 auto;
      min-width: 300px;
      padding: 0 20px;
      text-align: left;
    }
  
    .footer-section h3 {
      margin-bottom: 15px;
      font-size: 18px;
    }
  
    .footer-section p {
      margin: 5px 0;
      font-size: 14px;
      line-height: 1.5;
    }
  
    .footer-bottom {
      text-align: center;
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid #555;
    }
  
  /* Service grid */
  .service-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .service-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  @media (max-width: 768px) and (min-width: 480px) {
    .services-intro {
      padding-top: var(--header-height-mobile);
    }
  
    .service-grid {
      padding: 20px;
      gap: 20px;
    }
  }

  @media (max-width: 480px) {

    .services-intro::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5); /* Adjust the last value (0.5) for darkness level */
    }
    .services-intro {
      min-height: 50vh;
      padding: 2rem 1rem;
      margin-top: 220px;
      text-align: center;
    }
  }
  
  
  
  