/* ABOUT PAGE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: #fffbf4db;
}

/* ==========================
   ABOUT PAGE HEADER
========================== */

.satvik-about-banner {
    position: relative;
    background-image: url("assets/breadcrum.png");
    padding: 70px 15px;
    overflow: hidden;
}

.satvik-about-banner::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(194, 122, 53, 0.08);
    top: -70px;
    left: -70px;
}

.satvik-about-banner::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(194, 122, 53, 0.08);
    bottom: -60px;
    right: -60px;
}

.satvik-about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.satvik-about-title {
    text-align: center;
    font-size: 52px;
    font-weight: 600;
    color: #000;
    line-height: 1.2;

    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.satvik-about-title.show {
    opacity: 1;
    transform: translateY(0);
}

.satvik-about-title::after {
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    background: #662f1e;
    margin: 15px auto 0;
    border-radius: 20px;
}

/* ==========================
   TABLET VIEW
========================== */

@media (max-width: 991px) {
    .satvik-about-banner {
        padding: 60px 15px;
    }

    .satvik-about-title {
        font-size: 42px;
    }
}

/* ==========================
   MOBILE VIEW
========================== */

@media (max-width: 767px) {
    .satvik-about-banner {
        padding: 45px 15px;
    }

    .satvik-about-title {
        font-size: 32px;
    }

    .satvik-about-title::after {
        width: 70px;
        height: 3px;
    }
}

/* =========================
   GLOBAL STYLES
========================= */

/* =========================
   SATVIKLY INTRO SECTION
========================= */

.devotion-intro-section {
    padding: 80px 20px;
    background: #fffbf4db;
}

.devotion-intro-container {
    max-width: 1100px;
    margin: 0 auto;
}

.devotion-intro-content {
    text-align: center;

    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.devotion-intro-content.show {
    opacity: 1;
    transform: translateY(0);
}

.devotion-intro-text {
    font-size: 18px;
    line-height: 1.9;
    color: #000;
    font-weight: 400;
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {
    .devotion-intro-section {
        padding: 70px 20px;
    }

    .devotion-intro-text {
        font-size: 19px;
        line-height: 1.8;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
    .devotion-intro-section {
        padding: 50px 15px;
    }

    .devotion-intro-text {
        font-size: 16px;
        line-height: 1.8;
    }

    .devotion-intro-text::before {
        width: 70px;
        height: 3px;
        margin-bottom: 25px;
    }
}

.mission-section-custom {
    background: #fffbf4db;
    padding: 70px 20px 80px;
}

.mission-container-custom {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.mission-title-custom {
    font-size: 32px;
    font-weight: 400;
    color: #000;
    margin-bottom: 22px;
    line-height: 1.2;
}

.mission-text-custom {
    max-width: 1050px;
    margin: 0 auto;
    color: #000;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
}

/* Tablet */
@media (max-width: 991px) {
    .mission-title-custom {
        font-size: 36px;
    }

    .mission-text-custom {
        font-size: 17px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .mission-section-custom {
        padding: 50px 15px 60px;
    }

    .mission-title-custom {
        font-size: 30px;
        margin-bottom: 18px;
    }

    .mission-text-custom {
        font-size: 16px;
        line-height: 1.7;
    }
}

/* =========================
   SATVIK PRODUCTS SECTION
========================= */

.divine-products-section {
    padding: 80px 0;
    background: #fffbf4db;
}

.divine-products-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

.divine-products-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left Image */

.divine-products-image {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;

    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.divine-products-image.show {
    opacity: 1;
    transform: translateX(0);
}

.divine-products-image img {
    width: 100%;
    display: block;
    border-radius: 20px;
    transition: 0.5s;
}

.divine-products-image:hover img {
    transform: scale(1.05);
}

/* Right Content */

.divine-products-content {
    flex: 1;

    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.divine-products-content.show {
    opacity: 1;
    transform: translateX(0);
}

.divine-products-subtitle {
    color: #6b3526;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.divine-products-title {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.2;
}

.divine-products-text {
    font-size: 17px;
    color: #000;
    margin-bottom: 25px;
}

.divine-products-list {
    list-style: none;
}

.divine-products-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    color: #000;
    line-height: 1.8;
    font-size: 16px;
}

.divine-products-list li::before {
    content: "✿";
    position: absolute;
    left: 0;
    top: 0;
    color: #6b3526;
    font-weight: 700;
    font-size: 18px;
}

/* Tablet */

@media (max-width: 991px) {
    .divine-products-row {
        flex-direction: column;
    }

    .divine-products-title {
        font-size: 34px;
    }
}

/* Mobile */

@media (max-width: 767px) {
    .divine-products-section {
        padding: 50px 0;
    }

    .divine-products-container {
        width: 92%;
    }

    .divine-products-row {
        gap: 30px;
    }

    .divine-products-title {
        font-size: 28px;
    }

    .divine-products-text,
    .divine-products-list li {
        font-size: 15px;
    }
}

/*==============================
   HOW SATVIKLY WORKS
==============================*/

.satvik-process-section {
    padding: 40px 0 70px;
    background: #fffbf4db;
}

.satvik-container {
    max-width: 1600px;
    width: 95%;
    margin: auto;
}

.satvik-title {
    text-align: center;
    font-size: 42px;
    font-weight: 500;
    color: #000;
    margin-bottom: 35px;
}

.satvik-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
}

.satvik-card {
    background: #feeed6;
    border-radius: 16px;
    padding: 12px 8px;
    text-align: center;
    position: relative;
    min-height: 270px;

    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.satvik-card.active {
    opacity: 1;
    transform: translateY(0);
}

.satvik-card img {
    width: 95px;
    height: 95px;
    object-fit: contain;
    margin-bottom: 15px;
}

.satvik-card h3 {
    font-size: 22px;
    font-weight: 400;
    color: #000;
    line-height: 1.4;
    margin-bottom: 15px;
}

.satvik-card p {
    font-size: 13px;
    color: #000;
    line-height: 1.8;
}

/* Curved connecting line */
.satvik-card.connect::before {
    content: "";
    position: absolute;
    width: 75px;
    height: 40px;
    border-top: 3px solid #c8b6ad;
    border-radius: 100px 100px 0 0;
    top: 148px;
    left: -60px;
}

/* Hover Effect */
.satvik-card:hover {
    transform: translateY(-8px);
}

/* Tablet */
@media (max-width: 991px) {
    .satvik-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .satvik-card.connect::before {
        display: none;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .satvik-process-section {
        padding: 50px 0;
    }

    .satvik-title {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .satvik-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .satvik-card {
        min-height: auto;
        padding: 30px 20px;
    }

    .satvik-card.connect::before {
        display: none;
    }

    .satvik-card img {
        width: 80px;
        height: 80px;
    }
}

/* =================================
   QUALITY & AUTHENTICITY SECTION
================================= */

.sacred-quality-section {
    padding: 70px 0;
    background: #fffbf4db;
}

.sacred-container {
    width: 90%;
    max-width: 1600px;
    margin: auto;
}

.sacred-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 70px;
}

/* Left Content */

.sacred-content {
    flex: 1;
}

.sacred-content h2 {
    font-size: 30px;
    font-weight: 400;
    color: #000;
    margin-bottom: 35px;
    line-height: 1.2;
}

.sacred-list {
    list-style: none;
}

.sacred-list li {
    position: relative;
    padding-left: 42px;
    margin-bottom: 9px;
    font-size: 17px;
    line-height: 1.8;
    color: #000;
}

.sacred-list li:last-child {
    margin-bottom: 0;
}

.sacred-list li::before {
    content: "✿";
    position: absolute;
    left: 0;
    top: 2px;
    color: #6b3526;
    font-size: 24px;
    font-weight: bold;
}

.sacred-list strong {
    font-weight: 700;
}

/* Right Image */

.sacred-image {
    flex: 1;
}

.sacred-image img {
    width: 100%;
    height: 100%;
    border-radius: 3%;
    object-fit: cover;
    display: block;
}

/* Scroll Animation */

.fade-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* Tablet */

@media (max-width: 991px) {
    .sacred-row {
        flex-direction: column;
        gap: 40px;
    }

    .sacred-content h2 {
        font-size: 34px;
    }

    .sacred-image img {
        height: auto;
    }
}

/* Mobile */

@media (max-width: 767px) {
    .sacred-quality-section {
        padding: 50px 0;
    }

    .sacred-content h2 {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .sacred-list li {
        font-size: 16px;
        padding-left: 35px;
        margin-bottom: 25px;
    }

    .sacred-list li::before {
        font-size: 20px;
    }
}

/* ============================
   WHY SATVIKLY SECTION
============================ */

/* ==========================
   WHY CHOOSE SATVIKLY
========================== */

.devotion-advantage-section {
    padding: 80px 0;
    background: #fffbf4db;
}

.devotion-wrapper {
    width: 92%;
    max-width: 1400px;
    margin: auto;
}

.devotion-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 50px;
}

.devotion-header h2 {
    font-size: 24px;
    font-weight: 500;
    color: #222;
    line-height: 1.4;
    margin-bottom: 15px;
}

.devotion-header p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* GRID */

.devotion-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 320px));
    justify-content: center;
    gap: 25px;
}

/* CARD */

.devotion-card {
    background: #f5ead8;
    border-radius: 12px;
    padding: 20px;
    min-height: 260px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: 0.35s ease;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.devotion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* ICON */

.devotion-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #fafafa;
    border: 1px solid #f2d2bf;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.devotion-icon img {
    width: 32px;
    height: 32px;
}

/* TITLE */

.devotion-card h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    color: #222;
}

/* TEXT */

.devotion-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

/* BOTTOM TEXT */

.devotion-bottom-text {
    max-width: 700px;
    margin: 40px auto 0;
    text-align: center;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 1024px) {
    .devotion-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .devotion-card {
        min-height: auto;
    }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 767px) {
    .devotion-grid {
        grid-template-columns: 1fr;
    }

    .devotion-card {
        min-height: auto;
        padding: 18px;
    }

    .devotion-card h3 {
        font-size: 15px;
    }

    .devotion-card p {
        font-size: 13px;
    }
}

/* ORDER PAY - PUJA ORDER PAY  */

.puja-order-pay-wrapper {
    background: #f3f0ea;
    width: 100%;
    padding: 30px 20px 80px;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.puja-order-pay-header {
    text-align: center;
    margin-bottom: 60px;
}

.puja-order-pay-title {
    margin: 0;
    color: #000;
    font-size: 62px;
    font-weight: 700;
    line-height: 1.1;
}

.puja-order-pay-divider {
    display: block;
    width: 55px;
    height: 2px;
    background: #8b5e3c;
    margin: 18px auto 0;
}

.puja-order-pay-summary {
    max-width: 790px;
    margin: 0 auto 45px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
}

.puja-order-pay-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.puja-order-pay-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 42px;
    background: #d8d8d8;
}

.puja-order-pay-method {
    flex: 1.8;
}

.puja-order-pay-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.puja-order-pay-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.puja-order-pay-content {
    max-width: 1200px;
    margin: 0 auto;
}

.puja-order-pay-message {
    margin: 0 0 20px;
    font-size: 16px;
    color: #000;
}

.puja-order-pay-actions {
    display: flex;
    gap: 6px;
}

.puja-order-pay-btn {
    border: none;
    width: 118px;
    height: 42px;
    border-radius: 4px;
    background: #28a745;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.puja-order-pay-btn:hover {
    background: #218838;
}

.puja-order-pay-cancel {
    border: none;
    width: 106px;
    height: 42px;
    border-radius: 4px;
    background: #dc3545;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.puja-order-pay-cancel:hover {
    background: #c82333;
}

.puja-order-pay-processing {
    display: none;
    margin-top: 20px;
    padding: 15px;
    background: rgba(176, 176, 176, 0.6);
    border-top: 2px solid #777;
}

@media (max-width: 768px) {
    .puja-order-pay-title {
        font-size: 36px;
    }

    .puja-order-pay-summary {
        display: block;
        padding: 20px;
    }

    .puja-order-pay-item {
        margin-bottom: 18px;
    }

    .puja-order-pay-item::after {
        display: none;
    }

    .puja-order-pay-actions {
        flex-direction: column;
        width: 180px;
    }
}

/* CHECKOUT */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f6f2e9;
    font-family: "Poppins", sans-serif;
}

/* MAIN WRAPPER */
.puja-checkout-wrapper {
    padding: 40px 50px;
}

/* CONTAINER */
.puja-checkout-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* LEFT SECTION */
.puja-checkout-left {
    flex: 1.4;
}

.puja-checkout-title {
    font-size: 37px;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
    letter-spacing: -0.4px;
}

.puja-checkout-row {
    display: flex;
    gap: 35px;
}

.puja-checkout-group {
    width: 100%;
    margin-bottom: 22px;
}

.puja-checkout-group label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #111;
}

.puja-checkout-group label span {
    color: #d93636;
}

.puja-checkout-group input,
.puja-checkout-group select {
    width: 100%;
    height: 50px;
    border: 1px solid #dddddd;
    background: #fff;
    padding: 0 16px;
    font-size: 14px;
    outline: none;
    transition: 0.3s ease;
}

.puja-checkout-group input::placeholder {
    color: #8d8d8d;
}

.puja-checkout-group input:focus,
.puja-checkout-group select:focus {
    border-color: #7a3416;
}

.puja-checkout-address-second {
    margin-top: 12px;
}

/* RIGHT SECTION */
.puja-checkout-right {
    flex: 1;
}

.puja-order-box {
    background: #fff;
    border: 1px solid #e2e2e2;
}

/* BOX HEADERS */
.puja-order-head {
    background: #f4e5c2;
    padding: 15px 18px;
    font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid #e4e4e4;
}

.puja-order-head.puja-white {
    background: #fff;
}

/* PRODUCT */
.puja-order-product {
    display: flex;
    align-items: center;
    padding: 18px;
    border-bottom: 1px solid #ececec;
}

.puja-order-product img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    margin-right: 15px;
}

.puja-order-product-info {
    flex: 1;
}

.puja-order-product-info h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.puja-order-product-info p {
    font-size: 15px;
    font-weight: 500;
}

.puja-order-product span {
    font-size: 14px;
}

/* COUPON */
.puja-order-coupon {
    padding: 22px;
    text-align: center;
    border-bottom: 1px solid #ececec;
    font-size: 15px;
    color: #444;
}

/* PRICE ROW */
.puja-price-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid #ececec;
    font-size: 15px;
}

