body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(120deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 30px auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    background: transparent;
    text-align: center;
    padding: 50px 20px;
}

.profile-pic {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid #00eaff;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.profile-pic:hover {
    transform: scale(1.05);
}

h1 {
    margin: 0;
    font-size: 3em;
    background: linear-gradient(to right, #00c6ff, #0072ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tagline {
    font-size: 1.3em;
    color: #ddd;
    font-style: italic;
    margin-top: 10px;
}

.typewriter-text {
    color: #00eaff;
    font-size: 1.2em;
    border-right: 2px solid #00eaff;
    width: 24ch;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 4s steps(24), blink .75s step-end infinite;
    margin-top: 10px;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 24ch
    }
}

@keyframes blink {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: #00eaff
    }
}

.btn {
    background: #00eaff;
    color: #000;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px #00eaff;
    display: inline-block;
    margin-top: 20px;
}

.btn:hover {
    background: #fff;
    color: #0072ff;
    box-shadow: 0 0 25px #00c6ff;
}

section h2 {
    font-size: 2em;
    border-left: 5px solid #00eaff;
    padding-left: 10px;
    margin-bottom: 20px;
}

ul {
    list-style: none;
    padding: 0;
}

ul li::before {
    content: "✔";
    margin-right: 10px;
    color: #00eaff;
}

.project {
    border: 2px solid #00eaff22;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.testimonials {
    margin-top: 50px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #00eaff;
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    animation: fadeIn 1.2s ease-in-out;
}

.testimonial span {
    display: block;
    margin-top: 10px;
    font-style: italic;
    color: #ccc;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input,
.contact textarea {
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    background: #fff;
    color: #000;
}

.contact textarea {
    resize: vertical;
    min-height: 120px;
}

.contact button {
    align-self: flex-start;
}

footer {
    text-align: center;
    padding: 25px;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid #00eaff44;
    margin-top: 40px;
    border-radius: 0 0 20px 20px;
}

footer a {
    color: #00eaff;
    text-decoration: none;
}

.highlight {
    text-align: center;
    margin-top: 30px;
    animation: fadeIn 1.5s ease;
}

.highlight blockquote {
    font-size: 1.5em;
    font-style: italic;
    color: #00eaff;
    margin: 10px 0 20px;
}

.skills-icons img {
    width: 50px;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.skills-icons img:hover {
    transform: scale(1.2);
}

.animated-skill {
    font-size: 1.2em;
    color: #fff;
    margin-top: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}
