/* ============================
   Index Page Specific Styles
=============================== */

.hero-banner {
    position: relative;
    margin: 12px 0;
    min-height: 260px;
    border-radius: 12px;
    background-image: url('https://images.unsplash.com/photo-1523580846011-d3a5bc25702b?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.55), rgba(0,0,0,0.25));
    border-radius: 12px;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #fff;
    text-align: center;
    padding: 16px;
}

.welcome-section {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.welcome-section h2 {
    color: #006400;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.welcome-section h3 {
    color: #bb0000;
    margin: 1.5rem 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.welcome-section h4 {
    color: #000;
    margin: 1.5rem 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box {
    background: #f8f9fa;
    border-left: 4px solid #006400;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
}

.info-box p {
    margin: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.info-box ul {
    margin-left: 2rem;
}

.info-box li {
    margin: 0.5rem 0;
    line-height: 1.5;
}

.apply-btn {
    background: linear-gradient(90deg, #006400, #bb0000);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    margin: 1rem 0;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.apply-btn:hover {
    transform: scale(1.05);
}

/* Header styles for index page */
.header-left h1 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* Dark mode support */
body.dark .welcome-section {
    background: #1e1e1e;
    color: #eaeaea;
}

body.dark .info-box {
    background: #2d2d2d;
    border-left-color: #008000;
}

body.dark .welcome-section h2 {
    color: #4CAF50;
}

body.dark .welcome-section h3 {
    color: #ff6b6b;
}

body.dark .welcome-section h4 {
    color: #eaeaea;
}