/* hero sections */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #c4f54d;
    --text-dark: #1a1a1a;
    --form-bg: #ffffff;
    --submit-blue: #1e3a5f;
    --input-border: #d1d5db;
    --dot-yellow: #ffd700;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f9fafb;
    overflow-x: hidden;
}

/* ============================================
   HERO SECTION - ALWAYS CENTERED ON ALL SCREENS
   ============================================ */
.hero-section {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 30px;
    padding: 10px 60px;
     max-width: 1400px;
    /* max-width: 1600px; */
    width: 100%;
    margin: 0 auto;          /* ← Centers the section horizontally */
}

/* Left Side - Slider Wrapper */
.slider-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.slider-container {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #2c4a5e;
    border-radius: 20px;
    height: 400px;
    width: 100%;
}

/* Image Slider */
.image-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.slider-track {
    display: flex;
    height: 100%;
    width: fit-content;
    transition: transform 0.6s ease-in-out;
}

.slider-image-wrapper {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    display: block;
}

.slider-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.slider-image {
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    flex-shrink: 0;
    opacity: 1;
}

/* Responsive banner images - Desktop vs Mobile */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Hide mobile images on desktop (default), show on mobile */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }
}

/* For tablet in portrait mode */
@media (min-width: 769px) and (max-width: 992px) {
    .desktop-only {
        display: block;
    }

    .mobile-only {
        display: none;
    }
}

/* Slider Text Content Overlay */
.slider-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    color: white;
    padding: 40px;
    max-width: 90%;
    pointer-events: none;
}

