 @import url('https://fonts.googleapis.com/css2?family=Dancing+Script&family=IBM+Plex+Mono&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Header Section */
.header {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.hero-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #fff;
    margin-bottom: 20px;
}

.main-heading {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.main-heading span {
    color: #ffe600;
}

.tagline {
    font-size: 1.2rem;
    font-style: italic;
}

/* Projects Section */
.projects-section {
    padding: 50px 20px;
    text-align: center;
}

.section-heading {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2575fc;
}

.project-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

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

.project-title {
    font-size: 1.5rem;
    margin: 15px;
}

.project-description {
    font-size: 1rem;
    padding: 0 15px 15px;
    color: #555;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

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

.footer a:hover {
    text-decoration: underline;
}