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

.header{
    font-size: 3.5rem;
}

.card-overlay {
  margin-top: -100px !important; /* adjust as needed */
  position: relative;
  z-index: 10; /* ensures it stays above background elements */
  max-width: 700px;
}

.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;
}

/* 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 */
    }

    .card-overlay {
        margin-top: -50px !important; /* adjust as needed */
    }
}

@media (max-width: 576px) {
  .card-overlay {
    margin-top: -40px !important; /* lighter overlap for mobile */
  }
}

.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 */
}

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