.video-background {
    position: absolute;  
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    object-fit: cover;  
    transform: translate(-50%, -50%); /* Centers video properly */
    min-width: 100%;
    min-height: 100%;
    z-index: -1;  
}

/* Casino Title Gradient & Glow */
.casino-title {
    font-size: 4rem; /* Increase size for better readability */
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ff9800, #673ab7, #03a9f4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: white;
    text-shadow: 0 0 15px rgba(255, 152, 0, 1), 0 0 30px rgba(103, 58, 183, 1), 
                 0 0 45px rgba(3, 169, 244, 1);
    animation: casinoFlicker 1.5s infinite alternate;
}

/* Subtitle Gradient & Glow */
.casino-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    background: linear-gradient(90deg, #ff9800, #03a9f4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: white;
    text-shadow: 0 0 10px rgba(255, 152, 0, 1), 0 0 20px rgba(3, 169, 244, 1);
    animation: glowPulse 2s infinite alternate;
}

.header {
    position: sticky;
    top: 0;
    width: 100%;
   
    display: flex;
    align-items: center;
    justify-content: center;
   
  
    z-index: 1000;
}
.logo img {
    max-width: 100%;
    height: auto;
}


/* Casino Flickering Animation */
@keyframes casinoFlicker {
    0% {
        opacity: 1;
        text-shadow: 0 0 15px rgba(255, 152, 0, 1), 0 0 30px rgba(103, 58, 183, 1), 
                     0 0 45px rgba(3, 169, 244, 1);
    }
    50% {
        opacity: 0.8;
        text-shadow: 0 0 10px rgba(255, 152, 0, 0.8), 0 0 20px rgba(103, 58, 183, 0.8), 
                     0 0 35px rgba(3, 169, 244, 0.8);
    }
    100% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(255, 152, 0, 1), 0 0 40px rgba(103, 58, 183, 1), 
                     0 0 60px rgba(3, 169, 244, 1);
    }
}

/* Smooth Pulsing Glow */
@keyframes glowPulse {
    0% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(255, 152, 0, 1), 0 0 20px rgba(3, 169, 244, 1);
    }
    100% {
        opacity: 0.9;
        text-shadow: 0 0 15px rgba(255, 152, 0, 1), 0 0 25px rgba(3, 169, 244, 1);
    }
}

  


/* Section Styling */
.about-style-four {
    background-color: #ffffff;
    padding: 50px 20px;
}

/* Title Section */
.custom-content-box h2 {
    font-size: 28px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 10px;
}

.custom-content-box p {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Solution Container Styling */
.solution-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.solution-cards-column .solution-card {
    flex: 1;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Dark Card Styling */
.dark-card {
    background-color: #d4d4d4;
    color: #ffffff;
    border: 2px solid transparent;
}

.dark-card:hover {
    transform: translateY(-10px);
    border: 2px solid #4b0082;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

/* Orange Card Styling */
.orange-card {
    background-color: 6377ee;
    color: #ffffff;
    border: 2px solid transparent;
}

.orange-card:hover {
    transform: translateY(-10px);
    border: 2px solid #6377ee;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .solution-container {
        flex-direction: column;
        gap: 15px;
    }
}
