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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5dc;
}

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

/* Navigation */
.navbar {
    background: #5b0505;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #ffffff;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #fedcdc;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffffff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fedcdc;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
main {
    margin-top: 70px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #df8585 0%, #5b0505 100%);
    color: rgb(255, 255, 255);
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #be5f5f;
    color: rgb(0, 0, 0);
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid #be5f5f;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: #9b5d5d;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #df8585 0%, #5b0505 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Sections */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2d0a0a;
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #450a0a;
    margin-bottom: 3rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: #783535;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    border: 1px solid #783535;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: #783535;
}

.about-card h3 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.about-card p {
    color: #ffffff;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #783535;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    border: 1px solid #783535;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #991b1b;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #ffffff;
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #ffffff;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.team-member {
    background: #2d0a0a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    border: 1px solid #450a0a;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: #991b1b;
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #fca5a5;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* .member-affiliation {
    display: flex;
    gap: 1rem;
} */

.member-affiliation {
    color: #fca5a5;
    text-decoration: none;
    font-weight: 500;
}

/* Advisors Section */
.advisors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advisor {
    background: #783535;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #783535;
}

.advisor:hover {
    transform: translateY(-5px);
    border-color: #991b1b;
}


.advisor-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.advisor-info h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.advisor-role {
    color: #fca5a5;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.advisor-info p {
    color: #ffffff;
}

/* Mentee Section */
.mentees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mentee-card {
    background: #2d0a0a;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    border: 1px solid #450a0a;
}

.mentee-card:hover {
    transform: translateY(-5px);
    border-color: #991b1b;
}

.mentee-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.mentee-info {
    padding: 1.5rem;
}

.mentee-info h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.mentee-field {
    color: #fca5a5;
    font-weight: 600;
    margin-bottom: 0.5rem;
}


.mentee-degree {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.interest-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background: #450a0a;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #fca5a5;
}

/* Alumni Section */
.alumni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.alumni-card {
    background: #2d0a0a;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #450a0a;
}

.alumni-card:hover {
    transform: translateY(-5px);
    border-color: #991b1b;
}

.alumni-image img {
    width: 200px;
    height: 200px;
    /* border-radius: 50%; */
    margin-bottom: 1rem;
}

.alumni-info h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.alumni-field {
    color: #fca5a5;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.alumni-school {
    color: #98ffdd;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.alumni-achievement {
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.alumni-year {
    color: #9ca3af;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #783535;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #783535;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #ffffff;
    font-weight: 500;
}

/* Financial Section */
.financial-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.financial-stat {
    background: #2d0a0a;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid #2d0a0a;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #fca5a5;
    margin-bottom: 0.5rem;
}

.stat-content h3 {
    color: #ffffff;
}

.stat-content p {
    color: #ffffff;
}

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

.funding-card {
    background: #2d0a0a;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #450a0a;
}

.funding-card:hover {
    transform: translateY(-5px);
    border-color: #991b1b;
}

.funding-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.funding-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fca5a5;
    margin-bottom: 0.5rem;
}

.funding-card p {
    color: #ffffff;
}

.funding-date {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-top: 1rem;
}


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

.report-card {
    background: #2d0a0a;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    border: 1px solid #450a0a;
}

.report-card:hover {
    transform: translateY(-5px);
    border-color: #991b1b;
}

.report-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.report-card p {
    color: #ffffff;
    margin-bottom: 1rem;
}

.report-link {
    display: inline-block;
    background: #991b1b;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.report-link:hover {
    background: #7f1d1d;
}

.transparency-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.principle {
    background: #2d0a0a;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #450a0a;
}

.principle h4 {
    color: #fca5a5;
    margin-bottom: 0.5rem;
}

.principle p {
    color: #ffffff;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-details h3 {
    color: #2d0a0a;
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #991b1b;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details p {
    color: #450a0a;
}

.contact-form {
    background: #783535;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 2px solid #783535;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #450a0a;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #ffffff;
    color: #601010;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff9b9b;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #ffffff;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.submit-btn {
    background: #e8aaaa;
    color: rgb(0, 0, 0);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: #7f1d1d;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #2d0a0a;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #450a0a;
}

.faq-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #ffffff;
}

/* Social Section */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #ffa8a8;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ffa8a8;
}

.social-icon {
    font-size: 2rem;
}

/* Map Section */
.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    background: #2d0a0a;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 3rem;
    text-align: center;
    border: 1px solid #450a0a;
}

.map-content h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.map-content p {
    color: #ffffff;
}

/* Footer */
.footer {
    background: #5b0505;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-section p {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #450a0a;
    padding-top: 1rem;
    text-align: center;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #2d0a0a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .financial-stats {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .mentees-grid {
        grid-template-columns: 1fr;
    }

    .alumni-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    section {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .financial-stat {
        flex-direction: column;
        text-align: center;
    }
}

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

.about-card,
.feature-item,
.team-member,
.mentee-card,
.alumni-card,
.achievement-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
} 