* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
}

:root {
    --bg-color: #000000;
    --second-bg-color: #131313;
    --text-color: rgb(231, 228, 228);
    --main-color: #67f5f8;
}

html {
    font-size: 60%;
    overflow-x: hidden;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 4rem 3% 4rem;
    background: rgba(0, 0, 0, 0.3); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* Blur effect for background */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

.logo {
    font-size: 3.2rem;
    color: var(--text-color);
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
}

.logo span {
    text-shadow: 0 2px 25px var(--main-color); /* Text shadow for logo */
    color: var(--main-color); /* Ensure the logo span is always the main color */
}

.navbar {
    background: transparent; /* Make the navbar fully transparent */
    display: flex;
    align-items: center;
}

.navbar a {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-left: 4rem;
    font-weight: 500;
    transition: 0.3s ease;
    border-bottom: 3px solid transparent;
}

.navbar a:hover,
.navbar a.active {
    color: var(--main-color);
    border-bottom: 3px solid var(--main-color); /* This creates the underline */
}


#menu-icon {
    font-size: 3.6rem;
    color: var(--main-color);
    display: none;
}

section {
    min-height: 100vh;
    padding: 10rem 12% 10rem;
}

.home {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15rem;
    padding-left: 10%;
}

.home-content {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    text-align: left;
    justify-content: center;
    margin-top: 3rem;
    
    
}

.home-content h1 {
    font-size: 7rem;
    font-weight: 700;
    margin-top: 1.5rem;
    line-height: 1;
}

.home-content h3 {
    margin-bottom: 2rem;
    margin-top: 1rem;
    font-size: 3.5rem;
}

.home-content p {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.8;
    max-width: 1000px;
}

.home-img {
    border-radius: 50%;
}

.home-img img {
    position: relative;
    top: 3rem;
    width: 30vw;
    border-radius: 50%;
    box-shadow: 0 0 25px var(--main-color);
    cursor: pointer;
    transition: 0.4s ease-in-out;
}

.hoimg:hover {
    box-shadow: 0 0 25px var(--main-color), 0 0 25px var(--main-color), 0 0 25px var(--main-color);
}

.social-icons {
    display: flex;
    flex-direction:row; /* Align items vertically */
    justify-content: center;
    align-items: center; /* Center align buttons horizontally */
    gap: 1.5rem; /* Space between buttons */
    padding-top: 3%;
    padding-bottom: 5%;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4.5rem;
    height: 4.5rem;
    background: transparent;
    border: 2px solid var(--main-color);
    font-size: 2.5rem;
    border-radius: 50%;
    color: var(--main-color);
    transition: 0.3s ease-in-out;
}

.social-icons a:hover {
    color: var(--text-color);
    transform: scale(1.3) translateY(-5px);
    box-shadow: 0 0 25px var(--main-color);
    background-color: var(--main-color);
}

.btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    background-color: var(--main-color);
    box-shadow: 0 0 25px var(--main-color);
    border-radius: 4rem;
    font-size: 1.6rem;
    color: black;
    border: 2px solid transparent;
    letter-spacing: 0.1rem;
    font-weight: 600;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px var(--main-color);
}

.btn-group {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* Corrected gap unit */
}

.btn-group a:nth-of-type(2) {
    background-color: black;
    color: var(--main-color);
    box-shadow: 0 0 25px transparent;
}

.btn-group a:nth-of-type(2):hover {
    box-shadow: 0 0 25px var(--main-color);
    background-color: var(--main-color);
    color: black;
}
.text-animation {
    font-size: 3.2rem; /* Adjusted font size */
    font-weight: 600;
    min-width: 280px;
}

.text-animation span {
    position: relative;
}

.text-animation span::before {
    content: "Web Developer";
    color: var(--main-color);
    animation: words 16s infinite;
}

