@import url("https://fonts.googleapis.com/css2?family=Inria+Serif:wght@400;700&display=swap");

:root {
  --dark-forest-green: #1E3A8A;
  --soft-mint-white: #F8FAFF;
  --primary-green: #2563EB;
  --muted-gray-green: #475569;
  --accent-orange: #F59E0B;
}
* {
  padding: 0;
  margin: 0;
  font-family: "Tenor Sans";
  /* font-family: Tenor Sans, sans-serif; */
}








/* Mobile Navigation Styles */
.mobile-nav {
  background-color: white;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--dark-forest-green);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: rgba(31, 164, 91, 0.1);
  color: var(--primary-green);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, var(--soft-mint-white) 0%, #fff7ed 100%);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: all 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background: linear-gradient(90deg, var(--primary-green) 0%, var(--accent-orange) 100%) !important; */
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.mobile-menu-header img {
  height: 50px;
  width: auto;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background-color: rgba(0, 0, 0, 0.1);
  transform: rotate(90deg);
}

.mobile-menu-body {
  padding: 20px;
}

.mobile-menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-items li {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(37, 99, 235, 0.18);
}

.mobile-menu-items li:last-child {
  border-bottom: none;
}

.mobile-menu-items a,
.mobile-link {
  display: block;
  padding: 16px 0;
  color: var(--dark-forest-green);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-menu-items a:hover,
.mobile-link:hover {
  color: var(--accent-orange);
  padding-left: 12px;
  font-weight: 600;
}

.mobile-menu-items a::before,
.mobile-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: width 0.3s ease;
}

.mobile-menu-items a:hover::before,
.mobile-link:hover::before {
  width: 30px;
}

.btn-outline-green {
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  background: transparent;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-green:hover {
  background: var(--primary-green);
  color: white;
}

.btn-green {
  background: var(--primary-green);
  color: white;
  border: 2px solid var(--primary-green);
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-green:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.mobile-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.15);
  color: var(--primary-green);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.mobile-social-link:hover {
  background: var(--primary-green);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.mobile-copyright {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-top: 20px;
}

.mobile-copyright p {
  margin: 8px 0;
}

.mobile-copyright small {
  color: #999;
  display: block;
  margin-top: 10px;
}



.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0rem !important;
}






.navbar-nav .nav-link.active,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover {
    color: #000000 !important;
    font-weight: 600;
    background-color: #f2faff;
  border-radius: 10px;
  overflow: hidden;
    transition: color 0.2s;
}

.navbar-nav .nav-link{
    color: #000000 !important;
}





/* for floating  */


.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #2563eb 0%, #f59e0b 100%);
  color: #fff !important;
  font-weight: 600;
  font-size: 1.15rem;
  padding: 0.7rem 1.5rem 0.7rem 1.2rem;
  border-radius: 2rem 0.8rem 2rem 2rem;
  box-shadow: 0 4px 24px rgba(37,99,235,0.2);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  gap: 0.7rem;
}
.whatsapp-float i {
  font-size: 1.5rem;
}
.whatsapp-float span {
  margin-left: 0.2rem;
  font-family: 'Montserrat', sans-serif;
}
.whatsapp-float:hover {
  box-shadow: 0 8px 32px rgba(245,158,11,0.35);
  transform: translateY(-3px) scale(1.04);
  color: #fff;
  text-decoration: none;
}
@media (max-width: 575px) {
  .whatsapp-float {
    right: 12px;
    bottom: 16px;
    font-size: 1rem;
    padding: 0.6rem 1.1rem 0.6rem 0.9rem;
  }
  .whatsapp-float i {
    font-size: 1.2rem;
  }
}



/* footer css strart */

.footer-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 55%, #f59e0b 100%);
}
.footer-section h5, .footer-section h6 {
    letter-spacing: 0.01em;
}
.footer-section ul {
    padding-left: 0;
}
.footer-section a, .footer-section span, .footer-section li {
    font-size: 1rem;
}

@media (max-width: 991.98px) {
    .footer-section .row > div {
        margin-bottom: 0rem;
    }
    .footer-section {
        padding-bottom: 0rem;
    }
}
@media (max-width: 767.98px) {
  .footer-section img {
    max-width: 100% !important;
}
    .footer-section {
        padding-top: 2rem;
        padding-bottom: 0rem;
    }
    .footer-section .row > div {
        margin-bottom: 0rem;
    }
}
/* footer css end */



/* FAQ Section Styles */
.faq-section {
  background: linear-gradient(180deg, #eff6ff 0%, #fff7ed 100%);
}
.faq-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.08);
    padding: 28px 24px;
    margin-bottom: 24px;
    transition: box-shadow 0.2s;
}
.faq-card.active {
    box-shadow: 0 6px 24px rgba(44,62,80,0.13);
}
.faq-icon {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
    line-height: 25px;
    font-weight: 700;
}
.faq-icon-plus::before {
    content: "+";
}
.faq-icon-minus {
    background: #fff;
  color: #2563eb;
  border: 2px solid #2563eb;
}
.faq-icon-minus::before {
    content: "−";
}
@media (max-width: 991.98px) {
    .faq-card {
        padding: 18px 12px;
        border-radius: 12px;
    }
    .faq-icon {
        width: 22px;
        height: 22px;
        font-size: 1.1rem;
        line-height: 19px;
    }
}