
:root {
    --primary: #4a6bff;
    --primary-dark: #3a5bef;
    --secondary: #2c3e50;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark);
}

.bg-light-blue {
    background-color: #f5f7ff;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.feature-card {
    transition: all 0.3s ease;
    border: none;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0;
}

.pricing-card {
    transition: all 0.3s ease;
    border: none;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.popular-card {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.faq-item {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.faq-question {
    font-weight: 500;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.app-download {
    background-color: var(--primary);
    color: white;
}

footer {
    background-color: var(--secondary);
    color: white;
}

.footer-link {
    color: #adb5bd;
    text-decoration: none;
}

.footer-link:hover {
    color: white;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary);
}
.simple_slider .item {

}
.simple_slider .card {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: transform 0.3s;
}
.simple_slider .card:hover {
    transform: translateY(-5px);
}
.simple_slider img {
    border-radius: 10px;
}


#featureList .list-group-item {
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    border: none;
    border-left: 4px solid transparent;
    padding: 20px;
}

#featureList .list-group-item.active {
    background-color: #e6f7f1;
    border-left: 4px solid #4a6bff;
    color: #000;
}

#featureList .list-group-item h5 {
    font-size: 18px;
}

#featureList .list-group-item p {
    font-size: 14px;
}
img#featureImage {
    border-radius: 46px !important;
}



.pricingBox {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.pricingBox:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricingBox.premium {
    border: 2px solid #4a6bff;
}

.startUpWrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.badge {
    align-self: flex-start;
    margin-bottom: 1.5rem;
    padding: 0.35rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.textDiv {
    margin-bottom: 1.5rem;
}

.textDiv .title {
    display: block;
    margin-bottom: 1rem;
    color: var(--primary);
}

.textDiv span {
    display: block;
    margin-bottom: 0.5rem;
}

.days {
    font-size: 0.9rem;
}

.listWrapper {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.listWrapper span {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.pricingBtn {
    font-weight: 600;
}


/* Slim scrollbar for all scrollable areas */
::-webkit-scrollbar {
    width: 6px; /* width for vertical scrollbar */
    height: 6px; /* height for horizontal scrollbar */
}

/* Scrollbar track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

/* Scrollbar thumb (the moving part) */
::-webkit-scrollbar-thumb {
    background: #c4c4c4;
    border-radius: 10px;
}

/* On hover */
::-webkit-scrollbar-thumb:hover {
    background: #888;
}