/* VAS Novantrax - Main Stylesheet */

/* Pattern Background for specific sections */
.pattern-bg {
    background-color: #042f2e;
    background-image: radial-gradient(#14b8a6 0.5px, transparent 0.5px), radial-gradient(#14b8a6 0.5px, #042f2e 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    background-attachment: fixed;
}

/* Glassmorphism Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
}

/* Swiper Zoom Animation CSS */
.swiper-slide-active img {
    transform: scale(1.1) !important;
}

/* Custom Scrollbar for a polished look */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9; 
}
::-webkit-scrollbar-thumb {
    background: #14b8a6; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0d9488; 
}