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

.container {
    width: 80%;
    margin: 0 auto;
    max-width: 1200px;
}

.hero {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
}



.hero-text h1 {
    font-size: 3rem;
}

.hero .cta {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background: #fff;
    color: #2575fc;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    
}

hero .cta:hover {
    background-color: #2575fc;
}

.hero .cta:hover {
    background: #f0f0f0;
}

.navbar {
    background: #333;
    color: #fff;
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.navbar ul li {
    margin: 0 15px;
}

.navbar ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

.about {
    padding: 50px 0;
    text-align: center;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.projects {
    background: #f9f9f9;
    padding: 50px 0;
    text-align: center;
}

.project-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.project-card {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 250px;
    text-align: left;
}

.project-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background: #2575fc;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.project-button:hover {
    background: #6a11cb;
}

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.project-card p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer a {
    color: #6a11cb;
    text-decoration: none;
}

