
@media (max-width: 1440px) {
    .banner-3 .owl-carousel .owl-dots {
        position: absolute;
        top: 380px;
        left: 50%;
        color: var(--white-color) !important;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
    }
}
/* Desktop Version (Large screens) */
@media (min-width: 1200px) {
    .card {
        border: 1px solid var(--gray-color);
        background-color: var(--white-color);
        border-radius: 8px;
        padding: 20px;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: 20px;
    }

    .progress-ring-container {
        width: 150px;
        height: 150px;
    }

    .progress-ring {
        position: relative;
        width: 120%;
        height: 120%;
        border-radius: 50%;
        background: conic-gradient(var(--secondary-color-rgb) 0% 32.7%, var(--light-secondary-color-rgb) 32.7% 100%);
    }

        .progress-ring::before {
            content: '';
            position: absolute;
            top: 25%;
            left: 25%;
            width: 50%;
            height: 50%;
            border-radius: 50%;
            background-color: var(--white-color);
        }

    .progress-ring-text {
        position: absolute;
        top: 80%;
        left: 73%;
        transform: translate(-50%, -50%);
        text-align: center;
        font-size: 14px;
    }

    .progress-ring__circle-bg {
        stroke-dasharray: 408;
        stroke-dashoffset: 0;
    }

    .progress-ring__circle {
        stroke-dasharray: 408;
        stroke-dashoffset: 292;
        transition: stroke-dashoffset 0.35s;
        transform-origin: 50% 50%;
    }

    .progress-ring-text p {
        font-size: 18px;
        font-weight: bold;
    }

    .progress-ring-text span {
        font-size: 14px;
    }

    .investmentAmount {
        font-size: 1rem;
        padding: 10px;
    }

    .badge {
        font-size: 12px;
        padding: 5px 10px;
    }

    .card button.btn {
        font-size: 1rem;
        padding: 10px 15px;
    }

    .carousel-caption {
        position: absolute;
        top: 40% !important;
        left: 5% !important;
        transform: translateY(-50%);
        color: var(--white-color);
        text-align: left;
        z-index: 10;
    }

    .banner-3 .owl-carousel .owl-dots {
        position: absolute;
        top: 380px;
        left: 50%;
        color: var(--white-color) !important;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
    }
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .checkbox-group p {
        display: flex;
        align-items: center;
        margin: 0;
    }

.checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: relative;
    background: transparent;
    border-radius: 4px;
}

    .checkmark::before {
        content: '●';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 16px;
        font-weight: bold;
        background: linear-gradient(to right, var(--secondary-color), var(--text-aqua-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }



/* Tablet Version */
@media (min-width: 768px) and (max-width: 1199px) {
    .card {
        border: 1px solid var(--gray-color);
        background-color: var(--white-color);
        border-radius: 8px;
        padding: 15px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        flex-wrap: wrap;
    }

    .progress-ring-container {
        width: 120px;
        height: 120px;
    }

    .progress-ring {
        position: relative;
        width: 120%;
        height: 120%;
        border-radius: 50%;
        background: conic-gradient(var(--secondary-color-rgb) 0% 32.7%, var(--light-secondary-color-rgb) 32.7% 100%);
    }

        .progress-ring::before {
            content: '';
            position: absolute;
            top: 25%;
            left: 25%;
            width: 50%;
            height: 50%;
            border-radius: 50%;
            background-color: var(--white-color);
        }

    .progress-ring-text {
        position: absolute;
        top: 90%;
        left: 70%;
        transform: translate(-50%, -50%);
        text-align: center;
        font-size: 12px;
    }

    .progress-ring__circle-bg {
        stroke-dasharray: 408;
        stroke-dashoffset: 0;
    }

    .progress-ring__circle {
        stroke-dasharray: 408;
        stroke-dashoffset: 292;
        transition: stroke-dashoffset 0.35s;
        transform-origin: 50% 50%;
    }

    .progress-ring-text p {
        font-size: 16px;
    }

    .progress-ring-text span {
        font-size: 13px;
    }

    .investmentAmount {
        font-size: 0.9rem;
        padding: 8px;
    }

    .badge {
        font-size: 11px;
        padding: 4px 8px;
    }

    .card button.btn {
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    .carousel-caption {
        position: absolute;
        top: 40% !important;
        left: 5% !important;
        transform: translateY(-50%);
        color: var(--white-color);
        text-align: left;
        z-index: 10;
    }

    .banner-3 .owl-carousel .owl-dots {
        position: absolute;
        top: 380px;
        left: 50%;
        color: var(--white-color) !important;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
    }

    .banner-3 {
        margin-top: 150px !important;
    }
}

/* Mobile Version */
@media (max-width: 767px) {
    .card {
        flex-direction: column;
        align-items: center;
        padding: 10px;
        border: 1px solid var(--gray-color);
        background-color: var(--white-color);
        border-radius: 8px;
        margin-bottom: 15px;
        flex-wrap: wrap;
    }

    .progress-ring-container {
        width: 90px;
        height: 90px;
    }

    .progress-ring {
        position: relative;
        width: 120%;
        height: 120%;
        border-radius: 50%;
        background: conic-gradient(var(--secondary-color-rgb) 0% 32.7%, var(--light-secondary-color-rgb) 32.7% 100%);
    }

        .progress-ring::before {
            content: '';
            position: absolute;
            top: 25%;
            left: 25%;
            width: 50%;
            height: 50%;
            border-radius: 50%;
            background-color: var(--white-color);
        }

    .progress-ring-text {
        position: absolute;
        top: 93%;
        left: 23%;
        transform: translate(-50%, -50%);
        text-align: center;
        font-size: 10px;
    }

    .progress-ring__circle-bg {
        stroke-dasharray: 408;
        stroke-dashoffset: 0;
    }

    .progress-ring__circle {
        stroke-dasharray: 408;
        stroke-dashoffset: 292;
        transition: stroke-dashoffset 0.35s;
        transform-origin: 50% 50%;
    }

    .progress-ring-text p {
        font-size: 14px;
        font-weight: bold;
    }

    .progress-ring-text span {
        font-size: 12px;
    }

    .investmentAmount {
        font-size: 0.85rem;
        padding: 6px;
    }

    .badge {
        font-size: 10px;
        padding: 3px 6px;
    }

    .card button.btn {
        font-size: 0.85rem;
        padding: 6px 10px;
    }

    /* Center alignment for better readability on mobile */
    .card-content {
        text-align: center;
    }

    .carousel-caption {
        position: absolute;
        display: none !important
    }

    .banner-3 .owl-carousel .owl-dots {
        position: absolute;
        top: 180px;
        left: 50%;
        color: var(--white-color) !important;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
    }

    .banner-3 {
        margin-top: 190px !important;
        margin-bottom: 0px !important
    }
}


.banner-3 {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    margin-top: 120px;
    margin-bottom: 75px;
}

.investmentAmount {
    background-color: inherit;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

    .investmentAmount::placeholder {
        color: var(--primary-color);
        opacity: 0.6;
    }

    .investmentAmount:focus {
        display: block;
        border: 1px solid var(--primary-color);
        color: var(--primary-color);
        outline: none;
        box-shadow: none;
        background-color: inherit;
    }

.social-media-section {
    margin-right: 280px;
    margin-top: 12px
}

    .social-media-section a {
        text-decoration: none;
    }

#bannerCarousel .item img,
#bannerCarousel .item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.banner-3 .owl-carousel .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: var(--white-color) !important;
    margin: 0 5px;
    border-radius: 50%;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.image-placeholder {
    height: 300px !important;
    width: 350px !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray-color);
    border-radius: 1px;
}


.card p,
.card span,
.card p b {
    color: var(--primary-color);
}

.text-muted small {
    font-size: 12px;
    color: var(--text-muted-color) !important;
}

.single-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.paragraph-text {
    color: var(--text-muted-color);
    font-size: 13px;
}

.content-section {
    width: 50%;
}

    .content-section a {
        text-decoration: none !important;
    }

.profile-card {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
}

.profile-image {
    width: 120px;
    height: 120px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--text-muted-color);
    margin-right: 20px;
}

.profile-content {
    display: flex;
    align-items: center;
}

.profile-text {
    margin-right: 20px;
    width: 250px
}

    .profile-text h4 {
        margin: 0;
        font-weight: bold;
        color: var(--secondary-color);
    }

    .profile-text p {
        margin: 4px 0 0;
        color: var(--text-muted-color);
        font-size: 0.9em;
    }

.profile-description {
    color: var(--primary-color);
    line-height: 1.6;
}


.carousel-caption {
    position: absolute;
    top: 45% !important;
    left: 5% !important;
    transform: translateY(-50%);
    color: var(--white-color);
    text-align: left;
    z-index: 10;
}


.chart-container-index {
    padding-bottom: 2vw;
    height: fit-content;
    position: relative;
}

canvas {
    height: 150px !important;
}

.paid-percentage {
    text-align: center;
    font-size: 1.2rem;
    margin-top: -50px;
}

    .paid-percentage h4 {
        font-weight: bold;
        color: var(--text-color);
    }

    .paid-percentage h6 {
        font-size: 0.9rem;
        color: var(--text-muted-color);
    }

.steps {
    margin-top: -15px
}

.form-select {
    border-radius: 8px;
    max-width: 350px;
}

.filter-section {
    background-color: var(--gray-color);
    padding: 10px;
    border-radius: 8px;
}

.form-div {
    max-width: 320px;
}

.info-section {
    border-radius: 8px;
}

.filter-btn {
    margin-top: -4px
}

.target-label {
    position: relative;
    padding-left: 20px;
    font-size: 18px;
}

    .target-label::before {
        content: '';
        position: absolute;
        top: 30%;
        left: 0;
        transform: translateY(-50%);
        width: 14px;
        height: 14px;
        background: linear-gradient(to right, var(--secondary-color), var(--text-aqua-color));
        border-radius: 50%;
    }

.investors-label {
    position: relative;
    padding-left: 20px;
}

    .investors-label::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 5%;
        transform: translateY(-50%);
        width: 10px;
        height: 10px;
        background: linear-gradient(to right, var(--secondary-color), var(--text-aqua-color));
        border-radius: 50%;
    }

.remaining-label {
    position: relative;
    padding-left: 20px;
    font-size: 18px;
}

.equity-label {
    position: relative;
    font-size: 18px;
}

.remaining-label::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 0;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background: linear-gradient(to right, var(--gray-color), var(--gray-color));
    border-radius: 50%;
}

