.why-choose-section {
    min-height: 100vh;
    padding: 40px 20px 20px;
    text-align: center;
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-title {
    font-family: Bricolage Grotesque, sans-serif;
    color: #007fd0;
    font-size: 14px;
    margin-bottom: 10px;
}

.section-tagline {
    /* color: #666; */
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
}

.section-tagline span {
    color: #00cfff;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 20px 0;
    overflow: hidden;
    width: 100%;
}

.slider {
    display: flex;
    position: relative;
    width: 100%;
    height: 300px;
    align-items: center;
    justify-content: center;
}

.slide-card {
    position: absolute;
    color: #000;
    background: white;
    border-radius: 15px;
    padding: 30px;
    width: 300px;
    min-height: 250px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0.8;
    transform: translateX(0);
    transition: all 0.5s ease-in-out;
    will-change: transform, opacity, background-color;
}

.card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-card .card-icon svg {
    fill: currentColor;
    height: 40px;
    width: 40px;
}

.card-active {
    background: #007fd0;
    color: white;
    opacity: 1;
    z-index: 2;
}

.card-title {
    font-family: Bricolage Grotesque, sans-serif;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
}

.card-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: inherit;
}

.slider-nav {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 40px 0;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-dot.active {
    background: #00b4ff;
}

.slider-arrows {
    position: absolute;
    top: 40%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.arrow {
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    color: #00b4ff;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    z-index: 10;
}

.arrow:hover {
    transform: scale(1.1);
}

.cta-section {
    margin-top: 50px;
    text-align: center;
}

.cta-text {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

@media (max-width: 1200px) {
    .slide-card {
        padding: 30px;
        width: 250px;
    }
}

@media (max-width: 768px) {
    .section-tagline {
        font-size: 25px;
    }

    .cta-text {
        font-size: 1rem;
    }
}
