/* Base */
body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    color: #0A192F;
  }
  
  .section {
    padding: 80px 0;
  }
  
  /* Hero Section */
  #hero {
    background-color: #0A192F;
    height: 100vh;
    background-size: cover;
    background-position: center;
  }
  
  /* Teal Highlight */
  .text-teal {
    color: #64FFDA !important;
  }
  .btn-teal {
    background-color: #64FFDA;
    color: #0A192F;
  }
  .btn-teal:hover {
    background-color: #52d6be;
    color: #0A192F;
  }
  
  /* Cards */
  .card-title {
    font-weight: 600;
  }
  .card {
    border: none;
    transition: transform 0.3s ease;
  }
  .card:hover {
    transform: translateY(-5px);
  }
  
  /* Nav Active */
  .nav-link.active {
    color: #64FFDA !important;
  }

  .accordion-button:not(.collapsed) {
    background-color: #64FFDA;
    color: #0A192F;
  }
  
  .accordion-button {
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease;
  }

  .accordion-button i {
    color: #0A192F;
  }

  /* Testimonials card */
.testimonial-card {
    background-color: #f4f8fa;
    border: none;
    max-width: 650px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    border-radius: 1rem;
  }
  
  /* Carousel item transition */
  #testimonials .carousel-item {
    transition: transform 0.8s ease, opacity 0.8s ease;
  }
  
  /* Indicators styling */
  .testimonial-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #64FFDA;
    opacity: 0.4;
    border: none;
    margin: 0 6px;
    transition: opacity 0.3s;
  }
  
  .testimonial-indicators button.active {
    opacity: 1;
  }
  
  
  