/* index.css */
/* Styles for NSMSIP */

html {
    scroll-behavior: smooth;
}

body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9; 
}
::-webkit-scrollbar-thumb {
    background: #94a3b8; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #64748b; 
}

/* Dynamic Hero Background */
.hero-bg {
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.95)), url('images/20240515105958counter.jpg?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    background-attachment: fixed;
}

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

.glass-dark {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Micro animations */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #34d399, #10b981); /* emerald-400 to emerald-500 */
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}
#mobile-menu.open {
    max-height: 400px;
    opacity: 1;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: #000;
    color: #fff;
    padding: 24px 8px;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    border-radius: 12px 0 0 12px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    z-index: 999;
    box-shadow: -4px 0 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.floating-cta:hover {
    background-color: #222;
    transform: translateY(-50%) translateX(-4px);
}

/* Swiper Custom Pagination */
.swiper-pagination-bullet {
    background: #94a3b8 !important;   /* slate-400 */
    opacity: 0.5 !important;
}
.swiper-pagination-bullet-active {
    background: #10b981 !important;   /* emerald-500 */
    opacity: 1 !important;
}
