
.hero-carousel {
    /* margin-top: 80px; */
    min-height: 100vh;
    background: var(--gradient-dark);
}

.carousel-item {
    min-height: calc(100vh - 80px);
    padding: 2rem 0;
}

.hero-content {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 80px - 4rem);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--gray-300);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    color: var(--gray-300);
    font-size: 0.9rem;
    /*flex: 1 1 auto;*/
    /*min-width: 200px;*/
}

.hero-feature i {
    color: var(--accent);
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-custom {
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
}

.btn-primary-custom {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.btn-secondary-custom {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-primary-custom:hover,
.btn-secondary-custom:hover {
    transform: translateY(-2px);
    color: white;
}

/* === VISUAL CARDS === */
.visual-cards-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px - 4rem);
}

.visual-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 500px;
    width: 100%;
}

.visual-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.visual-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-xl);
}

.visual-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.visual-card-icon i {
    font-size: 1.25rem;
    color: white;
}

.visual-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.visual-card p {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin: 0;
}

/* === CAROUSEL CONTROLS === */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* === CAROUSEL INDICATORS === */
.carousel-indicators {
    bottom: 30px;
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.carousel-indicators [data-bs-target].active {
    background-color: var(--primary);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

/* === RESPONSIVE STYLES === */
@media (max-width: 992px) {
    .hero-carousel {
        margin-top: 70px;
    }

    .carousel-item {
        min-height: auto;
        padding: 1.5rem 0;
    }

    .hero-content {
        min-height: auto;
        padding: 1rem 0;
    }

    .visual-cards-container {
        min-height: auto;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-carousel {
        margin-top: 60px;
    }

    .carousel-item {
        padding: 1rem 0;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .hero-feature {
        min-width: auto;
        font-size: 0.85rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-custom {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        justify-content: center;
    }

    .visual-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 300px;
    }

    .visual-card {
        padding: 1.25rem 1rem;
    }

    .visual-card-icon {
        width: 45px;
        height: 45px;
    }

    .visual-card h4 {
        font-size: 0.95rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }

    .carousel-indicators {
        bottom: 20px;
    }

    .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .visual-cards-grid {
        /*max-width: 280px;*/
        max-width: 347px;
    }

    .hero-feature {
        font-size: 0.8rem;
    }
}

@media (max-height: 600px) {
    .carousel-item {
        min-height: auto;
        padding: 0.5rem 0;
    }

    .hero-content,
    .visual-cards-container {
        min-height: auto;
        padding: 0.5rem 0;
    }
}
/* custom carousel css*/
.carousel-inner{
    /* margin-top: 4%; */
}
