/* About Page Specific Banner Styles */
.about-hero-banner {
    width: 100%;
    height: 85vh;
    overflow: hidden;
    position: relative;
    background-color: #000;
    margin-top: 80px;
}

.about-banner-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.about-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0.6;
}

/* Premium Banner Overlay */
.about-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-banner-content {
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 20px;
}

.about-banner-subtitle {
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ff6b6b !important;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-banner-content h1 {
    /* font-size: 4.5rem; */
    /* font-family: 'Philosopher', sans-serif; */
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
    background: linear-gradient(to right, #fff, #f0f0f0); 
    -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
}

.about-banner-description {
    color: #fff !important;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
    /* margin-bottom: 40px; */
}

.about-banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: #B6483D;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-banner-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

/* 
   @media (max-width: 600px) {
    .about-hero-banner {
        height: 40vh;
    }
    .about-banner-img {
        object-fit: contain !important;
        background: #000;
    }
} */
/* Introduction Section */
.intro-section {
    padding: 16px 0;
    position: relative;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
    align-items: center;
}

.intro-text {
    position: relative;
}

.intro-badge {
    display: inline-block;
    background: #f8f9fa;
    color: #ff6b6b;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    border: 2px solid #ff6b6b;
}

.intro-title {
    font-size: 1.8rem;
    color: #333;
    /* margin-bottom: 30px; */
    line-height: 1;
    margin: 0
}

.intro-highlight {
    color: #B6483D;
    position: relative;
}

/* .intro-description {
            font-size: 1.15rem;
            color: #666;
            line-height: 1.8;
            margin-bottom: 40px;
        } */

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.intro-feature {
    display: flex;
    align-items: start;
    gap: 15px;
}

.intro-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.intro-feature-icon i {
    color: white;
    font-size: 1.2rem;
}

.intro-feature-text h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
}

.intro-feature-text p {
    color: #666;
    font-size: 0.95rem;
}

.intro-image {
    position: relative;
}

/* Introduction Section Image Fix */
.intro-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    /* Ensure it takes full width of the column */
    max-width: 500px;
    /* Set a maximum width for the image */
    height: 650px;
    /* Set a fixed height for the image */
    margin: 0 auto;
    /* Center the image horizontally */
}

.intro-image-wrapper img {
    width: 100%;
    /* Make the image fill the container */
    height: 100%;
    /* Ensure the image height matches the container */

    object-position: center;
    /* Center the image within the container */
}

.intro-experience-badge {
    position: absolute;
    bottom: -39px;
    right: 30px;
    background: transparent;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.intro-experience-badge h3 {
    font-size: 2.5rem;
    color: #ff6b6b;
    font-weight: 700;
    margin-bottom: 5px;
}

.intro-experience-badge p {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Journey Timeline Section */
.journey-section {
    padding: 25px 0;
    
}

.journey-header {
    text-align: center;
    margin-bottom: 10px;
}

.journey-subtitle {
    color: #ff6b6b;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Times New Roman', Times, serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-align: center;
}

.journey-title {

    color: #B6483D;
    margin-bottom: 20px;
    margin-top: 10px;
}

.journey-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ddd;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 80px; */
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    /* background: white; */
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid wheat;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.timeline-year {
    font-size: 2rem;
    color: #ff6b6b;
    font-weight: 700;
    margin-bottom: 15px;
}

/* .timeline-content h3 {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 15px;
        } */

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 30px;
    height: 30px;
    background: #B6483D;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    border: 5px solid #f8f9fa;
}

/* Values Section */
.values-section {
    padding: 10px 42px;

}

.values-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.values-text {
    position: relative;
}

.values-title {
    font-size: 2rem;
    color: #B6483D;
    /* font-family: 'Philosopher', sans-serif; */
    margin-bottom: 0px;
    line-height: 1.2;
}

.values-description {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.2;

}

.values-list {
    display: grid;
    gap: 25px;
}

.value-item {
    display: flex;
    align-items: start;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
    transform: translateX(10px);
}

.value-item:hover .value-icon {
    background: white;
}

.value-item:hover .value-icon i {
    color: #ff6b6b;
}

.value-item:hover h4,
.value-item:hover p {
    color: white;
}

.value-icon {
    width: 50px;
    height: 50px;
    background: #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.value-icon i {
    color: white;
    font-size: 1.3rem;
}

.value-text h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.value-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.values-image {
    position: relative;
}

.values-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.values-image-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.values-image-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.values-image-item:hover img {
    transform: scale(1.1);
}

.values-image-item:first-child {
    grid-column: span 2;
}

.values-image-item:first-child img {
    height: 300px;
}

/* Compact Stats Bar */
.stats-bar {
    background: linear-gradient(135deg, #000000, #da8a8aff);
    padding: 10px 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,...') repeat;
    opacity: 0.1;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    color: white;
    position: relative;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gurukul Philosophy Section */
.gurukul-philosophy-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)),
        url('../image/DSC04136 crop.jpg') center/cover no-repeat fixed;
    color: white;
    text-align: center;
    overflow: hidden;
}

