
/*.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}*/

.img-fluid {
    max-height: 250px;
}
/* Variable declaration */
:root {
    --ib-primary-color: #258cfb;
    --ib-secondary-color: #d9dcdf;
    --bs-progress-bg: #d9dcdf;
    
}
.star-rating {
    color: #ffd200;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.progress {
    --bs-progress-bg: var(--ib-secondary-color) !important;
}
.mail-logo {
    width: 350px;
    margin-bottom:20px;
}

.tag-name {
    font-size: 20px;
    font-weight: 600;
    color: #258cfb;
    background-color: var(--ib-secondary-color);
    border-radius: 5px;
    padding: 4px;
}

.ibard-title {
        font-size: 77px;
    font-weight: 600;
    color: white;

}

.ibard-subtitle {
    font-size: 30px;
    font-weight: 600;
    color: white;
}
.ibard-title2 {
    font-size: 50px;
    font-weight: 600;
   
    text-align: center;
    text-transform: uppercase; /* Added upper case support */
}
.ibard-subtitle2 {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
   
}
.ibard-subtitle-dark {
    font-size: 30px;
    font-weight: 600;
   
}
.clickable-div {
    position: relative;
   /* width: 324px;
    height: 120px;*/
    cursor: pointer;
}

.background-image {
    width: 100%;
   /* height: 100%;*/
}

.steps-title {
   font-size:16px;
   font-weight:600;
}


.centered-text {
    position: absolute;
    top: 37%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: black;
    font-weight: bold;
    text-align: center;
}


/* ...existing CSS code... */
@media (max-width: 576px) {
    body {
        font-size: 24px;
    }
    .btn {
        font-size: 22px;
        /*font-size: 32px;*/
    }
    .mail-logo{
        width: 150px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    body {
        font-size: 22px;
    }
    .btn {
        font-size: 20px;
        /*font-size: 26px;*/
    }
    .mail-logo{
        width: 200px;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    body {
        font-size: 18px;
    }
    .mail-logo {
        width: 250px;
    }
}

@media (min-width: 993px) {
    body {
        font-size: 16px;
    }
    .mail-logo {
        width: 300px;
    }
}
.rounded-button {
    border-radius: 40px;
}

.circle {
    width: 20px;
    height: 20px;
    /* margin: 0 5px; */
    border-radius: 50%;
    cursor: pointer;
}
:root {
    /* Green step */
    --diamond-green-bg: #e6fcf5;
    --diamond-green-border: #69db7c;
    --diamond-green-text: #38b000;
    --diamond-green-hover-bg: #c3fae8;
    --diamond-green-hover-border: #38d9a9;
    --diamond-green-active-bg: #b2f2bb;
    --diamond-green-active-border: #51cf66;
    --diamond-green-active-text: #186a3b;
    /* Orange step */
    --diamond-orange-bg: #fff4e6;
    --diamond-orange-border: #ffa94d;
    --diamond-orange-text: #ff922b;
    --diamond-orange-hover-bg: #ffe8cc;
    --diamond-orange-hover-border: #ffb74d;
    --diamond-orange-active-bg: #ffd8a8;
    --diamond-orange-active-border: #ffa94d;
    --diamond-orange-active-text: #7c4700;
    /* Purple step */
    --diamond-purple-bg: #f3f0ff;
    --diamond-purple-border: #b197fc;
    --diamond-purple-text: #845ef7;
    --diamond-purple-hover-bg: #e5dbff;
    --diamond-purple-hover-border: #a685e2;
    --diamond-purple-active-bg: #d0bfff;
    --diamond-purple-active-border: #845ef7;
    --diamond-purple-active-text: #3b225c;
}

.diamond-step-green {
    width: 20px;
    height: 20px;
    background-color: var(--diamond-green-bg);
    border: 2px solid var(--diamond-green-border);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: none;
}

    .diamond-step-green span {
        display: block;
        transform: rotate(-45deg);
        font-size: 13px;
        color: var(--diamond-green-text);
        user-select: none;
        font-weight: 500;
    }

    .diamond-step-green:hover {
        background-color: var(--diamond-green-hover-bg);
        border-color: var(--diamond-green-hover-border);
    }

    .diamond-step-green.active {
        background-color: var(--diamond-green-active-bg);
        border-color: var(--diamond-green-active-border);
    }

        .diamond-step-green.active span {
            color: var(--diamond-green-active-text);
            font-weight: bold;
        }

.diamond-step-orange {
    width: 20px;
    height: 20px;
    background-color: var(--diamond-orange-bg);
    border: 2px solid var(--diamond-orange-border);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: none;
}

    .diamond-step-orange span {
        display: block;
        transform: rotate(-45deg);
        font-size: 13px;
        color: var(--diamond-orange-text);
        user-select: none;
        font-weight: 500;
    }

    .diamond-step-orange:hover {
        background-color: var(--diamond-orange-hover-bg);
        border-color: var(--diamond-orange-hover-border);
    }

    .diamond-step-orange.active {
        background-color: var(--diamond-orange-active-bg);
        border-color: var(--diamond-orange-active-border);
    }

        .diamond-step-orange.active span {
            color: var(--diamond-orange-active-text);
            font-weight: bold;
        }

.diamond-step-purple {
    width: 20px;
    height: 20px;
    background-color: var(--diamond-purple-bg);
    border: 2px solid var(--diamond-purple-border);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: none;
}

    .diamond-step-purple span {
        display: block;
        transform: rotate(-45deg);
        font-size: 13px;
        color: var(--diamond-purple-text);
        user-select: none;
        font-weight: 500;
    }

    .diamond-step-purple:hover {
        background-color: var(--diamond-purple-hover-bg);
        border-color: var(--diamond-purple-hover-border);
    }

    .diamond-step-purple.active {
        background-color: var(--diamond-purple-active-bg);
        border-color: var(--diamond-purple-active-border);
    }

        .diamond-step-purple.active span {
            color: var(--diamond-purple-active-text);
            font-weight: bold;
        }

.diamond-rect-green,
.diamond-rect-orange,
.diamond-rect-purple {
    display: inline-block;
    min-width: 260px;
    max-width: 90vw;
    background-clip: padding-box;
    border-radius: 1.2rem;
    padding: 0.5rem 1.2rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-align: center;
    
}

.diamond-rect-green {
    background-color: var(--diamond-green-bg);
    border: 2px solid var(--diamond-green-border);
    color: black; /*var(--diamond-green-text);*/
}

.diamond-rect-orange {
    background-color: var(--diamond-orange-bg);
    border: 2px solid var(--diamond-orange-border);
    color: black; /*var(--diamond-orange-text);*/
}

.diamond-rect-purple {
    background-color: var(--diamond-purple-bg);
    border: 2px solid var(--diamond-purple-border);
    color: black; /*var(--diamond-purple-text);*/
}

    .diamond-rect-green h4,
    .diamond-rect-orange h4,
    .diamond-rect-purple h4 {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }

    .diamond-rect-green .text-muted,
    .diamond-rect-orange .text-muted,
    .diamond-rect-purple .text-muted {
        font-size: 0.95rem;
    }

.btn-run {
    background-color: #d3f9d8; /* soft mint green */
    color: #2f8f46; /* calm green text */
    border: 1px solid #b2f2bb; /* light green border */
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

    .btn-run:hover {
        background-color: #c3fae8; /* subtle highlight */
        border-color: #69db7c;
        color: #1e6f34;
    }

.btn-nav {
    background-color: transparent;
    color: #5c7cfa; /* muted indigo-blue */
    border: 1px solid #adb5bd; /* light gray border */
    transition: all 0.2s ease-in-out;
}

    .btn-nav:hover {
        background-color: #edf2ff; /* very soft blue fill */
        border-color: #91a7ff;
        color: #364fc7; /* slightly deeper blue */
    }

    .btn-nav:disabled {
        color: #ced4da;
        border-color: #dee2e6;
        background-color: transparent;
    }


.line {
    height: 4px;
    width: 10px;
    /*  margin-top: 8px; */
    transition: background-color 0.3s;
}

.progress-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.ib-bg-light {
    background-color: var(--ib-secondary-color);
}

/* Basic styling for the loading overlay */
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    visibility: hidden; /* Initially hidden */
    opacity: 1;
    transition: visibility 0s, opacity 0.5s ease-in-out;
    z-index: 10000;
}

/* Loading spinner */
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--ib-secondary-color);
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.marketin-numbers{
    font-size:34px;
    font-weight:600;
    margin-bottom:20px;

}

/* Spinner animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

