/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #121212;
    color: white;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: white;
}

/* Header styles */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 50px;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100%;
    z-index: 100;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.logo-img {
    width: 300px;
    height: 300px;
    border: 2px solid #4d94ff;
    border-radius: 10px;
    padding: 3px;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(77, 148, 255, 0.5);
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(77, 148, 255, 0.8);
}

.logo h1 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 10px;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    position: relative;
    padding: 5px 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #4d94ff;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #4d94ff;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Enhanced Hero Section Styles */
.hero {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('/api/placeholder/1600/900');
    background-size: cover;
    background-position: center;
    background-color: #121212;
    position: relative;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
    min-height: 100vh;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(18, 18, 18, 0.5) 0%, rgba(18, 18, 18, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-text-container {
    margin-top: 20px;
}

.hero h2 {
    font-size: 54px;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    background: linear-gradient(90deg, #4d94ff, #7fc6ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.highlight {
    color: #ffffff;
}

.tagline {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #bbb;
    letter-spacing: 1px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 700px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.primary-btn {
    background-color: #4d94ff;
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(77, 148, 255, 0.4);
}

.primary-btn:hover {
    background-color: #3a85f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 148, 255, 0.5);
}

.secondary-btn {
    background-color: transparent;
    color: white;
    border: 2px solid #4d94ff;
}

.secondary-btn:hover {
    background-color: rgba(77, 148, 255, 0.1);
    border-color: #4d94ff;
}

/* Data Dots Background */
.data-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.dot {
    position: absolute;
    background-color: rgba(77, 148, 255, 0.7);
    border-radius: 50%;
}

/* Mission Section Styles */
.mission-section {
    background-color: #0a0a0a;
    padding: 100px 20px 60px;  /* Reduced bottom padding from 100px to 60px */
    text-align: center;
}

.mission-container {
    max-width: 700px;  /* Reduced from 900px to 700px */
    margin: 0 auto;
    position: relative;
}

.mission-title {
    font-size: 36px;
    color: #fff;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.mission-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4d94ff, #7fc6ff);
}

.mission-statement-box {
    background: rgba(26, 26, 26, 0.7);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(77, 148, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 600px;  /* Added max-width to make it narrower */
    margin: 0 auto;
}

.mission-statement-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(77, 148, 255, 0.2);
}

.mission-statement-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4d94ff, #7fc6ff);
}

.mission-statement {
    font-size: 20px;
    line-height: 1.8;
    color: #fff;
    font-weight: 400;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Removed the ::after pseudo-element with the quotation mark */

.mission-divider {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, rgba(77, 148, 255, 0.1), rgba(77, 148, 255, 0.8), rgba(77, 148, 255, 0.1));
    margin: 40px auto;
}

@media (max-width: 768px) {
    .mission-statement-box {
        padding: 30px 20px;
    }
    
    .mission-statement {
        font-size: 18px;
    }
}

/* Team Section Styles */
.team-section {
    padding: 80px 20px 60px;  /* Reduced top padding from 120px to 80px */
    background-color: #121212;
    min-height: 100vh;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #fff;
    padding-bottom: 15px;
    position: relative;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4d94ff, #7fc6ff);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 30px 20px;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(77, 148, 255, 0.2);
}

.member-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid rgba(77, 148, 255, 0.5);
    box-shadow: 0 0 10px rgba(77, 148, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover .member-img {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(77, 148, 255, 0.6);
}

.member-info {
    padding: 10px;
}

.member-name {
    font-size: 24px;
    color: #fff;
    margin-bottom: 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.member-role {
    font-size: 18px;
    color: #4d94ff;
    margin-bottom: 10px;
    font-weight: 500;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.member-degree {
    font-size: 16px;
    color: #aaa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Footer styles */
footer {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    text-align: center;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 42px;
    }

    .hero p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .mission-title {
        font-size: 28px;
    }
    
    .mission-statement {
        font-size: 20px;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .member-img {
        width: 150px;
        height: 150px;
    }

    .footer-content {
        flex-direction: column;
        gap: 10px;
    }
}

/* Contact Form Styles */
.contact-section {
    padding: 160px 20px 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 42px;
    margin-bottom: 30px;
    color: #fff;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4d94ff, #7fc6ff);
}

.contact-card {
    background: rgba(26, 26, 26, 0.7);
    border-radius: 12px;
    padding: 50px;
    margin-top: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(77, 148, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(77, 148, 255, 0.2);
}

.contact-method {
    margin: 25px 0;
}

.contact-icon {
    font-size: 40px;
    color: #4d94ff;
    margin-bottom: 15px;
}

.contact-label {
    font-size: 20px;
    color: #aaa;
    margin-bottom: 10px;
}

.contact-value {
    font-size: 24px;
    color: #fff;
}

.contact-value a {
    color: #4d94ff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.contact-value a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #4d94ff;
    transition: width 0.3s ease;
}

.contact-value a:hover {
    color: #7fc6ff;
}

.contact-value a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.location-info {
    margin-top: 40px;
    font-size: 18px;
    color: #aaa;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-title {
        font-size: 36px;
    }
    
    .contact-value {
        font-size: 20px;
    }
}

/* Events section styles */
.events {
    padding: 100px 20px;
    background-color: #121212;
    color: white;
    text-align: center;
}

.events .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.events h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #fff;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.events h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #4d94ff, #7fc6ff);
}

.events .month {
    margin-bottom: 40px;
}

.events .month h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #4d94ff;
}

.events .month ul {
    list-style: none;
    padding: 0;
}

.events .month ul li {
    font-size: 18px;
    margin-bottom: 10px;
    color: #bbb;
}