body {
  font-family: "Roboto", sans-serif;
}
header {
  background: #f9f9f9;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

header .navbar-brand {
  font-size: 1.5rem;
  text-decoration: none;
  color: #007bff;
}

header .navbar-brand i {
  transition: transform 0.3s ease;
}

header .navbar-brand:hover i {
  transform: scale(1.2);
}

header .navbar-nav .nav-link {
  font-size: 1rem;
  margin: 0 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}

header .navbar-nav .nav-link:hover {
  color: #0056b3;
  transform: scale(1.1);
}

header .btn-primary {
  background: #007bff;
  border: none;
  font-weight: bold;
  transition: background 0.3s, transform 0.3s;
}

header .btn-primary:hover {
  background: #0056b3;
  transform: scale(1.1);
}

.navbar-toggler-icon {
  background-color: #007bff;
  border-radius: 3px;
  padding: 5px;
}

.sticky-top {
  z-index: 1020;
}
.hero {
  background: linear-gradient(
      to bottom,
      rgba(255, 165, 0, 0.9),
      rgba(70, 130, 180, 0.7)
    ),
    url("assets/img/hero.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: bold;
}

.hero p {
  font-size: 1.25rem;
  margin-top: 20px;
}

.text-block {
  padding: 80px 20px;
  background: #f0f8ff;
}

.text-block h2 {
  color: #ff8c00;
  text-align: center;
  margin-bottom: 20px;
}

.text-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
}

.image-cards {
  padding: 80px 20px;
  background: #ffffff;
}
.image-card {
  border: none;
  transition: transform 0.3s ease;
}
.image-card:hover {
  transform: scale(1.05);
}
.pricing {
  padding: 80px 20px;
  background: #fdf5e6;
}
.pricing-card {
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #ff8c00;
}
.pricing-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.pricing-card .card-header {
  background: #ff8c00;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 20px 0;
}
.pricing-card ul {
  padding: 0;
  list-style: none;
  line-height: 1.8;
}
.pricing-card ul li {
  margin-bottom: 10px;
}
.testimonials {
  background: #4682b4;
  color: white;
  padding: 60px 20px;
}
.testimonial-card {
  background: white;
  color: #4682b4;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.cta {
  background: linear-gradient(to right, #ff8c00, #ff4500);
  color: white;
  text-align: center;
  padding: 80px 20px;
}
.cta h2 {
  font-size: 2.5rem;
}
.cta .btn {
  background: #ffffff;
  color: #ff4500;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 50px;
  transition: transform 0.3s;
}
.cta .btn:hover {
  transform: scale(1.1);
}
.hero-about {
  background: linear-gradient(
      to bottom,
      rgba(255, 165, 0, 0.9),
      rgba(70, 130, 180, 0.7)
    ),
    url("assets/img/hero.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
}
.hero-about h1 {
  font-size: 3.5rem;
  font-weight: bold;
}
.hero-about p {
  font-size: 1.25rem;
  margin-top: 20px;
}
.mission {
  padding: 60px 20px;
  background: #fdf5e6;
}
.mission h2 {
  color: #ff8c00;
  text-align: center;
  margin-bottom: 20px;
}
.mission p {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
}
.story {
  padding: 80px 20px;
}
.story img {
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.team {
  padding: 60px 20px;
  background: #ffffff;
}
.team h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #4682b4;
}
.team-member {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background: #f0f8ff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-member:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.team-member img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
}
.team-member h5 {
  margin-top: 10px;
  color: #4682b4;
}
.hero-contact {
  background: linear-gradient(
      to bottom,
      rgba(255, 165, 0, 0.9),
      rgba(70, 130, 180, 0.7)
    ),
    url("assets/img/hero.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
}
.hero-contact h1 {
  font-size: 3.5rem;
  font-weight: bold;
}

.hero-contact p {
  font-size: 1.25rem;
  margin-top: 20px;
}
.contact-info {
  padding: 60px 20px;
  background: #f0f8ff;
}

.contact-info h2 {
  color: #4682b4;
  text-align: center;
  margin-bottom: 40px;
}

.contact-info .info-box {
  text-align: center;
}

.info-box i {
  font-size: 2.5rem;
  color: #ff8c00;
}

.info-box h5 {
  margin-top: 10px;
  color: #ff8c00;
}
.contact-form {
  padding: 60px 20px;
}

.form-control:focus {
  border-color: #ff8c00;
  box-shadow: 0 0 5px rgba(255, 140, 0, 0.5);
}

.btn-submit {
  background: #ff8c00;
  color: white;
  border-radius: 50px;
  padding: 10px 20px;
  transition: background 0.3s, transform 0.3s;
}

.btn-submit:hover {
  background: #ff4500;
  transform: scale(1.1);
}
.hero-privacy {
  background: linear-gradient(
      to bottom,
      rgba(255, 165, 0, 0.9),
      rgba(70, 130, 180, 0.7)
    ),
    url("assets/img/hero.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero-privacy h1 {
  font-size: 3.5rem;
  font-weight: bold;
}

.privacy-content {
  padding: 60px 20px;
}

.privacy-content h2 {
  color: #4682b4;
}

.privacy-content ul {
  padding-left: 20px;
}

.privacy-content ul li {
  margin-bottom: 10px;
}
.hero-terms {
  background: linear-gradient(
      to bottom,
      rgba(255, 165, 0, 0.9),
      rgba(70, 130, 180, 0.7)
    ),
    url("assets/img/hero.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero-terms h1 {
  font-size: 3.5rem;
  font-weight: bold;
}

.terms-content {
  padding: 60px 20px;
}

.terms-content h2 {
  color: #4682b4;
}

.terms-content ul {
  padding-left: 20px;
}

.terms-content ul li {
  margin-bottom: 10px;
}
footer {
  background: #f9f9f9;
  font-size: 0.9rem;
  line-height: 1.5;
}

footer h5 {
  color: #007bff;
  margin-bottom: 1rem;
}

footer p {
  color: #6c757d;
}

footer ul {
  padding: 0;
  list-style: none;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li a:hover {
  text-decoration: underline;
  color: #0056b3;
}

footer hr {
  border-top: 1px solid #007bff;
}
@media (max-width: 768px) {
  [data-aos] {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
