/* Custom Styles */

body {
  font-family: 'Montserrat', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Philosopher', serif;
}
p {
  font-family: 'PT sans', serif;
}
/* Header specific styles */
header a {
  font-family: 'Philosopher', serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.phone-number {
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1.5rem); }
}
.animate-float {
  animation: float 4s ease-in-out infinite;
}

/* For cross-browser dropdown styling contact number country code*/
select option {
  color: #1a202c;  /* gray-900 */
  background: white;
}

/* Add smooth scroll behavior */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

/* Mobile menu transition */
#mobile-menu {
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(-20px);
  opacity: 0;
  z-index: 60; /* Ensure it appears above other elements */
}
#mobile-menu.hidden {
  display: none;
}
#mobile-menu:not(.hidden) {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

#scrollToTop {
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

#scrollToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* TESTIMONIALS ARROWS */
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}


/* WHATSAPP FLOATING BUTTON */
.floating-buttons {
  position: fixed;
  bottom: 20px; /* Distance from the bottom of the page */
  right: 20px;  /* Distance from the right of the page */
  z-index: 9999; /* Ensure the buttons appear on top */
}

/* Individual button styling */
.fab-button {
  text-decoration: none; /* Remove underline */
  background-color: #25D366; /* WhatsApp color */
  border-radius: 50%;
  width: 45px;
  height: 45px;
  margin-bottom: 10px; /* Space between buttons */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Hover effect to enlarge */
.fab-button:hover {
  transform: scale(1.1);
}

/* Floating WhatsApp Button Styles */
.wa_btn_popup {
position: fixed;
bottom: 105px;
right: 10px;
width: 60px;
height: 60px;
background-color: #25d366;
border-radius: 50%;
cursor: pointer;
z-index: 1000;
display: flex;
align-items: center;
justify-content: center;
}
.whatsapp-icon {
width: 60px;
height: 60px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
.wa_btn_popup {
  position: fixed;
  bottom: 105px;
  right: 10px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-icon {
  width: 60px;
  height: 60px;
}
}

/* Circular Progress */
circle {
transform: rotate(-90deg);
transform-origin: 50% 50%;
}

.score-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.gradient-bg {
background: linear-gradient(135deg, #2563eb, #06b6d4);
}