.gurukul-philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 135, 135, 0.1) 0%, transparent 50%);
    animation: backgroundFloat 10s ease-in-out infinite;
}

@keyframes backgroundFloat {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }
}

.gurukul-overlay {
    position: relative;
    z-index: 1;
}

.gurukul-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gurukul-content {
    max-width: 900px;
    margin: 0 auto;
}

.gurukul-header {
    margin-bottom: 40px;
}

.gurukul-title {
    font-size: 2.5rem;
    margin-bottom: 5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gurukul-subtitle {
    font-size: 2rem;
    color: #ff6b6b;
    font-weight: 600;
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    margin-top: 5px;
}

.gurukul-description {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gurukul-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
    color: rgba(255, 255, 255, 0.95) !important;
    text-align: justify;
    font-weight: 300;
}



/* Responsive Design */
@media (max-width: 992px) {
    .about-hero-banner {
        height: 70vh;
    }

    .about-banner-content h1 {
        font-size: 3.5rem;
    }

    .intro-content,
    .values-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .intro-features {
        grid-template-columns: 1fr;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }

    .timeline-content {
        width: 100%;
        margin-bottom: 10px;
    }

    .timeline-line {
        display: none;
    }

    .timeline-dot {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



@media (max-width: 768px) {
    .intro-image-wrapper {
        height: 350px;
    }

    .about-hero-banner {
        height: 60vh;
    }

    .about-banner-content h1 {
        font-size: 2.5rem;
    }

    .about-banner-description {
        font-size: 1.1rem;
    }

    .intro-title,
    .journey-title,
    .values-title,
    .cta-title {
        font-size: 2.5rem;
    }

    .values-image-grid {
        grid-template-columns: 1fr;
    }

    .values-image-item:first-child {
        grid-column: span 1;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero-banner {
        height: 50vh;
        margin-top: 80px;
    }

    .about-banner-content h1 {
        font-size: 2rem;
    }

    .intro-badge {
        font-size: 0.8rem;
        padding: 8px 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}



/* Responsive Design */
@media (max-width: 992px) {
    .gurukul-philosophy-section {
        padding: 100px 0;
        background-attachment: scroll;
    }

    .gurukul-title {
        font-size: 2.2rem;
    }

    .gurukul-subtitle {
        font-size: 2.5rem;
    }

    .gurukul-description {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .gurukul-philosophy-section {
        padding: 80px 0;
    }

    .gurukul-title {
        font-size: 1.8rem;
    }

    .gurukul-subtitle {
        font-size: 2rem;
    }

    .gurukul-description {
        padding: 25px;
    }

    .gurukul-description p {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .gurukul-philosophy-section {
        padding: 60px 0;
    }

    .gurukul-title {
        font-size: 1.5rem;
    }

    .gurukul-subtitle {
        font-size: 1.7rem;
    }

    .gurukul-description {
        padding: 20px;
    }

    .gurukul-description p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}


/* Mission Section - Exact Design Match */

.sub-heading{
    color: #e9675f;
}
.mission-section {
    padding: 38px 0;
    
    position: relative;
}

.mission-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 400px 1fr;
    gap: 0px;
    align-items: start;
}

/* Left Content */
.mission-text {
    padding-right: 20px;
}

.mission-title {
    font-size: 24px;
    /* color: #8B7355; */
    font-family: 'Georgia', serif;
    margin-bottom: 0px;
    font-weight: 500;
    line-height: 1.3;
}

.mission-welcome p,
.mission-description p {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-family: Arial, sans-serif;
    text-align: justify;
    font-weight: 400;
}

/* Center Image */
.mission-image {
    position: relative;
}

.mission-image-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Right Content */
.mission-right-content {
    padding-left: 20px;
}

/* .mission-belief p,
.mission-commitment p {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-family: Arial, sans-serif;
    text-align: justify;
    font-weight: 400;
} */

/* Certifications - Exact Badge Design */
.mission-certifications {
    margin-top: 30px;
}

.mission-cert-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.mission-cert-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-main-logo {
    height: 50px;
    width: 348px;
    object-fit: contain;
}

.mission-cert-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.1;
    border: 2px solid;
    color: white;
    text-transform: uppercase;
}



/* Responsive Design */
@media (max-width: 1200px) {
    .mission-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .mission-text,
    .mission-right-content {
        padding: 0;
    }

    .mission-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .mission-section {
        padding: 60px 0;
    }

    .mission-container {
        padding: 0 20px;
    }

    .mission-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .mission-image-wrapper img {
        height: 350px;
    }

    .mission-cert-logos {
        justify-content: center;
    }

    .mission-cert-badge {
        width: 50px;
        height: 50px;
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .mission-title {
        font-size: 1.5rem;
    }

    .mission-welcome p,
    .mission-description p,
    .mission-belief p,
    .mission-commitment p {
        font-size: 0.95rem;
        text-align: left;
    }

    .mission-cert-badge {
        width: 45px;
        height: 45px;
        font-size: 0.55rem;
    }
}

/* Course Payment Section */


/* Root Color Variables - Global Appeal Color Scheme */
:root {
    --primary-coral: #E85D50;
    /* From your logo */
    --primary-dark: #2C3E50;
    /* Professional dark blue-gray */
    --primary-gold: #D4AF37;
    /* Premium gold accent */
    --light-coral: #F39C92;
    /* Light coral */
    --light-gray: #F8F9FA;
    /* Clean background */
    --medium-gray: #6C757D;
    /* Neutral text */
    --dark-gray: #343A40;
    /* Dark text */
    --success-green: #28A745;
    /* Universal success */
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --shadow-color: rgba(0, 0, 0, 0.1);
}



/* Payment Section Styles */
.payment-section {
    padding: 10px 0;
    /* background: var(--light-gray); */
}

.payment-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    /* font-family: 'Philosopher', serif; */
    /* font-size: 3rem; */
    /*color: var(--primary-dark);*/
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
}

.section-divider {
    width: 300px;
    margin: 30px auto;
}

.section-divider svg {
    width: 100%;
    height: auto;
}

/* Payment Methods Grid */
.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.payment-card {
    /* background: var(--white); */
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid wheat;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-coral), var(--primary-gold));
    transform: translateY(-4px);
    transition: transform 0.3s ease;
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.payment-card:hover::before {
    transform: translateY(0);
}

.payment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-coral), var(--light-coral));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.payment-card:nth-child(2) .payment-icon {
    background: linear-gradient(135deg, var(--primary-dark), #34495e);
}

.payment-card:nth-child(3) .payment-icon {
    background: linear-gradient(135deg, var(--primary-gold), #f0c674);
}

.payment-title {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.payment-description {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.payment-features {
    list-style: none;
    text-align: left;
}

.payment-features li {
    padding: 8px 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 25px;
}

.payment-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

/* QR Code Section */
.qr-payment-section {
    background: linear-gradient(135deg, var(--primary-coral), var(--light-coral));
    padding: 40px 0;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.qr-payment-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s linear infinite;
}

@keyframes float {
    from {
        transform: translate(-50px, -50px);
    }

    to {
        transform: translate(0, 0);
    }
}

.qr-content {
    position: relative;
    z-index: 1;
    background: var(--white);
    border-radius: 30px;
    padding: 30px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.qr-left {
    text-align: center;
}

.qr-code-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: inline-block;
    margin-bottom: 10px;
    position: relative;
    border: 2px solid var(--light-gray);
}

.qr-code-wrapper::before {
    content: 'SCAN TO PAY';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-coral);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.qr-code {
    width: 250px;
    height: 250px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
}

.payment-apps {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.payment-app-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.payment-app-icon:hover {
    transform: scale(1.1);
}

.qr-right {
    text-align: left;
}

.qr-title {
    /* font-family: 'Philosopher', serif; */
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.qr-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 0px;
    line-height: 1.6;
}

.qr-steps {
    list-style: none;
}

.qr-steps li {
    padding: 15px 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 40px;
    font-size: 1.05rem;
}

.qr-steps li::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    top: 15px;
    width: 30px;
    height: 30px;
    background: var(--primary-coral);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Bank Details Section */
.bank-details-section {
    padding: 30px 0;
    /* background: var(--off-white); */
}

.bank-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.bank-card {
    /* background: var(--white); */
    border: 2px solid wheat;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.bank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.bank-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-coral), transparent);
    opacity: 0.05;
    border-radius: 0 0 0 100%;
}

.bank-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.bank-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-coral);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-right: 20px;
}

.bank-card:nth-child(2) .bank-icon {
    background: var(--primary-dark);
}

.bank-name {
    font-size: 1.5rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.bank-details-list {
    list-style: none;
}

.bank-details-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bank-details-list li:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--medium-gray);
    font-weight: 500;
}

.detail-value {
    color: var(--primary-dark);
    font-weight: 600;
    text-align: right;
}

/* Important Notes */
.notes-section {
    background: linear-gradient(135deg, rgba(232, 93, 80, 0.05), rgba(212, 175, 55, 0.05));
    padding: 15px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-coral);
    margin-top: 30px;
}

.notes-title {
    font-size: 1.3rem;
    color: #B6483D;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notes-title i {
    color: var(--primary-coral);
}

.notes-list {
    list-style: none;
}

.notes-list li {
    padding: 8px 0;
    color: var(--dark-gray);
    padding-left: 25px;
    position: relative;
}

.notes-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-coral);
    font-weight: bold;
}

