/* =========================================
   GANESH CHATURTHI - COMPLETE STYLE.CSS
========================================= */


/* ==============================
   RESET
============================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Poppins", sans-serif;
    color: #302525;
    background: #fffdf9;
    overflow-x: hidden;
}


a {
    text-decoration: none;
    color: inherit;
}


img {
    max-width: 100%;
    display: block;
}


/* ==============================
   COMMON CONTAINER
============================== */

.section-container {
    width: min(1400px, calc(100% - 48px));
    margin: 0 auto;
}


/* ==============================
   HEADER
============================== */

.header {
    height: 70px;
    background: rgba(255, 255, 255, 0.97);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee5dc;
}


.header-container {
    width: min(1500px, calc(100% - 40px));
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 150px;
}


.logo-symbol {
    width: 38px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e85d18;
    border: 2px solid #e85d18;
    border-radius: 50% 50% 45% 45%;
    font-size: 21px;
    font-weight: 700;
}


.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}


.logo-text strong {
    color: #b94616;
    font-size: 23px;
    font-family: "Playfair Display", serif;
}


.logo-text span {
    font-size: 12px;
    color: #35302e;
}


.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    height: 100%;
}


.nav-menu a {
    font-size: 12px;
    font-weight: 500;
    color: #393434;
    position: relative;
    white-space: nowrap;
    height: 100%;
    display: flex;
    align-items: center;
}


.nav-menu a:hover,
.nav-menu a.active {
    color: #ed5a13;
}


.nav-menu a.active::after {
    content: "";
    width: 42px;
    height: 2px;
    background: #f05a17;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}


.arrow {
    margin-left: 4px;
    font-size: 13px;
}


.search-button {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #f4510b;
    color: white;
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 7px 18px rgba(244, 81, 11, 0.25);
}


.mobile-menu {
    display: none;
    border: none;
    background: transparent;
    font-size: 25px;
    cursor: pointer;
}


/* ==============================
   HERO SECTION - FULL BACKGROUND IMAGE
============================== */


.hero-section {
    width: 100%;
    min-height: 610px;
    aspect-ratio: 2560 / 1200;

    position: relative;
    overflow: hidden;

    background-image: url("images/hero-bg.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


/* Main hero content area */

.hero-container {
    width: min(1400px, calc(100% - 80px));
    height: 100%;
    min-height: 610px;

    margin: 0 auto;

    display: flex;
    align-items: center;

    position: relative;
    z-index: 2;
}


/* Left-side text content */

.hero-content {
    width: 52%;
    max-width: 720px;
    margin-left: 120px;

    padding:
        clamp(70px, 8vw, 120px)
        0
        clamp(45px, 5vw, 75px)
        clamp(15px, 2vw, 45px);

    position: relative;
    z-index: 5;
}


.hero-small-title {
    font-size: 13px;
    color: #bc5019;
    font-weight: 600;
    margin-bottom: 12px;
}


.hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(50px, 5vw, 76px);
    line-height: 0.98;
    font-weight: 600;
    color: #2e2624;
    margin-bottom: 24px;
}


.hero-content h1 span {
    display: block;
    color: #d84716;
    margin-top: 8px;
}


.hero-content p {
    font-size: 15px;
    line-height: 1.75;
    color: #130d07;
    max-width: 560px;
    margin-bottom: 25px;
}


/* Hero buttons */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}


.btn {
    min-height: 48px;
    padding: 0 21px;
    border-radius: 9px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    font-weight: 600;
    color: white;

    transition: 0.25s ease;

    box-shadow: 0 8px 17px rgba(0, 0, 0, 0.12);
}


.btn:hover {
    transform: translateY(-2px);
}


.btn-orange {
    background: linear-gradient(135deg, #ff6a00, #ed4705);
}


.btn-maroon {
    background: linear-gradient(135deg, #b22950, #7d1638);
}


.btn-green {
    background: linear-gradient(135deg, #496f0d, #2c5305);
}


/* ==============================
   COUNTDOWN
============================== */

.countdown-box {
    width: min(100%, 455px);

    padding: 10px 12px 13px;

    background: rgba(255, 255, 255, 0.83);

    border: 1px solid rgba(220, 188, 140, 0.45);
    border-radius: 11px;

    box-shadow: 0 13px 28px rgba(108, 65, 10, 0.12);

    backdrop-filter: blur(8px);
}


.countdown-title {
    text-align: center;
    color: #855331;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 9px;
}


.countdown-title span {
    color: #e8621a;
    margin: 0 7px;
}


.countdown-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
}


.countdown-item {
    background: linear-gradient(180deg, #fffdf9, #f6eee2);
    border-radius: 8px;
    text-align: center;
    padding: 11px 5px;
}


.countdown-item strong {
    display: block;
    font-size: 22px;
    color: #39322e;
    line-height: 1.2;
}


.countdown-item span {
    display: block;
    font-size: 9px;
    margin-top: 4px;
    color: #7b6e67;
}


/* ==============================
   SECTION HEADINGS
============================== */

.section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}


.section-heading h2 {
    font-family: "Playfair Display", serif;
    font-size: 29px;
    color: #37302e;
}


.section-heading span {
    color: #e85d18;
    font-size: 15px;
}


/* ==============================
   POPULAR TOOLS
============================== */

.tools-section {
    padding: 58px 0 45px;
    background:
        radial-gradient(
            circle at 50% 10%,
            #fffdf8,
            #f7f4ef 60%,
            #f2eee8
        );
}


.tools-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}


.tool-card {
    min-height: 270px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid #e6dfd7;
    border-radius: 12px;
    padding: 25px 18px 18px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(64, 46, 30, 0.07);
    transition: 0.25s ease;
}


.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(64, 46, 30, 0.12);
}


.tool-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 31px;
}


