/* ==================== ULTRA-ANIMATED ELITE PANCHAKARMA STYLING ==================== */
.panch-intro-section {
    padding: 70px 0 50px 0;
    background-color: #ffffff;
}

.panch-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #eaf2e8;
    color: #2e7d32;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 20px;
}

.panch-intro-text h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1a3022;
    line-height: 1.25;
    margin-bottom: 20px;
}

.story-lead {
	font-size: 16.5px;
    font-weight: 600;
    color: #2e7d32;
    line-height: 1.6;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.story-desc {
    font-size: 15px;
    color: #556058;
    line-height: 1.75;
    font-weight: 500;
}

.panch-intro-img {
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border: 4px solid #eaf2e8;
}

.panch-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.panch-intro-img:hover img {
    transform: scale(1.05);
}

/* Purva Karma Banner */
.purva-karma-section {
    padding: 30px 0 60px 0;
    background-color: #ffffff;
}

.panch-step-banner {
    background: linear-gradient(135deg, #f4f8f2, #eaf2e8);
    border: 1px solid #dcebd4;
    border-radius: 28px;
    padding: 45px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    box-shadow: 0 12px 35px rgba(46,125,50,0.05);
}

.step-icon-box {
    width: 70px;
    height: 70px;
    background: #2e7d32;
    color: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(46,125,50,0.3);
}

.step-num {
    display: inline-block;
    background: #2e7d32;
    color: #ffffff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 12px;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1a3022;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 15px;
    color: #556058;
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

.step-content strong {
    color: #2e7d32;
}

/* Pradhana Karma Elite Animated Grid Cards */
.pradhana-karma-section {
    padding: 60px 0 100px 0;
    background: radial-gradient(circle at top, #f0f7ec 0%, #f7f9f6 70%);
}

.panch-grid-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.panch-elite-card {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid #dcebd4;
    box-shadow: 0 15px 40px rgba(46, 125, 50, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}

.full-span-card {
    grid-column: span 2;
}

/* Hover Floating & Glowing Effect */
.panch-elite-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(46, 125, 50, 0.18);
    border-color: #2e7d32;
}

/* Elite Image Box Animation */
.elite-img-box {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.elite-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.panch-elite-card:hover .elite-img-box img {
    transform: scale(1.12) rotate(1deg);
}

.elite-img-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11,31,20,0.5), transparent);
}

.elite-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    color: #2e7d32;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.elite-floating-icon {
    position: absolute;
    bottom: 180px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: #2e7d32;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 10px 25px rgba(46, 125, 50, 0.4);
    z-index: 3;
    border: 4px solid #ffffff;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.panch-elite-card:hover .elite-floating-icon {
    transform: rotate(360deg) scale(1.15);
    background: #1b5e20;
    box-shadow: 0 15px 30px rgba(46, 125, 50, 0.6);
}

/* Text Content Box */
.elite-text-box {
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.elite-text-box h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1a3022;
    margin-bottom: 12px;
}

.elite-text-box p {
    font-size: 14.5px;
    color: #556058;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 500;
}

.elite-card-action {
    padding-top: 18px;
    border-top: 1px solid #eaf2e8;
}

.btn-panch-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: #ffffff;
    padding: 11px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(46, 125, 50, 0.3);
    transition: all 0.3s ease;
}

.btn-panch-book:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(46, 125, 50, 0.45);
}

/* Responsive Media Queries */
@media screen and (max-width: 992px) {
    .panch-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .panch-grid-cards, .full-span-card {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    .panch-step-banner {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }
    .elite-text-box {
        padding: 25px;
    }
}