/* General Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Navbar */
  .navbar {
    background: #222;
    color: #fff;
    padding: 1rem 0;
    
  }
  
  .navbar h1 {
    display: inline;
    font-size: 1.5rem;
    color: #fff;
  }
  
  .navbar nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: flex-end;
  }
  
  .navbar nav ul li a {
    color: #fff;
    font-weight: 500;
  }
/*image section*/
.image{
    display: flex; 
    flex-wrap: wrap; 
    gap: 25px; 
    justify-content: center; 
    width: auto;
}
.img{
    height: auto; 
    max-width: 100%; 
    vertical-align: middle; overflow-clip-margin: content-box; 
    overflow: clip; 
    width: 400px; 
    height: 400px;  
    border-radius: 10px;
}
  
  /* Hero Section */
  .hero {
    background: linear-gradient(to right, #007bff, #00bfff);
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
  }
  
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin: 1rem 0 2rem;
  }
  
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #ff6600;
    color: #fff;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: #e65c00;
  }
  
  /* Sections */
  section {
    padding: 4rem 0;
  }
  
  section h2 {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  /* Grid */
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  
  /* Cards */
  .card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  /* Features List */
  .features ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 1rem;
    max-width: 800px;
    margin: auto;
  }
  
  .features li {
    background: #f1f1f1;
    padding: 1rem;
    border-left: 5px solid #007bff;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  /* About Grid */
  .about .grid > div {
    background: #f8f8f8;
    padding: 2rem;
    border-left: 4px solid #007bff;
    border-radius: 8px;
    transition: background 0.3s;
  }
  
  .about .grid > div:hover {
    background: #eaf4ff;
  }
  
  /* CTA Section */
  .cta {
    background: #222;
    color: #fff;
    text-align: center;
  }
  
  .cta .btn {
    margin-top: 1rem;
  }
  
  /* Contact */
  .contact p, .footer p {
    text-align: center;
    margin: 0.5rem 0;
  }
.whatsapp-button {
  position: fixed; /* makes it sticky */
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #1ebe5d;
}
  
  /* Footer */
  .footer {
    background: #f4f4f4;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
  }
  
  /* Media Queries */
  @media (max-width: 768px) {
    .navbar nav ul {
      justify-content: center;
      margin-top: 1rem;
    }
  
    .hero h2 {
      font-size: 2rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  
    .btn {
      width: 100%;
      max-width: 250px;
    }
  
    section h2 {
      font-size: 1.8rem;
    }
  }
  
