  .pg-hero-slider {
    width: 100%;
    height: 520px;
    position: relative;
    overflow: hidden;
    /* font-family: 'Poppins', sans-serif; */
    background: #f5f5f5;
    padding-bottom: 50px;
}

.pg-slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.pg-slide {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.8s ease;
    opacity: 0;
}

.pg-slide.active {
    left: 0;
    opacity: 1 !important;
}

.pg-slide-content {
    width: 50%;
}

.pg-slide-content h1 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.pg-slide-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 25px;
}

.pg-btn {
    background: #fc6e1d;
    color: #fff;
    padding: 12px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
    font-weight: 600;
}

.pg-btn:hover {
    background: #d95c17;
}

.pg-slide-img img {
    width: 430px;
    filter: drop-shadow(0px 10px 35px rgba(0,0,0,0.20));
}

/* Navigation */
.pg-slider-nav span {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffffcc;
    padding: 12px 14px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s ease;
}

.pg-prev { left: 20px; }
.pg-next { right: 20px; }

.pg-slider-nav span:hover {
    background: #fc6e1d;
    color: #fff;
}

/* Dots */
.pg-dots {

    position: relative !important;   
    bottom: auto !important;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px; 

    /* position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    bottom: 15px !important; */
}

.pg-dots span {
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
}

.pg-dots .active {
    background: #fc6e1d;
}


@media(max-width: 991px) {
    .pg-hero-slider { height: 520px; }

    .pg-slide-content h1 { font-size: 38px; }
    .pg-slide-img img { width: 330px; }
}

