.hero-uptm {
    position: relative;
    height: 100vh;
    background: url('https://images.pexels.com/photos/256490/pexels-photo-256490.jpeg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #fff;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(13, 36, 86, 0.75),
            rgba(13, 36, 86, 0.55),
            rgba(0, 0, 0, 0.65));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: auto;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.hero-content h1 span {
    color: var(--gold);
}

.hero-content p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 24px;
}

.hero-btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0d2456, #1a3d8f);
    color: #fff;
    font-size: 14px;
    transition: 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(13, 36, 86, 0.4);
}

.hero-footer {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-bottom: 20px;
    font-size: 12px;
    opacity: 0.7;
}