.text-animation span::after {
    content: "";
    background-color: var(--bg-color);
    position: absolute;
    width: calc(100% + 8px);
    height: 100%;
    border-left: 3px solid var(--bg-color);
    right: -8px;
    animation: cursor 0.6s infinite, typing 20s steps(14) infinite;
}
@keyframes cursor{
    to{
        border-left: 2px solid var(--main-color);
    }
}
@keyframes words{
    0%,
    25%{
        content: "Frontend designer";
    }
    26%,
    50%{
        content: "Web Designer";
    }
    51%,
    75%{
        content: "Web Developer";
    }
    76%,
    100%{
        content: "Backend Developer";
    }
}
@keyframes typing{
    10%,
    15%,
    20%,
    25%,
    30%,
    35%,
    40%,
    45%,
    50%,
    55%,
    60%,
    65%,
    70%,
    75%,
    80%,
    85%,
    90%,
    95%,
    100%{
        width: 0;
    }
    5%,
    20%,
    25%,
    40%,
    45%,
    60%,
    65%,
    80%,
    85%{
        width: calc(100%);
    }
}

/* About Section */
.about-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
    gap: 20px;
    margin-top: 9%;
    margin-left: 0%;
}

.about-content {
    max-width: 50%;
    padding-top: 50px;
}

.about-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.change-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 10px 0;
    color: #ffffff;
}

.change-text .highlight {
    color: #00ffff; /* Light blue highlight */
}

.about-content p {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 20px 0;
    color: #dcdcdc;
}

.contact-info {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
    gap: 10px;
}

.contact-info h5 {
    font-size: 1.5rem;
    margin: 0;
    color: #ffffff;
    margin-bottom: 0.5%;
}

.contact-info span {
    font-size: 1.3rem;
    margin-top: 5%;
    color: #00ffff; /* Light blue text */
}

.contact-info a {
    color: #00ffff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.btn-box {
    display: flex;
    gap: 15px;
    padding-top: 15%;
    padding-left: 29%;
}

.btn {
    display: inline-block;
    padding-top: 0%;
    padding: 12px 25px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c002e;
    background-color: #00ffff;
    text-decoration: none;
    border-radius: 100px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.6);
}

.profile-picture {
    position: relative;
    margin-left: 10px;
    max-width: 50%;
    text-align: center;
    margin-top: 4%;
}

.profile-picture .glow-effect {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #81ffee;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 60px rgba(0, 157, 189, 0.696);
}

.profile-picture img {
    width: 400px;
    height: 400px;
    border-radius: 100%;
    object-fit: cover;
    border: px solid #e3e3e2;
}


.heading {
    text-align: center;
    font-size: 3rem;
    margin-top: 2%;
    margin-bottom: 2rem;
    color: var(--main-color);
    text-shadow: 0 0 10px var(--glow-color), 0 0 20px var(--glow-color);
}

.timeline-items {
    position: relative;
    width: 80%;
    margin: auto;
    padding: 2rem 0;
}

.timeline-items::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--main-color);
    box-shadow: 0 0 10px var(--glow-color), 0 0 20px var(--glow-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) {
    text-align: right;
    padding-right: 55%;
}

.timeline-item:nth-child(even) {
    text-align: left;
    padding-left: 55%;
}

.timeline-dot {
    position: absolute;
    top: 10px;
    left: calc(50% - 12px);
    width: 24px;
    height: 24px;
    background: var(--main-color);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--glow-color), 0 0 30px var(--glow-color);
}

.timeline-date {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.timeline-content {
    background: var(--bg-color);
    border: 2px solid var(--main-color);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 0 10px var(--glow-color), 0 0 20px var(--glow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--glow-color), 0 0 50px var(--glow-color);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--main-color);
    text-shadow: 0 0 10px var(--glow-color);
}

.timeline-content p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
}
::-webkit-scrollbar{
    width: 15px;
}
::-webkit-scrollbar-thumb{
    background-color: var(--main-color);
}
::-webkit-scrollbar-track{
    background-color: var(--bg-color);
    width: 50px;
}

