/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-orange: #e67e22;
    --primary-navy: #2c3e50;
    --light-orange: #fdf2e9;
    --dark-blue: #34495e;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f4;
    --gray-600: #6c757d;
    --success-green: #27ae60;
    --error-red: #e74c3c;
}

/* Header Styles */
.header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-container {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-title-hindi {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
}

.logo-title-english {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--primary-navy);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-orange);
}

/* Navigation Member Login */
.member-login-link {
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.member-login-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.member-login-mobile {
    color: white !important;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.member-login-mobile:hover {
    color: var(--primary-orange) !important;
}

.nav-cta {
    background: var(--primary-orange);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.nav-cta:hover {
    background: #d35400;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-navy);
    cursor: pointer;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding-bottom: 1rem;
    gap: 0.5rem;
}

.nav-link-mobile {
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--primary-navy);
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.nav-link-mobile:hover {
    background: var(--light-orange);
}

.nav-cta-mobile {
    background: var(--primary-orange);
    color: white !important;
}

.nav-cta-mobile:hover {
    background: #d35400 !important;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-blue) 100%);
    color: white;
    padding: 10rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><circle cx="200" cy="200" r="100" fill="white"/><circle cx="800" cy="300" r="80" fill="white"/><circle cx="300" cy="800" r="60" fill="white"/><circle cx="900" cy="700" r="40" fill="white"/></svg>');
    pointer-events: none;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-logo {
    margin-bottom: 2rem;
    position: relative;
}

.hero-logo-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 4px solid var(--primary-orange);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.hero-logo-img:hover {
    transform: scale(1.05);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(45deg, #ffffff, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: rgba(255,255,255,0.95);
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.info-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-orange), transparent, var(--primary-orange));
    border-radius: 1rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.info-card:hover::before {
    opacity: 1;
}

.info-icon {
    color: var(--primary-orange);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.info-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-value {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    font-weight: 500;
}

/* Add CTA Section to Hero */
.hero-cta {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 180px;
    justify-content: center;
}

.hero-btn-primary {
    background: var(--primary-orange);
    color: white;
    border: 2px solid var(--primary-orange);
}

.hero-btn-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 126, 34, 0.4);
}

.hero-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.hero-btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), #f39c12);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--gray-50) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--primary-orange), transparent);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.objective-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--light-orange) 100%);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(231, 126, 34, 0.1);
    position: relative;
    overflow: hidden;
}

.objective-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(231, 126, 34, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.objective-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(20%, 20%);
}

.objective-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--primary-orange);
}

.objective-icon {
    color: var(--primary-orange);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.objective-card:hover .objective-icon {
    transform: scale(1.1) rotate(5deg);
}

.objective-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.objective-desc {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* Committee Section */
.committee {
    padding: 5rem 0;
    background: var(--gray-50);
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.member-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.member-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.member-name {
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
}

.member-position {
    color: var(--primary-orange);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.member-dob {
    font-size: 0.875rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* News Section */
.news {
    padding: 5rem 0;
    background: white;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.news-card {
    background: var(--light-orange);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.news-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.news-title {
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
}

.news-desc {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.news-status {
    font-size: 0.75rem;
    color: var(--primary-orange);
    font-weight: 500;
}

/* Payments Section */
.payments {
    padding: 5rem 0;
    background: var(--gray-50);
}

.payments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.payment-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.payment-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-icon {
    color: var(--primary-orange);
    font-size: 1.5rem;
}

.payment-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-navy);
}

.bank-details {
    margin-bottom: 1.5rem;
}

.bank-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.bank-detail:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--gray-600);
    font-weight: 500;
}

.detail-value {
    color: var(--primary-navy);
    font-weight: 600;
}

.payment-note {
    background: var(--light-orange);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.payment-note i {
    color: var(--primary-orange);
    margin-top: 0.125rem;
}

.payment-note p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.qr-section {
    text-align: center;
    margin-bottom: 2rem;
}

.qr-code {
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
    background: var(--gray-100);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.qr-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.upi-id {
    color: var(--primary-navy);
    font-weight: 600;
}

.payment-methods {
    margin-bottom: 1.5rem;
}

.payment-method {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
}

.payment-method:last-child {
    margin-bottom: 0;
}

.method-icon {
    width: 32px;
    height: 32px;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    margin-right: 0.75rem;
}

.method-icon.gpay {
    background: #4285f4;
}

.method-icon.phonepe {
    background: #6b46c1;
}

.method-icon.neft {
    background: #2563eb;
}

.method-name {
    font-weight: 500;
    flex-grow: 1;
}

.method-id {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.security-note {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.security-note i {
    color: var(--success-green);
    margin-top: 0.125rem;
}

.security-note p {
    font-size: 0.875rem;
    color: #155724;
    line-height: 1.5;
}

/* Member Services Section */
.member-services {
    padding: 5rem 0;
    background: var(--primary-navy);
    color: white;
    text-align: center;
}

.member-services .section-title {
    color: white;
}

.member-services .section-subtitle {
    color: rgba(255,255,255,0.8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    transition: background-color 0.3s ease;
}

.service-card:hover {
    background: rgba(255,255,255,0.2);
}

.service-icon {
    <!-- color: var(--primary-orange); --> 
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

.member-login {
    text-align: center;
}

.login-btn {
    background: var(--primary-orange);
    color: white;
    border: none;
    padding: 0.70rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.login-btn:hover {
    background: #d35400;
}

.login-note {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: var(--light-orange);
    border-radius: 1rem;
    padding: 2rem;
}

.contact-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    color: var(--primary-orange);
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

.contact-label {
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
}

.contact-value {
    color: var(--gray-600);
}

.emergency-card {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 1rem;
    padding: 1.5rem;
}

.emergency-title {
    font-size: 1.125rem;
    color: #721c24;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.emergency-details {
    color: #721c24;
}

.emergency-details p {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form-container {
    background: var(--gray-50);
    border-radius: 1rem;
    padding: 2rem;
}

.form-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.75rem;
    border: 1px solid var(--gray-100);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit-btn {
    background: var(--primary-orange);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit-btn:hover {
    background: #d35400;
}

/* Footer */
.footer {
    background: var(--primary-navy);
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.society-info {
    max-width: none;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.footer-title-hindi {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.footer-title-english {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

.footer-desc {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-reg {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: rgba(255,255,255,0.8);
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-orange);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .society-info {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-mobile.active {
        display: flex;
    }
    
    .hero {
        padding: 8rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        background: linear-gradient(45deg, #ffffff, #f39c12);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-logo-img {
        width: 80px;
        height: 80px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .logo-container {
        width: 40px;
        height: 40px;
    }
    
    .logo-title-hindi {
        font-size: 1rem;
    }
    
    .logo-title-english {
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .objective-card {
        padding: 2rem;
    }
    
    .committee-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .payments-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-info {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .bank-detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .payment-method {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth Scrolling Offset for Fixed Header */
section {
    scroll-margin-top: 80px;
}