                    :root {
                        --primary: #6e00ff;
                        --secondary: #ff00f5;
                        --accent: #00f7ff;
                        --dark: #0a0a0a;
                        --darker: #121212;
                        --dark-gray: #1e1e1e;
                        --light-gray: #e5e5e5;
                        --white: #ffffff;
                    }
                    
                    .noselect {
  user-select: none;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* Internet Explorer/Edge */
}

                    * {
                        margin: 0;
                        padding: 0;
                        box-sizing: border-box;
                        font-family: 'Rajdhani', 'Orbitron', sans-serif;
                    }

                    @font-face {
                        font-family: 'Rajdhani';
                        src: url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;500;700&display=swap');
                    }

                    @font-face {
                        font-family: 'Orbitron';
                        src: url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
                    }

                    body {
                        background-color: var(--dark);
                        color: var(--light-gray);
                        overflow-x: hidden;
                        line-height: 1.7;
                    }

                    ::-webkit-scrollbar {
                        width: 10px;
                    }

                    ::-webkit-scrollbar-track {
                        background: var(--darker);
                    }

                    ::-webkit-scrollbar-thumb {
                        background: var(--primary);
                        border-radius: 5px;
                        box-shadow: 0 0 10px var(--primary);
                    }

                    .container {
                        max-width: 1400px;
                        margin: 0 auto;
                        padding: 0 30px;
                    }

                    /* Cyberpunk Header */
                    header {
                        position: fixed;
                        top: 0;
                        left: 0;
                        width: 100%;
                        z-index: 1000;
                        padding: 20px 0;
                        transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
                        background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
                        backdrop-filter: blur(5px);
                    }

                    header.scrolled {
                        background: rgba(10,10,10,0.98);
                        box-shadow: 0 5px 30px rgba(110,0,255,0.2);
                        padding: 15px 0;
                    }

                    .header-container {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                    }

                    .logo {
                        font-size: 32px;
                        font-weight: 700;
                        color: var(--white);
                        text-decoration: none;
                        font-family: 'Orbitron', sans-serif;
                        letter-spacing: 1px;
                        position: relative;
                    }

                    .logo span {
                        color: var(--accent);
                        text-shadow: 0 0 10px rgba(0,247,255,0.5);
                    }

                    .logo::after {
                        content: '';
                        position: absolute;
                        bottom: -5px;
                        left: 0;
                        width: 100%;
                        height: 2px;
                        background: linear-gradient(90deg, var(--primary), var(--secondary));
                        transform: scaleX(0);
                        transform-origin: right;
                        transition: transform 0.5s ease;
                    }

                    .logo:hover::after {
                        transform: scaleX(1);
                        transform-origin: left;
                    }

                    .nav-links {
                        display: flex;
                        gap: 40px;
                    }

                    .nav-links a {
                        color: var(--light-gray);
                        text-decoration: none;
                    
                        position: relative;
                        transition: all 0.3s ease;
                        font-family: 'Rajdhani', sans-serif;
                        font-weight: 600;
                        letter-spacing: 1px;
                        padding: 5px 0;
                    }

                    .nav-links a:hover {
                        color: var(--accent);
                        text-shadow: 0 0 10px rgba(0,247,255,0.5);
                    }

                    .nav-links a::after {
                        content: '';
                        position: absolute;
                        bottom: 0;
                        left: 0;
                        width: 0;
                        height: 2px;
                        background: linear-gradient(90deg, var(--primary), var(--accent));
                        transition: width 0.3s ease;
                    }

                    .nav-links a:hover::after {
                        width: 100%;
                    }

                    .hamburger {
                        display: none;
                        cursor: pointer;
                        font-size: 28px;
                        color: var(--white);
                        transition: all 0.3s ease;
                        z-index: 1001;
                    }

                    .hamburger:hover {
                        color: var(--accent);
                    }

                    /* Holographic Hero Section */
                    .hero {
                        height: 100vh;
                        display: flex;
                        align-items: center;
                        position: relative;
                        overflow: hidden;
                        padding-top: 100px;
                    }

                    .hero-content {
                        position: relative;
                        z-index: 3;
                        max-width: 700px;
                    }

                    .hero h1 {
                        font-size: 82px;
                        font-weight: 700;
                        margin-bottom: 25px;
                        line-height: 1.1;
                        font-family: 'Orbitron', sans-serif;
                        background: linear-gradient(to right, var(--primary), var(--accent));
                        -webkit-background-clip: text;
                        background-clip: text;
                        color: transparent;
                        text-shadow: 0 0 20px rgba(110, 0, 255, 0.3);
                    }

                    .hero h1 span {
                        display: inline-block;
                    }

                    .hero p {
                        font-size: 20px;
                        color: var(--light-gray);
                        max-width: 600px;
                        margin-bottom: 40px;
                        line-height: 1.8;
                        font-family: 'Rajdhani', sans-serif;
                        font-weight: 300;
                    }

                    .hero-btns {
                        display: flex;
                        gap: 25px;
                        margin-bottom: 50px;
                    }

                    .btn {
                        padding: 15px 35px;
                        border-radius: 50px;
                        font-weight: 700;
                        font-size: 18px;
                        text-decoration: none;
                        transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
                        display: inline-block;
                        position: relative;
                        overflow: hidden;
                        font-family: 'Rajdhani', sans-serif;
                        letter-spacing: 1px;
                        border: none;
                        cursor: pointer;
                    }

                    .btn-primary {
                        background-color: var(--primary);
                        color: var(--white);
                        box-shadow: 0 0 20px rgba(110, 0, 255, 0.5);
                    }

                    .btn-primary:hover {
                        transform: translateY(-5px);
                        box-shadow: 0 10px 30px rgba(110, 0, 255, 0.7);
                        background-color: var(--secondary);
                    }

                    .btn-primary::before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: -100%;
                        width: 100%;
                        height: 100%;
                        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
                        transition: all 0.6s ease;
                    }

                    .btn-primary:hover::before {
                        left: 100%;
                    }

                    .btn-outline {
                        border: 2px solid var(--primary);
                        color: var(--primary);
                        background: transparent;
                    }

                    .btn-outline:hover {
                        background-color: var(--primary);
                        color: var(--white);
                        transform: translateY(-5px);
                        box-shadow: 0 10px 30px rgba(110, 0, 255, 0.7);
                    }

                    .social-icons {
                        display: flex;
                        gap: 25px;
                        justify-content: center;
                        margin-bottom: 10px;
                    }

                    .social-icons a {
                        width: 50px;
                        height: 50px;
                        border-radius: 50%;
                        background-color: var(--dark-gray);
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        color: var(--light-gray);
                        font-size: 20px;
                        transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
                        position: relative;
                        overflow: hidden;
                    }

                    .social-icons a:hover {
                        background-color: var(--primary);
                        color: var(--white);
                        transform: translateY(-5px);
                        box-shadow: 0 5px 20px rgba(110, 0, 255, 0.5);
                    }

                    .social-icons a::before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: -100%;
                        width: 100%;
                        height: 100%;
                        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
                        transition: all 0.6s ease;
                    }

                    .social-icons a:hover::before {
                        left: 100%;
                    }

                    .hero-bg {
                        position: absolute;
                        top: 0;
                        right: 0;
                        width: 60%;
                        height: 100%;
                        background: linear-gradient(135deg, var(--primary), var(--secondary));
                        clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
                        z-index: 1;
                        opacity: 0.15;
                    }

                    .hero-image {
                        position: absolute;
                        right: 10%;
                        top: 50%;
                        transform: translateY(-50%);
                        z-index: 2;
                        width: 400px;
                        height: 400px;
                        border-radius: 20px;
                        overflow: hidden;
                        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
                        border: 2px solid var(--primary);
                    }

                    .hero-image img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        filter: grayscale(30%) contrast(120%);
                    }

                    .hero-grid {
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        z-index: 0;
                        opacity: 0.05;
                        background-image: 
                            linear-gradient(rgba(110, 0, 255, 0.3) 1px, transparent 1px),
                            linear-gradient(90deg, rgba(110, 0, 255, 0.3) 1px, transparent 1px);
                        background-size: 50px 50px;
                    }

                    .hero-particles {
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        z-index: 0;
                        overflow: hidden;
                    }

                    .particle {
                        position: absolute;
                        background-color: var(--accent);
                        border-radius: 50%;
                        opacity: 0.5;
                        animation: float 15s infinite linear;
                    }

                    @keyframes float {
                        0% {
                            transform: translateY(0) translateX(0);
                        }
                        50% {
                            transform: translateY(-100px) translateX(100px);
                        }
                        100% {
                            transform: translateY(0) translateX(0);
                        }
                    }

                    /* Cyber About Section */
                    .section {
                        padding: 120px 0;
                        position: relative;
                    }

                    .section-title {
                        font-size: 52px;
                        font-weight: 700;
                        margin-bottom: 60px;
                        position: relative;
                        display: inline-block;
                        font-family: 'Orbitron', sans-serif;
                        letter-spacing: 2px;
                    }

                    .section-title::after {
                        content: '';
                        position: absolute;
                        bottom: -15px;
                        left: 0;
                        width: 80px;
                        height: 5px;
                        background: linear-gradient(90deg, var(--primary), var(--secondary));
                        border-radius: 5px;
                        box-shadow: 0 0 10px var(--primary);
                    }

                    .about-content {
                        display: flex;
                        gap: 60px;
                        align-items: center;
                    }

                    .about-image {
                        flex: 1;
                        position: relative;
                        perspective: 1000px;
                    }

                    .about-image img {
                        width: 100%;
                        border-radius: 20px;
                        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
                        transform-style: preserve-3d;
                        transition: all 0.5s ease;
                    }

                    .about-image:hover img {
                        transform: rotateY(10deg) rotateX(5deg);
                        box-shadow: 0 30px 60px rgba(110, 0, 255, 0.3);
                    }

                    .about-image::before {
                        content: '';
                        position: absolute;
                        top: -20px;
                        left: -20px;
                        width: 100%;
                        height: 100%;
                        border: 3px solid var(--primary);
                        border-radius: 20px;
                        z-index: -1;
                        opacity: 0.5;
                        transition: all 0.5s ease;
                    }

                    .about-image:hover::before {
                        top: -15px;
                        left: -15px;
                        opacity: 1;
                    }

                    .about-image::after {
                        content: '';
                        position: absolute;
                        bottom: -20px;
                        right: -20px;
                        width: 100%;
                        height: 100%;
                        border: 3px solid var(--accent);
                        border-radius: 20px;
                        z-index: -2;
                        opacity: 0.5;
                        transition: all 0.5s ease;
                    }

                    .about-image:hover::after {
                        bottom: -15px;
                        right: -15px;
                        opacity: 1;
                    }

                    .about-text {
                        flex: 1;
                    }

                    .about-text h3 {
                        font-size: 32px;
                        margin-bottom: 25px;
                        font-family: 'Orbitron', sans-serif;
                        color: var(--accent);
                        letter-spacing: 1px;
                    }

                    .about-text p {
                        color: var(--light-gray);
                        line-height: 1.8;
                        margin-bottom: 25px;
                        font-size: 18px;
                        font-family: 'Rajdhani', sans-serif;
                    }

                    .skills {
                        margin-top: 40px;
                    }

                    .skill-item {
                        margin-bottom: 25px;
                    }

                    .skill-info {
                        display: flex;
                        justify-content: space-between;
                        margin-bottom: 15px;
                    }

                    .skill-info span {
                        font-family: 'Rajdhani', sans-serif;
                        font-weight: 600;
                        letter-spacing: 1px;
                    }

                    .skill-info span:first-child {
                        color: var(--accent);
                    }

                    .skill-info span:last-child {
                        color: var(--secondary);
                    }

                    .skill-bar {
                        height: 10px;
                        background-color: var(--dark-gray);
                        border-radius: 5px;
                        overflow: hidden;
                        position: relative;
                    }

                    .skill-bar::before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: linear-gradient(90deg, var(--dark-gray), var(--darker));
                        border-radius: 5px;
                    }

                    .skill-progress {
                        height: 100%;
                        background: linear-gradient(90deg, var(--primary), var(--secondary));
                        border-radius: 5px;
                        position: relative;
                        overflow: hidden;
                    }

                    .skill-progress::after {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
                        animation: shine 2s infinite;
                    }

                    @keyframes shine {
                        0% {
                            transform: translateX(-100%);
                        }
                        100% {
                            transform: translateX(100%);
                        }
                    }

                    /* Projects Section */
                    .projects {
                        background-color: var(--darker);
                        position: relative;
                        overflow: hidden;
                    }

                    .projects::before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: 
                            linear-gradient(45deg, transparent 65%, rgba(110, 0, 255, 0.03) 65%) 0 0,
                            linear-gradient(-45deg, transparent 65%, rgba(255, 0, 245, 0.03) 65%) 0 0;
                        background-size: 50px 50px;
                        opacity: 0.5;
                        z-index: 0;
                    }

                    .projects-grid {
                        display: grid;
                        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                        gap: 40px;
                    }

                    .project-card {
                        background-color: var(--dark);
                        border-radius: 15px;
                        overflow: hidden;
                        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
                        transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
                        position: relative;
                    }

                    .project-card:hover {
                        transform: translateY(-10px);
                        box-shadow: 0 25px 60px rgba(110, 0, 255, 0.3);
                    }

                    .project-image {
                        height: 250px;
                        overflow: hidden;
                        position: relative;
                    }

                    .project-image img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        transition: transform 0.5s ease;
                    }

                    .project-card:hover .project-image img {
                        transform: scale(1.1);
                    }

                    .project-overlay {
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
                        display: flex;
                        align-items: flex-end;
                        padding: 30px;
                        opacity: 0;
                        transition: opacity 0.5s ease;
                    }

                    .project-card:hover .project-overlay {
                        opacity: 1;
                    }

                    .project-info {
                        padding: 30px;
                    }

                    .project-title {
                        font-size: 24px;
                        font-weight: 700;
                        margin-bottom: 15px;
                        font-family: 'Orbitron', sans-serif;
                        letter-spacing: 1px;
                        color: var(--white);
                    }

                    .project-category {
                        display: inline-block;
                        padding: 5px 15px;
                        background: linear-gradient(90deg, var(--primary), var(--secondary));
                        color: var(--white);
                        border-radius: 50px;
                        font-size: 14px;
                        margin-bottom: 15px;
                        font-family: 'Rajdhani', sans-serif;
                        font-weight: 600;
                    }

                    .project-description {
                        color: var(--light-gray);
                        line-height: 1.8;
                        font-size: 16px;
                        font-family: 'Rajdhani', sans-serif;
                        margin-bottom: 20px;
                    }

                    .project-links {
                        display: flex;
                        gap: 15px;
                    }

                    .project-links a {
                        padding: 8px 20px;
                        border-radius: 50px;
                        font-size: 14px;
                        font-weight: 600;
                        text-decoration: none;
                        transition: all 0.3s ease;
                        font-family: 'Rajdhani', sans-serif;
                    }

                    .project-links a:first-child {
                        background-color: var(--primary);
                        color: var(--white);
                    }

                    .project-links a:first-child:hover {
                        background-color: var(--secondary);
                    }

                    .project-links a:last-child {
                        border: 1px solid var(--primary);
                        color: var(--primary);
                    }

                    .project-links a:last-child:hover {
                        background-color: var(--primary);
                        color: var(--white);
                    }

                    /* Neon Education Section */
                    .education {
                        background-color: var(--darker);
                        position: relative;
                        overflow: hidden;
                    }

                    .education::before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: 
                            radial-gradient(circle at 20% 30%, rgba(110, 0, 255, 0.03) 0%, transparent 50%),
                            radial-gradient(circle at 80% 70%, rgba(255, 0, 245, 0.03) 0%, transparent 50%);
                        z-index: 0;
                    }

                    .education-container {
                        display: flex;
                        flex-direction: column;
                        gap: 40px;
                        position: relative;
                        z-index: 1;
                    }

                    .education-item {
                        background-color: var(--dark);
                        padding: 40px;
                        border-radius: 15px;
                        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
                        position: relative;
                        overflow: hidden;
                        transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
                        border-left: 5px solid var(--primary);
                    }

                    .education-item:hover {
                        transform: translateY(-10px);
                        box-shadow: 0 20px 50px rgba(110, 0, 255, 0.2);
                    }

                    .education-item::before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: linear-gradient(135deg, rgba(110, 0, 255, 0.05), rgba(255, 0, 245, 0.05));
                        z-index: -1;
                    }

                    .education-year {
                        font-size: 16px;
                        color: var(--accent);
                        margin-bottom: 15px;
                        font-weight: 600;
                        letter-spacing: 1px;
                        font-family: 'Rajdhani', sans-serif;
                    }

                    .education-degree {
                        font-size: 26px;
                        font-weight: 700;
                        margin-bottom: 15px;
                        font-family: 'Orbitron', sans-serif;
                        letter-spacing: 1px;
                        color: var(--white);
                    }

                    .education-institution {
                        font-size: 18px;
                        color: var(--secondary);
                        margin-bottom: 20px;
                        font-family: 'Rajdhani', sans-serif;
                        font-weight: 600;
                    }

                    .education-description {
                        color: var(--light-gray);
                        line-height: 1.8;
                        font-size: 16px;
                        font-family: 'Rajdhani', sans-serif;
                    }

                    /* Holographic Services Section */
                    .services-grid {
                        display: grid;
                        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                        gap: 40px;
                    }

                    .service-card {
                        background-color: var(--dark-gray);
                        padding: 50px 40px;
                        border-radius: 15px;
                        text-align: center;
                        transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
                        position: relative;
                        overflow: hidden;
                        z-index: 1;
                        border: 1px solid rgba(110, 0, 255, 0.1);
                    }

                    .service-card:hover {
                        transform: translateY(-15px);
                        box-shadow: 0 30px 60px rgba(110, 0, 255, 0.2);
                        border: 1px solid rgba(110, 0, 255, 0.3);
                    }

                    .service-card::before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: linear-gradient(135deg, rgba(110, 0, 255, 0.05), rgba(255, 0, 245, 0.05));
                        z-index: -1;
                        opacity: 0;
                        transition: all 0.5s ease;
                    }

                    .service-card:hover::before {
                        opacity: 1;
                    }

                    .service-card::after {
                        content: '';
                        position: absolute;
                        bottom: 0;
                        left: 0;
                        width: 100%;
                        height: 5px;
                        background: linear-gradient(90deg, var(--primary), var(--secondary));
                        transform: scaleX(0);
                        transform-origin: left;
                        transition: transform 0.5s ease;
                    }

                    .service-card:hover::after {
                        transform: scaleX(1);
                    }

                    .service-icon {
                        font-size: 60px;
                        color: var(--primary);
                        margin-bottom: 30px;
                        transition: all 0.5s ease;
                    }

                    .service-card:hover .service-icon {
                        transform: scale(1.2);
                        color: var(--accent);
                        text-shadow: 0 0 20px rgba(0, 247, 255, 0.5);
                    }

                    .service-title {
                        font-size: 24px;
                        font-weight: 700;
                        margin-bottom: 20px;
                        font-family: 'Orbitron', sans-serif;
                        letter-spacing: 1px;
                        color: var(--white);
                    }

                    .service-description {
                        color: var(--light-gray);
                        line-height: 1.8;
                        font-size: 16px;
                        font-family: 'Rajdhani', sans-serif;
                    }

                    /* Cyber Contact Section */
                    .contact {
                        background-color: var(--darker);
                        position: relative;
                        overflow: hidden;
                    }

                    .contact::before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        background: 
                            radial-gradient(circle at 20% 30%, rgba(110, 0, 255, 0.03) 0%, transparent 50%),
                            radial-gradient(circle at 80% 70%, rgba(255, 0, 245, 0.03) 0%, transparent 50%);
                        z-index: 0;
                    }

                    .contact-container {
                        display: flex;
                        gap: 60px;
                        position: relative;
                        z-index: 1;
                    }

                    .contact-info {
                        flex: 1;
                    }

                    .contact-form {
                        flex: 1;
                    }

                    .info-item {
                        display: flex;
                        align-items: flex-start;
                        gap: 25px;
                        margin-bottom: 35px;
                        transition: all 0.3s ease;
                    }

                    .info-item:hover {
                        transform: translateX(10px);
                    }

                    .info-icon {
                        width: 60px;
                        height: 60px;
                        background: linear-gradient(135deg, var(--primary), var(--secondary));
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        font-size: 24px;
                        color: var(--dark);
                        flex-shrink: 0;
                        box-shadow: 0 5px 20px rgba(110, 0, 255, 0.3);
                    }

                    .info-content h3 {
                        font-size: 22px;
                        margin-bottom: 10px;
                        font-family: 'Orbitron', sans-serif;
                        letter-spacing: 1px;
                        color: var(--white);
                    }

                    .info-content p, .info-content a {
                        color: var(--light-gray);
                        text-decoration: none;
                        transition: all 0.3s ease;
                        font-family: 'Rajdhani', sans-serif;
                        font-size: 16px;
                    }

                    .info-content a:hover {
                        color: var(--accent);
                        text-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
                    }

                    .form-group {
                        margin-bottom: 25px;
                        position: relative;
                    }

                    .form-control {
                        width: 100%;
                        padding: 18px 25px;
                        background-color: var(--dark);
                        border: 1px solid rgba(110, 0, 255, 0.2);
                        border-radius: 8px;
                        color: var(--white);
                        font-size: 16px;
                        transition: all 0.3s ease;
                        font-family: 'Rajdhani', sans-serif;
                    }

                    .form-control:focus {
                        outline: none;
                        border-color: var(--primary);
                        box-shadow: 0 0 20px rgba(110, 0, 255, 0.2);
                    }

                    textarea.form-control {
                        min-height: 180px;
                        resize: vertical;
                    }

                    .form-label {
                        position: absolute;
                        left: 25px;
                        top: 18px;
                        color: var(--light-gray);
                        transition: all 0.3s ease;
                        pointer-events: none;
                        font-family: 'Rajdhani', sans-serif;
                    }

                    .form-control:focus + .form-label,
                    .form-control:not(:placeholder-shown) + .form-label {
                        top: -10px;
                        left: 15px;
                        background-color: var(--dark);
                        padding: 0 10px;
                        font-size: 14px;
                        color: var(--accent);
                        border-radius: 20px;
                        margin: 5px 10px 10px 0px;
                    }

                    /* Cyber Footer */
                    footer {
                        background-color: var(--dark);
                        padding: 80px 0 30px;
                        text-align: center;
                        position: relative;
                    }

                    footer::before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 2px;
                        background: linear-gradient(90deg, var(--primary), var(--secondary));
                    }

                    .footer-content {
                        max-width: 800px;
                        margin: 0 auto;
                    }

                    .footer-logo {
                        font-size: 42px;
                        font-weight: 700;
                        color: var(--white);
                        text-decoration: none;
                        font-family: 'Orbitron', sans-serif;
                        letter-spacing: 1px;
                        margin-bottom: 30px;
                        display: inline-block;
                    }

                    .footer-logo span {
                        color: var(--accent);
                    }

                    .footer-content p {
                        color: var(--light-gray);
                        margin-bottom: 40px;
                        font-size: 18px;
                        font-family: 'Rajdhani', sans-serif;
                        line-height: 1.8;
                    }

                    .footer-links {
                        display: flex;
                        justify-content: center;
                        flex-wrap: wrap;
                        gap: 30px;
                        margin-bottom: 40px;
                    }

                    .footer-links a {
                        color: var(--light-gray);
                        text-decoration: none;
                        transition: all 0.3s ease;
                        font-family: 'Rajdhani', sans-serif;
                        font-weight: 600;
                        letter-spacing: 1px;
                        position: relative;
                        padding: 5px 0;
                    }

                    .footer-links a:hover {
                        color: var(--accent);
                    }

                    .footer-links a::after {
                        content: '';
                        position: absolute;
                        bottom: 0;
                        left: 0;
                        width: 0;
                        height: 2px;
                        background: linear-gradient(90deg, var(--primary), var(--accent));
                        transition: width 0.3s ease;
                    }

                    .footer-links a:hover::after {
                        width: 100%;
                    }

                    .social-icons-footer {
                        display: flex;
                        justify-content: center;
                        gap: 25px;
                        margin-bottom: 40px;
                    }

                    .social-icons-footer a {
                        width: 50px;
                        height: 50px;
                        border-radius: 50%;
                        background-color: var(--dark-gray);
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        color: var(--light-gray);
                        font-size: 20px;
                        transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
                        position: relative;
                        overflow: hidden;
                    }

                    .social-icons-footer a:hover {
                        background-color: var(--primary);
                        color: var(--white);
                        transform: translateY(-5px);
                        box-shadow: 0 5px 20px rgba(110, 0, 255, 0.5);
                    }

                    .social-icons-footer a::before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: -100%;
                        width: 100%;
                        height: 100%;
                        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
                        transition: all 0.6s ease;
                    }

                    .social-icons-footer a:hover::before {
                        left: 100%;
                    }

                    .copyright {
                        color: var(--light-gray);
                        font-size: 14px;
                        font-family: 'Rajdhani', sans-serif;
                        padding-top: 15px;
                    }

                    .copyright span {
                        color: var(--accent);
                    }

                    /* Matrix Rain Effect */
                    .matrix-rain {
                        position: fixed;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        z-index: -1;
                        opacity: 0.03;
                        pointer-events: none;
                    }

                    /* Responsive Styles */
                    @media (max-width: 1200px) {
                        .hero h1 {
                            font-size: 72px;
                        }
                        
                        .hero-image {
                            width: 350px;
                            height: 350px;
                        }
                    }

                    @media (max-width: 992px) {
                        .hero h1 {
                            font-size: 62px;
                        }
                        
                        .about-content {
                            flex-direction: column;
                        }
                        
                        .contact-container {
                            flex-direction: column;
                        }
                        
                        .hero-bg {
                            width: 80%;
                            opacity: 0.1;
                        }
                        
                        .hero-image {
                            width: 300px;
                            height: 300px;
                        }
                        
                        .section-title {
                            font-size: 46px;
                        }
                    }

                    @media (max-width: 768px) {
                        .nav-links {
                            position: fixed;
                            top: 0;
                            left: -100%;
                            width: 80%;
                            height: 100vh;
                            background-color: var(--dark);
                            flex-direction: column;
                            align-items: center;
                            justify-content: center;
                            gap: 40px;
                            transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
                            backdrop-filter: blur(10px);
                            z-index: 1000;
                        }
                        
                        .nav-links.active {
                            left: 0;
                        }
                        
                        .hamburger {
                            display: block;
                        }
                        
                        .hero h1 {
                            font-size: 52px;
                        }
                        
                        .hero p {
                            font-size: 18px;
                        }
                        
                        .hero-btns {
                            flex-direction: column;
                            gap: 20px;
                        }
                        
                        .btn {
                            width: 100%;
                            text-align: center;
                        }
                        
                        .hero-bg {
                            width: 100%;
                            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
                            opacity: 0.08;
                        }
                        
                        .hero-image {
                            display: none;
                        }
                        
                        .section-title {
                            font-size: 40px;
                        }
                        
                        .services-grid, .projects-grid {
                            grid-template-columns: 1fr;
                        }
                    }

                    @media (max-width: 576px) {
                        .hero h1 {
                            font-size: 42px;
                        }
                        
                        .section {
                            padding: 80px 0;
                        }
                        
                        .section-title {
                            font-size: 36px;
                        }
                        
                        .service-card, .education-item {
                            padding: 30px;
                        }
                        
                        .info-icon {
                            width: 50px;
                            height: 50px;
                            font-size: 20px;
                        }
                        
                        .footer-links {
                            flex-direction: column;
                            gap: 20px;
                        }
                    }

                    /*  */

                      .copyright a{
                        color: #6e00ff; 
                        text-decoration: none;
                    }

                    .copyright a:hover{
                        transform: translateX(-5px);
                        color: var(--secondary);
                    }
                    
                    
                    /*Foem */
                    
                   
    .form-group {
      margin-bottom: 15px;
    }

    .form-control {
      width: 100%;
      padding: 10px;
      margin-top: 5px;
    }

    .btn-primary {
      padding: 10px 20px;
      background-color: #007bff;
      color: white;
      border: none;
      cursor: pointer;
    }

    .btn-primary:hover {
      background-color: #0056b3;
    }

    .popup {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.6);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .popup-content {
      background: white;
      padding: 30px 50px;
      border-radius: 10px;
      font-size: 18px;
      font-weight: bold;
      animation: zoomIn 0.3s ease-in-out;
    }

    @keyframes zoomIn {
      from { transform: scale(0.8); opacity: 0; }
      to { transform: scale(1); opacity: 1; }
    }