@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    overflow-x: hidden;
}

.container {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 50;

}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d9488;
    cursor: pointer;
    text-decoration: none;
}

.logo img {
    margin-right: 10px;
}

.logo-strong {
    font-size: 1.875rem;
    font-weight: 800;
}

.desktop-nav {
    display: none;
    gap: 1.5rem;
}

.nav-link {
    color: #4b5563;
    transition: color 0.2s ease-in-out;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
}

.nav-link:hover {
    color: #0d9488;
}

.mobile-menu-button {
    padding: 0.5rem;
    color: #4b5563;
    border-radius: 0.375rem;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
    background-color: #f9fafb;
}

.mobile-nav .nav-link {
    padding: 0.5rem;
    width: 100%;
    text-align: left;
}

.mobile-nav.active {
    display: flex;
}

.page {
    display: none;
}

.page.active {
    display: block;
}

/* Hero Section - Mobile First Approach */
.hero-section {
    text-align: center;
    padding: 1rem;
    position: relative;
}

.hero-section img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    display: block;
}

/* Hero content overlay - responsive positioning */
.hero-title {
    font-size: 2rem;
    line-height: 1.25;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
    position: absolute;
    right: 1rem;
    top: 20%;
    max-width: calc(100% - 2rem);
    text-align: right;
}

.hero-title-teal {
    color: #0d9488;
}

.hero-subtitle {
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 2rem;
    position: absolute;
    right: 1rem;
    top: 45%;
    max-width: calc(50% - 1rem);
    text-align: right;
    line-height: 1.4;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    position: absolute;
    right: 1rem;
    top: 70%;
    max-width: calc(50% - 1rem);
}

.button {
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border: none;
    font-size: 0.875rem;
}

.button:hover {
    transform: scale(1.05);
}

.button-primary {
    background-color: #0d9488;
    color: #fff;
}

.button-primary:hover {
    background-color: #0f766e;
}

.button-secondary {
    background-color: #fff;
    color: #0d9488;
    border: 1px solid #0d9488;
}
/* Impact Section */
.impact-section {
    background: #f9fefe;
    padding: 60px 30px;
    text-align: center;
}

.impact-section h2 {
    font-size: 32px;
    font-weight: bold;
    color: #008080;
    margin-bottom: 10px;
}

.impact-section p {
    font-size: 18px;
    color: #444;
    margin-bottom: 40px;
}

.impact-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    width: 220px;
}

.stat-box h3 {
    font-size: 28px;
    color: #008080;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 16px;
    color: #333;
}

/* Stories Section */
.stories-section {
    background: #ffffff;
    padding: 60px 30px;
    text-align: center;
}

.stories-section h2 {
    font-size: 32px;
    font-weight: bold;
    color: #008080;
    margin-bottom: 10px;
}

.stories-section p {
    font-size: 18px;
    color: #444;
    margin-bottom: 40px;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.story-card {
    background: #f9fefe;
    padding: 25px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.story-card h3 {
    font-size: 20px;
    color: #008080;
    margin-bottom: 10px;
}

.story-card p {
    font-size: 16px;
    color: #333;
}

/* ✅ Responsive */
@media (max-width: 768px) {
    .impact-section h2,
    .stories-section h2 {
        font-size: 26px;
    }

    .impact-section p,
    .stories-section p {
        font-size: 16px;
    }

    .stat-box h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .impact-section h2,
    .stories-section h2 {
        font-size: 22px;
    }

    .impact-section p,
    .stories-section p,
    .story-card p {
        font-size: 15px;
    }
}


/* Learn More Section */
.learn-more-section {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #e2f4f2;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.learn-more-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d9488;
    margin-bottom: 1rem;
}

.learn-more-text {
    font-size: 1rem;
    color: #1f2937;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Programmes Section */
.programmes-section {
    background-color: #f8fafc;
    padding: 3rem 1rem;
    text-align: center;
}

.programmes-section h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0d9488;
    margin-bottom: 2rem;
}

.programmes-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 100%;
    margin: 0 auto;
}

.programme-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.programme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.programme-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

.programme-icon img {
    width: 100%;
    height: auto;
}

.programme-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0d9488;
    margin-bottom: 0.75rem;
}

