* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Hero Section */
#hero {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    text-align: center;
    padding: 100px 20px;
}

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

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

/* Services Section */
#services {
    padding: 50px 20px;
    text-align: center;
}

.service-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-card {
    width: 250px;
    padding: 20px;
    margin: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: scale(1.05);
}

.service-card i {
    font-size: 3rem;
    color: #2575fc;
    margin-bottom: 15px;
}

.service-button {
    display: inline-block;
    background-color: #2575fc;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
}

/* Contact Section */
#contact {
    background-color: #f4f4f4;
    text-align: center;
    padding: 50px 20px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.contact-link {
    text-decoration: none;
    color: #2575fc;
    font-size: 1.2rem;
}

/* Projects Section */
#projects {
    background-color: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

.projects-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.project-card {
    width: 350px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: scale(1.05);
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-details {
    padding: 20px;
    text-align: left;
}

.project-details h3 {
    margin-bottom: 10px;
    color: #2575fc;
}

.project-tags {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.project-tags span {
    background-color: #f0f0f0;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #666;
}

.project-link {
    display: inline-block;
    background-color: #2575fc;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

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