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

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #2d2d2d;
            background: #fff;
            overflow-x: hidden;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul { list-style: none; }
        img { max-width: 100%; display: block; }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(10px);
            box-shadow: 0 1px 10px rgba(0,0,0,0.05);
            padding: 12px 0;
            transition: box-shadow 0.3s ease;
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .nav-logo-icon {
            width: 40px;
            height: 40px;
            position: relative;
        }

        .nav-logo-icon svg {
            width: 100%;
            height: 100%;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
        }

        .nav-links a {
            font-size: 0.85rem;
            font-weight: 500;
            color: #444;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: #4A3AFF;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: #4A3AFF;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .btn-lets-talk {
            background: #4A3AFF;
            color: #fff !important;
            padding: 10px 24px;
            border-radius: 25px;
            font-size: 0.82rem;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-lets-talk:hover {
            background: #3828e0;
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(74,58,255,0.35);
        }

        .btn-lets-talk:active {
            transform: scale(0.98);
        }

        .btn-lets-talk::after {
            display: none;
        }

        .nav-hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
        }

        .nav-hamburger span {
            width: 25px;
            height: 3px;
            background: #333;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #fafafe 0%, #f5f3ff 50%, #f0f7ff 100%);
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            position: relative;
        }

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

        .hero-content .greeting {
            font-size: 1.2rem;
            font-weight: 100;
            color: #090808;
            margin-bottom: 8px;
        }

        .hero-content h1 {
            font-size: 3.4rem;
            font-weight: 800;
            line-height: 1.15;
            color: #1a1a2e;
            margin-bottom: 20px;
        }

        .hero-content h1 span {
            color: #4A3AFF;
        }

        .hero-content p {
            font-size: 0.88rem;
            color: #666;
            line-height: 1.7;
            margin-bottom: 30px;
            max-width: 440px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            align-items: center;
        }

        .btn-primary {
            padding: 12px 30px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid #4A3AFF;
            background: #4A3AFF;
            color: #fff;
            display: inline-block;
        }

        .btn-primary:hover {
            transform: scale(1.04);
            box-shadow: 0 8px 25px rgba(74,58,255,0.3);
        }

        .btn-primary:active {
            transform: scale(0.98);
        }

        .btn-outline {
            padding: 12px 30px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid #4A3AFF;
            background: transparent;
            color: #4A3AFF;
            display: inline-block;
        }

        .btn-outline:hover {
            background: #4A3AFF;
            color: #fff;
            transform: scale(1.04);
            box-shadow: 0 8px 25px rgba(74,58,255,0.25);
        }

        .btn-outline:active {
            transform: scale(0.98);
        }

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

        .hero-image-bg {
            position: relative;
            width: 100%;
            max-width: 460px;
        }

        .hero-profile-img {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    overflow: hidden;
    
    /* 1. Mobile Settings (Default) */
    width: 90%;          /* Fits nicely within the phone screen */
    max-width: 300px;    /* Prevents it from getting too huge on large phones */
    height: 350px;       /* Set a specific height for the aesthetic look */
    object-fit: cover;   /* Ensures the photo isn't stretched */
    border-radius: 150px 0 150px 150px; 
}

/* 2. Desktop Settings (Screens wider than 1024px) */
@media (min-width: 1024px) {
    .hero-profile-img {
        width: 100%;      
        max-width: 500px; /* Makes it significantly larger on laptop */
        height: 380px;    /* Increases height for that tall portfolio look */
        border-radius: 250px 0 250px 250px; /* Adjust radius for larger size */
    }
}

        .hero-profile-img img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .hero-decor-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(40, 26, 198, 0.08), rgba(74,58,255,0.03));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;

    /* 1. Mobile Settings (Default) */
    width: 150px;  /* Smaller size so it fits inside a phone screen */
    height: 100px; /* Keep it a perfect circle on mobile */
}

