
    body {
        font-family: 'Segoe UI', sans-serif;
        margin: 0;
        padding: 0;
        background-color: #fff;
        text-align: center;
    }
    
    header {
        background: #00124c;
        color: white;
        position: fixed;
        padding: 10px;
        top: 0;
        width: 100%;
        z-index: 1000;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        /* display: flex; */
        /* justify-content: space-between; */
        align-items: center;
        /* flex-wrap: wrap; */
    }
    .menu-toggle {
        display: none;
        font-size: 3em;
        cursor: pointer;
        color: white;
        margin-right:20px;
    }
    
    nav ul {
        list-style: none;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    
    nav ul li a {
        color: white;
        text-decoration: none;
        position: relative;
        padding: 0.5rem;
        transition: color 0.3s;
    }
    
    nav ul li a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -4px;
        left: 0;
        background-color: #ff6600;
        transition: width 0.3s ease;
    }
    
    nav ul li a:hover::after {
        width: 100%;
    }
    
    nav ul li a:hover {
        color: #ff6600;
    }
    .services-section {
      max-width: 1200px;
      margin: 2rem auto;
      padding: 1rem;
    }

    .services-title {
      text-align: center;
      margin-bottom: 2rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }

    .service-card {
      background: white;
      border-radius: 10px;
      padding: 1.5rem;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }

    .service-card:hover {
      transform: translateY(-5px);
    }

    .service-card h3 {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
      color: #00124c;
      justify-content: center;
      text-align: center;
      align-items: center;
    }

    .service-card p {
      color: #555;
      font-size: 0.95rem;
    }

    .service-icon {
  font-size: 2rem;
  color: #00124c;
  margin-bottom: 0.5rem;

  display: flex;
  justify-content: center;
  align-items: center;
}