* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #f17014, #f0ebe8);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    color: #fff;
    display: flex;
    flex-direction: column;
}

/* ── Header & Navigation ── */
#header {
    background-color: rgb(241, 112, 20);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 70px;
    box-sizing: border-box;
}

#imgtitle {
    display: flex;
    align-items: center;
    gap: 15px;
}

#title {
    color: white;
    margin: 0;
    font-size: 2rem;
}

#links {
    display: flex;
    gap: 10px;
}

.nav-btn {
    background-color: black;
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.nav-btn:hover, .nav-btn.active-page {
    color: rgb(241, 112, 20);
    background-color: white !important;
}

/* ── Main Container ── */
.container {
    padding: 40px 5%;
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Hero Section ── */
.hero-section {
    margin-bottom: 50px;
    padding: 20px;
}

.welcome-title {
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

.welcome-subtitle {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
}

.welcome-desc {
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6;
    color: #444;
}

.header-divider {
    height: 4px;
    width: 60px;
    background: black;
    margin: 0 auto;
    border-radius: 2px;
}

/* ── Dashboard Cards ── */
.dashboard-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    width: 350px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    color: #1e293b;
}

.feature-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    background-color: rgb(241, 112, 20);
    color: white !important;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.cta-button:hover {
    background-color: black;
}

/* ── Utilities ── */
.center-text {
    text-align: center;
}