/* Shared Portal Styles */
:root {
    --primary-navy: #002366;
    --accent-gold: #FFD700;
    --soft-gold: #FFF8E1;
    --glass-white: rgba(255, 255, 255, 0.9);
    --deep-navy: #001a4d;
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(0, 35, 102, 0.85), rgba(0, 35, 102, 0.85)), 
                url('../img/bright.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh; /* Reduced for inner pages */
    display: flex;
    align-items: center;
    color: white;
}

/* Features Cards */
.feature-card {
    padding: 2rem;
    transition: all 0.3s ease;
    border-radius: 12px;
    height: 100%;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,35,102,0.1);
    border-bottom: 4px solid var(--accent-gold);
}
.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

/* Statistics Section */
#stats {
    background: var(--primary-navy);
    color: white;
    padding: 5rem 0;
}

/* Chat Widget */
#chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    z-index: 1000;
    display: none;
}
.chat-bubble {
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--accent-gold);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1001;
}

/* Form Styles */
.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-gold);
}

.glass-card {
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
