 /*======================================
          GOOGLE FONT
        ======================================*/
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

        /*======================================
          CSS VARIABLES
        ======================================*/
        :root {
            --primary: #2563EB;
            --primary-dark: #1D4ED8;
            --secondary: #06B6D4;
            --accent: #7C3AED;
            --dark: #0F172A;
            --gray: #64748B;
            --light: #F8FAFC;
            --white: #FFFFFF;
            --border: #E2E8F0;
            --shadow-sm: 0 8px 20px rgba(15, 23, 42, .05);
            --shadow-md: 0 18px 40px rgba(15, 23, 42, .08);
            --shadow-lg: 0 30px 60px rgba(15, 23, 42, .12);
            --radius: 18px;
            --radius-lg: 28px;
            --transition: .35s ease;
        }

        /*======================================
          RESET
        ======================================*/
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--light);
            color: var(--dark);
            overflow-x: hidden;
        }

        /*======================================
          GLOBAL
        ======================================*/
        .container {
            width: min(1200px, 90%);
            margin: auto;
        }

        section {
            padding: 110px 0;
        }

        img {
            display: block;
            width: 100%;
        }

        a {
            text-decoration: none;
        }

        ul {
            list-style: none;
        }

        /*======================================
        BACKGROUND
        ======================================*/
        body {
            background:
                radial-gradient(circle at top right, rgba(37, 99, 235, .08), transparent 35%),
                radial-gradient(circle at bottom left, rgba(6, 182, 212, .06), transparent 35%),
                #F8FAFC;
        }

        /*======================================
        HEADER
        ======================================*/
        .header {
            position: fixed;
            top: 20px;
            left: 0;
            width: 100%;
            z-index: 1000;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(255, 255, 255, .72);
            backdrop-filter: blur(20px);
            padding: 18px 35px;
            border-radius: 70px;
            box-shadow: var(--shadow-sm);
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--dark);
        }

        .logo span {
            color: var(--primary);
        }

        .nav {
            display: flex;
            gap: 35px;
        }

        .nav a {
            color: var(--gray);
            font-weight: 600;
            position: relative;
            transition: var(--transition);
        }

        .nav a:hover {
            color: var(--primary);
        }

        .nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: .3s;
        }

        .nav a:hover::after {
            width: 100%;
        }

        /*======================================
        BUTTONS
        ======================================*/
        .nav-buttons {
            display: flex;
            gap: 15px;
        }

        .resume-btn {
            padding: 13px 24px;
            border: 1px solid var(--border);
            border-radius: 50px;
            font-weight: 600;
            color: var(--dark);
            transition: var(--transition);
        }

        .resume-btn:hover {
            background: white;
            box-shadow: var(--shadow-sm);
        }

        .hire-btn {
            padding: 13px 28px;
            background: var(--primary);
            border-radius: 50px;
            color: white;
            font-weight: 700;
            transition: var(--transition);
        }

        .hire-btn:hover {
            transform: translateY(-3px);
            background: var(--primary-dark);
        }

        /*======================================
        HERO
        ======================================*/
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1.1fr .9fr;
            gap: 70px;
            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 22px;
            background: #DBEAFE;
            border-radius: 999px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 30px;
        }

        .hero h1 {
            font-size: 4.4rem;
            font-weight: 900;
            line-height: 1.05;
            margin-bottom: 30px;
            letter-spacing: -2px;
        }

        .hero h1 span {
            display: block;
            color: var(--primary);
        }

        .hero p {
            font-size: 1.15rem;
            line-height: 1.9;
            color: var(--gray);
            max-width: 620px;
            margin-bottom: 40px;
        }

        .hero-buttons {
            display: flex;
            gap: 18px;
            margin-bottom: 45px;
        }

        .primary-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 18px 34px;
            background: var(--primary);
            color: white;
            font-weight: 700;
            border-radius: 999px;
            transition: var(--transition);
            box-shadow: var(--shadow-md);
        }

        .primary-btn:hover {
            transform: translateY(-5px);
        }

        .secondary-btn {
            padding: 18px 34px;
            border-radius: 999px;
            border: 2px solid var(--border);
            font-weight: 700;
            color: var(--dark);
            transition: var(--transition);
        }

        .secondary-btn:hover {
            background: white;
        }

        .trusted-platforms {
            margin-top: 30px;
        }

        .trusted-platforms span {
            font-weight: 700;
            color: var(--gray);
            display: block;
            margin-bottom: 18px;
        }

        .platform-list {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .platform-list div {
            padding: 12px 18px;
            background: white;
            border-radius: 40px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: var(--shadow-sm);
            font-weight: 600;
            transition: var(--transition);
        }

        .platform-list div:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .hero-image {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .hero-image img {
            width: 430px;
            border-radius: 35px;
            box-shadow: var(--shadow-lg);
        }

        .floating-card {
            position: absolute;
            background: white;
            padding: 18px 22px;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            font-weight: 700;
            animation: float 5s ease-in-out infinite;
        }

        .floating-card p {
            font-size: .9rem;
            margin-top: 6px;
            color: var(--gray);
        }

        .top-left {
            left: -40px;
            top: 40px;
        }

        .top-right {
            right: -20px;
            top: 120px;
        }

        .bottom-left {
            left: -20px;
            bottom: 70px;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            color: var(--gray);
            animation: bounce 2s infinite;
        }

        .scroll-indicator i {
            margin-top: 8px;
            font-size: 22px;
        }

        @keyframes float {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-12px);
            }
        }

        @keyframes bounce {
            0%,
            100% {
                transform: translate(-50%, 0);
            }
            50% {
                transform: translate(-50%, 8px);
            }
        }

        /*======================================
        TOOLS (categorized)
        ======================================*/
        .tools-section {
            padding: 100px 0;
        }

        .section-heading {
            text-align: center;
            max-width: 700px;
            margin: auto auto 70px;
        }

        .section-badge {
            display: inline-block;
            padding: 10px 22px;
            background: #DBEAFE;
            color: var(--primary);
            border-radius: 999px;
            font-weight: 700;
            margin-bottom: 18px;
        }

        .section-heading h2 {
            font-size: 2.7rem;
            margin-bottom: 18px;
        }

        .section-heading p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--gray);
        }

        /* category grid */
        .tools-category {
            margin-bottom: 40px;
        }

        .tools-category:last-child {
            margin-bottom: 0;
        }

        .category-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 18px;
            border-bottom: 2px solid var(--border);
            padding-bottom: 8px;
        }

        .tools-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 18px;
        }

        .tool-card {
            background: white;
            padding: 20px 12px;
            border-radius: 18px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            box-shadow: var(--shadow-sm);
            transition: .35s;
            cursor: pointer;
            border: 1px solid rgba(0, 0, 0, .04);
            text-align: center;
        }

        .tool-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }

        .tool-card img {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }

        .tool-card span {
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--dark);
        }

        /* responsive */
        @media (max-width: 992px) {
            .tools-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (max-width: 700px) {
            .tools-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 480px) {
            .tools-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /*======================================
        ABOUT
        ======================================*/
        .about-section {
            padding: 120px 0;
            background: white;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 420px 1fr;
            gap: 80px;
            align-items: center;
            margin-top: 70px;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            border-radius: 30px;
            box-shadow: var(--shadow-lg);
        }

        .about-content h3 {
            font-size: 2.3rem;
            margin-bottom: 20px;
        }

        .about-content p {
            font-size: 1.05rem;
            line-height: 1.9;
            color: var(--gray);
            margin-bottom: 25px;
        }

        .expertise-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
            margin-top: 35px;
        }

        .expertise-list div {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 18px;
            background: #F8FAFC;
            border-radius: 15px;
            font-weight: 600;
            transition: .3s;
        }

        .expertise-list div:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-sm);
        }

        .expertise-list i {
            color: var(--primary);
        }

        .about-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 70px;
        }

        .about-card {
            padding: 35px;
            background: #F8FAFC;
            border-radius: 24px;
            box-shadow: var(--shadow-sm);
            transition: .3s;
        }

        .about-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
        }

        .about-card i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .about-card h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        .about-card p {
            line-height: 1.8;
            color: var(--gray);
        }

        /*======================================
        SERVICES
        ======================================*/
        .services-section {
            padding: 120px 0;
            background: #F8FAFC;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 70px;
        }

        .service-card {
            background: white;
            padding: 35px;
            border-radius: 28px;
            box-shadow: var(--shadow-sm);
            transition: .35s;
            border: 1px solid rgba(0, 0, 0, .05);
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 20px;
            background: #DBEAFE;
            margin-bottom: 25px;
        }

        .service-icon i {
            font-size: 30px;
            color: var(--primary);
        }

        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 18px;
        }

        .service-card p {
            line-height: 1.8;
            color: var(--gray);
            margin-bottom: 20px;
        }

        .service-card ul {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .service-card li {
            font-weight: 500;
            color: #334155;
        }

        /*======================================
        PORTFOLIO
        ======================================*/
        .portfolio-section {
            padding: 120px 0;
            background: white;
        }

        .portfolio-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin: 60px 0;
        }

        .portfolio-filter button {
            padding: 12px 24px;
            border: none;
            background: #EEF2FF;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: .3s;
        }

        .portfolio-filter button:hover,
        .portfolio-filter .active {
            background: var(--primary);
            color: white;
        }

        .portfolio-grid {
            display: grid;
            gap: 40px;
        }

        .project-card {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            background: #F8FAFC;
            border-radius: 30px;
            padding: 35px;
            box-shadow: var(--shadow-sm);
            transition: .35s;
        }

        .project-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        /* ----- SLIDER STYLES ----- */
        .slider-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            background: #eef2ff;
            aspect-ratio: 4/3;
        }

        .slider-track {
            display: flex;
            transition: transform 0.4s ease;
            height: 100%;
        }

        .slider-slide {
            min-width: 100%;
            height: 100%;
        }

        .slider-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.8);
            border: none;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: 0.2s;
            color: #0F172A;
            font-weight: 700;
            z-index: 2;
        }

        .slider-btn:hover {
            background: white;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        }

        .slider-btn.prev {
            left: 12px;
        }

        .slider-btn.next {
            right: 12px;
        }

        .slider-dots {
            position: absolute;
            bottom: 14px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 2;
        }

        .slider-dots span {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: 0.2s;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .slider-dots span.active {
            background: var(--primary);
            transform: scale(1.2);
            border-color: var(--primary);
        }

        .project-tools {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 16px;
        }

        .project-tools span {
            padding: 8px 15px;
            background: white;
            border-radius: 30px;
            font-size: .9rem;
            font-weight: 600;
        }

        .project-content h3 {
            font-size: 1.8rem;
            margin-bottom: 8px;
        }

        /* compact marquee workflow */
        .workflow-marquee {
            display: flex;
            align-items: center;
            background: #eef2f7;
            border-radius: 40px;
            padding: 4px 12px 4px 8px;
            margin-bottom: 16px;
            width: fit-content;
            max-width: 100%;
            border: 1px solid rgba(0, 0, 0, 0.03);
            font-size: 0.75rem;
            font-weight: 500;
            color: #1e293b;
            overflow: hidden;
            white-space: nowrap;
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.02);
        }

        .workflow-marquee i {
            color: var(--primary);
            margin-right: 8px;
            font-size: 0.8rem;
            flex-shrink: 0;
        }

        .workflow-marquee marquee {
            display: inline-block;
            width: 100%;
            padding: 2px 0;
            letter-spacing: 0.3px;
        }

        .workflow-marquee marquee span {
            margin: 0 6px;
        }

        .workflow-marquee marquee .arrow {
            color: #94a3b8;
            font-size: 0.65rem;
            margin: 0 4px;
        }

        .workflow-marquee marquee .step-highlight {
            color: var(--primary);
            font-weight: 700;
        }

        .project-content p {
            line-height: 1.8;
            color: var(--gray);
            margin-bottom: 20px;
        }

        .project-content ul {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 30px;
        }

        .project-content a {
            font-weight: 700;
            color: var(--primary);
        }

        /*======================================
        WHY WORK WITH ME
        ======================================*/
        .why-section {
            padding: 120px 0;
            background: #ffffff;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 70px;
        }

        .why-card {
            background: #F8FAFC;
            padding: 35px;
            border-radius: 28px;
            transition: .35s;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0, 0, 0, .05);
        }

        .why-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .why-icon {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #DBEAFE;
            border-radius: 18px;
            margin-bottom: 25px;
        }

        .why-icon i {
            font-size: 28px;
            color: var(--primary);
        }

        .why-card h3 {
            margin-bottom: 18px;
            font-size: 1.35rem;
        }

        .why-card p {
            line-height: 1.8;
            color: var(--gray);
        }

        /*======================================
        CONTACT
        ======================================*/
        .contact-section {
            padding: 140px 0;
            background: linear-gradient(135deg, #0F172A, #1E3A8A);
            color: white;
        }

        .contact-wrapper {
            max-width: 900px;
            margin: auto;
            text-align: center;
        }

        .contact-section h2 {
            font-size: 3rem;
            margin: 25px 0;
        }

        .contact-section p {
            font-size: 1.1rem;
            line-height: 1.9;
            color: #CBD5E1;
            max-width: 700px;
            margin: auto;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin: 60px 0;
        }

        .contact-card {
            background: rgba(255, 255, 255, .08);
            backdrop-filter: blur(15px);
            padding: 25px;
            border-radius: 22px;
            display: flex;
            align-items: center;
            gap: 20px;
            transition: .35s;
            color: white;
        }

        .contact-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, .12);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            border-radius: 18px;
            background: rgba(255, 255, 255, .12);
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.4rem;
        }

        .contact-card h4 {
            margin-bottom: 5px;
        }

        .contact-card p {
            margin: 0;
            color: #CBD5E1;
            font-size: .95rem;
        }

        .contact-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        /* responsiveness */
        @media (max-width: 992px) {
            .project-card {
                grid-template-columns: 1fr;
            }
            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .services-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero p {
                margin: 0 auto 40px;
            }
            .hero-buttons {
                justify-content: center;
            }
            .platform-list {
                justify-content: center;
            }
            .why-grid {
                grid-template-columns: 1fr 1fr;
            }
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 600px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            .why-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
            .nav {
                display: none;
            }
            .nav-buttons {
                gap: 8px;
            }
            .resume-btn,
            .hire-btn {
                padding: 10px 16px;
                font-size: .85rem;
            }
            .floating-card {
                display: none;
            }
        }