body {
    margin: 0;
    font-family: Arial, sans-serif;

  }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px; /* Adjust to navbar height */
  }
  .navbar {
    background-color: #333;
    color: white;
    padding: 1rem;
    position: fixed;           /* Changed from sticky to fixed */
    top: 10px;
    left: 0;
    width: 100%;
    z-index: 1000;             /* Keeps it above everything */
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  

  
  .logo {
    font-weight: bold;
    font-size: 1.2rem;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
  }
  
  .nav-links li a:hover {
    color: #00bcd4;
  }
  
  .toggle-button {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
  }
  
  section {
    padding: 4rem 2rem;
    border-bottom: 1px solid #ccc;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .toggle-button {
      display: block;
    }
  
    .nav-links {
      display: none;
      flex-direction: column;
      background-color: #333;
      width: 100%;
      position: absolute;
      top: 60px;
      left: 0;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links li {
      text-align: center;
      padding: 1rem 0;
    }
  }
  

  .testimonial-section {
    max-width: 900px;
    margin: 40px auto;
    font-family: Arial, sans-serif;
    text-align: center;
    position: relative;
  }
  
  .testimonial-container {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .testimonial-container.active {
    display: flex;
  }
  
  .testimonial {
    flex: 1 1 250px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
  }
  
  .testimonial img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .testimonial a {
    color: #0a66c2;
    text-decoration: none;
    font-weight: bold;
  }
  
  .testimonial p {
    font-style: italic;
    max-width: 250px;
    margin: 0 auto;
  }
  .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* or a fixed height like 300px */
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 8px;
  }
  
  .content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  
  .link-bottom {
    margin-top: auto;
    color: #0a66c2;
    text-decoration: none;
    font-weight: bold;
  }
  

  .carousel-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-bottom: 10px;
  }
  
  .carousel-buttons button {
    padding: 8px 16px;
    margin: 0 10px;
    cursor: pointer;
    background-color: #0a66c2;
    border: none;
    color: white;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
  }
  
  .carousel-buttons button:hover {
    background-color: #084a8a;
  }
  