@media(max-width: 768px) {

 
    .pg-hero-slider {
        min-height: 580px !important;
        padding: 20px 0 80px 0 !important;
        background: #f9f9f9;
    }

    /* Slide stacking */
    .pg-slide {
        position: absolute;
        left: 0 !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        text-align: center;
        padding: 20px !important;
        height: auto !important;
    }

    /* Slide Text */
    .pg-slide-content {
        width: 100% !important;
        margin-bottom: 20px;
    }

    .pg-slide-content h1 {
        font-size: 28px !important;
        line-height: 1.3 !important;
        margin-bottom: 10px;
    }

    .pg-slide-content p {
        font-size: 15px !important;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    /* Button */
    .pg-btn {
        padding: 10px 26px !important;
        font-size: 14px !important;
        margin-bottom: 20px;
    }

    /* Image */
    .pg-slide-img {
        width: 100% !important;
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .pg-slide-img img {
        width: 210px !important;
        height: auto;
        display: block;
    }

    /* Arrows - move to top bottom */
    .pg-slider-nav span {
        bottom: 160px !important;
        top: auto !important;
        transform: none !important;
        background: #ffffff !important;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pg-prev {
        left: 15px !important;
    }
    .pg-next {
        right: 15px !important;
    }

    /* Dots */
    /* .pg-dots {
        bottom: 25px !important;
    } */

    .pg-dots span {
        width: 10px;
        height: 10px;
    }
}





















   .pg-home-block .pg-container {
        display: block;
    }

    /* sections */
    .pg-home-block {
        padding: 60px 0;
    }

    .pg-home-block-alt {
        background: #f7f8fc;
    }

    /* heading row – full width, center */
    .pg-home-section-heading {
        text-align: center;
        margin-bottom: 32px;
    }

    .pg-home-section-heading h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 6px;
        color: #222;
    }

    .pg-home-section-heading p {
        font-size: 14px;
        color: #666;
        max-width: 620px;
        margin: 0 auto;
    }

    /* features row */
    .pg-features-row {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 24px;
    }

    .pg-feature-box {
        text-align: center;
        background: #fff;
        padding: 24px 18px;
        border-radius: 14px;
        border: 1px solid #eee;
        transition: .3s;
    }

    .pg-feature-box i {
        font-size: 28px;
        color: #ff7a00;
        margin-bottom: 10px;
    }

    .pg-feature-box h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .pg-feature-box p {
        font-size: 13px;
        color: #666;
    }

    .pg-feature-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    }

    /* categories row */
    .pg-category-row {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    .pg-category-card {
        display: block;
        text-align: center;
        padding: 16px;
        border-radius: 12px;
        border: 1px solid #eee;
        background: #fff;
        transition: .3s;
    }

    .pg-category-card img {
        width: 100%;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .pg-category-card span {
        font-size: 15px;
        font-weight: 600;
        color: #222;
    }

    .pg-category-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    /* benefits row */
    .pg-benefits-row {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }

    .pg-benefit-item {
        text-align: center;
        background: #fff;
        padding: 24px 18px;
        border-radius: 16px;
        border: 1px solid #eee;
    }

    .pg-benefit-item i {
        font-size: 30px;
        color: #ff7a00;
        margin-bottom: 8px;
    }

    .pg-benefit-item h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .pg-benefit-item p {
        font-size: 13px;
        color: #666;
    }




    .pg-blog-swiper .swiper-wrapper {
        align-items: stretch;
    }

    .pg-blog-slide-card {
        background: #fff;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
        display: flex;
        flex-direction: column;
        height: 100%;
        transition: transform .3s, box-shadow .3s;
    }

    .pg-blog-slide-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
    }

    .pg-blog-slide-img-wrap {
        position: relative;
        overflow: hidden;
        max-height: 220px;
    }

    .pg-blog-slide-img-wrap img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        transition: transform .4s;
    }

    .pg-blog-slide-card:hover .pg-blog-slide-img-wrap img {
        transform: scale(1.07);
    }

    .pg-blog-badge {
        position: absolute;
        left: 14px;
        bottom: 14px;
        background: rgba(0, 0, 0, .75);
        color: #fff;
        padding: 6px 10px;
        border-radius: 999px;
        font-size: 11px;
    }

    .pg-blog-slide-body {
        padding: 16px 18px 18px;
        display: flex;
        flex-direction: column;
        gap: 8px;
        flex-grow: 1;
    }

    .pg-blog-slide-title a {
        font-size: 16px;
        font-weight: 600;
        color: #222;
        text-decoration: none;
    }

    .pg-blog-slide-title a:hover {
        color: #ff7a00;
    }

    .pg-blog-slide-excerpt {
        font-size: 13px;
        color: #666;
        line-height: 1.5;
    }

    .pg-blog-slide-link {
        margin-top: 4px;
        font-size: 13px;
        font-weight: 600;
        color: #ff7a00;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    .pg-blog-slide-link i {
        font-size: 11px;
    }

    .pg-blog-nav {
        position: absolute;
        top: 45%;
        transform: translateY(-50%);
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #fff;
        box-shadow: 0 8px 18px rgba(0, 0, 0, .15);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: .2s;
    }

    .pg-blog-prev {
        left: -12px;
    }

    .pg-blog-next {
        right: -12px;
    }

    .pg-blog-nav i {
        font-size: 14px;
        color: #333;
    }

    .pg-blog-nav:hover {
        transform: translateY(-50%) scale(1.05);
    }

    .pg-blog-pagination {
        text-align: center;
        margin-top: 18px;
    }

    .pg-blog-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: #ccc;
        opacity: 1;
        margin: 0 4px !important;
    }

    .pg-blog-pagination .swiper-pagination-bullet-active {
        background: #ff7a00;
    }

    .pg-blog-single {
        max-width: 420px;
        /* card jaisa width */
        margin: 0 auto;
        /* center */
    }

    /* responsive */
    @media (max-width:992px) {
        .pg-features-row {
            grid-template-columns: repeat(2, 1fr);
        }

        .pg-category-row {
            grid-template-columns: repeat(2, 1fr);
        }

        .pg-benefits-row {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width:576px) {

        .pg-features-row,
        .pg-category-row,
        .pg-benefits-row {
            grid-template-columns: 1fr;
        }

        .pg-home-section-heading h2 {
            font-size: 26px;
        }
    }











  /* FAQ Wrapper */
.pg-faq-wrapper {
    max-width: 780px;
    margin: 0 auto;
}

.pg-faq-item {
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s ease;
}

/* Question Button */
.pg-faq-question {
    width: 100%;
    text-align: left;
    background: #000;
    color: #fff;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    outline: none;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.pg-faq-question:hover {
    background: #fc6e1d;
}

/* + Icon */
.pg-faq-icon {
    font-size: 22px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

/* Answer Box */
.pg-faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height 0.35s ease;
}

.pg-faq-answer p {
    padding: 15px 20px;
    margin: 0;
    color: #333;
    font-size: 15px;
    line-height: 1.5;
}

/* When Active */
.pg-faq-item.active .pg-faq-answer {
    max-height: 300px;
}

.pg-faq-item.active .pg-faq-icon {
    transform: rotate(45deg);
}







.pg-reviews-section {
    padding: 70px 0;
    background: #fafafa;
}

.pg-reviews-heading h2 {
    font-size: 36px;
    font-weight: 800;
    color: #000;
}

.pg-reviews-heading p {
    color: #555;
    margin-top: 10px;
}

/* Review Card */
.pg-review-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border-left: 5px solid #fc6e1d;
    height: auto;
}

