/* General Styling */
body {
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #ff9a9e, #fad0c4, #fad0c4, #ffdde1);
    color: #333;
}

/* Header Section */
header {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

header h1 {
    margin: 0;
    font-size: 32px;
    font-weight: bold;
}

header p {
    margin-top: 5px;
    font-size: 18px;
    font-weight: lighter;
}

/* Navigation */
nav ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #ffe600;
}

/* Sections */
section {
    padding: 40px;
    margin: 20px auto;
    width: 80%;
    background: white;
    border-radius: 12px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
}

section:hover {
    transform: scale(1.02);
}

/* Project Cards */
.project {
    background: #ffedb7;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.project:hover {
    transform: translateY(-5px);
    background: #ffdb6e;
}

/* Skills List */
ul {
    list-style: none;
    padding: 0;
}

ul li {
    background: #4facfe;
    color: white;
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

ul li:hover {
    background: #00f2fe;
}

/* Contact Links */
#contact p a {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

#contact p a:hover {
    color: #ff3b3b;
}
img {
    border-radius: 100%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
/* Footer */

footer {
    background: linear-gradient(45deg, #ff758c, #ff7eb3);
    color: white;
    text-align: center;
    padding: 5px;
    font-size: 12px;
    position: fixed;
    bottom: 0;
    width: 40%;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}
/* Responsive Design */
@media (max-width: 768px) {
    section {
        width: 90%;
    }

    nav ul li {
        display: block;
        margin-bottom: 10px;
    }

    footer {
        width: 90%;
    }
}