/* Terms and Conditions Section */
.terms-section {
    padding: 50px 0;
    /* background: var(--light-gray); */
}

.terms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.terms-content {
    /* background: var(--white); */
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px var(--shadow-color);
    margin-top: 40px;
}

.terms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.terms-category {
    /* background: var(--off-white); */
    border-radius: 15px;
    padding: 30px;
    border: 2px solid wheat;
    transition: all 0.3s ease;
}

.terms-category:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.terms-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-coral), var(--light-coral));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
}

.terms-category:nth-child(2) .terms-icon {
    background: linear-gradient(135deg, var(--primary-dark), #34495e);
}

.terms-category:nth-child(3) .terms-icon {
    background: linear-gradient(135deg, var(--primary-gold), #f0c674);
}

.terms-category:nth-child(4) .terms-icon {
    background: linear-gradient(135deg, var(--success-green), #5cb85c);
}

.terms-category h3 {
    font-size: 1.5rem;
    color: #B6483D;
    margin-bottom: 15px;
}

.terms-list {
    list-style: none;
    padding-left: 0;
}

.terms-list li {
    padding: 10px 0;
    color: var(--dark-gray);
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.terms-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-coral);
    font-weight: bold;
    font-size: 1.2rem;
}

.terms-footer {
    background: linear-gradient(135deg, rgba(232, 93, 80, 0.05), rgba(212, 175, 55, 0.05));
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}

.terms-footer p {
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.terms-footer .contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-dark);
    font-weight: 600;
}

.contact-item i {
    color: var(--primary-coral);
    font-size: 1.2rem;
}

/* QR ATM Card Row */
.qr-card-row {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    margin: 0 auto;
    max-width: 900px;
}

.qr-atm-card {
    background: linear-gradient(135deg, var(--primary-coral), var(--primary-gold));
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 35px 30px;
    width: 100%;
    max-width: 370px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    color: #fff;
}

.qr-atm-left .qr-card-chip {
    width: 45px;
    height: 28px;
    background: linear-gradient(135deg, #e0e0e0, #bdbdbd);
    border-radius: 8px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.qr-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-align: center;
}

.qr-card-qr {
    width: 160px;
    height: 160px;
    border-radius: 12px;
    border: 2px solid #fff;
    background: #fff;
    padding: 8px;
    margin-bottom: 18px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.payment-apps {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.payment-app-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background: #fff;
}

.qr-atm-right {
    align-items: flex-start;
    justify-content: flex-start;
}

.qr-card-steps {
    list-style: none;
    margin: 0 0 18px 0;
    padding: 0;
}

.qr-card-steps li {
    padding: 10px 0;
    position: relative;
    padding-left: 38px;
    font-size: 1rem;
    color: #fff;
}

.qr-card-steps li::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    top: 10px;
    width: 26px;
    height: 26px;
    background: #fff;
    color: var(--primary-coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.qr-card-note {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.qr-card-note i {
    color: #fff;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }

    .payment-methods-grid,
    .bank-cards-grid {
        grid-template-columns: 1fr;
    }

    .qr-content {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .qr-title {
        font-size: 2rem;
    }

    .qr-code {
        width: 200px;
        height: 200px;
    }

    .terms-content {
        padding: 30px 20px;
    }

    .terms-grid {
        grid-template-columns: 1fr;
    }

    /* QR ATM Card Row */
    .qr-card-row {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .qr-atm-card {
        max-width: 100%;
        width: 100%;
    }
}

/* Student Payment Cards Styles */
.student-payment-cards {
    /* background: var(--light-gray); */
    padding: 50px 19px 30px;
}

.student-cards-row {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.student-card {
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.13);
    width: 100%;
    max-width: 430px;
    min-width: 300px;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    border: none;
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
}

.student-card:hover {
    box-shadow: 0 16px 48px rgba(44, 62, 80, 0.18);
    transform: translateY(-6px) scale(1.02);
}

.student-card-header {
    background: #B6483D;
    color: #fff;
    padding: 22px 30px 18px 30px;
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 1.25rem;
    font-weight: 700;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
}

.student-card-flag img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.10);
    background: #fff;
}

.student-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.student-card-body {
    padding: 30px 30px 28px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
}

.student-card-amount {
    background: #f9e6e3;
    border-radius: 22px;
    padding: 22px 0 16px 0;
    width: 100%;
    text-align: center;
    margin-bottom: 18px;
}

.student-card-currency {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-coral);
    letter-spacing: 1px;
    display: block;
}

.student-card-breakup {
    font-size: 1.1rem;
    color: #a67c52;
    display: block;
    margin-top: 6px;
}

.student-card-note {
    font-size: 0.95rem;
    color: #b85c4c;
    margin-top: 2px;
    display: block;
}

.student-card-method {
    font-size: 1.15rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 10px;
    text-align: center;
}

.student-card-info {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 18px;
    text-align: center;
}

.student-card-detail {
    background: #f6f3e7;
    border-radius: 10px;
    padding: 8px 16px;
    margin: 7px 0;
    font-size: 1.05rem;
    color: #a67c52;
    display: inline-block;
}

.student-card-btn {
    background: var(--primary-coral);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 38px;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(232, 93, 80, 0.10);
    transition: background 0.3s, transform 0.3s;
    display: inline-block;
}

.student-card-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.student-card-qrbox {
    background: #f9e6e3;
    border-radius: 22px;
    padding: 18px 18px 10px 18px;
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.student-card-qr {
    width: 160px;
    height: 160px;
    border-radius: 16px;
    border: 2px solid #fff;
    background: #fff;
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.08);
}

@media (max-width: 900px) {
    .student-cards-row {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }

    .student-card {
        max-width: 100%;
        width: 100%;
    }
}


/* FAQ Section Styles */
.faq-section {
    padding: 0px 0;
    background: #FFFAEA;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    /* margin-bottom: 60px; */
}

.faq-title {
    /* font-family: 'Philosopher', serif; */
    font-size: 15px;
    color: #B6483D;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.faq-subtitle {

    /*margin-bottom: -57px;*/
    text-align: center !important;
}

.faq-divider {
    text-align: center;
    /* margin-bottom: 60px; */
}

.faq-divider svg {
    width: 300px;
    height: 60px;
}

/* FAQ Layout */
.faq-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Category Sidebar */
.faq-categories {
    /* background: white; */
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
    border: 3px solid wheat;
}

.category-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    color: #5a5757;
}

.category-item:hover {
    background: #f8f9fa;
    border-color: #e9675f;
}

.category-item.active {
    background: #B6483D;
    color: white;
}

.category-icon {
    width: 30px;
    margin-right: 15px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-item.active .category-icon {
    color: white;
}

.category-name {
    font-weight: 600;
    font-size: 13px;
}

/* FAQ Content */
.faq-content {
    /* background: white; */
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid wheat;
}

.faq-category-section {
    display: none;
}

.faq-category-section.active {
    display: block;
}

.faq-category-title {
    /* font-family: 'Philosopher', serif; */
    font-size: 2rem;

    margin-bottom: 30px;

    border-bottom: 2px solid #f0f0f0;
}

/* FAQ Items */
.faq-item {
    margin: 20px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    color: #5a5757;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(146, 39, 143, 0.1);
}

.faq-question {
    padding: 20px 25px;
    /* background: #fafafa; */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: start;
    transition: all 0.3s ease;
}



.faq-question h3 {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    /*flex: 1;*/
}

.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: #e9675f;
    margin-right: 60px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    /* color: white; */
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 20px 25px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .faq-wrapper {
        grid-template-columns: 1fr;
    }

    .faq-categories {
        position: static;
        display: flex;
        overflow-x: auto;
        padding: 15px;
        gap: 10px;
    }

    .category-item {
        flex-shrink: 0;
        margin-bottom: 0;
        white-space: nowrap;
    }

    .faq-content {
        padding: 20px;
    }

    .faq-title {
        font-size: 2rem;
    }

    .values-section {
        padding: 10px 10px;
    }
}

@media (max-width: 480px) {
    .faq-question h3 {
        font-size: 13px;
        padding: 0 28px 0 0;
    }

    .faq-category-title {
        font-size: 13px;
    }
}


/* Yoga Teachers Style */

/* Teachers Introduction Section */
.teachers-intro-section {
    padding: 0px 0;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); */
}

.teachers-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.teachers-intro-content {
    text-align: center;
}

.teachers-intro-header {
    margin-bottom: 20px;
}

.teachers-intro-badge {
    display: inline-block;
    background: #B6483D;
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.teachers-intro-title {
    font-size: 30px;
    color: #ca6363;
    margin: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.teachers-intro-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.teachers-intro-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6b6b, transparent);
}

.teachers-intro-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* .teachers-intro-text {
    max-width: 900px;
    margin: 0 auto;
} */



/* Spiritual Yoga Gurus Section - Compact */
.spiritual-gurus-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
    position: relative;
}

.gurus-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gurus-header {
    text-align: center;
    margin-bottom: 50px;
}

.gurus-badge {
    display: inline-block;
    background: #ca6363;
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px #e43737;
}

.gurus-title {
    font-size: 2.5rem;
    color: #ff6b6b;
    /* font-family: 'Philosopher', sans-serif; */
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.gurus-carousel-wrapper {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

/* Continuous Infinite Carousel */
.gurus-carousel {
    display: flex;
    animation: infiniteScroll 25s linear infinite;
    width: calc(200px * 8);
    /* 4 gurus × 2 for seamless loop */
}

@keyframes infiniteScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-200px * 4));
    }
}

