/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #667eea;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.book-now-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 70px 0 20px 0; /* Add top padding to account for fixed navbar */
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.hero-text-col {
    flex: 1 1 60%;
    position: relative;
    z-index: 3;
}
.hero-side-promo {
    flex: 1 1 35%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 3;
}
.promo-poster {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(102,126,234,0.18);
    padding: 24px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 260px;
    max-width: 320px;
}
.promo-poster img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 18px;
    box-shadow: 0 4px 16px rgba(102,126,234,0.10);
}
.promo-badge {
    background: linear-gradient(90deg, #ff6b6b 0%, #ee5a24 100%);
    color: #fff;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 16px;
    font-size: 1rem;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(255,107,107,0.13);
}
.promo-timer {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    text-align: center;
}
.promo-book-btn {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.hero-text-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    border-radius: 0 0 50px 50px;
    z-index: 2;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-title, .hero-subtitle, .hero-stats, .hero-buttons {
    position: relative;
    z-index: 3;
}

/* Bento Videos Section */
.bento-videos-section {
    background: #fff;
    padding: 60px 0 40px 0;
    overflow-x: auto;
    position: relative;
    text-align: center;
}
.bento-videos-section .section-heading {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
    position: relative;
}
.bento-videos-section .section-heading::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #000;
    border-radius: 2px;
}
.bento-videos-section .section-subtitle {
    font-size: 1.15rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 32px auto;
    line-height: 1.6;
    white-space: nowrap;
}
.bento-heading {
    font-size: 2.3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}
.bento-underline {
    width: 120px;
    height: 5px;
    margin: 0 auto 32px auto;
    background: linear-gradient(90deg, #667eea 0%, #ff6b6b 100%);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    animation: underlineSlide 2.5s infinite linear;
}
@keyframes underlineSlide {
    0% { background-position: 0 0; }
    100% { background-position: 200px 0; }
}
.bento-grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, 240px);
    grid-auto-columns: 320px;
    gap: 18px;
    width: max-content;
    min-width: 100vw;
    margin: 0 auto;
    padding: 0 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    animation: bentoScroll 60s linear infinite;
    background: #fff;
}
@keyframes bentoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.bento-grid::-webkit-scrollbar {
    display: none;
}
.bento-video {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(102, 126, 234, 0.13);
    background: #222;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    width: 100%;
    height: 100%;
}
.bento-video:hover {
    transform: scale(1.06) rotate(-1deg);
    box-shadow: 0 16px 40px rgba(102, 126, 234, 0.18);
    z-index: 2;
}
.bento-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
}

