/* 
   FILE PATH: wwwroot/css/landing-page.css
   Professional Landing Page Styles for iBITS Portal
*/

/* ============================================================
   ROOT VARIABLES
   ============================================================ */
:root {
    --bg-deep: #030a16;
    --gold-primary: #D4AF37;
    --gold-light: #F9E076;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --text-muted: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   GLOBAL STYLES
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-deep);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ============================================================
   BACKGROUND EFFECTS
   ============================================================ */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

#matrixCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

/* ============================================================
   FLOATING NAVIGATION
   ============================================================ */

/*.floating-nav {
    display: flex;*/ /* Ensure it's not display: none */
/*opacity: 1;*/ /* Ensure it's not opacity: 0 */
/*transform: translateY(0);*/ /* Ensure it's not moved off-screen */
/*position: fixed;*/ /* Keeps it at the top while scrolling */
/*top: 0;
    width: 100%;
    z-index: 1000;
    display: flex background: rgba(3, 10, 22, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    height: 100px;
}*/
.floating-nav {
    display: flex;
    background: rgba(3, 10, 22, 0.95);
    opacity: 1;
    transform: translateY(0);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    height: 100px;
}



    .floating-nav.visible {
        top: 0;
    }

.nav-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    box-sizing: border-box;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    margin-top: 10px;
    padding: 0;
    margin-left: auto;
    align-items: center;
}

    .nav-links a {
        color: #fff;
        text-decoration: none;
        font-weight: 700;
        font-size: 1.1rem;
        transition: var(--transition-smooth);
        position: relative;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold-primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--gold-primary);
        }

            .nav-links a:hover::after {
                width: 100%;
            }

    .nav-links li:last-child {
        margin-left: 1rem;
    }


.btn-enter {
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-primary);
    border-radius: 20px;
    color: var(--gold-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
}

    .btn-enter:hover {
        background: var(--gold-light);
        transform: translateY(-3px);
        box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
        color: black;
    }




/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 1;
}

.hero-header {
    position: absolute;
    top: 30px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.pup-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
}

.header-text {
    display: flex;
    flex-direction: column;
}

.uni-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.campus-name {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--gold-primary);
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero-logo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: var(--gold-primary);
    filter: blur(100px);
    opacity: 0.2;
    border-radius: 50%;
    animation: pulseGlow 4s infinite alternate;
}

.hero-logo {
    width: 400px;
    height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.7));
    position: relative;
    z-index: 2;
    transition: filter 0.3s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #fff;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--gold-primary) 50%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px var(--gold-glow);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}


.btn-secondary-cta {
    padding: 18px 40px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    border: 2px solid var(--glass-border);
    font-weight: 600;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 12px;
}

    .btn-secondary-cta:hover {
        border-color: var(--gold-primary);
        background: rgba(212, 175, 55, 0.1);
        transform: translateY(-3px);
        color: #fff;
    }

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
    z-index: 5;
    pointer-events: none;
}

    .scroll-indicator i {
        font-size: 1.5rem;
        color: var(--gold-primary);
    }

/* ============================================================
   SECTION SPACING
   ============================================================ */
.section-spacing {
    padding: 8rem 2rem;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-primary);
    border-radius: 20px;
    color: var(--gold-primary);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.02) 50%, transparent 100%);
}

/* Three Core Pillars Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    margin-bottom: 5rem;
}

.pillar-card {
    padding: 3rem 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
}

    .pillar-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--gold-primary);
        box-shadow: 0 25px 70px rgba(212, 175, 55, 0.2);
    }

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gold-primary);
    transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 0 30px var(--gold-glow);
}

.pillar-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.pillar-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1rem;
}

/* Development Team Section */
.team-section {
    margin-top: 5rem;
    padding: 4rem 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Role-Based Team Layout */
.role-group {
    margin-bottom: 2.5rem;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

    .role-group:hover {
        background: rgba(212, 175, 55, 0.03);
        border-color: var(--gold-primary);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

.role-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

    .role-header i {
        font-size: 2rem;
        color: var(--gold-primary);
    }

    .role-header h4 {
        font-size: 1.3rem;
        font-weight: 700;
        color: #fff;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

.role-members {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.team-member-role {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

    .team-member-role:hover {
        transform: translateX(5px);
        background: rgba(212, 175, 55, 0.1);
        border-color: var(--gold-primary);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

    .team-member-role i {
        font-size: 2rem;
        color: var(--gold-primary);
        flex-shrink: 0;
        transition: var(--transition-smooth);
    }

    .team-member-role:hover i {
        transform: scale(1.15);
        color: var(--gold-light);
    }

    .team-member-role span {
        font-size: 0.95rem;
        font-weight: 600;
        color: #fff;
        line-height: 1.3;
    }

.team-footer {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.tech-info {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.tech-badge-large {
    padding: 12px 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-primary);
    border-radius: 25px;
    font-size: 0.95rem;
    color: var(--gold-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition-smooth);
}

    .tech-badge-large:hover {
        background: var(--gold-primary);
        color: #000;
        transform: translateY(-3px);
        box-shadow: 0 10px 30px var(--gold-glow);
    }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-card {
    padding: 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

    .about-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--gold-primary);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }

.about-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.about-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

.card-stats {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-mini {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gold-primary);
    font-weight: 600;
}

    .stat-mini i {
        font-size: 1.1rem;
    }

/* Interactive Card */
.interactive-card {
    cursor: pointer;
}

    .interactive-card:hover .about-icon {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 0 30px var(--gold-glow);
    }

    .interactive-card:hover .stat-mini {
        color: var(--gold-light);
    }

.about-image {
    position: relative;
}

.image-card {
    position: relative;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    overflow: hidden;
}

    .image-card img {
        width: 100%;
        height: auto;
        border-radius: 20px;
        filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
    }

.image-overlay {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    right: 3rem;
}

.overlay-badge {
    padding: 15px 25px;
    background: rgba(3, 10, 22, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 600;
}

    .overlay-badge i {
        color: var(--gold-primary);
        font-size: 1.3rem;
    }

/* Pulse Badge Animation */
.pulse-badge {
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 var(--gold-glow);
    }

    50% {
        box-shadow: 0 0 20px 5px var(--gold-glow);
    }
}

/* Tech Badges */
.tech-badges {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tech-badge {
    padding: 8px 16px;
    background: rgba(3, 10, 22, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold-primary);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--gold-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: right;
}

/* Interactive Image */
.interactive-image {
    transition: var(--transition-smooth);
}

    .interactive-image:hover {
        transform: scale(1.02);
    }

        .interactive-image:hover .tech-badge {
            background: var(--gold-primary);
            color: #000;
        }

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    padding: 3rem 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .feature-card:hover::before {
        transform: scaleX(1);
    }

    .feature-card:hover {
        transform: translateY(-8px);
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--gold-primary);
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    }

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

    .feature-icon.qr-code {
        background: rgba(139, 92, 246, 0.1);
        border: 1px solid rgba(139, 92, 246, 0.3);
        color: #a78bfa;
    }

    .feature-icon.payment {
        background: rgba(34, 197, 94, 0.1);
        border: 1px solid rgba(34, 197, 94, 0.3);
        color: #4ade80;
    }

    .feature-icon.analytics {
        background: rgba(59, 130, 246, 0.1);
        border: 1px solid rgba(59, 130, 246, 0.3);
        color: #60a5fa;
    }

    .feature-icon.events {
        background: rgba(236, 72, 153, 0.1);
        border: 1px solid rgba(236, 72, 153, 0.3);
        color: #f472b6;
    }

    .feature-icon.records {
        background: rgba(251, 146, 60, 0.1);
        border: 1px solid rgba(251, 146, 60, 0.3);
        color: #fb923c;
    }

    .feature-icon.security {
        background: rgba(212, 175, 55, 0.1);
        border: 1px solid var(--gold-primary);
        color: var(--gold-primary);
    }

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-tags {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 14px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--gold-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature-stat {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

    .feature-stat i {
        color: var(--gold-primary);
        font-size: 1.1rem;
    }

/* Interactive Hover Effect */
.interactive-hover {
    cursor: pointer;
}

    .interactive-hover:hover .feature-stat {
        color: var(--gold-primary);
    }

        .interactive-hover:hover .feature-stat i {
            animation: pulse 1s infinite;
        }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* ============================================================
   STATISTICS SECTION
   ============================================================ */
.statistics-section {
    background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.03) 50%, transparent 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.stat-card {
    padding: 3rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

    .stat-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .stat-card:hover::before {
        opacity: 1;
    }

    .stat-card:hover {
        transform: translateY(-8px);
        border-color: var(--gold-primary);
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    }

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--gold-primary);
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

    .stat-number::after {
        content: '+';
        margin-left: 5px;
        color: var(--gold-primary);
    }

.stat-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.stat-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

.stat-trend {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gold-primary);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

    .stat-trend i {
        font-size: 1rem;
    }

/* Interactive Stat Cards */
.interactive-stat {
    cursor: pointer;
}

    .interactive-stat:hover .stat-icon {
        transform: scale(1.15) rotate(360deg);
        transition: transform 0.6s ease;
    }

    .interactive-stat:hover .stat-number {
        color: var(--gold-primary);
        text-shadow: 0 0 20px var(--gold-glow);
    }

/* ============================================================
   CALL-TO-ACTION SECTION
   ============================================================ */
.cta-section {
    background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.05) 100%);
}

.cta-content {
    position: relative;
    text-align: center;
    padding: 2rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: var(--gold-primary);
    filter: blur(150px);
    opacity: 0.1;
    border-radius: 50%;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.cta-content > p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 22px 50px;
    background: var(--gold-primary);
    color: #000;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 1;
}

    .btn-cta-large:hover {
        background: var(--gold-light);
        transform: translateY(-4px);
        box-shadow: 0 20px 60px rgba(212, 175, 55, 0.5);
        color: #000;
    }

.cta-note {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

    .cta-note i {
        color: var(--gold-primary);
    }
/* ============================================================
   FOOTER SECTION
   ============================================================ */

.footer {
    /* Using your provided container design */
    width: 100%;
    padding: 2rem 3rem;
    /*    background: var(--glass-bg);*/
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    /*    border-radius: 10px;
    margin: 40px 20px;*/
    transition: var(--transition-smooth);
    color: white;
    font-family: sans-serif;
    margin-top: auto;
    background: var(--glass-bg, rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}



.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Sections Styling */
.footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

    .footer-section.left {
        align-items: flex-start;
    }

    .footer-section.right {
        align-items: flex-end;
    }

    /* Left Section: Text and Logo */
    .footer-section h3 {
        margin: 0 0 10px 0;
        font-size: 1.2rem;
        font-weight: bold;
    }
/* Wrapper para sa Logo at Text */
.footer-brand {
    display: flex;
    align-items: center; /* Pantay na vertical alignment */
    gap: 15px; /* Puwang sa pagitan ng logo at text */
}

    /* Siguraduhin na walang extra margin ang text na sisira sa alignment */
    .footer-brand h3 {
        margin: 0;
        font-size: 1.2rem;
        font-weight: bold;
        color: white; /* O gamitin ang var(--gold-primary) kung gusto mong gold ang text */
    }

/* Optional: Baguhin ang sukat ng logo circle kung kailangan */
.footer-logo-circle {
    width: 50px;
    height: 50px;
    flex-shrink: 0; /* Para hindi mapitpit ang logo */
}

    .footer-logo-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.footer-logo-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
}

    .footer-logo-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Center Section: Copyright */
.footer-section.center p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Right Section: Icons */
.footer-section h4 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
}

.social-icons .icon {
    font-size: 24px; /* Change size */
    text-decoration: none;
    margin-right: 15px;
}

.fb i {
    color: #1877F2; /* Official Facebook blue */
}

.mail i {
    color: #ea4335; /* Email red (optional) */
}

.icon:hover i {
    opacity: 0.7; /* Simple hover effect */
}



/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0% {
        opacity: 0.15;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0.25;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ============================================================
   AOS ANIMATION LIBRARY SUPPORT
   ============================================================ */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

    [data-aos].aos-animate {
        opacity: 1;
    }

[data-aos="fade-up"] {
    transform: translateY(50px);
}

    [data-aos="fade-up"].aos-animate {
        transform: translateY(0);
    }

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

    [data-aos="fade-right"].aos-animate {
        transform: translateX(0);
    }

[data-aos="fade-left"] {
    transform: translateX(50px);
}

    [data-aos="fade-left"].aos-animate {
        transform: translateX(0);
    }

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

    [data-aos="zoom-in"].aos-animate {
        transform: scale(1);
    }

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-logo {
        width: 320px;
        height: 320px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .role-members {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section-spacing {
        padding: 4rem 1rem;
    }

    .hero-header {
        top: 20px;
        left: 20px;
        right: 20px;
    }

    .pup-logo {
        width: 45px;
        height: 45px;
    }

    .uni-name {
        font-size: 0.8rem;
    }

    .campus-name {
        font-size: 0.7rem;
    }

    .hero-logo {
        width: 150px;
        height: 150px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary-cta,
    .btn-secondary-cta {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pillar-card {
        padding: 2rem 1.5rem;
    }

    .team-section {
        padding: 2rem 1.5rem;
    }

    .team-title {
        font-size: 1.8rem;
    }

    .role-group {
        padding: 1.5rem;
    }

    .role-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

        .role-header i {
            font-size: 1.5rem;
        }

        .role-header h4 {
            font-size: 1.1rem;
        }

    .role-members {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .team-member-role {
        padding: 0.875rem 1rem;
    }

        .team-member-role i {
            font-size: 1.5rem;
        }

        .team-member-role span {
            font-size: 0.85rem;
        }

    .tech-badge-large {
        font-size: 0.8rem;
        padding: 10px 18px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content > p {
        font-size: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .nav-brand {
        font-size: 1.1rem;
    }

    .btn-nav-cta {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}
