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

/* Body styling */
body {
    font-family: 'Arial', sans-serif;
    background: #f0f1f6;
    color: #333;
    line-height: 1.6;
    padding-top: 40px;
}

/* Header styling */
header {
    background: linear-gradient(135deg, #6a11cb, #2575fc); /* Gradient background */
    color: white;
    padding: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

header .container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #f39c12; /* Hover effect for links */
}

/* Main content styling */
main {
    padding: 40px 0;
}

main .container {
    width: 80%;
    margin: 0 auto;
}

/* Section styling */
section {
    margin-bottom: 40px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

section:hover {
    transform: translateY(-10px); /* Hover effect for sections */
}

section h2 {
    font-size: 2rem;
    color: #2575fc;
    margin-bottom: 15px;
}

section p, section ul {
    font-size: 1rem;
    color: #555;
}

section ul {
    list-style: none;
}

section ul li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

section ul li:before {
    content: "•";
    color: #2575fc;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

/* About section profile image */
.profile-img {
    text-align: center;
    margin-bottom: 20px;
}

.profile-img img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid #2575fc;
    transition: transform 0.3s ease;
}

.profile-img img:hover {
    transform: scale(1.1); /* Zoom effect on hover */
}

/* Footer styling */
footer {
    background: #2c3e50;
    color: white;
    padding: 20px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

footer p {
    font-size: 1rem;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}