.calendar-icon {
    background: #fff2d9;
    color: #e96315;
}


.calculator-icon {
    background: #f1e7f5;
    color: #9b3670;
}


.leaf-icon {
    background: #eff2d8;
    color: #3d7519;
}


.modak-icon {
    background: #f9e3e9;
    color: #dc4265;
}


.prasad-icon {
    background: #fff0d8;
    color: #df7017;
}


.tool-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 17px;
    line-height: 1.3;
    color: #352d2b;
    margin-bottom: 13px;
}


.tool-card p {
    font-size: 11px;
    line-height: 1.6;
    color: #655d59;
    min-height: 45px;
}


.tool-card a {
    display: inline-block;
    margin-top: 13px;
    font-size: 12px;
    font-weight: 600;
    color: #c84a20;
}


.tool-card a:hover {
    color: #ef5816;
}


.center-button {
    text-align: center;
    margin-top: 25px;
}


.view-tools-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: white;
    background: linear-gradient(90deg, #e44b16, #ff6b0b);
    padding: 13px 25px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(231, 80, 16, 0.2);
}


/* ==============================
   PANDALS
============================== */

.pandals-section {
    padding: 55px 0 38px;
    background: #fffdf9;
}


.pandals-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 35px;
    align-items: center;
}


.small-section-icon {
    font-size: 27px;
    color: #e8661c;
    margin-bottom: 10px;
}


.pandals-intro h2 {
    font-family: "Playfair Display", serif;
    font-size: 29px;
    line-height: 1.15;
    color: #403735;
    margin-bottom: 15px;
}


.pandals-intro h2 span {
    display: block;
}


.pandals-intro p {
    font-size: 12px;
    line-height: 1.8;
    color: #625a56;
    margin-bottom: 22px;
}


.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #a91f44, #711530);
    color: white;
    padding: 12px 19px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 7px 18px rgba(116, 20, 49, 0.17);
}


.pandal-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}


.pandal-card {
    background: white;
    border: 1px solid #e6e0da;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(65, 45, 30, 0.08);
    transition: 0.25s ease;
}


.pandal-card:hover {
    transform: translateY(-5px);
}


.pandal-card img {
    width: 100%;
    height: 145px;
    object-fit: cover;
}


.pandal-info {
    padding: 9px 10px 11px;
}


.pandal-info h3 {
    font-size: 13px;
    line-height: 1.3;
    color: #38312e;
    margin-bottom: 4px;
}


.pandal-info p {
    font-size: 9px;
    color: #746d68;
    margin-bottom: 8px;
}


.pandal-info span {
    display: inline-block;
    background: #fff0dd;
    color: #df741d;
    padding: 3px 7px;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 600;
}


.pandal-info .family-tag {
    background: #e8f3e7;
    color: #538447;
}


.view-all-pandals {
    text-align: center;
    margin-top: 25px;
}


.view-all-pandals a {
    font-size: 12px;
    font-weight: 600;
    color: #9c2c3f;
}


/* ==============================
   FEATURES
============================== */

