:root {
  --bs-font-sans-serif: 'Nunito Sans', sans-serif;
}

body{
    background-color: #ffffff;
}

.footer{
    position: relative;
    z-index: 1;
}


.small {
    font-size: 0.9rem !important;
}
.card-hover:hover {
    cursor: pointer !important;
    background-color: #eaebff !important; /* light blue or any color you prefer */
    transition: background-color 0.3s ease !important;
    transform: scale(1.08); /* Optional: Slightly enlarge the card on hover */
}

.card-hover.active-hover {
    background-color: #eaebff !important; /* light blue or any color you prefer */
    transition: background-color 0.3s ease !important;
    transform: scale(1.08); /* Optional: Slightly enlarge the card on hover */
}

.navbar {
    background: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.is-sticky {
    top: 15px;
    background: #fff !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* optional subtle shadow */
}

.landing-green-bg{
    background-color: #47d90c !important;
    color: white !important;
    transition: background-color 0.3s ease;
    border: 1px solid #47d90c !important;
}

.btn.landing-green-bg:hover {
    background-color: #3ebf0a !important; /* Slightly darker green */
    border: 1px solid #3ebf0a !important;
}

.landing-green-outline{
    background-color: #ffffff;
    border: 1px solid #47d90c !important;
    color: #47d90c;
    transition: background-color 0.3s ease;
}

.btn.landing-green-outline:hover {
    color: white !important;
    background-color: #3ebf0a; /* Slightly darker green */
    border: 1px solid #3ebf0a !important;
}

.rounded-sharp-top{
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
}

.letter-spacing-wide {
    letter-spacing: 1px;
}

.pt-12 {
    padding-block-start: 3rem !important;
}

.top-30{
    top: -30px;
}

.left-40{
    left: -40px;
}

.right-40{
    right: -40px;
}

.mw-300px{
    max-width: 300px;
}
.mw-250px{
    max-width: 250px;
}

.fs-18px{
    font-size: 18px !important;
}

.hw-80px{
    height: 80px;
    width: 80px;
}

.mh-350px{
    max-height: 350px;
}
.mw-350px{
    max-width: 350px;
}

.mh-200px{
    max-height: 200px;
}

.w-500px{
    width: 500px;
}

/* style="background-color: #EAEBFF;" */
.light-violet-bg {
    background-color: #EAEBFF !important;
}

.primary-bg {
    background-color: #696cff !important;
}



.fw-500{
    font-family: var(--bs-font-sans-serif);
    font-weight: 700 !important;
    /* font-style: italic; */
}

.fw-600{
    font-weight: 600 !important;
}

.fw-700{
    font-weight: 700 !important;
}

.fw-800{
    font-weight: 800 !important;
}

.fw-900{
    font-weight: 900 !important;
}


.cube-image-container {
    position: relative;
    display: inline-block;
    /* overflow: hidden; This clips dots from overflowing outside */
}

.light-gray-bg{
    background-color: #F5F5F9 !important;
}

.rounded-5 {
    border-radius: 1rem !important;
}

.gray-bg{
    background-color: #F5F5F9 !important;
}

.landing-hero {
  z-index: 0;
  /* overflow: hidden; prevent scrollbars caused by blobs */
}

.plum-bg {
    background-color: #E4E2FF !important;
}

.rounded-top-right{
    border-top-right-radius: 0.8rem !important;
}

.rounded-bottom-right{
    border-bottom-right-radius: 0.8rem !important;
}
/* For mobile */
.nav-link:hover{
    color: #696cff !important;
}

.navlink:hover{
    color: #696cff !important;
}

.footer-link{
    color: white !important;
}

.footer-link:hover{
    color: #FF6900 !important;
}

.sticky-top{
    z-index: 1030;
}

.text-green{
  color: #30cd30 !important;
}

.dark-primary-bg{
  background-color: #3d316b !important;
}

.light-primary-bg{
  background-color: #eaebff !important;
}

.dots-img-right {
  position: absolute;
  top: 50%;
  right: -90px;   /* fixed offset */
  transform: translateY(-50%);
  width: 150px;
  height: auto;
}

.dots-img-left {
    position: absolute;
    top: 50%;
    left: -90px;    /* fixed offset from left */
    transform: translateY(-50%);
    width: 150px;
    height: auto;
}

/* Override Bootstrap dropdown caret */
/* Override Bootstrap dropdown caret */
.dropdown-toggle::after {
    display: none;
}

/* Carousel indicators (dots) */
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #a39cb6; /* light grayish purple */
  opacity: 1;
  margin: 0 5px;
  transition: background-color 0.3s ease;
  border: none;
}

.carousel-indicators .active {
  background-color: #3d2157; /* dark purple */
}
.carousel-inner {
  padding: 1em;
}


/* Mobile 16px font */
@media (max-width: 576px) {
    .mobile-font {
        font-size: 16px !important;
    }
}

#resourcesMenu {
  overflow-x: hidden; /* no horizontal scroll */
  max-width: 100%;    /* stay within parent */
}

#resourcesMenu .dropdown-item {
  white-space: normal;   /* allow wrapping */
  word-break: break-word; /* break long words if needed */
}


.fs-2rem{
    font-size: 1.5rem !important;
}

/* on tablet */

@media (max-width: 991.98px) {
    .fs-2rem {
        font-size: 1rem !important;
    }
}