.puja-price-row.grand {
    font-size: 18px;
    font-weight: 600;
    border-bottom: none;
}

/* PAYMENT */
.puja-payment-section {
    margin-top: 35px;
}

.puja-payment-text {
    font-size: 16px;
    margin-bottom: 20px;
    color: #111;
}

.puja-payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    cursor: pointer;
    margin-bottom: 18px;
}

.puja-payment-option input {
    transform: scale(1.2);
}

.puja-payment-info {
    background: #f1eef0;
    padding: 18px;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* PRIVACY */
.puja-privacy-text {
    border-top: 1px solid #ddd;
    padding-top: 25px;
    font-size: 15px;
    line-height: 1.9;
    color: #222;
}

/* BUTTON */
.puja-place-order-btn {
    width: 100%;
    height: 58px;
    margin-top: 22px;
    background: #7b3517;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s ease;
}

.puja-place-order-btn:hover {
    background: #63270f;
    transform: translateY(-2px);
}

/* ERROR */
.puja-error {
    border-color: red !important;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .puja-checkout-container {
        flex-direction: column;
    }

    .puja-checkout-row {
        flex-direction: column;
        gap: 0;
    }

    .puja-checkout-wrapper {
        padding: 25px;
    }

    .puja-checkout-title {
        font-size: 30px;
    }
}

/* MY ACCOUNT */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f5f2ec;
    font-family: "Poppins", sans-serif;
}

