/* Kaira Template Integration Styles */
.section-title {
    font-family: 'Marcellus', serif;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 20px;
}

.element-title {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
}

.btn-link {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: #2980b9;
}

.image-zoom-effect {
    transition: transform 0.3s ease;
}

.image-zoom-effect:hover {
    transform: scale(1.05);
}

.border-animation-left {
    position: relative;
}

.border-animation-left::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.border-animation-left:hover::before {
    width: 100%;
}

/* Ensure Bootstrap compatibility */
.card {
    border: 1px solid #e9ecef;
    border-radius: 0.375rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background-color: #3498db;
    border-color: #3498db;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

.btn-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .swiper-slide {
        margin-bottom: 20px;
    }
    
    .banner-content {
        text-align: center;
    }
    
    .btn-left {
        justify-content: center;
    }
}

/* Custom VELVET platform styles */
#logo-div img {
    height: 50px;
    border-radius: 50%;
    border: 2.5px solid #fff;
}

.links_list a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.links_list a:hover,
.links_list a:focus {
    color: #3498db;
    outline: none;
}
