@charset "utf-8";
/* CSS Document */

 /* --- General Styles & Reset --- */
  
        .courses-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- Course Section Styles --- */
        .yoga-courses-section {
            background-color: #fdfbf8;
            padding: 80px 0;
        }

        .yoga-courses-section .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .yoga-courses-section .section-header h2 {
            font-family: 'Lora', serif;
            font-size: 2.8rem;
            font-weight: 700;
            color: #3c3c3c;
            margin: 0;
            position: relative;
            display: inline-block;
        }

        .yoga-courses-section .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #e67e22;
        }

        /* --- Course Row Layout --- */
        .course-row {
            display: flex;
            /* CHANGE: Align columns to stretch to the full height of the row */
            align-items: stretch; 
            gap: 40px;
            margin-bottom: 60px;
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            padding: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden; /* Prevents image from spilling out on hover */
        }

        .course-row:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .course-row:last-child {
            margin-bottom: 0;
        }

        /* --- Column Sizing --- */
        .course-col-image {
            flex: 1;
            /* CHANGE: Add relative positioning to contain the absolute image */
            position: relative;
            /* CHANGE: Hide overflow to keep the image within the rounded corners */
            overflow: hidden;
            border-radius: 8px;
        }

        .course-col-content {
            flex: 3;
            padding: 0 30px;
            /* CHANGE: Use flexbox to vertically center the content */
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .course-col-buttons {
            flex: 1;
            /* CHANGE: Use flexbox to vertically center the buttons */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            gap: 15px;
        }

        /* --- Column Content Styling --- */
        /* CHANGE: This is the key part for the image */
        .course-col-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /* CHANGE: Makes the image cover the area without distortion */
            object-fit: cover;
            display: block;
        }

        .course-col-content h3 {
            font-family: 'Lora', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: #3c3c3c;
            margin-top: 0;
            margin-bottom: 10px;
            text-align:left;
        }

        .course-duration {
            font-size: 0.95rem;
            color: #e67e22;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .course-col-content p {
            margin-bottom: 20px;
            color: #555;
        }

        .course-col-content ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .course-col-content ul li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
            color: #555;
        }

        .course-col-content ul li::before {
            content: '✔';
            position: absolute;
            left: 0;
            top: 0;
            color: #e67e22;
            font-weight: bold;
        }

        /* --- Button Styling --- */
        .btn {
            display: inline-block;
            padding: 12px 28px;
            border-radius: 50px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }

        .btn-primary {
            background-color: #e67e22;
            color: #ffffff;
            border-color: #e67e22;
        }

        .btn-primary:hover {
            background-color: #d35400;
            border-color: #d35400;
            color: #ffffff;
        }

        .btn-secondary {
            background-color: transparent;
            color: #e67e22;
            border-color: #e67e22;
        }

        .btn-secondary:hover {
            background-color: #e67e22;
            color: #ffffff;
        }

        /* --- Responsive Design for Mobile and Tablet --- */
        @media (max-width: 992px) {
            .course-row {
                flex-direction: column;
                text-align: center;
                gap: 30px;
            }

            .course-col-image {
                /* On mobile, give the image a fixed aspect ratio again */
                min-height: 250px; 
            }

            .course-col-image,
            .course-col-content,
            .course-col-buttons {
                flex: 1 1 100%;
                width: 100%;
                padding: 0;
            }

            .course-col-buttons {
                align-items: center;
            }

            .course-col-content h3 {
                font-size: 1.6rem;
            }
        }

        @media (max-width: 600px) {
            .yoga-courses-section .section-header h2 {
                font-size: 2.2rem;
            }
            .course-row {
                padding: 20px;
            }
        }
        
        .underlined1{position:relative;padding-bottom:15px}.underlined1::after{display:block;position:absolute;bottom:0;left:5%;width:10%;height:2px;margin-left:-5%;content:""}
