body {
  font-family: 'Inter', sans-serif;
}

.logo {
  color: #0b5fa5;
  font-weight: 600;
}

.nav-link {
  color: #555 !important;
  font-weight: 500;
}

.nav-link:hover {
  color: #0b5fa5 !important;
}

.hero {
  background: linear-gradient(135deg, #b8e0ff 0%, #b8e0ff 50%, transparent 50%);
  position: relative;
  min-height: 500px;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('./img/profile.jpg') center/cover no-repeat;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h2 {
  color: #0b5fa5;
}

.hero-image {
  visibility: hidden;
}

@media (max-width: 767px) {
  .hero {
    background: #b8e0ff;
    min-height: auto;
  }
  
  .hero::after {
    display: none;
  }
  
  .hero-image {
    visibility: visible;
    position: relative;
    margin-top: 2rem;
  }
  
  .hero-image img {
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
  }
}

.btn-primary {
  background-color: #0b5fa5;
  border-color: #0b5fa5;
  border-radius: 25px;
}

.btn-primary:hover {
  background-color: #094b83;
  border-color: #094b83;
}

.card {
  background: #f0f8ff;
}

.card h3 {
  color: #0b5fa5;
}

.footer {
  background-color: #0b5fa5;
}

.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 24px;
  position: relative;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: none;
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #0b5fa5;
  transition: background-color 0.3s;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #0b5fa5;
  transition: transform 0.3s, top 0.3s;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

@media (max-width: 991px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  color: white;
}

.testimonial-card {
  background: #f0f8ff;
  border-radius: 12px;
  height: 100%;
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.stars {
  color: #ffc107;
  font-size: 1.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.accordion-button:not(.collapsed) {
  background-color: #0d6efd;
  color: white;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:focus {
  box-shadow: none;
  border-color: #0d6efd;
}
