/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    background-color: #002f1b;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #001C16;
  opacity: 0.87;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/earth.png') no-repeat center center;
    background-size: 100% auto;
    opacity: 0.1;
    z-index: 2;
}

.hero-content {
    max-width: 1000px;
    padding: 20px;
    position: relative;
    z-index: 3;
}

.hero-logo {
    max-width: 200px;
    margin-bottom: 30px;
    height: 50px;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

/* Overview Section */
.overview {
    background-color: #ffffff;
}

.overview h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.overview-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 1.25rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #e9ecef;
}

.feature-full {
    width: 100%;
    margin: 30px auto 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #e9ecef;
}

.feature-full .website-link {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 40px;
    font-size: 1.2rem;
    color: #1a472a;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #1a472a;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.feature-full .website-link:hover {
    background-color: #1a472a;
    color: white;
    text-decoration: none;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 71, 42, 0.1);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.feature:hover .feature-icon-wrapper {
    transform: scale(1.1);
}

.feature-list {
    list-style: none;
    margin-top: 20px;
    text-align: left;
    padding: 0 20px;
}

.feature-list li {
    color: #4a4a4a;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.feature-list li::before {
    content: "•";
    color: #1a472a;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    color: #1a472a;
}

.feature h3 {
    color: #1a472a;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.feature p {
    color: #4a4a4a;
    font-weight: 400;
}

.website-link {
    display: inline-block;
    margin-top: 20px;
    color: #1a472a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.website-link:hover {
    color: #002f1b;
    text-decoration: underline;
}

/* Team Section */
.team {
    background-color: white;
}

.team h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 3.5rem;
    color: #1a472a;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.team-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.25rem;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.team-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.team-member {
    text-align: center;
}

.member-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
}

.team-member img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    margin-bottom: 20px;
    object-fit: cover;
}

.team-member h3 {
    color: #1a472a;
    margin-bottom: 8px;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.team-member p {
    color: #666;
    font-size: 1.1rem;
    font-weight: 400;
}

.member-title {
    color: #1a472a;
    font-weight: 600;
    margin-bottom: 10px;
}

.member-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.techstars {
    text-align: center;
    margin-top: 60px;
    
}

.techstars img {
    max-width: 200px;
    height: 24px;
}

/* Contact Section */

.section-padding{
    padding-top: 100px;
}

.contact {
    background-color: #ffffff;
}

.contact h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.contact-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    color: #4a4a4a;
    font-size: 1.1rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.contact-info h3 {
    color: #1a472a;
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info p {
    color: #4a4a4a;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

/* Remove social links and overlay styles */
.social-links,
.social-link,
.member-overlay {
    display: none;
}

/* Footer */
footer {
    margin-top: 40px;
    background-color: #1a1a1a;
    color: white;
    padding: 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-info p {
    color: #a0a0a0;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .team h2 {
        font-size: 2.5rem;
    }

    .team-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .team-content {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .team-member img {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info,
    .contact-form-container {
        padding: 30px;
    }

    .feature-list {
        padding: 0 10px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-info p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .team-content {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 30px;
    }

    .contact-form-container {
        padding: 30px;
    }
}

/* Responsive Design for Team Section */
@media (max-width: 1200px) {
    .team-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
} 