/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
  }
  
  h1, h3 {
    color: #222;
  }
  
  a {
    text-decoration: none;
    color: #28a745;
  }
  
  /* Header */
  .header {
    background: linear-gradient(to right, #145374, #0d3b66);
    color: white;
    text-align: center;
    padding: 50px 20px;
  }
  
  .header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .header p {
    font-size: 1.2rem;
  }
  
  /* Testimonials Section */
  .testimonials {
    padding: 50px 20px;
    text-align: center;
    background-color: #fff;
  }
  
  .testimonial-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-behavior: smooth;
    padding: 20px 0;
  }
  
  .testimonial-card {
    background: #f4f4f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    min-width: 300px;
    max-width: 400px;
    flex: 0 0 auto;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .testimonial-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
  }
  
  .testimonial-card h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #222;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
  /* Footer */
  .footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 20px;
  }
  
  .footer a {
    color: #ffc107;
  }
  