:root{
    --primary-color: #64ffda;
    --secondary-color: #0a192f;
    --accent-color: #112240;
    --text-color: #ccd6f6;
    --light-text: #8892b0;
    --background-color: #0a192f;
    --section-bg: #112240;
    --border-color: #233554;
    --shadow-color: rgba(100, 255, 218, 0.1);
    --gradient: linear-gradient(120deg, #64ffda, #00b4d8);
    --card-bg: #112240;
    --text-secondary: #8892b0;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Night Sky Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a365d 0%, #030b17 100%);
    z-index: -2;
}

/* Stars Animation */
@keyframes twinkle {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 50px 160px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 90px 40px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 130px 80px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 160px 120px, #fff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: twinkle 4s infinite;
}

.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* header section */
header{
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 180, 216, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: auto;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

header nav .nav_image {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

header nav .nav_image img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

header nav .nav_image h1 {
    font-size: 1.3rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

header nav .nav_item {
    background: transparent;
}

header nav .nav_item ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

header nav .nav_item ul li a {
    text-decoration: none;
    color: var(--light-text);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
}

header nav .nav_item ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

header nav .nav_item ul li a:hover::before {
    width: 100%;
}

header nav .nav_item ul li a:hover {
    color: var(--primary-color);
}

header nav .nav_item ul li a i {
    font-size: 1.1rem;
    margin-right: 0.4rem;
}

header nav .nav_item a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Hero Section */
.hero_section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.hero_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1506318137071-a8e063b4bec0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

.hero-text h4 {
    color: var(--text-color);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-text p {
    color: var(--light-text);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-profile {
    width: 100%;
    max-width: 400px;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0, 180, 216, 0.3);
    transition: all 0.3s ease;
    border: 3px solid var(--primary-color);
}

.hero-profile:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(0, 180, 216, 0.5);
}

/* About Section */
.About_section {
    padding: 5rem 0;
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    text-align: justify;
}

.about-description {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    padding: 2.5rem;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.about-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(100, 255, 218, 0.05), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.about-description:hover::before {
    transform: translateX(100%);
}

.about-description:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.highlight-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient);
    transition: 0.3s;
    opacity: 0;
}

.highlight-item:hover::before {
    opacity: 1;
}

.highlight-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.highlight-item span {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .about-description {
        font-size: 1rem;
        padding: 1.5rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .highlight-item {
        padding: 1rem;
    }
}

/* Education section */
.Education_section {
    padding: 5rem 0;
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
}

.education-timeline {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.education-item {
    background: rgba(26, 54, 93, 0.5);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 180, 216, 0.1);
    border: 1px solid var(--border-color);
}

.education-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.2);
    border-color: var(--primary-color);
}

.education-year {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.education-content h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.education-content p {
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

/* Skills section */
.Skills_section {
    padding: 5rem 0;
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.skill-category {
    background: rgba(26, 54, 93, 0.5);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 180, 216, 0.1);
    border: 1px solid var(--border-color);
}

.skill-category h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.skill-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.skill-item {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(26, 54, 93, 0.5);
    border-radius: 10px;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.skill-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 180, 216, 0.1),
        transparent
    );
    transition: 0.5s;
}

.skill-item:hover::before {
    left: 100%;
}

.skill-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.2);
    border-color: var(--primary-color);
}

.skill-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Contact section */
.contacts_section {
    padding: 5rem 0;
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
    background: rgba(26, 54, 93, 0.3);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(26, 54, 93, 0.5);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.2);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-item p {
    margin: 0;
    color: var(--text-color);
}

.contact-form {
    padding: 2rem;
    background: rgba(26, 54, 93, 0.3);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.contact-form form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: rgba(26, 54, 93, 0.5);
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: none;
    padding-top: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(0, 180, 216, 0.2);
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: rgba(26, 54, 93, 0.3);
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 54, 93, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 50%;
}

.social-links a:hover {
    color: var(--text-color);
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.3);
}

/* Footer */
footer {
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem 0;
    text-align: center;
    color: var(--light-text);
}

footer p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Common styles */
h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    text-align: center;
    color: var(--text-color);
    position: relative;
    padding-bottom: 1rem;
}

h2::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}

