/*
Theme Name: Jump Start Media
*/

body {
    /* background-color: #f8f9fa; */
    font-family: "Inter", sans-serif;
    /* font-weight: 300; */
    font-style: normal;
}
.main-header {
    text-align: center;
    margin: 50px 0 20px;
}
.btn-custom {
    background-color: #007bff;
    color: white;
}
.features {
    margin: 20px 0;
}
.form-section {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.navbar-nav .nav-link {
    padding: 16px 12px;
    border-radius: 4px;
    transition: all 0.2s ease; /* Smooth animation */
}

.navbar-nav .nav-link:hover {
    background-color: #1650D0;
    color: #ffffff !important;
}

.metric-icon {
    font-size: 24px; /* adjust as necessary */
}

.metric-number {
    font-weight: bold;
    color: blue;
    font-size: 20px;
}

.metric-text {
    color: gray;
}

/* marquee--- */
.marquee-section {
    max-width: 100%;
    min-height: 200px; /* Ensure a minimum height of 100px */
    overflow: hidden;
    background-color: white; /* Light background */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

.marquee-track {
    display: flex;
    gap: 80px;
    animation: scroll 30s linear infinite;
    width: fit-content;
}

.marquee-logo {
    flex: 0 0 auto;
    height: 40px; /* Set a fixed height for the logos */
    width: auto; /* Maintain the aspect ratio of the logo */
}

@keyframes scroll {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

.carousel-indicators [data-bs-target] {
    margin-top: 50px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #6c757d;
    opacity: 0.5;
    /* margin: 0 6px; */
    border: none;
    transition: opacity 0.3s ease;
}

.carousel-indicators .active {
    background-color: #0d6efd;
    opacity: 1;
}
.process-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    height: 100%;
}
.process-number {
    background-color:#EEF3FF;
    color: #1650D0;
    font-weight: 600;
    font-size: 20px;
    width: 50px;
    height: 50px;
    vertical-align: middle;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.process-content h5 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color:#334155;
    line-height: 100%;
    vertical-align: middle;
}
.process-content p {
    color: #334155;
    font-size: 14px;
    margin: 0;
    line-height: 140%;
    font-weight: 400
}
.business-plan h5{
    font-size: 24px;
    font-weight: 500;
    line-height: 140%;
    text-align: start;
    color: #ffffff;
}
.business-plan h2{
    font-size: 32px;
    font-weight: 500;
    line-height: 120%;
    text-align: start;
    color: #ffffff;
}
.business-plan ul li{
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;

}
.plan-card {
    background-color: #1650D0;
    border: 1px solid #ffffff;
    transition: background-color 0.3s ease;
}

.plan-card:hover {
    background-color: #334155 !important;
}

.checkbox-icon {
    color: #9CBBFF;
    transition: color 0.3s ease;
}

.plan-card:hover .checkbox-icon {
    color: #000000;
}

.plan-btn {
    border: 1px solid #ffffff;
    color: #ffffff;
    background-color: transparent;
    transition: all 0.3s ease;
}

.plan-card:hover .plan-btn {
    background-color: #ffffff !important;
    color: #334155 !important;
    border-color: #ffffff;
}
.plan-card:hover .badge {
    background-color: #000000 !important;
    color: #ffffff !important;
}
.accordion-button {
    background-color: #ffffff;
    color: #334155;
    font-weight: 500;
    font-size: 20px;
    border-radius: 8px;
    box-shadow: none;
    line-height: 140%;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #ffffff;
    color: #334155;
}

.accordion-body {
    background-color: #ffffff;
    border-radius: 0 0 8px 8px;
    color: #334155;
    font-size: 16px;
    margin-top: 8px;
    font-weight: 400;
    line-height: 140%;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
}

.accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
}
.custom-btn {
    background-color: white;
    color: #1650D0;
    border: 2px solid #1650D0;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.custom-btn:hover {
    background-color: #1650D0;
    color: #ffffff;
}
.custom-plan-btn {
    background-color: #1650D0;
    color: #ffffff; /* Bootstrap primary blue */
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.custom-plan-btn:hover {
    background-color: #ffffff;
    color:#1650D0;
}
.wide-card {
    background-color: #fff;
    max-width: 100%;
    min-height: 250px;
    margin: 0%;
    /* padding: 30px; */

}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: #EEF3FF;
    color: #1650D0;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #334155;
    /* white-space: nowrap; */
    justify-content: center;
    align-items: center;
}

.card-text {
    font-size: 12px;
    font-weight: 400;
    color: #334155;
    /* white-space: nowrap; */
    justify-content: center;
    align-items: center;
}
footer{
    font-family: "Poppins", sans-serif;
}


.footer-title {
    font-size: 16px;
    color: #334155;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-list li {
    font-size: 14px;
    font-weight: 400;
    padding: 8px 8px;
}

.footer-link {
    text-decoration: none;
    color: #334155;
    display: block;
}
