/* =========================
   GLOBAL THEME
========================= */

html, body {
    background-color: #0B132B;
    color: #FFFFFF;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
}

/* =========================
   NAVBAR
========================= */

.navbar {
    background-color: #0B132B !important;
}

/* =========================
   HERO SECTION
========================= */

.hero {
    background: linear-gradient(135deg, #0B132B, #1C2541);
    padding: 120px 0 160px;
    text-align: center;
}

.hero h1 {
    font-size: 52px;
    font-weight: 700;
}

.hero p {
    color: #cfcfcf;
    font-size: 18px;
}

/* =========================
   BUTTONS
========================= */

.btn-warning {
    background-color: #D4A017 !important;
    border: none !important;
    color: #000000 !important;
    font-weight: 500;
}

.btn-outline-warning {
    border: 2px solid #D4A017 !important;
    color: #D4A017 !important;
    font-weight: 500;
}

/* =========================
   FLOATING WHITE CARDS
========================= */

.action-section {
    margin-top: -90px;
    padding-bottom: 80px;
}

.action-card {
    background: #FFFFFF;
    color: #ffffff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    transition: 0.3s;
}

.action-card:hover {
    transform: translateY(-10px);
}

.action-card p {
    color: #555;
}

/* =========================
   DARK SECTION
========================= */

.section-dark {
    background-color: #0B132B;
    padding: 90px 0;
}

/* =========================
   CATEGORY CARDS
========================= */

.category-card {
    background-color: #1C2541;
    border-radius: 18px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    transition: 0.3s;
}

.category-card:hover {
    transform: scale(1.04);
}

.category-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.category-card h5 {
    padding: 18px;
}

/* =========================
   WHITE STATS SECTION
========================= */

.stats-section {
    background-color: #FFFFFF;
    color: #000;
    padding: 90px 0;
}

.stat-box h2 {
    color: #D4A017;
    font-weight: 700;
}

.stat-box p {
    font-weight: 500;
}

/* =========================
   CTA
========================= */

.cta {
    background: linear-gradient(135deg, #D4A017, #f1c232);
    padding: 90px 0;
    text-align: center;
    color: #000;
}

/* =========================
   ANIMATION
========================= */

body {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