.skills {
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
}
.skills {
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
}

.skill {
    margin-bottom: 2rem;
}

.skill-label {
    font-size: 2rem;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.skill-bar {
    width: 100%;
    height: 3rem;
    background-color: var(--second-bg-color);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 0 10px var(--main-color);
    position: relative;
}

.skill-bar-inner {
    height: 100%;
    background-color: var(--main-color);
    color: var(--bg-color);
    font-size: 1.6rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2rem;
    box-shadow: 0 0 10px var(--main-color);
    position: absolute;
    left: 0;
    width: 0; /* Start with 0 width */
    animation: fill-bar 5s ease-in-out forwards; /* Add animation */
}

.skill-bar-inner:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px var(--main-color);
}

/* Animation keyframes for skill bar motion */
@keyframes fill-bar {
    0% {
        width: 0;
    }
    100% {
        width: var(--skill-level); /* Dynamically control width via CSS variables */
    }
}
.contact{
    background-color: var(--bg-color);
}
.contact h2{
    margin-bottom: 3rem;
    color: white;
}
.contact form{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin: 5rem auto;
    text-align: center;
}
.contact form .input-box{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.contact form .input-box input,
.contact form textarea{
    width: 100%;
    padding: 2.5rem;
    font-size: 1.8rem;
    color: var(--text-color);
    background: var(--second-bg-color);
    border-radius: 2rem;
    border: 2px solid var(--main-color);
    margin: 1.5rem 0;
    resize: none;
}
.contact form .btn{
    margin-top: 2rem;
}
.footer{
    position: relative;
    bottom: 0;
    width: 100%;
    padding: 40px 0;
    background-color: var(--second-bg-color);
}
.footer .social{
    text-align: center;
    padding-bottom: 25px;
    color: var(--main-color);
}
.footer .social a{
    font-size: 25px;
    color: var(--main-color);
    border: 2px solid var(--main-color);
    width: 42px;
    height: 42px;
    line-height: 42px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    margin: 0 10px;
    transition: 0.3s ease-in-out;
}
.footer .social a:hover{
    transform: scale(1.2)translateY(-10);
    background-color: var(--main-color);
    color: black;
    box-shadow:  0 0 25px var(--main-color);
}
.footer ul{
    margin-top: 0;
    padding: 0;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
}
.footer ul li a{
    color: white;
    border-bottom: 0;
    transition: 0.3s ease-in-out;
}
.footerul li a:hover{
    border-bottom: 3px solid var(--main-color);
}
.footer ul li{
    display: inline-block;
    padding: 0 15px;
}
.footer .copyright{
    margin-top: 50px;
    text-align:center;
    font-size: 16px;
    color: white;
}
.up i {
    font-size: 2.5em;
    color: #00ffff;
    animation: moveUpDown 2s infinite; /* Up and down animation */
    transition: color 0.3s ease; /* Smooth color transition on hover */
}

.up i:hover {
    color: #ffffff; /* Change color to magenta on hover */
}

/* Keyframes for up and down movement */
@keyframes moveUpDown {
    0%, 100% {
        transform: translateY(0); /* Original position */
    }
    50% {
        transform: translateY(-10px); /* Move up 10px */
    }
}

@media(max-width:991px){
    .header{
        padding: 2rem 3%;
    }
    section{
        padding: 10rem 3% 3rem;
    }


    /* Styles for screen widths less than or equal to 950px */
@media (max-width: 950px) {
    html{
        width: 100%;
    }
    /* Home Section */
    section.home {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        padding: 20px;
        text-align: center;
        width: 100%;
        box-sizing: border-box; /* Ensure padding is included in width calculation */
    }

    section.home .home-content {
        margin-top: 20px;
        width: 100%;
    }

    section.home .home-content h1 {
        font-size: 1.8rem;
        word-wrap: break-word; /* Ensure text doesn't overflow */
    }

    section.home .home-content h3 {
        font-size: 1.5rem;
        word-wrap: break-word;
    }

    section.home .home-content p {
        font-size: 1rem;
        line-height: 1.5;
        word-wrap: break-word;
    }

    section.home .home-img {
        max-width: 100%;
        text-align: center;
    }

    section.home .home-img img {
        width: 80%; /* Make sure image fits within container */
        height: auto;
        max-width: 350px; /* Set max-width for better scaling */
    }

    /* About Section */

    .about-content {
        max-width: 85%;
        padding-top: 50px;
    }
    section.about-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    section.about-section .profile-picture {
        margin-bottom: 20px;
        width: 100%;
        text-align: center;
    }

    section.about-section .profile-picture img {
        max-width: 80%;
        height: auto;
        border-radius: 50%;
        max-width: 250px; /* Limit image size for mobile */
    }

    section.about-section .about-content h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        word-wrap: break-word;
    }

    section.about-section .about-content h3 {
        font-size: 1.5rem;
        word-wrap: break-word;
    }

    section.about-section .about-content p {
        font-size: 1rem;
        line-height: 1.5;
        word-wrap: break-word;
        padding: 0 10px; /* Add some padding for readability */
    }

    section.about-section .contact-info {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }

    section.about-section .contact-info div {
        font-size: 1rem;
        word-wrap: break-word;
    }
    .profile-picture {
        position: relative;
        margin-left: -13%;
        max-width: 50%;
        text-align: center;
        margin-top: 4%;
      }
    .profile-picture .glow-effect {
        position: revert;
        border-radius: 50%;
        background: none;
        display: unset;
        justify-content: center;
        align-items: center;
        box-shadow: 0 0 60px rgba(0, 157, 189, 0.696);
    }
}

    .timeline-items::before{
        left: 7px;
    }
    .timeline-item:nth-child(odd){
        padding-right: 0;
        text-align: left;
    }
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even){
        padding-left: 37px;
    }
    .timeline-dot{
        left: 0;
    }
    .services{
        padding-bottom: 7rem;
    }
    .testimonils .wrapper{
        grid-template-columns: repeat(1,1fr);
    }
    .contact form{
        flex-direction: column;
    }
    .footer{
        padding: 2rem 3%;
    }
}
@media(max-width:895px){
    #menu-icon{
        display: block;
    }
    .navbar{
        position: absolute;
        top: 100%;
        right: 0;
        width: 50%;
        padding: 1rem 3%;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(20px);
        border-bottom-left-radius: 2rem;
        border-left: 2px solid var(--main-color);
        border-bottom: 2px solid var(--main-color);
        display: none;
    }
    .navbar.active{
        display: block;
    }
    .navbar a{
        display: block;
        font-size: 2rem;
        margin: 3rem 0;
        color: white;
    }
    .home{
        flex-direction: column-reverse;
    }
    .home-content h3{
        font-size: 2.6rem;
    }
    .home-content h1{
        font-size: 8rem;
        margin-top: 3rem;
    }
    .home-content p{
        max-width: 600px;
        margin: 0 auto;
    }
    .home-img img{
        width: 56vw;
    }
    .services h2{
        margin-bottom: 3rem;
    }
    .services-container{
        grid-template-columns: repeat(1,1fr);
    }
    .profile-picture {
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 50%;
        text-align: center;
        margin-top: 4%;
      }
    .btn {
        display: block ruby;
        padding-top: 0%;
        padding: 12px 25px;
        font-size: 1.5rem;
        font-weight: bold;
        color: #2c002e;
        background-color: #00ffff;
        text-decoration: none;
        border-radius: 100px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
      }
      .btn-box {
        display: flex;
        gap: 15px;
        padding-top: 20%;
        padding-left: 18%;
      }
}

