:root {
    --primary-color: #0b1b3f; /* Navy Blue */
    --accent-color: #ff6600;  /* Orange Accent */
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.hero {
    background: url('https://cdn1.npcdn.net/images/1717730263c79ff5daa6e575c1b89559df0f1206c2.webp?md5id=882132e4d6bca5186438b69d496890d3&new_width=1000&new_height=1000&size=max&w=1724746236&from=png&type=10') center/cover no-repeat;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(11, 27, 63, 0.75);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    margin: 15px 0 30px;
    color: #ddd;
}

.btn-primary {
    background-color: var(--accent-color);
    border: none;
}

.btn-primary:hover {
    background-color: #e65500;
}

.btn-outline-light:hover {
    color: var(--accent-color);
    background-color: #fff;
    border-color: #fff;
}

.section {
    padding: 80px 0;
}

h2.section-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 50px;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.category-card {
    border: none;
    transition: all 0.3s ease;
    background: white;
    border-radius: 10px;
}

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

.cta {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta .btn-light {
    color: var(--primary-color);
}

footer {
    background: #0a1228;
    color: #aaa;
    padding: 40px 0;
    font-size: 0.9rem;
}

footer a {
    color: var(--accent-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}