/* --- VARIABLES --- */
:root {
    --navy-blue: #0b1e47;
    --orange: #f06500;
    --text-dark: #222222;
    --text-light: #555555;
    --font-heading: 'Merriweather', serif;
    --font-body: 'Open Sans', sans-serif;
}

/* --- RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: var(--font-body);
    background-color: #f7f7f7;
    color: var(--text-dark);
}
.main-wrapper {
    width: 100%; /* Changed from max-width to 100% */
    background-color: #ffffff;
    /* Removed the margin: 0 auto; so it doesn't float in the center */
}

/* --- HEADER --- */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: #ffffff;
}
.logo-container .main-logo {
    width: 100px;
    border-radius: 50%;
}
.title-container {
    text-align: center;
    flex-grow: 1;
}
.title-container h1 {
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 5px;
}
.location-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.location-divider::before,
.location-divider::after {
    content: "";
    width: 30px;
    height: 2px;
    background-color: #c99b51;
    position: relative;
}
.location-divider::before {
    background: linear-gradient(to right, transparent, #c99b51);
}
.location-divider::after {
    background: linear-gradient(to left, transparent, #c99b51);
}
.location-text {
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-size: 15px;
    font-weight: 700;
}
.contact-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}
.email-link {
    color: var(--navy-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.btn {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}
.btn-donate {
    background-color: var(--orange);
    color: #ffffff;
}
.btn-donate:hover { background-color: #d65a00; }

/* --- NAVIGATION --- */
.main-nav {
    background-color: var(--navy-blue);
    display: flex;
    justify-content: center;
}
.main-nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
}
.main-nav a:hover, .main-nav a.active {
    background-color: var(--orange);
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    /* UPDATE THE URL BELOW TO YOUR FILE NAME */
    background-image: 
        linear-gradient(90deg, #ffffff 40%, rgba(255,255,255,0.8) 55%, rgba(255,255,255,0) 70%),
        url('/background.png'); 
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px 0 80px 50px;
}
.hero-content {
    width: 50%;
    z-index: 2;
}
.mission-text {
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-size: 38px;
    line-height: 1.2;
}
.religion-text {
    font-family: var(--font-heading);
    color: var(--orange);
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 15px;
}
.trident-wrapper {
    margin-bottom: 15px;
}
.hero-description {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 30px;
    max-width: 90%;
    line-height: 1.6;
    font-weight: 500;
}
.hero-buttons {
    display: flex;
    gap: 15px;
}
.btn-explore {
    background-color: var(--navy-blue);
    color: #ffffff;
    border: 1px solid var(--navy-blue);
}
.btn-explore:hover { background-color: #06122e; }
.btn-involved {
    background-color: #ffffff;
    color: var(--orange);
    border: 1px solid var(--orange);
}
.btn-involved:hover { background-color: #fff6f0; }

/* --- STATS STRIP --- */
.stats-wrapper {
    padding: 0 30px;
    margin-top: -55px; /* Pulls the strip up over the hero section */
    position: relative;
    z-index: 10;
    margin-bottom: 40px;
}
.stats-container {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 35px;
    border: 1px solid #f0f0f0;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.stat-icon {
    font-size: 32px;
    color: var(--orange);
}
.stat-info h4 {
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 2px;
}
.stat-info p {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.2;
}
/* --- CORE ACTIVITIES SECTION --- */
.core-activities {
    padding: 20px 50px 70px 50px;
    background-color: #ffffff;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.section-heading h2 {
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-size: 24px;
    font-weight: 700;
}

.heading-line {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.heading-line::before {
    content: "◆";
    color: #c99b51; /* Gold diamond matching the header */
    font-size: 14px;
    margin-right: 10px;
}

.heading-line::after {
    content: "";
    height: 1px;
    background-color: #eaeaea;
    flex-grow: 1;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.activity-card {
    background: #ffffff;
    border: 1px solid #f3e8df; /* Light warm border */
    border-radius: 12px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.activity-card:hover {
    box-shadow: 0 10px 25px rgba(240, 101, 0, 0.08);
    transform: translateY(-5px);
    border-color: #fbd6be;
}

.icon-wrapper {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px auto;
    background-color: #fff6f0; /* Very light orange behind the icon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper i {
    font-size: 28px;
    color: var(--orange);
}

.activity-card h4 {
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
}

.activity-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
    font-weight: 500;
}
/* --- QUOTE BANNER SECTION --- */
.quote-banner {
    background-color: var(--navy-blue);
    padding: 35px 50px;
    width: 100%;
}

.quote-container {
    display: flex;
    justify-content: space-between; /* Pushes icons to edges, text to center */
    align-items: center;
    max-width: 1200px; /* Keeps elements from spreading too far on huge screens */
    margin: 0 auto;
}

.quote-center-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    text-align: center;
}

.quote-text {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.quote-mark {
    color: var(--orange);
    font-size: 20px;
    margin-top: 5px; /* Aligns quotation marks with the top of the text */
}

.right-mark {
    align-self: flex-end; /* Pushes the right quote mark to the bottom of the text */
    margin-top: 0;
    margin-bottom: 5px;
}

.banner-icon-left, 
.banner-icon-right {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}
/* ========================================= */
/* --- ABOUT US PAGE STYLES --- */
/* ========================================= */

.about-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 50px;
    background-color: #ffffff;
    gap: 40px;
}

.about-text-content {
    width: 45%;
}

.about-text-content h2 {
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.trident-divider {
    margin-bottom: 25px;
}

.about-text-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-image-content {
    width: 55%;
}

.ashram-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    object-fit: cover;
    display: block;
}

/* --- ABOUT US CARDS SECTION --- */
.about-cards-section {
    padding: 0 50px 70px 50px;
    background-color: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.about-card {
    background: #ffffff;
    border: 1px solid #f3e8df;
    border-radius: 12px;
    padding: 35px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.about-card:hover {
    box-shadow: 0 8px 25px rgba(240, 101, 0, 0.08);
    transform: translateY(-4px);
    border-color: #fbd6be;
}

.about-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    background-color: #fff6f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-icon i {
    font-size: 28px;
    color: var(--orange);
}

.about-card h4 {
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-card p {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 500;
}
/* ========================================= */
/* --- OUR WORK PAGE STYLES --- */
/* ========================================= */

.our-work-section {
    padding: 50px 40px;
    background-color: #ffffff;
}

.work-cards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.work-card {
    background: #ffffff;
    border: 1px solid #f0e4db;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: all 0.3s ease;
}

.work-card:hover {
    box-shadow: 0 10px 25px rgba(240, 101, 0, 0.08);
    transform: translateY(-4px);
}

.work-img-wrapper {
    width: 100%;
    height: 140px;
    overflow: hidden;
    margin-bottom: 15px;
}

.work-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.work-card:hover .work-img-wrapper img {
    transform: scale(1.05);
}

.work-card h4 {
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    padding: 0 10px;
}

.work-card p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
    padding: 0 12px;
    font-weight: 500;
}

/* --- PILLARS STRIP --- */
.work-pillars-strip {
    background-color: var(--navy-blue);
    padding: 40px 40px;
}

.pillars-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1250px;
    margin: 0 auto;
}

.pillar-item {
    text-align: center;
}

.pillar-icon {
    font-size: 28px;
    color: var(--orange);
    margin-bottom: 12px;
}

.pillar-item h5 {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.pillar-item p {
    font-size: 12.5px;
    color: #cfd8dc;
    line-height: 1.4;
}
/* ========================================= */
/* --- INITIATIVES PAGE STYLES (UPDATED) --- */
/* ========================================= */

.initiatives-section {
    padding: 40px 40px 50px 40px;
    background-color: #ffffff;
}

.initiatives-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.initiative-card {
    background: #ffffff;
    border: 1px solid #f0e4db;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    text-align: center;
    padding-bottom: 20px;
}

.initiative-card:hover {
    box-shadow: 0 10px 25px rgba(240, 101, 0, 0.08);
    transform: translateY(-4px);
}

.initiative-img-wrapper {
    width: 100%;
    height: 140px;
    overflow: hidden;
    margin-bottom: 15px;
}

.initiative-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.initiative-card:hover .initiative-img-wrapper img {
    transform: scale(1.05);
}

.initiative-content h4 {
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    padding: 0 10px;
}

.initiative-content p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.5;
    padding: 0 12px;
    font-weight: 500;
}

/* --- PROCESS FLOW STRIP STYLES --- */
.process-flow-strip {
    background-color: var(--navy-blue);
    padding: 25px 40px;
}

.process-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    background-color: #ffffff;
    border: 1px solid #c99b51;
    border-radius: 6px;
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.process-step i {
    color: var(--orange);
    font-size: 18px;
}

.process-step span {
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-size: 14px;
    font-weight: 700;
}

.process-arrow {
    color: var(--orange);
    font-size: 20px;
}
/* ========================================= */
/* --- NEWS & EVENTS SPLIT PAGE STYLES --- */
/* ========================================= */

.news-events-split-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    padding: 40px 40px 60px 40px;
    background-color: #ffffff;
}

.column-title {
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f3e8df;
}

/* --- Left Column: News Stack --- */
.news-list-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-list-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    border: 1px solid #f3e8df;
    border-radius: 8px;
    padding: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.01);
}

.news-list-card:hover {
    box-shadow: 0 6px 15px rgba(240, 101, 0, 0.06);
    border-color: #fbd6be;
}

.news-list-card img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.news-list-info h4 {
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}

.news-date {
    font-size: 11.5px;
    color: var(--text-light);
    font-weight: 600;
}

/* --- Right Column: Events Stack --- */
.events-list-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-box-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fffcf9;
    border: 1px solid #f3e8df;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s ease;
}

.event-box-card:hover {
    box-shadow: 0 6px 15px rgba(240, 101, 0, 0.06);
    border-color: #fbd6be;
}

.event-date-badge {
    background-color: #fff3eb;
    border: 1px solid #fbd6be;
    border-radius: 6px;
    padding: 8px 12px;
    text-align: center;
    min-width: 55px;
    flex-shrink: 0;
}

.badge-day {
    display: block;
    font-family: var(--font-heading);
    color: var(--orange);
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

.badge-month {
    display: block;
    font-size: 11px;
    color: var(--navy-blue);
    font-weight: 700;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.event-box-info h4 {
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-size: 14.5px;
    font-weight: 700;
    margin-bottom: 5px;
}

.event-box-info p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 2px;
    line-height: 1.4;
}

.events-btn-wrapper {
    margin-top: 5px;
    text-align: center;
}

.btn-view-events {
    background-color: var(--orange);
    color: #ffffff;
    justify-content: center;
    width: 100%;
    padding: 12px;
    font-size: 14px;
}

.btn-view-events:hover {
    background-color: #d65a00;
}
/* ========================================= */
/* --- GALLERY PAGE STYLES (UPDATED) --- */
/* ========================================= */

.gallery-section {
    padding: 40px 40px 60px 40px;
    background-color: #ffffff;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: #fcf8f5;
    border: 1px solid #f3e8df;
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--orange);
    color: #ffffff;
    border-color: var(--orange);
    box-shadow: 0 4px 10px rgba(240, 101, 0, 0.2);
}

.gallery-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-img-box {
    background: #ffffff;
    border: 1px solid #f3e8df;
    border-radius: 8px;
    overflow: hidden;
    height: 160px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.gallery-img-box:hover {
    box-shadow: 0 8px 20px rgba(240, 101, 0, 0.1);
    transform: translateY(-4px);
    border-color: #fbd6be;
}

.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-img-box:hover img {
    transform: scale(1.08);
}

.gallery-btn-wrapper {
    text-align: center;
    margin-top: 10px;
}

.btn-view-more {
    background-color: var(--orange);
    color: #ffffff;
    padding: 12px 35px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(240, 101, 0, 0.2);
    transition: background-color 0.3s ease;
}

.btn-view-more:hover {
    background-color: #d65a00;
}
/* ========================================= */
/* --- GET INVOLVED PAGE STYLES --- */
/* ========================================= */

.get-involved-section {
    padding: 50px 40px;
    background-color: #ffffff;
}

.involved-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.involved-card {
    background: #ffffff;
    border: 1px solid #f0e4db;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.involved-card:hover {
    box-shadow: 0 10px 25px rgba(240, 101, 0, 0.08);
    transform: translateY(-4px);
    border-color: #fbd6be;
}

.involved-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px auto;
    background-color: #fff6f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.involved-icon i {
    font-size: 30px;
    color: var(--orange);
}

.involved-card h4 {
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
}

.involved-card p {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 500;
}

.btn-involved-action {
    display: inline-block;
    background-color: var(--navy-blue);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-involved-action:hover {
    background-color: var(--orange);
}
/* ========================================= */
/* --- CONTACT US --- */
/* ========================================= */

.contact-section {
    padding: 50px 40px;
    background-color: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-info-box,
.contact-form-box {
    background: #fffcf9;
    border: 1px solid #f0e4db;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.contact-info-box h3,
.contact-form-box h3 {
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-desc {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-details-list {
    list-style: none;
    padding: 0;
}

.contact-details-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-details-list i {
    color: var(--orange);
    font-size: 18px;
    margin-top: 3px;
}

.contact-details-list strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-size: 14px;
    margin-bottom: 2px;
}

.contact-details-list span {
    font-size: 13px;
    color: var(--text-light);
}

/* Contact Form */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #e2d2c8;
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    font-size: 13.5px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--orange);
}

.btn-submit-message {
    background-color: var(--orange);
    color: #ffffff;
    width: 100%;
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit-message:hover {
    background-color: #d65a00;
}

/* ========================================= */
/* --- DONATE / SUPPORT PAGE STYLES --- */
/* ========================================= */

.support-section {
    padding: 40px;
    background-color: #ffffff;
}

.support-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.5fr 1fr;
    gap: 30px;
    align-items: start;
}

/* Left Column: You Can Help */
.support-col-left h3 {
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.help-list {
    list-style: none;
    padding: 0;
}

.help-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.help-icon {
    width: 40px;
    height: 40px;
    background-color: #fff4ee;
    color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.help-list strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-size: 14.5px;
    font-weight: 700;
    margin-bottom: 2px;
}

.help-list p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.4;
}

/* Center Column */
.support-col-center {
    text-align: center;
    padding-top: 10px;
}

.support-col-center h2 {
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.support-col-center p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.center-image-wrapper {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

.center-image-wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* Right Column: Donation QR Card */
.donation-card {
    background: #fffcf9;
    border: 1px solid #f2e2d5;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.donation-card h4 {
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.qr-box {
    width: 160px;
    height: 160px;
    margin: 0 auto 12px auto;
    background: #ffffff;
    padding: 8px;
    border: 1px solid #e2d2c8;
    border-radius: 8px;
}

.qr-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.upi-id-text {
    display: block;
    font-family: var(--font-heading);
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 600;
}

.btn-donate-action {
    display: block;
    background-color: var(--orange);
    color: #ffffff;
    padding: 12px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(240, 101, 0, 0.2);
}

.btn-donate-action:hover {
    background-color: #d65a00;
}
/* ========================================= */
/* --- FOOTER STYLES --- */
/* ========================================= */

.site-footer {
    background-color: #1a2530; /* Dark navy/slate theme */
    color: #ffffff;
    padding: 40px 20px 20px 20px;
    margin-top: 50px;
    font-family: var(--font-body);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h3, 
.footer-col h4 {
    font-family: var(--font-heading);
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-col h3 {
    font-size: 18px;
}

.footer-col h4 {
    font-size: 16px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
    padding-bottom: 4px;
}

.footer-col p {
    font-size: 14px;
    color: #b0c4de;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: #b0c4de;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 13px;
    color: #8fa4c0;
}
/* ========================================= */
/* --- ULTRA-SPACIOUS TOP HEADER --- */
/* ========================================= */

.top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
}

.contact-actions {
    display: flex;
    align-items: center;
    gap: 45px; /* Huge gap between items */
    margin-left: auto; /* Pushes the entire block wide to the right, creating massive space on the left */
}

.lang-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff8f5;
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid #f0e2dc;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.lang-wrapper i {
    color: var(--orange);
    font-size: 19px;
}

#google_translate_element {
    display: inline-block;
}

/* Extra large, highly clickable dropdown menu */
.goog-te-combo {
    width: 190px; /* Even wider box */
    padding: 10px 16px; /* Extra tall click area */
    border-radius: 6px;
    border: 1.5px solid #dcdcdc;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    background-color: #ffffff;
    color: var(--navy-blue);
    outline: none;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.goog-te-combo:hover {
    border-color: var(--orange);
}

/* Completely hide Google's default icons, frames, and branding text */
.goog-te-gadget img,
.goog-logo-link, 
.goog-te-gadget span,
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

.goog-te-gadget {
    color: transparent !important;
    font-size: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

body {
    top: 0px !important;
}
/* ========================================= */
/* --- DEVELOPER CREDIT STYLING --- */
/* ========================================= */

.developer-credit {
    margin-top: 8px;
    font-size: 13px;
    color: #aab8c2; /* Soft muted text color that blends into the dark footer */
    font-family: var(--font-body);
}

.developer-credit .heart {
    color: #ff4d4d; /* Bright red color for the heart */
    display: inline-block;
    animation: heartbeat 1.5s infinite ease-in-out; /* Optional subtle pulsing heartbeat effect */
}

/* Optional pulse animation for the heart */
@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}
/* ========================================= */
/* --- CENTER HEADER TITLE & SUBTITLE --- */
/* ========================================= */

.top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
}

/* This forces the title container to center itself precisely in the header */
.title-container {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title-container h1 {
    text-align: center;
    margin: 0;
}

/* Centers the location divider line underneath the title */
.location-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    width: 100%;
}

/* ========================================= */
/* --- BACKEND FEEDBACK UTILITIES --- */
/* ========================================= */

.site-toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 3000;
    max-width: min(360px, calc(100vw - 44px));
    background: var(--navy-blue);
    color: #ffffff;
    border-left: 4px solid var(--orange);
    border-radius: 6px;
    padding: 13px 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    font-size: 13.5px;
    line-height: 1.45;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-toast.visible {
    opacity: 1;
    transform: translateY(0);
}

.site-toast.error {
    border-left-color: #d93025;
}

.site-modal {
    position: fixed;
    inset: 0;
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(11, 30, 71, 0.58);
}

.site-modal__panel {
    width: min(520px, 100%);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: #fffcf9;
    border: 1px solid #f0e4db;
    border-radius: 10px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    position: relative;
}

.site-modal__panel h3 {
    font-family: var(--font-heading);
    color: var(--navy-blue);
    font-size: 20px;
    margin-bottom: 18px;
}

.site-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: #fff4ee;
    color: var(--navy-blue);
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
}

.site-modal__close:hover {
    background: var(--orange);
    color: #ffffff;
}

.btn-submit-message:disabled,
.btn-donate-action:disabled,
.btn-involved-action:disabled {
    opacity: 0.68;
    cursor: not-allowed;
}