.guru-card {
    flex: 0 0 200px;
    text-align: center;
    padding: 0 15px;
    transition: transform 0.3s ease;
}

.guru-card:hover {
    transform: scale(1.05);
}

.guru-mandala {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    background: radial-gradient(circle, rgba(255, 153, 153, 0.1) 0%, rgba(255, 153, 153, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    border: 3px solid rgba(255, 153, 153, 0.2);
    transition: all 0.3s ease;
}

.guru-mandala:hover {
    border-color: rgba(255, 107, 107, 0.4);
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.2);
}

.guru-image-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110px;
    height: 110px;
    transform: translate(-50%, -50%);
    overflow: hidden;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.guru-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.guru-card:hover .guru-image-wrapper img {
    transform: scale(1.1);
}

.guru-name {

    color: #8B7355;
    margin: 0;
    line-height: 1.3;
}

/* Pause animation on hover */
.gurus-carousel:hover {
    animation-play-state: paused;
}

/* Add subtle gradient overlay */
.gurus-carousel-wrapper::before,
.gurus-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.gurus-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, rgba(248, 249, 250, 1) 0%, rgba(248, 249, 250, 0) 100%);
}

.gurus-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, rgba(248, 249, 250, 1) 0%, rgba(248, 249, 250, 0) 100%);
}