.bento-video img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 18px;
    background: #f8f9fa;
    padding: 2px;
}
.bento-video.large {
    grid-row: span 2;
    grid-column: span 2;
}
.bento-video.tall {
    grid-row: span 2;
}
.bento-video.wide {
    grid-column: span 2;
}
@media (max-width: 900px) {
    .bento-grid {
        grid-template-rows: repeat(2, 120px);
        grid-auto-columns: 180px;
        gap: 8px;
    }
    .bento-heading { font-size: 1.2rem; }
    .bento-underline { margin-bottom: 12px; }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #ffffff;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #ffffff;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.stat-label {
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #333;
    transform: translateY(-3px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-year {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.timeline-content p {
    color: #666;
}

.about-image {
    text-align: center;
}

.about-img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Workshops Section */
.workshops {

    background: white;
    text-align: center;
}
.workshops .section-heading {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
}
.workshops .section-subtitle {
    font-size: 1.15rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 32px auto;
    line-height: 1.6;
    white-space: normal;
}
.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.workshop-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.workshop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.workshop-card.featured {
    border: 3px solid #667eea;
    transform: scale(1.05);
}

.workshop-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.workshop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.workshop-card:hover .workshop-image img {
    transform: scale(1.1);
}

.workshop-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.workshop-content {
    padding: 2rem;
}

.workshop-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.workshop-location,
.workshop-date {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.workshop-location i,
.workshop-date i {
    margin-right: 0.5rem;
    color: #667eea;
}

.workshop-description {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.6;
}

.workshop-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature {
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #666;
}

.feature i {
    margin-right: 0.3rem;
    color: #667eea;
}

.workshop-price {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.workshop-book-btn {
    width: 100%;
    text-align: center;
}

.workshops-cta {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem;
    border-radius: 20px;
    margin-top: 2rem;
}
.workshops-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.workshops-cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
    font-size: 1.1rem;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}
.cta-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.cta-stat {
    text-align: center;
}
.cta-stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.cta-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-stats {
        gap: 1rem;
    }
    .workshops-cta {
        padding: 2rem 1rem;
    }

    .workshops .section-heading {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .workshops .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        max-width: 100%;
        padding: 0 16px;
    }

    .workshops-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 16px;
    }

    .workshop-card {
        margin: 0 auto;
        max-width: 400px;
    }

    .workshop-content {
        padding: 1.5rem;
    }

    .workshop-content h3 {
        font-size: 1.3rem;
    }

    .workshop-features {
        gap: 0.8rem;
    }

    .feature {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .workshop-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .price {
        font-size: 1.3rem;
    }

    .workshop-book-btn {
        font-size: 0.95rem;
        padding: 12px 20px;
    }
}

@media (max-width: 600px) {
    .workshops .section-heading {
        font-size: 1.6rem;
        padding: 0 12px;
    }

    .workshops .section-subtitle {
        font-size: 0.9rem;
        padding: 0 12px;
    }

    .workshops-grid {
        padding: 0 12px;
        gap: 1rem;
    }

    .workshop-card {
        max-width: 100%;
        border-radius: 16px;
    }

    .workshop-content {
        padding: 1rem;
    }

    .workshop-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .workshop-location,
    .workshop-date {
        font-size: 0.85rem;
    }

    .workshop-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .workshop-features {
        gap: 0.6rem;
        margin-bottom: 1rem;
    }

    .feature {
        font-size: 0.7rem;
        padding: 3px 8px;
    }

    .workshop-price {
        margin-bottom: 1rem;
    }

    .price {
        font-size: 1.2rem;
    }

    .original-price {
        font-size: 0.9rem;
    }

    .workshop-book-btn {
        font-size: 0.9rem;
        padding: 10px 16px;
    }

    .workshop-badge {
        font-size: 0.7rem;
        padding: 4px 12px;
        top: 10px;
        right: 10px;
    }

    .workshop-image {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .workshops .section-heading {
        font-size: 1.4rem;
        padding: 0 8px;
    }

    .workshops .section-subtitle {
        font-size: 0.85rem;
        padding: 0 8px;
    }

    .workshops-grid {
        padding: 0 8px;
    }

    .workshop-content {
        padding: 0.8rem;
    }

    .workshop-content h3 {
        font-size: 1.1rem;
    }

    .workshop-description {
        font-size: 0.85rem;
    }

    .workshop-features {
        gap: 0.5rem;
    }

    .feature {
        font-size: 0.65rem;
        padding: 2px 6px;
    }

    .workshop-book-btn {
        font-size: 0.85rem;
        padding: 8px 14px;
    }

    .workshop-image {
        height: 140px;
    }
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #fff;
    opacity: 0.8;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #667eea;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Comprehensive Mobile Responsiveness */

/* Large Tablets and Small Laptops */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    .hero-side-promo {
        width: 100%;
        justify-content: center;
        margin-top: 32px;
    }
    .hero-overlay {
        width: 100%;
        height: 100%;
    }
    .hero-text-bg {
        width: 100%;
        border-radius: 0 0 40px 40px;
        height: 100%;
        left: 0;
        top: 0;
    }
    .hero-title {
        font-size: 3rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-stats {
        justify-content: center;
    }
}

/* Tablets */
@media (max-width: 900px) {
    .hero-content {
        padding: 0 16px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .stat {
        min-width: 120px;
    }
    .promo-poster {
        min-width: 220px;
        max-width: 280px;
    }
}

/* Mobile Landscape */
@media (max-width: 700px) {
    .hero {
        min-height: 100vh;
        padding: 80px 0 20px 0; /* Increase top padding for mobile */
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .hero-overlay {
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
    }
    
    .hero-text-bg {
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        backdrop-filter: blur(10px);
    }
    
    .hero-content {
        flex-direction: column;
        align-items: center;
        padding: 0 12px;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        margin-top: 20px; /* Add top margin */
    }
    
    .hero-side-promo {
        width: 100%;
        margin-top: 24px;
    }
    
    .promo-poster {
        min-width: 200px;
        max-width: 100%;
        padding: 16px 12px 12px 12px;
    }
    
    .hero-text-bg {
        width: 100%;
        height: 100%;
        border-radius: 0 0 30px 30px;
        left: 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-top: 0;
        padding-top: 0;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-stats {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}
/* Mobile Navigation and General Mobile Styles */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .stat {
        text-align: center;
        min-width: 100px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .workshops-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .workshop-card.featured {
        transform: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }

    .container {
        padding: 0 16px;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        padding: 90px 0 20px 0; /* Even more top padding for small mobile */
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .hero-overlay {
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
    }
    
    .hero-text-bg {
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        backdrop-filter: blur(12px);
    }
    
    .hero-content {
        padding: 0 8px;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        margin-top: 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-top: 0;
        padding-top: 0;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        font-size: 0.95rem;
        padding: 12px 20px;
    }

    .promo-poster {
        min-width: 180px;
        padding: 12px 8px 8px 8px;
    }

    .promo-badge {
        font-size: 0.9rem;
        padding: 6px 14px;
    }

    .promo-timer {
        font-size: 1rem;
    }

    .promo-book-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .container {
        padding: 0 12px;
    }

    .nav-container {
        padding: 0 12px;
    }

    .nav-logo h2 {
        font-size: 1.3rem;
    }

    .hero-stats {
        gap: 0.8rem;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .stat {
        min-width: 80px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-text-bg {
        height: 100%;
        top: 0;
        width: 100%;
        left: 0;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 360px) {
    .hero {
        min-height: 100vh;
        padding: 100px 0 20px 0; /* Maximum top padding for very small screens */
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .hero-overlay {
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
    }
    
    .hero-text-bg {
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        backdrop-filter: blur(15px);
    }
    
    .hero-content {
        padding: 0 6px;
        width: 100%;
        max-width: 100%;
        margin-top: 5px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        margin-top: 0;
        padding-top: 0;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .btn {
        max-width: 260px;
        font-size: 0.9rem;
        padding: 10px 18px;
    }

    .promo-poster {
        min-width: 160px;
        padding: 10px 6px 6px 6px;
    }

    .container {
        padding: 0 8px;
    }

    .nav-container {
        padding: 0 8px;
    }

    .nav-logo h2 {
        font-size: 1.2rem;
    }

    .hero-stats {
        gap: 0.6rem;
        margin-top: 0.3rem;
        margin-bottom: 0.3rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-text-bg {
        height: 100%;
        top: 0;
        left: 0;
        width: 100%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.workshop-card,
.service-card,
.gallery-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.workshop-card.animate,
.service-card.animate,
.gallery-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.scrolling-videos-section {
    background: #f8f9fa;
    padding: 40px 0 30px 0;
    overflow: hidden;
    position: relative;
}
.scrolling-videos-track {
    display: flex;
    align-items: center;
    gap: 30px;
    width: max-content;
    animation: scrollVideos 40s linear infinite;
}
.scrolling-videos-track video {
    width: 320px;
    height: 180px;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(102, 126, 234, 0.13);
    object-fit: cover;
    background: #222;
    transition: transform 0.3s;
}
.scrolling-videos-track video:hover {
    transform: scale(1.07) rotate(-1deg);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.18);
}
@keyframes scrollVideos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Testimonials Section */
.testimonials-section {
    background: #f8f9fa;
    padding: 60px 0 40px 0;
    text-align: center;
}
.testimonials-section .section-heading {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #222;
    position: relative;
}
.testimonials-section .section-heading::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #000;
    border-radius: 2px;
}
.testimonials-section .section-subtitle {
    font-size: 1.15rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto 0 auto;
    line-height: 1.6;
}
.testimonials-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 24px 0;
}
.testimonial-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(102, 126, 234, 0.13);
    padding: 32px 28px 28px 28px;
    min-width: 340px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-snap-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 16px 48px rgba(102, 126, 234, 0.18);
}
.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px;
    border: 3px solid #764ba2;
}
.testimonial-quote {
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 18px;
    text-align: center;
    font-style: italic;
}
.testimonial-name {
    font-weight: 700;
    color: #667eea;
    font-size: 1.1rem;
}
.testimonial-location {
    color: #888;
    font-size: 0.95rem;
}

/* Achievements/Stats Section */
.achievements-section {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 70px 0 50px 0;
}
.achievements-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 48px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}
.achievement {
    background: rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 36px 32px 28px 32px;
    min-width: 200px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    flex: 1 1 200px;
}
.achievement-icon {
    font-size: 2.5rem;
    margin-bottom: 18px;
    color: #fff;
    background: linear-gradient(135deg, #ff6b6b 0%, #764ba2 100%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
    box-shadow: 0 2px 12px rgba(255,107,107,0.10);
}
.achievement-number {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #fff;
    letter-spacing: 2px;
    transition: color 0.3s;
}
.achievement-label {
    font-size: 1.1rem;
    color: #f3f3f3;
    opacity: 0.92;
}

/* FAQ Section */
.faq-section {
    background: #fff;
    padding: 80px 0 60px 0;
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.faq-item {
    background: #f8f9fa;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(102, 126, 234, 0.07);
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.faq-question {
    padding: 22px 28px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #764ba2;
    cursor: pointer;
    position: relative;
    background: #fff;
    border: none;
    outline: none;
    width: 100%;
    text-align: left;
    transition: background 0.2s;
}
.faq-question::after {
    content: '+';
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #667eea;
    transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #f8f9fa;
    color: #333;
    font-size: 1.05rem;
    padding: 0 28px;
    transition: max-height 0.4s cubic-bezier(.77,0,.18,1), padding 0.3s;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 18px 28px 22px 28px;
}

.bento-header-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 18px;
    gap: 32px;
}
.bento-bigtext {
    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -2px;
    background: linear-gradient(90deg, #ff6b6b 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.2s, letter-spacing 0.2s;
    cursor: pointer;
    line-height: 1.1;
    user-select: none;
    will-change: transform, letter-spacing;
    animation: bentoBigTextPulse 2.5s infinite alternate;
}
.bento-bigtext:hover {
    transform: scale(1.04) skewX(-2deg);
    letter-spacing: 2px;
}
@keyframes bentoBigTextPulse {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.15); }
}
.bento-heading.left {
    text-align: left;
    margin-bottom: 0;
}
.bento-underline.left {
    margin-left: 0;
    margin-bottom: 0;
}
.bento-bigtext-underline {
    display: block;
    width: 120px;
    height: 7px;
    margin-top: 8px;
    margin-bottom: 18px;
    background: linear-gradient(90deg, #ff6b6b 0%, #764ba2 100%);
    border-radius: 4px;
    position: relative;
    animation: underlineSlide 2.5s infinite linear;
}
@media (max-width: 900px) {
    .bento-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .bento-bigtext {
        font-size: 2rem;
    }
    .bento-bigtext-underline {
        width: 70px;
        height: 5px;
        margin-bottom: 10px;
    }
}

.bento-premium-para {
    font-size: 1.35rem;
    color: #232323;
    font-family: 'Georgia', 'Times New Roman', serif;
    max-width: 520px;
    line-height: 1.6;
    margin: 0;
    text-align: left;
    font-weight: 500;
    letter-spacing: 0.01em;
    opacity: 0;
    animation: fadeInPremium 1.2s 0.2s forwards;
}
@keyframes fadeInPremium {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.reviews-wall-section {
    background: #fff;
    color: #232323;
    padding: 90px 0 60px 0;
    position: relative;
    overflow: hidden;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
.reviews-wall-header {
    text-align: center;
    margin-bottom: 38px;
}
.reviews-wall-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -1px;
    font-family: 'Montserrat', 'Inter', Arial, sans-serif;
    color: #232323;
}
.reviews-wall-subtitle {
    font-size: 1.15rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 0;
}
.reviews-wall-viewport {
    width: 100%;
    margin: 0 auto;
    height: 520px;
    overflow: hidden;
    position: relative;
}
.reviews-wall-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    width: 100%;
    animation: reviewsWallScroll 24s linear infinite;
}
@keyframes reviewsWallScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}
.review-card {
    background: #f8f9fa;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(102, 126, 234, 0.10);
    padding: 28px 22px 22px 22px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    font-size: 1.08rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f3f3f3;
}
.review-card:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.18);
    border: 1px solid #764ba2;
}
.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 2px solid #764ba2;
}
.review-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}
.review-name {
    font-weight: 700;
    color: #232323;
    font-size: 1.08rem;
}
.review-meta {
    display: inline-flex;
    align-items: center;
    font-size: 1.1rem;
    color: #2196f3;
    margin-left: 2px;
}
.review-meta .meta-verified {
    color: #2196f3;
    font-size: 1.2em;
    margin-left: 2px;
    vertical-align: middle;
}
.review-quote {
    color: #444;
    font-size: 1.05rem;
    margin-bottom: 0;
    font-style: italic;
    line-height: 1.5;
}
@media (max-width: 1200px) {
    .reviews-wall-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 900px) {
    .reviews-wall-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .reviews-wall-viewport {
        height: 340px;
    }
    .reviews-wall-title { font-size: 1.5rem; }
} 

/* --- Creative Premium Workshops Card Styles --- */
.workshop-card.creative-premium {
  width: 370px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(102,126,234,0.13), 0 1.5px 8px rgba(0,0,0,0.07);
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.workshop-card.creative-premium:hover {
  box-shadow: 0 16px 48px rgba(102,126,234,0.18), 0 4px 24px rgba(0,0,0,0.10);
  transform: translateY(-8px) scale(1.03);
  z-index: 2;
}
.workshop-poster-container {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.workshop-poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  transition: transform 0.3s;
}
.workshop-card.creative-premium:hover .workshop-poster-img {
  transform: scale(1.06) rotate(-1deg);
}
.workshop-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 16px;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(102,126,234,0.13);
  z-index: 2;
  letter-spacing: 0.01em;
}
.workshop-badge.book-fast {
  background: linear-gradient(90deg, #ff6b6b 0%, #ee5a24 100%);
}
.workshop-badge.completed {
  background: linear-gradient(90deg, #bdbdbd 0%, #757575 100%);
}

.workshop-badge.recurring {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

/* Special styling for regular classes */
.workshop-badge.regular-classes {
  background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
  color: #fff;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 16px;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(255, 152, 0, 0.25);
  z-index: 2;
  letter-spacing: 0.01em;
}

.workshop-badge.urgent {
  background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.workshop-timer-overlay {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255,255,255,0.92);
  color: #764ba2;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 14px;
  font-size: 1.05rem;
  box-shadow: 0 2px 8px rgba(102,126,234,0.10);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
}
.workshop-timer-overlay .timer-label {
  color: #ff6b6b;
  font-weight: 700;
  margin-right: 6px;
}
.workshop-content.creative-content {
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.workshop-content.creative-content h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  color: #232323;
  font-family: 'Montserrat', 'Inter', Arial, sans-serif;
}
.workshop-content.creative-content .workshop-location,
.workshop-content.creative-content .workshop-date {
  color: #667eea;
  font-size: 1.01rem;
  margin-bottom: 0.2rem;
  font-weight: 600;
}
.workshop-content.creative-content .workshop-date {
  color: #764ba2;
}
.workshop-content.creative-content .workshop-description {
  color: #444;
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
  margin-top: 0.5rem;
  font-style: italic;
  line-height: 1.5;
}
.workshop-content.creative-content .workshop-features {
  display: flex;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
}
.workshop-content.creative-content .feature {
  background: #f8f9fa;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.93rem;
  color: #666;
  font-weight: 600;
}
.workshop-content.creative-content .workshop-price {
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.workshop-content.creative-content .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #667eea;
}
.workshop-content.creative-content .original-price {
  font-size: 1rem;
  color: #999;
  text-decoration: line-through;
}
.workshop-content.creative-content .workshop-book-btn {
  width: 100%;
  text-align: center;
  font-size: 1.1rem;
  padding: 14px 0;
  margin-top: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(102,126,234,0.10);
  transition: background 0.2s;
}
.workshop-content.creative-content .workshop-book-btn:hover {
  background: linear-gradient(90deg, #ff6b6b 0%, #ee5a24 100%);
  color: #fff;
}
@media (max-width: 900px) {
  .workshop-card.creative-premium {
    width: 98vw;
    max-width: 420px;
  }
  .workshop-poster-container {
    height: 180px;
  }
}
@media (max-width: 600px) {
  .workshop-card.creative-premium {
    width: 99vw;
    max-width: 99vw;
    border-radius: 0;
  }
  .workshop-poster-container {
    height: 140px;
    border-radius: 0;
  }
  .workshop-poster-img {
    border-radius: 0;
  }
} 

/* --- Enhanced Horizontal Workshop List View --- */
.horizontal-workshops-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.workshop-row {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  padding: 24px 32px 24px 32px;
  gap: 32px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  min-height: 140px;
  border: 1.5px solid #e9ecef;
}
.workshop-row:hover {
  box-shadow: 0 6px 32px rgba(102,126,234,0.13);
  transform: translateY(-2px) scale(1.01);
}

/* Special styling for regular classes row */
.workshop-row.regular-classes {
  background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
  border: 2px solid #FFB74D;
  box-shadow: 0 4px 20px rgba(255, 152, 0, 0.15);
}

.workshop-row.regular-classes:hover {
  box-shadow: 0 8px 32px rgba(255, 152, 0, 0.25);
  transform: translateY(-3px) scale(1.02);
  border-color: #FF9800;
}

.workshop-row-badge {
  position: absolute;
  left: 32px;
  top: -18px;
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
  color: #fff;
  font-weight: 700;
  padding: 7px 22px;
  border-radius: 12px 12px 12px 0;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(76,175,80,0.10);
  z-index: 2;
}
.workshop-row-badge.upcoming {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}
.workshop-row-badge.urgent {
  background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
  animation: pulse 2s infinite;
}

/* Regular classes row badge styling */
.workshop-row-badge.regular-classes {
  background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
  color: #fff;
  font-weight: 700;
  padding: 7px 22px;
  border-radius: 12px 12px 12px 0;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(255, 152, 0, 0.25);
  z-index: 2;
}

.workshop-row-poster {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(102,126,234,0.10);
  margin-right: 36px;
  background: #f4f8ff;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .workshop-row-poster {
    width: 100vw;
    max-width: 100%;
    height: 180px;
    margin-right: 0;
    margin-bottom: 14px;
    border-radius: 14px;
  }
  .workshop-row {
    flex-direction: column;
    align-items: stretch;
  }

  .workshop-row-title {
    font-size: 1.1rem;
    line-height: 1.3;
  }

  .workshop-row-meta {
    font-size: 0.9rem;
    gap: 0.8rem;
  }

  .workshop-row-desc {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .workshop-row-features {
    gap: 0.5rem;
  }

  .workshop-row-feature {
    font-size: 0.8rem;
    padding: 4px 8px;
  }

  .workshop-row-price {
    font-size: 1rem;
  }

  .workshop-row-actions {
    gap: 0.8rem;
  }

  .workshop-row-view,
  .workshop-row-book {
    font-size: 0.9rem;
    padding: 10px 16px;
  }
}

@media (max-width: 600px) {
  .workshop-row {
    padding: 16px;
    gap: 16px;
    min-height: auto;
  }

  .workshop-row-poster {
    width: 100%;
    height: 140px;
    margin-bottom: 12px;
    border-radius: 12px;
  }

  .workshop-row-info {
    width: 100%;
  }

  .workshop-row-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .workshop-row-meta {
    font-size: 0.85rem;
    margin-bottom: 8px;
    flex-direction: column;
    gap: 0.3rem;
  }

  .workshop-row-desc {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .workshop-row-features {
    margin-bottom: 12px;
    gap: 0.4rem;
  }

  .workshop-row-feature {
    font-size: 0.75rem;
    padding: 4px 8px;
  }

  .workshop-row-price {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .workshop-row-actions {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }

  .workshop-row-view,
  .workshop-row-book {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    padding: 12px;
  }

  .workshop-row-badge {
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 12px;
    border-radius: 12px;
  }
}
.workshop-row-info {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  justify-content: center;
}
.workshop-row-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.workshop-row-meta {
  display: flex;
  gap: 18px;
  font-size: 1rem;
  color: #667eea;
  align-items: center;
  flex-wrap: wrap;
}
.workshop-row-meta i {
  margin-right: 4px;
}
.workshop-row-desc {
  color: #444;
  font-size: 0.98rem;
  margin-top: 2px;
  max-width: 600px;
  white-space: normal;
}
.workshop-row-features {
  display: flex;
  gap: 10px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.workshop-row-feature {
  background: #eaf1fb;
  color: #667eea;
  border-radius: 8px;
  padding: 3px 10px;
  font-size: 0.92rem;
  font-weight: 500;
}
.workshop-row-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #28a745;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Regular classes specific text styling */
.workshop-row.regular-classes .workshop-row-title {
  color: #E65100;
  font-weight: 800;
}

.workshop-row.regular-classes .workshop-row-meta {
  color: #FF9800;
}

.workshop-row.regular-classes .workshop-row-feature {
  background: #FFE0B2;
  color: #E65100;
  border: 1px solid #FFCC02;
}

.workshop-row.regular-classes .workshop-row-price {
  color: #FF6F00;
}
.workshop-row-original-price {
  color: #bdbdbd;
  text-decoration: line-through;
  font-size: 1rem;
  font-weight: 500;
}
.workshop-row-discounted-price {
  color: #28a745;
  font-size: 1.15rem;
  font-weight: 700;
}
.workshop-row-timer {
  font-size: 1rem;
  font-weight: 600;
  color: #ff4757;
  margin-top: 2px;
  background: #fff6f6;
  border-radius: 8px;
  padding: 3px 12px;
  display: inline-block;
  letter-spacing: 1px;
}
.workshop-row-view {
  margin-left: 24px;
  background: #667eea;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(102,126,234,0.08);
}
.workshop-row-view:hover {
  background: #764ba2;
  box-shadow: 0 4px 16px rgba(102,126,234,0.18);
}
.workshop-row-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  margin-left: 24px;
}
@media (max-width: 900px) {
  .workshop-row-actions {
    flex-direction: row;
    align-items: stretch;
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
    gap: 10px;
  }
}
.workshop-row-book {
  background: #28a745;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 2px 8px rgba(40,167,69,0.08);
  text-decoration: none !important;
  display: inline-block;
  outline: none;
  position: relative;
  overflow: hidden;
  animation: shake-smooth 1.2s linear infinite;
}
@keyframes shake-smooth {
  0% { transform: translateX(0); }
  20% { transform: translateX(-3px); }
  40% { transform: translateX(3px); }
  60% { transform: translateX(-2px); }
  80% { transform: translateX(2px); }
  100% { transform: translateX(0); }
}
.workshop-row-book:hover, .workshop-row-book:focus {
  background: #218838;
  box-shadow: 0 4px 16px rgba(40,167,69,0.18);
  transform: scale(1.04);
  text-decoration: none !important;
}
.workshop-row-book::after {
  content: '';
  position: absolute;
  left: -75%;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0.01) 100%);
  transform: skewX(-20deg);
  transition: left 0.3s;
  pointer-events: none;
}
.workshop-row-book:hover::after, .workshop-row-book:focus::after {
  left: 120%;
}

/* Regular classes specific button and poster styling */
.workshop-row.regular-classes .workshop-row-book {
  background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(255, 152, 0, 0.20);
  animation: glow-orange 2s ease-in-out infinite alternate;
}

@keyframes glow-orange {
  from {
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.20);
  }
  to {
    box-shadow: 0 4px 16px rgba(255, 152, 0, 0.40), 0 0 20px rgba(255, 152, 0, 0.15);
  }
}

.workshop-row.regular-classes .workshop-row-book:hover {
  background: linear-gradient(135deg, #F57C00 0%, #E65100 100%);
  box-shadow: 0 6px 20px rgba(255, 152, 0, 0.35);
  transform: scale(1.05);
}

.workshop-row.regular-classes .workshop-row-view {
  background: #FF9800;
  color: #fff;
  border: 2px solid #FFB74D;
}

.workshop-row.regular-classes .workshop-row-view:hover {
  background: #F57C00;
  border-color: #FF9800;
  box-shadow: 0 4px 16px rgba(255, 152, 0, 0.25);
}

.workshop-row.regular-classes .workshop-row-poster {
  border: 3px solid #FFB74D;
  box-shadow: 0 4px 16px rgba(255, 152, 0, 0.20);
}

/* Workshop section headings */
.workshops-section-heading {
  margin: 40px 0 20px 0;
  text-align: center;
  padding: 0 20px;
}

.workshops-section-heading:first-child {
  margin-top: 0;
}

.workshops-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.workshops-section-title i {
  color: #667eea;
  font-size: 1.6rem;
}

.workshops-section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
  font-weight: 400;
}

/* Completed section specific styling */
.workshops-section-heading.completed-section .workshops-section-title {
  color: #666;
}

.workshops-section-heading.completed-section .workshops-section-title i {
  color: #999;
}

.workshops-section-heading.completed-section .workshops-section-subtitle {
  color: #888;
}

@media (max-width: 768px) {
  .workshops-section-title {
    font-size: 1.4rem;
    flex-direction: column;
    gap: 8px;
  }
  
  .workshops-section-title i {
    font-size: 1.4rem;
  }
  
  .workshops-section-subtitle {
    font-size: 1rem;
  }

  .horizontal-workshops-list {
    gap: 16px;
    margin-top: 24px;
  }

  .workshops-section-heading {
    margin-bottom: 20px;
    padding: 0 16px;
  }
}

@media (max-width: 600px) {
  .workshops-section-title {
    font-size: 1.3rem;
    line-height: 1.2;
  }
  
  .workshops-section-title i {
    font-size: 1.2rem;
    margin-right: 6px;
  }
  
  .workshops-section-subtitle {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .horizontal-workshops-list {
    gap: 12px;
    margin-top: 20px;
  }

  .workshops-section-heading {
    margin-bottom: 16px;
    padding: 0 12px;
  }
}

@media (max-width: 480px) {
  .workshops-section-title {
    font-size: 1.2rem;
    line-height: 1.2;
  }
  
  .workshops-section-title i {
    font-size: 1.1rem;
    margin-right: 5px;
  }
  
  .workshops-section-subtitle {
    font-size: 0.85rem;
    line-height: 1.3;
  }

  .horizontal-workshops-list {
    gap: 10px;
    margin-top: 16px;
  }

  .workshops-section-heading {
    margin-bottom: 12px;
    padding: 0 8px;
  }
}

/* Modal for poster */
.workshop-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.2s;
}
.workshop-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 32px 24px 24px 24px;
  max-width: 420px;
  width: 95vw;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  text-align: center;
  position: relative;
}
.workshop-modal-content img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 18px;
}
.workshop-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  color: #667eea;
  font-size: 2rem;
  cursor: pointer;
}
@media (max-width: 900px) {
  .workshop-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 10px;
  }
  .workshop-row-badge {
    left: 10px;
    top: -18px;
  }
  .workshop-row-view {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
  }

  .workshop-modal-content {
    width: 95%;
    max-width: 500px;
    padding: 24px;
  }

  .workshop-modal-content img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .workshop-modal-content h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 600px) {
  .workshop-modal-content {
    width: 98%;
    padding: 16px;
  }

  .workshop-modal-content img {
    height: 150px;
  }

  .workshop-modal-content h3 {
    font-size: 1.2rem;
  }

  .workshop-modal-close {
    top: 8px;
    right: 8px;
    font-size: 1.5rem;
  }
} 

.section-header.workshops-header-align {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 12px;
  margin-bottom: 18px;
}
.section-header.workshops-header-align .section-title {
  margin-bottom: 0;
  font-size: 2.3rem;
  line-height: 1.1;
}
.section-header.workshops-header-align .section-subtitle {
  margin-top: 0;
  font-size: 1.15rem;
  color: #555;
  max-width: 600px;
  line-height: 1.6;
}
@media (max-width: 700px) {
  .section-header.workshops-header-align {
    max-width: 100%;
    margin-bottom: 18px;
  }
  .section-header.workshops-header-align .section-title {
    font-size: 1.35rem;
  }
  .section-header.workshops-header-align .section-subtitle {
    font-size: 1rem;
    max-width: 100%;
  }
} 

.section-header-side, .workshops-header-align {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  padding: 0 32px;
}
@media (max-width: 900px) {
  .section-header-side, .workshops-header-align {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    padding: 0 10px;
  }
}
.section-header-side .section-title, .workshops-header-align .section-title {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ff6b6b 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 8px 0;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
}
.section-header-side .section-title-line, .workshops-header-align .section-title-line {
  height: 7px;
  width: 60px;
  border-radius: 8px;
  background: linear-gradient(90deg, #764ba2 0%, #ff6b6b 100%);
  margin-top: 8px;
}
.section-header-side .section-subtitle, .workshops-header-align .section-subtitle {
  font-size: 1.18rem;
  color: #222;
  font-weight: 400;
  margin: 0;
  max-width: 480px;
  line-height: 1.5;
  text-align: right;
}
@media (max-width: 900px) {
  .section-header-side, .workshops-header-align {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
  }
  .section-header-side .section-title, .workshops-header-align .section-title {
    font-size: 1.3rem;
    white-space: normal;
  }
  .section-header-side .section-title-line, .workshops-header-align .section-title-line {
    width: 40px;
    height: 5px;
  }
  .section-header-side .section-subtitle, .workshops-header-align .section-subtitle {
    font-size: 1rem;
    max-width: 100%;
    text-align: left;
  }
} 

.bento-story-section {
  background: #fff;
  padding: 70px 0 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bento-story-container {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(120deg, #e0e7ff 0%, #f8fafc 100%);
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(102,126,234,0.10);
  padding: 48px 40px;
}
.bento-story-text {
  flex: 1 1 0;
}
.bento-story-heading {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: #222;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bento-story-para {
  font-size: 1.18rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 520px;
}
.bento-story-image {
  flex: 0 0 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bento-story-image img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(102,126,234,0.13);
}
@media (max-width: 900px) {
  .bento-story-container {
    flex-direction: column;
    gap: 28px;
    padding: 32px 12px;
  }
  .bento-story-image img {
    width: 220px;
    height: 220px;
  }
  .bento-story-heading {
    font-size: 1.5rem;
  }
  .bento-story-para {
    font-size: 1rem;
  }
} 

.bento-cta-container {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1100px;
  margin: 2rem auto 0 auto;
  background: linear-gradient(120deg, #667eea 0%, #764ba2 100%);
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(102,126,234,0.10);
  padding: 48px 40px;
  color: #fff;
  justify-content: center;
}
.bento-cta-text {
  flex: 1 1 0;
}
.bento-cta-heading {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: #fff;
}
.bento-cta-para {
  font-size: 1.18rem;
  color: #f3f3f3;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}
.bento-cta-image {
  flex: 0 0 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bento-cta-image img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(102,126,234,0.13);
}
@media (max-width: 900px) {
  .bento-cta-container {
    flex-direction: column;
    gap: 28px;
    padding: 32px 12px;
  }
  .bento-cta-image img {
    width: 220px;
    height: 220px;
  }
  .bento-cta-heading {
    font-size: 1.5rem;
  }
  .bento-cta-para {
    font-size: 1rem;
  }
} 

.services-bento-section {
  background: #f8f9fa;
  padding: 80px 0 60px 0;
}
.services-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-bento-card:nth-child(1) {
  grid-row: 1;
  grid-column: 1;
}
.service-bento-card:nth-child(2) {
  grid-row: 1;
  grid-column: 2;
}
.service-bento-card:nth-child(3) {
  grid-row: 1;
  grid-column: 3;
}
.service-bento-card:nth-child(4) {
  grid-row: 2;
  grid-column: 1 / span 2;
}
.service-bento-card:nth-child(5) {
  grid-row: 2;
  grid-column: 3;
}
@media (max-width: 900px) {
  .services-bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .service-bento-card:nth-child(1),
  .service-bento-card:nth-child(2),
  .service-bento-card:nth-child(3),
  .service-bento-card:nth-child(4),
  .service-bento-card:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
  }
}
@media (max-width: 600px) {
  .services-bento-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
} 

.service-bento-card {
  background: #fff;
  border: 1.5px solid #e3e6f0;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(102,126,234,0.07);
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
  min-height: 180px;
}
.service-bento-card:hover {
  box-shadow: 0 8px 32px rgba(102,126,234,0.13);
  border: 1.5px solid #764ba2;
  transform: translateY(-4px) scale(1.02);
} 

.floating-social-icons {
  position: fixed;
  bottom: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 9999;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  box-shadow: 0 8px 32px rgba(102,126,234,0.18);
  backdrop-filter: blur(12px) saturate(1.5);
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  border: 1.5px solid rgba(255,255,255,0.32);
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  font-size: 2rem;
  color: #764ba2;
  cursor: pointer;
  opacity: 0.96;
}
.social-icon.youtube { color: #ff3c3c; }
.social-icon.instagram { color: #e1306c; }
.social-icon.whatsapp { color: #25d366; }
.social-icon:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 40px rgba(102,126,234,0.22);
  background: rgba(255,255,255,0.32);
  opacity: 1;
}
@media (max-width: 700px) {
  .floating-social-icons {
    bottom: 16px;
    right: 12px;
    gap: 10px;
  }
  .social-icon {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
  }
} 

/* Glassmorphic Join the Movement Section */
.join-movement-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.join-movement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.join-movement-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.join-movement-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.join-movement-text {
    color: white;
}

.join-movement-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.join-movement-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: #f8f9fa;
}

.join-movement-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.join-movement-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #f8f9fa;
    opacity: 0.9;
}

.join-movement-feature i {
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.join-movement-cta {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.join-movement-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.join-movement-cta:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.5);
}

.join-movement-cta:hover::before {
    left: 100%;
}

.join-movement-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.join-movement-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 30px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.join-movement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 20px;
    z-index: -1;
}

.join-movement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.4);
}

.join-movement-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.join-movement-card-description {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.join-movement-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 1.5rem;
    color: white;
}

/* Floating elements for enhanced glassmorphism */
.join-movement-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Responsive design for glassmorphic section */
@media (max-width: 900px) {
    .join-movement-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .join-movement-title {
        font-size: 2.2rem;
    }
    
    .join-movement-description {
        font-size: 1.1rem;
    }
    
    .join-movement-features {
        align-items: center;
    }
    
    .join-movement-feature {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .join-movement-section {
        padding: 60px 0;
    }
    
    .join-movement-title {
        font-size: 1.8rem;
    }
    
    .join-movement-description {
        font-size: 1rem;
    }
    
    .join-movement-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .join-movement-card {
        padding: 20px;
    }
}

/* Premium Book Workshop Section */
.premium-book-section {
    background: #f8f9fa;
    padding: 90px 0 70px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.premium-book-container {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 8px 40px rgba(102,126,234,0.10);
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    padding: 48px 32px 36px 32px;
    border: 2.5px solid transparent;
    background-clip: padding-box;
    border-image: linear-gradient(90deg, #667eea 0%, #764ba2 100%) 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.premium-book-title {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}
.premium-book-subtitle {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 32px;
    text-align: center;
    font-weight: 500;
}
.premium-book-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 32px;
}
.premium-book-form input,
.premium-book-form select,
.premium-book-form textarea {
    width: 100%;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1.5px solid #e3e6f0;
    background: #f8f9fa;
    font-size: 1.05rem;
    color: #333;
    transition: border 0.2s, box-shadow 0.2s;
    font-family: inherit;
}
.premium-book-form input:focus,
.premium-book-form select:focus,
.premium-book-form textarea:focus {
    outline: none;
    border: 1.5px solid #764ba2;
    box-shadow: 0 0 0 2px rgba(118,75,162,0.10);
    background: #fff;
}
.premium-book-form textarea {
    min-height: 100px;
    resize: vertical;
}
.premium-book-btn {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    padding: 16px 0;
    width: 100%;
    margin-top: 8px;
    box-shadow: 0 4px 18px rgba(102,126,234,0.13);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}
.premium-book-btn:hover, .premium-book-btn:focus {
    background: linear-gradient(90deg, #764ba2 0%, #667eea 100%);
    box-shadow: 0 8px 32px rgba(102,126,234,0.18);
    transform: scale(1.03);
}
.premium-book-info {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #764ba2;
    font-size: 1.05rem;
    align-items: center;
    text-align: center;
}
.premium-book-info i {
    margin-right: 8px;
    color: #667eea;
}
@media (max-width: 600px) {
    .premium-book-container {
        padding: 24px 6px 18px 6px;
        border-radius: 16px;
    }
    .premium-book-title {
        font-size: 1.3rem;
    }
    .premium-book-subtitle {
        font-size: 1rem;
    }
    .premium-book-form input,
    .premium-book-form select,
    .premium-book-form textarea {
        font-size: 0.98rem;
        padding: 12px 10px;
    }
    .premium-book-btn {
        font-size: 1rem;
        padding: 12px 0;
    }
}


.premium-book-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    width: 100%;
    justify-content: center;
  }
  .premium-book-image {
    flex: 0 0 260px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .premium-book-image img {
    width: 440px;
    max-width: 200%;
    height: auto;
    display: block;
    
   
   
  }
  .premium-book-form-col {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .premium-book-form {
    width: 100%;
    max-width: 320px;
    gap: 14px;
    margin-bottom: 0;
  }
  .premium-book-form input,
  .premium-book-form select {
    padding: 12px 14px;
    font-size: 1rem;
    border-radius: 10px;
  }
  .premium-book-btn {
    margin-top: 8px;
    font-size: 1.08rem;
    padding: 14px 0;
  }
  @media (max-width: 900px) {
    .premium-book-grid {
      flex-direction: column;
      gap: 24px;
      align-items: stretch;
    }
    .premium-book-image {
      justify-content: center;
      margin-bottom: 0;
    }
    .premium-book-form-col {
      justify-content: center;
    }
    .premium-book-form {
      max-width: 100%;
    }
  }
  
.premium-book-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    width: 100%;
    justify-content: center;
    min-height: 340px;
  }
  .premium-book-image {
    flex: 0 0 320px;
    min-width: 220px;
    max-width: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 60%, #e0e7ff 100%);
    border-radius: 24px;
    box-shadow: 0 6px 32px rgba(102,126,234,0.10);
    padding: 18px 12px;
    margin: 0 0 0 0;
  }
  .premium-book-image img {
    width: 100rem;
    max-width: 300px;
    height: auto;
    display: block;
   
  }
  .premium-book-form-col {
    flex: 1 1 0;
    min-width: 260px;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .premium-book-form {
    width: 100%;
    max-width: 340px;
    gap: 16px;
    margin-bottom: 0;
  }
  .premium-book-form input,
  .premium-book-form select {
    padding: 14px 16px;
    font-size: 1.05rem;
    border-radius: 12px;
  }
  .premium-book-btn {
    margin-top: 10px;
    font-size: 1.12rem;
    padding: 16px 0;
  }
  @media (max-width: 900px) {
    .premium-book-grid {
      flex-direction: column;
      gap: 28px;
      align-items: stretch;
      min-height: unset;
    }
    .premium-book-image {
      max-width: 320px;
      margin: 0 auto 0 auto;
      padding: 10px 4px;
    }
    .premium-book-form-col {
      max-width: 100%;
      min-width: 0;
    }
    .premium-book-form {
      max-width: 100%;
    }
  }
  @media (max-width: 600px) {
    .premium-book-image {
      display: none;
    }
  }
  

  