* {
    margin: 0;
    padding: 0;
}


nav {
    display: flex;
    justify-content: space-around;
    /* background-color: rgb(33,2,76); */
    background-image: linear-gradient(to right, rgb(33, 2, 76), rgb(4, 47, 177));
    color: aliceblue;
    padding: 18px 0;
}

.logo {
    font-family: "Playwrite AU QLD", cursive;
    font-size: 22px;
    font-weight: bolder;
}

a{
    color: white;
    text-decoration: none;
    cursor: pointer;
}
nav ul {
    display: flex;
    gap: 16px;
    align-items: center;
}

nav ul li {
    list-style-type: none;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
}

nav ul li a{
    color: white;
    text-decoration: none;
    cursor: pointer;
}




nav ul li a:hover{
    color: rgba(141, 132, 220);
    text-decoration: none;
    cursor: pointer;
}

.hero {
    background-image: linear-gradient(to right, rgb(193, 234, 234), rgb(176, 185, 231));
    height: 65vh;
    display: flex;
    justify-content: center;
    gap: 130px;
    align-items: center;
    font-family: "Roboto", sans-serif;
}
.hero-left{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-left .one {
    font-size: 60px;
    color: rgb(33, 2, 76);
    font-weight: bolder;

}

.hero-left .two {
    font-size: 30px;
}

.hero-left .three {
    font-size: 20px;
    color: rgb(74, 24, 143);
    font-weight: none;

}

.bold {
    font-weight: bold;
}


.hero-right img {
    width: 45vh;
    height: 30vh;
    border-radius: 14px;
}

.button-container {
    padding: 0 19px;
}

.btn {
    background: linear-gradient(135deg, #8a2be2, #5b36c8);
    padding: 12px 24px;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;

    box-shadow: 0 4px 15px rgba(91, 54, 200, 0.4);

    transition: all 0.3s ease;
}

/* Hover Effect */
.btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 25px rgba(91, 54, 200, 0.6);

    background: linear-gradient(135deg, #9d4dff, #4f46e5);
}


/* Skills */
.skills{
    background-image: linear-gradient(to right, rgb(193, 234, 234), rgb(176, 185, 231));
    padding-bottom: 30px ;
    
}

.skills h2 {
    text-align: center;
    font-size: 36px;
    padding: 10px 0;
}

.skill-boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.skill {
    background-color: #5b36c8;
    padding: 15px 25px;
    border-radius: 30px;
    border: 1px solid #334155;
    color: white;
}

.project {
    display: flex;
    align-items: center;
    border-top: 2px solid rgb(136 165 264 / 25%);
    padding: 22px 100px;
    font-family: "Roboto", sans-serif;
    background-image: linear-gradient(to right, rgb(191, 191, 239), rgb(173, 233, 194));
    
}

.project-image img {
    width: 29.5vw;
    margin: 35px;
    border-radius: 40px;
}

.project-info {
    display: flex;
    flex-direction: column;
    padding: 12px;
}

.project-info .text {
    font-size: 27px;
    font-weight: bold;
    padding: 10px 0;
}

.project-info p {
    padding: 12px 0;
}

.projects a{
    text-decoration: none;
    color: white;
}

.row-reverse{
    flex-direction: row-reverse;
}


footer{
    background-color: rgb(19, 2, 44);
    padding: 20px;
    color: white;
    text-align: center;
    font-family: "Roboto", sans-serif;
}



/* Maintaince */
    .contact {
            height:100vh;
            display:flex;
            justify-content:center;
            align-items:center;
            background:linear-gradient(135deg,#0f172a,#1e293b);
            color:white;
            text-align:center;
    }


        .loader{
            width:60px;
            height:60px;
            border:5px solid rgba(255,255,255,0.2);
            border-top:5px solid #38bdf8;
            border-radius:50%;
            margin:auto;
            animation:spin 1s linear infinite;
        }

        @keyframes spin{
            100%{
                transform:rotate(360deg);
            }
        }

        .socials{
            margin-top:30px;
        }

        .socials a{
            color:#38bdf8;
            text-decoration:none;
            margin:0 15px;
            font-weight:600;
        }

        .socials a:hover{
            color:white;
        }

@media screen and (max-width: 950px) {
    nav {
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }
        .hero{
            flex-direction: column-reverse;
            gap: 12px;
        }
        .hero-left{
            align-items: center;
        }
        .project{
            padding: 1px;
        }
}

@media screen and (max-width: 650px){
    .hero-right img{
        width: 35vh;
        height: 30vh;
    }

    .hero-left .one{
        font-size: 40px;
        text-align: center;
    }
    .hero-left .two{
        text-align: center;
        font-size: 30px;
    }

    .project{
        flex-direction: column;
    }

    .project-image img{
        width: 80vw;
        margin: 15px 35px;
    }
    .project-info{
        padding: 15px 23px;
    }
}