@charset "UTF-8";

/* Custom Styles for depth transition */
.slide-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.0s ease-in-out, transform 1.0s ease-in-out;
    transform: scale(1.1);
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.slide-container.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
    pointer-events: auto;
}

/* Particle Canvas */
#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Content Overlay in Slider */
.slide-content {
    z-index: 10;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.slide-container.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

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

.glass-dark {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Plan Card Hover */
.plan-card {
    transition: all 0.3s ease;
}
.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #888; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555; 
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Hero Slider Animation (GPU Accelerated) */
@keyframes slideLeft {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}
@keyframes slideRight {
    0% { transform: translate3d(-50%, 0, 0); }
    100% { transform: translate3d(0, 0, 0); }
}
.hero-slide-row {
    display: flex;
    width: max-content;
    will-change: transform;
}
.animate-hero-left {
    animation: slideLeft 60s linear infinite;
}
.animate-hero-right {
    animation: slideRight 60s linear infinite;
}
.hero-img {
    width: 30vw;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    filter: brightness(0.7);
}
@media (max-width: 768px) {
    .hero-img { width: 60vw; }
}