.underlined1::after{background-color:#eb6a01}


/* --- NOTE: If 'Poppins' font is already loaded on your site, you can remove the @import line below. --- */
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

    /* --- Success Stories Section Container --- */
    #success-stories-section {
        font-family: 'Poppins', sans-serif;
        padding: 60px 20px;
        background-color: #f9f9f9;
        color: #333;
        line-height: 1.7;
    }

    .success-stories-container {
        max-width: 1100px;
        margin: 0 auto;
    }

    /* --- Section Header --- */
    .success-stories-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .success-stories-header h2 {
        font-size: 2.8rem;
        font-weight: 700;
        color: #f15505; /* --- UPDATED THEME COLOR --- */
        margin-bottom: 15px;
    }

    .success-stories-header p {
        font-size: 1.1rem;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
    }

    /* --- Story Card Layout (Side-by-Side) --- */
    .success-stories-card {
        background: #ffffff;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        display: flex;
        align-items: stretch;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .success-stories-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

    /* --- Video Side --- */
    .success-stories-video-side {
        flex: 1 1 40%;
        position: relative;
        background-color: #000;
        min-width: 280px;
    }
    
    .success-stories-video-wrapper {
        position: relative;
        width: 100%;
        padding-bottom: 177.78%; /* 9:16 Aspect Ratio */
        overflow: hidden;
    }

    .success-stories-video-thumbnail {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        cursor: pointer;
    }

    .success-stories-play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 70px;
        height: 70px;
        background-color: rgba(241, 85, 5, 0.85); /* --- UPDATED THEME COLOR (rgba) --- */
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s ease;
    }

    .success-stories-play-button::after {
        content: '';
        border-style: solid;
        border-width: 15px 0 15px 26px;
        border-color: transparent transparent transparent #ffffff;
    }

    .success-stories-video-thumbnail:hover .success-stories-play-button {
        background-color: rgba(241, 85, 5, 1); /* --- UPDATED THEME COLOR (rgba) --- */
    }

    /* --- Text Side --- */
    .success-stories-text-side {
        flex: 1 1 60%;
        padding: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .success-stories-text-side blockquote {
        margin: 0 0 25px 0;
        font-size: 1.1rem;
        font-style: italic;
        color: #555;
        line-height: 1.8;
    }

    .success-stories-text-side cite {
        font-style: normal;
        font-weight: 600;
        color: #333;
        font-size: 1.2rem;
    }

    .success-stories-text-side cite span {
        display: block;
        font-weight: 400;
        font-size: 1rem;
        color: #777;
        margin-top: 5px;
    }

    /* --- Video Modal (Lightbox) --- */
    .success-stories-modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        animation: fadeIn 0.3s ease;
    }

    .success-stories-modal-content {
        position: relative;
        margin: 5% auto;
        width: 90%;
        max-width: 450px;
        height: 80vh;
        animation: slideIn 0.4s ease;
    }
    
    .success-stories-modal-content iframe {
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 12px;
    }

    .success-stories-modal-close {
        position: absolute;
        top: 20px;
        right: 35px;
        color: #f1f1f1;
        font-size: 50px;
        font-weight: bold;
        cursor: pointer;
        z-index: 1001;
        transition: color 0.3s ease;
    }

    .success-stories-modal-close:hover {
        color: #bbb;
    }

    /* --- Animations --- */
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    @keyframes slideIn {
        from { transform: translateY(-50px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }

    /* --- Responsive Design --- */
    @media (max-width: 992px) {
        .success-stories-card {
            flex-direction: column;
        }
        .success-stories-video-side, .success-stories-text-side {
            flex-basis: 100%;
        }
        .success-stories-text-side {
            padding: 30px;
            text-align: center;
        }
        .success-stories-text-side blockquote {
            font-size: 1rem;
        }
    }
    

.reviews-section {
    padding: 80px 20px;
    background-color: #f9f9f9; /* A very light grey to stand out from a white body */
    text-align: center;
}

.reviews-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 50px auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid #f15505;
}

.reviewer-info h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.reviewer-info .reviewer-title {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

.rating {
    color: #f15505;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.review-card blockquote {
    margin: 0;
    padding-left: 20px;
    border-left: 3px solid #f15505;
    color: #555;
    font-style: italic;
    position: relative;
    flex-grow: 1; /* Makes all cards equal height */
}

.review-card blockquote p {
    margin: 0;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .reviews-section h2 {
        font-size: 2rem;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}


.yoga-cta {
    background: linear-gradient(135deg, rgba(241, 85, 5, 0.9) 0%, rgba(241, 85, 5, 0.7) 100%);
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.yoga-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://picsum.photos/seed/yogapose/1200/600.jpg') center/cover no-repeat;
    opacity: 0.2;
    z-index: -1;
}

.yoga-cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.yoga-cta h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.yoga-cta p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.6;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    background-color: #128C7E;
}

.whatsapp-btn i {
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .yoga-cta h2 {
        font-size: 2rem;
    }
    
    .yoga-cta p {
        font-size: 1rem;
    }
    
    .whatsapp-btn {
        width: 250px;
        justify-content: center;
    }
}