body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    padding: 15px 40px;
    background: #0d6efd;
    color: white;
  }
  
  .navbar a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
  }
  
  .hero {
    padding: 80px;
    text-align: center;
    background: #f5f7fa;
  }
  
  .btn {
    background: #0d6efd;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
  }
  
  .services {
    padding: 40px;
    text-align: center;
  }
  
  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .card {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
  }
  
  .content {
    padding: 40px;
  }
  
  .contact-form {
    max-width: 400px;
    margin: auto;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
  }
  
  footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 15px;
  }
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    font-size: 24px;
    padding: 15px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  }
  .hero {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    color: white;
  }
  
  .hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
  }
  
  .hero p {
    font-size: 18px;
    max-width: 600px;
    margin: auto;
  }
  .why-us {
    padding: 60px 40px;
    text-align: center;
    background: #f8f9fa;
  }
  @media (max-width: 768px) {
    .hero h1 {
      font-size: 32px;
    }
  
    .navbar {
      flex-direction: column;
      text-align: center;
    }
  }
  .testimonials {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
  }
  
  .testimonial-slider {
    max-width: 700px;
    margin: auto;
  }
  
  .testimonial {
    display: none;
    font-style: italic;
  }
  
  .testimonial.active {
    display: block;
  }
  * {
    box-sizing: border-box;
  }
  
  body {
    background: #f5f7fa;
    color: #333;
  }
  
  .card, .price-card {
    transition: transform 0.3s ease;
  }
  
  .card:hover, .price-card:hover {
    transform: translateY(-8px);
  }
  
  .navbar {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  footer {
    font-size: 14px;
  }
  section {
    margin-bottom: 60px;
  }
  
  section h2 {
    margin-bottom: 15px;
  }
  
  .benefits li {
    margin-bottom: 10px;
  }
  .logo {
    font-size: 22px;
    font-weight: bold;
  }
  
  .logo .tagline {
    display: block;
    font-size: 12px;
    color: #e0e0e0;
  }
  
  .navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .nav-btn {
    background: #ffc107;
    color: #000 !important;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: bold;
  }
.service-box {
            background: #f4f6f8;
            padding: 20px;
            border-radius: 8px;
        }
        .cta {
            text-align: center;
            background: #6610f2;
            color: #fff;
            padding: 40px 20px;
            border-radius: 8px;
        }
        .cta h2 {
            color: #fff;
        }

   .subtitle {
            font-size: 18px;
            opacity: 0.9;
        }
        ul {
            padding-left: 20px;
        }
        li {
            margin-bottom: 8px;
        }
        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }
