body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}


.hero {
    text-align: center;
    padding: 4rem 2rem;
    background: url('../images/hero.jpg') center/cover no-repeat;
    color: #fff;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.cta-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    background-color: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta-button:hover {
    background-color: #004d99;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #222;
    color: #ccc;
}


/* Header Styling */
.banner {
    background-color: #d6f2f6;
    color: #456176;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    height: 3.5rem;
}

.title-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 4.25rem;
    width: auto;
    object-fit: contain;
}

.SRTitle {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
}

.navbar {
    display: flex;
    height: 100%;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-links a {
    color: #363636;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 4px;
    bottom: 0;
    left: 0;
    background-color: #0066cc;
    transition: width 0.2s ease-in-out;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Accessible focus indicator */
.nav-links a:focus {
    border: 2px solid #0066cc;
    border-radius: 4px;
}

.quote {
    text-align: center;
    padding: 20px;
    background-color: #f4f4f4;
    font-style: italic;
}
.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.service-item {
    display: inline-block;
    width: 280px;
    margin: 15px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: left;
    vertical-align: top;
}

.service-item h3 {
    color: #333;
    margin-bottom: 10px;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

h2 {
    color: #333;
    margin-bottom: 10px;
}
.services {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .text-center {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
  }

  .service-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 400px;
  }

  .service-card:hover,
  .service-card:focus-within {
    transform: translateY(-5px);
  }

  .service-card h3 {
    color: #2a2a2a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }

  .service-card p {
    color: #666;
    line-height: 1.6;
  }

  /* Accessibility improvements */
  @media (prefers-reduced-motion: reduce) {
    .service-card {
      transition: none;
    }
  }

  /* High contrast mode support */
  @media (forced-colors: active) {
    .service-card {
      border: 1px solid CanvasText;
    }
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .services {
      padding: 2rem 1rem;
    }
    
 
 
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}
footer a {
    color: #fff;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
 