* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: white;
    overflow-x: hidden;
}

.profile-pic{
  display: block;
  height:250px;;
  width: 250px;
  object-fit: cover;
  margin-right: auto;
  margin-left: auto;
}

/* 🔥 Animated Tech Background */
body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, #0f172a, #020617, #0ea5e9);
    background-size: 600% 600%;
    animation: gradientMove 10s ease infinite;
    z-index: -1;
}

@keyframes gradientMove {
    0% {background-position: 0%}
    50% {background-position: 100%}
    100% {background-position: 0%}
}

/* 🔥 Loader */
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    animation: fadeOut 2s forwards;
    animation-delay: 2s;
}
.anch{
    color: red;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Header */
header {
    text-align: center;
    padding: 80px 20px;
}

.profile-container {
    animation: fadeInUp 1.5s ease;
}

/* 🧑 Profile Image */
.profile-pic {
    border-radius: 50%;
    border: 3px solid #38bdf8;
    box-shadow: 0 0 25px #38bdf8;
    margin-bottom: 20px;
}

/* Nav */
nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    background: rgba(0,0,0,0.5);
    padding: 15px;
}

nav a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: #38bdf8;
}

/* Sections */
.section {
    padding: 60px 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: 0.8s;
}

.section.show {
    opacity: 1;
    transform: translateY(0);
}

h2 {
    color: #38bdf8;
    margin-bottom: 20px;
}

/* Form */
form {
    max-width: 400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input, textarea {
    padding: 10px;
    border-radius: 5px;
    border: none;
}

button {
    padding: 10px;
    background: #38bdf8;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: #0ea5e9;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

footer {
    text-align: center;
    padding: 20px;
}