:root {
    --primary: rgb(46, 125, 50);
    --primary-light: #4caf50;
    --secondary: #ff9800;
    --dark: #1b5e20;
    --light: #e8f5e9;
    --text: #212121;
    --text-light: #757575;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* padding: 0; */
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    background-color: #f9f9f9;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.container {
    width: 100%;
    /* max-width: 1200px; */
    /* margin: 0 auto; */
}

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 5px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-right: 10px;
}

.logo:hover .logo-img {
    transform: rotate(360deg);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary);
}


/* Hero Section with 3D Animation */
.hero {

    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1418065460487-3e41a6c84dc5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-direction: column;
}
.upper{
    width: 100%;
    height: 900px;
    border: 2px solid black;
}




.hero-content {
    width: 100%;
    text-align: center;
    color: white;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background-color: #723a03;
}

/* About Section with Stats */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background-color: var(--secondary);
    margin: 15px auto;
    border-radius: 2px;
}

.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-text p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    perspective: 1000px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transform: rotateY(5deg);
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: rotateY(0);
}

/* Stats Section */
.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 60px;
    text-align: center;
}

.stat {
    padding: 20px;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Chapters Section */
.chapters {
    background-color: var(--light);
}

.chapters-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.chapter-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    transform: translateY(50px);
    opacity: 0;
}

.chapter-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.chapter-image {
    height: 200px;
    overflow: hidden;
}

.chapter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.chapter-card:hover .chapter-image img {
    transform: scale(1.1);
}

.chapter-content {
    padding: 20px;
}

.chapter-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.chapter-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Team Carousel Styles */
.team-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.team-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.team-member {
    flex: 0 0 calc(25% - 23px); /* 4 items per row with gap */
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(50px);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 20px;
}

.member-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.member-info .role {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.member-info p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.team-carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.carousel-prev,
.carousel-next {
    background: ;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--dark);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}
/* Feedback button styling */
.feedback-btn {
    background-color: var(--secondary);
    color: white !important;
    padding: 8px 15px !important;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feedback-btn:hover {
    background-color: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Responsive adjustments for team carousel */
@media (max-width: 1200px) {
    .team-member {
        flex: 0 0 calc(33.333% - 20px); /* 3 items per row */
    }
}

@media (max-width: 992px) {
    .team-member {
        flex: 0 0 calc(50% - 15px); /* 2 items per row */
    }
}

@media (max-width: 576px) {
    .team-member {
        flex: 0 0 100%; /* 1 item per row */
    }
    
    .team-carousel-controls {
        flex-wrap: wrap;
    }
}
/* Join Team Section */
.join-team {
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.join-team::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.1;
    transform: rotate(30deg);
}

.roles-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
}

.role-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    width: 250px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform: translateY(50px);
    opacity: 0;
}

.role-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.role-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.role-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.role-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.role-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Form Styles - Enhanced with better validation UI */
.form-container {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.form-title {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary);
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #f44336;
    box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.2);
}

.error-message {
    color: #f44336;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 250px;
}

.submit-btn {
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    width: 100%;
    padding: 15px;
    font-size: 18px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.submit-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.submit-btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

/* Form Success Message */
.form-success {
    display: none;
    text-align: center;
    padding: 30px;
    background: #e8f5e9;
    border-radius: 10px;
    margin-top: 20px;
}

.form-success i {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 20px;
}

.form-success h3 {
    color: var(--dark);
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(to bottom, var(--light), #ffffff);
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s;
    position: absolute;
    width: calc(100% - 40px);
    top: 0;
    left: 0;
}

.testimonial.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text);
    position: relative;
    padding-left: 30px;
}

.testimonial-text::before {
    content: "";
    font-size: 60px;
    color: var(--primary-light);
    position: absolute;
    left: 0;
    top: -20px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    color: var(--dark);
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Contact Section */
.contact {
    background: linear-gradient(to bottom, var(--light), #ffffff);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.contact-details {
    list-style: none;
}

.contact-details li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-details i {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

/* Sponsors Section */
.sponsors {
    background-color: var(--light);
    padding: 100px 0;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.sponsor-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.sponsor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.sponsor-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.sponsor-logo img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}

.sponsor-card h3 {
    color: var(--dark);
    margin-bottom: 15px;
}

.sponsor-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* HELP Foundation Section */
.help-foundation {
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff, var(--light));
}

.help-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.help-text {
    flex: 1;
    min-width: 300px;
}

.help-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.help-text p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-light);
}