/* =========================
   WRAPPER
========================= */

.my-account-auth {
    width: 100%;
    padding: 20px 0;
}

.my-account-auth__container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    background: #fff;
}

/* =========================
   LEFT IMAGE
========================= */

.my-account-auth__image {
    width: 56%;
}

.my-account-auth__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================
   RIGHT PANEL
========================= */

.my-account-auth__right {
    width: 44%;
    padding: 50px;
}

/* =========================
   TABS
========================= */

.my-account-auth__tabs {
    display: flex;
    border: 1px solid #e7ddd4;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.my-account-auth__tab {
    flex: 1;
    height: 50px;
    border: none;
    cursor: pointer;
    background: #f6f1eb;
    color: #a07c67;
    font-size: 15px;
}

.my-account-auth__tab--active {
    background: #fff;
    color: #7b3f23;
    font-weight: 500;
}

/* =========================
   PANELS
========================= */

.my-account-auth__panel {
    display: none;
}

.my-account-auth__panel.active {
    display: block;
}

/* =========================
   HEADING
========================= */

.my-account-auth__heading {
    text-align: center;
    color: #555;
    margin-bottom: 30px;
    font-size: 15px;
}

/* =========================
   FORM
========================= */

.my-account-auth__field {
    margin-bottom: 20px;
}