.programme-card p {
    font-size: 0.9rem;
    color: #374151;
    line-height: 1.5;
}
.membership-section {
    background: #ffffff;
    padding: 50px 30px;
    margin: 60px auto;
    border-radius: 16px;
    text-align: center;
    max-width: 900px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.membership-section h2 {
    font-size: 32px;
    font-weight: bold;
    color: #008080;
    margin-bottom: 15px;
}

.membership-section p {
    font-size: 18px;
    color: #444;
    margin-bottom: 20px;
}

.membership-benefits ul {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    text-align: left;
    max-width: 600px;
}

.membership-benefits ul li {
    font-size: 18px;
    margin: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #333;
}

.membership-benefits ul li::before {
    content: "✔";
    color: #008080;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.membership-amount {
    font-size: 20px;
    font-weight: bold;
    color: #008080;
    margin: 25px 0;
}

.membership-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #008080;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.membership-btn:hover {
    background: #006666;
}

/* ✅ Responsive Styles */
@media (max-width: 768px) {
    .membership-section {
        padding: 30px 20px;
        margin: 30px 15px;
    }

    .membership-section h2 {
        font-size: 26px;
    }

    .membership-section p,
    .membership-benefits ul li {
        font-size: 16px;
    }

    .membership-btn {
        font-size: 16px;
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .membership-section {
        padding: 20px 15px;
    }

    .membership-section h2 {
        font-size: 22px;
    }

    .membership-section p,
    .membership-benefits ul li {
        font-size: 15px;
    }

    .membership-btn {
        font-size: 15px;
        padding: 10px 20px;
    }
}


/* Tablet Styles - 768px and up */
@media (min-width: 768px) {
    .hero-section {
        padding: 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
        right: 2rem;
        top: 25%;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        right: 2rem;
        top: 55%;
        max-width: calc(60% - 2rem);
    }
    
    .button-group {
        right: 2rem;
        top: 80%;
        max-width: calc(60% - 2rem);
    }
    
    .button {
        padding: 0.75rem 1.25rem;
        font-size: 1rem;
    }
    
    .learn-more-section {
        padding: 3rem 2rem;
    }
    
    .learn-more-title {
        font-size: 2rem;
    }
    
    .learn-more-text {
        font-size: 1.125rem;
        max-width: 48rem;
    }
    
    .programmes-section {
        padding: 4rem 2rem;
    }
    
    .programmes-section h2 {
        font-size: 2rem;
    }
    
    .programmes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 800px;
    }
    
    .programme-card {
        padding: 2rem 1.5rem;
    }
    
    .programme-icon {
        width: 60px;
        height: 60px;
    }
    
    .programme-card h3 {
        font-size: 1.25rem;
    }
    
    .programme-card p {
        font-size: 1rem;
    }
}

/* Desktop Styles - 1024px and up */
@media (min-width: 1024px) {
    .hero-section {
        padding: 2rem;
    }
    
    .hero-title {
        font-size: 4rem;
        right: 4rem;
        top: 30%;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        right: 3rem;
        top: 65%;
        max-width: calc(50% - 3rem);
    }
    
    .button-group {
        right: 5rem;
        top: 85%;
        max-width: calc(50% - 5rem);
    }
    
    .learn-more-section {
        padding: 4rem 3rem;
    }
    
    .programmes-section {
        padding: 5rem 3rem;
    }
    
    .programmes-section h2 {
        font-size: 2.2rem;
    }
    
    .programmes-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        max-width: 1100px;
    }
}

/* Large Desktop Styles - 1440px and up */
@media (min-width: 1440px) {
    .hero-title {
        font-size: 5rem;
        right: 7rem;
        top: 40%;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        right: 5rem;
        top: 75%;
    }
    
    .button-group {
        right: 9rem;
        top: 90%;
    }
    
    .learn-more-text {
        max-width: 56rem;
    }
}

