/* Custom CSS for full-screen video background */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.hero-section video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
   justify-content: flex-end;
    justify-content: end;
    color: white;
    padding: 20px;
}
.model-name {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.btn-custom {
    margin: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 0px!important;
}
.btn-custom-primary {
    background-color: #06426a !important;
    border: none;
    color: #f4f4f4!important;
}
.btn-custom-secondary {
    background-color: #06426a !important;
    border: none;
    color: #f4f4f4!important;
}
.btn-custom-primary:hover, .btn-custom-secondary:hover {
    opacity: 0.9;
}