.features-section {
    padding: 48px 0 42px;
    background: #fffdf9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.feature-card {
    min-height: 205px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 14px;
    padding: 24px 17px 20px;
    text-align: center;
    text-decoration: none;
    border: 1px solid rgba(222, 211, 198, 0.85);
    box-shadow: 0 8px 22px rgba(75, 53, 38, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(75, 53, 38, 0.11);
    border-color: rgba(156, 44, 63, 0.18);
}

.feature-card > div {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    font-size: 27px;
    line-height: 1;
    box-shadow: 0 5px 12px rgba(75, 53, 38, 0.07);
}

.feature-card h3 {
    margin: 0 0 8px;
    font-family: "Playfair Display", serif;
    font-size: 17px;
    line-height: 1.25;
    color: #37302d;
}

.feature-card p {
    max-width: 190px;
    min-height: 34px;
    margin: 0;
    font-size: 10px;
    line-height: 1.55;
    color: #615955;
}

.feature-card span {
    display: inline-block;
    margin-top: auto;
    padding-top: 12px;
    font-size: 10px;
    font-weight: 700;
}

.feature-orange {
    background: linear-gradient(135deg, #fff7eb, #fff0d9);
}

.feature-orange span,
.feature-orange > div {
    color: #e96616;
}

.feature-purple {
    background: linear-gradient(135deg, #f4f0ff, #eae6fb);
}

.feature-purple span,
.feature-purple > div {
    color: #7554b3;
}

.feature-green {
    background: linear-gradient(135deg, #f4f9eb, #eaf3dd);
}

.feature-green span,
.feature-green > div {
    color: #49791b;
}

.feature-blue {
    background: linear-gradient(135deg, #eff4fc, #e5edf8);
}

.feature-blue span,
.feature-blue > div {
    color: #4c6f9d;
}

.feature-yellow {
    background: linear-gradient(135deg, #fff9e9, #fff1cc);
}

.feature-yellow span,
.feature-yellow > div {
    color: #c78615;
}

/* ==============================
   NEWSLETTER
============================== */

.newsletter-section {
    padding: 25px 0 20px;
    background: #fffdf9;
}


.newsletter-box {
    min-height: 108px;
    padding: 20px 30px;
    border-radius: 12px;
    background:
        radial-gradient(
            circle at 10% 50%,
            rgba(255, 137, 40, 0.14),
            transparent 22%
        ),
        linear-gradient(
            90deg,
            #8f102f,
            #a9082b 60%,
            #cf280c
        );
    display: flex;
    align-items: center;
    gap: 18px;
    color: white;
    box-shadow: 0 12px 24px rgba(120, 10, 34, 0.15);
}


.newsletter-icon {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    flex-shrink: 0;
}

.newsletter-icon img {
    background: #ffffff;
    padding: 8px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    object-fit: contain;
}


.newsletter-text {
    flex: 1;
}


.newsletter-text h2 {
    font-family: "Playfair Display", serif;
    font-size: 23px;
    margin-bottom: 5px;
}


.newsletter-text p {
    font-size: 11px;
    opacity: 0.85;
}


.newsletter-form {
    display: flex;
    width: min(100%, 440px);
    background: white;
    border-radius: 8px;
    overflow: hidden;
}


.newsletter-form input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    padding: 15px;
    font-family: inherit;
    font-size: 11px;
}


.newsletter-form button {
    border: none;
    background: linear-gradient(135deg, #ff6b0a, #ed4805);
    color: white;
    padding: 0 27px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}


/* ==============================
   BENEFITS
============================== */

.benefits-section {
    padding: 0 0 25px;
    background: #fffdf9;
}


.benefits-grid {
    min-height: 92px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(90deg, #fffaf2, #f7f4ef);
    border-radius: 11px;
    border: 1px solid #eee7dd;
}


.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 20px;
    position: relative;
}


.benefit-item:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 38px;
    background: #e5ddd3;
    position: absolute;
    right: 0;
}


.benefit-item > div {
    font-size: 27px;
    color: #d68118;
}


.benefit-item p {
    font-size: 11px;
    line-height: 1.5;
    color: #4b4542;
}


/* ==============================
   FOOTER - FINAL POLISH
============================== */

.footer {
    position: relative;
    background: linear-gradient(180deg, #fffaf3 0%, #f7eee5 100%);
    padding: 58px 0 0;
    border-top: 1px solid #eadfd4;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(212, 106, 18, 0.045);
    top: -150px;
    right: -90px;
    pointer-events: none;
}

.footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr 1fr 0.85fr;
    gap: 34px;
    padding-bottom: 42px;
}

.footer-brand .logo {
    display: inline-flex;
}

.footer-brand p {
    max-width: 280px;
    margin: 18px 0 22px;
    font-size: 12px;
    line-height: 1.75;
    color: #655d58;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 9px;
}

.social-icons a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(164, 38, 69, 0.12);
    border-radius: 50%;
    background: #a42645;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform .2s ease, background .2s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    background: #8f1f3b;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.footer-column h3 {
    font-family: "Playfair Display", serif;
    font-size: 17px;
    line-height: 1.3;
    color: #3b3431;
    margin: 2px 0 7px;
}

.footer-column a {
    position: relative;
    width: fit-content;
    font-size: 12px;
    line-height: 1.45;
    color: #615a55;
    transition: color .2s ease, transform .2s ease;
}

.footer-column a:hover {
    color: #a42645;
    transform: translateX(3px);
}

.footer-kalash {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 180px;
}

.footer-kalash img {
    width: 170px;
    height: 170px;
    object-fit: contain;
    filter: drop-shadow(0 10px 14px rgba(91, 55, 30, 0.10));
}

.footer-bottom {
    position: relative;
    z-index: 1;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #e5d9ce;
    font-size: 11px;
    color: #716862;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        gap: 28px;
    }

    .footer-kalash {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer {
        padding-top: 45px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 24px;
        padding-bottom: 34px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-brand p {
        max-width: 430px;
    }

    .footer-bottom {
        min-height: 54px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding-top: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 28px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-brand p {
        max-width: 330px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-column {
        align-items: center;
    }

    .footer-column a:hover {
        transform: none;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        min-height: auto;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        padding: 14px 8px;
        text-align: center;
    }
}

/* ==============================
   EMPTY TARGET SECTIONS
============================== */

#puja,
#downloads,
#kids,
#eco,
#blog {
    scroll-margin-top: 80px;
}


/* ==============================
   TABLET RESPONSIVE
============================== */

@media (max-width: 1200px) {

    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 11px;
    }

    .hero-container {
        width: min(100% - 40px, 1200px);
        min-height: 570px;
    }

    .hero-section {
        min-height: 570px;
    }

    .hero-content {
        width: 55%;
        padding-left: 20px;
    }

    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tool-card:last-child {
        grid-column: 2;
    }

    .pandals-layout {
        grid-template-columns: 1fr;
    }

    .pandals-intro {
        text-align: center;
    }

    .pandal-cards {
        grid-template-columns: repeat(4, 1fr);
    }

}


@media (max-width: 1000px) {

    .header {
        height: 65px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        height: auto;
        padding: 15px 25px;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        border-bottom: 1px solid #eee;
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
    }

    .nav-menu.show {
        display: flex;
    }

    .nav-menu a {
        width: 100%;
        height: auto;
        padding: 12px 0;
    }

    .nav-menu a.active::after {
        display: none;
    }

    .mobile-menu {
        display: block;
        margin-left: 12px;
    }

    .search-button {
        margin-left: auto;
    }

    .hero-section {
        min-height: 540px;
        background-position: center center;
    }

    .hero-container {
        min-height: 540px;
    }

    .hero-content {
        width: 58%;
        padding-left: 15px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* ==============================
   MOBILE
============================== */

@media (max-width: 768px) {

    .section-container {
        width: min(100% - 28px, 650px);
    }

    .header-container {
        width: min(100% - 28px, 700px);
    }

    .logo {
        min-width: auto;
    }

    .logo-symbol {
        width: 34px;
        height: 37px;
        font-size: 17px;
    }

    .logo-text strong {
        font-size: 20px;
    }

    .logo-text span {
        font-size: 10px;
    }

    .hero-section {
        min-height: 760px;
        aspect-ratio: auto;

        /*
           On mobile the same wide image is cropped.
           This keeps the left text readable and Ganesh visible.
        */
        background-position: 68% center;
    }

    .hero-container {
        width: min(100% - 30px, 650px);
        min-height: 760px;
        align-items: flex-start;
    }

    .hero-content {
        width: 100%;
        max-width: 560px;

        padding: 90px 0 30px;

        text-align: center;
    }

    .hero-small-title {
        font-size: 11px;
    }

    .hero-content h1 {
        font-size: clamp(42px, 12vw, 62px);
    }

    .hero-content p {
        font-size: 13px;
        margin: 0 auto 23px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .btn {
        padding: 0 15px;
        min-height: 44px;
        font-size: 10px;
    }

    .countdown-box {
        margin: auto;
    }

    .section-heading h2 {
        font-size: 25px;
        text-align: center;
    }

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

    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tool-card:last-child {
        grid-column: auto;
    }

    .tool-card {
        min-height: 245px;
        padding: 20px 12px;
    }

    .tool-card h3 {
        font-size: 15px;
    }

    .pandal-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .pandals-layout {
        gap: 25px;
    }

    .newsletter-box {
        flex-direction: column;
        text-align: center;
        padding: 25px 18px;
    }

    .newsletter-form {
        width: 100%;
    }

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

    .benefit-item:nth-child(2)::after {
        display: none;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-kalash {
        display: none;
    }

}


@media (max-width: 480px) {

    .search-button {
        width: 38px;
        height: 38px;
    }

    .hero-section {
        min-height: 700px;
        background-position: 72% center;
    }

    .hero-container {
        min-height: 700px;
    }

    .hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-buttons {
        gap: 8px;
    }

    .btn {
        width: 100%;
    }

    .countdown-item strong {
        font-size: 18px;
    }

    .section-heading {
        gap: 7px;
    }

    .section-heading span {
        display: none;
    }

    .tools-grid,
    .features-grid,
    .pandal-cards {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 190px;
        padding: 22px 18px 19px;
    }

    .tool-card {
        min-height: auto;
    }

    .pandal-card img {
        height: 200px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item::after {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        grid-column: auto;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        padding: 10px;
        text-align: center;
    }

}

/* =========================================
   POPULAR TOOLS - INTRO CARDS
   Scoped to .popular-tools to avoid conflicts
   with the existing .tools-section cards.
========================================= */

.popular-tools {
    padding: 80px 0;
    background: #fffaf4;
}

.popular-tools .section-heading {
    display: block;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
}

.popular-tools .section-subtitle {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #d96b20;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popular-tools .section-heading h2 {
    margin: 0 0 12px;
    font-size: 38px;
    line-height: 1.2;
    color: #7b1e19;
}

.popular-tools .section-heading p {
    margin: 0;
    color: #6f6259;
    font-size: 17px;
}

.popular-tools .tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.popular-tools .tool-card {
    display: block;
    min-height: 0;
    padding: 30px 26px;
    background: #ffffff;
    border: 1px solid rgba(123, 30, 25, 0.10);
    border-radius: 18px;
    text-decoration: none;
    text-align: left;
    box-shadow: 0 8px 25px rgba(90, 45, 20, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popular-tools .tool-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(90, 45, 20, 0.12);
}

.popular-tools .tool-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 20px;
    background: #fff0df;
    border-radius: 15px;
    font-size: 28px;
}

.popular-tools .tool-card h3 {
    margin: 0 0 10px;
    font-family: "Playfair Display", serif;
    color: #7b1e19;
    font-size: 21px;
    line-height: 1.3;
}

.popular-tools .tool-card p {
    margin: 0 0 20px;
    color: #70645c;
    font-size: 15px;
    line-height: 1.7;
    min-height: 0;
}

.popular-tools .tool-link {
    font-size: 14px;
    font-weight: 700;
    color: #d96b20;
}

.popular-tools .tool-card:hover .tool-link {
    color: #ed5a13;
}


/* Popular Tools - responsive */

@media (max-width: 900px) {
    .popular-tools .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .popular-tools .section-heading h2 {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .popular-tools {
        padding: 60px 0;
    }

    .popular-tools .tools-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .popular-tools .section-heading {
        margin-bottom: 32px;
    }

    .popular-tools .section-heading h2 {
        font-size: 28px;
    }

    .popular-tools .section-heading p {
        font-size: 15px;
    }

    .popular-tools .tool-card {
        padding: 24px 22px;
    }
}

/* =========================================
   PANDAL SECTION - FINAL VISUAL POLISH
   ========================================= */

@media (min-width: 1201px) {
    .pandals-section {
        padding: 48px 0 28px;
    }

    .pandals-section .section-container {
        width: min(1760px, calc(100% - 80px));
    }

    .pandals-layout {
        grid-template-columns: 320px minmax(0, 1fr);
        gap: 48px;
        align-items: center;
    }

    .pandals-intro h2 {
        font-size: 32px;
        line-height: 1.18;
        margin-bottom: 16px;
    }

    .pandals-intro p {
        font-size: 13px;
        line-height: 1.75;
        margin-bottom: 24px;
    }

    .pandal-cards {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }

    .pandal-card {
        border-radius: 11px;
    }

    .pandal-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        object-position: center;
    }

    .pandal-info {
        min-height: 108px;
        padding: 11px 13px 13px;
    }

    .pandal-info h3 {
        min-height: 34px;
        font-size: 14px;
        line-height: 1.25;
        margin-bottom: 4px;
    }

    .pandal-info p {
        font-size: 10px;
        margin-bottom: 9px;
    }

    .pandal-info span {
        padding: 4px 8px;
        font-size: 8px;
    }

    .view-all-pandals {
        margin-top: 20px;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .pandals-section {
        padding: 45px 0 30px;
    }

    .pandals-section .section-container {
        width: min(100% - 40px, 1100px);
    }

    .pandals-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .pandals-intro {
        text-align: center;
    }

    .pandal-cards {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px;
    }

    .pandal-card img {
        height: 155px;
    }

    .pandal-info {
        min-height: 105px;
    }
}

@media (max-width: 768px) {
    .pandals-section {
        padding: 42px 0 28px;
    }

    .pandals-layout {
        gap: 24px;
    }

    .pandals-intro h2 {
        font-size: 28px;
    }

    .pandal-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .pandal-card img {
        height: 175px;
    }

    .pandal-info {
        min-height: 105px;
    }

    .view-all-pandals {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .pandal-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pandal-card img {
        height: 205px;
    }

    .pandal-info {
        min-height: auto;
        padding: 11px 13px 13px;
    }

    .pandal-info h3 {
        min-height: auto;
    }
}

/* =========================================
   NEWSLETTER SECTION - FINAL VISUAL POLISH
   ========================================= */

.newsletter-section {
    padding: 34px 0 28px;
    background: #fffdf9;
}

.newsletter-section .section-container {
    width: min(1760px, calc(100% - 80px));
}

.newsletter-box {
    min-height: 132px;
    padding: 24px 32px;
    border-radius: 14px;
    gap: 24px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 50%, rgba(255, 190, 70, 0.18), transparent 23%),
        radial-gradient(circle at 92% 50%, rgba(255, 220, 150, 0.10), transparent 24%),
        linear-gradient(90deg, #8f102f, #a9082b 58%, #c92a12);
    box-shadow: 0 14px 30px rgba(120, 10, 34, 0.13);
}

.newsletter-box::before,
.newsletter-box::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 215, 130, 0.18);
    border-radius: 50%;
    pointer-events: none;
}

.newsletter-box::before {
    width: 170px;
    height: 170px;
    left: -82px;
    top: -65px;
}

.newsletter-box::after {
    width: 210px;
    height: 210px;
    right: -105px;
    bottom: -100px;
}

.newsletter-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 214, 125, 0.35);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    font-size: 31px;
    line-height: 1;
    color: #ffd16a;
    position: relative;
    z-index: 1;
}

.newsletter-text {
    position: relative;
    z-index: 1;
}

.newsletter-text h2 {
    font-size: 25px;
    line-height: 1.25;
    margin-bottom: 7px;
    color: #fff;
}

.newsletter-text p {
    font-size: 12px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.newsletter-form {
    width: min(100%, 430px);
    min-height: 50px;
    flex: 0 0 min(100%, 430px);
    border-radius: 9px;
    box-shadow: 0 6px 18px rgba(60, 0, 15, 0.12);
    position: relative;
    z-index: 1;
}

.newsletter-form input {
    padding: 0 16px;
    font-size: 12px;
    color: #333;
}

.newsletter-form input::placeholder {
    color: #8b8580;
}

.newsletter-form button {
    min-width: 116px;
    padding: 0 22px;
    font-size: 12px;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.newsletter-form button:hover {
    filter: brightness(1.06);
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1200px) {
    .newsletter-section {
        padding: 30px 0 24px;
    }

    .newsletter-section .section-container {
        width: min(100% - 40px, 1100px);
    }

    .newsletter-box {
        min-height: 125px;
        padding: 22px 24px;
        gap: 18px;
    }

    .newsletter-icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
        font-size: 28px;
    }

    .newsletter-text h2 {
        font-size: 21px;
    }

    .newsletter-text p {
        font-size: 11px;
    }

    .newsletter-form {
        flex-basis: 360px;
        width: 360px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 26px 0 22px;
    }

    .newsletter-section .section-container {
        width: min(100% - 30px, 600px);
    }

    .newsletter-box {
        min-height: auto;
        padding: 24px 20px;
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .newsletter-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
        font-size: 27px;
    }

    .newsletter-text h2 {
        font-size: 22px;
    }

    .newsletter-text p {
        font-size: 11px;
        max-width: 420px;
        margin: 0 auto;
    }

    .newsletter-form {
        width: 100%;
        flex: none;
        min-height: 48px;
    }
}

@media (max-width: 480px) {
    .newsletter-section .section-container {
        width: calc(100% - 24px);
    }

    .newsletter-box {
        padding: 22px 15px;
        border-radius: 12px;
    }

    .newsletter-text h2 {
        font-size: 20px;
    }

    .newsletter-form {
        flex-direction: column;
        background: transparent;
        overflow: visible;
        gap: 9px;
        box-shadow: none;
    }

    .newsletter-form input {
        width: 100%;
        min-height: 47px;
        border-radius: 8px;
        background: #fff;
    }

    .newsletter-form button {
        width: 100%;
        min-height: 45px;
        border-radius: 8px;
    }
}

/* =========================================================
   BENEFITS STRIP — FINAL POLISH
   ========================================================= */
.benefits-section {
    padding: 8px 0 42px;
    background: #fffdf9;
}

.benefits-section .section-container {
    width: min(1200px, calc(100% - 100px));
}

.benefits-grid {
    min-height: 96px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    background: #ffffff;
    border: 1px solid #eee6dc;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(74, 43, 20, 0.06);
    overflow: hidden;
}

.benefit-item {
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 16px 18px;
    position: relative;
    transition: background 0.25s ease;
}

.benefit-item:hover {
    background: #fffaf3;
}

.benefit-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 42px;
    transform: translateY(-50%);
    background: #e9e0d6;
}

.benefit-item > div {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff3e4;
    color: #d86a12;
    font-size: 21px;
    line-height: 1;
}

.benefit-item p {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
    font-weight: 600;
    color: #4a403b;
}

@media (max-width: 1100px) {
    .benefits-section .section-container {
        width: min(100% - 50px, 1000px);
    }

    .benefit-item {
        gap: 9px;
        padding: 14px 10px;
    }

    .benefit-item > div {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 19px;
    }

    .benefit-item p {
        font-size: 11px;
    }
}

@media (max-width: 800px) {
    .benefits-section {
        padding-bottom: 32px;
    }

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

    .benefit-item:nth-child(2)::after {
        display: none;
    }

    .benefit-item:nth-child(-n+2) {
        border-bottom: 1px solid #eee6dc;
    }
}

@media (max-width: 480px) {
    .benefits-section .section-container {
        width: calc(100% - 24px);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        border-radius: 12px;
    }

    .benefit-item {
        min-height: 76px;
        justify-content: flex-start;
        padding: 13px 18px;
    }

    .benefit-item:not(:last-child)::after,
    .benefit-item:nth-child(2)::after {
        display: none;
    }

    .benefit-item:not(:last-child) {
        border-bottom: 1px solid #eee6dc;
    }
}
/* =========================================================
   NEW HOMEPAGE CONTENT SECTIONS
   Added without changing the existing stylesheet above.
   ========================================================= */

/* ------------------------------
   PUJA & AARTI
   ------------------------------ */

.puja-section {
    padding: 70px 0;
    background: #fffaf4;
}

.puja-heading,
.downloads-heading,
.kids-heading,
.eco-heading,
.blog-heading {
    max-width: 780px;
    margin: 0 auto 35px;
    text-align: center;
}

.puja-heading > span,
.downloads-heading > span,
.kids-heading > span,
.eco-heading > span,
.blog-heading > span {
    display: block;
    margin-bottom: 8px;
    color: #d96b20;
    font-size: 13px;
    font-weight: 700;
}

.puja-heading h2,
.downloads-heading h2,
.kids-heading h2,
.eco-heading h2,
.blog-heading h2 {
    margin-bottom: 10px;
    font-family: "Playfair Display", serif;
    font-size: 34px;
    line-height: 1.2;
    color: #7b1e19;
}

.puja-heading p,
.downloads-heading p,
.kids-heading p,
.eco-heading p,
.blog-heading p {
    margin: 0;
    color: #6f6259;
    font-size: 14px;
    line-height: 1.7;
}

.puja-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.puja-card {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #eadfd5;
    border-radius: 15px;
    box-shadow: 0 8px 22px rgba(74, 43, 20, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.puja-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(74, 43, 20, 0.11);
}

.puja-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #fff0df;
    font-size: 24px;
}

.puja-card h3 {
    margin: 0 0 6px;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    line-height: 1.3;
    color: #3d302b;
}

.puja-card p {
    margin: 0 0 9px;
    color: #6b615b;
    font-size: 12px;
    line-height: 1.65;
}

.puja-card strong {
    color: #d96b20;
    font-size: 12px;
}


/* ------------------------------
   DOWNLOADS
   ------------------------------ */

.downloads-section {
    padding: 70px 0;
    background: #f7f1ff;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.download-card {
    display: block;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #e5dcef;
    border-radius: 15px;
    box-shadow: 0 8px 22px rgba(74, 43, 20, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(74, 43, 20, 0.10);
}

.download-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 14px;
    background: #eee6fb;
    font-size: 23px;
}

.download-card h3 {
    margin: 0 0 7px;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    line-height: 1.3;
    color: #3d302b;
}

.download-card p {
    margin: 0 0 11px;
    color: #6b615b;
    font-size: 12px;
    line-height: 1.7;
}

.download-card span {
    color: #7554b3;
    font-size: 12px;
    font-weight: 700;
}


/* ------------------------------
   KIDS ZONE
   ------------------------------ */

.kids-section {
    padding: 70px 0;
    background: #f3faef;
}

.kids-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.kids-card {
    display: block;
    padding: 23px;
    background: #ffffff;
    border: 1px solid #dfead8;
    border-radius: 15px;
    box-shadow: 0 8px 22px rgba(54, 91, 38, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kids-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(54, 91, 38, 0.10);
}

.kids-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 14px;
    background: #eaf5e4;
    font-size: 23px;
}

.kids-card h3 {
    margin: 0 0 7px;
    font-family: "Playfair Display", serif;
    font-size: 19px;
    line-height: 1.3;
    color: #3d302b;
}

.kids-card p {
    margin: 0 0 11px;
    color: #6b615b;
    font-size: 12px;
    line-height: 1.65;
}

.kids-card span {
    color: #4c7c28;
    font-size: 12px;
    font-weight: 700;
}


/* ------------------------------
   ECO FRIENDLY
   ------------------------------ */

.eco-section {
    padding: 70px 0;
    background: #eef8f2;
}

.eco-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.eco-card {
    display: block;
    padding: 25px;
    background: #ffffff;
    border: 1px solid #d7e9de;
    border-radius: 15px;
    box-shadow: 0 8px 22px rgba(42, 91, 57, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.eco-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(42, 91, 57, 0.10);
}

.eco-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border-radius: 14px;
    background: #e5f3e9;
    font-size: 24px;
}

.eco-card h3 {
    margin: 0 0 7px;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    line-height: 1.3;
    color: #3d302b;
}

.eco-card p {
    margin: 0 0 11px;
    color: #6b615b;
    font-size: 12px;
    line-height: 1.7;
}

.eco-card span {
    color: #4c7c52;
    font-size: 12px;
    font-weight: 700;
}


/* ------------------------------
   BLOG & ARTICLES
   ------------------------------ */

.blog-section {
    padding: 70px 0;
    background: #fffdf9;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.blog-card {
    display: block;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #eadfd5;
    border-radius: 15px;
    box-shadow: 0 8px 22px rgba(74, 43, 20, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(74, 43, 20, 0.11);
}

.blog-image {
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
}

.blog-image-one {
    background: #fff0df;
}

.blog-image-two {
    background: #f9e8df;
}

.blog-image-three {
    background: #eaf5e9;
}

.blog-content {
    padding: 21px;
}

.blog-category {
    display: block;
    margin-bottom: 6px;
    color: #d96b20;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.blog-content h3 {
    margin: 0 0 8px;
    font-family: "Playfair Display", serif;
    font-size: 19px;
    line-height: 1.35;
    color: #3d302b;
}

.blog-content p {
    margin: 0 0 11px;
    color: #6b615b;
    font-size: 12px;
    line-height: 1.7;
}

.blog-content a {
    color: #d96b20;
    font-size: 12px;
    font-weight: 700;
}

.blog-button {
    margin-top: 30px;
    text-align: center;
}

.blog-button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border: 1px solid #e4c5ad;
    border-radius: 22px;
    color: #c5531c;
    font-size: 12px;
    font-weight: 700;
    transition: .2s ease;
}

.blog-button a:hover {
    background: #c5531c;
    color: #ffffff;
}


/* =========================================================
   NEW CONTENT - RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {
    .puja-grid {
        grid-template-columns: 1fr;
    }

    .downloads-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kids-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .eco-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .puja-section,
    .downloads-section,
    .kids-section,
    .eco-section,
    .blog-section {
        padding: 55px 0;
    }

    .puja-heading h2,
    .downloads-heading h2,
    .kids-heading h2,
    .eco-heading h2,
    .blog-heading h2 {
        font-size: 29px;
    }

    .downloads-grid,
    .eco-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .kids-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .puja-heading,
    .downloads-heading,
    .kids-heading,
    .eco-heading,
    .blog-heading {
        margin-bottom: 27px;
    }

    .puja-heading h2,
    .downloads-heading h2,
    .kids-heading h2,
    .eco-heading h2,
    .blog-heading h2 {
        font-size: 26px;
    }

    .puja-heading p,
    .downloads-heading p,
    .kids-heading p,
    .eco-heading p,
    .blog-heading p {
        font-size: 12px;
    }

    .puja-card,
    .download-card,
    .kids-card,
    .eco-card {
        padding: 20px;
    }

    .kids-grid {
        grid-template-columns: 1fr;
    }

    .blog-content {
        padding: 18px;
    }
}
.logo-image {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}