/* Extra small devices - better mobile experience */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
        top: 15%;
        right: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
        top: 35%;
        right: 0.5rem;
        max-width: calc(55% - 0.5rem);
    }
    
    .button-group {
        top: 55%;
        right: 0.5rem;
        flex-direction: column;
        align-items: flex-end;
    }
    
    .button {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
    }
    
    .programmes-section {
        padding: 2rem 0.5rem;
    }
    
    .programmes-section h2 {
        font-size: 1.5rem;
    }
    
    .learn-more-section {
        padding: 1.5rem 0.5rem;
    }
    
    .learn-more-title {
        font-size: 1.25rem;
    }
}

/* Vision Section */
.vision-section {
    background-image: url('assets/Our-vision.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-bottom: 80px;
}

.vision-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.vision-content {
    background: rgba(211, 204, 204, 0.15);
    color: white;
    font-size: 1.3rem;
    max-width: 800px;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    cursor: pointer;
}

.vision-content:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    color: #222;
    margin: 80px 0 50px 0;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2dd4bf, #06b6d4);
    border-radius: 2px;
}

/* Mission Section */
.mission-section {
    padding: 0;
    text-align: center;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.mission-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 212, 191, 0.1), transparent);
    transition: left 0.6s ease;
}

.mission-card:hover::before {
    left: 100%;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mission-card .icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.mission-card:hover .icon {
    transform: scale(1.1) rotateY(180deg);
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mission-card:hover h3 {
    color: #2dd4bf;
}

.mission-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 25px 20px;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.team-card:hover .team-name {
    color: #2dd4bf;
}

.team-title {
    font-size: 0.95rem;
    color: #666;
    letter-spacing: 0.5px;
}

/* Click Effect */
.click-ripple {
    position: relative;
    overflow: hidden;
}

.click-ripple::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.6s ease;
}

.click-ripple.clicked::after {
    width: 300px;
    height: 300px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        margin: 60px 0 40px 0;
    }

    .vision-content {
        font-size: 1.1rem;
        padding: 30px 25px;
    }

    .mission-cards,
    .team-grid {
        gap: 30px;
    }

    .mission-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .vision-content {
        font-size: 1rem;
        padding: 25px 20px;
    }
}


/* Events Gallery Styles */
.page-event {
            min-height: 100vh;
            padding: 40px 20px;
        }