/* Responsive Design for Carousel */
@media (max-width: 768px) {
    .spiritual-gurus-section {
        padding: 50px 0;
    }

    .gurus-title {
        font-size: 2rem;
    }

    .guru-card {
        flex: 0 0 160px;
    }

    .gurus-carousel {
        width: calc(160px * 8);
        animation: infiniteScrollMobile 20s linear infinite;
    }

    @keyframes infiniteScrollMobile {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-160px * 4));
        }
    }

    .guru-mandala {
        width: 110px;
        height: 110px;
    }

    .guru-image-wrapper {
        width: 85px;
        height: 85px;
    }

    .guru-name {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .guru-card {
        flex: 0 0 140px;
    }

    .gurus-carousel {
        width: calc(140px * 8);
    }

    @keyframes infiniteScrollMobile {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-140px * 4));
        }
    }

    .guru-mandala {
        width: 90px;
        height: 90px;
        margin-bottom: 15px;
    }

    .guru-image-wrapper {
        width: 70px;
        height: 70px;
        border: 3px solid white;
    }

    .guru-name {
        font-size: 0.9rem;
    }
}

/* Featured Teachers Section */
.featured-teachers-section {
    padding: 10px 0;
}

.featured-teachers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.featured-teachers-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

/* Teacher Card Base Styles - Perfect Center */
.teacher-card-horizontal {
    display: flex;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1) 100%, transparent 50%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    /* max-width: 850px; */
    width: 100%;
    min-height: 320px;
    position: relative;
}