.equity-container {
    position: relative;
    padding-left: 20px;
}

.right-section {
    max-width: 40% !important;
}


@media (max-width: 850px) {
    .banner-3 .owl-carousel .owl-dots {
        position: absolute;
        top: 320px;
        left: 50%;
        color: var(--white-color) !important;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
    }

    .steps {
        margin-top: -150px !important
    }
}




@media (max-width: 770px) {
    .steps {
        margin-top: -110px !important
    }

    .banner-3 .owl-carousel .owl-dots {
        position: absolute;
        top: 295px !important;
        left: 50%;
        color: var(--white-color) !important;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 550px) {
    .steps {
        margin-top: -190px !important
    }

    .banner-3 .owl-carousel .owl-dots {
        position: absolute;
        top: 190px !important;
        left: 50%;
        color: var(--white-color) !important;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 980px) {
    .content-section {
        width: 100%;
        margin-top: 30px;
    }

    .share-section {
        margin-top: 410px !important;
    }
}

@media (max-width: 770px) {
    .share-section {
        margin-top: 0 !important;
    }
}

@media (max-width: 1500px) {
    .form-select {
        border-radius: 8px;
        max-width: 320px;
    }
}

@media (max-width: 770px) {
    .right-section {
        margin-left: -45px
    }

    .form-select {
        border-radius: 8px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .social-media-section {
        margin-bottom: 20px;
    }

    canvas {
        width: 80%
    }

    .paragraph-text {
        width: 80%
    }

    .chart-container-index {
        width: 80%
    }

    .form-select {
        max-width: 350px;
    }

    .filter-btn {
        margin-left: 70px
    }
}

@media (max-width: 370px) {
    .steps {
        margin-top: -275px !important
    }

    .banner-3 .owl-carousel .owl-dots {
        position: absolute;
        top: 125px !important;
        left: 50%;
        color: var(--white-color) !important;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
    }
}


/* Small Mobile Version */
@media (max-width: 395px) {
    .card {
        padding: 8px;
        flex-wrap: wrap;
    }

    .image-placeholder {
        width: 0px !important;
    }

    .progress-ring-container {
        width: 70px;
        height: 70px;
        margin-left: 150px
    }

    .progress-ring {
        position: relative;
        width: 120%;
        height: 120%;
        border-radius: 50%;
        background: conic-gradient(var(--secondary-color-rgb) 0% 32.7%, var(--light-secondary-color-rgb) 32.7% 100%);
    }

    .carousel-caption {
        position: absolute;
        top: 55% !important;
        left: 5% !important;
        transform: translateY(-50%);
        color: var(--white-color);
        text-align: left;
        z-index: 10;
    }

    .progress-ring::before {
        content: '';
        position: absolute;
        top: 25%;
        left: 25%;
        width: 50%;
        height: 50%;
        border-radius: 50%;
        background-color: var(--white-color);
    }

    .progress-ring-text {
        position: absolute;
        top: 93%;
        left: 23%;
        transform: translate(-50%, -50%);
        text-align: center;
        font-size: 10px;
    }

    .progress-ring__circle-bg {
        stroke-dasharray: 408;
        stroke-dashoffset: 0;
    }

    .progress-ring__circle {
        stroke-dasharray: 408;
        stroke-dashoffset: 292;
        transition: stroke-dashoffset 0.35s;
        transform-origin: 50% 50%;
    }

    .progress-ring-text p {
        font-size: 12px;
    }

    .badge {
        font-size: 8px;
        padding: 2px 4px;
    }

    .investmentAmount {
        font-size: 0.75rem;
    }

    .card button.btn {
        font-size: 0.8rem;
        padding: 5px 8px;
    }

    .banner-3 {
        margin-top: 202px !important;
    }

        .banner-3 .owl-carousel .owl-dots {
            position: absolute;
            top: 130px !important;
            left: 50%;
            color: var(--white-color) !important;
            transform: translateX(-50%);
            width: 100%;
            text-align: center;
        }

    .steps {
        margin-top: -270px !important;
    }
}


/* RTL */

[dir="rtl"] .image-placeholder {
    margin-left: 1rem !important;
    margin-right: 0 !important;
}

[dir="rtl"] .filter-btn .btn {
    margin-left: 0;
    margin-right: 0.5rem;
}

[dir="rtl"] .share-section .ms-2 {
    margin-left: 0 !important;
    margin-right: 0.5rem !important;
}

[dir="rtl"] .info-section,
[dir="rtl"] .content-section {
    text-align: right;
}

[dir="rtl"] .statistics-section {
    text-align: right;
}

[dir="rtl"] .progress-bar {
    direction: ltr;
}

[dir="rtl"] .target-label {
    padding-left: 0;
    padding-right: 20px;
}

    [dir="rtl"] .target-label::before {
        left: auto;
        right: 0;
    }

[dir="rtl"] .remaining-label {
    padding-left: 0;
    padding-right: 20px;
}

    [dir="rtl"] .remaining-label::before {
        left: auto;
        right: 0;
    }

[dir="rtl"] .equity-label {
    padding-left: 0;
    padding-right: 20px;
}

    [dir="rtl"] .equity-label::before {
        left: auto;
        right: 0;
    }
/*.share-section {
    margin-top: 50px !important;
}*/
@media (max-width: 699px){
    .image-placeholder{
        width: 100% !important;
    }
    .right-section{
        margin-left: unset;
    }
}