/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: #ededed;
    background-color: #081b29;
    scroll-behavior: smooth;
    line-height: 1.6;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 25px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    animation: slideRight 1s ease forwards;
}

.navbar {
    display: flex;
    gap: 20px;
}

.navbar a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background-color 0.3s, color 0.3s;
    position: relative;
    overflow: hidden;
}

.navbar a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #0ef;
    transition: all 0.3s;
    z-index: -1;
}

.navbar a:hover::before {
    left: 0;
}

.navbar a:hover {
    color: #081b29;
}

/* Home Section Styles */
.home {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: url("background_wallpapaer.jpg") no-repeat center center/cover;
    padding: 0 10%;
    text-align: center;
}

.home-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #0ef;
    animation: fadeInDown 1s ease forwards;
}

.home-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInDown 1.2s ease forwards;
}

.home-content h3 span {
    color: #0ef;
}

.home-content p {
    font-size: 18px;
    margin-bottom: 30px;
    animation: fadeInDown 1.4s ease forwards;
}

.home-sci {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    animation: fadeInDown 1.6s ease forwards;
}

.home-sci a {
    color: #0ef;
    font-size: 20px;
    margin: 0 10px;
    transition: transform 0.3s;
}

.home-sci a:hover {
    transform: scale(1.2);
}

.btn-box {
    display: inline-block;
    padding: 12px 30px;
    background: #0ef;
    color: #081b29;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: box-shadow 0.3s, transform 0.3s;
    animation: fadeInDown 1.8s ease forwards;
}

.btn-box:hover {
    box-shadow: 0 0 15px #0ef;
    transform: translateY(-5px);
}

/* About Section Styles */
.about {
    padding: 100px 10%;
    background-color: #0a2a43;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.about-img {
    flex: 1 1 300px;
    text-align: center;
}

.about-img img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #0ef;
    box-shadow: 0 0 20px #0ef;
    transition: transform 0.3s;
}

.about-img img:hover {
    transform: scale(1.05);
}

.about-content {
    flex: 1 1 500px;
    color: #fff;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
}

.about-content h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: #0ef;
    border-radius: 5px;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 30px;
    text-align: justify;
}

.personal-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item {
    width: 45%;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    border-bottom: 1px solid #0ef;
    padding-bottom: 8px;
}

.info-item span:first-child {
    font-weight: 500;
    color: #0ef;
}

.info-item span:last-child {
    font-weight: 300;
    text-align: right;
}

.about-content .btn-box {
    margin-top: 10px;
}

/* Section General Styles */
.section {
    padding: 100px 10%;
    text-align: center;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0ef;
    position: relative;
}

.section h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: #0ef;
    border-radius: 5px;
}

.section p {
    font-size: 18px;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
}

/* Keyframes Animations */
@keyframes slideRight {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInDown {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .navbar {
        display: none;
    }

    .header {
        padding: 20px;
        justify-content: space-between;
    }

    .about {
        padding: 80px 20px;
    }

    .section {
        padding: 80px 20px;
    }

    .about-img img {
        width: 250px;
        height: 250px;
    }

    .info-item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .home-content h1 {
        font-size: 36px;
    }

    .home-content h3 {
        font-size: 20px;
    }

    .home-content p {
        font-size: 16px;
    }
}
/* Skills Section Styles */
/* Skills Section Styles */
.skills {
    padding: 100px 10%;
    background-color: #0a2a43;
    color: #fff;
    text-align: center;
}

.skills-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.skill-item {
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px;
}

.skill-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #0ef;
}

.skill-bar {
    background-color: #081b29;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.skill-progress {
    height: 20px;
    background-color: #0ef;
    border-radius: 25px;
    width: 0;
    transition: width 1.5s ease-in-out;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .skill-item {
        max-width: 100%;
    }
}
/* Contact Section Styles */
.contact {
    padding: 100px 10%;
    background-color: #0a2a43;
    color: #fff;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0ef;
    position: relative;
}

.contact h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: #0ef;
    border-radius: 5px;
}

.contact p {
    font-size: 18px;
    color: #fff;
    max-width: 600px;
    margin: 0 auto 30px;
}

#contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: #0ef;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #0ef;
    border-radius: 5px;
    background-color: #081b29;
    color: #fff;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0ef;
    outline: none;
}

.btn-box {
    display: inline-block;
    padding: 12px 30px;
    background: #0ef;
    color: #081b29;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: box-shadow 0.3s, transform 0.3s;
}

.btn-box:hover {
    box-shadow: 0 0 15px #0ef;
    transform: translateY(-5px);
}
