/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #080808;
    color: #fff;
}

#header {
    width: 100%;
    height: 100vh;
    background: #080808;
}

.container {
    padding: 80px 10%;
}

/* Navbar */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5em;
    z-index: 1000;
    padding: 10px 10%;
    background-color: transparent;
    transition: all 0.3s ease;
}

nav.Sticky {
    background-color: rgba(0, 0, 0, 0.8);
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

nav img {
    width: 90px;
    height: auto;
    margin-left: -20px;
}

nav ul li {
    list-style: none;
}

nav ul li a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    position: relative;
}

nav ul li a::after {
    content: '';
    width: 0;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: width 0.5s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Header */
.header-text {
    margin-top: 20%;
    font-size: 30px;
}

.header-text h1 {
    font-size: 60px;
    margin-top: 20px;
}

.header-text h1 span {
    color: aquamarine;
}

/* About Section */
#about {
    padding: 80px 0;
    color: #fff;
    min-height: 100vh;
}

.about-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    width: 90%;
    align-self: center;
    margin: 0 auto;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding-left: 2.5%;
    flex-wrap: wrap;
}

.about-col-1, .about-col-2, .about-col-3 {
    width: 32%;
}

.about-col-1 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-left: -20px;
}

.about-text {
    padding-top: 5px;
    font-size: 18px;
}

.about-col-2 ul {
    padding-left: 20px;
}

.about-col-2 {
    padding-top: 30px;
    padding-left: 50px;
}

.about-col-2 li {
    list-style: disc;
    font-size: 20px;
    padding-top: 20px;
}

.rank {
    color: #ffac14;
}

.about-col-3 img {
    width: 80%;
    height: auto;
    max-width: 100%;
    border-radius: 15px;
}

/* Experiences Section */
.experience {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.experience h1 {
    margin-bottom: 20px;
}

.slider-wrapper {
    position: relative;
    max-width: 48rem;
    margin: 0 auto;
}

.slider {
    display: flex;
    aspect-ratio: 4/3;
    height: 400px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
    border-radius: 0.5rem;
}

.slider img {
    flex: 1 0 100%;
    scroll-snap-align: start;
    aspect-ratio: 4/3;
}

.slider-nav {
    display: flex;
    column-gap: 1rem;
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.slider-nav a {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.75;
    transition: opacity ease 250ms;
}

.col-1 {
    list-style-type: none;
    width: 40%;
}

.col-1 li {
    font-size: 20px;
    margin-top: 20px;
}

.col-1 p {
    margin-right: 10px;
}

.col-2 {
    width: 50%;
}

/* Contact Section */
#contact {
    padding: 50px 0;
    padding-top: 80px;
}

#contact h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icons a {
    display: inline-flex;
    font-size: 30px;
    color: #ff004f;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    color: #fff;
    position: relative;
    width: 100%;
    margin-top: 20px;
}

footer p {
    font-size: 17px;
    margin: 0;
}

/* Hide scrollbar in slider */
.slider::-webkit-scrollbar {
    display: none;
}
