body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f7f7f7;
}


/* Header styling */

header {
    background: linear-gradient(90deg, #0b4f8a 60%, #1976d2 100%);
    padding: 32px 0 24px 0;
    color: white;
    text-align: center;
    box-shadow: 0 4px 16px rgba(11, 79, 138, 0.12);
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 18px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 8px 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a {
    transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

.hero {
    text-align: center;
    background: url('img/R\ \(1\).jfif') no-repeat center center/cover;
    padding: 100px 20px;
    color: white;
}

.hero {
    border-radius: 24px;
    margin: 32px auto 24px auto;
    max-width: 900px;
    box-shadow: 0 8px 32px rgba(11, 79, 138, 0.18);
    background-blend-mode: overlay;
    background-color: rgba(11, 79, 138, 0.18);
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero h2 {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.hero .btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ff9800;
    color: white;
    text-decoration: none;
    margin-top: 20px;
    border-radius: 5px;
}

.hero .btn {
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.18);
    font-weight: 600;
    letter-spacing: 1px;
    transition: background 0.2s, box-shadow 0.2s;
}

.hero .btn:hover {
    background-color: #e68900;
    box-shadow: 0 4px 16px rgba(255, 152, 0, 0.28);
}

.features {
    display: flex;
    justify-content: space-around;
    background-color: #fff;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.features {
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(11, 79, 138, 0.10);
    margin: 0 auto 32px auto;
    max-width: 900px;
}

.features div {
    max-width: 300px;
    margin: 20px;
    text-align: center;
}

.features div {
    background: linear-gradient(120deg, #e3f2fd 80%, #fff 100%);
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(11, 79, 138, 0.08);
    padding: 24px 16px;
    margin: 18px 8px;
    transition: box-shadow 0.2s;
}

.features div:hover {
    box-shadow: 0 6px 24px rgba(11, 79, 138, 0.18);
}


/* Footer styling */

footer {
    text-align: center;
    padding: 20px 0;
    background: linear-gradient(90deg, #0b4f8a 60%, #1976d2 100%);
    color: white;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    box-shadow: 0 -4px 16px rgba(11, 79, 138, 0.12);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    margin: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
}

nav a.login-btn {
    background-color: #ffffff;
    color: #0b4f8a;
    border-radius: 5px;
    transition: background-color 0.2s;
}

nav a.login-btn:hover {
    background-color: #e0e0e0;
}

.cart-btn {
    background-color: #ff9800;
    color: white;
    padding: 6px 14px;
    border-radius: 5px;
    font-weight: bold;
}

.cart-btn:hover {
    background-color: #e68900;
}