.navbar {
  background-color: white;
}

body {
  padding-top: 70px;
}

.nav-link {
  color: #0c0867 !important;
}
.custom-toggler {
  border: none;
  background: transparent;
  padding: 0.5rem;
  outline: none;
}

.toggler-icon {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #0c0867;
  border-radius: 3px;
  transition: all 0.4s ease;
}

.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
  opacity: 0;
}

.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.theme-color {
  color: #0c0867 !important;
}

.theme-bg {
  background-color: #0c0867 !important;
  color: white !important;
}

.hero {
  background-color: white;
  /* height: 500px; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: white;
}
.hero-content {
  position: relative;
  z-index: 1;
}

.features {
  margin-top: -90px;
  position: relative;
  z-index: 5;
}
.feature-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  height: 100%;
}

.about-img {
  position: relative;
}
.about-logo {
  position: absolute;
  bottom: -30px;
  left: 20px;
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  height: 100%;
}

footer {
  background: #111;
  color: #ccc;
  padding: 40px 0;
}
footer a {
  color: #ccc;
  text-decoration: none;
}
footer a:hover {
  color: #fff;
}

.alert-container {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 9999;
  max-width: 350px;
}

.whatsapp-pulse {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  animation: pulse 2s infinite;
  border-radius: 50px;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.whatsapp-btn i {
  font-size: 32px;
}

.whatsapp-btn:hover {
  background-color: #128c7e;
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.text-danger {
  color: red !important;
}

.btn-danger {
  background-color: red !important;
}
