
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Header Styles */
        .head {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(115, 67, 148, 0.1);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .head h1 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2c3e50;
        }

        .my {
            color: #7341b8;
        }

        .menu-toggle {
            display: none;
        }

        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #7341b8;
        }

        .nav-element {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-element a {
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-element a:hover,
        .nav-hire {
            color: #7341b8 !important;
        }

        .nav-element a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #7341b8;
            transition: width 0.3s ease;
        }

        .nav-element a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 100px 2rem 2rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .text-content {
            animation: slideInLeft 1s ease-out;
        }

        .hey {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .hello {
            color: #ffd700;
            font-weight: 700;
        }

        .work {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .work-desc {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            line-height: 1.6;
        }

        .buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .hire, .projects {
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .hire {
            background: #ffd700;
            color: #2c3e50;
        }

        .projects {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .hire:hover {
            background: #ffed4e;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        }

        .projects:hover {
            background: white;
            color: #764ba2;
            transform: translateY(-2px);
        }

        .profile {
            text-align: center;
            animation: slideInRight 1s ease-out;
        }

        .profile-image {
            width: 350px;
            height: 350px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .profile-caption {
            font-size: 1.1rem;
            margin-top: 1rem;
            opacity: 0.8;
        }

        /* About Section */
        .container {
            padding: 100px 2rem;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .about-card h1 {
            font-size: 3rem;
            margin-bottom: 2rem;
            color: #2c3e50;
        }

        .about {
            color: #7341b8;
        }

        .about-card p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: #6c757d;
        }

        .graduation-cap-text {
            color: #7341b8 !important;
        }

        /* Project Section - Complete Modern Redesign */
        .project {
            padding: 100px 0;
            background: radial-gradient(ellipse at top, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
            position: relative;
            overflow: hidden;
        }

        /* Animated Background Elements */
        .project::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
            animation: float 20s infinite linear;
            pointer-events: none;
        }

        @keyframes float {
            0% { transform: translateX(0) translateY(0); }
            100% { transform: translateX(-60px) translateY(-60px); }
        }

        /* Section Header */
        .project .header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

        .project .header h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin: 0 0 20px 0;
            letter-spacing: -0.02em;
            position: relative;
        }

        .project .header h2::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #667eea, #764ba2, transparent);
            border-radius: 2px;
        }

        /* Subtitle */
        .project-subtitle {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            font-weight: 300;
            margin-top: 30px;
            letter-spacing: 0.5px;
        }

        /* Projects Container */
        .card {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            position: relative;
            z-index: 2;
        }

        /* Project Card */
        .card-item {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            overflow: hidden;
            position: relative;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            transform-style: preserve-3d;
        }

        .card-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s;
            z-index: 1;
        }

        .card-item:hover::before {
            left: 100%;
        }

        .card-item:hover {
            transform: translateY(-20px) rotateX(5deg);
            box-shadow: 
                0 25px 50px rgba(0, 0, 0, 0.3),
                0 0 50px rgba(102, 126, 234, 0.1);
            border-color: rgba(102, 126, 234, 0.3);
        }

        /* Image Container */
        .image-container {
            position: relative;
            overflow: hidden;
            height: 280px;
        }

        .project-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.6s ease;
            filter: brightness(0.8) contrast(1.1);
        }

        .card-item:hover .project-image {
            transform: scale(1.1);
            filter: brightness(1) contrast(1.2);
        }

        /* Image Overlay */
        .image-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                180deg, 
                transparent 0%, 
                rgba(0, 0, 0, 0.1) 50%, 
                rgba(0, 0, 0, 0.4) 100%
            );
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .card-item:hover .image-container::after {
            opacity: 1;
        }

        /* Card Content */
        .card-header {
            padding: 35px 30px;
            position: relative;
        }

        .card-header h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #ffffff;
            margin: 0 0 15px 0;
            line-height: 1.2;
            position: relative;
        }

        .card-header h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 1px;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .card-item:hover .card-header h3::after {
            transform: scaleX(1);
        }

        .card-header p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            line-height: 1.6;
            margin: 20px 0 30px 0;
            font-weight: 300;
        }

        /* Technology Tags */
        .tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 15px 0;
        }

        .tech-tag {
            padding: 4px 12px;
            background: rgba(102, 126, 234, 0.2);
            color: rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            border: 1px solid rgba(102, 126, 234, 0.3);
        }

        /* Project Link Button */
        .project-link {
            display: inline-flex;
            align-items: center;
            padding: 14px 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .project-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .project-link:hover::before {
            left: 0;
        }

        .project-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        }

        .project-link::after {
            content: '→';
            margin-left: 10px;
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .project-link:hover::after {
            transform: translateX(5px);
        }

        /* Animations */
        @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);
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .card {
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 35px;
                padding: 0 25px;
            }
        }

        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }

             .nav-element {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 5%;
    background-color: white;
    padding: 1.25rem;
    width: 250px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }


            .menu-toggle:checked ~ .nav-element {
                display: flex;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .container {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 80px 2rem;
            }

            .about-card h1 {
                font-size: 2.5rem;
            }

            .card {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0 20px;
            }

            .project {
                padding: 80px 0;
            }

            .image-container {
                height: 240px;
            }

            .card-header {
                padding: 25px 20px;
            }

            .project .header {
                margin-bottom: 60px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding: 80px 1rem 2rem;
            }

            .profile-image {
                width: 250px;
                height: 250px;
            }

            .container {
                padding: 60px 1rem;
            }

            .about-card h1 {
                font-size: 2rem;
            }

            .project {
                padding: 60px 0;
            }

            .card {
                padding: 0 15px;
                gap: 25px;
            }

            .image-container {
                height: 200px;
            }

            .card-header {
                padding: 20px 15px;
            }

            .card-header h3 {
                font-size: 1.3rem;
            }

            .project-link {
                padding: 10px 20px;
                font-size: 0.85rem;
            }
        }

        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            .project::before {
                animation: none;
            }

            .card-item,
            .project-image,
            .project-link {
                transition: none;
            }

            .card-item:hover {
                transform: none;
            }

            .text-content,
            .profile {
                animation: none;
            }
        }

        .project-link:focus {
            outline: 3px solid rgba(102, 126, 234, 0.5);
            outline-offset: 3px;
        }
/* Skills Section */
        .skills {
            padding: 100px 2rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .skills-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .skills-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .skills-header h2 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            color: #2c3e50;
            margin-bottom: 20px;
            position: relative;
        }

        .skills-header h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #7341b8, #9c27b0);
            border-radius: 2px;
        }

        .skills-subtitle {
            color: #6c757d;
            font-size: 1.2rem;
            font-weight: 300;
            margin-top: 30px;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .skill-category {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(115, 67, 148, 0.1);
        }

        .skill-category:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(115, 67, 148, 0.15);
        }

        .skill-category-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #7341b8, #9c27b0);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
            color: white;
        }

        .skill-category h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
        }

        .skill-items {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .skill-item {
            background: linear-gradient(45deg, #7341b8, #9c27b0);
            color: white;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .skill-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(115, 67, 148, 0.3);
        }

        /* Contact/Hire Section */
        .hire-section {
            padding: 100px 2rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
        }

        .hire-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .hire-section h2 {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 20px;
        }

        .hire-section p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
            line-height: 1.6;
        }

        .hire-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hire-btn {
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .hire-btn-primary {
            background: #ffd700;
            color: #2c3e50;
        }

        .hire-btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .hire-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .hire-btn-primary:hover {
            background: #ffed4e;
        }

        .hire-btn-secondary:hover {
            background: white;
            color: #764ba2;
        }

        /* Footer */
        .footer {
            background: #1a1a2e;
            color: white;
            padding: 60px 2rem 30px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #667eea;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            line-height: 1.8;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #667eea;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(102, 126, 234, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(102, 126, 234, 0.3);
        }

        .social-link:hover {
            background: #667eea;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .footer-bottom .heart {
            color: #ff6b6b;
            animation: heartbeat 1.5s infinite;
        }

        @keyframes heartbeat {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Additional Responsive Updates */
        @media (max-width: 768px) {
            .skills {
                padding: 80px 1rem;
            }

            .skills-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .skill-category {
                padding: 30px 20px;
            }

            .hire-section {
                padding: 80px 1rem;
            }

            .hire-buttons {
                flex-direction: column;
                align-items: center;
            }

            .hire-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }

            .footer {
                padding: 50px 1rem 20px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }
        }