/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Figtree', sans-serif;
    background: #f3f4f6;
    color: #1f2937;
    line-height: 1.6;
}

/* ================= HEADER ================= */
header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

header h1 {
    font-size: 26px;
    font-weight: 700;
    color: #1d4ed8;
}

header a {
    text-decoration: none;
}

/* CONTAINER */
.header-container {
    max-width: 1200px;
    margin: auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* BRAND */
.brand h1 {
    font-size: 26px;
    font-weight: 800;
    color: #1d4ed8;
}

.brand p {
    font-size: 13px;
    color: #555;
    margin-top: 4px;
}

/* RIGHT SIDE */
.header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

/* NAV LINKS */
.nav-link {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #1d4ed8;
}

/* BUTTONS */
.btn-primary {
    padding: 10px 22px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37,99,235,0.35);
}

.btn-outline {
    padding: 10px 22px;
    border: 2px solid #2563eb;
    color: #2563eb;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #2563eb;
    color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .header-actions {
        width: 100%;
        justify-content: space-between;
    }
}
/* ================= HERO ================= */
section.bg-gradient-to-r {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    padding: 90px 20px;
    text-align: center;
    color: #ffffff;
}

section.bg-gradient-to-r h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 18px;
}

section.bg-gradient-to-r p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #dbeafe;
}

section.bg-gradient-to-r a {
    display: inline-block;
    background: #ffffff;
    color: #1d4ed8;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

section.bg-gradient-to-r a:hover {
    background: #e0e7ff;
}

/* ================= SECTION TITLE ================= */
h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #111827;
    text-align: center;
}

/* ================= SERVICES GRID ================= */
section.py-20 {
    padding: 80px 20px;
}

.max-w-7xl {
    max-width: 1200px;
    margin: auto;
}

.grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* ================= SERVICE CARD ================= */
.grid > div {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.grid > div:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.18);
    border-color: #2563eb;
}

.grid > div div:first-child {
    font-size: 42px;
    margin-bottom: 15px;
}

.grid > div h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.grid > div p {
    font-size: 15px;
    color: #4b5563;
}

/* ================= WHY US ================= */
section.bg-white {
    background: #ffffff;
}

section.bg-white .grid > div {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 10px;
}

section.bg-white .text-3xl {
    font-size: 28px;
    color: #2563eb;
}

/* ================= FOOTER ================= */
footer {
    background: #020617;
    padding: 35px 20px;
    text-align: center;
}

footer p {
    color: #c7d2fe;
    font-size: 14px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    section.bg-gradient-to-r h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 26px;
    }
}
