body {
            box-sizing: border-box;
        }
        
        /* Intro Loader */
        .intro-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10000;
            flex-direction: column;
        }
        
        .loader-content {
            text-align: center;
        }
        
        .loader-logo {
            font-size: 4rem;
            font-weight: 700;
            background: linear-gradient(135deg, #6366f1, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 2rem;
            font-family: 'Poppins', sans-serif;
            animation: pulse 1.5s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .loader-bar {
            width: 300px;
            height: 4px;
            background: rgba(99, 102, 241, 0.2);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }
        
        .loader-progress {
            height: 100%;
            background: linear-gradient(90deg, #6366f1, #ec4899);
            width: 0%;
            transition: width 0.3s ease;
            border-radius: 10px;
        }
        
        .intro-loader {
            transition: opacity 0.8s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            cursor: none;
        }
        
        html, body {
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
            font-family: 'Inter', sans-serif;
            background: #0f172a;
            color: #f8fafc;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        
        /* Custom Cursor */
        .custom-cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            border: 2px solid var(--primary);
            border-radius: 50%;
            pointer-events: none;
            z-index: 99999;
            transition: transform 0.2s ease, background 0.2s ease;
            mix-blend-mode: difference;
        }
        
        .cursor-follower {
            position: fixed;
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            pointer-events: none;
            z-index: 99998;
            transition: transform 0.15s ease;
        }
        
        .custom-cursor.cursor-hover {
            transform: scale(2);
            background: rgba(99, 102, 241, 0.2);
        }
        
        :root {
            --primary: #6366f1;
            --secondary: #8b5cf6;
            --accent: #ec4899;
            --bg: #0f172a;
            --bg-light: #1e293b;
        }
        
        /* Navigation */
        .navbar {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 1200px;
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            padding: 15px 30px;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            font-family: 'Poppins', sans-serif;
        }
        
        .logo:hover {
            transform: scale(1.1);
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
            list-style: none;
        }
        
        .nav-links a {
            color: #f8fafc;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .hire-btn {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            transition: transform 0.3s;
        }
        
        .hire-btn:hover {
            transform: translateY(-2px);
        }
        
        /* Sections */
        section {
            width: 100%;
            min-height: 100%;
            padding: 120px 40px 80px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        
        .hero {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
            pointer-events: none;
            opacity: 0.5;
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
        }
        
        .hero h1 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, #f8fafc, var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: 'Playfair Display', serif;
        }
        
        .hero .tagline {
            font-size: 1.3rem;
            color: rgba(248, 250, 252, 0.8);
            margin-bottom: 2rem;
            max-width: 800px;
        }
        
        .typing {
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 2rem;
            min-height: 50px;
            font-weight: 600;
            font-family: 'Raleway', sans-serif;
        }
        
        .typing::after {
            content: '|';
            animation: blink 0.7s infinite;
        }
        
        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }
        
        .btn-group {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .primary-btn, .secondary-btn {
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Raleway', sans-serif;
            letter-spacing: 0.5px;
        }
        
        .primary-btn {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
        }
        
        .primary-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(99, 102, 241, 0.5);
        }
        
        .secondary-btn {
            background: transparent;
            color: white;
            border: 2px solid var(--primary);
        }
        
        .secondary-btn:hover {
            background: var(--primary);
        }
        
        /* About Section */
        .about {
            background: var(--bg);
        }
        
        .section-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 3rem;
            background: linear-gradient(135deg, #f8fafc, var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: -1px;
        }
        
        .about-content {
            max-width: 1200px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .about-image {
            width: 100%;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8rem;
            color: white;
        }
        
        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }
        
        .about-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: rgba(248, 250, 252, 0.8);
            margin-bottom: 2rem;
        }
        
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
        
        .skill-item {
            background: rgba(99, 102, 241, 0.1);
            padding: 15px 20px;
            border-radius: 15px;
            border: 1px solid rgba(99, 102, 241, 0.2);
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }
        
        .skill-item:hover {
            background: rgba(99, 102, 241, 0.2);
            transform: translateX(10px);
        }
        
        .skill-item i {
            color: var(--primary);
            font-size: 1.5rem;
        }
        
        /* Skills Section */
        .skills-section {
            background: var(--bg-light);
        }
        
        .skill-tabs {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
        
        .skill-tab {
            padding: 15px 30px;
            background: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(99, 102, 241, 0.3);
            color: white;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Raleway', sans-serif;
        }
        
        .skill-tab:hover {
            border-color: var(--primary);
            background: rgba(99, 102, 241, 0.1);
            transform: translateY(-2px);
        }
        
        .skill-tab.active {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-color: transparent;
            box-shadow: 0 5px 20px rgba(99, 102, 241, 0.4);
        }
        
        .skill-tab i {
            font-size: 1.2rem;
        }
        
        .skills-container {
            max-width: 1200px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }
        
        .skill-category {
            background: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.3s;
            display: none;
        }
        
        .skill-category.active {
            display: block;
            animation: fadeInUp 0.5s ease;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .skill-category:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
        }
        
        .skill-category h3 {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .skill-bars {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .skill-bar {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .skill-info {
            display: flex;
            justify-content: space-between;
            font-size: 0.95rem;
            font-weight: 500;
        }
        
        .skill-progress {
            width: 100%;
            height: 10px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }
        
        .skill-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 10px;
            transition: width 1.5s ease;
            animation: skillLoad 1.5s ease;
        }
        
        @keyframes skillLoad {
            from { width: 0%; }
        }
        
        /* Portfolio Section */
        .portfolio {
            background: var(--bg);
        }
        
        .portfolio-filters {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }
        
        .filter-btn {
            padding: 12px 30px;
            background: transparent;
            border: 2px solid rgba(99, 102, 241, 0.3);
            color: white;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 500;
        }
        
        .filter-btn:hover {
            border-color: var(--primary);
            background: rgba(99, 102, 241, 0.1);
        }
        
        .filter-btn.active {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border-color: transparent;
        }
        
        .portfolio-grid {
            max-width: 1200px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .portfolio-item {
            background: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s;
            opacity: 1;
        }
        
        .portfolio-item.hidden {
            display: none;
        }
        
        .portfolio-item:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
        }
        
        .portfolio-image {
            width: 100%;
            height: 250px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .portfolio-placeholder {
            font-size: 5rem;
            color: var(--primary);
            opacity: 0.5;
        }
        
        .portfolio-info {
            padding: 2rem;
        }
        
        .portfolio-info h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .portfolio-info p {
            color: rgba(248, 250, 252, 0.7);
            margin-bottom: 1rem;
            line-height: 1.6;
        }
        
        .portfolio-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        
        .portfolio-tags span {
            padding: 5px 15px;
            background: rgba(99, 102, 241, 0.2);
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: 15px;
            font-size: 0.85rem;
            color: var(--primary);
        }
        
        /* Services Section */
        .services {
            background: var(--bg-light);
        }
        
        .services-grid {
            max-width: 1200px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .service-card {
            background: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
        }
        
        .service-card i {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        
        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .service-card p {
            color: rgba(248, 250, 252, 0.7);
            line-height: 1.6;
        }
        
        /* Contact Section */
        .contact {
            background: var(--bg);
        }
        
        .contact-container {
            max-width: 1200px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            background: rgba(15, 23, 42, 0.6);
            padding: 1.5rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s;
        }
        
        .contact-item:hover {
            border-color: var(--primary);
            transform: translateX(10px);
        }
        
        .contact-item i {
            font-size: 2rem;
            color: var(--primary);
        }
        
        .contact-item h4 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        
        .contact-item p {
            color: rgba(248, 250, 252, 0.7);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .social-link {
            width: 50px;
            height: 50px;
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.3rem;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .social-link:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
        }
        
        .contact-form {
            background: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: white;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(99, 102, 241, 0.1);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }
        
        .submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(99, 102, 241, 0.5);
        }
        
        /* Footer */
        .footer {
            background: var(--bg-light);
            padding: 3rem 20px;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }
        
        .footer-text {
            color: rgba(248, 250, 252, 0.7);
            margin-bottom: 1.5rem;
        }
        
        .footer-social {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        
        .footer-copyright {
            color: rgba(248, 250, 252, 0.5);
            font-size: 0.9rem;
        }
        
        /* Theme Toggle Button */
        .theme-toggle {
            position: fixed;
            top: 100px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--primary);
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            transition: all 0.3s;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }
        
        .theme-toggle:hover {
            transform: rotate(180deg) scale(1.1);
            border-color: var(--primary);
        }
        
        body.light-theme {
            --bg: #f8fafc;
            --bg-light: #e2e8f0;
            --text: #0f172a;
            background: #f8fafc;
        }
        
        body.light-theme .hero,
        body.light-theme .about,
        body.light-theme .services,
        body.light-theme .contact,
        body.light-theme .portfolio,
        body.light-theme .skills-section {
            background: var(--bg);
            color: var(--text);
        }
        
        body.light-theme .navbar,
        body.light-theme .service-card,
        body.light-theme .contact-form,
        body.light-theme .contact-item,
        body.light-theme .skill-category,
        body.light-theme .portfolio-item,
        body.light-theme .theme-toggle {
            background: rgba(255, 255, 255, 0.9);
            color: var(--text);
            border-color: rgba(99, 102, 241, 0.3);
        }

        body.light-theme .nav-links a,
        body.light-theme .about-text p,
        body.light-theme .service-card p,
        body.light-theme .contact-item p,
        body.light-theme .portfolio-info p,
        body.light-theme .footer-text,
        body.light-theme .footer-copyright {
            color: rgba(15, 23, 42, 0.8);
        }
        
        body.light-theme .section-title,
        body.light-theme .hero h1,
        body.light-theme h2,
        body.light-theme h3,
        body.light-theme h4 {
            color: var(--text);
        }
        
        body.light-theme .skill-item,
        body.light-theme .filter-btn {
            background: rgba(99, 102, 241, 0.1);
            color: var(--text);
        }
        
        body.light-theme .footer {
            background: #e2e8f0;
        }
        
        body.light-theme .footer-logo {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        body.light-theme .form-group input,
        body.light-theme .form-group textarea {
            background: rgba(15, 23, 42, 0.05);
            color: var(--text);
            border-color: rgba(15, 23, 42, 0.2);
        }
        
        body.light-theme #particles-js {
            opacity: 0.2;
        }
        
        body.light-theme .custom-cursor {
            border-color: var(--primary);
        }
        
        body.light-theme .cursor-follower {
            background: var(--primary);
        }
        
        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            border: 3px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 999;
            transition: all 0.3s;
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
        }
        
        .scroll-top.show {
            display: flex;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .scroll-top:hover {
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.8);
        }
        
        /* Business Card in Footer */
        .business-card-container-footer {
            perspective: 1000px;
            margin-bottom: 2rem;
            display: flex;
            justify-content: center;
        }
        
        .business-card {
            width: 350px;
            height: 200px;
            position: relative;
            transform-style: preserve-3d;
            transition: transform 0.6s;
            cursor: pointer;
        }
        
        .business-card.flipped {
            transform: rotateY(180deg);
        }
        
        .card-front, .card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }
        
        .card-front {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .card-back {
            background: linear-gradient(135deg, #1e293b, #0f172a);
            color: white;
            transform: rotateY(180deg);
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 15px;
        }
        
        .card-logo {
            font-size: 2rem;
            font-weight: 900;
            letter-spacing: 2px;
        }
        
        .card-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .card-title {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-bottom: 15px;
        }
        
        .card-contact {
            display: flex;
            flex-direction: column;
            gap: 8px;
            font-size: 0.85rem;
        }
        
        .card-contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .card-contact-item i {
            width: 20px;
        }
        
        .card-flip-hint {
            text-align: center;
            font-size: 0.75rem;
            opacity: 0.7;
            margin-top: 10px;
        }
        
        /* Footer DateTime */
        .footer-datetime {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin: 1.5rem 0;
            padding: 12px 25px;
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: 25px;
            color: var(--primary);
            font-weight: 500;
            font-size: 1rem;
            display: inline-flex;
        }
        
        /* Hire Popup Modal */
        .hire-popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 10001;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        
        .hire-popup-overlay.active {
            display: flex;
        }
        
        .hire-popup {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
            border: 2px solid rgba(99, 102, 241, 0.3);
            border-radius: 20px;
            padding: 3rem;
            max-width: 600px;
            width: 100%;
            max-height: 90%;
            overflow-y: auto;
            position: relative;
            animation: popupSlideIn 0.4s ease;
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
        }
        
        @keyframes popupSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .hire-popup-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: rgba(239, 68, 68, 0.2);
            border: 1px solid rgba(239, 68, 68, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fca5a5;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .hire-popup-close:hover {
            background: rgba(239, 68, 68, 0.4);
            transform: rotate(90deg);
        }
        
        .hire-popup-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .hire-popup-icon {
            font-size: 3rem;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1rem;
        }
        
        .hire-popup h2 {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
        }
        
        .hire-popup-desc {
            color: rgba(248, 250, 252, 0.8);
            line-height: 1.6;
        }
        
        .hire-popup-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        
        .hire-contact-info {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }
        
        .hire-contact-info h4 {
            color: white;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        
        .hire-contact-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .hire-contact-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 10px 20px;
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: 25px;
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        
        .hire-contact-link:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .portfolio-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
            
            .skills-container {
                grid-template-columns: 1fr;
            }
            
            .about-content {
                gap: 2rem;
            }
            
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .navbar {
                padding: 12px 20px;
                width: 95%;
            }
            
            .nav-links {
                display: none;
            }
            
            .logo {
                font-size: 1.2rem;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero .tagline {
                font-size: 1rem;
            }
            
            .typing {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .about-content,
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                height: 300px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .skills-grid {
                grid-template-columns: 1fr;
            }
            
            .skills-container {
                grid-template-columns: 1fr;
            }
            
            .skill-tabs {
                flex-direction: column;
                width: 100%;
                max-width: 400px;
            }
            
            .skill-tab {
                width: 100%;
                justify-content: center;
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            
            .portfolio-filters {
                flex-direction: column;
                width: 100%;
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .filter-btn {
                width: 100%;
            }
            
            .business-card {
                width: 300px;
                height: 180px;
            }
            
            .card-name {
                font-size: 1.2rem;
            }
            
            .card-title {
                font-size: 0.8rem;
            }
            
            .theme-toggle {
                width: 50px;
                height: 50px;
                top: 90px;
                right: 20px;
            }
            
            .scroll-top {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
            }
            
            section {
                padding: 100px 20px 60px;
            }
            
            .btn-group {
                flex-direction: column;
                width: 100%;
            }
            
            .primary-btn, .secondary-btn {
                width: 100%;
                justify-content: center;
            }
            
            .hire-popup {
                padding: 2rem 1.5rem;
            }
            
            .hire-contact-links {
                flex-direction: column;
                width: 100%;
            }
            
            .hire-contact-link {
                width: 100%;
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero .tagline {
                font-size: 0.9rem;
            }
            
            .typing {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .business-card {
                width: 280px;
                height: 170px;
            }
            
            .card-logo {
                font-size: 1.5rem;
            }
            
            .card-name {
                font-size: 1.1rem;
            }
            
            .card-contact {
                font-size: 0.75rem;
            }
            
            .portfolio-filters {
                gap: 0.5rem;
            }
            
            .filter-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
                width: 100%;
            }
            
            .skill-tab {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
            
            .primary-btn, .secondary-btn {
                padding: 12px 25px;
                font-size: 0.9rem;
            }
            
            .service-card {
                padding: 2rem 1.5rem;
            }
            
            .contact-form {
                padding: 2rem 1.5rem;
            }
            
            .footer-datetime {
                font-size: 0.85rem;
                padding: 10px 15px;
            }
        }
        #mobileMenu {
    transform-origin: top;
    animation: dropMenu 0.35s ease;
}

@keyframes dropMenu {
    0% { opacity: 0; transform: scaleY(0.7); }
    100% { opacity: 1; transform: scaleY(1); }
}

.mobile-link {
    color: white;
    transition: 0.3s;
}

.mobile-link:hover {
    color: var(--primary);
    transform: translateX(5px);
}
#heroName{
    font-family: Arial, Helvetica, sans-serif;
}
#heroTagline{
    font-family: Arial, Helvetica, sans-serif;
}   
    .about_image{
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }