﻿.pdf-landing-wrapper {
    background: #fff7eb;
    padding: 40px 15px;
    display: flex;
    justify-content: center;
}

.pdf-card {
    background: #ffffff;
    max-width: 520px;
    width: 100%;
    padding: 35px 30px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
}

.pdf-title {
    font-size: 26px;
    color: #6b2e00;
    font-weight: bold;
    margin-bottom: 10px;
}

.pdf-subtitle {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.divider {
    width: 60px;
    height: 3px;
    background: #e09b3d;
    margin: 18px auto;
    border-radius: 3px;
}

.pdf-form input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

    .pdf-form input:focus {
        outline: none;
        border-color: #e09b3d;
    }

.pay-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg,#d35400,#e67e22);
    border: none;
    border-radius: 10px;
    font-size: 17px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
}

    .pay-btn:hover {
        opacity: 0.95;
    }

.pdf-note {
    margin-top: 15px;
    font-size: 13px;
    color: #777;
}
/* ==============================
   FEATURED / PDF GRID SECTION
   ============================== */

.pdf-grid-section {

    padding: 50px 15px;
}
/* This wrapper guarantees equal left-right spacing */
.pdf-grid-wrapper {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.section-title {
    text-align: center;
    font-size: 26px;
    margin-bottom: 30px;
    color: #7a2e00;
    font-weight: 600;
}

/* ==============================
   GRID LAYOUT
   ============================== */

.pdf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    /*max-width: 90%;*/
    justify-items: center;
}

/* Tablet */
@media (max-width: 992px) {
    .pdf-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .pdf-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================
   CARD STYLING
   ============================== */

.pdf-box {
    background: #ffffff;
    padding: 18px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    max-width: 320px;
    min-width: 266px;
    margin: auto;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.pdf-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

/* ==============================
   IMAGE
   ============================== */

.pdf-box img {
    width: 120px;
    height: auto;
    margin-bottom: 12px;
    border-radius: 4px;
}

/* ==============================
   TEXT CONTENT
   ============================== */

.pdf-box h3 {
    font-size: 16px;
    color: #3b1f0a;
    margin-bottom: 6px;
    font-weight: 600;
}

.pdf-box p {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

.pdf-box span {
    display: block;
    font-size: 15px;
    font-weight: bold;
    color: #d35400;
    margin: 10px 0;
}

/* ==============================
   BUTTON
   ============================== */

.pdf-btn-small {
    display: inline-block;
    padding: 8px 18px;
    background: #d35400;
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0
}
.aaj-chalisa-btn {
    display: inline-block;
    padding: 14px 26px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transition: all 0.25s ease;
}

    .aaj-chalisa-btn:hover {
        background: linear-gradient(135deg, #e67e22, #d35400);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
@media (max-width: 576px) {
    .aaj-chalisa-btn {
        width: 100%;
        text-align: center;
        padding: 16px;
        font-size: 17px;
    }
}

/*hero*/
/* ===============================
   HERO GRID
   =============================== */

.hero-grid {
    padding: 1px 5px;
}

/* Desktop grid */
.hero-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
}

/* Common item */
.hero-item {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text styles */
.hero-item-left h1 {
    font-size: 36px;
    color: #6b2c00;
    margin: 0;
    font-weight:bold;
}

.hero-item-center p {
    font-size: 15px;
    margin: 0;
    color: #555;
}

.hero-item-center span {
    color: #d35400;
    font-weight: 600;
}

/* CTA already styled */
.hero-item-right {
    text-align: center;
}

/* ===============================
   MOBILE FIX (MOST IMPORTANT)
   =============================== */

@media (max-width: 768px) {

    .hero-grid-container {
        grid-template-columns: 1fr; /* STACK */
        gap: 15px;
    }

    .hero-item {
        justify-content: center;
        padding: 5px 0;
    }

    .hero-item-left h1 {
        font-size: 22px;
    }

    .hero-item-center p {
        font-size: 14px;
    }

    .aaj-chalisa-btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
    }
}
/* ===============================
   DESKTOP ALIGNMENT FIX
   =============================== */

@media (min-width: 992px) {

    /* Left column: logo text */
    .hero-item-left {
        justify-content: flex-start; /* LEFT */
        text-align: left;
    }

    /* Center column stays center */
    .hero-item-center {
        justify-content: center;
        text-align: center;
    }

    /* Right column: CTA button */
    .hero-item-right {
        justify-content: flex-end; /* RIGHT */
        text-align: right;
    }
}

.footer-wrapper {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