/* Remove alternating alignment - All cards centered */
.teacher-card-horizontal:nth-child(odd) {
    margin: 0 auto;
}

.teacher-card-horizontal:nth-child(even) {
    margin: 0 auto;
    flex-direction: row-reverse;
}

.teacher-card-horizontal:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Image Side Styling */
.teacher-image-side {
    flex: 0 0 300px;
    position: relative;
    overflow: hidden;
}

.teacher-image-side img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    transition: transform 0.6s ease;
}

.teacher-card-horizontal:hover .teacher-image-side img {
    transform: scale(1.08);
}

/* Add decorative overlay to images */
.teacher-image-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
    z-index: 1;
}

/* Content Side Styling */
.teacher-info-side {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* Add decorative corner accent */
.teacher-info-side::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    opacity: 0.1;
}

.teacher-header {
    margin-bottom: 20px;
}

.teacher-name {
    /* font-size: 25px; */
    color: #f37272;

    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.teacher-role {
    color: #f37272;
    font-size: 1.4rem;
    font-weight: 400;

    margin-left: 10px;
}

/* Specialty Tags */
.teacher-specialties-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 22px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f1f1;
}

.specialty-tag-horizontal {
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.specialty-tag-horizontal:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Individual Specialty Colors */
.anatomy,
.pranayama,
.hatha,
.sound,
.meditation,
.philosophy,
.ashtanga,
.alignment,
.sanskrit {
    background: #B6483D;
}



/* .teacher-description-horizontal {
    color: #666;
    font-size: 1.08rem;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
    font-weight: 400;
} */

/* Add subtle pattern background to alternating cards */
/* .teacher-card-horizontal:nth-child(even) {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
} */

/* Add floating accent for visual appeal */
.teacher-card-horizontal::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.teacher-card-horizontal:hover::after {
    opacity: 0.1;
}

/* Add center line decoration */
.featured-teachers-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    /*background: linear-gradient(180deg, transparent 0%, #ff6b6b 20%, #ff6b6b 80%, transparent 100%);*/
    transform: translateX(-50%);
    opacity: 0.1;
}

