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

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #000000 100%);
            min-height: 80vh;
            cursor: none;
        }

        .preview-box {
        width: 105%;
        height: 500px;
        overflow: hidden;
         }
        iframe {
            width: 100%;
            height: 100%;
            border: none;
       }

        /* Custom Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            border: 2px solid #764ba2;
            border-radius: 50%;
            position: fixed;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 9999;
            transition: all 0.1s ease;
            mix-blend-mode: difference;
        }

        .cursor-follower {
            width: 40px;
            height: 40px;
            background: rgba(118, 75, 162, 0.2);
            border-radius: 50%;
            position: fixed;
            top: 0;
            left: 0;
            pointer-events: none;
            z-index: 9998;
            transition: all 0.3s ease;
        }

        .cursor-trail {
            width: 8px;
            height: 8px;
            background: #667eea;
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9997;
            opacity: 0.6;
            transition: all 0.2s ease;
        }

        /* Cursor hover effects */
        .cursor-hover .cursor {
            transform: scale(2);
            background: #764ba2;
            border-color: #667eea;
        }

        .cursor-hover .cursor-follower {
            transform: scale(1.5);
            background: rgba(102, 126, 234, 0.4);
        }

        /* Magnetic cursor effect */
        .magnetic {
            transition: transform 0.3s ease;
        }

        .magnetic:hover {
            transform: scale(1.05);
        }

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

        /* Header */
        header {
            background: rgba(255, 255, 255, 0.95);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #764ba2;
        }

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

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

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

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.3);
            z-index: 1;
        }

        .hero-content {
            z-index: 2;
            position: relative;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            animation: fadeInUp 1s ease;
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease 0.3s both;
        }


        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: #764ba2;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease 0.6s both;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transition: all 0.6s ease;
            transform: translate(-50%, -50%);
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn:hover {
            background: #667eea;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background: white;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #333;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 2px;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            text-align: center;
        }

        .profile-icon {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8rem;
            border: 8px solid #667eea;
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
            transition: all 0.3s ease;
            margin: 0 auto;
        }

        .profile-icon:hover {
            transform: scale(1.05) rotate(2deg);
            box-shadow: 0 30px 60px rgba(102, 126, 234, 0.4);
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
        }

        /* Education Section */
        .education {
            padding: 100px 0;
            background: white;
        }

        .education-content {
            margin-top: 3rem;
        }

        .education-item {
            display: flex;
            gap: 2rem;
            padding: 2rem;
            margin-bottom: 2rem;
            background: #f8f9fa;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .education-item:hover {
            transform: translateY(-5px);
        }

        .education-icon {
            font-size: 3rem;
            color: #764ba2;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(118, 75, 162, 0.2);
        }

        .education-details {
            flex: 1;
        }

        .education-details h5 {
            text-decoration: none;
            color: #4ba257;
        }

        .education-details h3 {
            color: #333;
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }

        .education-institution {
            color: #764ba2;
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .education-date {
            color: #666;
            font-style: italic;
            margin-bottom: 0.5rem;
        }

        .education-achievement {
            color: #555;
            margin-top: 0.5rem;
        }

        /* Work Experience Section */
        .experience {
            padding: 100px 0;
            background: #f8f9fa;
        }

        .experience-timeline {
            position: relative;
            margin-top: 3rem;
        }

        .experience-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transform: translateX(-50%);
        }

        .experience-item {
            position: relative;
            margin-bottom: 3rem;
            display: flex;
            align-items: flex-start;
        }

        .experience-item:nth-child(odd) {
            flex-direction: row;
            text-align: right;
        }

        .experience-item:nth-child(even) {
            flex-direction: row-reverse;
            text-align: left;
        }

        .experience-date {
            flex: 1;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 25px;
            font-weight: 600;
            margin: 0 2rem;
            position: relative;
        }

        .experience-date::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 20px;
            height: 20px;
            background: #764ba2;
            border: 4px solid white;
            border-radius: 50%;
            transform: translateY(-50%);
        }

        .experience-item:nth-child(odd) .experience-date::after {
            right: -42px;
        }

        .experience-item:nth-child(even) .experience-date::after {
            left: -42px;
        }

        .experience-content {
            flex: 2;
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin: 0 2rem;
            transition: transform 0.3s ease;
        }

        .experience-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(118, 75, 162, 0.2);
        }

        .experience-content h3 {
            color: #764ba2;
            margin-bottom: 0.5rem;
            font-size: 1.4rem;
        }

        .experience-content h4 {
            color: #667eea;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .experience-content ul {
            list-style: none;
            padding: 0;
        }

        .experience-content li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.8rem;
            color: #555;
            line-height: 1.6;
        }

        .experience-content li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: #764ba2;
            font-size: 0.8rem;
        }

        /* Recommendations Section */
        .recommendations {
            padding: 100px 0;
            background: white;
        }

        .recommendations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .recommendation-card {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .recommendation-card::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 4rem;
            color: rgba(118, 75, 162, 0.1);
            font-family: serif;
        }

        .recommendation-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(118, 75, 162, 0.2);
        }

        .recommendation-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .reviewer-details h4 {
            margin: 0;
            color: #333;
            font-size: 1.1rem;
        }

        .reviewer-details p {
            margin: 0;
            color: #666;
            font-size: 0.9rem;
        }

        .rating {
            font-size: 1.2rem;
        }

        .recommendation-text {
            color: #555;
            line-height: 1.6;
            font-style: italic;
        }

        /* Skills Section */
        .skills {
            padding: 100px 0;
            background: #f8f9fa;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .skill-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .skill-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(118, 75, 162, 0.1), transparent);
            transition: left 0.6s ease;
        }

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

        .skill-card:hover {
            transform: translateY(-10px) rotateY(5deg);
            box-shadow: 0 20px 40px rgba(118, 75, 162, 0.2);
        }

        .skill-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #764ba2;
        }

        .skill-card h3 {
            margin-bottom: 1rem;
            color: #333;
        }

        /* Projects Section */
        .projects {
            padding: 100px 0;
            background: white;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .project-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
        }
        .project-card2 {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            padding-bottom: 2rem;
        }

        .project-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        .project-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(102, 126, 234, 0.3);
        }

        .project-image {
            height: 60%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            img {
                width: 140%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.3s ease;
            }
        }

        .project-content {
            padding: 2rem;
        }

        .project-card h3 {
            margin-bottom: 1rem;
            color: #333;
        }

        .project-card p {
            color: #666;
            margin-bottom: 1.5rem;
        }

        .project-links {
            display: flex;
            padding-top: 20px;
            gap: 1rem;
        }

         .project-links2 {
            display: flex;
            padding-top: 87px;
            gap: 1rem;
        }

        .project-links2 a{
            padding: 7px 20px;
            background: #764ba2;
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-size: 0.9rem;
            transition: background 0.3s ease;
        }

        .project-links a {
            padding: 7px 20px;
            background: #764ba2;
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-size: 0.9rem;
            transition: background 0.3s ease;
        }

        .project-button {
            padding: 7px 20px;
            background: #4ba257;
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-size: 0.9rem;
            transition: background 0.3s ease;
        }


        .project-links a:hover {
            background: #667eea;
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: #f8f9fa;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-top: 3rem;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .contact-item i {
            font-size: 1.5rem;
            color: #764ba2;
            width: 30px;
        }

        .contact-form {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #e1e1e1;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #764ba2;
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        



        /* Footer */
        footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
        }

        .social-links a {
            color: white;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: #667eea;
        }

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

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
                padding: 1rem 0;
            }

            .nav-links.active {
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

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

            .about-image .profile-icon {
                width: 250px;
                height: 250px;
                font-size: 6rem;
            }

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

            .education-content {
                margin-top: 2rem;
            }

            .education-item {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .education-icon {
                align-self: center;
            }

            .experience-timeline::before {
                display: none;
            }

            .experience-item {
                flex-direction: column !important;
                text-align: center !important;
            }

            .experience-date {
                margin: 0 0 1rem 0 !important;
            }

            .experience-date::after {
                display: none;
            }

            .experience-content {
                margin: 0 !important;
            }

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

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

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


        
