body {
    font-family: 'Inter', Arial, sans-serif;
    background: #f7f8fa;
    color: #111
}

.hero {
    min-height: 620px;
    background: linear-gradient(135deg, #111 0%, #19202b 50%, #0b6b6f 100%);
    color: #fff;
    display: flex;
    align-items: center
}

.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif !important;
  font-weight: 600;
}

.card {
    border: 0;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06)
}

.card-img-top {
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px
}

.badge-soft {
    background: #e8fbff;
    color: #006b78
}

.btn {
    border-radius: 999px
}

.form-control,
.form-select {
    border-radius: 14px;
    padding: 12px
}

.admin-sidebar {
    min-height: 100vh;
    background: #111827
}

.admin-sidebar a {
    color: #d1d5db;
    text-decoration: none;
    display: block;
    padding: 10px 14px;
    border-radius: 12px
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    background: #263244;
    color: white
}

.table img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px
}

.hero-img {
    max-height: 360px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .28)
}

.hero-bg {
    background-size: cover, cover;
    background-position: center center, center center;
    background-repeat: no-repeat, no-repeat;
    background-attachment: scroll;
    position: relative;
    overflow: hidden
}

.hero-bg:after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 50%, rgba(255, 255, 255, .08), transparent 32%);
    pointer-events: none
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 820px
}

.hero-copy p {
    max-width: 620px
}

.hero-img {
    display: none
}

@media(max-width:768px) {
    .hero {
        min-height: 560px
    }

    .hero-bg {
        background-position: center center, center center;
        background-size: cover, cover;
        background-repeat: no-repeat, no-repeat
    }

    .hero h1 {
        font-size: 42px
    }
}