.help-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.help-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Events Section */
.events {
    background-color: var(--light);
    padding: 100px 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.event-date {
    background: var(--primary);
    color: white;
    padding: 15px;
    text-align: center;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.event-date .month {
    font-size: 1.2rem;
    text-transform: uppercase;
}

.event-content {
    padding: 20px;
}

.event-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.event-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.event-details {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.event-detail {
    display: flex;
    align-items: center;
    color: var(--text-light);
}

.event-detail i {
    margin-right: 5px;
    color: var(--primary);
}

/* Footer */
footer {
    background-color: rgb(46, 125, 50) ;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-left {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-logo img {
    margin-right: 10px;
}

.footer-logo span {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.footer-left p {
    opacity: 0.8;
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--secondary);
    transform: translateY(-2px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.footer-contact a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-links a {
    color: #bdbdbd;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: white;
}

.legal-links span {
    color: #666;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--dark);
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes riseUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes moveCloud {
    from {
        left: -200px;
    }
    to {
        left: 100%;
    }
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    20% {
        transform: scale(25, 25);
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: scale(50, 50);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .cloud {
        animation: none;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .nav-links li {
        margin-left: 20px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s;
        gap: 30px;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        margin-bottom: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-right {
        align-items: center;
        margin-top: 15px;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 25px;
    }
    
    .form-container {
        padding: 25px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .testimonial {
        padding: 20px;
        margin: 10px;
        width: calc(100% - 20px);
    }
}
/* Upcoming Event Announcement Styles */
.event-announcement {
    max-width: 1000px;
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto 40px;
}

.announcement-header {
    background: linear-gradient(135deg, #124e0a 0%,rgb(46, 125, 50) 100%);
    color: white;
    padding: 25px 30px;
    text-align: center;
    position: relative;
}

/* Sponsors Section Enhancements */
.sponsors {
    padding: 100px 0;
    background-color: var(--light);
}

.sponsor-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
    transition: all 0.3s;
    transform: translateY(50px);
    opacity: 0;
}

.sponsor-card.featured {
    border: 2px solid var(--primary);
}

.sponsor-header {
    padding: 30px;
    background: rgb(166, 236, 181)
    color: white;
    text-align: center;
}

.sponsor-logo {
    height: 120px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.sponsor-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.sponsor-body {
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
}

.sponsor-info {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.sponsor-info h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.sponsor-info p {
    margin-bottom: 15px;
}

.sponsor-details {
    margin-top: 20px;
}

.detail-item {
    display: flex;
    margin-bottom: 10px;
}

.detail-icon {
    color: var(--primary);
    margin-right: 10px;
    min-width: 20px;
}

.sponsor-gallery {
    flex: 1;
    min-width: 300px;
}

.gallery-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.gallery-item {
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.partner-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px white(253, 244, 244, 0.1);
    text-align: center;
    padding: 30px;
    transition: all 0.3s;
    transform: translateY(50px);
    opacity: 0;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(232, 233, 236, 0.863);
}

.partner-logo {
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.partner-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.partner-card p {
    margin-bottom: 20px;
}

/* Responsive Design for Sponsors Section */
@media (max-width: 768px) {
    .sponsor-body {
        flex-direction: column;
    }
    
    .sponsor-info {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .sponsor-header h3 {
        font-size: 1.5rem;
    }
}
  :root {
            --primary: #2e7d32;
            --primary-light: #4caf50;
            --secondary: #ff9800;
            --dark: #1b5e20;
            --light: #e8f5e9;
            --text: #212121;
            --text-light: #757575;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text);
            background-color: #f9f9f9;
            overflow-x: hidden;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--dark);
        }

        .logo-img {
            height: 40px;
            margin-right: 10px;
        }

        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li a {
            text-decoration: none;
            color: var(--text);
            padding: 10px 15px;
            display: block;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links li a:hover {
            color: var(--primary);
        }

        .feedback-btn {
            background-color: var(--secondary);
            color: white !important;
            border-radius: 4px;
            padding: 8px 15px !important;
        }

        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Founder's Message Section */
        .founders-section {
            padding: 120px 0 80px;
            background: linear-gradient(to bottom, #f9f9f9, #e8f5e9);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            display: block;
            width: 70px;
            height: 4px;
            background-color: var(--secondary);
            margin: 15px auto;
            border-radius: 2px;
        }

        .founders-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
        }

        .founder-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 550px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .founder-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .founder-image {
            height: 300px;
            overflow: hidden;
            position: relative;
        }

        .founder-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .founder-card:hover .founder-image img {
            transform: scale(1.05);
        }

        .founder-content {
            padding: 30px;
        }

        .founder-content h3 {
            font-size: 1.5rem;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .founder-role {
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 20px;
            display: block;
            font-size: 1rem;
        }

        .founder-message {
            color: var(--text-light);
            margin-bottom: 25px;
            line-height: 1.8;
            font-style: italic;
            position: relative;
            padding: 0 20px;
        }

        .founder-message::before,
        .founder-message::after {
            content: '"';
            font-size: 3rem;
            color: var(--primary-light);
            opacity: 0.3;
            position: absolute;
            line-height: 1;
        }

        .founder-message::before {
            top: -10px;
            left: 0;
        }

        .founder-message::after {
            bottom: -30px;
            right: 0;
        }

        .download-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--primary);
            color: white;
            text-decoration: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .download-btn:hover {
            background-color: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .download-btn i {
            margin-right: 8px;
        }

        /* Footer */
        footer {
            background-color: #2d2d2d;
            color: white;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
        }

        .footer-left {
            flex: 1;
            min-width: 300px;
            margin-bottom: 30px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .footer-logo img {
            height: 35px;
            margin-right: 10px;
        }

        .footer-logo span {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .footer-left p {
            max-width: 300px;
            line-height: 1.6;
            color: #ccc;
        }

        .footer-right {
            flex: 1;
            min-width: 300px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background-color:rgba(43, 119, 49, 0.1);
            transform: translateY(-3px);
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-contact a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-contact a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid #444444;
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            color: #999999;
        }

        .legal-links {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .legal-links a {
            color: #999;
            text-decoration: none;
            transition: color 0.3s;
        }

        .legal-links a:hover {
            color: white;
        }

        .legal-links span {
            color: #666;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .founders-container {
                gap: 30px;
            }
            
            .founder-card {
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 15px 20px;
            }
            
            .nav-links {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                padding: 20px 0;
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li a {
                padding: 15px 20px;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .founder-image {
                height: 250px;
            }
        }

        @media (max-width: 576px) {
            .founders-section {
                padding: 100px 0 60px;
            }
            
            .section-title {
                margin-bottom: 40px;
            }
            
            .founder-content {
                padding: 20px;
            }
            
            .founder-message {
                padding: 0 10px;
            }
            
            .footer-content, .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-left p {
                max-width: 100%;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .legal-links {
                justify-content: center;
                margin-top: 15px;
            }
        }
            :root {
            --primary: #2e7d32;
            --primary-light: #4caf50;
            --secondary: #ff9800;
            --dark: #1b5e20;
            --light: #e8f5e9;
            --text: #212121;
            --text-light: #757575;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text);
            background-color: #f9f9f9;
            line-height: 1.6;
            padding: 20px;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Founder's Section */
        .founders-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #f9f9f9, #e8f5e9);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            display: block;
            width: 70px;
            height: 4px;
            background-color: var(--secondary);
            margin: 15px auto;
            border-radius: 2px;
        }

        .section-title p {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .founders-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
        }

        .founder-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 550px;
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 30px;
        }

        .founder-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .founder-image {
            width: 220px;
            height: 220px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 25px;
            position: relative;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .founder-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .founder-card:hover .founder-image img {
            transform: scale(1.05);
        }

        .founder-content {
            text-align: center;
            width: 100%;
        }

        .founder-content h3 {
            font-size: 1.6rem;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .founder-role {
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 20px;
            display: block;
            font-size: 1.1rem;
            position: relative;
            padding-bottom: 10px;
        }

        .founder-role::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 3px;
            background-color: var(--secondary);
            border-radius: 2px;
        }

        .founder-message {
            color: var(--text-light);
            margin-bottom: 25px;
            line-height: 1.8;
            font-style: italic;
            position: relative;
            padding: 0 10px;
        }

        .founder-message::before,
        .founder-message::after {
            content: '"';
            font-size: 3rem;
            color: var(--primary-light);
            opacity: 0.3;
            position: absolute;
            line-height: 1;
        }

        .founder-message::before {
            top: -20px;
            left: 0;
        }

        .founder-message::after {
            bottom: -40px;
            right: 0;
        }

        .download-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: var(--primary);
            color: white;
            text-decoration: none;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            margin-top: 30px;
            border: none;
            cursor: pointer;
        }

        .download-btn:hover {
            background-color: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .download-btn i {
            margin-right: 8px;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .founders-container {
                gap: 30px;
            }
            
            .founder-card {
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 2rem;
            }
            
            .founder-image {
                width: 200px;
                height: 200px;
            }
        }

        @media (max-width: 576px) {
            .founders-section {
                padding: 60px 0;
            }
            
            .section-title {
                margin-bottom: 40px;
            }
            
            .founder-image {
                width: 180px;
                height: 180px;
            }
            
            .founder-content {
                padding: 0 10px;
            }
            
            .founder-message {
                padding: 0 5px;
            }
        }

.comming_soon{

    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 70%;
    height: 150px;

box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
border-radius: 20px;


}

        .comming_soon h2{
font-size: 20px;
line-height: normal;


}
.black{
    color: black;
}
.comming_soon h3{
         font-size: 35px;
}
.comming_soon a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 40px;


    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 1s forwards 0.5s;


}
.inner{
    display:  flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    width: 100%;
    backdrop-filter: blur(4px);
    flex-direction: column;
border-radius: 20px;

}

.fotter_div{
    width: 100%;
    height: 100px;
    background-color: #18851f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}
.fotter_div h2{
    color:#3cd541  ;
    text-align: center;
    max-width: 600px;
}
.white{
    color: white;
}

@media screen and (max-width:600px) {
    .comming_soon{
        width: 90%;
    
    }
    .comming_soon h3{
        font-size: 27px;
    }
    .fotter_div{
        height: 70px;
    }
    .fotter_div h2{
        font-size: 17px;
        font-weight: 100;
    }




.sponsor-card{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
.sponsor-card{
    width: 100%;
}
.cntr{
padding: 0;
}



}

/* .sponsors{
    width: 100%;
    border: 2px solid black;
}




.sponsor-info{
    width: 100px;
    border: 2px solid yellow;
    
}
.sponsor-body{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    border: 2px solid black;
} */
         @media (max-width: 576px) {
            .team {
                padding: 70px 0;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
                max-width: 350px;
                margin: 0 auto;
            }
        }

        /* Announcement Bar */
        .announcement-bar {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: rgb(175, 16, 16);
            padding: 10px 0;
            text-align: center;
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }

        .blinking-text {
            animation: blink 2s infinite;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0.7; }
        }

        /* Video Highlights Section */
        .video-highlights {
            background-color: var(--light);
            padding: 80px 0;
        }

        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .video-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .video-card:hover {
            transform: translateY(-5px);
        }

        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
        }

        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .video-info {
            padding: 20px;
        }

        .video-info h3 {
            color: var(--dark);
            margin-bottom: 10px;
            font-size: 1.3rem;
        }

        .video-info p {
            color: var(--text-light);
            margin-bottom: 15px;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }

        /* Responsive adjustments for mobile */
        @media (max-width: 768px) {
            .video-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .blinking-text {
                font-size: 0.9rem;
            }
            
            .video-highlights {
                padding: 60px 0;
            }
        }

        @media (max-width: 480px) {
            .blinking-text {
                font-size: 0.8rem;
            }
            
            .video-info h3 {
                font-size: 1.1rem;
            }
            
            .video-info {
                padding: 15px;
            }
        }
    


  :root {
            --primary-color: #0d9488; 
            --primary-dark: #0f766e; 
            --bg-light: #f9fafb; 
            --text-dark: #1f2937; 
            --error-red: #ef4444; 
        }
        
       

        .card-wrapper {
            max-width: 550px;
            width: 100%;
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            border-left: 6px solid var(--primary-color);
        }

        .heading-main {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        .text-lead {
            color: #6b7280;
            margin-bottom: 2rem;
        }

        /* Form Layout */
        .input-row {
            margin-bottom: 1.25rem;
        }
        
        .input-row label {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 0.35rem;
        }

        .input-field {
            display: block;
            width: 100%;
            padding: 0.65rem 1rem;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
            font-size: 1rem;
            color: var(--text-dark);
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        .input-field:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
        }

        /* Button Styling */
        #send-button {
            width: 100%;
            display: flex;
            justify-content: center;
            padding: 0.75rem 1rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 700;
            color: white;
            background-color: var(--primary-color);
            cursor: pointer;
            transition: background-color 0.2s, box-shadow 0.2s;
        }
        #send-button:hover {
            background-color: var(--primary-dark);
        }
        #send-button:focus {
            outline: none;
            box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.4);
        }
        #send-button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            background-color: var(--primary-color);
        }

        /* Error and Feedback */
        .input-row.has-error .input-field {
            border-color: var(--error-red);
        }
        .error-message {
            display: none;
            color: var(--error-red);
            font-size: 0.85rem;
            margin-top: 0.3rem;
        }
        .input-row.has-error .error-message {
            display: block;
        }
        
        #feedback-panel {
            display: none;
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            font-weight: 600;
            text-align: center;
        }
        .success {
            background-color: #d1fae5; /* Green 100 */
            color: #065f46; /* Green 800 */
        }
        .failure {
            background-color: #fee2e2; /* Red 100 */
            color: #991b1b; /* Red 800 */
        }
                /* Responsive Design */
        @media (max-width: 768px) {
            .team-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 20px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .team {
                padding: 70px 0;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
                max-width: 350px;
                margin: 0 auto;
            }
        }

        /* ========== YAHAN SE NAYA CODE ADD KAREIN ========== */
        
        /* Professional Background Animation */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(125deg, rgba(46, 125, 50, 0.03) 0%, rgba(255, 152, 0, 0.03) 100%),
                radial-gradient(circle at 20% 80%, rgba(46, 125, 50, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 152, 0, 0.05) 0%, transparent 50%);
            z-index: -1;
            animation: subtleBackgroundShift 20s ease-in-out infinite;
        }

        @keyframes subtleBackgroundShift {
            0%, 100% {
                background-position: 0% 0%, 20% 80%, 80% 20%;
            }
            50% {
                background-position: 0% 0%, 25% 75%, 75% 25%;
            }
        }

        /* Floating particles animation */
        .floating-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            background-color: rgba(46, 125, 50, 0.1);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }

        .particle:nth-child(1) {
            width: 40px;
            height: 40px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
            background-color: rgba(46, 125, 50, 0.08);
        }

        .particle:nth-child(2) {
            width: 25px;
            height: 25px;
            top: 70%;
            left: 10%;
            animation-delay: -2s;
            background-color: rgba(255, 152, 0, 0.08);
        }

        .particle:nth-child(3) {
            width: 35px;
            height: 35px;
            top: 40%;
            left: 80%;
            animation-delay: -5s;
            background-color: rgba(46, 125, 50, 0.06);
        }

        .particle:nth-child(4) {
            width: 20px;
            height: 20px;
            top: 20%;
            left: 60%;
            animation-delay: -7s;
            background-color: rgba(255, 152, 0, 0.06);
        }

        .particle:nth-child(5) {
            width: 30px;
            height: 30px;
            top: 80%;
            left: 70%;
            animation-delay: -10s;
            background-color: rgba(46, 125, 50, 0.07);
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0.7;
            }
            33% {
                transform: translateY(-30px) rotate(120deg);
            }
            66% {
                transform: translateY(20px) rotate(240deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
                opacity: 0.7;
            }
        }

        /* Mountain silhouette animation */
        .mountain-silhouette {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 150px;
            background: linear-gradient(to top, rgba(27, 94, 32, 0.05) 0%, transparent 100%);
            z-index: -1;
            animation: mountainBreath 25s ease-in-out infinite;
        }

        @keyframes mountainBreath {
            0%, 100% {
                opacity: 0.7;
                transform: scaleY(1);
            }
            50% {
                opacity: 0.9;
                transform: scaleY(1.05);
            }
        }

        /* Subtle pulse animation for sections */
        .section {
            animation: sectionEntrance 1s ease-out;
        }

        @keyframes sectionEntrance {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* ========== YAHAN TAK NAYA CODE ADD KAREIN ========== */
    </style>