/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
}

/* Header with Back Button */
.topbar {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 0 16px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.06);
    margin-bottom: 0px;
    border-bottom: 3px solid rgba(211,171,66,0.12);
}

.topbar .left {
    position: absolute;
    left: 16px;
}

.logo {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.back-btn {
    border-radius: 10px;
    padding: 8px 12px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background: #fffaf0;
    border: 1px solid rgba(236,229,209,0.6);
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    cursor: pointer;
    font-weight: 600;
    color: #222;
    transition: all 0.3s;
}

.back-btn:hover {
    background: #f9e6a8;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(248, 248, 248, 0.96) 0%, rgba(255, 255, 255, 0.98) 100%),
                url('https://images.unsplash.com/photo-1502082553048-f009c37129b9?auto=format&fit=crop&w=1920&q=80&sat=-20');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
                radial-gradient(circle at bottom left, rgba(249, 230, 168, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.padding-global {
    padding: 0 20px;
}

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

.padding-section-large {
    padding: 20px 0;
}

.header19_component {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.header19_image {
    width: 100%;
    max-width: 400px;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    border: 4px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
}

.header19_image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.header19_content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.header19_content:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.heading-style-h1 {
    font-family: "PT Serif", serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.text-size-medium {
    font-size: 1.1rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 5px;
}

.paragraph {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}

.button-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.line-button, .button-2 {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}

.line-button {
    background: linear-gradient(90deg, #f9e6a8, #d4af37);
    color: #000;
    border: 2px solid #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.line-button:hover {
    background: linear-gradient(90deg, #e5d494, #c19a2e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.line-button i {
    font-size: 20px;
}

.button-2 {
    background: linear-gradient(90deg, #f9e6a8, #d4af37);
    color: #000;
    border: none;
}

.button-2:hover {
    background: linear-gradient(90deg, #e5d494, #c19a2e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* About Section - Enhanced Professional Look with Animations */
.about {
    padding: 70px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.blog-post-header3_component {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 50px;
    align-items: start;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

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

.blog-post-header3_title-wrapper {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-left: 5px solid #d4af37;
    position: relative;
    transition: all 0.4s ease;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.blog-post-header3_title-wrapper:hover {
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.blog-post-header3_title-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 230, 168, 0.05) 0%, transparent 100%);
    border-radius: 20px;
    pointer-events: none;
}

.heading-style-h2 {
    font-family: "PT Serif", serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    animation: fadeIn 1s ease-out 0.3s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.heading-style-h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f9e6a8);
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.5s forwards;
}

@keyframes expandWidth {
    to { width: 80px; }
}

.about-label {
    display: inline-block;
    background: linear-gradient(135deg, #f9e6a8, #d4af37);
    color: #000;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    animation: bounceIn 0.6s ease-out;
    transition: all 0.3s ease;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.about-label:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.rich-text-block {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #555;
    animation: fadeIn 1s ease-out 0.6s backwards;
}

.rich-text-block p {
    margin-bottom: 18px;
    position: relative;
    padding-left: 20px;
}

.rich-text-block p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #d4af37;
    border-radius: 50%;
    opacity: 0.6;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 35px;
    padding-top: 35px;
    border-top: 2px solid #f0f0f0;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 20px 15px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.5s ease-out backwards;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-item:nth-child(1) { animation-delay: 0.8s; }
.stat-item:nth-child(2) { animation-delay: 0.9s; }
.stat-item:nth-child(3) { animation-delay: 1s; }
.stat-item:nth-child(4) { animation-delay: 1.1s; }

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #fffef8 100%);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4af37;
    font-family: "PT Serif", serif;
    display: block;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    color: #c19a2e;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
    color: #333;
}

.blog-post-header3_image-wrapper {
    position: relative;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.blog-post-header3_image-wrapper::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f9e6a8, #d4af37);
    border-radius: 20px;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.03);
        opacity: 1;
    }
}

.blog-post-header3_image {
    width: 100%;
    max-width: 360px;
    height: 440px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

.blog-post-header3_image-wrapper:hover .blog-post-header3_image {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    z-index: 2;
    transition: all 0.3s ease;
    animation: slideInUp 1s ease-out 0.5s backwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.image-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.badge-title {
    font-size: 0.8rem;
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: #2c2c2c;
}

/* Therapy Process */
.thearpy-process-copy {
    padding: 80px 0;
    background: #f9f9f9;
}

.heading {
    font-family: "PT Serif", serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c2c2c;
}

.layout230_group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.layout230_item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.layout230_item:hover {
    transform: translateY(-5px);
}

.layout230_image {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
}

.heading-style-h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 15px;
}

.paragraph-3 {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* Services Section */
.our-services {
    padding: 80px 0;
    background: #fff;
}

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.blog33_item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog33_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.blog33_image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.heading-style-h5-2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #d4af37;
    padding: 20px 20px 10px;
}

.text-size-regular {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    padding: 0 20px 20px;
}

.solid-button {
    display: block;
    margin: 0 20px 20px;
    padding: 12px 25px;
    background: linear-gradient(90deg, #f9e6a8, #d4af37);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}

.solid-button:hover {
    background: linear-gradient(90deg, #e5d494, #c19a2e);
    transform: translateY(-2px);
}

/* Packages Section - Reduced Size */
.our-packages {
    padding: 80px 0;
    background: #f9f9f9;
}

.blog33_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.blog33_list .blog33_item {
    max-height: 600px;
}

.blog33_list .blog33_image {
    height: 200px;
}

.blog33_list .text-size-regular {
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Batches Table Styles */
.batches-table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.batches-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
}

.batches-table thead {
    background: linear-gradient(90deg, #f9e6a8, #d4af37);
    color: #000;
}

.batches-table thead th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.batches-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.batches-table tbody tr:last-child {
    border-bottom: none;
}

.batches-table tbody tr:hover {
    background: #fafafa;
}

.batches-table tbody td {
    padding: 18px 20px;
    font-size: 0.95rem;
    color: #333;
}

.batch-details-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(90deg, #f9e6a8, #d4af37);
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.2);
}

.batch-details-btn:hover {
    background: linear-gradient(90deg, #e5d494, #c19a2e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.hidden-batch {
    display: none;
}

.toggle-batches-container {
    text-align: center;
    margin-top: 25px;
    padding: 20px;
    background: #fff;
    border-radius: 0 0 15px 15px;
}

#toggle-batches-btn {
    padding: 14px 35px;
    background: linear-gradient(90deg, #f9e6a8, #d4af37);
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

#toggle-batches-btn:hover {
    background: linear-gradient(90deg, #e5d494, #c19a2e);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

#toggle-icon {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

/* Our Values */
.our-values {
    padding: 80px 0;
    background: #fff;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto;
}

.flex-block-7 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    background: #f9f9f9;
    border-radius: 15px;
    transition: transform 0.3s;
}

.flex-block-7:hover {
    transform: translateY(-5px);
}

.image-5 {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.text-block-7 {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

/* Testimonials (Celebs) */
.testimonials {
    padding: 80px 0;
    background: #f9f9f9;
}

.heading-3 {
    font-family: "PT Serif", serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c2c2c;
}

.testimonial22_component-copy {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial22_content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.image-6 {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.text-weight-semibold {
    font-weight: 600;
    font-size: 1.1rem;
    color: #d4af37;
    margin-bottom: 15px;
}

.text-size-medium-3 {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* FAQs with Collapsible Items */
.faqs {
    padding: 80px 0;
    background: #fff;
}

.heading-4 {
    font-family: "PT Serif", serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c2c2c;
}

.faq7_item {
    background: #f9f9f9;
    padding: 0;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f0f0f0;
}

.text-size-medium-4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #d4af37;
    margin: 0;
    flex: 1;
}

.faq-arrow {
    font-size: 1.2rem;
    color: #d4af37;
    transition: transform 0.3s;
    margin-left: 15px;
}

.faq7_item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq7_item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

.paragraph-6 {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.footer-brand img {
    width: 120px;
    margin-bottom: 20px;
}

.text-block-8 {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 30px;
}

.footer-social-block {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.footer-social-link:hover {
    background: #d4af37;
}

.footer-social-link img {
    width: 24px;
    height: 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.title-small {
    font-size: 1.1rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 15px;
}

.footer-link {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #d4af37;
}

/* Responsive Design */
@media (max-width: 991px) {
    .header19_component,
    .blog-post-header3_component {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .header19_image,
    .blog-post-header3_image {
        max-width: 100%;
        margin: 0 auto;
        height: 400px;
    }
    
    .blog-post-header3_image-wrapper::before {
        top: -10px;
        right: -10px;
    }
    
    .blog-post-header3_title-wrapper {
        padding: 35px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .layout230_group,
    .services,
    .blog33_list,
    .testimonial22_component-copy,
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-wrapper {
        grid-template-columns: 1fr;
    }
    
    /* Batches Table Responsive */
    .batches-table thead th,
    .batches-table tbody td {
        padding: 15px 12px;
        font-size: 0.9rem;
    }
    
    .batch-details-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .heading-style-h1 {
        font-size: 2rem;
    }
    
    .heading-style-h2 {
        font-size: 1.8rem;
    }
    
    .heading {
        font-size: 2rem;
    }
    
    /* Hero mobile optimization */
    .hero {
        background-attachment: scroll;
    }
    
    .header19_image {
        height: 350px;
    }
    
    .header19_content {
        padding: 30px 25px;
        background: rgba(255, 255, 255, 0.92);
    }
    
    .blog-post-header3_image {
        height: 380px;
    }
    
    .blog-post-header3_title-wrapper {
        padding: 30px 25px;
    }
    
    .blog-post-header3_image-wrapper::before {
        top: -8px;
        right: -8px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 18px 15px;
    }
    
    .layout230_group,
    .services,
    .blog33_list,
    .testimonial22_component-copy,
    .grid {
        grid-template-columns: 1fr;
    }
    
    /* Batches Table Mobile */
    .batches-table-wrapper {
        border-radius: 10px;
    }
    
    .batches-table thead th {
        padding: 12px 10px;
        font-size: 0.8rem;
    }
    
    .batches-table tbody td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }
    
    .batch-details-btn {
        padding: 7px 12px;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    #toggle-batches-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* Utility Classes */
.w-condition-invisible {
    display: none !important;
}

.margin-bottom {
    margin-bottom: 20px;
}

.margin-small {
    margin-bottom: 10px;
}

.margin-medium {
    margin-bottom: 30px;
}

.margin-large {
    margin-bottom: 40px;
}

.margin-top {
    margin-top: 20px;
}

.w-layout-vflex,
.w-layout-hflex {
    display: flex;
}

.w-layout-vflex {
    flex-direction: column;
}

.w-layout-hflex {
    flex-direction: row;
}

.w-layout-grid {
    display: grid;
}

.padding-global-2 {
    padding: 0 20px;
}

.container-large-2 {
    max-width: 1200px;
    margin: 0 auto;
}

.padding-section-large-2,
.padding-section-large-3,
.padding-section-large-4 {
    padding: 20px 0;
}

.margin-xxlarge {
    margin-bottom: 40px;
}

.margin-xsmall {
    margin-bottom: 10px;
}

.max-width-large {
    max-width: 100%;
}

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

.layout230_component,
.blog33_component,
.blog33_list-wrapper,
.faq7_component {
    width: 100%;
}

.container-6,
.container-7,
.container-small-cal-1 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.flex-block-13 {
    display: flex;
    flex-direction: column;
}

.w-inline-block {
    display: inline-block;
}

.footer-brand {
    text-decoration: none;
}

.testimonial-slider-small {
    width: 100%;
}

.layout230_image-wrapper {
    display: flex;
    justify-content: center;
}