 body {
      font-family: 'Segoe UI', sans-serif;
    }
    .hero {
      background: linear-gradient(to right, #0a66c2, #0078D4);
      color: white;
      padding: 100px 0;
    }
    .hero h1 {
      font-size: 3.2rem;
      font-weight: bold;
    }
    .section {
      padding: 80px 0;
    }
    .service-box {
      border: 1px solid #e3e3e3;
      border-radius: 10px;
      padding: 30px;
      height: 100%;
      transition: all 0.3s ease-in-out;
    }
    .service-box:hover {
      background-color: #f8f9fa;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }
    footer {
      background-color: #f8f9fa;
      padding: 30px 0;
      text-align: center;
    }
    .service-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: default;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 20px;
      background-color: #fff;
      background: #7dcbf6;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    
    .service-card:hover {
      transform: translateY(-8px) scale(1.03);
      box-shadow: 0 8px 20px rgba(0,0,0,0.12);
      cursor: pointer;
    }
    
    .service-card h3 {
      transition: color 0.3s ease;
    }
    
    .service-card:hover h3 {
      color: #0d6efd; /* Bootstrap primary color */
    }
    .faq-item {
      border-bottom: 1px solid #ddd;
    }
    
    .faq-question {
      background: none;
      border: none;
      width: 100%;
      text-align: left;
      padding: 1rem 0;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #222;
      transition: color 0.3s ease;
    }
    
    .faq-question:hover,
    .faq-question[aria-expanded="true"] {
      color: #0d6efd;
    }
    
    .faq-icon {
      font-size: 1.5rem;
      transition: transform 0.3s ease;
      user-select: none;
    }
    
    .faq-question[aria-expanded="true"] .faq-icon {
      transform: rotate(45deg);
    }
    
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      color: #444;
      font-size: 1rem;
      padding: 0 0;
    }
    
    .faq-answer.open {
      padding: 0.75rem 0;
      max-height: 200px; /* enough for most answers */
    }
   .testimonials-section {
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
  padding: 3rem 2rem;
  overflow: hidden;
}

.testimonial-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-behavior: smooth;
}

.testimonial-container::-webkit-scrollbar {
  height: 8px;
}

.testimonial-container::-webkit-scrollbar-track {
  background: #e1e1e1;
  border-radius: 4px;
}

.testimonial-container::-webkit-scrollbar-thumb {
  background-color: #0d6efd;
  border-radius: 4px;
}

.testimonial-card {
  flex: 0 0 300px;
  background: white;
  border-radius: 6px;
  padding: 1.5rem 2rem;
  box-shadow: 0 2px 8px rgb(0 0 0 / 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgb(0 0 0 / 0.12);
}

.testimonial-text {
  font-style: italic;
  font-size: 13px;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.5;
  flex-grow: 1;
}

.testimonial-author {
  font-weight: 600;
  font-size: 15px;
  color: #0d6efd;
  text-align: right;
  margin-top: auto;
}
.hero-modern {
  background: linear-gradient(135deg, #7dcbf6 0%, #313752 100%);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 2rem;
}

.hero-modern .btn-primary {
  background-color: #ffffff;
  color: #0d6efd;
  border: none;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero-modern .btn-primary:hover {
  background-color: #e9ecef;
  color: #0a58ca;
}
.about-section {
  background-color: #f8f9fa;
}

.about-title {
  font-size: 2rem;
  font-weight: 700;
  color: #212529;
}

.about-section .lead {
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 500;
  color: #495057;
}

.about-section img {
  transition: transform 0.3s ease;
}

.about-section img:hover {
  transform: scale(1.05);
}