/* Base Styles & Variables */
:root {
    --primary-gold: #D4AF37;
    --deep-red: #8B0000;
    --saffron: #FF9933;
    --white: #FFFFFF;
    --off-white: #F9F7F2;
    --light-beige: #F5F0E6;
    --dark-brown: #3C2F2F;
    --text-color: #333333;
    --light-text: #666666;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-devanagari: 'Noto Sans Devanagari', 'Segoe UI', sans-serif;
    --font-hindi: 'Hind', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--off-white);
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    color: var(--dark-brown);
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 3rem;
    color: var(--deep-red);
}

h2 {
    font-size: 2.4rem;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 2rem;
}

h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--saffron));
}

h3 {
    font-size: 1.8rem;
    color: var(--deep-red);
}

.hindi-text, .gujarati-text {
    font-family: var(--font-hindi);
}

.devnagari-text {
    font-family: var(--font-devanagari);
    font-weight: 500;
}

.sanskrit-text {
    font-family: var(--font-devanagari);
    color: var(#f0e4e4);
    font-size: 1.4rem;
    font-weight: bold;
}

.section-title-center {
    text-align: center;
}

.section-title-center:after {
    left: 50%;
    transform: translateX(-50%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--primary-gold), #B8860B);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, #B8860B, var(--primary-gold));
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: white;
}

.text-center {
    text-align: center;
}

.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2.5rem; }
.mt-4 { margin-top: 2.5rem; }

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--primary-gold);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-icon {
    width: 57px;
    height: 57px;
    background: linear-gradient(135deg, var(--primary-gold), var(--saffron));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-red);
    font-family: var(--font-serif);
    line-height: 1.2;
}

.logo-subtext {
    font-size: 0.85rem;
    color: var(--saffron);
    display: block;
    letter-spacing: 0.5px;
    font-family: var(--font-devanagari);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark-brown);
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

nav ul li a:hover {
    color: var(--saffron);
}

nav ul li a.active {
    color: var(--saffron);
}

nav ul li a.active:after {
    width: 100%;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--deep-red);
    cursor: pointer;
    z-index: 1001;
}