/* 2. Desktop Settings (Laptops) */
@media (min-width: 1024px) {
    .hero-decor-circle {
        width: 530px;  /* Your original big size */
        height: 425px; /* Your original oval shape */
    }
}
        

        .hero-dots-pattern {
            position: absolute;
            top: 20px;
            right: -20px;
            width: 80px;
            height: 80px;
            z-index: 1;
            opacity: 0.6;
        }

        .hero-dots-pattern svg {
            width: 100%;
            height: 100%;
        }

        .review-badge {
            position: absolute;
            top: 100px;
            right: -40px;
            background: #fff;
            border-radius: 12px;
            padding: 10px 18px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            z-index: 10;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: floatBadge 3s ease-in-out infinite;
        }

        @keyframes floatBadge {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .review-badge .stars {
            color: #FFB800;
            font-size: 0.65rem;
            letter-spacing: 1px;
        }

        .review-badge .review-text {
            font-size: 0.72rem;
            font-weight: 600;
            color: #333;
        }

        .review-badge .review-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, #4A3AFF, #7c6fff);
        }

        .hero-heart {
            position: absolute;
            bottom: 120px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 50px;
            background: #4A3AFF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.1rem;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(74,58,255,0.3);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translateX(-50%) scale(1); }
            50% { transform: translateX(-50%) scale(1.1); }
        }

        .hero-social {
            position: absolute;
            bottom: 30px;
            right: 210px;
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .hero-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .hero-social a.fb { background: #4A3AFF; }
        .hero-social a.tg { background: #4A3AFF; }
        .hero-social a.li { background: #4A3AFF; }

        .hero-social a:hover {
            transform: scale(1.15) translateY(-3px);
            box-shadow: 0 6px 15px rgba(74,58,255,0.4);
        }

        .hero-decoration-red {
            position: absolute;
            top: 120px;
            left: 30px;
            width: 16px;
            height: 16px;
            background: #FF4757;
            border-radius: 3px;
            transform: rotate(45deg);
            opacity: 0.6;
        }

        .hero-decoration-dots-left {
            position: absolute;
            top: 60%;
            left: -30px;
            width: 50px;
            height: 50px;
            opacity: 0.3;
        }

        /* ===== ABOUT SECTION ===== */
        .about {
            padding: 100px 0;
            background: #fff;
        }

        .about .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image-wrapper {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .about-image-circle {
    position: absolute;
    border-radius: 50%;
    background: #3b3b94;
    opacity: 0.20;
    bottom: 0;
    left: 50%; /* Simplified to 50% for easier centering */
    transform: translateX(-50%);
    z-index: 1;

    /* 1. Mobile Settings (Default) */
    width: 0px;  /* Fits perfectly behind your mobile-sized profile image */
    height: 0px; 
}

/* 2. Desktop Settings (Laptops) */
@media (min-width: 1024px) {
    .about-image-circle {
        width: 445px;  /* Your original laptop size */
        height: 430px;
        left: 52.5%;   /* Your specific desktop positioning */
        transform: translateX(-55%);
    }
}

        .about-profile-img {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    overflow: hidden;
    display: block;

    /* 1. Mobile Settings (Default) */
    width: 85%;          /* Fits nicely on small screens */
    max-width: 280px;    /* Slightly bigger than your current 250px */
    height: 320px;       /* Gives it a nice vertical portrait shape */
    object-fit: cover;   /* Critical: prevents the face from stretching */
    border-radius: 20px; /* Clean, modern rounded corners */
}

/* 2. Desktop Settings (Laptops/Monitors) */
@media (min-width: 1024px) {
    .about-profile-img {
        max-width: 500px; /* Much larger for desktop view */
        height: 420px;    /* Taller height for a professional "About Me" feel */
        margin-left: 0px; /* Adds space between your text and the photo */
        border-radius: 20px; /* More pronounced curve for desktop */
    }
}
        

        .about-profile-img img {
            width: 100%;
            border-radius: 0px 200px 200px 200px;
        }

        .about-content h2 {
            font-size: 2.7rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 12px;
        }

        .about-content .about-subtitle {
            font-size: 1rem;
            color: #666;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .skill-bar {
            margin-bottom: 22px;
        }

        .skill-bar .skill-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .skill-track {
            width: 100%;
            height: 6px;
            background: #e8e8f0;
            border-radius: 10px;
            position: relative;
            overflow: visible;
        }

        .skill-fill {
            height: 100%;
            border-radius: 10px;
            position: relative;
            transition: width 1.5s ease;
            width: 0;
        }

        .skill-fill::after {
            content: '';
            position: absolute;
            right: -7px;
            top: 50%;
            transform: translateY(-50%);
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #fff;
            border: 3px solid;
            border-color: inherit;
            box-shadow: 0 2px 6px rgba(0,0,0,0.15);
        }

        .skill-fill.ux { background: #FF4757; border-color: #FF4757; }
        .skill-fill.ux::after { border-color: #FF4757; }
        .skill-fill.web { background: #FF9F43; border-color: #FF9F43; }
        .skill-fill.web::after { border-color: #FF9F43; }
        .skill-fill.app { background: #b0b0b8; border-color: #b0b0b8; }
        .skill-fill.app::after { border-color: #b0b0b8; }
        .skill-fill.graphic { background: #4A3AFF; border-color: #4A3AFF; }
        .skill-fill.graphic::after { border-color: #4A3AFF; }

        /* ===== SERVICES SECTION ===== */
        .services {
            padding: 80px 0 100px;
            background: #f9f9ff;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 10px;
        }

        .section-header p {
            font-size: 0.85rem;
            color: #888;
            max-width: 500px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .service-card {
            background: #fff;
            border-radius: 16px;
            padding: 30px 22px;
            text-align: left;
            box-shadow: 0 2px 20px rgba(0,0,0,0.04);
            border: 1px solid #f0f0f5;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(74,58,255,0.1);
            border-color: #4A3AFF;
        }

        .service-card .service-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            background: #f0eeff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            font-size: 1.4rem;
            color: #4A3AFF;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            background: #4A3AFF;
            color: #fff;
        }

        .service-card h3 {
            font-size: 1rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 10px;
        }

        .service-card p {
            font-size: 0.78rem;
            color: #888;
            line-height: 1.65;
            margin-bottom: 14px;
        }

        .service-card .read-more {
            font-size: 0.8rem;
            color: #4A3AFF;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .service-card .read-more:hover {
            color: #3828e0;
            text-decoration: underline;
        }

        /* ===== PORTFOLIO SECTION ===== */
        .portfolio {
            padding: 80px 0 100px;
            background: #fff;
        }

        .portfolio-filters {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 8px 22px;
            border-radius: 25px;
            font-size: 0.82rem;
            font-weight: 500;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid #e0e0ea;
            background: transparent;
            color: #555;
        }

        .filter-btn:hover {
            border-color: #4A3AFF;
            color: #4A3AFF;
            transform: scale(1.03);
        }

        .filter-btn.active {
            background: #4A3AFF;
            color: #fff;
            border-color: #4A3AFF;
        }

        .filter-btn:active {
            transform: scale(0.98);
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .portfolio-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f5;
        }

        .portfolio-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(74,58,255,0.12);
        }

        .portfolio-card-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
            position: relative;
            background: #e8e8f0;
        }

        .portfolio-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .portfolio-card:hover .portfolio-card-image img {
            transform: scale(1.06);
        }

        .portfolio-card-content {
            padding: 18px 20px 22px;
        }

        .portfolio-card-tag {
            display: inline-block;
            font-size: 0.7rem;
            font-weight: 600;
            color: #4A3AFF;
            background: #edeaff;
            padding: 3px 12px;
            border-radius: 4px;
            margin-bottom: 8px;
        }

        .portfolio-card-content h3 {
            font-size: 0.92rem;
            font-weight: 500;
            color: #1a1a2e;
            line-height: 1.4;
        }

        .portfolio-card-content .see-more {
            color: #0d24be;         /* Bootstrap-like blue */
            font-weight: bold;       /* Bold text */
            text-decoration: none;   /* Remove underline */
            transition: color 0.3s; /* Smooth hover effect */
        }

        .portfolio-card-content .see-more:hover {
             color: #b30000;          /* Darker blue on hover */
             text-decoration: underline;
        }

        /* ===== CONTACT SECTION ===== */
        .contact {
            padding: 60px 0 8px;
            background: #f9f9ff;
        }

        .contact .container {
            max-width: 700px;
        }

        .contact-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .contact-form .full-width {
            grid-column: 1 / -1;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #e8e8f0;
            border-radius: 10px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            color: #333;
            transition: border-color 0.3s ease;
            outline: none;
            background: #fff;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #4A3AFF;
            box-shadow: 0 0 0 3px rgba(74,58,255,0.08);
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 130px;
        }

        .contact-form .btn-submit {
            grid-column: 1 / -1;
            justify-self: center;
        }

        .btn-submit {
            padding: 14px 50px;
            background: #4A3AFF;
            color: #fff;
            border: none;
            border-radius: 10px;
            font-size: 0.9rem;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-submit:hover {
            transform: scale(1.04);
            box-shadow: 0 8px 25px rgba(74,58,255,0.3);
            background: #3828e0;
        }

        .btn-submit:active {
            transform: scale(0.98);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #1a1a2e;
            color: #ccc;
            padding: 40px 0 20px;
            text-align: center;
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 14px;
            margin-bottom: 20px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ccc;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: #4A3AFF;
            border-color: #4A3AFF;
            color: #fff;
            transform: translateY(-3px);
        }

        .footer p {
            font-size: 0.8rem;
            opacity: 0.7;
        }

        /* ===== ANIMATIONS ===== */
        .fade-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-up-delay-1 { transition-delay: 0.1s; }
        .fade-up-delay-2 { transition-delay: 0.2s; }
        .fade-up-delay-3 { transition-delay: 0.3s; }
        .fade-up-delay-4 { transition-delay: 0.4s; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-content h1 {
                font-size: 2.6rem;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: fixed;
                top: 60px;
                left: 0;
                right: 0;
                background: #fff;
                flex-direction: column;
                padding: 30px;
                gap: 20px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.1);
                z-index: 999;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-hamburger {
                display: flex;
            }

            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content p {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-image-wrapper {
                order: -1;
            }

            .hero-profile-img {
                max-width: 280px;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

            .review-badge {
                top: 10px;
                right: 10px;
            }

            .hero-social {
                right: 50%;
                transform: translateX(50%);
                bottom: 10px;
            }

            .about .container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }

            .about-content h2 {
                font-size: 1.9rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

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

            .section-header h2 {
                font-size: 1.8rem;
            }
        }

        /* ===== SCROLLBAR ===== */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: #4A3AFF;
            border-radius: 10px;
        }

        /* Mobile nav active states */
        .nav-hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .nav-hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .nav-hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }
