body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

.container {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    
}

.service-section, .video-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transform: translateY(50px);
    animation: popup 8s forwards;
    background: linear-gradient(to bottom, #0a1001 20%, #2b2b2b 90%);
}

.service-section {
    background-color: #fff;
}

.service-content {
    text-align: center;
}

.styled-textban {
    font-family: 'Orbitron', sans-serif; 
    font-weight: 300; 
    font-size: 1.5em; 
    line-height: 1.2; 
    color: #eeeaea; 
}
.thumbnail-title{
    font-family: 'Orbitron', sans-serif;
     
    font-size: .7em; 
    line-height: 1.2;
    text-align: center;
    padding: 2%;
}

.highlighted1 {
    color: #d9a54a; 
    font-weight: 600; 
}

.service-box {
    max-width: 900px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 20px 10px 30px 40px rgba(224, 224, 245, 0.1);
    text-align: left;
    color: #fff;
}

.video-section {
    background-color: #f0f0f0;
}

.auto-play-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes popup {
    to {
        opacity: 10;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .service-section,
    .video-section {
        width: 100%;
        height: 50vh;
    }

    .title {
        font-size: 2rem;
       
    }
    .styled-textban {
        font-family: 'Orbitron', sans-serif; 
        font-weight: 100; 
        font-size: .7em; 
        line-height: 1.2; 
        color: #eeeaea; 
    }
    .highlighted1 {
        color: #d9a54a; 
        font-weight: 600; 
    }
}

.container1 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.category {
    margin-bottom: 40px;
}

h2 {
    margin-bottom: 20px;
    
    text-align: center;
    font-family: 'Orbitron', sans-serif; 
    font-weight: 300; 
    font-size: 1.1em; 
    line-height: 1.2; 
    color: #0e0c0c;
}

h1 {
    margin-bottom: 20px;
    
    text-align: center;
    font-family: 'Orbitron', sans-serif; 
    font-weight: 500; 
    font-size: 1.7em; 
    line-height: 1.5; 
    color: #0e0c0c;

}


.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: calc(25% - 20px); /* Adjusted for four thumbnails in a row */
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 100%;
    display: block;
}

.card-content {
    padding: 15px;
    text-align: center;
    font-size: 18px;
    color: #333;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .card {
        width: calc(100% - 20px); /* Full width on smaller screens */
    }

    h2 {
        font-size: 20px;
    }
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    background: linear-gradient(to bottom, #0a1001 20%, #2b2b2b 90%);
   
    color: #f8f3f3;
    padding: 30px 20px;
}

.footer-section {
    max-width: 300px;
    
}

.footer-section h3 {
    margin-bottom: 10px;
     color: #d9a54a;
     font-family: 'Orbitron', sans-serif;
     
    font-size: 1em; 
    line-height: 1.2;
}

.footer-section p, .footer-section a {
    color: #efebeb;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
     
    font-size: 1em; 
    line-height: 1.2;
}

.footer-section a:hover {
    color: #6f0806;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        margin-bottom: 20px;
        text-align: center;
    }
}