/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
.dark ::-webkit-scrollbar-track {
    background: #1f2937;
}
::-webkit-scrollbar-thumb {
    background: #5fc08e; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3ba56f; 
}

/* Glassmorphism utility */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dark .glass {
    background: rgba(31, 41, 55, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hero Section Overlay */
.hero-overlay {
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.5) 100%);
}

/* Swiper Customizations */
.swiper-pagination-bullet {
    background-color: #cbd5e1 !important;
    opacity: 0.7 !important;
}
.swiper-pagination-bullet-active {
    background-color: #3ba56f !important;
    opacity: 1 !important;
    width: 24px !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
}
.swiper-button-next, .swiper-button-prev {
    color: #3ba56f !important;
    background: rgba(255,255,255,0.8);
    width: 48px !important;
    height: 48px !important;
    border-radius: 50%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 20px !important;
}
.dark .swiper-button-next, .dark .swiper-button-prev {
    background: rgba(31, 41, 55, 0.8);
}

/* Image zoom effect on hover */
.img-zoom-container {
    overflow: hidden;
}
.img-zoom-container img {
    transition: transform 0.7s ease;
}
.img-zoom-container:hover img {
    transform: scale(1.1);
}
