/* Global */
body {
  /* font-family: 'Instrument Sans', sans-serif; */
  font-family: 'Lato', sans-serif; 
  color: #333;
  /* padding-top: 10px !important; */
  scroll-behavior: smooth;
  cursor: url('../assets/images/cur_logo.png') 0 0, auto;
}

.faq-section {
  /* font-family: 'Instrument Sans', sans-serif; */
  font-family: 'Lato', sans-serif;
}



.accordion-button {
  font-weight: 500;
  color: #000;
}

.accordion-button::after {
  filter: brightness(0);
}

.accordion-button:not(.collapsed) {
  /* color: #636B2F; */
  color: #1261A0;
  background-color: transparent;
  box-shadow: none;
}

.btn:hover {
  /* background-color: #636B2F; */
  background-color: #1261A0;
  color: #fff !important;
}

/* Optional: Improve spacing on smaller screens */
@media (max-width: 991px) {
  .faq-section .col-lg-5 {
    margin-bottom: 3rem;
  }
}


/* Image animation: zoom + fade-in */
.about-us-section img {
  opacity: 0;
  transform: scale(0.9);
  animation: zoomFadeIn 1s forwards;
  animation-delay: 0.1s;
}

@keyframes zoomFadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Optional: add subtle hover zoom effect on image */
.about-us-section img:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

/* Vertical line */
.vertical-line {
  width: 1.5px;
  background-color: #1261A0;
  height: 250px; /* default desktop height */
  transition: all 0.3s ease;
}

/* On mobile: horizontal and shorter */
@media (max-width: 768px) {
  .vertical-line {
    width: 50px; /* adjust length */
    height: 1.5px;
    margin: 20px 0; /* spacing between image and content */
  }
}

/* About heading animation */
.about-heading {
  color: #1261A0;
  font-weight: 700;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideFadeUp 1s forwards;
  animation-delay: 0.2s;
}

/* About text animation */
.about-text {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideFadeUp 1s forwards;
  animation-delay: 0.4s;
}


/* Button animation */
.read-more-btn {
  background-color: #fff;            /* Normal background white */
  color: #1261A0;                    /* Normal text color */
  border: 2px solid #1261A0;         /* Normal border */
  padding: 10px 25px;
  border-radius: 5px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: slideFadeUp 1s forwards;
  animation-delay: 0.6s;
}

/* Hover Effect */
.read-more-btn:hover {
  background-color: #1261A0;         /* Hover background */
  color: #fff;                       /* Hover text */
  border-color: #fff;                /* Hover border */
}