.my-account-auth__field label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.my-account-auth__field span {
    color: red;
}

.my-account-auth__field input {
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    padding: 0 15px;
    font-size: 14px;
    outline: none;
}

.my-account-auth__field input:focus {
    border-color: #7b3f23;
}

/* =========================
   BUTTONS
========================= */

.my-account-auth__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.my-account-auth__btn {
    background: #7b3f23;
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.my-account-auth__btn:hover {
    background: #5d2e17;
}

/* =========================
   PASSWORD FIELD
========================= */

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 50px;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
}

/* =========================
   REMEMBER
========================= */

.remember-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.remember-row input {
    width: auto;
}

/* =========================
   LINKS
========================= */

.forgot-password {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
    color: #7b3f23;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* =========================
   REGISTER
========================= */

.my-account-auth__input-wrap {
    position: relative;
}

.my-account-auth__verify {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    color: #7b3f23;
    font-weight: 600;
    cursor: pointer;
}

.my-account-auth__note {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
    .my-account-auth__container {
        flex-direction: column;
    }

    .my-account-auth__image,
    .my-account-auth__right {
        width: 100%;
    }

    .my-account-auth__right {
        padding: 25px;
    }

    .my-account-auth__buttons {
        flex-direction: column;
    }

    .my-account-auth__btn {
        width: 100%;
    }
}

/* BLOG */
/* Main Section */
.satvik-insight-section {
    background: #f2eee8;
    padding: 70px 0 80px;
}

/* Container */
.satvik-insight-container {
    width: 1280px;
    margin: 0 auto;
}

/* Heading */
.satvik-insight-heading {
    text-align: center;
    margin-bottom: 65px;
}

.satvik-insight-heading h2 {
    font-size: 60px;
    font-weight: 700;
    color: #000;
    line-height: 1;
    margin: 0;
    position: relative;
    display: inline-block;
    font-family: Arial, sans-serif;
}

.satvik-insight-heading h2::after {
    content: "";
    width: 62px;
    height: 3px;
    background: #6b341d;
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
}

/* Grid */
.satvik-insight-grid {
    display: flex;
    gap: 30px;
}

/* Card */
.satvik-insight-card {
    width: 33.33%;
    background: #fff;
}

/* Image */
.satvik-insight-image img {
    width: 100%;
    height: 198px;
    object-fit: cover;
    display: block;
}

/* Content */
.satvik-insight-content {
    padding: 20px;
}

/* Meta */
.satvik-insight-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #d8d8d8;
    margin-bottom: 18px;
}

.satvik-insight-date,
.satvik-insight-category {
    font-size: 14px;
    color: #7d4b35;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
}

.satvik-insight-date i,
.satvik-insight-category i {
    color: #f3a100;
    font-size: 14px;
}

/* Title */
.satvik-insight-content h3 {
    font-size: 21px;
    line-height: 1.4;
    color: #6b341d;
    font-weight: 600;
    margin: 0 0 18px;
}

/* Description */
.satvik-insight-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #000;
    margin-bottom: 28px;
}

