
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
  }
  

  .hero {
    background: url('https://tse2.mm.bing.net/th/id/OIP.zSZeloGFXOX8UoLPFCnDIgHaDt?w=800&h=400&rs=1&pid=ImgDetMain') no-repeat center center/cover;
    padding: 200px 20px;
    text-align: center;
    color: white;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 1.5rem;
  }
  .footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 2rem 0;
    font-family: Arial, sans-serif;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .footer-column {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-column h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ecf0f1;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
  display:flex;
  gap: 2rem;
  }
  
  .footer-links li {
    margin-bottom: 0.5rem;
    color: #ecf0f1;
  }
  
  .footer-links li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
  }
  
  .footer-links li a:hover {
    color: #808d96;
  }
  
  .footer-column a {
    text-decoration: none;
    color: #ecf0f1;
  }
  
  .footer-column a:hover {
    color: #808d96;
  }
  
  .footer-bottom {
    text-align: center;
    background-color: #34495e;
    padding: 1rem;
    margin-top: 2rem;
  }
  
  .footer-bottom p {
    font-size: 1rem;
    color: #ededed;
  }
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
  }
  nav ul li a:hover {
    background-color: #4d5e6b;
  }
  nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s;
  }
  .header {
    background-color: #34495e;
    color: white;
    padding: 1rem 2rem;
    text-align: center;
  }
  header h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: white;
  }
  
  .testimonials-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  
  .testimonial-card:hover {
    transform: translateY(-8px);
  }
  
  .testimonial-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
  }
  
  .testimonial-card h3 {
    margin: 10px 0 5px 0;
    font-size: 1.3rem;
  }
  
  .stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin: 5px 0;
  }
  
  .review {
    font-size: 1rem;
    margin-top: 10px;
    color: #555;
  }
 
  .cta-section {
    background:  rgb(194, 72, 113);
    color: white;
    text-align: center;
    padding: 50px 20px;
    margin-top: 60px;
  }
  
  .cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .cta-btn {
    display: inline-block;
    background: white;
    color: #e91e63;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
  }
  
  .cta-btn:hover {
    background: #c2185b;
    color: white;
  }
  
