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

        :root {
            --primary-bg: #0f0f23;
            --secondary-bg: #1a1a2e;
            --accent-violet: #8b5cf6;
            --accent-pink: #ec4899;
            --accent-purple: #a855f7;
            --text-primary: #ffffff;
            --text-secondary: #d1d5db;
            --text-tertiary:rgb(233, 228, 228);
            --text-muted: #9ca3af;
            --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
            --gradient-secondary: linear-gradient(135deg, #a855f7 0%, #8b5cf6 100%);
            --nav-bg: rgba(15, 15, 35, 0.95);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: var(--primary-bg);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 5rem;
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--nav-bg);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(139, 92, 246, 0.1);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .logo {
            font-size: 2rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        } 

        nav ul {
            display: flex;
            justify-content: center;
            align-items: center;
            list-style: none;
            gap: 0.5rem;
        }

        nav a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 520;
            font-size: 1.2rem;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        nav a:hover {
            color: var(--accent-violet);
        }

        nav a.active {
            color: var(--accent-violet);
        }

        .download-cv {
            background: var(--gradient-primary);
            color: white;
            padding: 0.5rem 1.2rem;
            border-radius: 25px;
            text-decoration: none;
            border: 2px solid linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
            font-weight: 560;
            font-size: 15px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
            /* white-space: nowrap; */
        }

        .download-cv:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        }

        /* Sections */
        section {
            min-height: 100vh;
            padding: 5rem 3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .container {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
        }

        /* Home Section */
        #home {
            background: var(--primary-bg);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #home::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
            z-index: 1;
        }

        .geometric-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
        }

        .dot {
            position: absolute;
            width: 8px;
            height: 8px;
            background: rgba(139, 92, 246, 0.3);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .dot:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
        .dot:nth-child(2) { top: 60%; left: 15%; animation-delay: 1s; }
        .dot:nth-child(3) { top: 30%; right: 20%; animation-delay: 2s; }
        .dot:nth-child(4) { bottom: 40%; right: 10%; animation-delay: 3s; }
        .dot:nth-child(5) { bottom: 20%; left: 25%; animation-delay: 4s; }
        .dot:nth-child(6) { top: 70%; right: 30%; animation-delay: 5s; }

        @keyframes float {
            0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; }
            50% { transform: translateY(-20px) scale(1.2); opacity: 0.6; }
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
            margin-top: 40px;
        }

        .hero-left {
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: justify;
        }

        .hero-name {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1rem;
            padding-top: 2rem;
            color: var(--text-primary);
        }

        .hero-role {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
            max-width: 600px;
        }

          
        .hero-button {
            background: var(--gradient-primary);
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
            width: fit-content;
            background-clip: padding-box;
            position: relative;
            z-index: 1;
            overflow: hidden;
        }

        .hero-button::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 25px;
            padding: -2px;
            background: var(--gradient-primary);
            -webkit-mask: 
                linear-gradient(#fff 0 0) content-box, 
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            z-index: -1;
            transition: all 0.3s ease;
        }

        .hero-button:hover {
            background: transparent;
            color: var(--gradient-text, white); /* Optional: define if gradient color is text-friendly */
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
        }

        .hero-right {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .profile-circle {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            /* box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4); */
            position: relative;
            overflow: hidden;
        }

        .profile-circle img {
            width: 95%;
            height: 95%;
            border-radius: 50%;
            object-fit: contain;
            position: relative;
            /* gap: 50px;
            margin: 50px; */
        }

            
        .circle-spin{
            position: absolute;
            /* width: 220px;
            height: 220px; */
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 3px solid transparent;
            border-left: 4px solid rgb(85, 13, 98);
            border-right: 4px solid rgb(85, 13, 98);
            border: gradient(to bottom, blue, violet, pink) 1;;
            animation: spin 8s linear infinite;
            z-index: 1;
        }


        @keyframes spin {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
        }


        /* About Section */
        #about {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        }

        .about-content {
                width: 100%;
                margin: 0 auto;
                padding: 0;
                box-sizing: border-box;
                display: flex;
                text-align: center; 
                justify-content: center;
                align-items: center;
                flex-direction: column;
            /* max-width: 1000px;
            margin: 0 auto;
            text-align: center; */
        }

          
        .section-title {
            font-size: 3rem;
            margin-bottom: 2rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
            font-weight: 700; 
        }

        .about-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-secondary);
            padding-left: 20px;
            margin-bottom: 2rem;
            margin-right: 0;
            padding-right: 0;
            max-width: 100%;   /* Never exceed screen width */
            width: 100%;       /* Take full available space */
            text-align: justify;
            padding: 0 1rem;  
            display: flex;
            flex-direction: column;
            text-align: justify;
        }

        .about-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            max-width: 1000px;
            max-width: 100%;
        }

        .highlight-item {
            text-align: center;
            padding: 2rem;
            background: rgba(139, 92, 246, 0.1);
            border-radius: 15px;
            border: 1px solid rgba(139, 92, 246, 0.2);
            transition: all 0.3s ease;
        }

        .highlight-item:hover {
            transform: translateY(-5px);
            border-color: var(--accent-violet);
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
        }

        .highlight-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .highlight-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .highlight-desc {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        /* Skills Section */
        #skills {
            background: var(--primary-bg);
        }

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

        .skill-card {
            background: rgba(139, 92, 246, 0.05);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(139, 92, 246, 0.1);
            position: relative;
            overflow: hidden;
        }

        .skill-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .skill-card:hover::before {
            transform: scaleX(1);
        }

        .skill-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-violet);
            box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
        }

        .skill-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .skill-card h3 {
            color: var(--text-primary);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .skill-card p {
            color: var(--text-secondary);
        }

        /* Projects Section */
        #projects {
            background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
        }

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

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

        .project-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-violet);
            box-shadow: 0 25px 50px rgba(139, 92, 246, 0.2);
        }

        .project-image {
            height: 220px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            
        }

        .project-image>img{
            height: 220px;
            width: 100%;
        }

        .project-content {
            padding: 2rem;
        }

        .project-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .project-description {
            color: var(--text-tertiary);
            margin-bottom: 1rem;
            text-align: justify;
        }

        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .tech-tag {
            background: rgba(139, 92, 246, 0.2);
            color: var(--accent-violet);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            border: 1px solid rgba(139, 92, 246, 0.3);
        }

        /* Experience Section */
        #experience {
            background: var(--primary-bg);
        }

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

        .experience-card {
            background: rgba(139, 92, 246, 0.05);
            border-radius: 20px;
            padding: 2.5rem;
            position: relative;
            transition: all 0.3s ease;
            border: 1px solid rgba(139, 92, 246, 0.1);
        }

        .experience-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .experience-card:hover::before {
            transform: scaleX(1);
            
        }

        .experience-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-violet);
            box-shadow: 0 22px 50px rgba(139, 92, 246, 0.2);
            
        }

        .experience-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            flex-wrap: nowrap;
            gap: 1rem;
        }

        .experience-title {
            font-size: 1.5rem;
            font-weight: 700;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .experience-company {
            font-size: 1.1rem;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .experience-date {
            background: rgba(139, 92, 246, 0.2);
            color: var(--accent-violet);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            white-space: nowrap;
        }

        .experience-description {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .experience-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .skill-tag {
            background: rgba(236, 72, 153, 0.2);
            color: var(--accent-pink);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 500;
            border: 1px solid rgba(236, 72, 153, 0.3);
        }

        /* Contact Section */
        #contact {
            background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
        }

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

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

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            background: rgba(139, 92, 246, 0.05);
            border-radius: 15px;
            transition: all 0.3s ease;
            border: 1px solid rgba(139, 92, 246, 0.1);
        }

        .contact-item:hover {
            border-color: var(--accent-violet);
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
        }

        .contact-icon {
            font-size: 1.5rem;
            color: var(--accent-violet);
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

       
        .form-group {
            display: flex;
            flex-direction: column;
            margin-top: 15px;
        }

        .form-group label {
            margin-bottom: 0.5rem;
            color: var(--accent-violet);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            padding: 1rem;
            background: rgba(139, 92, 246, 0.05);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 10px;
            color: var(--text-primary);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-violet);
            box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
        }

        .submit-btn {
            padding: 1rem 2rem;
            background: var(--gradient-primary);
            border: none;
            border-radius: 25px;
            color: white;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
            margin-top: 40px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            nav {
                padding: 1rem 2rem;
                gap: 1rem;
                width: 768px;
            }

            nav ul {
                /* flex-wrap: wrap;
                gap: 1rem; */
                display: none;
            }

            .about-text{
                width: 600px;
            }

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

            .hero-container {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: left;
                margin-top: 60px;
                position: relative;
            }

            .hero-left{
                margin-top: 450px;
            }

           
            .hero-name {
                font-size: 3rem;  
            padding-top: -2rem;
            }

            .hero-role {
                font-size: 2rem;
            }

            .profile-circle {
                width: 300px;
                height: 300px;
                margin-top: -1500px;
                position: absolute;
            }

            .hero-description{
                text-align: justify;
            }

            section {
                padding: 3rem 1.5rem;
            }

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

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

        @media (max-width: 478px) {
           
             nav {
                padding: 1rem 2rem;
                gap: 1rem;
                width: 479px;
            }
            .hero-name {
                font-size: 2.5rem;
            }

            .hero-role {
                font-size: 1.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .profile-circle {
                width: 250px;
                height: 250px;

            }

            .about-text{
                width: fit-content;
            }

        }


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

        .hero-left > * {
            animation: slideUp 0.8s ease-out forwards;
        }

        .hero-left > *:nth-child(1) { animation-delay: 0.1s; }
        .hero-left > *:nth-child(2) { animation-delay: 0.2s; }
        .hero-left > *:nth-child(3) { animation-delay: 0.3s; }
        .hero-left > *:nth-child(4) { animation-delay: 0.4s; }

        /* Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--primary-bg);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gradient-primary);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--accent-violet);
        }


        .linkedin-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            /* background: var(--gradient-primary); */
            color: var(--accent-pink);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
             margin-left: -12px;
            }

            .linkedin-link:hover {
            margin-top: 5px;
            background: var(--gradient-secondary);
            color : black;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            }