/* Button */
.satvik-insight-btn {
    display: inline-block;
    padding: 15px 28px;
    background: #6b341d;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.satvik-insight-btn:hover {
    background: #532714;
}

/* Responsive */
@media (max-width: 1300px) {
    .satvik-insight-container {
        width: 95%;
    }
}

@media (max-width: 991px) {
    .satvik-insight-grid {
        flex-wrap: wrap;
    }

    .satvik-insight-card {
        width: calc(50% - 15px);
    }

    .satvik-insight-heading h2 {
        font-size: 46px;
    }
}

@media (max-width: 767px) {
    .satvik-insight-card {
        width: 100%;
    }

    .satvik-insight-heading h2 {
        font-size: 34px;
    }

    .satvik-insight-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* BLOG DETAILS */

/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: #fff;
    color: #222;
    line-height: 1.8;
}

/* =========================
   WRAPPER
========================= */
.puja_wrap {
    max-width: 1200px;
    margin: auto;
    padding: 30px 20px;
}

/* =========================
   HERO IMAGE
========================= */
.puja_hero {
    margin-bottom: 50px;
}

.puja_hero img {
    width: 100%;
    display: block;
}

/* =========================
   GRID
========================= */
.puja_grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* =========================
   MAIN CONTENT
========================= */
.puja_main {
    width: 100%;
}

/* =========================
   META
========================= */
.puja_meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.puja_meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* =========================
   TITLE
========================= */
.puja_title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.15;
    color: #000;
    margin-bottom: 25px;
}

/* =========================
   SHARE SECTION
========================= */
.puja_share_wrap {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 14px 0;
    margin-bottom: 30px;

    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.puja_share_label {
    font-size: 18px;
    font-weight: 500;
}

.puja_share {
    display: flex;
    gap: 10px;
}

.puja_share a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 15px;
    transition: 0.3s;
}

.puja_share a:hover {
    transform: translateY(-2px);
}

.fb {
    background: #1877f2;
}

.tw {
    background: #000;
}

.li {
    background: #0a66c2;
}

.wa {
    background: #25d366;
}

.lk {
    background: #222;
}

/* =========================
   CONTENT
========================= */
.puja_content {
    font-size: 16px;
    color: #444;
}

.puja_content p {
    margin-bottom: 18px;
}

.puja_content h2 {
    margin-top: 30px;
    margin-bottom: 12px;
    font-size: 28px;
    color: #111;
}

/* =========================
   SIDEBAR (STICKY)
========================= */
.puja_sidebar {
    border-left: 1px solid #ddd;
    padding-left: 40px;

    position: sticky;
    top: 20px;
    align-self: start;
}

/* =========================
   SIDEBAR BOX
========================= */
.puja_box {
    margin-bottom: 45px;
}

.puja_box h3 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.puja_box ul {
    list-style: none;
}

.puja_box ul li {
    padding: 15px 0;
    border-bottom: 1px solid #e6e6e6;
    position: relative;
    padding-left: 20px;
}

.puja_box ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #c68a60;
    font-size: 20px;
}

.puja_box ul li a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: 0.3s;
}

.puja_box ul li a:hover {
    color: #c26a00;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
    .puja_grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .puja_sidebar {
        position: relative;
        top: auto;
        border-left: none;
        padding-left: 0;
    }

    .puja_title {
        font-size: 38px;
    }
}

@media (max-width: 600px) {
    .puja_title {
        font-size: 30px;
    }

    .puja_share_wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* RETURN & REFUND POLICY - Premium Policy Page Styling */
.policy-section-wrapper {
    padding: 100px 0;
    background: linear-gradient(to bottom, #faf8f3, #ffffff);
    font-family: "Inter", sans-serif;
}

.policy-layout {
    max-width: 1320px;
    margin: auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 70px;
    padding: 0 20px;
}

/* Sidebar */

.policy-sidebar {
    position: sticky;
    top: 40px;
    height: fit-content;
}

.policy-sidebar-box {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 22px;
    padding: 35px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.policy-sidebar-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
}

.policy-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-sidebar ul li {
    margin-bottom: 18px;
}

.policy-sidebar ul li a {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #666;
    text-decoration: none;
    font-size: 15px;
    padding: 14px 16px;
    border-radius: 14px;
    transition: 0.35s ease;
}

.policy-sidebar ul li a:hover {
    background: #fff7df;
    color: #111;
    transform: translateX(6px);
}

.policy-sidebar ul li a span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f3ead2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #b8860b;
    font-weight: 700;
}

/* Content */

.policy-content-area {
    position: relative;
}

.policy-page-header {
    margin-bottom: 60px;
}

.policy-page-header h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #111;
}

.policy-page-header p {
    max-width: 720px;
    font-size: 18px;
    line-height: 1.9;
    color: #666;
}

/* Timeline Line */

