/*
Theme Name: Astra Child
Theme URI: https://example.com
Description: PADT Theme
Author: Envision Tech Pvt.Ltd
Template: astra
Version: 1.0.0
*/

/* Layout Container - Keeps content centered in the middle of the screen */
.blank-container {
    background-color: #888631;
    height: 10px;
}

.ttd-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
}

/* The Banner Background */
.ttd-top {
    background: linear-gradient(135deg, #888631, #4F2C1D);
    padding: 25px 0;
    border-bottom: 2px solid #d4af37;
    /* Gold bottom border */
}

/* Logos & Icons */
.ttd-logo img,
.ttd-icon img {
    height: 75px;
    /* Smaller and cleaner */
    width: auto;
    display: block;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.3));
    /* Makes images pop */
}

/* Title Section */
.ttd-title {
    flex-grow: 1;
    /* Takes up the middle space */
    text-align: center;
    color: #ffffff;
}

.ttd-title h1 {
    font-family: 'Georgia', serif;
    /* Use a serif font for a traditional feel */
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    color: whitesmoke;
}

.ttd-title p {
    font-size: 13px;
    margin: 4px 0 0;
    font-style: italic;
    letter-spacing: 1.5px;
    opacity: 0.9;
    font-weight: 300;
}

/* Navigation */
.ttd-nav {
    background: #200c03;
    position: sticky;
    top: 0;
    z-index: 999;
}

.ttd-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0;
    padding: 12px 0;
}

.ttd-menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.ttd-menu li a:hover {
    background: #fbbf24;
    color: #7f1d1d;
    border-radius: 6px;
}

/* ===== SUB MENU (DROPDOWN) ===== */

/* Make li relative for submenu positioning */
.ttd-menu li {
    position: relative;
}

/* Submenu container */
.ttd-menu li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;

    background: #fff;
    list-style: none;
    padding: 10px 0;
    margin: 0;

    border-top: 4px solid #888631;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;

    z-index: 9999;
}

/* Show submenu on hover */
.ttd-menu li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Submenu links */
.ttd-menu li ul li a {
    color: #4F2C1D;
    padding: 10px 18px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

/* Hover effect on submenu items */
.ttd-menu li ul li a:hover {
    background: #888631;
    color: #fff;
    border-radius: 0;
}

/* Remove default hover background from parent */
.ttd-menu li ul li a:hover {
    box-shadow: none;
}



.ttd-top {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .ttd-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .ttd-menu {
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* Footer Background */
.ttd-footer-top {
    background:
        linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
        url('https://www.transparenttextures.com/patterns/paisley.png');
    background: linear-gradient(135deg, #888631, #4F2C1D);
    padding: 50px 0;
}

/* Container */
.ttd-footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Column Titles */
.footer-col h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    display: inline-block;
    padding-bottom: 5px;
}

/* Links */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding-left: 14px;
    position: relative;
}

.footer-col ul li a::before {
    content: "◆";
    position: absolute;
    left: 0;
    color: #944c35;
    font-size: 10px;
}

.footer-col ul li a:hover {
    text-decoration: underline;
}

/* Visitor Counter */
.footer-counter p {
    color: #fff;
    margin: 10px 0 5px;
}

.counter {
    display: inline-block;
    background: #fff;
    color: #7c2d12;
    padding: 6px 12px;
    font-weight: bold;
    border-radius: 4px;
}

.counter.highlight {
    background: #7c2d12;
    color: #fff;
}

/* Bottom Bar */
.ttd-footer-bottom {
    background: #200c03;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .ttd-footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col ul li a {
        padding-left: 0;
    }

    .footer-col ul li a::before {
        display: none;
    }

    .ttd-footer-bottom {
        text-align: center;
        gap: 10px;
    }
}

/* Marque */
/* Announcement Bar */
.ttd-announcement {
    background: #200c03;
    overflow: hidden;
}

.marquee-wrap {
    max-width: 100%;
    white-space: nowrap;
    padding: 6px 0;
}

.marquee {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee span {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-right: 60px;
    white-space: pre;
}

/* Animation */
@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.ttd-announcement:hover .marquee {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .marquee span {
        font-size: 13px;
    }
}

.ttd-banner,
.about-hero {
    position: relative;
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ttd-banner-content {
    color: #fff;
    text-align: center;
    z-index: 2;
    text-shadow: 1px 1px 5px rgba(10, 3, 3, 0.836);
    position: relative;
    transition: transform 0.1s ease-out;
    /* smooth movement */
}

.ttd-banner-content h2,
.about-hero h3 {
    font-size: 20px;
    /* adjust size */
    font-weight: 800;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-style: italic;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;

    /* 3D shadow effect */
    color: #fafafa;
    text-shadow:
        0 0 5px #50a50b,
        0 0 10px #29210d,
        0 0 20px #181204,
        0 0 30px #1f1a15,
        0 0 40px #0a0907,
        0 0 50px #2c180a,
        0 0 60px #131212;
    /* Optional: perspective for pseudo 3D */
    transform: perspective(500px) rotateX(2deg);
    transition: transform 0.2s ease;
}

/* Slight hover movement for interactive 3D feel */
.ttd-banner-content h2:hover,
.about-hero h3:hover {
    transform: perspective(500px) rotateX(0deg) rotateY(5deg);
}

.ttd-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 16, 8, 0.726);
    z-index: 1;
}

.temple-container {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.music-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 20px;
    cursor: pointer;
    background: #9c5902;
    z-index: 99999;
    color: #fff;
    padding: 10px 15px;
    border-radius: 50%;
    user-select: none;
}

.music-icon:hover {
    background: rgba(0, 0, 0, 0.75);

}

/* Notice table section with category */
.ttd-table-container {
    border: 1px solid #d1d1d1;
    border-radius: 8px;
    overflow: hidden;
    margin: 20px 0;
}

.ttd-custom-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}

