/* ========================================
   CSS VARIABLES (Add at top if not exists)
======================================== */
:root {
    --primary-maroon: #800000;
    --dark-maroon: #5C0000;
    --accent-gold: #FFD700;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --light-bg: #f9f9f9;
    --border-color: #eee;
    --shadow: rgba(128, 0, 0, 0.15);
    --success-green: #25D366;
}

/* ========================================
   STATISTICS SECTION (NEW)
======================================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-maroon) 0%, var(--dark-maroon) 100%);
    padding: 22px 0;
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 0px;
    width: 70%;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 0px;
    /* background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease; */
}

.stat-card:hover {
    /* transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
}

.stat-icon {
    font-size: 34px;
    color: var(--accent-gold);
    margin-bottom: 15px;
    line-height: 20px;
}

.stat-number {
    font-size: 31px;
    font-weight: bold;
    color: var(--accent-gold);
    margin-bottom: 8px;
    line-height: 29px;
}

.stat-label {
   font-size: 15px;
    color: var(--white);
    font-weight: 500;
    line-height: 20px;
}

/* ========================================
   FEATURES / WHY CHOOSE US SECTION (NEW)
======================================== */
.features-section {
    padding: 80px 20px;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow);
    border-color: var(--primary-maroon);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--accent-gold);
    border: 4px solid var(--accent-gold);
    box-shadow: 0 8px 25px rgba(128, 0, 0, 0.2);
}

.feature-title {
    font-size: 22px;
    color: var(--primary-maroon);
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-stat-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-maroon);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 12px;
}

.feature-description {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* ========================================
   EMPTY STATE STYLES (NEW)
======================================== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.empty-state-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.empty-state p {
    font-size: 16px;
}

/* ========================================
   PRODUCT PRICE ORIGINAL (NEW)
======================================== */
.product-price-original {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-right: 8px;
    font-weight: normal;
}

/* ========================================
   ADDITIONAL CAROUSEL (NEW - for ADVANCE items)
======================================== */
.additional-carousel {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 2px 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.additional-carousel::-webkit-scrollbar {
    height: 6px;
}

.additional-carousel::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.18);
    border-radius: 999px;
}

.additional-card {
    flex: 0 0 290px;
    scroll-snap-align: start;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.additional-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.additional-card__img {
    height: 170px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.additional-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(128, 0, 0, 0.92);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 999px;
    letter-spacing: 0.4px;
}

.additional-type {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 215, 0, 0.95);
    color: var(--dark-maroon);
    font-size: 11px;
    font-weight: 900;
    padding: 6px 10px;
    border-radius: 999px;
    letter-spacing: 0.3px;
}

.additional-card__body {
    padding: 12px 12px 14px;
}

.additional-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 6px;
}

.additional-title {
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
    margin: 0 0 8px;
    color: #4A0000;
}

.additional-desc {
    font-size: 12px;
    opacity: 0.78;
    margin: 0 0 12px;
    min-height: 34px;
}

.additional-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
}

.additional-price .current {
    font-size: 15px;
    font-weight: 900;
    color: var(--primary-maroon);
}

.additional-price .label {
    font-size: 11px;
    opacity: 0.75;
}

.additional-price .original {
    text-decoration: line-through;
    opacity: 0.55;
    font-size: 12px;
}

.additional-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: var(--primary-maroon);
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
}

.additional-btn i {
    font-size: 12px;
}

/* ========================================
   HERO CAROUSEL (EXISTING)
======================================== */
.hero-carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: top center;
}

.hero-slide .container {
    height: 100%;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(128 0 0 / 50%), rgb(92 0 0 / 38%));
}

/* Realistic Hero Images using Unsplash */
.hero-slide-1 {
    background-image: url('/puja/images/image_1_11zon.png');
}

.hero-slide-2 {
    background-image: url('/puja/images/image_2_11zon.png');
}

.hero-slide-3 {
    background-image: url('/puja/images/image_3_11zon.png');
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 700px;
}

.hero-text h2 {
    font-size: 56px;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease;
}

.hero-text h2 span {
    color: var(--accent-gold);
}

.hero-text p {
    font-size: 20px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 35px;
    line-height: 1.8;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 40px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

.hero-stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

.hero-button {
    padding: 16px 40px;
    font-size: 16px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid transparent;
}

.hero-button i {
    font-size: 18px;
}

.hero-button-primary {
    background: var(--accent-gold);
    color: var(--primary-maroon);
    border-color: var(--accent-gold);
}

.hero-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 223, 0, 0.4);
}

