
/* Updated CSS */

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin: 0;
        background: linear-gradient(to right, #141e30, #243b55);
        color: #fff;
    }
    
    img {
        width: 120px;
        border-radius: 90px;
        padding: 5px;
        background: #fff;
    }
    
    h1, h2, h3 {
        margin: 10px 0;
        text-align: center;
    }
    
    p {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 20px;
    }
    
    header {
        padding: 20px;
        text-align: center;
    }
    
    Booking Section 
    #booking {
        text-align: center;
        margin: 30px auto;
        padding: 20px;
    }
    
    .btn {
        display: inline-block;
        margin: 10px;
        padding: 12px 20px;
        background-color: #1a73e8;
        color: white;
        border: none;
        border-radius: 30px;
        text-decoration: none;
        font-size: 16px;
        transition: background-color 0.3s ease;
    }
    
    .btn:hover {
        background-color: #0c52b3;
    }
    
    .btn.whatsapp {
        background-color: #25D366;
    }
    
    .center-section {
        text-align: center;
        margin-top: 20px;
    }
    
    .video-container {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        max-width: 100%;
        margin: auto;
    }
    
    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    .testimonial-form {
        max-width: 600px;
        margin: 40px auto;
        text-align: center;
        background: rgba(255, 255, 255, 0.05);
        padding: 20px;
        border-radius: 10px;
    }
    
    .testimonial-form textarea,
    .testimonial-form input {
        width: 90%;
        padding: 10px;
        margin: 10px 0;
        border-radius: 5px;
        border: none;
    }
    
    .testimonial-form button {
        background-color: #1a73e8;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }
    
    .testimonial-form button:hover {
        background-color: #0c52b3;
    }
    
    .content-section {
        display: none;
        padding: 20px;
    }
        
    /* Footer  */
    footer {
        text-align: center;
        margin-top: 50px;
        color: #cccccc;
    }
    
    footer a {
        color: #fdf394;
        text-decoration: none;
        margin: 0 12px;
        font-weight: 500;
    }
    
    footer a:hover {
        text-decoration: underline;
    }
    
    /* Sidebar */
    .sidebar {
        position: fixed;
        top: 10px;
        left: 10px;
        z-index: 9999;
    }
    
    .hamburger {
        cursor: pointer;
        width: 30px;
        height: 22px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .hamburger div {
        background-color: white;
        height: 4px;
        border-radius: 2px;
    }
    
    #navMenu {
        list-style: none;
        margin-top: 10px;
        padding: 0;
        display: none;
        background: #2c3e50;
        border-radius: 5px;
    }
    
    #navMenu.open {
        display: block;
    }
    
    #navMenu li {
        padding: 10px 20px;
        cursor: pointer;
        border-bottom: 1px solid #444;
        color: #fff;
    }
    
    #navMenu li:hover {
        background-color: #34495e;
    }
    /* Center ALL booking buttons
    #booking {
    text-align: center;
    padding: 40px 20px;
    }

    #booking .btn,
    #booking a,
    #booking button,
    #booking .razorpay-payment-button {
    display: inline-block;
    margin: 12px auto;
    text-align: center;
    }

    /* WhatsApp button specific color */
    /* #booking .btn.whatsapp {
    background-color: #25D366;
    }

    #booking .btn.whatsapp:hover {
    background-color: #1ebe5a;
    } */
    
    /* Force ALL booking buttons to center */
    #booking {
    text-align: center;
    }

    #booking .btn,
    #booking a.btn,
    #booking button,
    #booking .razorpay-payment-button {
    display: inline-block !important;
    margin: 12px auto !important;
    float: none !important;
    text-align: center !important;
    }



    /* Center and group booking buttons */
    .btn-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    }

    .btn-group .btn {
    width: 220px;
    text-align: center;
    }

    /* Side-by-side on bigger screens */
    /* @media (min-width: 768px) {
    .btn-group {
        flex-direction: row;
        justify-content: center;
    }
    } */

    .btn-group {
    display: flex;
    flex-direction: column;   /* always vertical */
    align-items: center;      /* center horizontally */
    gap: 15px;                /* space between buttons */
    }

    .btn-group .btn {
    width: 220px;             /* same width for all */
    text-align: center;
    }

    /* Podcast thumbnail */
    .podcast-thumb {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    margin-top: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    }

    .podcast-thumb:hover {
    transform: scale(1.03);
    }

