
:root {
    --primary: #020500;
    --secondary: #6b3601;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --dark: #503c2c;
    --text: #333;
    --text-light: #7f8c8d;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text);
    line-height: 1.6;
    background-color: #f9f9f9;
    padding-top: 70px;

}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fafbf9;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);

}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: rgb(24, 52, 5);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;

}

.nav-links a:hover {
    color: var(--secondary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: rgb(17, 2, 2);
    font-size: 1.5rem;
    cursor: pointer;

}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

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

}

header {
    background-color: #fafef6;
    color: white;
    padding: 60px 0;
    text-align: center;

}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--primary);
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #0a0502;

}

p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.hero {
    padding: 100px 0;
    background: linear-gradient(to bottom right, rgba(101, 87, 56, 0.78), rgba(248, 224, 18, 0.48));
    color: white;
    text-align: center;

}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,0.9);
}

.btn {
    display: inline-block;
    background-color: #6c8c4b;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;

}

.btn:hover {
    background-color: #174b05;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);

}

.founders {
    padding: 80px 0;
    background-color: white;
}

.founders-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.founder-card {
    flex: 1;
    height: 644px;
    min-width: 300px;
    max-width: 2200px;
    background: #f8fef5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

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

.founder-info {
    padding: 30px;
}

.founder-role {
    color: var(--secondary);
    font-weight: bold;
    margin-bottom: 10px;
}

.team {
    padding: 80px 0;
    background-color: var(--light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.team-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.team-info {
    padding: 20px;
}

.team-role {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-links a {
    color: var(--primary);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary);
}

.cta {
    padding: 80px 0;
    text-align: center;
    background-color: white;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

footer {
    background-color: #f3f9f0;
    color: white;
    text-align: center;
    padding: 30px 0;

}

@media (max-width: 768px) {
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #fcfefb;
        padding: 20px;
        gap: 15px;
        align-items: center;
    
    }

    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .founders-container {
        flex-direction: column;
        align-items: center;
    }
    
    .founder-card {
        width: 100%;
        max-width: 100%;
    }
}


.navcl{
    color: #020500;
}


