    :root {
        --primary: #fc6e1d;
        --dark: #1a1a1a;
        --light: #f7f7f7;
        --white: #fff;
    }


    @font-face {
	font-family: "Montserrat";
	src: url("../fonts/Montserrat-VariableFont.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}
html,
body {
   margin: 0;
        padding: 0;
	font-family: "Montserrat", sans-serif !important;
}




    


.cart-color-dot{
    display:inline-block;
    width:14px;
    height:14px;
    border-radius:50%;
    border:1px solid #ddd;
    vertical-align:middle;
    margin-left:4px;
}











/* ---- About us page css start---- */


   .pg-about-hero {
        padding: 100px 0;
        text-align: center;
        background: #f6f8fc;
    }

    .pg-about-title {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .pg-about-sub {
        max-width: 700px;
        margin: auto;
        font-size: 18px;
        color: #555;
    }

    .pg-about-section {
        padding: 80px 0;
    }

    .pg-about-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        align-items: center;
    }

    .pg-about-text p {
        font-size: 17px;
        color: #444;
        margin-bottom: 15px;
    }

    .pg-about-img img {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }

    .bg-light {
        background: #f9f9f9;
    }

    .pg-about-features {
        padding: 80px 0;
        background: white;
    }

    .pg-features-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .pg-feature-box {
        text-align: center;
        padding: 30px;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        transition: .3s;
    }

    .pg-feature-box:hover {
        transform: translateY(-5px);
    }

    .pg-feature-box i {
        font-size: 40px;
        color: #ff6600;
        margin-bottom: 15px;
    }

    @media(max-width: 768px) {
        .pg-about-grid {
            grid-template-columns: 1fr;
        }

        .pg-features-grid {
            grid-template-columns: 1fr 1fr;
        }
    }


    /* ---- About us page css close---- */


  /* ---- checkout page css start---- */

        .checkout-box {
        background: #fff;
        padding: 30px;
        border-radius: 14px;
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
        animation: fadeIn .5s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .order-summary {
        background: #f7f7f7;
        padding: 20px;
        border-radius: 12px;
    }

    /* Stripe Card Style */
    #card-element {
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 8px;
        background: #fff;
    }

    #card-errors {
        color: red;
        margin-top: 8px;
    }



    .pay-now-btn {
    display: inline-block;
    width: 100%;
    padding: 14px 20px;
    border-radius: 10px;
    border: none;
    outline: none;
    background: linear-gradient(135deg, #ff7a1a, #ff4b00);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.35);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.pay-now-btn:hover {
    background: linear-gradient(135deg, #ff8c33, #ff5c1a);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(255, 102, 0, 0.45);
}

.pay-now-btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(255, 102, 0, 0.35);
}

@media (max-width: 575.98px) {
    .pay-now-btn {
        font-size: 16px;
        padding: 12px 16px;
    }
}


    /* ---- checkout page css close---- */




       /* ---- contact page css start---- */


         .pg-contact-hero {
        text-align: center;
        padding: 80px 0 40px;
        background: #f6f8fc;
    }

    .pg-contact-hero h1 {
        font-size: 42px;
        font-weight: 700;
    }

    .pg-contact-hero p {
        max-width: 700px;
        margin: 10px auto 0;
        color: #555;
        font-size: 18px;
    }

    /* CONTACT GRID */
    .pg-contact-section {
        padding: 60px 0;
    }

    .pg-contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    /* LEFT INFO BOXES */
    .pg-contact-info h3 {
        font-size: 24px;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .pg-intro {
        font-size: 15px;
        color: #555;
        margin-bottom: 25px;
    }

    .pg-info-box {
        display: flex;
        gap: 15px;
        padding: 15px 18px;
        background: #fff;
        border-radius: 12px;
        margin-bottom: 15px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: 0.3s;
    }

    .pg-info-box:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.09);
    }

    .pg-info-box i {
        font-size: 26px;
        color: #ff6f3d;
        margin-top: 5px;
    }

    .pg-info-box h4 {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
    }

    .pg-info-box p,
    .pg-info-box a {
        margin: 0;
        font-size: 14px;
        color: #444;
        text-decoration: none;
    }



    /* MAP */
    .pg-map iframe {
        width: 100%;
        height: 340px;
        border: none;
        margin-top: 40px;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
        .pg-contact-grid {
            grid-template-columns: 1fr;
        }

        .pg-contact-hero h1 {
            font-size: 34px;
        }
    }
          /* ---- checkout page css close---- */



            /* ---- faqs page css start---- */

            .faq-section {
    background: #fff;
}

.faq-category-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 18px;
}

.faq-category-title span {
    margin-right: 6px;
}

.faq-item {
    margin-bottom: 14px;
}

.faq-question {
    width: 100%;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    cursor: pointer;
    transition: background .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.faq-question:hover {
    background: #fafafa;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
    border-color: #e0e0e0;
}

.faq-icon {
    font-size: 18px;
    font-weight: 600;
    color: #4b5563;
    margin-left: 12px;
}

/* Hidden answer box */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
    background: #ffffff;
    border-radius: 0 0 10px 10px;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: 0 18px;
}

.faq-answer p {
    margin: 0;
    padding: 12px 0 14px;
    font-size: 14px;
    color: #4b5563;
}

/* Active state */
.faq-item.active .faq-question {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-color: #e5e5e5;
}