.policy-content-area:before {
    content: "";
    position: absolute;
    left: 18px;
    top: 160px;
    width: 2px;
    height: calc(100% - 220px);
    background: linear-gradient(to bottom, #d4af37, #f5e7b8);
}

/* Cards */

.policy-card {
    position: relative;
    margin-left: 70px;
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 35px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: 0.35s ease;
}

.policy-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.policy-card:before {
    content: "";
    position: absolute;
    left: -61px;
    top: 42px;
    width: 24px;
    height: 24px;
    background: #d4af37;
    border-radius: 50%;
    box-shadow: 0 0 0 8px #faf8f3;
}

.policy-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #111;
}

.policy-card h3 {
    font-size: 20px;
    margin: 25px 0 10px;
    color: #222;
}

.policy-card p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
}

/* Lists */

.policy-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.policy-list li {
    padding: 16px 0;
    padding-left: 38px;
    position: relative;
    border-bottom: 1px solid #f4f4f4;
    color: #444;
    font-size: 16px;
}

.policy-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 16px;
    color: #b8860b;
    font-weight: bold;
}

/* Highlight */

.policy-alert {
    margin-top: 25px;
    background: linear-gradient(135deg, #fff8e7, #fffdf7);
    border: 1px solid #f1e2a5;
    padding: 22px;
    border-radius: 14px;
    font-size: 15px;
    line-height: 1.8;
}

/* Promise Box */

.policy-promise {
    background: linear-gradient(135deg, #111, #222);
    color: #fff;
    padding: 50px;
    border-radius: 24px;
    margin-left: 70px;
    margin-top: 40px;
}

.policy-promise h3 {
    font-size: 30px;
    margin-bottom: 15px;
}

.policy-promise p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
}

/* Links */

.policy-card a,
.policy-promise a {
    color: #b8860b;
    text-decoration: none;
    font-weight: 600;
}

/* Mobile */

@media (max-width: 991px) {
    .policy-layout {
        grid-template-columns: 1fr;
    }

    .policy-content-area:before {
        display: none;
    }

    .policy-card,
    .policy-promise {
        margin-left: 0;
    }

    .policy-card:before {
        display: none;
    }

    .policy-page-header h1 {
        font-size: 38px;
    }
}

/* TERM & CONDITION - PUJAKIT TERMS PAGE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f8f5ef;
    font-family: "Poppins", sans-serif;
    color: #333;
}

.pujakit-page-wrap {
    padding: 60px 0;
}

.pujakit-main-container {
    width: 90%;
    max-width: 1350px;
    margin: auto;
}

/* Header */
.pujakit-top-header {
    text-align: center;
    margin-bottom: 50px;
}

.pujakit-main-title {
    font-size: 44px;
    font-weight: 700;
    color: #111;
    position: relative;
    display: inline-block;
    padding-bottom: 18px;
}

.pujakit-main-title::after {
    content: "";
    width: 90px;
    height: 4px;
    background: linear-gradient(to right, #d4af37, #f8d47a);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px;
}

/* Layout */
.pujakit-flex-layout {
    display: flex;
    gap: 35px;
    align-items: flex-start;
}

/* Sidebar */
.pujakit-side-menu {
    width: 300px;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    position: sticky;
    top: 30px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.pujakit-side-menu ul {
    list-style: none;
}

.pujakit-side-menu li {
    margin-bottom: 12px;
}

.pujakit-side-menu a {
    text-decoration: none;
    color: #444;
    display: block;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pujakit-side-menu a:hover,
.pujakit-side-menu a.active {
    background: #fff7df;
    color: #b8860b;
    transform: translateX(5px);
}

/* Content */
.pujakit-content-box {
    flex: 1;
    background: #fff;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

/* Notice box */
.pujakit-important-box {
    background: linear-gradient(135deg, #fffaf0, #fff4da);
    border-left: 5px solid #d4af37;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 35px;
}

/* Headings */
.pujakit-section-title {
    font-size: 28px;
    color: #111;
    margin: 35px 0 20px;
    position: relative;
    padding-left: 18px;
}

.pujakit-section-title::before {
    content: "";
    width: 5px;
    height: 28px;
    background: #d4af37;
    position: absolute;
    left: 0;
    top: 2px;
    border-radius: 8px;
}

/* Paragraph */
.pujakit-content-box p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

/* Links */
.pujakit-content-box a {
    color: #b8860b;
    text-decoration: none;
    font-weight: 600;
}

/* Animation */
.pujakit-fade-block {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease;
}

.pujakit-fade-block.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .pujakit-flex-layout {
        flex-direction: column;
    }

    .pujakit-side-menu {
        width: 100%;
        position: relative;
    }

    .pujakit-content-box {
        padding: 30px;
    }

    .pujakit-main-title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .pujakit-content-box {
        padding: 22px;
    }

    .pujakit-main-title {
        font-size: 28px;
    }

    .pujakit-section-title {
        font-size: 22px;
    }
}

/* PRIVACY */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: #faf7f2;
    color: #333;
}

/* HEADER */
.pujakit-header-wrap {
    padding: 50px 20px;
    background: linear-gradient(135deg, #fff8f0, #f8efe3);
    text-align: center;
}

.pujakit-header-title {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    position: relative;
}

.pujakit-header-title:after {
    content: "";
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #9d6b2d, #d9a95d);
    display: block;
    margin: 15px auto 0;
    border-radius: 30px;
}

/* WRAPPER */
.pujakit-policy-wrapper {
    padding: 70px 0;
}

.pujakit-policy-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    gap: 40px;
    padding: 0 20px;
}

/* SIDEBAR */
.pujakit-policy-sidebar {
    width: 280px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.pujakit-policy-sidebar ul {
    list-style: none;
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.pujakit-policy-sidebar li {
    margin-bottom: 14px;
}

.pujakit-policy-sidebar li:last-child {
    margin-bottom: 0;
}

.pujakit-policy-sidebar a {
    display: block;
    padding: 14px 18px;
    text-decoration: none;
    color: #555;
    font-size: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.pujakit-policy-sidebar a:hover {
    background: #f4ede4;
    color: #9d6b2d;
    transform: translateX(6px);
}

.pujakit-policy-sidebar a.active {
    background: linear-gradient(135deg, #9d6b2d, #d9a95d);
    color: #fff;
}

/* CONTENT */
.pujakit-policy-content {
    flex: 1;
}

/* CARD */
.pujakit-policy-card {
    background: #fff;
    padding: 45px;
    margin-bottom: 30px;
    border-radius: 22px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: 0.35s ease;
    scroll-margin-top: 100px;
}

.pujakit-policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.pujakit-policy-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #222;
    font-weight: 700;
}

.pujakit-policy-card h2:after {
    content: "";
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #9d6b2d, #d9a95d);
    display: block;
    margin-top: 12px;
    border-radius: 20px;
}

.pujakit-policy-card p {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 15px;
}

.pujakit-policy-card a {
    color: #9d6b2d;
    text-decoration: none;
}

.pujakit-policy-card a:hover {
    text-decoration: underline;
}

/* CONTACT BOX */
.pujakit-contact-box {
    background: #fff8f0;
    border-left: 4px solid #9d6b2d;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

/* MOBILE */
@media (max-width: 991px) {
    .pujakit-policy-container {
        flex-direction: column;
    }

    .pujakit-policy-sidebar {
        width: 100%;
        position: relative;
        top: 0;
    }

    .pujakit-policy-sidebar ul {
        display: flex;
        gap: 10px;
        overflow-x: auto;
    }

    .pujakit-policy-sidebar li {
        margin-bottom: 0;
        min-width: max-content;
    }

    .pujakit-policy-card {
        padding: 30px;
    }

    .pujakit-header-title {
        font-size: 32px;
    }
}

/* CONTACT PAGE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Section */
.satvik-contact-section {
    background: linear-gradient(135deg, #f4f0ea, #f7f3ed);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative background circles */
.satvik-contact-section::before,
.satvik-contact-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(245, 159, 0, 0.08);
    z-index: 0;
}

.satvik-contact-section::before {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.satvik-contact-section::after {
    width: 250px;
    height: 250px;
    bottom: -80px;
    right: -80px;
}

.satvik-contact-container {
    width: 1200px;
    max-width: 95%;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* Heading */
.satvik-contact-heading {
    text-align: center;
    margin-bottom: 60px;
}

.satvik-contact-heading h2 {
    font-size: 56px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    transition: 0.4s;
}

.satvik-contact-heading h2:hover {
    transform: translateY(-3px);
}

.satvik-contact-heading span {
    width: 60px;
    height: 2px;
    background: #8d563a;
    display: inline-block;
    transition: 0.4s;
}

.satvik-contact-heading:hover span {
    width: 100px;
}

/* Wrapper */
.satvik-contact-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
}

/* Form Box */
.satvik-contact-form-box {
    width: 68%;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

.satvik-contact-form-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.satvik-contact-form-box h3 {
    font-size: 46px;
    margin-bottom: 25px;
    font-weight: 600;
}

.satvik-contact-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.satvik-contact-group {
    width: 100%;
}

.satvik-contact-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #111;
}

.satvik-contact-group span {
    color: #a14b2f;
}

.satvik-contact-group input,
.satvik-contact-group textarea {
    width: 100%;
    border: 1px solid #d6d6d6;
    background: #fff;
    border-radius: 8px;
    padding: 14px 16px;
    transition: 0.4s;
    outline: none;
}

.satvik-contact-group input:hover,
.satvik-contact-group textarea:hover {
    border-color: #f59f00;
}

.satvik-contact-group input:focus,
.satvik-contact-group textarea:focus {
    border-color: #f59f00;
    box-shadow: 0 0 12px rgba(245, 159, 0, 0.25);
    transform: scale(1.01);
}

.satvik-contact-group textarea {
    min-height: 130px;
    resize: none;
}

/* Button */
.satvik-contact-btn {
    background: linear-gradient(135deg, #f59f00, #ffb732);
    color: #fff;
    border: none;
    padding: 15px 32px;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s;
    box-shadow: 0 8px 20px rgba(245, 159, 0, 0.3);
}

.satvik-contact-btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 25px rgba(245, 159, 0, 0.45);
}

/* Contact Cards */
.satvik-contact-info {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.satvik-contact-card {
    background: #fff;
    border: 1px solid #d79b7d;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.satvik-contact-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(245, 159, 0, 0.08), transparent);
    transition: 0.4s;
}

.satvik-contact-card:hover::before {
    height: 100%;
}

.satvik-contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: #f59f00;
}

.satvik-contact-icon {
    font-size: 42px;
    margin-bottom: 18px;
    transition: 0.4s;
}

.satvik-contact-card:hover .satvik-contact-icon {
    transform: rotate(12deg) scale(1.15);
    color: #f59f00;
}

.satvik-contact-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.satvik-contact-card p {
    font-size: 16px;
    color: #8d563a;
    line-height: 1.8;
    transition: 0.3s;
}

.satvik-contact-card:hover p {
    color: #000;
}

/* Responsive */
@media (max-width: 991px) {
    .satvik-contact-wrapper {
        flex-direction: column;
    }

    .satvik-contact-form-box,
    .satvik-contact-info {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .satvik-contact-row {
        flex-direction: column;
    }

    .satvik-contact-heading h2 {
        font-size: 40px;
    }

    .satvik-contact-form-box h3 {
        font-size: 34px;
    }
}

/* FOOTER */

/* =========================
   PUJA FOOTER (SCOPED)
========================= */

.puja-footer {
    background: linear-gradient(24deg, #d11578, #ff7a00);
    font-family:
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        Arial,
        sans-serif;
    color: #fff;
    padding: 60px 0 0;
    border-top: 1px solid #eee;
}

.puja-footer .puja-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* GRID */
.puja-footer .puja-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
}

/* TITLES */
.puja-footer .puja-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1f1f1f;
}

/* TEXT */
.puja-footer p {
    font-size: 18px;
    line-height: 1.7;
    margin: 0 0 10px;
}

/* LINKS */
.puja-footer a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: 0.2s;
}

.puja-footer a:hover {
    color: #fff;
}

/* LIST */
.puja-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.puja-footer ul li {
    margin-bottom: 10px;
}

/* CONTACT */
.puja-footer .puja-contact strong {
    display: inline-block;
    /*min-width: 120px;*/
}

/* APP BUTTONS */
.puja-footer .puja-apps {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.puja-footer .puja-apps img {
    height: 42px;
    cursor: pointer;
    transition: 0.2s;
}

.puja-footer .puja-apps img:hover {
    transform: translateY(-2px);
}

/* BOTTOM BAR */
.puja-footer .puja-bottom {
    margin-top: 50px;
    border-top: 1px solid #e7e7e7;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* SOCIAL */
.puja-footer .puja-social {
    display: flex;
    gap: 12px;
}

.puja-footer .puja-social a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #f3e7d9;
    transition: 0.3s;
}

.puja-footer .puja-social a:hover {
    background: #f0d2a6;
    transform: translateY(-2px);
}

.puja-footer .puja-social img {
    width: 18px;
    height: 18px;
}

/* COPYRIGHT */
.puja-footer .puja-copy {
    font-size: 13px;
    color: #666;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .puja-footer .puja-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .puja-footer .puja-row {
        grid-template-columns: 1fr;
    }

    .puja-footer .puja-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* OUR MISSION & OUR VISION */
.mission-vision-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #fffdf8 0%, #fff8ef 100%);
}

.mission-vision-container {
    max-width: 1200px;
    width: 90%;
    margin: auto;
    display: flex;
    gap: 30px;
}

.mission-card {
    flex: 1;
    background: #fef5e6;
    padding: 45px 35px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.mission-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #d97706, #f59e0b);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.mv-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: rgba(217, 119, 6, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mv-icon i {
    font-size: 30px;
    color: #6b3526;
}

.mission-card h2 {
    font-size: 32px;
    color: #000;
    margin-bottom: 18px;
    font-weight: 500;
}

.mission-card p {
    font-size: 16px;
    line-height: 1.9;
    color: #000;
    margin: 0;
}

/* Tablet */
@media (max-width: 991px) {
    .mission-vision-container {
        gap: 20px;
    }

    .mission-card {
        padding: 35px 25px;
    }

    .mission-card h2 {
        font-size: 28px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .mission-vision-container {
        flex-direction: column;
    }

    .mission-card {
        padding: 30px 22px;
    }

    .mission-card h2 {
        font-size: 24px;
    }

    .mv-icon {
        width: 60px;
        height: 60px;
    }

    .mv-icon i {
        font-size: 24px;
    }
}

/* ORDER PAY - CANCEL POPUP */
.puja-cancel-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow: hidden;
}

.puja-cancel-popup-content {
    position: relative;
    width: 420px;
    max-width: 90%;
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    text-align: center;
    animation: popupShow 0.4s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

@keyframes popupShow {
    from {
        opacity: 0;
        transform: scale(0.7) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.puja-cancel-popup-content h3 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #dc3545;
}

.puja-cancel-popup-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.puja-cancel-popup-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.puja-popup-confirm {
    display: inline-block;
    padding: 12px 24px;
    background: #dc3545;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.puja-popup-confirm:hover {
    transform: translateY(-3px);
    background: #c82333;
    color: #fff;
}

.puja-popup-close {
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    background: #28a745;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.puja-popup-close:hover {
    transform: translateY(-3px);
}

/* OR */
