  :root {
            --primary-color: #2563eb;
            --secondary-color: #f97316;
            --dark-bg: #0f172a;
            --card-bg: #1e293b;
            --text-primary: #f8fafc;
            --text-secondary: #94a3b8;
            --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --accent-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --glass: rgba(255, 255, 255, 0.06);
        }

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

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

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

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

        ::-webkit-scrollbar-thumb {
            background: var(--secondary-color);
            border-radius: 10px;
        }

        /* Navigation */
        .navbar-custom {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(148, 163, 184, 0.1);
            transition: all 0.3s ease;
            padding: 1rem 0;
        }

        .navbar-custom.scrolled {
            background: rgba(15, 23, 42, 0.98);
            padding: 0.5rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .navbar-nav .nav-link {
            color: var(--text-primary) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--secondary-color) !important;
            background: rgba(249, 115, 22, 0.1);
        }

        .navbar-toggler {
            border: none;
            color: var(--text-primary);
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(248, 250, 252, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="50" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="30" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

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

        .nav-icon-image {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            border: 1px solid var(--secondary-color);
            box-shadow: 0 0 40px rgba(249, 115, 22, 0.3);
            transition: all 0.3s ease;
            object-fit: cover;
        }

        .profile-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            border: 4px solid var(--secondary-color);
            box-shadow: 0 0 40px rgba(249, 115, 22, 0.3);
            transition: all 0.3s ease;
            object-fit: cover;
        }

        .profile-image:hover {
            transform: scale(1.05);
            box-shadow: 0 0 60px rgba(249, 115, 22, 0.5);
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }

        .hero .subtitle {
            font-size: 1.25rem;
            color: var(--secondary-color);
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .hero .description {
            font-size: 1.1rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .btn-primary-custom {
            background: var(--secondary-color);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            color: white;
        }

        .btn-primary-custom:hover {
            background: #ea580c;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
        }

        .btn-outline-custom {
            border: 2px solid var(--text-primary);
            color: var(--text-primary);
            padding: 10px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            background: transparent;
        }

        .btn-outline-custom:hover {
            background: var(--text-primary);
            color: var(--dark-bg);
            transform: translateY(-2px);
        }

        /* Cards */
        .card-custom {
            background: var(--card-bg);
            border: 1px solid rgba(148, 163, 184, 0.1);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .card-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--accent-gradient);
        }

        .card-custom:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: var(--secondary-color);
        }

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

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--secondary-color);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .feature-icon:hover {
            transform: scale(1.1) rotate(5deg);
        }

        .feature-icon i {
            font-size: 1.5rem;
            color: white;
        }

        /* Timeline */
        .timeline {
            position: relative;
            padding-left: 2rem;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--secondary-color);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 2rem;
            padding-left: 2rem;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -7px;
            top: 5px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--secondary-color);
            border: 3px solid var(--dark-bg);
        }

        .timeline-date {
            color: var(--secondary-color);
            font-weight: 600;
            font-size: 0.9rem;
        }

        .timeline-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin: 0.5rem 0;
        }

        .timeline-company {
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* Contact Form */
        .form-control-custom {
            background: var(--card-bg);
            border: 1px solid rgba(148, 163, 184, 0.2);
            border-radius: 10px;
            color: var(--text-primary);
            padding: 12px 16px;
            transition: all 0.3s ease;
        }

        .form-control-custom:focus {
            background: var(--card-bg);
            border-color: var(--secondary-color);
            box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.25);
            color: var(--text-primary);
        }

        .form-control-custom::placeholder {
            color: var(--text-secondary);
        }

        /* Floating elements */
        .floating-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: var(--accent-gradient);
            opacity: 0.1;
            animation: float 15s ease-in-out infinite;
        }

        .shape1 { width: 80px; height: 80px; top: 20%; left: 10%; animation-delay: 0s; }
        .shape2 { width: 120px; height: 120px; top: 60%; right: 10%; animation-delay: 5s; }
        .shape3 { width: 60px; height: 60px; bottom: 30%; left: 20%; animation-delay: 10s; }

          /* What I Deliver */
        .deliver-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: rgba(148, 163, 184, 0.05);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .deliver-item:hover {
            background: rgba(249, 115, 22, 0.1);
            transform: translateX(10px);
        }

        .deliver-icon {
            width: 40px;
            height: 40px;
            background: var(--secondary-color);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .deliver-text {
            flex: 1;
            font-size: 1rem;
            line-height: 1.6;
            color: var(--text-secondary);
        }

        /* Certifications */
        .cert-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            border: 1px solid rgba(148, 163, 184, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .cert-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--accent-gradient);
        }

        .cert-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border-color: var(--secondary-color);
        }

        .cert-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
            transition: all 0.3s ease;
        }

        .cert-card:hover .cert-icon {
            transform: scale(1.1) rotate(5deg);
        }

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

        .cert-provider {
            font-size: 0.9rem;
            color: var(--text-secondary);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: var(--secondary-color);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .feature-icon:hover {
            transform: scale(1.1) rotate(5deg);
        }

        .feature-icon i {
            font-size: 1.5rem;
            color: white;
        }

        /* Skills Slider */
        .skills-slider {
            overflow: hidden;
            position: relative;
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            padding: 2rem 0;
            border-radius: 15px;
            margin-bottom: 3rem;
        }

        .skills-track {
            display: flex;
            animation: scroll 30s linear infinite;
            gap: 2rem;
        }

        .skill-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 120px;
            padding: 1.5rem;
            background: rgba(249, 115, 22, 0.1);
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 1px solid rgba(249, 115, 22, 0.2);
        }

        .skill-item:hover {
            transform: translateY(-5px);
            background: rgba(249, 115, 22, 0.2);
            border-color: var(--secondary-color);
        }

        .skill-icon {
            width: 50px;
            height: 50px;
            margin-bottom: 0.5rem;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--secondary-color);
            color: white;
            font-size: 1.5rem;
        }

        .skill-name {
            font-size: 0.9rem;
            font-weight: 600;
            text-align: center;
            color: var(--text-primary);
        }

        .developer-card {
            max-width: 300px;
            margin-inline: auto;
        }

        .glass {
            background: var(--glass);
            border: 1px solid rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(6px);
        }

        .p-3 {
            padding: 1rem !important;
        }

        .white-text{
            color:#fff;
        }

        .form-check.inline-flex label.form-check-label, .form-check.inline-flex input.form-check-input {
            margin-right: 15px;
        }

        .form-check.inline-flex {
            display: inline-flex;
        }

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

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

        .resume-container { padding: 20px;  width:100%; margin-top:100px;}
        .resume-container iframe{ width:100%}


        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }


        /* Responsive */
        @media (max-width: 768px) {
            .hero{
                margin-top: 100px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-primary-custom,
            .btn-outline-custom {
                width: 200px;
                text-align: center;
            }

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