body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f0f9ff;
    color: #033e56;
  }

  .site-header {
    background: linear-gradient(to right, #0077b6, #00b4d8);
    color: rgb(254, 254, 254);
    padding: 0.1rem 0.1rem;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
  }
  
  .header-inner {
    max-width: 300px;
    margin: auto;
  }
  
  .site-header h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 8px 8px 9px rgba(0, 0, 0, 0.2);
    font-family: 'Poppins', sans-serif;
  }
  
  .site-header .tagline {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  }
  .intro-text {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 1rem auto;
    padding: 2rem;
    gap: 2rem;
  }
  .intro-text p {
    font-size: 1.2rem;
    line-height: 1.6;
  }
  .intro-content {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
  .intro-content p {
    flex: 1;
    margin: 0;
  }
  .hero-image {
    width: 100%;
    max-height: 500px;
    padding-top: 20px;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
  }

  .hero-image.visible {
    opacity: 1;
  }
  .services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    max-width: 1000px;
    margin: auto;
  }
  .fade-in {
    opacity: 0;
    transition: opacity 2s ease-in-out;
  }
  .fade-in.visible {
    opacity: 1;
  }
  .card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .card h3 {
    margin-top: 0;
    color: #0077b6;
  }
  .cta-wrapper {
    margin-left: 10rem;
  }
  .cta-button {
    position: relative;
    display: inline-block;
    padding: 3rem 4rem;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 0 15px rgba(0, 183, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    filter: url(#wave);
  }
  
  .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 250%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: shimmer 4s infinite linear;
    z-index: 0;
  }
  
  @keyframes shimmer {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(100%);
    }
  }
  
  .cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 183, 255, 0.8);
  }
  .cta-button span {
    position: relative;
    z-index: 2;
  }  
  .cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 183, 255, 0.15) 20%, transparent 70%);
    animation: ripple 6s infinite linear;
    z-index: 0;
  }
  
  @keyframes ripple {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    100% {
      transform: scale(1.5);
      opacity: 0;
    }
  }
  
  .cta-button span {
    position: relative;
    z-index: 2;
  }
  
  
  footer {
    background-color: #023e8a;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
  }

  /* Media query for smaller screens */
  @media (max-width: 768px) {
    .intro-content {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .cta-wrapper {
      margin-left: 0;
      margin-top: 1.5rem;
      width: 100%;
    }
    
    .cta-button {
      padding: 2rem 3rem;
      font-size: 1.5rem;
      width: 100%;
      text-align: center;
    }
  }