/* Global Styles with Beautiful Gradients */
:root {
    --primary-color: #845ec2;
    --secondary-color: #ff6f91;
    --accent-color: #ff9671;
    --light-color: #f9f871;
    --dark-color: #1a1a1a;
    --success-color: #ffc75f;
    
    /* Beautiful gradient combinations with your specified colors */
    --gradient-primary: linear-gradient(135deg, #845ec2 0%, #ff6f91 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6f91 0%, #ff9671 100%);
    --gradient-accent: linear-gradient(135deg, #ff9671 0%, #ffc75f 100%);
    --gradient-warm: linear-gradient(135deg, #ffc75f 0%, #f9f871 100%);
    --gradient-cool: linear-gradient(135deg, #845ec2 0%, #ff6f91 50%, #ff9671 100%);
    --gradient-sunrise: linear-gradient(135deg, #ff9671 0%, #ffc75f 50%, #f9f871 100%);
    --gradient-ocean: linear-gradient(135deg, #845ec2 0%, #ff6f91 100%);
    --gradient-tropical: linear-gradient(135deg, #845ec2 0%, #ff6f91 25%, #ff9671 50%, #ffc75f 75%, #f9f871 100%);
    --gradient-dark: linear-gradient(135deg, #845ec2 0%, #ff6f91 50%, #2d3436 100%);
    --gradient-night: linear-gradient(135deg, #2d3436 0%, #845ec2 50%, #ff6f91 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Kannada MN', 'Arial', sans-serif;
}

body {
    background: var(--gradient-cool);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 25%, #fff176 50%, #ffeb3b 75%, #fffde7 100%);
    color: #2d3436;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.party-logo {
    width: 60px;
    height: 60px;
    margin-right: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #2d3436;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    color: #2d3436;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #1a1a1a;
    text-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #b8860b 0%, #daa520 100%);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #2c73d2 0%, #4a90e2 25%, #1e5bb8 50%, #3b82f6 75%, #2563eb 100%);
    color: white;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(44, 115, 210, 0.15) 25%, transparent 25%), 
                linear-gradient(-45deg, rgba(74, 144, 226, 0.15) 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, rgba(30, 91, 184, 0.15) 75%), 
                linear-gradient(-45deg, transparent 75%, rgba(59, 130, 246, 0.15) 75%);
    background-size: 60px 60px;
    animation: float 20s ease-in-out infinite;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    background: linear-gradient(45deg, #fff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
    color: #f8fafc;
}

.btn {
    display: inline-block;
    background: var(--gradient-warm);
    color: var(--dark-color);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(255, 199, 95, 0.4);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 199, 95, 0.6);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--gradient-sunrise);
    position: relative;
    color: var(--dark-color);
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%), 
                linear-gradient(-45deg, rgba(255,255,255,0.1) 25%, transparent 25%);
    background-size: 30px 30px;
    pointer-events: none;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* Leader's Message Section */
.leader-message {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.leader-message::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(249,248,113,0.1) 0%, transparent 70%);
    z-index: 0;
}

.leader-message-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.leader-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.leader-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,0.3);
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.leader-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffcc00;
    margin: 1.5rem 0;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.leader-role {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 2rem;
    font-style: italic;
}

.leader-message p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
    color: #f0f0f0;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.08);
    border-radius: 10px;
    border-left: 4px solid #e74c3c;
}

/* Vision Section */
.vision {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 150, 113, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 199, 95, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.vision h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.vision p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.9;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.vision-item {
    background-color: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.vision-item i {
    font-size: 4rem;
    color: #722F37;
    margin-bottom: 1.5rem;
}

.vision-item h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

/* Organization Structure Section */
.organization {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2d1a4d 0%, #4b1e4f 55%, #7a213a 100%);
    position: relative;
    overflow: hidden;
}

.organization::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(140deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(255, 255, 255, 0.02) 60%,
        rgba(0, 0, 0, 0.25) 100%);
    backdrop-filter: blur(2px);
}

.organization .container {
    position: relative;
    z-index: 2;
}

.organization .section-title {
    color: white;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.organization .section-subtitle {
    color: white;
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 4rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.org-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
    align-items: start;
}

.org-member {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.org-member::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.org-member:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.org-member:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 
        0 20px 40px rgba(132, 94, 194, 0.3),
        0 15px 25px rgba(255, 111, 145, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.member-photo {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(132, 94, 194, 0.8) 0%, 
        rgba(255, 111, 145, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.org-member:hover .member-overlay {
    opacity: 1;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.member-social a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.org-member:hover .member-social a {
    transform: translateY(0);
}

.member-social a:hover {
    transform: scale(1.2);
    color: #ffc75f;
}

.org-member:hover .member-photo {
    border-color: rgba(255, 199, 95, 0.8);
    box-shadow: 0 0 30px rgba(255, 199, 95, 0.4);
}

.org-member:hover .member-photo img {
    transform: scale(1.1);
}

.member-info h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.designation {
    color: #ffc75f;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.member-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Programs Section */
.programs {
    padding: 6rem 0;
    background: var(--gradient-secondary);
    color: white;
}

.program-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.program-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(132, 94, 194, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--gradient-warm);
    position: relative;
    color: var(--dark-color);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}

.program-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 111, 145, 0.3);
}

.program-image {
    height: 250px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-content {
    padding: 2rem;
    background-color: white;
}

.program-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.program-content p {
    color: #555;
    margin-bottom: 1.5rem;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background-color: var(--light-color);
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.testimonial {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial::before {
    content: "\201C";
    font-size: 8rem;
    color: var(--secondary-color);
    opacity: 0.1;
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: serif;
}

.testimonial p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
    color: var(--primary-color);
}

.author-info p {
    color: #777;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #851d1d 0%, #662020 25%, #744646 50%, #2a2a2a 75%, #1c1c1c 100%);
    color: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%), 
                linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
                radial-gradient(circle at 20% 80%, rgba(66, 66, 66, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(77, 77, 77, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(88, 88, 88, 0.1) 0%, transparent 40%);
    background-size: 80px 80px, 80px 80px, 400px 400px, 400px 400px, 300px 300px;
    animation: float 40s ease-in-out infinite;
    pointer-events: none;
}

.contact-container {
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-detail i {
    font-size: 1.8rem;
    color: #e0e0e0;
    margin-right: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
    padding: 0.7rem;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    font-size: 1rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    color: #f5f5f5;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: rgba(255,255,255,0.3);
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.form-control::placeholder {
    color: rgba(255,255,255,0.6);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.social-links {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    margin: 0 0.5rem;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    width: 150px;
    height: auto;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-decoration: none;
    z-index: 9999;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h2 { font-size: 3rem; }
    .hero p { font-size: 1.3rem; }
    .about-content { flex-direction: column; }
    .about-image { margin-bottom: 3rem; }
    .contact-container { flex-direction: column; }
    .org-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
}

@media (max-width: 768px) {
    .header-container { flex-direction: column; }
    .hamburger { display: block; margin-top: 1rem; }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.5s ease;
        z-index: 999;
    }
    .nav-menu.active { left: 0; }
    .nav-menu li { margin: 1.5rem 0; }
    .hero h2 { font-size: 2.5rem; }
    .hero p { font-size: 1.2rem; }
    .section-title { margin-bottom: 3rem; }
    .section-title::after { width: 60px; }
    .about-text h3 { font-size: 2rem; }
    .vision h2 { font-size: 2.5rem; }
    .vision p { font-size: 1.3rem; }
    .leader-message h2 { font-size: 2.5rem; }
    .leader-message p { font-size: 1.1rem; padding: 1rem; }
    .leader-name { font-size: 1.5rem; }
    .leader-role { font-size: 1rem; }
    .testimonial-grid,
    .program-cards,
    .vision-grid { grid-template-columns: 1fr; }
    .org-grid { grid-template-columns: 1fr; gap: 2rem; }
    .organization .section-title { font-size: 2.5rem; }
    .organization .section-subtitle { font-size: 1.1rem; }
    .member-photo { width: 150px; height: 150px; }
    .member-info h3 { font-size: 1.5rem; }
}

@media (max-width: 576px) {
    .container { width: 95%; }
    .hero h2 { font-size: 2rem; }
    .hero p { font-size: 1.1rem; }
    .btn { padding: 10px 25px; font-size: 1rem; }
    .about-text h3 { font-size: 1.8rem; }
    .vision h2, .contact-info h3 { font-size: 2rem; }
    .contact-detail i { font-size: 1.5rem; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 1.8rem; }
    .organization .section-title { font-size: 2rem; }
    .organization .section-subtitle { font-size: 1rem; }
    .org-member { padding: 2rem; }
    .member-photo { width: 120px; height: 120px; }
    .member-info h3 { font-size: 1.3rem; }
    .designation { font-size: 1rem; }
    .member-desc { font-size: 0.9rem; }
}

/* Animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animate {
    animation: fadeInUp 1s ease-out forwards;
}
.animate-delay-1 { animation-delay: 0.2s; }
.animate-delay-2 { animation-delay: 0.4s; }
.animate-delay-3 { animation-delay: 0.6s; }