.ttd-custom-table thead {
    background: linear-gradient(135deg, #888631, #4F2C1D);
    color: #ffffff;
}

.ttd-custom-table th,
.ttd-custom-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.ttd-custom-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.read-more-btn {
    color: #3b6d01;
    text-decoration: none;
    font-weight: bold;
}

.read-more-btn:hover {
    color: #000;
}

.ticker-label {
    color: yellow;
}

.ticker-content {
    color: white;
    font-size: 16px;
}

.padt-ticker {
    background-image: url('assets/img.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-bottom: 50px;
    padding: 10px;
    border-radius: 10px;
}

/* Container Background matching your site's dark elegance */
.padt-custom-grid {
    background-image: url('assets/grunge-background.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    /* Ensures the image covers the entire area */
    padding: 80px 100px 100px 100px;
    font-family: 'Playfair Display', serif;
}

.padt-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Row Management */
.padt-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 25px;
}

/* Card Design: Maroon Border and Gold Accents */
.padt-card {
    background: #fff;
    border-top: 5px solid #ffd700;
    /* Gold Header Strip */
    background: linear-gradient(135deg, #888631, #4F2C1D);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.padt-card:hover {
    transform: translateY(-10px);
}

.padt-card-header {
    background: linear-gradient(135deg, #888631, #4F2C1D);
    color: #ffd700;
    /* Gold Text */
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.padt-card-header h3 {
    margin: 5px 0 0;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: white;
}

.padt-icon {
    font-size: 1.5rem;
}

.padt-card-body ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.padt-card-body ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.padt-card-body ul li a {
    text-decoration: none;
    color: #f8f0f0;
    font-weight: 600;
    transition: color 0.3s;
}

.padt-card-body ul li a:hover {
    color: #4F2C1D;
}

/* Parchment Scroll Schedule with Antique Feel */
.padt-scroll {
    background: #fdf2d0;
    background-image: url('https://www.transparenttextures.com/patterns/paper-fibers.png');
    border-left: 10px solid #888631;
    border-top: 7px solid #ffd700;
    border-bottom: 7px solid #ffd700;
    border-right: 10px solid #888631;
    box-shadow: 5px 15px 25px rgba(0, 0, 0, 0.4);
    padding: 10px;
    color: #888631;
}

.scroll-label {
    font-weight: 800;
    text-align: center;
    border-bottom: 2px solid #888631;
    padding-bottom: 5px;
}

.scroll-date {
    text-align: center;
    font-size: 0.9rem;
    margin: 10px 0;
    font-weight: bold;
}

.scroll-event {
    margin: 15px 0;
    text-align: center;
}

.scroll-event .time {
    display: block;
    color: #4F2C1D;
    font-weight: bold;
    font-size: 0.8rem;
}

.scroll-event .desc {
    font-weight: bold;
    font-size: 1.1rem;
}

/* About-Us */
/* Sections */
.about-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gray-bg {
    background: #f4f4f4;
    max-width: 100%;
}

.section-title h2 {
    color: #888631;
    /* Deep Maroon */
    /* border-bottom: 3px solid #4F2C1D; */
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.structure-grid h3 {
    color: white;
}

.structure-box p {
    color: #888631;
}

/* Mission & Vision Boxes */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.mv-box {
    background: linear-gradient(135deg, #888631, #4F2C1D);
    color: #fff;
    padding: 40px;
    border-left: 8px solid #4F2C1D;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.mv-box h3 {
    color: white;
    margin-bottom: 15px;
}

/* Organization Structure Layout */
/* ===== Organization Structure Section ===== */
.about-section.structure {
    padding: 20px 50px;
    /* background-color: #F0F5FA; */
    /* border: 20px solid #888631;
    color: #888631; */
}

.about-section .section-title h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #4F2C1D;
    margin-bottom: 50px;
    position: relative;
}

.about-section .section-title h2::after {
    content: "";
    width: 90px;
    height: 4px;
    background: #888631;
    display: block;
    margin: 15px auto 0;
    border-radius: 10px;
}

/* ===== Main Council Box ===== */
.structure-box.main-council {
    max-width: 700px;
    margin: 0 auto 60px;
    background: linear-gradient(135deg, #888631, #6f6d2b);
    color: #fff;
    padding: 35px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    position: relative;
}

.structure-box.main-council h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.structure-box.main-council p {
    font-size: 15px;
    opacity: 0.95;
    color: white;
}

/* Connector line */
.structure-box.main-council::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 50%;
    width: 2px;
    height: 40px;
    background: #888631;
    transform: translateX(-50%);
}

/* ===== Divisions Grid ===== */
.divisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    position: relative;
}

/* ===== Division Cards ===== */
.division-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 14px;
    text-align: center;
    border-top: 5px solid #888631;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Decorative circle */
.division-card::before {
    content: "";
    width: 70px;
    height: 70px;
    background: rgba(136, 134, 49, 0.12);
    position: absolute;
    top: -20px;
    right: -20px;
    border-radius: 50%;
}

/* Hover Effect */
.division-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Title */
.division-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.division-card:hover h4 {
    color: #888631;
}

/* Nepali text */
.division-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Legal Box */
.legal-box {
    background: linear-gradient(135deg, #888631, #4F2C1D);
    /* border: 1px solid #4F2C1D; */
    padding: 40px;
    text-align: center;
    color: white;
}

.legal-box h3 {
    color: white;
}

/* News Page */
/* ===== News Page Styles ===== */
.news-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
    font-family: Arial, sans-serif;
}

.news-title {
    text-align: center;
    color: #4F2C1D;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.news-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.news-tabs button {
    background: #888631;
    border: none;
    padding: 10px 22px;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.news-tabs button.active,
.news-tabs button:hover {
    background: #4F2C1D;
}

.news-content {
    display: none;
}

.news-content.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.news-card {
    background: #fff;
    border-left: 5px solid #888631;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    border-left-color: #4F2C1D;
}

.news-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.news-card h3 a {
    color: #4F2C1D;
    text-decoration: none;
}

.news-card p {
    font-size: 14px;
    color: #555;
}

.news-date {
    font-size: 13px;
    color: #888631;
    margin-bottom: 8px;
}

/* ═══════════════════════════════════════════════════════════════
   NEW HOMEPAGE SECTIONS — PADT Enhancement
   Colors: maroon #4F2C1D | olive-gold #888631 | dark #200c03
   All new sections match existing design system exactly
═══════════════════════════════════════════════════════════════ */

/* ---- Quick Access Strip ---- */
.fp-quick-strip {
    background: #200c03;
    border-top: 2px solid #888631;
    padding: 0;
}

.fp-quick-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.fp-quick-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 28px;
    color: #fff !important;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s, color 0.2s;
}

.fp-quick-link:hover {
    background: #888631;
    color: #fff !important;
}

.fp-ql-icon {
    font-size: 20px;
}

/* ---- Section Headings ---- */
.fp-section-heading {
    text-align: center;
    margin-bottom: 36px;
}

.fp-heading-ornament {
    font-size: 32px;
    margin-bottom: 8px;
}

.fp-section-heading h2 {
    font-size: 26px;
    font-weight: 700;
    color: #4F2C1D;
    margin: 0 0 6px;
    font-family: 'Georgia', serif;
}

.fp-section-heading h2 span {
    font-size: 16px;
    font-weight: 400;
    color: #888631;
    display: block;
    margin-top: 4px;
}

.fp-heading-date {
    font-size: 13px;
    color: #888631;
    font-weight: 600;
    margin-top: 6px;
}

.fp-heading-light h2 {
    color: #fff;
}

.fp-heading-light h2 span {
    color: rgba(255, 255, 255, 0.65);
}

.fp-heading-light .fp-heading-ornament {
    color: #ffd700;
}

/* ---- Darshan Timings Section ---- */
.fp-darshan-section {
    padding: 55px 0 40px;
    background: #faf6ef;
    border-top: 4px solid #888631;
    border-bottom: 4px solid #888631;
}

.fp-darshan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .fp-darshan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .fp-darshan-grid {
        grid-template-columns: 1fr;
    }
}

.fp-darshan-card {
    background: #fff;
    border: 1px solid rgba(79, 44, 29, 0.15);
    border-top: 4px solid rgba(79, 44, 29, 0.15);
    border-radius: 8px;
    padding: 22px 16px;
    text-align: center;
}

.fp-darshan-card.fp-darshan-open {
    border-top-color: #4F2C1D;
    background: linear-gradient(180deg, #fff8f0 0%, #fff 100%);
}

.fp-dc-time {
    font-size: 15px;
    font-weight: 700;
    color: #200c03;
    margin-bottom: 8px;
}

.fp-dc-name {
    font-size: 16px;
    font-weight: 700;
    color: #4F2C1D;
    font-family: 'Noto Serif Devanagari', 'Georgia', serif;
    margin-bottom: 3px;
}

.fp-dc-eng {
    font-size: 12px;
    color: #888631;
    margin-bottom: 12px;
}

.fp-dc-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 20px;
    background: #f0f0f0;
    color: #888;
}

.fp-dc-badge.open {
    background: #e8f5e8;
    color: #2a7a2a;
}

.fp-darshan-note {
    background: #fff8e0;
    border-left: 4px solid #888631;
    padding: 12px 20px;
    font-size: 13px;
    color: #6b5800;
    border-radius: 0 6px 6px 0;
}

.fp-darshan-note a {
    color: #4F2C1D;
    font-weight: 600;
}

/* ---- Statistics Section ---- */
.fp-stats-section {
    background: linear-gradient(135deg, #888631, #4F2C1D);
    padding: 60px 0;
}

.fp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

@media (max-width: 768px) {
    .fp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.fp-stat-item {
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.fp-stat-item:last-child {
    border-right: none;
}

.fp-stat-num {
    font-size: 36px;
    font-weight: 800;
    color: #ffd700;
    display: inline;
    line-height: 1;
}

.fp-stat-suffix {
    font-size: 22px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    display: inline;
    vertical-align: top;
    margin-top: 8px;
}

.fp-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 10px;
    line-height: 1.6;
}

/* ---- Festivals Section ---- */
.fp-festivals-section {
    padding: 65px 0;
    background: #fff;
}

.fp-festivals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media (max-width: 768px) {
    .fp-festivals-grid {
        grid-template-columns: 1fr;
    }
}

.fp-festival-card {
    display: flex;
    gap: 16px;
    background: #faf6ef;
    border: 1px solid rgba(79, 44, 29, 0.15);
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.25s, box-shadow 0.25s;
}

.fp-festival-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(79, 44, 29, 0.12);
}

.fp-festival-featured {
    border-color: #888631;
    border-width: 2px;
    background: linear-gradient(135deg, #fffbec 0%, #faf6ef 100%);
}

.fp-fc-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #4F2C1D;
    color: #fff;
    border-radius: 8px;
    padding: 10px 14px;
    min-width: 60px;
    height: fit-content;
    flex-shrink: 0;
}

.fp-fc-month {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.75;
}

.fp-fc-day {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
}

.fp-fc-year {
    font-size: 10px;
    opacity: 0.65;
}

.fp-fc-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #4F2C1D;
    margin: 0 0 6px;
}

.fp-fc-info p {
    font-size: 13px;
    color: #6b4c3b;
    margin: 0;
    line-height: 1.55;
}

.fp-fc-badge {
    display: inline-block;
    background: #888631;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 2px 10px;
    border-radius: 20px;
    margin-bottom: 6px;
}

/* ---- Visitor Info Section ---- */
.fp-visitor-section {
    padding: 65px 0;
    background: #ffffff;
}

.fp-visitor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .fp-visitor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .fp-visitor-grid {
        grid-template-columns: 1fr;
    }
}

.fp-visitor-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 26px 20px;
    text-align: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.fp-visitor-card:hover {
    background: #f9f9f9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.fp-vc-icon {
    font-size: 34px;
    margin-bottom: 12px;
}

.fp-visitor-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #4F2C1D;
    margin: 0 0 10px;
}

.fp-visitor-card p {
    font-size: 13px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
}

.fp-visitor-card a {
    color: #888631;
    font-weight: 600;
}

.fp-visitor-card strong {
    color: #333333;
}

/* ---- Donation Section ---- */
.fp-donation-section {
    padding: 70px 0;
    background: #200c03;
    position: relative;
    overflow: hidden;
}

.fp-donation-section::before {
    content: 'ॐ';
    position: absolute;
    font-size: 380px;
    color: rgba(136, 134, 49, 0.05);
    right: -40px;
    top: -70px;
    font-family: 'Georgia', serif;
    pointer-events: none;
    line-height: 1;
}

.fp-donation-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .fp-donation-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.fp-donation-om {
    font-size: 22px;
    color: #888631;
    font-family: 'Georgia', serif;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.fp-donation-left h2 {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    font-family: 'Georgia', serif;
}

.fp-donation-nepali {
    font-size: 15px;
    color: #ffd700;
    margin-bottom: 14px;
}

.fp-donation-left p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.7;
}

.fp-donation-bank {
    margin-top: 20px;
    background: rgba(136, 134, 49, 0.15);
    border: 1px solid rgba(136, 134, 49, 0.4);
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 20px;
}

.fp-bank-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #888631;
}

.fp-bank-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-top: 4px;
}

