:root {
  --bs-primary: #009cbb;
  --bs-primary-hover: #007a96;
  --bs-primary-light: #00bfd6;
  --bs-bg-light: #f5fcfd;
  --bs-text-dark: #222;
  --bs-text-light: #fff;
}

body {
  background-color: var(--bs-bg-light);
  color: var(--bs-text-dark);
  font-family: "Poppins", sans-serif;
}

a {
  color: var(--bs-primary);
  text-decoration: none;
}

a:hover {
  color: var(--bs-primary-hover);
  text-decoration: underline;
}

@media (max-width: 991.98px) {
  .custom-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    width: 45%;
    background-color: var(--bs-primary);
    z-index: 999;
    padding: 1rem;
    border-radius: 0 0 8px 8px;
  }
}

.text-primary {
  color: var(--bs-primary-hover) !important;
}

.border-primary {
  border-left: 5px solid var(--bs-primary-hover) !important;
}

.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.btn-outline-primary {
  border-color: var(--bs-primary-hover);
  color: var(--bs-primary-hover);
}

.btn-outline-primary:hover {
  border-color: var(--bs-primary-hover);
  background-color: var(--bs-primary-hover);
  text-decoration: none;
}

.btn-primary:hover {
  background-color: var(--bs-primary-hover);
  border-color: var(--bs-primary-hover);
  text-decoration: none;
}

.navbar {
  background-color: var(--bs-primary);
}

.navbar .nav-link,
.navbar-brand {
  color: var(--bs-text-light);
}

.navbar .nav-link:hover {
  color: var(--bs-primary-light);
}

footer {
  background-color: var(--bs-primary);
  color: #fff;
}

.copy {
  background-color: var(--bs-primary-hover);
  color: #fff;
}

@media (max-width: 768px) {
  .copyright {
    flex-direction: column !important;
  }
}

.footer-link {
  color: #fff;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--bs-primary-light);
  text-decoration: underline;
}

.line {
  line-height: 1.9;
}

.display {
  display: flex;
}

.image {
  transition: transform 0.5s ease;
}

.card:hover .image {
  transform: scale(1.05);
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: var(--bs-primary);
  color: #fff;
  border-radius: 50%;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 23px;
}

/* *Whatsapp Button */

#whatsappButton {
  position: fixed;
  bottom: 120px;
  right: 30px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: bounce 2s infinite;
  text-decoration: none;
}

#whatsappButton:hover {
  background-color: #20b858;
  text-decoration: none;
  color: white;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* *Call Button */

#callNowButton {
  position: fixed;
  bottom: 50px;
  right: 30px;
  background-color: rgba(0, 102, 255, 0.938);
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 0 0 rgba(0, 102, 255, 0.6);
  z-index: 9999;
  animation: pulse 2s infinite;
  transition: background 0.3s, transform 0.3s;
}

#callNowButton:hover {
  background-color: #0a64eb;
  transform: scale(1.05);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.6);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(40, 167, 69, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}

/* *Back to Top Button */
#backToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  z-index: 9999;
}

@media (max-width: 1400px) {
  .swiper-slide .image {
    height: 500px !important;
  }
}

@media (max-width: 1200px) {
  .swiper-slide .image {
    height: 420px !important;
  }
}

@media (max-width: 991px) {
  .swiper-slide .image {
    height: 350px !important;
  }
}

@media (max-width: 768px) {
  .swiper-slide .image {
    height: 270px !important;
  }
}

@media (max-width: 475px) {
  .swiper-slide .image {
    height: 200px !important;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 30px;
    height: 30px;
    background-color: var(--bs-primary);
    color: #fff;
    border-radius: 50%;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 18px;
  }

  .navbar-brand span {
    font-size: 17px;
  }

  .navbar-toggler-icon {
    width: 19px;
    height: 20px;
  }

  .navbar-toggler {
    padding: 0.25rem 0.24rem;
    font-size: 0.9rem;
  }
}

.btn-warning {
  background-color: #ffc30e;
}

/* .custom-swiper {
    position: relative;
}

.custom-swiper .swiper-pagination {
    position: absolute;
    bottom: -9px; 
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
} */

.justify {
  text-align: justify;
}

.bordered {
  border: 2px solid #007a96;
}

.card-hover {
  border-top: 3px solid #007a96;
  border-bottom: 3px solid #007a96;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* *donation */

.form-label {
  font-size: 14px !important;
}

/* *gallery */

.gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 10px;
  transition: transform 0.2s;
}

.gallery-img:hover {
  transform: scale(1.05);
}

#modalImage {
  max-height: 80vh;
  object-fit: contain;
}

.gallery-nav-btn {
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.gallery-nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  .gallery-nav-btn {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
  }
}

/* *privacy policy  */

.privacy-section {
  padding: 40px 20px;
  background: white;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* *term condition  */

.terms-section {
  padding: 40px 20px;
  background: white;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* refund policy  */

.refund-section {
  padding: 40px 20px;
  background: white;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}