.hero-button-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.hero-button-secondary:hover {
    background: var(--white);
    color: var(--primary-maroon);
    transform: translateY(-3px);
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 15px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--accent-gold);
    width: 35px;
    border-radius: 10px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    font-size: 24px;
}

.carousel-arrow:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-maroon);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

/* ========================================
   HOW IT WORKS SECTION (EXISTING)
======================================== */
.how-it-works {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary-maroon);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-size: 14px;
}

.section-title {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title span {
    background: linear-gradient(135deg, var(--primary-maroon), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-card {
    text-align: center;
    padding: 35px 20px;
    background: var(--light-bg);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.step-card::after {
    content: '→';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: var(--accent-gold);
    font-weight: 700;
}

.step-card:last-child::after {
    display: none;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow);
}

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent-gold);
    font-weight: 700;
    border: 4px solid var(--accent-gold);
}

.step-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 14px;
}

/* ========================================
   CATEGORIES SECTION (EXISTING)
======================================== */
.categories-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.category-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-maroon);
    box-shadow: 0 15px 40px var(--shadow);
}

.category-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border: 4px solid var(--accent-gold);
    box-shadow: 0 8px 25px rgba(128, 0, 0, 0.2);
    color: var(--accent-gold);
}

.category-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.category-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 14px;
}

.category-count {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-maroon);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
    margin-top: 10px;
}

/* ========================================
   SERVICES SECTION (EXISTING)
======================================== */
.services-section {
    padding: 80px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--light-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow);
    border-color: var(--primary-maroon);
}

.service-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

/* Realistic Service Images from Unsplash */
.service-image-1 {
    background-image: url('/puja/images/vastu-puja-griha-pravesh-1024x685.jpg');
}

.service-image-2 {
    background-image: url('/puja/images/The-Best-Wedding-Photography-Chennai-Packages-Ideas-in-2025.webp');
}

.service-image-3 {
    background-image: url('/puja/images/8l6jplv_sayanarayan-puja_625x300_06_January_23.webp');
}

.service-image-4 {
    background-image: url('/puja/images/Indian-Hindu-Naming-Ceremony-Photography-Namkaran-Service-43.webp');
}

.service-image-5 {
    background-image: url('/puja/images/How-the-First-Year-Shraddha-Rituals-Are-Conducted.png');
}

.service-image-6 {
    background-image: url('/puja/images/Laxmi-Puja-in-Diwali-Celebration.jpg');
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gold);
    color: var(--primary-maroon);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.service-content {
    padding: 30px;
}

.service-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 14px;
}

.service-features {
    margin-bottom: 20px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--text-dark);
}

.service-feature i {
    color: var(--primary-maroon);
    font-size: 14px;
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.service-price {
    display: flex;
    flex-direction: column;
}

.service-price-label {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 3px;
}

.service-price-amount {
    font-size: 26px;
    color: var(--primary-maroon);
    font-weight: 700;
}

.service-cta {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
    color: var(--accent-gold);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(128, 0, 0, 0.3);
}

/* ========================================
   PRODUCTS SECTION (EXISTING)
======================================== */
.products-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 320px));
    gap: 30px;
    justify-content: center;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow);
    border-color: var(--accent-gold);
}

.product-image {
    width: 100%;
    height: 240px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f9f9f9;
    position: relative;
}

/* Realistic Product Images from Unsplash */
.product-image-1 {
    background-image: url('/puja/images/hawansamrigi.webp');
}

.product-image-2 {
    background-image: url('/puja/images/61p-ix4Lq6L._AC_UF894,1000_QL80_.jpg');
}

.product-image-3 {
    background-image: url('/puja/images/premum-hawan-havan-samagri-organic-healthy-to-inhale-best-for-meditation.png');
}

.product-image-4 {
    background-image: url('/puja/images/1copy_a7d2291d-beaa-464b-8574-e9bc20743bf2.webp');
}

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-maroon);
    color: var(--accent-gold);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.product-content {
    padding: 25px;
}

.product-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.product-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.product-price {
    font-size: 26px;
    color: var(--primary-maroon);
    font-weight: 700;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.product-stars {
    color: var(--accent-gold);
}

.product-actions {
    display: flex;
    gap: 10px;
}

.product-btn {
    flex: 1;
    padding: 12px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-btn i {
    font-size: 14px;
}

.product-btn-primary {
    background: linear-gradient(135deg, var(--primary-maroon), var(--dark-maroon));
    color: var(--accent-gold);
}

.product-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(128, 0, 0, 0.3);
}

.product-btn-secondary {
    background: var(--success-green);
    color: var(--white);
}

.product-btn-secondary:hover {
    background: #20BA5A;
    transform: scale(1.05);
}

/* ========================================
   TEAM SECTION (EXISTING)
======================================== */
.team-section {
    padding: 80px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--light-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow);
}

