/* Global Styles */
html, body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    overflow-x: hidden;
}

body {
    padding: 0;
}

.container {
    max-width: 65%;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Header */
header {
    position: fixed;
    width: 100%;
    background-color: #1f1f1f;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    top: 0;
    left: 0;
    padding: 10px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header h1 {
    margin: 0;
    color: #ffffff;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

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

header nav ul li a {
    text-decoration: none;
    color: #bbbbbb;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #76c7ff;
}

header nav ul li a.active {
    color: #76c7ff;
    font-weight: bold;
}

/* Main Sections */
main {
    padding: 0;
}

section {
    margin: auto;
    margin-top: 80px;
    border-radius: 10px;
}
#home, #about, #projects{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    border-radius: 30px;
    transition: transform 0.3s;
    max-width: 65%;
}

/* Home */
#home {
    margin-top: 80px;
}

#home .content {
    max-width: 600px;
}

#home img {
    border-radius: 50%;
    width: 250px;
    height: 250px;
}

#home .btn {
    display: inline-block;
    background: #76c7ff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background 0.3s;
}

#home .btn:hover {
    background: #5ab1f8;
}

#home .socials a {
    color: #76c7ff;
    margin: 10px;
    font-size: 24px;
    text-decoration: none;
}

#about .about-container {
    max-width: 100%;
}

#about .stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

#about .stats div {
    text-align: center;
}

#about .stats span {
    display: block;
    font-size: 24px;
    color: #76c7ff;
}

#about .btn {
    display: inline-block;
    background: #76c7ff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background 0.3s;
}

#about .btn:hover {
    background: #5ab1f8;
}

/* Skills */
#skills {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 40px;
    border-radius: 30px;
    transition: transform 0.3s;
}

#skills .skill {
    margin-top: 20px;
}

#skills .bar {
    background: #333333;
    border-radius: 5px;
    margin-top: 10px;
    overflow: hidden;
    position: relative;
}

#skills .bar-fill {
    background: #76c7ff;
    padding: 10px;
    color: white;
    text-align: right;
    border-radius: 5px;
}

/* Projects */
#projects {
    overflow: hidden;
}
.btn {
    display: inline-block;
    background: #76c7ff;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background 0.3s;
}

.btn:hover {
    background: #5ab1f8;
}
/* Swiper */
.swiper-container {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.swiper-button-next,
.swiper-button-prev {
    color: #007BFF;
    position: absolute;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-pagination {
    text-align: center;
    position: absolute;
    width: 100%;
}

.swiper-pagination-bullet {
    background: #007BFF;
}
.portfolio__img1 {
    padding-left: 5%;
    max-width: 500px;
}
.portfolio__img2 {
    padding-left: 5%;
    max-width: 200px;
}
.portfolio__data {
    margin-block-start: auto;
}
/* Education */
#education {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s;
    max-width: 65%;
}

/* Footer */
footer {
    background: #1f1f1f;
    color: white;
    width: 100%;
    position: relative;
    padding: 20px;
    text-align: center;
}

.containerfooter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.footer__title {
    margin: 0;
}

.footer__subtitle {
    margin: 0;
}

.footer__socials {
    display: flex;
    gap: 10px;
}

.social-icon {
    font-size: 1.5rem;
    color: #333;
    text-decoration: none;
}

.footer__copyright {
    margin-top: 10px;
}

.socials {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.social-icon {
    color: #76c7ff;
    font-size: 24px;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #5ab1f8;
}