.events-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            text-align: center;
            color: #0d9488;
            margin-bottom: 16px;
            text-shadow: 0 2px 4px rgba(13, 148, 136, 0.1);
        }

        .section-subtitle {
            font-size: 1.1rem;
            text-align: center;
            color: #6b7280;
            margin-bottom: 48px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .form-success-message {
            background: linear-gradient(135deg, #0d9488, #14b8a6);
            color: white;
            padding: 16px;
            border-radius: 8px;
            text-align: center;
            margin-bottom: 32px;
            box-shadow: 0 4px 6px rgba(13, 148, 136, 0.2);
        }

        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
            margin-bottom: 48px;
        }

        .event-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .event-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(13, 148, 136, 0.2);
        }

        .event-image {
            position: relative;
            height: 250px;
            overflow: hidden;
        }

        .event-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .event-card:hover .event-image img {
            transform: scale(1.05);
        }

        .event-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(13, 148, 136, 0.8), rgba(20, 184, 166, 0.8));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .event-card:hover .event-overlay {
            opacity: 1;
        }

        .overlay-content {
            text-align: center;
            color: white;
        }

        .overlay-title {
            font-size: 1.4rem;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .overlay-date {
            font-size: 0.9rem;
            margin-bottom: 16px;
            opacity: 0.9;
        }

        .event-info {
            padding: 24px;
        }

        .event-category {
            background: linear-gradient(135deg, #0d9488, #14b8a6);
            color: white;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 12px;
        }

        .event-title {
            font-size: 1.3rem;
            font-weight: bold;
            color: #1f2937;
            margin-bottom: 8px;
        }

        .event-description {
            color: #6b7280;
            line-height: 1.5;
        }

        .gallery-section {
            margin-top: 32px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 16px;
            margin-top: 16px;
        }

        .gallery-item {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(13, 148, 136, 0.2);
        }

        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .gallery-caption {
            padding: 12px;
            background: white;
            text-align: center;
            font-size: 0.9rem;
            color: #0d9488;
            font-weight: 600;
        }

        .stats-section {
            background: white;
            padding: 32px;
            border-radius: 16px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            margin-top: 48px;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
        }

        .stat-item {
            text-align: center;
            padding: 24px;
            background: linear-gradient(135deg, #0d9488, #14b8a6);
            border-radius: 12px;
            color: white;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .events-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .gallery-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
/* Contact Us Page Styles */
.contact-hero {
    background-color: #0d9488;
    color: white;
    text-align: center;
    padding: 100px 0 80px 0;
    margin-bottom: 80px;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

/* Contact Form Styles */
.contact-form-section {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.contact-form-section h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
    font-size: 1rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #2dd4bf;
    background: white;
    box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.1);
    transform: translateY(-2px);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit-button {
    width: 100%;
    background: linear-gradient(135deg, #2dd4bf, #06b6d4);
    color: white;
    padding: 18px 30px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(45, 212, 191, 0.4);
}

.form-submit-button:active {
    transform: translateY(-1px);
}

/* Contact Info Styles */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #2dd4bf;
}

.contact-info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.contact-info-card h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info-card .icon {
    background-color: #0d9488;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-info-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 8px 0;
}

.contact-info-card a {
    color: #2dd4bf;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #06b6d4;
}

/* Map Section */
.map-section {
    margin: 80px 0;
    text-align: center;
}

.map-section h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.map-section p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.map-container {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.map-placeholder {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1rem;
    position: relative;
}

.map-placeholder::before {
    content: "🗺️";
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

/* Office Hours Card */
.office-hours {
    background-color: white;
    color: #0d9488;
    border: 2px solid #0d9488;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.office-hours h3 {
    color: white !important;
    margin-bottom: 20px;
}

.office-hours .hours-list {
    list-style: none;
    padding: 0;
}

.office-hours .hours-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
}

.office-hours .hours-list li:last-child {
    border-bottom: none;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.social-link {
    width: 45px;
    height: 45px;
    background-color: #0d9488;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(45, 212, 191, 0.4);
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-hero h1 {
        font-size: 2.8rem;
    }

    .contact-form-section {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 80px 0 60px 0;
    }

    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-form-section {
        padding: 25px;
    }

    .form-input,
    .form-textarea {
        padding: 12px 15px;
    }

    .contact-info-card {
        padding: 20px;
    }
}

/*Donation Page CSS*/
.hero-donation {
    background: url(assets/Donation-bg.webp);
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.hero-donation h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-donation p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Main Content */
.main-content-donation {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Page wrapper */
.page {
    min-height: 100vh;
}

.donation-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.donation-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #0d9488;
}










.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #555;
}



/* Impact Section */
.impact-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.impact-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #0d9488;
}

.impact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.impact-icon {
    width: 50px;
    height: 50px;
    background-color: #0d9488;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.5rem;
}

.impact-text {
    flex: 1;
}

.impact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.impact-text p {
    color: #666;
    font-size: 0.95rem;
}


/* Wrapper */
.donate-btn {
  text-align: center; /* Center align */
  margin: 30px auto;
  padding: 20px;
}

/* Razorpay injected button */
.donate-btn button {
  background: linear-gradient(135deg, #06b6d4, #3b82f6); /* Gradient color */
  color: #fff !important;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 40px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

/* Hover effect */
.donate-btn button:hover {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}





/* Thank You Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.modal h2 {
    color: #28a745;
    margin-bottom: 1rem;
}

.modal-close {
    background: #667eea;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .donation-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .donation-form,
    .impact-section {
        padding: 1.5rem;
    }

    .amount-buttons {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: 1fr;
    }
}

/* Loading state */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

footer {
    background-color: #1f2937;
    padding-top: 40px;
    color: #a0a0a0;
    font-family: Arial, sans-serif;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 30px 5%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px; /* Added for better spacing */
}

.footer-first {
    flex: 2;
    min-width: 280px; /* Slightly increased */
    margin-bottom: 30px;
}

.footer-first h3 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.footer-first p {
    line-height: 1.6;
    font-size: 1.2rem; /* Slightly reduced from 1.5rem */
}

.footer-second {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin: 10px 0;
}

footer ul li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem; /* Added for consistency */
}

footer ul li a:hover {
    color: #fff;
}

.footer-rights {
    text-align: center;
    color: #888;
    padding: 15px 0;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    margin-top: 20px;
}

.footer-section.contact-info {
    flex: 1;
    min-width: 280px; /* Increased for better mobile display */
    margin-bottom: 30px;
    color: #a0a0a0;
}

.footer-section.contact-info h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer-section.contact-info p {
    margin: 10px 0;
    display: flex;
    align-items: flex-start; /* Changed for better text wrapping */
    line-height: 1.5;
    font-size: 0.95rem; /* Slightly reduced */
}

.footer-section.contact-info i {
    margin-right: 10px;
    color: #fff;
    font-size: 1rem;
    width: 20px;
    text-align: center;
    margin-top: 2px; /* Added for better icon alignment */
    flex-shrink: 0; /* Prevents icon from shrinking */
}

/* RESPONSIVE DESIGN - ADD THESE MEDIA QUERIES */

/* Tablet and smaller desktop */
@media screen and (max-width: 768px) {
    .footer {
        flex-direction: column;
        padding: 30px 8%;
        gap: 25px;
    }

    .footer-first,
    .footer-second,
    .footer-section.contact-info {
        flex: none;
        min-width: 100%;
        margin-bottom: 25px;
    }

    .footer-first h3 {
        font-size: 2rem;
        text-align: center;
    }

    .footer-first p {
        font-size: 1.1rem;
        text-align: center;
    }

    .footer h4 {
        font-size: 1.1rem;
        text-align: center;
    }

    .footer-second ul {
        text-align: center;
    }

    .footer-section.contact-info h3 {
        text-align: center;
    }

    .footer-section.contact-info p {
        justify-content: center;
        text-align: left;
        max-width: 100%;
    }
}

/* Mobile phones */
@media screen and (max-width: 480px) {
    footer {
        padding-top: 30px;
    }

    .footer {
        padding: 25px 5%;
        gap: 20px;
    }

    .footer-first h3 {
        font-size: 1.8rem;
    }

    .footer-first p {
        font-size: 1rem;
    }

    .footer h4 {
        font-size: 1rem;
    }

    .footer-section.contact-info p {
        font-size: 0.9rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section.contact-info i {
        margin-bottom: 5px;
        margin-right: 0;
    }

    .footer-rights {
        font-size: 0.8rem;
        padding: 12px 0;
    }
}

/* Very small devices */
@media screen and (max-width: 320px) {
    .footer {
        padding: 20px 3%;
    }

    .footer-first h3 {
        font-size: 1.6rem;
    }

    .footer-section.contact-info p {
        font-size: 0.85rem;
    }
}

/* Landscape tablets */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .footer {
        padding: 30px 6%;
        gap: 25px;
    }

    .footer-first {
        flex: 1.5;
        min-width: 250px;
    }

    .footer-first h3 {
        font-size: 2.2rem;
    }

    .footer-first p {
        font-size: 1.1rem;
    }
}

/* Responsive Styles */
@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }

    .mobile-menu-button {
        display: none;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }

    .team-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
/*form styles*/