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

body{
    background-color: #696CFF;
}
#cardScroll::-webkit-scrollbar {
    display: none; /* hide scrollbar in Chrome/Safari */
}
.dot.active {
    background-color: #000 !important;
}

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

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

.navbar.is-sticky {
    top: 15px;
    background: #ffffff !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;
}

/* Cube corner cut effect (optional) */
.cube-image-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: #bdbdf3;
    border-bottom-left-radius: 60px;
    transform: translate(30%, -30%) rotate(45deg);
    z-index: 0;
}

/* The image floats to the top-left */
.cube-image-floating {
    position: absolute;
    scale: 1.1; /* Optional: Slightly enlarge the image */;
    z-index: 1;
}

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

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

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

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

@media (max-width: 768px) {

    .cube-image-floating {
        position: relative;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        scale: 1 !important; /* Reset scale for smaller screens */
        transform: none !important;
    }
    .cube-image-wrapper {
        padding: 5px; /* Adjust padding for smaller screens */
        box-shadow: none; /* Remove shadow for smaller screens */
    }

    .top-30 {
        top: 0 !important; /* Reset top position for smaller screens */
    }
    .left-40 {
        left: 0 !important; /* Reset left position for smaller screens */
    }
    .right-40 {
        right: 0 !important; /* Reset right position for smaller screens */
    }
}


.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-900{
    font-weight: 900 !important;
}

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

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


/* Footer Styles */
.text-green{
  color: #30cd30 !important;
}

.small {
    font-size: 0.9rem !important;
}

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

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

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

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

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


.text-deep-purple{
    color: #262254;;
}

.bg-deep-purple{
    background-color: #262254;;
}

.btn-label-deep-purple{
    border: 1px solid #262254;
    color: #262254;
    background-color: transparent;
}

.btn-label-deep-purple:hover{
    border: 1px solid #262254;
    color:rgb(255, 255, 255);
    background-color: #262254;
}

/* teacher card */
.profile-pic-container {
    width: 100%;
    height: 100%;
    max-height: 100%; /* fill column */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 6px 0 0 6px;
}

.profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover; /* keeps portrait orientation */
}

/* Responsive: stack image on top for small screens */
@media (max-width: 768px) {
    .profile-pic {
        height: 300px; /* fixed height on smaller screens */
    }
}

/* Pagination theme modification */
/* Active page */
.pagination .page-item.active .page-link {
    background-color: #262254 !important;
    border-color: #262254 !important;
    color: #fff !important;
}

/* Hover effect */
.pagination .page-link:hover {
    background-color: #262254 !important;
    border-color: #262254 !important;
    color: #fff !important;
}

/* Default state */
.pagination .page-link {
    color: #262254 !important;
}

/* Disabled */
.pagination .page-item.disabled .page-link {
    color: #6c757d !important;
    background-color: #f8f9fa !important;
    border-color: #dee2e6 !important;
}