.featured-teachers-section {
    position: relative;
}

/* Mobile Responsive Styles for Featured Teachers */
@media (max-width: 768px) {
    .featured-teachers-section {
        padding: 60px 0 40px 0;
    }

    .featured-teachers-container {
        padding: 0 15px;
    }

    .featured-teachers-grid {
        gap: 30px;
    }

    /* Mobile Card Layout */
    .teacher-card-horizontal {
        flex-direction: column !important;
        max-width: 100%;
        min-height: auto;
        border-radius: 20px;
    }

    .teacher-card-horizontal:nth-child(even) {
        flex-direction: column !important;
    }

    /* Image Section Mobile */
    .teacher-image-side {
        flex: 0 0 250px;
        width: 100%;
        height: 250px;
    }

    .teacher-image-side img {
        width: 76%;
        height: 96%;
        object-fit: cover;
        position: absolute;
        left: 38px;
    }

    /* Content Section Mobile */
    .teacher-info-side {
        padding: 25px 20px;
    }

    .teacher-name {
        font-size: 1.8rem;
    }

    .teacher-role {
        font-size: 1.1rem;
        display: block;
        margin-left: 0;
        margin-top: 5px;
    }

    .teacher-specialties-horizontal {
        gap: 8px;
        margin-bottom: 18px;
        padding-bottom: 18px;
    }

    .specialty-tag-horizontal {
        padding: 8px 14px;
        font-size: 0.75rem;
    }

    .teacher-description-horizontal {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Remove center line on mobile */
    .featured-teachers-section::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .featured-teachers-section {
        padding: 40px 0 30px 0;
    }

    .featured-teachers-grid {
        gap: 25px;
    }

    .teacher-card-horizontal {
        border-radius: 15px;
    }

    /* Smaller image height on very small screens */
    .teacher-image-side {
        height: 200px;
    }

    .teacher-info-side {
        padding: 20px 15px;
    }

    .teacher-name {
        font-size: 1.5rem;
    }

    .teacher-role {
        font-size: 1rem;
    }

    .teacher-specialties-horizontal {
        gap: 6px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .specialty-tag-horizontal {
        padding: 6px 12px;
        font-size: 0.7rem;
        letter-spacing: 0.3px;
    }

    .teacher-description-horizontal {
        font-size: 0.95rem;
        text-align: left;
    }

    /* Adjust shadow for mobile */
    .teacher-card-horizontal {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .teacher-card-horizontal:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }
}

/* Additional mobile optimizations */
@media (max-width: 360px) {
    .teacher-image-side {
        height: 180px;
    }

    .teacher-name {
        font-size: 1.3rem;
    }

    .specialty-tag-horizontal {
        padding: 5px 10px;
        font-size: 0.65rem;
    }

    .teacher-description-horizontal {
        font-size: 0.9rem;
    }
}

/* Testimonial Section */
.testimonials-section {
    padding: 50px 0;
    /* background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); */
    position: relative;
}

.testimonials-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Section Header */
.testimonials-header {
    text-align: center;
    /* margin-bottom: 70px; */
}

.testimonials-badge {
    display: inline-block;
    /* background: linear-gradient(135deg, #8B7355, #A0926B); */
    background: #B6483D;
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(139, 115, 85, 0.3);
}

.testimonials-title {
    /* font-size: 2rem; */
    /* color: #ff6b6b; */
    /* font-family: 'Philosopher', sans-serif; */
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 800px;
    margin: 25px auto;
}

/* Video Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

/* Video Card */
.testimonial-video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Video Embed */
.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Testimonial Info */
.testimonial-info {
    padding: 25px;
    position: relative;
}

.testimonial-icon {
    position: absolute;
    top: -20px;
    left: 25px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.testimonial-video-title {
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 15px;
    line-height: 1.4;
}

.testimonial-subtitle {
    /*color: #666;*/
    /*font-size: 0.9rem;*/
    /*margin: 0;*/
    font-weight: 500;
}

/* View More Button */
.testimonials-cta {
    text-align: center;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.view-more-btn:hover {
    background: linear-gradient(135deg, #cc0000, #990000);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
    color: white;
    text-decoration: none;
}

.view-more-btn .fa-youtube {
    font-size: 1.3rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .testimonials-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonials-title {
        font-size: 2rem;
    }

    .testimonial-info {
        padding: 20px;
    }

    .testimonial-video-title {
        font-size: 1.1rem;
    }

    .view-more-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .testimonials-header {
        margin-bottom: 50px;
    }

    .testimonials-title {
        font-size: 1.8rem;
    }

    .video-embed {
        border-radius: 15px 15px 0 0;
    }

    .testimonial-video-card {
        border-radius: 15px;
    }
}

/* Fix for Testimonials Section Mobile */
@media (max-width: 768px) {
    .testimonials-container {
        padding: 0 20px;
    }

    .testimonials-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .testimonials-badge {
        font-size: 0.8rem;
        padding: 8px 20px;
    }
}

@media (max-width: 480px) {


    .testimonials-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .testimonials-badge {
        font-size: 0.75rem;
        padding: 6px 18px;
        letter-spacing: 1px;
    }

    /* .testimonial-video-card {
        margin: 0 auto;
        max-width: 350px;
    } */
}