/* General Styles */
body {
    font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;
    margin: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* New Header Styles */
.site-header {
    background: linear-gradient(to right, #FF9933, #FFFFFF, #138808);
    color: #000;
    padding: 10px 20px;
    position: relative;
    border-bottom: 5px solid #000080;
}

.language-switcher {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 10;
}

.language-switcher a {
    color: #000080;
    background-color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 5px 10px;
    border: 1px solid #000080;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.language-switcher a:hover {
    background-color: #000080;
    color: white;
}

.leader-images {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 10px;
}

.leader-images img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #000080;
    object-fit: cover;
}

.leader-images .ahilya-bai-img {
    width: 60px; /* Larger size */
    height: 60px;
    border-width: 3px;
}

.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 10px 0;
    gap: 20px;
}

.header-side-members {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.side-member-card {
    text-align: center;
    font-size: 0.9em;
}

.side-member-card img {
    width: 80px;
    height: auto;
    margin-bottom:10px;
}
.side-member-card p {
    margin: 0;
    font-weight: 500;
    color: #000;
}

.header-text {
    flex-grow: 1;
}

.main-title {
    color: #000080; /* Blue color for the text */
    font-size: 2.8em;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.sub-title {
    font-size: 1.2em;
    font-weight: bold;
    margin: 5px 0;
    color: #333;
}

.title-hr {
    border: 0;
    height: 2px;
    background-color: #000080;
    margin: 10px auto;
    width: 80%;
}

.contact-info, .address {
    margin: 5px 0;
    font-size: 1em;
    color: #000;
    font-weight: 500;
}

.header-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 20px;
}

.header-logo {
    width: 150px; /* Increased logo size */
    height: auto;
}

.reg-text {
    margin-top: 5px;
    font-weight: bold;
    color: #000;
}

/* Main Navigation */
.main-navbar {
    background-color: #000080;
    padding: 0 20px;
    position: relative;
    z-index: 1000;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: rgb(246, 246, 247);
    text-decoration: none;
    padding: 15px 10px;
    display: block;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    background-color: #335ce3;
    color: #fbffff;
}

.nav-toggle {
    display: none;
    display: none; /* Hidden by default */
    color: white;
    font-size: 2em;
    cursor: pointer;
    text-align: left;
}

/* Marquee */
.marquee {
    width: 100%;
    background-color: white;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.marquee p {
    display: inline-block;
    padding-left: 100%;
    margin: 0;
    animation: marquee-scroll 45s linear infinite;
}

.marquee a {
    color: #0909b0; /* Blue color for links */
    text-decoration: none;
    font-weight: 600;
}

.marquee a:hover {
    text-decoration: underline;
}

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Main Content */
main {
    padding: 20px 0;
}

.welcome-section, .about-section, .contact-form-section, .join-form-section {
    text-align: center;
    padding: 20px 0;
}

.btn {
    background-color: #088514; /* Blue */
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.btn:hover {
    background-color: #030396; /* Darker blue */
    color: white;
}

/* Slider Section */
.image-slider {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.slider-container {
    position: relative;
    height: 400px; /* Fixed height for slider */
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    z-index: 1;
    transform: translateX(0);
}

.slide.slide-right {
    transform: translateX(100%);
}

.slide.slide-left {
    transform: translateX(-100%);
}

.slide.active {
    opacity: 1;
    z-index: 2;
    transform: translateX(0);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 15px;
    text-align: center;
}

.slide-caption h2 {
    margin: 0 0 5px 0;
    color: white;
}

.slide-caption p {
    margin: 0;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 3;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.slider-nav:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 15px;
}

.next {
    right: 15px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: white;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    font-size: 1.8em;
    z-index: 100;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}
.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev-btn { left: 15px; }
.next-btn { right: 15px; }

/* Page Header */
.page-header {
    background-color: #f5f5f5;
    padding: 30px 0;
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
}

.page-header h1 {
    color: #000080;
    margin-bottom: 10px;
    font-size: 2.5em;
}

.page-header p {
    color: #666;
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

/* News Section */
.news-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover img {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-content h3 {
    margin: 0 0 12px 0;
    color: #000080;
    font-size: 1.4em;
    line-height: 1.3;
    min-height: 3.6em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-date {
    color: #161514;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.news-date:before {
    content: '\f073';
    font-family: 'Font Awesome 5 Free';
    margin-right: 8px;
    font-weight: 900;
}

.news-content p {
    color: #1b1a1a;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    color: #1212e4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    width: fit-content;
    padding: 8px 0;
    border-bottom: 2px solid #FF9933;
}

.read-more:hover {
    color: #060883;
    text-decoration: none;
}

.read-more:after {
    content: '\f061';
    font-family: 'Font Awesome 5 Free';
    margin-left: 8px;
    font-weight: 900;
    font-size: 0.9em;
    transition: transform 0.3s ease;
}

.read-more:hover:after {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .news-container {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .news-card img {
        height: 200px;
    }
    
    .news-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .news-section {
        padding: 40px 15px;
    }
    
    .news-card img {
        height: 180px;
    }
    
    .news-content h3 {
        font-size: 1.2em;
    }
}

/* Gallery Section */
.gallery-section {
    padding: 20px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Smaller columns */
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 200px; /* Fixed height */
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes the image cover the area without distortion */
    display: block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.03);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border: 2px solid white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.lightbox-close:hover {
    color: #bbb;
}

.card-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background: rgb(252, 251, 251);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 10px;
    text-align: left;
    box-sizing: border-box;
}

.news-section .card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

footer {
    text-align: center;
    padding: 20px 0;
    background: linear-gradient(to right, #f49535, #e6cccc, #1e9813);
    color: rgb(0, 0, 0);
    margin-top: 30px;
    width: 100%;
    clear: both;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
    padding: 0 15px;
}

.footer-section h3 {
    color: rgb(4, 4, 4);
    margin-bottom: 15px;
    font-size: 1.2em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #0c0b0b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white; /* Keep text white */
    text-decoration: underline;
    background-color: rgba(0, 0, 128, 0.5); /* Semi-transparent navy blue */
    padding: 2px 5px;
    border-radius: 3px;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 15px;
}

.social-icons a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    transform: translateY(-5px);
}

.social-icons a .fa-facebook {
    color: #1877F2; /* Facebook blue */
}

.social-icons a .fa-instagram {
    color: #E4405F; /* Instagram pink/purple */
}

.social-icons a .fa-youtube {
    color: #FF0000; /* YouTube red */
}

.social-icons a .fa-twitter {
    color: #1DA1F2; /* Twitter blue */
}

/* Footer Copyright and Contact */
.copyright {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 30px;
}

.copyright-text {
    font-size: 1.1em;
    color: #0e0d0d;
    margin-bottom: 10px;
}

.website-offer {
    font-size: 1.2em;
    color: #0a0a0a;
    margin: 15px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

/* Call to Action Section */
 /* .cta-container {
    margin: 20px 0;
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, rgba(9, 16, 224, 0.1), rgba(12, 181, 105, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 500px;
    margin: 15px auto 0;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FF9933, #FFD700, #FF9933);
    z-index: -1;
    border-radius: 12px;
    opacity: 0.3;
    background-size: 200% 200%;
    animation: gradientBG 3s ease infinite;
}*/

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cta-text {
    color: #0e0e0d;
    font-size: 1.1em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cta-text i {
    font-size: 1.3em;
    color: #6f0707;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding: 5px 0;
}

.cta-arrow {
    color: #c6127b;
    margin-right: 10px;
    animation: pointRight 1.5s ease-in-out infinite;
    display: flex;
    align-items: center;
}

@keyframes pointRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white !important;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(18, 140, 126, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.whatsapp-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.whatsapp-cta:hover::before {
    left: 100%;
}

.whatsapp-cta i {
    font-size: 1.5em;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.whatsapp-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 140, 126, 0.4);
}

.whatsapp-cta:hover i {
    transform: scale(1.1);
}

.whatsapp-cta span {
    position: relative;
    z-index: 1;
}

/* 360 Degree Rotation */
 /* @keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Pulsing Effect */
/* @keyframes pulse {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 1;
    }
}

/* Hover Effects */
/*.arrow-animation:hover i {
    animation: rotate360 1s linear infinite, pulseGlow 0.8s ease-in-out infinite;
    color: #FFC000;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.9);
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.8));
}

@keyframes pulseGlow {
    0%, 100% {
        transform: rotate(0deg) scale(1.1);
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.9);
    }
    50% {
        transform: rotate(180deg) scale(1.4);
        text-shadow: 0 0 25px rgba(255, 215, 0, 1), 0 0 35px rgba(255, 215, 0, 0.7);
    }
}

/* Add a subtle outer circle on hover */
/*.arrow-animation::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    animation: circlePulse 2s ease-out infinite;
    opacity: 0;
    transition: all 0.3s ease;
}

/*.arrow-animation:hover::before {
    opacity: 1;
    animation: circlePulse 1.5s ease-out infinite;
}

@keyframes circlePulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* WhatsApp Link */
/* .whatsapp-link {
    color: #0b7331; /* WhatsApp green 
    margin-left: 8px;
    font-size: 1.6em;
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
}*/

.whatsapp-link:hover {
    color: #4ee775; /* Darker WhatsApp green on hover */
    transform: scale(1.5);
}

.footer-form {
    display: flex;
    flex-direction: column;
}

.footer-form input,
.footer-form textarea {
    margin-bottom: 10px;
    padding: 8px;
    border-radius: 5px;
    border: none;
}

.copyright {
    border-top: 1px solid #555;
    padding-top: 15px;
    font-size: 0.8rem;
}

/* Form Specific Styles (for joinus.html and contact.html) */
.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input, 
.form-group textarea, 
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
}

/* --- Team Display Styles (Reverted and Simplified) --- */
.team-results-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.team-results-table th, .team-results-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.team-results-table th {
    background-color: #000080;
    color: white;
    font-weight: 600;
}

.team-results-table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.team-results-table tbody tr:hover {
    background-color: #e9e9e9;
}


/* --- National Core Team Card Styles --- */
.team-display-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.team-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}

.member-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    padding: 20px;
    width: 280px; /* Fixed width for cards */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.member-image-container {
    width: 100%;
    height: 250px; /* Fixed height for image container */
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.member-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes the image cover the area without distortion */
}

.member-details {
    text-align: left;
}

.member-details h3 {
    margin: 0 0 5px 0;
    color: #000080;
    font-size: 1.2em;
}

.member-details p {
    margin: 3px 0;
    color: #333;
    font-size: 0.95em;
}

.member-details .position {
    font-weight: bold;
    color: #000;
}


/* --- Responsive Styles --- */
@media (max-width: 1200px) {
    .main-title { font-size: 2.4em; }
    .header-logo { width: 130px; }
}

@media (max-width: 992px) {
    .header-main {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .header-logo-container {
        padding: 0;
    }
    .header-side-members {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .main-title {
        font-size: 2em;
    }
    .main-navbar {
        padding: 10px 0;
    }
    .nav-links {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .nav-links li {
        margin: 0 10px;
    }
    .nav-links li a {
         color: rgb(224, 223, 223);

        text-decoration: none;
        font-weight: 500;
        padding: 5px 10px;
    }
    .nav-links li a:hover {
        color: #000080;
        text-decoration: underline;
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .leader-images {
        display: none; /* Hide leader images on mobile */
    }
    .main-title {
        font-size: 1.8em;
    }
    .sub-title {
        font-size: 1em;
    }
    .contact-info, .address {
        font-size: 0.9em;
    }
    .header-logo {
        width: 110px;
    }
    .language-switcher {
        top: 10px;
        right: 10px;
    }
    .language-switcher a {
        padding: 4px 8px;
        font-size: 0.9em;
    }
    .header-side-members {
        gap: 10px;
    }
    .side-member-card img {
        width: 80px;
    }
     .slide {
        max-height: 60vh;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.5em;
    }
    .sub-title {
        font-size: 0.9em;
    }
    .header-side-members {
        flex-direction: column;
    }
    .side-member-card img {
        width: 60px;
    }
    .contact-info, .address {
        font-size: 0.8em;
    }
    .gallery-grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }
    .slide {
        max-height: 50vh; /* **ADJUSTED** for very small screens */
    }
}
/* Submit button styles */
#submitBtn {
    background: #098d21 100% !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
}

#submitBtn:hover {
    color: #d9d9dc !important;
    background-color: #1212e4 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
}