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

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

/* Header */
.header {
    background: #2F393B;
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    font-family: "Lexend", sans-serif;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 50px;
    width: auto;
    transition: opacity 0.3s;
}

.logo-image:hover {
    opacity: 0.8;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #00bcd4;
}

/* Hero Section */
.hero {
    background: #2F393B;
    color: white;
    padding: 120px 0 80px;
    text-align: left;
    font-family: "Lexend", sans-serif;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.cta-button {
    background: #00bcd4;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}
.cta-button a{
    color: white;
    font-size: 1.1rem;
    font-family: "Lexend", sans-serif;
    text-decoration: none;
}
.cta-button {
    position: relative;
    overflow: hidden;
  }
.cta-button::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: transform 0.5s ease-out;
    z-index: 0;
  }
.cta-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
  }
.cta-button:hover {
    background: #0d6a72;
  }

.hero-logo {
    text-align: center;
}

.hero-logo-icon {
    width: 500px;
    height: 500px;
    margin: 0 auto;
    background-image: url('catapult-logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #fff;
    font-family: "Lexend", sans-serif;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2F393B;
}

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

.about-card {
    background: #2F393B;
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: left;
}

.about-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

.about-card p {
    line-height: 1.7;
    font-weight: 250;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: white;
    font-family: "Lexend", sans-serif;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.team h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2a2a2a;
}

.team-member1 {
    background: #2F393B;
    color: white;
    border-radius: 500px 50px 50px 500px;
    overflow: hidden;
    margin-bottom: 10rem;
    display: flex;
    align-items: center;
    text-align: left;
}
.team-member2 {
    background: #2F393B;
    color: white;
    border-radius: 50px 500px 500px 50px;
    overflow: hidden;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    text-align: left;
}

.team-photo {
    width: 500px;
    height: 500px;
    background: #ccc;
    border-radius: 500px 500px 500px 500px;
    
}

.team-info {
    padding: 2rem;
}

.team-info h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.team-info h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.team-info p {
    line-height: 1.8;
    font-weight: 250;
}

/* Partners Section */
.partners {
    margin-bottom: 5rem;
    background: #fff;
    font-family: "Lexend", sans-serif;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.partners h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2a2a2a;
}
 .partners-image{
     width: 100%;
 }



/* Contact Section */
.contact {
    padding: 80px 0;
    background: #fff;
    color: #2F393B;
    font-family: "Lexend", sans-serif;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    text-align: left;
    margin-top: 10rem;
    margin-left: 5rem;
    font-size: 1.5rem;
}

.contact-info h3 {
    color: #2F393B;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.hours{
    margin-top: 2rem;
}


.contact-form {
    background: #2F393B;
    padding: 2rem;
    border-radius: 15px;
}

.contact-form h3 {
    color: #fff;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: #ddd;
    color: #333;
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.submit-btn {
    background: #00bcd4;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #008c9e;
}

/* Footer */
.footer {
    background: #2F393B;
    color: white;
    padding: 2rem 0;
    text-align: center;
    font-family: "Lexend", sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
}



/* Responsive Design */
@media (max-width: 893px) {
    .team-member1, .team-member2{
        display: grid;
        grid-template-columns: 1fr 1fr;    
        border-radius: 50px;  
    }
    .team-photo{
        margin: 0 auto;
        grid-row: 1;
        grid-column: 2;
        scale: 60%;
    }
    .team-info p{
       
    }
}
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero-logo h2 {
        font-size: 2.5rem;
    }

    .team-member {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .partners-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        display: none;
    }
}