/* Theme Name: MOSSVIETNAM.COM */

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    background-color: #111;
    color: #fff;
}

.navbar {
    background-color: transparent;
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    padding: 1rem;
}

.header {
    position: relative;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.header-content {
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.header h1 {
    font-size: 3rem;
    color: #fff;
    letter-spacing: 4px;
}
#videos {
    min-height: 350px;
}
#videos .container{
    display: flex;
    position: relative;
    gap: 20px
}
.videos-wrapper{
    position: relative;
    width: 100%;
}
.list-videos{
    position: absolute;
    top: -110px;
    left: 0;
    right: 0;
}
.section-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
    color: #fff;
    width: 200px;
}

.film-slide {
    height: 300px; /* adjust as needed */
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.film-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.film-slide:hover img {
    transform: scale(1.1);
}

.film-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.film-slide:hover .film-overlay {
    opacity: 1;
}

.film-overlay i {
    font-size: 3.5rem;
    color: #fff;
    transition: transform 0.4s ease;
}

.film-slide:hover .film-overlay i {
    transform: scale(1.2);
}

.film-title {
    text-align: center;
    font-size: 1.1rem;
    margin-top: 15px;
    text-transform: uppercase;
    font-weight: bold;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-image{
    width: 100%;
    height: auto;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.icon i {
  transition: color 0.3s ease;
}

.service-card:hover .icon i {
  color: #ffc107; /* gold/yellow on hover */
}

.read-more-link{
    color: #dc493a;
    text-decoration: none;
}
.service-description {
    color: #c4e5f6;
    font-size: 0.9rem;
    margin-top: 10px;
}
.year-experience{
    font-size: 8rem;
    font-weight: bold;
    line-height: 1;
}
.stat-number{
    font-size: 2rem;
    font-weight: bold;
}
.staff-slide img{
max-height: 300px; /* adjust as needed */
}
.staff-info{

}
.staff-name{
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 10px;
}
.staff-title{
    font-size: 1rem;
    color: #d34738;
}
.site-logo{
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.site-footer {
    padding: 60px 0 15px;
    position: relative;
    background: #1a1a1a;
    z-index: 1;
    color: #d1d1d1;
}
.site-footer a{
    text-decoration: none;
    color: #d1d1d1;
}
.footer-img{
    max-height: 64px;
    width: auto;
}
@media (max-width: 767.98px) {
  #videos .container {
    flex-direction: column;
  }
}