.faq-item.active .faq-icon {
    content: "−";
}

  /* ---- faqs page css close---- */



  .ps-hero {
    text-align: center;
    padding: 80px 0 40px;
}
.ps-hero h1 {
    font-size: 44px;
    font-weight: 700;
}
.ps-hero p {
    color: #666;
    font-size: 18px;
    max-width: 700px;
    margin: 12px auto 0;
}
.ps-date {
    margin-top: 10px;
    display: block;
    font-size: 14px;
    color: #999;
}

/* Main Container */
.ps-container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* Cards */
.ps-card {
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    margin-bottom: 25px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: 0.25s ease;
}
.ps-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.09);
}

/* Icons */
.ps-icon {
    width: 55px;
    height: 55px;
    background: #e9f3ff;
    color: #ff7f00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    margin-bottom: 15px;
}

/* Table */
.ps-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}
.ps-table th, .ps-table td {
    padding: 12px 15px;
    border: 1px solid #eee;
    font-size: 15px;
}
.ps-table th {
    background: #f8faff;
    font-weight: 600;
}

/* Contact Box */
.ps-contact {
    text-align: center;
}

/* Mobile */
@media(max-width: 600px) {
    .ps-card { padding: 22px; }
    .ps-hero h1 { font-size: 34px; }
}











   
/* HERO */
.rr-hero {
    text-align: center;
    padding: 80px 0 50px;
}
.rr-hero h1 {
    font-size: 44px;
    font-weight: 700;
}
.rr-hero p {
    margin-top: 10px;
    color: #666;
    font-size: 18px;
}

/* GRID */
.rr-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
.rr-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    padding-bottom: 70px;
}

/* CARDS */
.rr-card {
    background: #fff;
    padding: 30px 28px;
    border-radius: 18px;
    box-shadow: 0 4px 22px rgba(0,0,0,0.05);
    transition: 0.25s ease;
    border: 1px solid #f3f3f3;
}
.rr-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.09);
}

/* ICON */
.rr-icon {
    width: 60px;
    height: 60px;
    background: #fff3e4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.rr-icon i {
    color: #ff7f00;
    font-size: 24px;
}

/* HEADINGS */
.rr-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* TEXT */
.rr-card p {
    color: #444;
    line-height: 1.6;
    font-size: 16px;
}
.rr-card ul {
    padding-left: 20px;
    margin: 10px 0 15px;
}
.rr-card ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* NOTE BOX */
.rr-note {
    background: #fff6df;
    border-left: 4px solid #ff7f00;
    padding: 12px 15px;
    border-radius: 6px;
    margin-top: 15px;
    font-size: 15px;
}

/* DIVIDER */
.rr-divider {
    height: 1px;
    background: #eee;
    margin: 18px 0;
}

/* Small text */
.rr-small {
    font-size: 14px;
    color: #888;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .rr-hero h1 { font-size: 34px; }
    .rr-card { padding: 25px; }
}









  /* HERO SECTION */
    .sp-hero {
        text-align: center;
        padding: 80px 0 40px;
    }

    .sp-hero h1 {
        font-size: 44px;
        font-weight: 700;
    }

    .sp-hero p {
        color: #666;
        font-size: 18px;
        max-width: 700px;
        margin: 10px auto 0;
    }

    /* MAIN CONTAINER */
    .sp-container {
        width: 90%;
        max-width: 1100px;
        margin: auto;
    }

    /* CARDS */
    .sp-card {
        padding: 30px;
        background: #fff;
        border-radius: 16px;
        border: 1px solid #f2f2f2;
        margin-bottom: 25px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
    }

    .sp-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    }

    /* ICONS */
    .sp-icon {
        width: 55px;
        height: 55px;
        background: #fff7e6;
        color: #ff9500;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 22px;
        margin-bottom: 15px;
    }

    /* TEXT */
    .sp-card ul {
        margin-top: 12px;
    }

    .sp-card ul li {
        margin-bottom: 8px;
        color: #444;
        line-height: 1.6;
    }

    .sp-contact {
        background: #fef6e9;
        padding: 15px;
        border-left: 5px solid #ff9500;
        border-radius: 10px;
        margin-top: 15px;
    }

    /* MOBILE */
    @media(max-width: 600px) {
        .sp-card {
            padding: 22px;
        }

        .sp-hero h1 {
            font-size: 34px;
        }
    }










       /* about-us-page-start */

.about-section {
    padding: 60px 0;
}

.light-bg {
    background: rgba(0,0,0,0.02);
}

.container.narrow {
    max-width: 850px;
}

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

.section-title {
    text-align: center;
    margin-bottom: 25px;
}

.about-icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px;
    margin-top: 20px;
}

.about-icon-grid.small {
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
}

.icon-box {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.icon-box i {
    font-size: 18px;
    margin-top: 3px;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}

.about-highlight {
    margin: 20px auto;
    padding: 15px 20px;
    font-weight: 600;
}

.about-note {
    margin-top: 15px;
    opacity: 0.85;
    text-align: center;
}

.center {
    text-align: center;
}

.center-text {
    text-align: center;
    margin-bottom: 20px;
}

/* Animations */
.fade-in {
    animation: fadeUp 0.6s ease both;
}

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

/* Responsive */
@media (max-width: 768px) {
    .about-grid-2 {
        grid-template-columns: 1fr;
    }

    .about-section {
        padding: 45px 0;
    }
}

/* about-us-page-end */