.slider-text-overlay h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slider-text-overlay p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.slider-text-overlay .book-now {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Slider Dots - BELOW THE SLIDER */
.slider-dots {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 10;
    padding: 0;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    min-height: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 215, 0, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.dot:hover {
    background: rgba(255, 215, 0, 0.8);
    transform: scale(1.1);
}

.dot.active {
    background: #ffd700;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

/* Right Side - Form */
.form-container {
    background: var(--form-bg);
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
    border-radius: 20px;
    height: 400px;
    border: 1px solid #ddd;
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
}

.form-header h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: -5px;
}

.form-header p {
    color: #6b7280;
    font-size: 0.85rem;
    display: none;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    display: none;
}

.form-group input,
.form-group select {
    padding: 8px 14px;
    border: 2px solid var(--input-border);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #f9fafb;
    width: 100%;          /* ← Ensures inputs never overflow */
    max-width: 100%;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--submit-blue);
    background: #ffffff;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 5px 0;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #0066ff;
    flex-shrink: 0;        /* ← Prevents checkbox from shrinking */
}

.checkbox-group label {
    font-size: 0.85rem;
    color: #6b7280;
    cursor: pointer;
    margin: 0;
}

.checkbox-group label a {
    color: var(--submit-blue);
    text-decoration: none;
    font-weight: 600;
}

.submit-btn {
    padding: 12px;
    background: var(--submit-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;           /* ← Full width on all screens */
}

.submit-btn:hover {
    background: #152a47;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 58, 95, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* ============================================
   LARGE DESKTOP (1200px+) - Side by side
   ============================================ */
@media (max-width: 1200px) {
    .hero-section {
        padding: 30px 40px;
        gap: 25px;
    }

    .slider-container {
        height: 350px;
    }

    .form-container {
        height: 350px;
    }

    .slider-text-overlay h2 {
        font-size: 1.7rem;
    }

    .slider-text-overlay p {
        font-size: 1rem;
    }

    .slider-wrapper {
        gap: 12px;
    }

    .dot {
        width: 11px;
        height: 11px;
    }

    .dot.active {
        width: 13px;
        height: 13px;
    }
}

/* ============================================
   TABLET (992px) - Stack vertically, centered
   ============================================ */
@media (max-width: 992px) {
    .hero-section {
        grid-template-columns: 1fr;   /* ← Single column, no more 450px fixed right col */
        padding: 30px 20px;
        gap: 20px;
        max-width: 700px;             /* ← Limit width so it looks centered */
        margin: 0 auto;               /* ← Center on tablet */
    }

    .slider-container {
        height: 350px;
    }

    .form-container {
        height: auto;
        padding: 30px 25px;
    }

    .slider-text-overlay h2 {
        font-size: 1.5rem;
    }

    .slider-text-overlay p {
        font-size: 0.95rem;
    }

    .slider-wrapper {
        gap: 10px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 12px;
        height: 12px;
    }
}

/* ============================================
   MOBILE (768px and below) - Centered with
   equal left & right padding. No dots shown.
   ============================================ */
@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;   /* ← Single column */
        padding: 15px 16px;           /* ← Equal left & right padding */
        gap: 16px;
        max-width: 100%;
        margin: 0 auto;               /* ← Centered */
        width: 100%;
    }

    .slider-wrapper {
        width: 100%;
        gap: 0;                       /* No gap when dots are hidden */
    }

    .slider-container {
        width: 100%;
        height: 400px;
        border-radius: 15px;
        overflow: hidden;
    }

    .image-slider {
        width: 100%;
        border-radius: 15px;
    }

    /* KEY FIX: Images fill container, no overflow */
    .slider-image,
    .slider-image-wrapper {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }

    /* Hide dots on mobile */
    .slider-dots {
        display: none !important;
    }

    .form-container {
        width: 100%;
        height: auto;
        padding: 24px 20px;
        border-radius: 15px;
    }

    .form-header h2 {
        font-size: 1.3rem;
    }

    .form-group input,
    .form-group select {
        font-size: 0.9rem;
        padding: 10px 14px;
    }
}

/* ============================================
   SMALL MOBILE (640px) - Slightly bigger slider
   ============================================ */
@media (max-width: 640px) {
    .hero-section {
        padding: 12px 14px;          /* ← Equal sides */
    }

    .slider-container {
        height: 400px;
        border-radius: 15px;
    }

    .form-container {
        padding: 22px 18px;
        border-radius: 15px;
    }

    .form-header h2 {
        font-size: 1.3rem;
    }

    .slider-text-overlay {
        padding: 20px;
    }

    .slider-text-overlay h2 {
        font-size: 1.3rem;
    }

    .slider-text-overlay p {
        font-size: 0.9rem;
    }

    .slider-text-overlay .book-now {
        font-size: 1.2rem;
    }
}

/* ============================================
   EXTRA SMALL MOBILE (480px - Vivo Y29 range)
   ============================================ */
@media (max-width: 480px) {
    .hero-section {
        padding: 10px 14px;          /* ← Equal left & right */
    }

    .slider-container {
        /* height: 450px; */
         height: 380px;
    }

    .slider-image {
        width: 100%;
        min-width: 100%;
    }

    .slider-text-overlay h2 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .slider-text-overlay p {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .slider-text-overlay .book-now {
        font-size: 1rem;
        margin-top: 10px;
    }

    .form-container {
        padding: 20px 16px;
    }

    .form-header h2 {
        font-size: 1.2rem;
    }
}
/* End hero sections */





/* End hero sections */

/* OUR MOST BOOKED PUJAS Ends */

        #epooja {
            padding: 60px 20px;
            background-color: #f9f9f9;
        }

        .page-section h2 {
            text-align: center;
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
            color: #000;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
        }

        .page-section h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background-color: #ff3333;
            margin: 10px auto 0;
        }

        .section-intro {
            text-align: left;
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: #555;
            line-height: 1.7;
            padding: 0;
        }

        .section-intro p {
            margin: 0;
        }

        .pooja-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            align-items: start;
            padding: 0 40px;
        }

        .pooja-content {
            display: flex;
            flex-direction: column;
        }

        .pooja-cards {
            margin-bottom: 20px;
        }

        .pooja-cards h3 {
            font-size: 1.2rem;
            font-weight: bold;
            color: #000;
            margin-bottom: 8px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .pooja-cards h3::before {
            content: '';
            width: 10px;
            height: 10px;
            background-color: #000;
            border-radius: 50%;
            flex-shrink: 0;
            margin-top: 5px;
        }

        .pooja-cards p {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-left: 22px;
        }

        .pooja-image {
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
        }

        .pooja-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            #epooja {
                padding: 40px 15px;
            }

            .page-section h2 {
                font-size: 2rem;
            }

            .pooja-grid {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0 15px;
            }

            /* Change order on mobile: heading, image, then content */
            .pooja-image {
                order: -1;
                max-width: 100%;
            }

            .pooja-content {
                order: 1;
            }

            .section-intro {
                font-size: 0.95rem;
                margin-bottom: 20px;
            }

            .pooja-cards {
                margin-bottom: 18px;
            }

            .pooja-cards h3 {
                font-size: 1.05rem;
            }

            .pooja-cards p {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .page-section h2 {
                font-size: 1.75rem;
            }

            .section-intro {
                font-size: 0.9rem;
            }
        }



        /* 4rth sections  */


        #astrology {
            padding: 60px 20px;
            background-color: #faf9f7;
        }
        .astrologypooja-grid {
            max-width: 1400px;
            margin: 50px auto 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            padding: 0 40px;
        }

        .pooja-content-wrapper {
            display: flex;
            flex-direction: column;

        }

        .intro-text {
            font-size: 1rem;
            color: #555;
            line-height: 1.7;
            margin-bottom: 10px;
        }

        .astrologypooja-cards {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 25px;
        }

        .icon-wrapper {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #ffe8e8;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 24px;
        }

        .astrologypooja-cards:nth-child(2) .icon-wrapper {
            background-color: #e8f4ff;
        }

        .astrologypooja-cards:nth-child(3) .icon-wrapper {
            background-color: #fff4e8;
        }

        .card-content h3 {
            font-size: 1.1rem;
            font-weight: bold;
            color: #000;
            margin-bottom: 5px;
        }

        .card-content p {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.5;
        }

        .book-button {
            display: inline-block;
            padding: 12px 40px;
            border: 2px solid #e74c3c;
            border-radius: 30px;
            color: #e74c3c;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 500;
            transition: all 0.3s ease;
            margin-top: 10px;
            width: fit-content;
        }

        .book-button:hover {
            background-color: #e74c3c;
            color: #fff;
        }

        .pooja-image {
            width: 100%;
        }

        .pooja-image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .astrologypooja-grid {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 0 20px;
            }

            /* Order: heading, image, then left content */
            .pooja-image {
                order: -1;
            }

            .pooja-content-wrapper {
                order: 1;
            }
        }

        @media (max-width: 768px) {
            #astrology {
                padding: 40px 15px;
            }

            .page-section h2 {
                font-size: 2rem;
            }

            .intro-text {
                font-size: 0.95rem;
            }

            .icon-wrapper {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }

            .card-content h3 {
                font-size: 1.05rem;
            }

            .card-content p {
                font-size: 0.9rem;
            }

            .book-button {
                padding: 10px 35px;
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .page-section h2 {
                font-size: 1.75rem;
            }

            .intro-text {
                font-size: 0.9rem;
            }

            .astrologypooja-cards {
                gap: 15px;
                margin-bottom: 20px;
            }

            .icon-wrapper {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
        }

/* How Atozpandit works Ends */

        /* Blog-style dots for small devices */
        @media (max-width: 576px) {
            .carousel-indicators {
                display: flex !important;
                justify-content: center;
                gap: 10px;
                margin-top: 20px;
            }

            .indicator {
                width: 10px;
                height: 10px;
                border-radius: 50%;
                background: #ddd;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .indicator:hover {
                background: #ff5722;
            }

            .indicator.active {
                background: #ff5722;
                width: 30px;
                border-radius: 5px;
            }
        }

        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background-color: #e74c3c;
            width: 12px;
            height: 12px;
        }


        @media (max-width: 968px) {
            .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .carousel-container {
                padding: 0 50px;
            }
        }

        @media (max-width: 768px) {
            #testimonials {
                padding: 40px 15px;
            }

            .page-section h2 {
                font-size: 1.9rem;
            }

            .section-subtitle {
                font-size: 0.9rem;
                margin-bottom: 35px;
                padding: 0 10px;
            }

            .testimonial-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .carousel-container {
                padding: 0 15px;
            }

            .carousel-btn {
                display: none;
            }

            .carousel-indicators {
                display: flex;
            }

            .testimonial-card {
                padding: 25px 20px;
                min-height: 280px;
            }

            .customer-image {
                width: 70px;
                height: 70px;
            }
        }

        @media (max-width: 480px) {
            .page-section h2 {
                font-size: 1.6rem;
            }

            .carousel-container {
                padding: 0 10px;
            }
        } */



        /* End */


        /* blog sections */


        .blog-section {
    padding: 60px 20px;
    background: #fff;
    overflow: hidden;
}

.blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.underline {
    width: 80px;
    height: 4px;
    background: #ff5722;
    margin: 0 auto;
    border-radius: 2px;
}


.blog-carousel-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.blog-carousel-container {
    display: flex;
    transition: transform 0.5s ease;
}

.blog-carousel-slide {
    min-width: 100%;
    display: flex;
    gap: 30px;
    padding: 0 20px;
    box-sizing: border-box;
}

.blog-card {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: calc(25% - 23px);
    margin-bottom: 20px;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 20px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
    margin-bottom: 12px;
}

.blog-card-date,
.blog-card-author {
    display: flex;
    align-items: center;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: #ff5722;
}

.blog-card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: #ff5722;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #e64a19;
}

.read-more::after {
    content: ' →';
    transition: margin-left 0.3s ease;
}

.read-more:hover::after {
    margin-left: 5px;
}


.blog-pagination-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.blog-pagination-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-pagination-dots .dot:hover {
    background: #ff5722;
}

.blog-pagination-dots .dot.active {
    background: #ff5722;
    width: 30px;
    border-radius: 5px;
}


.blog-footer {
    text-align: center;
    margin-top: 30px;
}

.view-all-btn {
    display: inline-block;
    padding: 12px 35px;
    background: #ff5722;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 87, 34, 0.4);
}


