﻿/* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    background-image: url('images/bg2.png');
    background-repeat:no-repeat;
    background-size:100%;
    line-height: 1.6;
}

/* ===== LAYOUT ===== */
.container {
    width: 88%;
    max-width: 1200px;
    margin: auto;
}

section {
    padding: 80px 0;
}

/* ===== HEADER ===== */
header {
    background: #ffffff;
    border-bottom: 1px solid #d9e2ec;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
}

.logo {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #0b3d91;
}

nav a {
    text-decoration: none;
    color: #334e68;
    margin-left: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

    nav a:hover {
        color: #0b3d91;
    }

/* ===== HERO ===== */
.hero {
    text-align: center;
    padding: 120px 0;
}

    .hero h1 {
        font-size: 48px;
        font-weight: 600;
        margin-bottom: 20px;
        color: #0b3d91;
    }

    .hero p {
        font-size: 20px;
        max-width: 850px;
        margin: auto;
        color: #486581;
    }

/* ===== GRID SYSTEM ===== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
}
.gradient-box {
    width: 10px;
    height: 10px;
    background: radial-gradient(circle at bottom left, orange, darkgray);
    /* Optional: Fallback background color */
    background-color: #ffffff;
}
/* ===== CARDS ===== */
.card {
    background: #ffffff;
    padding: 40px;
    border: 1px solid #d9e2ec;
}

    .card h2 {
        font-size: 20px;
        margin-bottom: 15px;
        color: #102a43;
    }

    .card p {
        font-size: 15px;
        color: #486581;
    }

/* ===== IMAGE PLACEHOLDER ===== */
.image-placeholder {
    width: 100%;
    height: 300px;
    background: #dde7f2;
    border: 1px solid #c3d0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #486581;
    margin: 30px 0;
    font-size: 14px;
    letter-spacing: 1px;
}

/* ===== HIGHLIGHT PANEL ===== */
.panel {
    background: #ffffff;
    padding: 50px;
    border: 1px solid #cbd6e2;
}

/* ===== FOOTER ===== */
footer {
    background: #ffffff;
    border-top: 1px solid #d9e2ec;
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
    color: #627d98;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
    font-weight: 600;
}

ul {
    margin-top: 15px;
    padding-left: 20px;
    color: #486581;
}

li {
    margin-bottom: 10px;
}
