* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: #ededed;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    position: relative;
    font-size: 25px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    cursor: default;
    opacity: 0;
    animation: slideRight 1s ease forwards; 
}

.navbar a {
    display: inline-block;
    font-size: 25px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: .35s;
    opacity: 0;
    animation: slideTop .5s ease forwards;
}

.navbar a:hover {
    color: #0ef; 
}

.home {
    position: relative;
    width: 100%;
    justify-content: space-between;
    height: 100vh;
    background: url("F_R04ssaMAAd9FI.jpeg");
    display: flex;
    background-size: cover;
    background-position: center;
    align-items: center;
    padding: 70px 10% 0;
}

.home-content {
    max-width: 600px;
}

.home-content h3 {
    font-size: 32px;
    font-weight: 700;
    animation: slideBottom 1s ease forwards;
    animation-delay: .7s;
}

.home-content h3:nth-of-type(2) {
    margin-bottom: 30px;
}

.home-content h3 span {
    color: #0ef;
}

.home-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin: -3px 0; 
    opacity: 0;
    animation: slideRight 1s ease forwards;
    animation-delay: 1s;
}

.home-content p {
    font-size: 20px;
}

.home-sci a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #0ef;
    border-radius: 50%;
    font-size: 20px;
    color: #0ef;
    text-decoration: none;
    margin: 30px 15px 30px 0;
    transition: 0.3s;
}

.home-sci a:hover {
    background: #0ef;
    color: #081b29;
    box-shadow: 0 0 20px #0ef;
}

.btn-box {
    display: inline-block;
    padding: 12px 28px;
    background: #0ef;
    border-radius: 40px;
    font-size: 16px;
    color: #081b29;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-box:hover {
    box-shadow: 
        0 0 5px cyan,
        0 0 25px cyan,
        0 0 50px cyan,
        0 0 100px cyan,
        0 0 200px cyan;
}

/* Animations */
@keyframes slideRight {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes slideTop {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@keyframes slideBottom {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}





.skills {
    min-height: 100vh;
    padding: 100px 10%;
    background: #081b29;
    color: #fff;
}

.skills h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #0ef;
}

.skills p {
    font-size: 18px;
    margin-bottom: 20px;
}

.skills ul {
    list-style: none;
    padding: 0;
}

.skills ul li {
    font-size: 20px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}





.portfolio {
    min-height: 100vh;
    padding: 100px 10%;
    background: #081b29;
    color: #fff;
}

.portfolio h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #0ef;
}

.portfolio p {
    font-size: 18px;
    margin-bottom: 30px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.portfolio-item {
    background: #0c2239;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-item img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.portfolio-item h3 {
    margin: 10px 0;
    color: #0ef;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px #0ef;
}



.about {
    min-height: 100vh;
    padding: 100px 10%;
    background: #081b29;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-container {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    flex-wrap: wrap;
}

.about-img img {
    width: 250px;
    border-radius: 50%;
    border: 4px solid #0ef;
    box-shadow: 0 0 20px #0ef;
}

.about-text h1 {
    font-size: 40px;
    margin-bottom: 10px;
    color: #0ef;
}

.about-text h3 {
    font-size: 25px;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
}


.contact {
    min-height: 100vh;
    padding: 100px 10%;
    background: #081b29;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.contact-container h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #0ef;
}

.contact-container p {
    font-size: 18px;
    margin-bottom: 30px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 18px;
}

.contact-info i {
    color: #0ef;
    margin-right: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 2px solid #0ef;
    border-radius: 8px;
    background: transparent;
    color: #fff;
    font-size: 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: cyan;
    box-shadow: 0 0 10px cyan;
}

.contact-form button {
    align-self: center;
    cursor: pointer;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    margin: 0 10px;
    border: 2px solid #0ef;
    border-radius: 50%;
    color: #0ef;
    font-size: 20px;
    transition: 0.3s;
}

.social-links a:hover {
    background: #0ef;
    color: #081b29;
    box-shadow: 0 0 15px #0ef;
}

.about-me {
    padding: 120px 10%;   /* pushes content down below navbar */
    min-height: 100vh;    /* makes section full height */
}

.about-me h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #0ef; /* cyan highlight */
}

.about-me p {
    font-size: 18px;
    line-height: 1.8;
}

.about-me {
    background: #081b29;   /* theme color */
    color: #ededed;
    padding: 120px 10%;
    min-height: 100vh;
}

.btn-box {
    display: inline-block;
    padding: 12px 28px;
    background: #0ef;
    border-radius: 40px;
    font-size: 16px;
    color: #081b29;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 600;
}
.btn-box:hover {
    box-shadow: 0 0 5px cyan,
    0 0 25px cyan, 0 0 50px cyan,
    0 0 100px cyan, 0 0 200px cyan;
}


.date-time {
    font-size: 14px;
    font-weight: 500;
    color: #0ef;   /* theme color */
    margin-left: 20px;
}

/* General reset */
body {
    margin: 0;
    padding: 0;
}

/* Fixed header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: #081b29;   /* theme background */
    display: flex;
    align-items: center;
    z-index: 1000;
}

/* Logo on the left */
.logo {
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

/* Navbar links */
.navbar {
    display: flex;
    gap: 20px;
    margin-left: 40px;  /* push navbar slightly to the right of logo */
}

/* Push date & time to the far right */
.date-time {
    margin-left: auto;       /* ✅ pushes it all the way right */
    font-size: 14px;
    font-weight: 500;
    color: #0ef;
    white-space: nowrap;
}

.navbar {
    margin-left: auto;  /* pushes navbar itself to the right */
    margin-right: 20px; /* space between navbar and date/time */
}

