/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
  }
  
  /* Hero Section */
  .hero-section {
    position: relative;
    height: 90vh;
    background-image: url('images\337109.jpg'); /* <- Change to your image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
  }
  
  /* .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* background-color: rgba(22, 142, 255, 0.75); Transparent blue overlay */
    /* z-index: 1;/ */
  /* } */
  
  .hero-section .container {
    z-index: 2;
    position: relative;
  }
  
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .hero-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* Buttons */
  .btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
  }
  
  /* Cards */
  .card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    background-color: #ffffff;
    height: 350px;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  /* Testimonials */
  .testimonial {
    font-size: 1.1rem;
    color: #333;
    max-width: 800px;
    margin: auto;
  }
  
  /* Responsive Typography */
  @media (max-width: 768px) {
    .hero-section h1 {
      font-size: 2.2rem;
    }
  
    .hero-section p {
      font-size: 1rem;
    }
  
    .section-title {
      font-size: 1.6rem;
    }
  }
  
  @media (max-width: 576px) {
    .hero-section {
      height: auto;
      padding: 40px 20px;
      text-align: center;
    }
  
    .card {
      margin-bottom: 1rem;
    }
  }
/* FAQ Section Style */
#faqs {
    background-color: #ffffff;
}

#faqs .container {
    max-width: 1200px;
    margin: auto;
}

#faqs .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
}

#faqs img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.accordion-button:not(.collapsed) .fa-caret-down {
    transform: rotate(180deg);
}

/* Ensuring proper spacing in the columns */
#faqs .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#faqs .col-md-6 {
    padding: 25px;
}

#faqs .text-start p {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #333;
}

#faqs .btn-primary {
    background-color: #007bff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

#faqs .btn-primary:hover {
    background-color: #0056b3;
} 
/* Testimonial Section Custom Styles */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 100% 100%;
  background-color: #000;
  opacity: 0.7;
}

.testimonial p.testimonial-text {
  font-style: italic;
  color: #444;
}

.testimonial h5 {
  margin-top: 10px;
  font-weight: bold;
}

.testimonial .user-location {
  color: #777;
  font-size: 0.9rem;
}

#testimonials {
    background-color: #f8f9fa;
  }
  
  #testimonials .carousel-item {
    padding: 30px 0;
  }
  
  .testimonial {
    text-align: center;
  }
  
  .testimonial img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%; /* Makes image circular */
    margin-bottom: 15px;
  }
  
  .testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 10px;
  }
  
  .user-name {
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  .user-location {
    font-size: 1rem;
    color: #888;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: rgba(22, 142, 255, 0.75); /* Primary color */
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    filter: brightness(0) invert(1); /* Changes the arrow color to white */
  }
  
  /* Responsive Testimonial Section */
  @media (max-width: 768px) {
    .testimonial-text {
      font-size: 1rem;
    }
  
    .user-name {
      font-size: 1rem;
    }
  
    .user-location {
      font-size: 0.9rem;
    }
  }
  .accordion-button::after {
    font-family: 'Font Awesome 5 Free'; /* If you're using font-awesome */
    content: "\f107"; /* down arrow */
    font-weight: 900;
    margin-left: auto;
}
#newsletter {
    background: linear-gradient(135deg, #e3f2fd, #ffffff);
  }
  
  #newsletter .btn-primary {
    background-color: #168eff;
    border-color: #168eff;
    transition: all 0.3s ease;
  }
  
  #newsletter .btn-primary:hover {
    background-color: #168eff;
    transform: scale(1.05);
  }

  .scroll-container {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .scroll-container .card {
    scroll-snap-align: start;
    transition: transform 0.3s ease;
  }

  .scroll-container .card:hover {
    transform: scale(1.03);
  }


  