body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    scroll-behavior: smooth;
}

.navbar {
    background: linear-gradient(90deg, #152238, #2188c4);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand, .nav-link {
    color: #fff !important;
    font-weight: 500;
}

.hero {
    min-height: 90vh;
    background: linear-gradient(rgba(21,34,56,0.7), rgba(33,136,196,0.7)), url('../images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 60px 20px;
}

    .hero h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

.btn-primary {
    background: linear-gradient(90deg, #1d3b64, #2188c4);
    border: none;
    padding: 12px 28px;
    font-size: 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}
.btn-success {
    border: none;
    padding: 12px 28px;
    font-size: 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    background: linear-gradient(90deg, #2a6825, #49c421);
}
    .btn-primary:hover {
        transform: scale(1.05);
        box-shadow: 0 5px 20px rgba(33,136,196,0.5);
    }

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1d3b64;
    position: relative;
}

    .section-title::after {
        content: '';
        width: 60px;
        height: 4px;
        background: #2188c4;
        display: block;
        margin: 10px auto 0;
        border-radius: 2px;
    }

.card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

.footer {
    background: #152238;
    color: #fff;
    padding: 30px 0;
}
.stylish-brand {
    font-family: 'Cinzel', serif; /* Elegant serif font */
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    display: inline-flex;
    align-items: center;
}

    .stylish-brand span {
        font-size: 1.2rem;
        font-weight: 400;
        margin-left: 6px;
        color: #cfd9e8; /* softer tone */
        text-transform: capitalize;
        letter-spacing: 1px;
    }
