@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #0F172A; /* Deep Navy */
    --accent-color: #3B82F6; /* Vibrant Blue */
    --secondary-color: #64748B;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --text-main: #1E293B;
    --text-muted: #64748B;
    /*--glass-bg: rgba(255, 255, 255, 0.8);*/
    --glass-bg: rgb(160 197 235 / 80%);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Local Asset Fixes for Bootstrap Icons */
@font-face {
    font-family: "bootstrap-icons";
    src: url("../vendor/bootstrap-icons/fonts/bootstrap-icons.woff2?v=1.11.0") format("woff2"), url("../vendor/bootstrap-icons/fonts/bootstrap-icons.woff?v=1.11.0") format("woff");
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    background-image: radial-gradient(#e2e8f0 0.5px, transparent 0.5px);
    background-size: 24px 24px; /* Subtle dot texture */
    overflow-x: hidden;
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar Glassmorphism */
.navbar {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    padding: 1.2rem 0;
    transition: var(--transition-smooth);
}

    .navbar.scrolled {
        padding: 0.8rem 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

.logo-text {
    font-weight: 800;
    font-size: 28px;
    letter-spacing: 2px;
    position: relative;
}

.nav-logo-1 {
    color: white;
    margin-right: 8px;
}

.nav-logo-2 {
    color: var(--accent-color);
    position: relative;
}

    .nav-logo-2::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 0%;
        height: 3px;
        background: var(--accent-color);
        transition: 0.4s;
    }

.logo-text:hover .nav-logo-2::before {
    width: 100%;
}
/* Hero Video Enhancements */
.hero-video-container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gallery Styles */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    cursor: pointer;
}

    .gallery-item img {
        transition: var(--transition-smooth);
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.masonry-grid {
    columns: 3 300px;
    column-gap: 1.5rem;
}

.masonry-item {
    display: inline-block;
    width: 100%;
    margin-bottom: 1.5rem;
}

/* Premium Cards */
.card {
    border: 1px solid rgba(226, 232, 240, 0.6);
    border-radius: 1.25rem;
    background: var(--bg-white);
    transition: var(--transition-smooth);
    overflow: hidden;
}

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        border-color: var(--accent-color);
    }

/* Section Styling */
.section-padding {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 60px;
}

    .section-title .badge {
        text-transform: uppercase;
        letter-spacing: 0.1em;
        padding: 0.6em 1.2em;
        margin-bottom: 1rem;
    }

/* Innovative Footer */
.footer-premium {
    background: var(--primary-color);
    color: #CBD5E1;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

    .footer-premium::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--accent-color), transparent);
    }

.footer-link {
    color: #94A3B8;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
    margin-bottom: 0.8rem;
}

    .footer-link:hover {
        color: var(--accent-color);
        transform: translateX(5px);
    }

.social-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    color: white;
    margin-right: 10px;
    transition: var(--transition-smooth);
}

    .social-icon:hover {
        background: var(--accent-color);
        color: white;
        transform: translateY(-3px);
    }

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

/* Team Section */
.team-card img {
    filter: grayscale(100%);
    transition: var(--transition-smooth);
}

.team-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Calendar Customization */
.calendar-container {
    border: none;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.calendar-day:hover {
    background: var(--bg-light);
    border-radius: 8px;
}

/* Dashboard Stat Cards */
.stat-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}

    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    }

/* Floating Register Button */
.floating-register-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--accent-color);
    color: #fff;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    z-index: 9999;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    animation: pulseGlow 2s infinite;
}

    /* Hover Effect */
    .floating-register-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        color: #fff;
    }

/* Subtle Pulse Animation */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 102, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 102, 0, 0);
    }
}

/* Mobile Optimization */
@media (max-width: 576px) {
    .floating-register-btn {
        padding: 12px 18px;
        font-size: 14px;
        bottom: 20px;
        right: 15px;
    }
}
