/* ======================================================
   Global Reset & Base
====================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background: #ffffff;
    color: #1f2933;
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* ======================================================
   Header
====================================================== */
.header {
    background: #0f172a;
    color: #ffffff;
    padding: 32px 0;
}

.brand h1 {
    font-size: 30px;
    font-weight: 600;
}

.brand p {
    color: #cbd5e1;
    margin-top: 6px;
    font-size: 15px;
}

/* ======================================================
   Navigation
====================================================== */
.nav {
    background: #020617;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-flex {
    display: flex;
    gap: 26px;
    align-items: center;
}

.nav a {
    color: #e5e7eb;
    text-decoration: none;
    padding: 14px 0;
    font-weight: 500;
    font-size: 15px;
}

.nav a:hover {
    color: #38bdf8;
}

/* ======================================================
   Hero Section
====================================================== */
.hero {
    color: #ffffff;
    padding: 85px 0;
    text-align: center;
}

.hero-image {
    background:
        linear-gradient(rgba(15,23,42,0.75), rgba(15,23,42,0.75)),
        url("assets/images/hero.jpg");
    background-size: cover;
    background-position: center;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.hero p {
    max-width: 820px;
    margin: auto;
    color: #e5e7eb;
    font-size: 17px;
}

/* ======================================================
   Sections
====================================================== */
.section {
    padding: 70px 0;
}

.section.light {
    background: #f8fafc;
}

.section h2 {
    font-size: 28px;
    margin-bottom: 22px;
    color: #0f172a;
}

/* ======================================================
   Grid Layout
====================================================== */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 25px;
}

/* ======================================================
   Cards
====================================================== */
.card {
    background: #ffffff;
    padding: 22px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 14px;
}

.card h3 {
    margin-bottom: 10px;
    color: #020617;
    font-size: 18px;
}

.card p {
    font-size: 15px;
    color: #374151;
}

/* ======================================================
   Lists
====================================================== */
.list {
    margin-left: 20px;
}

.list li {
    margin-bottom: 8px;
    font-size: 16px;
}

/* ======================================================
   Contact Section
====================================================== */
.contact-box {
    background: #f8fafc;
    padding: 24px;
    border-left: 4px solid #38bdf8;
    margin-top: 20px;
    border-radius: 6px;
}

.contact-box p {
    margin-bottom: 6px;
}

/* ======================================================
   Footer
====================================================== */
.footer {
    background: #020617;
    color: #ffffff;
    text-align: center;
    padding: 22px 0;
    font-size: 14px;
}

.footer-small {
    color: #9ca3af;
    margin-top: 6px;
    font-size: 13px;
}

.disclaimer {
    margin-top: 22px;
    font-size: 14px;
    color: #555;
}

/* ======================================================
   Animations (Scroll + Hover)
====================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* Animation delays */
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* ======================================================
   Responsive (Mobile Friendly)
====================================================== */
@media (max-width: 768px) {

    .brand h1 {
        font-size: 26px;
    }

    .hero h2 {
        font-size: 28px;
    }

    .nav-flex {
        flex-wrap: wrap;
        gap: 18px;
    }

    .card img {
        height: 140px;
    }
}
