:root {
    --bs-primary: #6f42c1;
    --bs-primary-rgb: 111, 66, 193;
}

.hero-section {
    background: linear-gradient(135deg, #6f42c1 0%, #0d6efd 100%);
    color: white;
    padding: 10px 0;
    margin-bottom: 40px;
}

.example-section {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 20px 0;
}

.code-block {
    background-color: #282c34;
    border-radius: 5px;
    padding: 15px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    margin: 15px 0;
    color: #abb2bf;
    overflow-x: auto;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(111, 66, 193, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.carousel-demo {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.carousel-custom {
    max-width: 800px;
    margin: 0 auto;
}

.carousel-caption-custom {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
}

.method-card {
    transition: transform 0.3s;
    height: 100%;
}

.method-card:hover {
    transform: translateY(-5px);
}

.carousel-img {
    height: 400px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .carousel-img {
        height: 300px;
    }
}

.carousel-indicators-custom button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}
