.video-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 30px auto;
    max-width: 1000px;
    background: rgba(255, 239, 211, 0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.heading-live {
    text-align: center;
    color: #BF360C;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 660px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.darshan-info {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
}

.darshan-info h2 {
    color: #a32525;
    margin-bottom: 10px;
}

.darshan-info p {
    color: #5a3c2a;
    line-height: 1.6;
}

@media (max-width: 768px) {

    .video-container {
        width: 100%;  /* Adjust width to fit mobile screens */
        padding: 20px; /* Reduce padding for better spacing */
        margin-top: 30px; /* Move downward */
    }
    .video-wrapper {
        padding-top: 20px; /* Adjust this value as needed */
    }
    .darshan-info {
        padding: 10px;
    }

    .darshan-info h2 {
        font-size: 1.2rem;
    }

    .darshan-info p {
        font-size: 0.9rem;
    }
}