.fp-bank-branch {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

.fp-donation-funds {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.fp-fund-row {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 18px;
}

.fp-fund-ico {
    font-size: 26px;
    flex-shrink: 0;
}

.fp-fund-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.fp-fund-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* ---- Latest News Section ---- */
.fp-news-section {
    padding: 65px 0;
    background: #faf6ef;
}

/* ---- Buttons ---- */
.fp-btn-outline {
    display: inline-block;
    border: 2px solid #888631;
    color: #888631 !important;
    padding: 11px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s;
}

.fp-btn-outline:hover {
    background: #888631;
    color: #fff !important;
}

.fp-btn-gold {
    display: inline-block;
    background: #888631;
    color: #fff !important;
    padding: 13px 30px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background 0.2s;
}

.fp-btn-gold:hover {
    background: #6f6d2b;
}

/* ---- About page: History Timeline ---- */
.fp-timeline {
    position: relative;
    padding: 20px 0 40px;
    max-width: 900px;
    margin: 0 auto;
}

.fp-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #888631 0%, #4F2C1D 100%);
    transform: translateX(-50%);
}

.fp-timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
    position: relative;
}

.fp-timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.fp-timeline-content {
    background: #fff;
    border: 1px solid rgba(79, 44, 29, 0.15);
    border-top: 4px solid #888631;
    border-radius: 8px;
    padding: 20px 24px;
    flex: 1;
    max-width: calc(50% - 36px);
}

.fp-timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #4F2C1D;
    color: #ffd700;
    font-weight: 700;
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 20px;
    white-space: nowrap;
    z-index: 2;
}

.fp-timeline-title {
    font-size: 15px;
    font-weight: 700;
    color: #4F2C1D;
    margin: 0 0 8px;
}

.fp-timeline-desc {
    font-size: 13px;
    color: #6b4c3b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .fp-timeline::before {
        left: 16px;
    }

    .fp-timeline-item,
    .fp-timeline-item:nth-child(even) {
        flex-direction: column;
        padding-left: 44px;
    }

    .fp-timeline-year {
        left: 0;
        transform: none;
        top: 0;
        font-size: 10px;
        padding: 4px 10px;
    }

    .fp-timeline-content {
        max-width: 100%;
    }
}

/* ---- Enhanced Footer columns ---- */
.ttd-footer-container .footer-col h4 {
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ---- Footer Contact Info ---- */
.footer-contact-info p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    margin: 0 0 6px;
    line-height: 1.5;
}