.pg-review-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.pg-review-user {
    font-weight: 700;
    font-size: 17px;
    color: #000;
}

/* Swiper pagination */
.swiper-pagination-bullet {
    background: #aaa;
    opacity: 1;
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: #fc6e1d !important;
}

/* Responsive */
@media (max-width: 768px) {
    .pg-review-card {
        padding: 25px;
    }
}





.pg-how-works {
    padding: 70px 0;
    background: #fff;
    text-align: center; /* MAIN FIX */
}

.pg-how-heading {
    margin-bottom: 50px;
}

/* Heading and paragraph */
.pg-how-heading h2 {
    font-size: 40px;
    font-weight: 700;
    color: #000;
}

.pg-how-heading p {
    font-size: 18px;
    margin-top: 10px;
    color: #444;
}

/* SINGLE ROW */
.pg-how-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 30px;
}

/* STEPS */
.pg-how-step {
    width: 19%;
    text-align: center;
}

/* ICONS */
.pg-how-icon {
    width: 85px;
    height: 85px;
    background: #ff7a00;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #fff;
    box-shadow: 0 6px 22px rgba(255, 122, 0, 0.35);
}

.pg-how-step h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pg-how-step p {
    font-size: 15px;
    color: #444;
    line-height: 22px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .pg-how-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .pg-how-step {
        width: 45%;
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .pg-how-step {
        width: 100%;
    }
}






 .category-slider-full {
    /* padding-top: 10px; */
}

.cat-full-card {
    border-radius: 18px;
    overflow: hidden;
    height: 260px;
    background: transparent;
}

.cat-full-card img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

/* FIXED HOVER – no jump, no white space */
.cat-full-card:hover img {
    transform: scale(1.05);
}

/* Remove white gaps during movement */
.swiper-slide {
    background: transparent !important;
}

.swiper-button-next,
.swiper-button-prev {
    display: none;
}







/* ===============================
   PRICE SLIDER – FIXED VERSION
   =============================== */

.price-slider {
    position: relative;
    width: 100%;
    padding-top: 18px;   /* space for slider */
    padding-bottom: 22px; /* space for prices */
}

/* RANGE BASE */
.price-slider input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: #e5e5e5;
    border-radius: 5px;
    outline: none;
    position: absolute;
    top: 0;
    pointer-events: none;
}

/* ACTIVE TRACK */
.price-slider input[type=range]::-webkit-slider-runnable-track {
    height: 4px;
    background: #fc6e1d;
    border-radius: 5px;
}

.price-slider input[type=range]::-moz-range-track {
    height: 4px;
    background: #fc6e1d;
    border-radius: 5px;
}

/* THUMB */
.price-slider input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #fc6e1d;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    margin-top: -6px;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.price-slider input[type=range]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #fc6e1d;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
}

/* STACKING */
#priceMin { z-index: 2; }
#priceMax { z-index: 1; }

/* PRICE TEXT */
.price-values {
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}