.team-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Realistic Pandit Images from Unsplash */
.team-image-1 {
    background-image: url('/puja/images/anand-shastri-pujari-.jpg');
}

.team-image-2 {
    background-image: url('/puja/images/bharath_kumar._m.jpg');
}

.team-image-3 {
    background-image: url('/puja/images/pandit_rfAjRyse_202311031639350.jpg');
}

.team-image-4 {
    background-image: url('/puja/images/panidrachar__1.jpg');
}

.team-content {
    padding: 25px;
}

.team-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.team-role {
    color: var(--primary-maroon);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
}

.team-experience {
    display: inline-block;
    margin-top: 15px;
    background: var(--accent-gold);
    color: var(--primary-maroon);
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
}

/* ========================================
   VIDEO CAROUSEL SECTION (EXISTING)
======================================== */
.video-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.video-carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.video-carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.video-slide {
    min-width: 100%;
    padding: 0 15px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    background: #000;
    cursor: pointer;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Thumbnails from Unsplash */
.video-thumbnail-1 {
    background-image: url('/puja/images/Murthi-Puja.jpg');
    background-size: cover;
    background-position: center;
}

.video-thumbnail-2 {
    background-image: url('/puja/images/1657262477827813471.jpg');
    background-size: cover;
    background-position: center;
}

.video-thumbnail-3 {
    background-image: url('/puja/images/jignasa-_mx6djwNxkQ-unsplash_1200x768.webp');
    background-size: cover;
    background-position: center;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 215, 0, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-play-button i {
    font-size: 30px;
    color: var(--primary-maroon);
    margin-left: 5px;
}

.video-wrapper:hover .video-play-button {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--accent-gold);
}

.video-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-wrapper:hover .video-title-overlay {
    opacity: 1;
}

.video-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(128, 0, 0, 0.8);
    color: var(--accent-gold);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border: none;
    font-size: 24px;
}

.video-carousel-arrow:hover {
    background: var(--primary-maroon);
    transform: translateY(-50%) scale(1.1);
}

.video-carousel-prev {
    left: 10px;
}

.video-carousel-next {
    right: 10px;
}

.video-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.video-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(128, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-carousel-dot.active {
    background: var(--primary-maroon);
    width: 35px;
    border-radius: 10px;
}

/* ========================================
   TESTIMONIALS SECTION (EXISTING)
======================================== */
.testimonials-section {
    padding: 80px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 35px;
    border-left: 5px solid var(--accent-gold);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.testimonial-rating {
    color: var(--accent-gold);
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 3px solid var(--accent-gold);
}

/* Testimonial Avatar Images */
.testimonial-avatar-1 {
    background-image: url('https://images.unsplash.com/photo-1463453091185-61582044d556?w=200&q=80');
}

.testimonial-avatar-2 {
    background-image: url('https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=200&q=80');
}

.testimonial-avatar-3 {
    background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=200&q=80');
}

.testimonial-info h4 {
    font-size: 17px;
    margin-bottom: 3px;
    color: var(--text-dark);
}

.testimonial-info p {
    font-size: 13px;
    color: var(--text-light);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 992px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-card::after {
        display: none;
    }

    .hero-carousel {
        height: 500px;
    }

    .hero-text h2 {
        font-size: 42px;
    }

    .carousel-arrow {
        width: 45px;
        height: 45px;
    }
    
    .stats-section {
        padding: 50px 15px;
        margin-top: -30px;
    }
    
    .stats-grid {
        gap: 25px;
    }
    
    .stat-icon {
        font-size: 40px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .features-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .header-main .container {
        flex-wrap: wrap;
    }

    .search-bar {
        order: 3;
        max-width: 100%;
        width: 100%;
    }

    .header-cta {
        display: none;
    }

    .navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-carousel {
        height: 450px;
    }

    .hero-text h2 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .steps-grid,
    .services-grid,
    .products-grid,
    .testimonials-grid,
    .team-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .floating-actions {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .carousel-prev {
        left: 15px;
    }

    .carousel-next {
        right: 15px;
    }
    
    .stats-section {
        padding: 40px 15px;
        margin-top: -25px;
    }
    
    .stats-grid {
        gap: 15px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .stat-icon {
        font-size: 36px;
        margin-bottom: 10px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .features-section {
        padding: 50px 15px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .feature-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .additional-card {
        flex-basis: 78%;
    }
    
    .stat-card {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 13px;
    }
}

@media (min-width: 992px) {
    .additional-card {
        flex-basis: 320px;
    }
}