body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: #333;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #004080;
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .navbar nav a {
    color: white;
    margin-left: 1rem;
    text-decoration: none;
  }
  
 /* Hero Slider */
/* Hero Slider */
.hero {
    position: relative;
    /* height: 80vh; */
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 101;
  }
  
  .slider {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 1s ease-in-out;
  }
  
  .slides img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 1.5rem;
    border-radius: 8px;
  }
  
      
  .btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    background: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 5px;
  }
  
  .section {
    padding: 3rem 2rem;
    text-align: center;
  }
  
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .card {
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    font-weight: 600;
  }
  
  .contact p {
    margin: 0.5rem 0;
  }
  
  footer {
    background: #004080;
    color: white;
    text-align: center;
    padding: 1rem;
  }
  
  /* Floating WhatsApp */
  .whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
  }
  .whatsapp-float img {
    width: 32px;
    height: 32px;
  }
  


  .services {
    padding: 3rem 2rem;
    text-align: center;
  }
  .services h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  .service-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  .service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  .service-card h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1.25rem;
    color: #004080;
  }
  .service-card p {
    padding: 0 1rem 1rem;
    font-size: 0.95rem;
    color: #555;
  }
  

  .trust-section {
    padding: 3rem 2rem;
    background: #f8f9fa;
    text-align: center;
  }
  .trust-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #004080;
  }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
  }
  .trust-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  }
  .trust-card img {
    width: 80px;
    height: 80px;
    /* border-radius: 50%; */
    object-fit: cover;
    margin-bottom: 1rem;
  }
  .trust-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #004080;
  }
  .trust-card p {
    font-size: 0.95rem;
    color: #555;
  }
  