.text-center {
    text-align: center;
}

.text-muted {
    color: #888;
    font-size: 16px;
}


@media (max-width: 1200px) {
    .blog-carousel-slide {
        gap: 20px;
        padding: 0 15px;
    }

    .blog-card {
        max-width: calc(33.333% - 14px);
    }

    .blog-card-title {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .blog-carousel-slide {
        gap: 15px;
        padding: 0 10px;
    }

    .blog-card {
        max-width: calc(50% - 8px);
    }

    .blog-card-title {
        font-size: 15px;
    }

    .blog-card-description {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 40px 15px;
    }

    .blog-header h2 {
        font-size: 28px;
    }

    .blog-carousel-slide {
        min-width: 100%;
        padding: 0 10px;
    }

    .blog-card {
        max-width: 100%;
        width: 100%;
        flex: 0 0 100%;
    }

    .blog-card-image {
        height: 200px;
    }

    .blog-card-title {
        font-size: 18px;
    }

    .blog-pagination-dots {
        margin-top: 20px;
    }
}





/* End */

        /* As Seen On */


.partners-section {
        width: 100%;
        margin: 0 auto;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: linear-gradient(135deg, #2d1b3d 0%, #4a2b5e 100%);
        padding: 80px 120px;
    }

    .partners-section-inner {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .partners-header {
        text-align: center;
        margin-bottom: 60px;
        animation: fadeInDown 0.8s ease-out;
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .partners-header h2 {
        font-size: 42px;
        color: #ffffff;
        font-weight: 800;
        margin-bottom: 8px;
        letter-spacing: 2px;
        text-transform: uppercase;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    }

    .partners-header .underline {
        width: 100px;
        height: 5px;
        background: linear-gradient(90deg, #e74c3c 0%, #c0392b 100%);
        margin: 0 auto;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(231, 76, 60, 0.5);
    }

    .partners-carousel-wrapper {
        position: relative;
        overflow: hidden;
        padding: 20px 0;
        margin: 0;
        width: 100%;
    }

    .partners-carousel-container {
        display: flex;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
        padding: 0 10px;
        width: 100%;
    }

    .partners-carousel-slide {
        min-width: 100%;
        display: flex;
        gap: 40px;
        padding: 0 20px;
    }

    .partner-logo-card {
        flex: 1;
        /* background: white; */
        border-radius: 8px;
        padding: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); */
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        min-height: 140px;
        animation: fadeInUp 0.6s ease-out;
        animation-fill-mode: both;
        position: relative;
        overflow: hidden;
        max-width: none;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .partner-logo-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
        transition: left 0.6s ease;
    }

    .partner-logo-card:hover::before {
        left: 100%;
    }

    .partner-logo-card:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }

    .partner-logo-card img {
        max-width: 150%;
        max-height: 150px;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .partner-logo-card:hover img {
        transform: scale(1.1);
    }

    /* Pagination Indicators */
    .partners-pagination-dots {
        display: flex;
        justify-content: center;
        gap: 14px;
        margin-top: 50px;
    }

    .partners-dot {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border: 2px solid transparent;
    }

    .partners-dot.active {
        background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
        transform: scale(1.4);
        box-shadow: 0 4px 12px rgba(231, 76, 60, 0.6);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .partners-dot:hover:not(.active) {
        background-color: rgba(255, 255, 255, 0.6);
        transform: scale(1.2);
    }

    /* Tablet Layout */
    @media (max-width: 1024px) {
        .partners-section {
            padding: 60px 40px;
        }

        .partners-carousel-slide {
            gap: 30px;
        }
    }

    /* Mobile Layout - 2x2 Grid per Slide */
    @media (max-width: 768px) {
        .partners-section {
            padding: 50px 20px;
        }

        .partners-section-inner {
            padding: 0 10px;
        }

        .partners-header {
            margin-bottom: 40px;
        }

        .partners-header h2 {
            font-size: 32px;
            letter-spacing: 1px;
        }

        .partners-carousel-wrapper {
            padding: 15px 0;
            margin: 0;
        }

        .partners-carousel-container {
            padding: 0 10px;
        }

        .partners-carousel-slide {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 15px;
            padding: 0 10px;
            min-width: 100%;
        }

        .partner-logo-card {
            padding: 20px 15px;
            min-height: 120px;
            width: 100%;
        }

        .partner-logo-card img {
            max-height: 70px;
        }

        .partner-logo-card:hover {
            transform: translateY(-5px) scale(1.02);
        }

        .partners-pagination-dots {
            margin-top: 35px;
            gap: 10px;
        }

        .partners-dot {
            width: 10px;
            height: 10px;
        }
    }


    @media (max-width: 480px) {
        .partners-section {
            padding: 40px 15px;
        }

        .partners-section-inner {
            padding: 0 5px;
        }

        .partners-header h2 {
            font-size: 28px;
            letter-spacing: 0.5px;
        }

        .partners-header .underline {
            width: 80px;
            height: 4px;
        }

        .partners-carousel-container {
            padding: 0 5px;
        }

        .partners-carousel-slide {
            gap: 12px;
            padding: 0 5px;
        }

        .partner-logo-card {
            padding: 18px 12px;
            min-height: 110px;
            border-radius: 8px;
        }

        .partner-logo-card img {
            max-height: 60px;
        }

        .partners-pagination-dots {
            margin-top: 30px;
            gap: 8px;
        }

        .partners-dot {
            width: 8px;
            height: 8px;
        }

        .partners-dot.active {
            transform: scale(1.3);
        }
    }

    /* Extra Small Mobile - 320px */
    @media (max-width: 375px) {
        .partners-section {
            padding: 35px 12px;
        }

        .partners-header h2 {
            font-size: 24px;
        }

        .partners-carousel-slide {
            gap: 10px;
            padding: 0 3px;
        }

        .partner-logo-card {
            padding: 15px 10px;
            min-height: 100px;
        }

        .partner-logo-card img {
            max-height: 100px;
        }
    }
        /* End As Seen On */

/* always availbles support sections */

.support-section {
    max-width: 1400px;
    margin: 0 auto;
}

.support-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.support-section-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    margin-top: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.support-section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #ef4444;
    margin: 15px auto 0;
}

.support-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    padding: 0 60px;
}

/* Left Side */
.support-left-content {
    padding-right: 40px;
}

.support-main-heading {
    font-size: 37px;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
    margin-bottom: 10px;
}

.support-description {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.support-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.support-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.support-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.support-feature-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

.support-feature-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Arrow icon for feature headings */
.support-feature-content h3::after {
    content: '→';
    font-size: 33px;
    font-weight: 700;
    color: black;
}

.support-feature-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Right Side - Form */
.support-right-content {
    background: white;
    padding: 35px 45px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.support-form-header {
    text-align: center;
    margin-bottom: 25px;
}

.support-form-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    /* font-family: 'Georgia', 'Times New Roman', serif; */
}

.support-contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.support-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.support-form-group {
    display: flex;
    flex-direction: column;
}

.support-form-group input,
.support-form-group textarea {
    padding: 9px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    color: #333;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.support-form-group input:focus,
.support-form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

.support-form-group input::placeholder,
.support-form-group textarea::placeholder {
    color: #999;
}

.support-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.support-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.support-checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.support-checkbox-group label {
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.support-checkbox-group a {
    color: #3b82f6;
    text-decoration: none;
}

.support-checkbox-group a:hover {
    text-decoration: underline;
}

.support-submit-btn {
    padding: 8px 32px;
    background: linear-gradient(90deg, #3b82f6 0%, #10b981 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 5px;
}

.support-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.support-submit-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .support-content-wrapper {
        gap: 50px;
        padding: 0 40px;
    }

    .support-left-content {
        padding-right: 20px;
    }

    .support-main-heading {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .support-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .support-left-content {
        padding-right: 0;
    }

    .support-section-header h1 {
        font-size: 32px;
    }

    .support-main-heading {
        font-size: 36px;
    }

    .support-right-content {
        padding: 30px 25px;
    }

    .support-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .support-contact-form {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .support-section-header h1 {
        font-size: 28px;
    }

    .support-main-heading {
        font-size: 30px;
    }

    .support-feature-item {
        gap: 15px;
    }

    .support-feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .support-feature-content h3 {
        font-size: 20px;
    }

    .support-right-content {
        padding: 25px 20px;
    }

    .support-form-header {
        margin-bottom: 20px;
    }

    .support-form-header h2 {
        font-size: 24px;
    }

    .support-contact-form {
        gap: 12px;
    }
}
/* End */




        /* End */



/* Our most book pujas  */



        .health-packages-section {
            max-width: 1400px;
            margin: 0 auto;
            margin-top:20px;
        }

        .packages-section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .packages-section-header h1 {
            font-size: 38px;
            font-weight: 700;
            color: #2c3e50;
            text-transform: capitalize;
            position: relative;
            display: inline-block;
        }

        .packages-section-header h1::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: #e74c3c;
        }

        /* Carousel Container */
        .health-carousel-container {
            position: relative;
            overflow: hidden;
            padding: 0 60px;
        }

        .health-carousel-wrapper {
            overflow: hidden;
        }

        .health-carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 20px;
        }

        /* Package Card */
        .health-package-card {
            min-width: calc(25% - 15px);
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #ddd;
        }

        .health-package-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        .health-card-image {
            width: 100%;
            height: 180px;
            overflow: hidden;
            background: #f8f9fa;
        }

        .health-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .health-card-content {
            padding: 20px;
        }

        .health-card-title {
            font-size: 20px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .health-card-subtitle {
            font-size: 13px;
            color: #666;
            margin-bottom: 8px;
            line-height: 1.5;
            /* Text truncation - limit to 2 lines */
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .health-card-gender {
            font-size: 13px;
            color: #666;
            margin-bottom: 15px;
        }

        .health-compare-checkbox {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 20px;
        }

        .health-compare-checkbox input[type="checkbox"] {
            width: 16px;
            height: 16px;
            cursor: pointer;
        }

        .health-compare-checkbox label {
            font-size: 14px;
            color: #333;
            cursor: pointer;
        }

        /* Pricing Section */
        .health-pricing-box {
            border: 1px dashed #ccc;
            padding: 12px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
            min-height: 50px;
            max-width: 100%;
        }

        .health-original-price {
            font-size: 12px;
            font-weight: 700;
            color: #e74c3c;
            text-decoration: line-through;
            position: relative;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 100px;
        }

        .health-current-price {
            font-size: 18px;
            font-weight: 700;
            color: #0066cc;
            white-space: nowrap;
        }

        .health-discount-badge {
            background: #ffd700;
            color: #000;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 600;
            white-space: nowrap;
        }

        /* Buttons */
        .health-card-buttons {
            display: flex;
            gap: 12px;
        }

        .health-btn {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
        }

        .health-btn-add-cart {
            background: #1e3a5f;
            color: white;
        }

        .health-btn-add-cart:hover {
            background: #152d47;
            transform: translateY(-2px);
        }

        .health-btn-book-now {
            background: white;
            color: #1e3a5f;
            border: 2px solid #1e3a5f;
        }

        .health-btn-book-now:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
        }

        /* Carousel Navigation */
        .health-carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            background: white;
            border: 2px solid #ddd;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .health-carousel-nav:hover {
            background: #1e3a5f;
            border-color: #1e3a5f;
        }

        .health-carousel-nav:hover svg {
            fill: white;
        }

        .health-carousel-nav.health-prev {
            left: 0;
        }

        .health-carousel-nav.health-next {
            right: 0;
        }

        .health-carousel-nav svg {
            width: 20px;
            height: 20px;
            fill: #333;
            transition: fill 0.3s ease;
        }

        .health-carousel-nav:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .health-carousel-nav:disabled:hover {
            background: white;
            border-color: #ddd;
        }

        .health-carousel-nav:disabled:hover svg {
            fill: #333;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .health-package-card {
                min-width: calc(33.333% - 14px);
            }
        }

        @media (max-width: 900px) {
            .health-package-card {
                min-width: calc(50% - 10px);
            }

            .health-carousel-container {
                padding: 0 50px;
            }
        }

        @media (max-width: 768px) {
            .packages-section-header h1 {
                font-size: 32px;
            }

            .health-carousel-container {
                padding: 0 20px;
            }

            .health-carousel-nav {
                display: none;
            }

            .health-package-card {
                min-width: 100%;
            }

            .health-carousel-track {
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .packages-section-header h1 {
                font-size: 28px;
            }

            .health-card-title {
                font-size: 18px;
            }

            .health-current-price {
                font-size: 20px;
            }

            .health-original-price {
                font-size: 16px;
                max-width: 120px;
            }

            .health-current-price {
                font-size: 22px;
            }

            .health-btn {
                padding: 10px 16px;
                font-size: 13px;
            }

            body {
                padding: 30px 15px;
            }

        }
/* End */



/* booked ur pujaas and anushthna */



        .puja-booking-section {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Header */
        .puja-section-header {
            text-align: center;
            margin-bottom: 50px;
            margin-top: 30px;
        }

        .puja-section-header h1 {
            font-size: 39px;
            font-weight: 700;
            color: #000;
            position: relative;
            display: inline-block;
        }

        .puja-section-header h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: #ef4444;
        }

        /* Desktop Grid View */
        .puja-grid-container {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 20px;
            padding: 0 50px;
        }

        /* Mobile Carousel Container */
        .puja-mobile-carousel {
            display: none;
            position: relative;
            overflow: hidden;
            padding: 0 20px;
        }

        .puja-carousel-wrapper {
            overflow: hidden;
        }

        .puja-carousel-slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .puja-slide {
            min-width: 100%;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(3, 1fr);
            gap: 15px;
        }

        /* Puja Card */
        .puja-card {
            background: white;
            border-radius: 12px;
            /* padding: 20px; */
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            border: 1px solid #f0f0f0;
        }

        .puja-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .puja-card-image {
            width: 100px;
            height: 90px;
            margin-top: 8px;
            margin-bottom: 5px;
            /* margin-bottom: 15px; */
            border-radius: 8px;
            overflow: hidden;
        }

        .puja-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .puja-card-title {
            font-size: 15px;
            font-weight: 600;
            color: #666;
            margin-bottom: 8px;
        }

        .puja-card-subtitle {
            font-size: 13px;
            color: #999;
            margin-bottom: 15px;
        }

        .puja-card-arrow {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 24px;
            height: 24px;
            color: #3b82f6;
        }

        .puja-card-arrow svg {
            width: 100%;
            height: 100%;
            fill: #3b82f6;
        }

        /* Carousel Indicators */
        .puja-carousel-indicators {
            display: none;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
            padding: 0 20px;
        }

        .puja-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #d1d5db;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .puja-indicator.puja-active {
            background: #3b82f6;
            width: 30px;
            border-radius: 5px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .puja-grid-container {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 768px) {
            .puja-section-header h1 {
                font-size: 32px;
            }

            /* Hide desktop grid, show mobile carousel */
            .puja-grid-container {
                display: none !important;
            }

            .puja-mobile-carousel {
                display: block;
            }

            .puja-carousel-indicators {
                display: flex;
            }

            .puja-card-image {
                width: 50px;
                height: 50px;
            }

            .puja-card-title {
                font-size: 14px;
            }

            .puja-card-subtitle {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 30px 10px;
            }

            .puja-section-header h1 {
                font-size: 26px;
            }

            .puja-section-header h1::after {
                width: 80px;
            }

            .puja-slide {
                gap: 12px;
            }

            .puja-card {
                padding: 15px;
            }
        }

/* End */


/* customer stories/ user experiences  section  */

/* ============================================
   TESTIMONIAL / USER EXPERIENCE SECTION
   ============================================ */

#testimonials {
    padding: 60px 20px;
    background-color: #faf9f7;
}

.section-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: stretch;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.customer-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #f0f0f0;
}

.stars {
    color: #ffd700;
    font-size: 16px;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.customer-name {
    font-size: 1.05rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 3px;
}

.customer-role {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    text-align: center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #333;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #e74c3c;
    color: #fff;
    border-color: #e74c3c;
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

/* UNIQUE TESTIMONIAL PAGINATION INDICATORS */
.testimonial-indicators {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-indicator-dot:hover {
    background-color: #ccc;
}

.testimonial-indicator-dot.active {
    background-color: #e74c3c;
    width: 14px;
    height: 14px;
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

/* ============================================
   BLOG SECTION - UNIQUE PAGINATION
   ============================================ */

.blog-section {
    padding: 60px 20px;
    background: #fff;
    overflow: hidden;
}

/* UNIQUE BLOG PAGINATION INDICATORS */
.blog-pagination-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.blog-pagination-dots .blog-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-pagination-dots .blog-dot:hover {
    background: #ff5722;
}

.blog-pagination-dots .blog-dot.active {
    background: #ff5722;
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   PARTNERS SECTION - UNIQUE PAGINATION
   ============================================ */

.partners-section {
    width: 100%;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #2d1b3d 0%, #4a2b5e 100%);
    padding: 20px 120px;
}

/* UNIQUE PARTNERS PAGINATION INDICATORS */
.partners-pagination-dots {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 50px;
}

.partners-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.partners-dot.active {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    transform: scale(1.4);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
}

.partners-dot:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

/* ============================================
   PUJA BOOKING SECTION - UNIQUE PAGINATION
   ============================================ */

.puja-booking-section {
    max-width: 1400px;
    margin: 0 auto;
}

/* UNIQUE PUJA CAROUSEL INDICATORS */
.puja-carousel-indicators {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    padding: 0 20px;
}

.puja-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.puja-indicator.puja-active {
    background: #3b82f6;
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Testimonials Responsive */
@media (max-width: 1200px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 968px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .carousel-container {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    #testimonials {
        padding: 40px 15px;
    }

    .page-section h2 {
        font-size: 1.9rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 35px;
        padding: 0 10px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .carousel-container {
        padding: 0 15px;
    }

    .carousel-btn {
        display: none;
    }

    /* SHOW TESTIMONIAL DOTS ON MOBILE */
    .testimonial-indicators {
        display: flex !important;
    }

    .testimonial-card {
        padding: 25px 20px;
        min-height: 280px;
    }

    .customer-image {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .page-section h2 {
        font-size: 1.6rem;
    }

    .carousel-container {
        padding: 0 10px;
    }

    .section-subtitle {
        font-size: 0.85rem;
        margin-bottom: 30px;
    }

    /* ENSURE TESTIMONIAL DOTS ARE VISIBLE */
    .testimonial-indicators {
        display: flex !important;
        margin-top: 25px;
    }

    .testimonial-indicator-dot {
        width: 10px;
        height: 10px;
    }

    .testimonial-indicator-dot.active {
        width: 12px;
        height: 12px;
    }
}

/* Blog Section Mobile - Show dots */
@media (max-width: 768px) {
    .blog-carousel-slide {
        min-width: 100%;
        padding: 0 10px;
    }

    .blog-card {
        max-width: 100%;
        width: 100%;
        flex: 0 0 100%;
    }

    /* Blog dots always visible on mobile */
    .blog-pagination-dots {
        display: flex !important;
        margin-top: 20px;
    }
}

/* Puja Section Mobile - Show dots */
@media (max-width: 768px) {
    .puja-grid-container {
        display: none !important;
    }

    .puja-mobile-carousel {
        display: block;
    }

    /* Puja dots visible on mobile */
    .puja-carousel-indicators {
        display: flex !important;
    }
}

/* Partners Section Mobile - Show dots */
@media (max-width: 768px) {
    .partners-section {
        padding: 50px 20px;
    }

    .partners-carousel-slide {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 15px;
    }

    /* Partners dots visible on mobile */
    .partners-pagination-dots {
        display: flex !important;
        margin-top: 35px;
        gap: 10px;
    }

    .partners-dot {
        width: 10px;
        height: 10px;
    }
}

/* End */
