html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', Courier;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: #7145e9;
}

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(10, 13, 56, 0.6);
    padding: 20px 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.navbar li {
    margin-left: 20px;
}

.navbar a {
    color: white;
    font-weight: 600;
    padding: 10px 15px;
    text-transform: uppercase;
}

.navbar a:hover {
    background-color: #775cee;
    border-radius: 5px;
}

.hero {
    position: relative;
    height: 100vh;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.primary-btn {
    background-color: #7145e9;
    color: white;
}

.primary-btn:hover {
    background-color: #b16df0;
}

.secondary-btn {
    background-color: transparent;
    border: 2px solid #7145e9;
    color: white;
}

.secondary-btn:hover {
    background-color: #7145e9;
    color: white;
}

.about {
    padding: 100px 0;
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-image img {
    width: 500px;
    border-radius: 10px;
}

.features {
    padding: 80px 0;
    background-color: #f4f4f4;
}

.features-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.feature {
    width: 30%;
}

.feature img {
    width: 100%;
    border-radius: 10px;
}

.feature:hover img {
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.team-section {
    padding: 100px 20px;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 220px;
    text-align: center;
    transition: transform 0.3s;
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.team-member h3 {
    margin: 10px 0;
    font-size: 1.5rem;
}

.team-member p {
    font-size: 1rem;
}

.team-member:hover {
    transform: scale(1.05);
}

footer {
    background-color: #0a0d38;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: auto;
}

footer p {
    margin: 0;
    font-size: 1rem;
}

footer a {
    color: #7145e9;
    text-decoration: none;
}

footer a:hover {
    color: #7145e9;
    text-decoration: underline;
}