/* Hero Section */
.hero {
    background: linear-gradient(
        rgba(60, 47, 47, 0.85),
        rgba(60, 47, 47, 0.9)
    ),
    url("https://upload.wikimedia.org/wikipedia/commons/4/4a/1_Jagganath_temple_Ranchi_Jharkhand.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #fff;
    text-align: center;

    min-height:140vh;          /* auto resize */
    padding: 0 10px;            /* mobile safe padding */

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    overflow: hidden;
}


.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.trust-names {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.trust-name {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-subtitle {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #f0f0f0;
    font-weight: 300;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Blessing Banner */
.blessing-banner {
    background: linear-gradient(135deg, var(--deep-red), #5a0000);
    color: white;
    padding: 30px 0;
    text-align: center;
    font-size: 1.3rem;
    font-family: var(--font-devanagari);
    font-weight: 600;
    letter-spacing: 0.5px;
    border-bottom: 3px solid var(--primary-gold);
}

/* Features Section */
.features {
    background-color: var(--white);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.publications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.publication-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.publication-card:hover {
    transform: translateY(-6px);
}

/* IMAGE SIZE CONTROL */
.pub-image {
    width: 100%;
    height: 260px;          /* FIXED book cover height */
    overflow: hidden;
    background: #f4f4f4;
}

.pub-image img {
    width: 100%;
    height: 120%;
    object-fit: cover;      /* No distortion */
    object-position: center;
    display: block;
}

/* CONTENT */
.pub-content {
    padding: 20px;
    text-align: center;
}
.copyright a {
    color: #e4cdcd;
    font-weight: 600;
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

.pub-category {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #a24c4c;
    margin-bottom: 8px;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 45px 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    border-top: 5px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
    display: inline-block;
    width: 90px;
    height: 90px;
    line-height: 90px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.feature-card h3 {
    margin-bottom: 20px;
    color: var(--dark-brown);
    font-size: 1.8rem;
}

.feature-card p {
    color: var(--light-text);
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Leadership Section */
.leadership {
    background-color: var(--white);
    position: relative;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.leader-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    border-top: 5px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.leader-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.leader-title {
    color: var(--saffron);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leader-name {
    font-size: 1.8rem;
    color: var(--dark-brown);
    margin-bottom: 15px;
    font-family: var(--font-devanagari);
}

.leader-role {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* SDSC Section */
.sdsc {
    background-color: var(--light-beige);
    position: relative;
}

.sdsc-intro {
    background: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-left: 5px solid var(--deep-red);
}

.sdsc-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.sdsc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.sdsc-member {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--saffron);
    transition: all 0.3s ease;
}

.sdsc-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.member-designation {
    color: var(--deep-red);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

.member-name {
    font-size: 1.4rem;
    color: var(--dark-brown);
    margin-bottom: 10px;
    font-family: var(--font-devanagari);
}

.member-role {
    color: var(--light-text);
    font-size: 1rem;
}

/* Committees Section */
.committees {
    background-color: var(--white);
}

.committees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.committee-card {
    background: white;
    border-radius: 12px;
    padding: 40px 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-align: center;
    border-top: 5px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.committee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.committee-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 25px;
}

.committee-card h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.committee-card p {
    color: var(--light-text);
    margin-bottom: 25px;
    line-height: 1.7;
    flex-grow: 1;
}

.committee-details {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.detail-item {
    display: flex;
    margin-bottom: 15px;
    text-align: left;
}

.detail-icon {
    color: var(--primary-gold);
    margin-right: 15px;
    font-size: 1.2rem;
    min-width: 30px;
}

/* Publications Section */
.publications {
    background-color: var(--light-beige);
}

.publications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.publication-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.publication-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.pub-image {
    height: 200px;
    background: linear-gradient(135deg, #ddd, #eee);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-red);
    font-size: 4rem;
}

.pub-content {
    padding: 30px;
}

.pub-category {
    display: inline-block;
    background-color: var(--saffron);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Media & Events */
.media-section {
    background-color: var(--white);
}

.media-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #ddd;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 30px;
    background: none;
    border: none;
    font-weight: 600;
    color: var(--dark-brown);
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.tab-btn.active {
    color: var(--deep-red);
}

.tab-btn.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--saffron);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.event-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--saffron);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.event-date {
    display: flex;
    align-items: center;
    color: var(--deep-red);
    margin-bottom: 20px;
    font-weight: 600;
}

.event-date i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.news-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-top: 5px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.news-date {
    color: var(--saffron);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--light-beige);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark-brown);
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.donate-box {
    background: linear-gradient(135deg, var(--deep-red), #5a0000);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.donate-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.donate-amount {
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.donate-amount:hover, .donate-amount.active {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-gold);
}

.donate-amount span {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-gold);
}

/* Offices Section */
.offices {
    background-color: var(--light-beige);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.office-card {
    background: white;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 5px solid var(--saffron);
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.office-title {
    color: var(--deep-red);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.office-title i {
    color: var(--primary-gold);
}

.office-details {
    color: var(--light-text);
    line-height: 1.8;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--dark-brown), #2a2222);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column h3 {
    color: var(--primary-gold);
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--saffron);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

.contact-info li i {
    color: var(--primary-gold);
    margin-right: 12px;
    margin-top: 5px;
    font-size: 1.1rem;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo {
    justify-content: flex-start;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon:hover {
    background-color: var(--primary-gold);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.95rem;
}

/* Temple Registry */
.temple-registry {
    background-color: var(--white);
}

.registry-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.1rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero {
        padding: 180px 0 100px;
    }
    
    .section-padding {
        padding: 80px 0;
    }
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        z-index: 999;
    }
    
    nav ul.active {
        right: 0;
    }
    
    nav ul li {
        margin: 0 0 25px 0;
        width: 100%;
    }
    
    nav ul li a {
        font-size: 1.1rem;
        padding: 10px 0;
        display: block;
        width: 100%;
    }
    
    .header-container {
        padding: 15px 20px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .trust-names {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-name {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 1.9rem;
    }
    
    .hero {
        padding: 160px 0 80px;
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .leader-card, .sdsc-intro, .committee-card, .office-card, .contact-form, .donate-box {
        padding: 30px 25px;
    }
    
    .leadership-grid, .committees-grid, .sdsc-grid, .offices-grid, .publications-grid, .events-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .media-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    .hero h1 {
        font-size: 1.9rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .blessing-banner {
        font-size: 1.1rem;
        padding: 20px 0;
    }
}
.receipt-note{
    background:#d4af37;
    border:2px solid #ff9933;
    padding:15px;
    margin-top:15px;
    border-radius:8px;
    font-size:15px;
    text-align:center;
    box-shadow:0 3px 10px rgba(0,0,0,0.08);
}

.whatsapp-link{
    display:inline-block;
    margin-top:8px;
    padding:8px 14px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    font-weight:bold;
    border-radius:6px;
}