h2 i {
    color: var(--primary-color);
    margin-right: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    header nav .nav_item {
        display: none;
    }

    header nav .nav_item.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--section-bg);
        padding: 1rem;
        box-shadow: 0 2px 10px var(--shadow-color);
    }

    header nav .nav_item ul {
        flex-direction: column;
        gap: 1rem;
    }

    .hero_section {
        padding-top: 100px;
        min-height: calc(100vh - 80px);
    }

    .hero-content {
        padding-top: 2rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero-profile {
        max-width: 250px;
    }

    .about-description {
        font-size: 1rem;
        padding: 1.5rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .highlight-item {
        padding: 1rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .stars {
        background-size: 150px 150px;
    }

    .hero-text h4 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-content {
        gap: 2rem;
    }
    
    .social-links {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .nav_item {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 25, 47, 0.98) !important;
        backdrop-filter: blur(10px);
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 180, 216, 0.1);
        z-index: 999;
        border-top: 1px solid rgba(100, 255, 218, 0.1);
    }

    .nav_item ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav_item ul li a {
        padding: 0.8rem 1.5rem;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav_item ul li a:hover {
        background: rgba(100, 255, 218, 0.1);
        color: var(--primary-color);
    }
}

@media (max-width: 480px) {
    .about-description {
        font-size: 1rem;
        padding: 1.5rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .highlight-item {
        padding: 1rem;
    }

    .skill-items {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }

    .hero_section {
        padding-top: 80px;
    }
    
    .hero-content {
        padding: 1rem;
    }
}

/* Multiple Text Typing Animation */
.multiple-text {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.multiple-text::before {
    content: "Student";
    animation: words 12s infinite;
}

.multiple-text::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 100%;
    border-right: 3px solid var(--primary-color);
    right: -8px;
    animation: blink 0.8s infinite ease;
}

@keyframes words {
    0%, 33.33% {
        content: "Student";
    }
    33.34%, 66.66% {
        content: "Frontend Developer";
    }
    66.67%, 100% {
        content: "Designer";
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}


.typing,
.typing-text,
.typing::after,
.typing-text::after {
    animation: none;
    border: none;
    content: none;
}

/* Hero text styles update */
.hero-text p {
    color: var(--light-text);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .hero-text p {
        justify-content: center;
    }
    .multiple-text {
        font-size: 1.2rem;
    }
}

/* Enhanced Button Styles */
.glow-button {
    background: var(--primary-color);
    color: var(--background-color);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(100, 255, 218, 0.3);
}

.glow-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.glow-button:hover::before {
    left: 100%;
}

.glow-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.4);
    background: var(--primary-color);
    color: var(--background-color);
}

.glow-button i {
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.glow-button:hover i {
    transform: translateX(5px);
}

/* Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Contact Form Button */
.contact-form button {
    background: var(--primary-color);
    color: var(--background-color);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(100, 255, 218, 0.3);
}

.contact-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.contact-form button:hover::before {
    left: 100%;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.4);
    background: var(--primary-color);
    color: var(--background-color);
}

.contact-form button:hover i {
    transform: translateX(5px);
}

/* Typing Animation */
.typing-text::before {
    content: '';
    animation: typing 12s steps(30) infinite;
}

@keyframes typing {
    0%, 33% {
        content: 'Student';
    }
    34%, 66% {
        content: 'Frontend Developer';
    }
    67%, 100% {
        content: 'Designer';
    }
}

/* Hamburger Menu */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 1rem;
}

.nav-toggle-label span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
#nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
    opacity: 0;
}

#nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Show Navigation on Toggle */
#nav-toggle:checked ~ .nav_item {
    display: block !important;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations */
.about-content, .education-item, .skill-category, .contact-content {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInOnScroll 0.6s ease forwards;
}

.about-content {
    animation-delay: 0.2s;
}

.education-item:nth-child(odd) {
    animation: slideInLeft 0.6s ease forwards;
    animation-delay: 0.3s;
}

.education-item:nth-child(even) {
    animation: slideInRight 0.6s ease forwards;
    animation-delay: 0.3s;
}

.skill-category:nth-child(odd) {
    animation: slideInLeft 0.6s ease forwards;
    animation-delay: 0.4s;
}

.skill-category:nth-child(even) {
    animation: slideInRight 0.6s ease forwards;
    animation-delay: 0.4s;
}

.contact-content > * {
    animation: fadeInOnScroll 0.6s ease forwards;
    animation-delay: 0.5s;
}

@keyframes fadeInOnScroll {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .nav-toggle-label {
        display: block;
    }

    .nav_item {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 25, 47, 0.98) !important;
        backdrop-filter: blur(10px);
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 180, 216, 0.1);
        z-index: 999;
        border-top: 1px solid rgba(100, 255, 218, 0.1);
    }

    .nav_item ul {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav_item ul li {
        width: 100%;
    }

    .nav_item ul li a {
        display: block;
        padding: 0.8rem 1.5rem;
        border-radius: 8px;
    }

    .nav_item ul li a:hover {
        background: rgba(100, 255, 218, 0.1);
        color: var(--primary-color);
    }

    header nav {
        padding: 0.8rem 1.5rem;
    }

    .hero-content {
        padding-top: 2rem;
    }
}

/* Typing cursor animation */
.typing-text {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    padding-right: 8px;
}

.typing-text::after {
    content: '|';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    animation: blink 0.8s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Project Section Styles */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover .project-image img {
    filter: blur(3px);
    transform: scale(1.05);
}

.project-links {
    display: flex;
    gap: 1.5rem;
}

.project-links a {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.project-links a:hover {
    transform: scale(1.2);
    color: #00ff88;
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    margin-bottom: 0.5rem;
    color: #fff;
}

.project-info p {
    color: #ccc;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tech span {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-image {
        height: 180px;
    }
}

