/* =========================
   GLOBAL RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;

    background-color: #f8fafc;
    color: #1e293b;
    line-height: 1.6;
}
h1{
    color: #26249cb4
}
/* =========================
   CONTAINER
========================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================
   HEADER
========================= */
header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

header p {
    text-align: center;
    font-size: 14px;
    color: #64748b;
    padding: 8px 0;
}

/* =========================
   NAVBAR
========================= */
header nav {
    width: 100%;
    background: #f5f5e8;
    position: relative;
    transition: all 0.3s ease;
    z-index: 1000;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

header nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

header nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 12px 0;
    gap: 20px;
}

header nav ul li {
    list-style: none;
}

header nav ul li a {
    text-decoration: none;
    color: #334155;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

header nav ul li a:hover {
    background-color: #0ea5e9;
    color: #ffffff;
}

/* =========================
   HERO SECTION
========================= */
.hero {
    background: #d1e4e3;
    padding: 60px 40px;
    margin: 30px auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

/* Hero Layout */
.outer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.top {
    font-size: 28px;
    font-weight: 600;
    color: #0f172a;
}

.bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    margin-top: 10px;
}

.bottom-left {
    flex: 1;
    font-size: 16px;
    color: #475569;
}
.bottom-left h3{
    margin-top: 20px;
}

.bottom-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px
}

/* =========================
   BUTTON
========================= */
.blue-btn {
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 20px;

    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(37, 99, 235, 0.9);

    color: white;
    backdrop-filter: blur(8px);

    cursor: pointer;
    transition: all 0.35s ease;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    max-width: 200px;
}

.blue-btn:hover {
    background: rgba(37, 99, 235, 1);
    transform: scale(1.05);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.12);
}

.blue-btn:active {
    transform: scale(0.98);
}
/* =========================
   FEATURES SECTION
========================= */
.features {
    margin: 60px 0;
}

.features h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 600;
    color: #0f172ad3;
}

.feature-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.card {
    background: #eee3fc;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.card h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #1e293bbe;
}

.card p {
    font-size: 14px;
    color: #64748b;
}

/* =========================
   FOOTER
========================= */
footer {
    background: #0f172a;
    color: #cbd5e1;
    text-align: center;
    padding: 25px 0;
    margin-top: 80px;
    font-size: 14px;
}

/* =========================
   LOGO
========================= */
.logo {
    width: 120px;
}

/* =========================
   RESPONSIVE DESIGN
========================= */
@media (min-width: 768px) {

    .feature-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .bottom {
        flex-wrap: nowrap;
    }

    header nav ul {
        justify-content: flex-end;
        padding-right: 40px;
    }
}

@media (max-width: 600px) {

    .hero {
        padding: 40px 20px;
    }

    .top {
        font-size: 22px;
    }

    .bottom-left {
        font-size: 14px;
    }

    header nav ul {
        flex-direction: column;
        gap: 10px;
    }
}