/* General Styles */  
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: #2c3e50;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.logo {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
}

nav {
    display: flex;
    align-items: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
    transition: 0.3s;
}

nav a:hover {
    color: #1abc9c;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle div {
    width: 30px;
    height: 2px;
    background-color: white;
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        display: none;
        flex-direction: column;
        background: rgba(44, 62, 80, 0.9);
        width: 200px;
        position: absolute;
        top: 60px;
        right: 10px;
        border-radius: 10px;
        padding: 15px;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    }

    nav.active {
        display: flex;
        animation: fadeIn 0.3s ease-in-out;
    }

    nav a {
        display: block;
        margin: 10px 0;
        padding: 10px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Home Section */
.home {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 130vh;
    text-align: center;
    background: linear-gradient(135deg, #2c3e50 30%, #34495e 30%, #34495e 60%, #1f2833 60%);
    color: floralwhite;
    flex-wrap: wrap;
    padding: 20px;
}

.home-content {
    max-width: 600px;
    flex: 1;
}

.home-content h1 {
    font-size: 40px;
    margin-bottom: 10px;
}
.home-content h2{
    margin-bottom: 20px;
}

.home-content h1 span {
    color: #f1c40f;
}

.home-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: #f1c40f;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
    box-shadow: 6px 6px 8px white; /* Soft shadow */
}

.btn:hover {
    background: #f5f5f5;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}


/* Social Media Links */
.social-media {
    margin-top: 20px;
}

.social-media a {
    display: inline-block;
    color: white;
    font-size: 24px;
    margin: 0 10px;
    transition: 0.3s;
}

.social-media a:hover {
    color: #f1c40f;
    transform: translateY(-5px);
}

/* Profile Picture */
.home-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 300px;
}

.home-image img {
    width: 100%;
    max-width: 250px;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .home {
        flex-direction: column;
        text-align: center;
    }
    .home-content h1 {
        font-size: 32px;
    }
    .home-content p {
        font-size: 16px;
    }
    .social-media a {
        font-size: 20px;
    }
    .home-image {
        margin-top: 100px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.skills {
            text-align: center;
            padding: 100px 20px;
            background: linear-gradient(135deg, #2c3e50 30%, #34495e 30%, #34495e 60%, #1f2833 60%);
            color: white;
        }

        .skills h2 {
            font-size: 2.5em;
            margin-bottom: 20px;
            color: #00c3ff;
        }

        .skills-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            max-width: 1100px;
            margin: auto;
        }

        .skill-item {
            background: radial-gradient(circle, #2c3e50, #34495e, #1f2833);
            padding: 25px;
            border-radius: 12px;
            width: 280px;
            text-align: center;
            transition: all 0.3s ease-in-out;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .skill-item:hover {
            transform: scale(1.05);
            background: radial-gradient(circle, #2c3e50, #34495e, #1f2833);
        }

        .skill-item i {
            font-size: 3em;
            margin-bottom: 12px;
            color: #00c3ff;
        }

        .skill-item h3 {
            margin: 10px 0;
            font-size: 1.8em;
        }

/* Sleek & Modern About Me Section */
.about-me {
    background: linear-gradient(135deg, #2c3e50 30%, #34495e 30%, #34495e 60%, #1f2833 60%);
    color: #fff;
    padding: 90px 60px;
    text-align: left;
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
}

.about-me h2 {
    font-size: 2.2em;
    margin-bottom: 25px;
    color: #f1c40f;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-container {
    max-width: 850px;
    margin: auto;
    background: transparent;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.about-container p {
    font-size: 1.1em;
    margin: 18px 0;
    line-height: 1.8;
    color: #ecf0f1;
    font-weight: 400;
}

.about-container ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.about-container ul li {
    background:radial-gradient(circle, #2c3e50, #34495e, #1f2833);
    padding: 15px;
    margin: 12px 0;
    border-radius: 10px;
    font-size: 1.1em;
    color: white;
    font-weight: 500;
    border-left: 6px solid #f39c12;
    transition: all 0.4s ease-in-out;
}

.about-container ul li:hover {
    background: radial-gradient(circle, #2c3e50, #34495e, #1f2833);
    transform: scale(1.05);
}

/* Contact Me Section */
.contact-me {
    background: linear-gradient(135deg, #2c3e50 30%, #34495e 30%, #34495e 60%, #1f2833 60%);
    color: #ffffff;
    padding: 80px 60px;
    text-align: center;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
    font-family: 'Poppins', sans-serif;
}

.contact-me h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #3498db;
    text-transform: uppercase;
    font-weight: 600;
    border-bottom: 3px solid #ffffff;
    display: inline-block;
    padding-bottom: 5px;
}

.contact-container {
    max-width: 800px;
    margin: auto;
    background: radial-gradient(circle, #2c3e50, #34495e, #1f2833);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}

.contact-container p {
    font-size: 1.3em;
    margin: 15px 0;
    text-align: left;
    line-height: 1.8;
    font-weight: 500;
}

.contact-container a {
    color: #f1c40f;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.contact-container a:hover {
    color: #e67e22;
}
