
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            background: #201E4B;
            color: #ffffff;
            line-height: 1.6;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(32, 30, 75, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: right;
        }


        .nav-links {
            display: flex;
            gap: 35px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #b8b8b8;
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 15px;
        }

        .nav-links a:hover {
            color: #D896C3;
        }

        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 100px 40px 60px;
        }

        /* Hero Section */
        .hero-section {
            min-height: 90vh;
            display: flex;
            align-items: center;
            gap: 60px;
            margin-bottom: 100px;
        }

        .hero-content {
            flex: 1;
        }

        .hero-label {
            display: inline-block;
            padding: 8px 16px;
            background: rgba(216, 150, 195, 0.15);
            border-radius: 20px;
            font-size: 14px;
            color: #D896C3;
            font-weight: 600;
            margin-bottom: 20px;
            border: 1px solid rgba(216, 150, 195, 0.3);
        }

        .hero-title {
            font-size: 72px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 25px;
            background: linear-gradient(135deg, #ffffff 0%, #D896C3 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 20px;
            color: #b8b8b8;
            margin-bottom: 35px;
            max-width: 600px;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary {
            padding: 16px 32px;
            background: linear-gradient(135deg, #D896C3 0%, #B86B9E 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(216, 150, 195, 0.4);
        }

        .btn-secondary {
            padding: 16px 32px;
            background: rgba(216, 150, 195, 0.1);
            color: #D896C3;
            border: 2px solid #D896C3;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: #D896C3;
            color: #201E4B;
        }

        .hero-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .profile-card {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, #D896C3 0%, #B86B9E 50%, #8B4D7A 100%);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 120px;
            animation: float 4s ease-in-out infinite;
            box-shadow: 0 30px 60px rgba(216, 150, 195, 0.3);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .hero-img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 30px;
            transition: opacity 0.5s ease;
        }

        .hero-img-1 {
            opacity: 1;
            z-index: 1;
        }

        .hero-img-2 {
            opacity: 0;
            z-index: 2;
        }

        .profile-card:hover .hero-img-1 {
            opacity: 0;
        }

        .profile-card:hover .hero-img-2 {
            opacity: 1;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
        }

        /* Section Styles */
        .section {
            margin-bottom: 120px;
            scroll-margin-top: 100px
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-label {
            font-size: 14px;
            color: #D896C3;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: 48px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 20px;
        }

        .section-description {
            font-size: 18px;
            color: #b8b8b8;
            max-width: 700px;
            margin: 0 auto;
        }

        /* About Me Section with Tabs */
        .about-content {
            display: grid;
            grid-template-columns: 350px 1fr;
            gap: 60px;
            align-items: start;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-image {
            position: relative;
        }

        .profile-photo {
            width: 100%;
            border-radius: 30px;
            overflow: hidden;
        }

        .profile-photo img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 20px;
        }

        .about-right {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .about-text {
            font-size: 18px;
            color: #b8b8b8;
            line-height: 1.8;
        }

        .about-text p {
            margin-bottom: 20px;
        }

        /* Tab Navigation */
        .tab-navigation {
            display: flex;
            gap: 20px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 10px;
        }

        .tab-button {
            background: none;
            border: none;
            color: #b8b8b8;
            font-size: 18px;
            font-weight: 600;
            padding: 10px 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .tab-button:hover {
            color: #D896C3;
        }

        .tab-button.active {
            color: #D896C3;
        }

        .tab-button.active::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            right: 0;
            height: 2px;
            background: #D896C3;
        }

        /* Tab Content */
        .tab-content-wrapper {
            min-height: 250px;
        }

        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .tab-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Skills List */
        .skills-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }

        .skill-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px 20px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .skill-item:hover {
            background: rgba(216, 150, 195, 0.1);
            border-color: rgba(216, 150, 195, 0.3);
        }

        .skill-name {
            color: #ffffff;
            font-weight: 500;
        }

        /* Experience & Education List */
        .experience-list,
        .education-list {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .experience-item,
        .education-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 18px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .experience-item:hover,
        .education-item:hover {
            background: rgba(216, 150, 195, 0.1);
            border-color: rgba(216, 150, 195, 0.3);
            transform: translateX(5px);
        }

        .experience-date,
        .education-date {
            color: #D896C3;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .experience-title,
        .education-title {
            color: #ffffff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 0px;
        }

        .experience-company {
            color: #b8b8b8;
            font-size: 14px;
        }

        /* Projects Section */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 35px;
        }

        .project-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s ease;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(216, 150, 195, 0.25);
            border-color: rgba(216, 150, 195, 0.3);
        }

        .project-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, #D896C3 0%, #B86B9E 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 80px;
            overflow: hidden;
            position: relative;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .project-content {
            padding: 30px;
        }

        .project-tags {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .project-tag {
            padding: 6px 12px;
            background: rgba(216, 150, 195, 0.15);
            border-radius: 6px;
            font-size: 12px;
            color: #D896C3;
            font-weight: 600;
        }

        .project-title {
            font-size: 24px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
        }

        .project-description {
            font-size: 15px;
            color: #b8b8b8;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .project-links {
            display: flex;
            gap: 15px;
        }

        .project-link {
            padding: 10px 20px;
            background: rgba(216, 150, 195, 0.1);
            border-radius: 8px;
            text-decoration: none;
            color: #D896C3;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            border: 1px solid rgba(216, 150, 195, 0.3);
        }

        .project-link:hover {
            background: #D896C3;
            color: #201E4B;
        }

        /* Contact Section */
        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            align-items: start;
        }

        .contact-left {
            display: flex;
            flex-direction: column;
            gap: 30px;
            align-items: center;
            text-align: center;
        }

        .contact-info-text {
            font-size: 18px;
            color: #b8b8b8;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .social-link {
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
            opacity: 0.7;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .social-link:hover {
            opacity: 1;
            transform: translateY(-3px);
        }

        .contact-right {
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .form-label {
            font-size: 13px;
            font-weight: 600;
            color: #ffffff;
        }

        .form-input,
        .form-textarea {
            padding: 10px 14px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            font-size: 14px;
            font-family: inherit;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.05);
            color: #ffffff;
        }

        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #D896C3;
            background: rgba(255, 255, 255, 0.08);
        }

        .form-textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-button {
            padding: 12px;
            background: linear-gradient(135deg, #D896C3 0%, #B86B9E 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 4px;
        }

        .form-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(216, 150, 195, 0.4);
        }

        .copyright-text {
            text-align: center;
            color: #b8b8b8;
            font-size: 14px;
            margin-top: 80px;
            padding: 30px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .contact-info {
            display: flex;
            gap: 30px;
            margin-top: 40px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #b8b8b8;
        }

        .contact-icon {
            font-size: 24px;
        }


/* Download Resume Button Styles */
        .download-resume-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 25px;
            padding: 14px 28px;
            background: linear-gradient(135deg, #D896C3 0%, #B86B9E 100%);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(216, 150, 195, 0.3);
        }
        
        .download-resume-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(216, 150, 195, 0.5);
        }
        
        .download-resume-btn svg {
            animation: bounce 2s infinite;
        }



        /* Responsive Design */
        @media (max-width: 968px) {
            .hero-section {
                flex-direction: column;
                text-align: center;
            }

            .hero-title {
                font-size: 48px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .profile-card {
                width: 300px;
                height: 400px;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 36px;
            }

            .nav-links {
                display: none;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-right {
                padding: 30px 25px;
            }

            .contact-container {
                padding: 40px 30px;
            }

            .tab-navigation {
                overflow-x: auto;
            }
        }

        @media (max-width: 640px) {
            .container {
                padding: 80px 20px 40px;
            }

            .hero-title {
                font-size: 36px;
            }

            .hero-description {
                font-size: 16px;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .skills-list {
                grid-template-columns: 1fr;
            }
        }


  /* Projects Section - Simplified & Resume-Friendly */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(216, 150, 195, 0.2);
    border-color: rgba(216, 150, 195, 0.3);
}

.project-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #D896C3 0%, #B86B9E 100%);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

/* Hover Overlay */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(32, 30, 75, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-links-overlay {
    display: flex;
    gap: 20px;
}

.overlay-link {
    width: 50px;
    height: 50px;
    background: rgba(216, 150, 195, 0.2);
    border: 2px solid #D896C3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D896C3;
    transition: all 0.3s ease;
    text-decoration: none;
}

.overlay-link:hover {
    background: #D896C3;
    color: #201E4B;
    transform: scale(1.1);
}

.project-content {
    padding: 24px;
}

.project-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.project-description {
    font-size: 14px;
    color: #b8b8b8;
    line-height: 1.6;
    margin-bottom: 16px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-badge {
    padding: 5px 12px;
    background: rgba(216, 150, 195, 0.15);
    border: 1px solid rgba(216, 150, 195, 0.3);
    border-radius: 6px;
    font-size: 12px;
    color: #D896C3;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}


/* Hidden Projects & View More Button */
.hidden-project {
    display: none;
}

.hidden-project.show {
    display: block;
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* View More Button */
.view-more-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #D896C3 0%, #B86B9E 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(216, 150, 195, 0.3);
}

.view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(216, 150, 195, 0.5);
}

.view-more-btn.hidden {
    display: none;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.view-more-btn.rotate .btn-icon {
    transform: rotate(180deg);
}


/* Tech Stack Icons */
.tech-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.tech-icons img {
    width: 45px;
    height: 45px;
    opacity: 0.85;
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

/* Stagger the pulse animation */
.tech-icons img:nth-child(1) { animation-delay: 0s; }
.tech-icons img:nth-child(2) { animation-delay: 0.1s; }
.tech-icons img:nth-child(3) { animation-delay: 0.2s; }
.tech-icons img:nth-child(4) { animation-delay: 0.3s; }
.tech-icons img:nth-child(5) { animation-delay: 0.4s; }
.tech-icons img:nth-child(6) { animation-delay: 0.5s; }
.tech-icons img:nth-child(7) { animation-delay: 0.6s; }
.tech-icons img:nth-child(8) { animation-delay: 0.7s; }
.tech-icons img:nth-child(9) { animation-delay: 0.8s; }

/* Hover effect */
.tech-icons img:hover {
    opacity: 1;
    transform: scale(1.2);
    filter: brightness(1.2);
    animation: none; /* Stop pulse on hover */
}

/* Fix GitHub icon - pink gradient background */
.tech-icons img:nth-child(9) {
    background: linear-gradient(135deg, #D896C3 0%, #B86B9E 100%);
    border-radius: 50%;
    padding: 6px;
}

.tech-icons img:nth-child(9):hover {
    background: linear-gradient(135deg, #e5a8d3 0%, #c77eae 100%);
}

/* Pulse animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.85;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 640px) {
    .tech-icons {
        gap: 16px;
    }
    
    .tech-icons img {
        width: 35px;
        height: 35px;
    }
}