        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #6C63FF;
            --secondary-color: #4834DF;
            --accent-color: #5F27CD;
            --light-purple: #E8E5FF;
            --dark-color: #2C2C54;
            --white: #FFFFFF;
            --light-bg: #F8F9FE;
            --text-gray: #666666;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            background: var(--light-bg);
            color: var(--dark-purple);
        }


        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: 'Playfair Display', serif;
        }

        .skills-grid-icons {
            margin-top: 40px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
            gap: 25px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            justify-items: center;
            align-items: center;
        }

        .skill-card-icon {
            width: 100px;
            height: 100px;
            background-color: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.432);
            padding: 10px;
            transition: transform 0.3s;
        }

        .skill-card-icon img {
            width: 50px;
            height: 50px;
            object-fit: contain;
            margin-bottom: 8px;
        }

        .skill-card-icon p {
            margin: 0;
            font-weight: 500;
            text-align: center;
            font-size: 14px;
        }

        .skill-card-icon:hover {
            transform: translateY(-5px);
        }



        /* ===== NAVBAR REDESIGN ===== */
        .modern-navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 2px 30px rgba(108, 99, 255, 0.1);
            transition: all 0.3s ease;
        }

        .modern-navbar.scrolled {
            padding: 15px 0;
            box-shadow: 0 5px 30px rgba(108, 99, 255, 0.15);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            gap: 40px;
            list-style: none;
            align-items: center;
        }

        .nav-menu a {
            color: var(--dark-color);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-menu a::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::before {
            width: 100%;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .nav-toggle span {
            width: 25px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* ===== HERO SECTION REDESIGN ===== */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 120px 30px 80px;
            background: linear-gradient(135deg, #F8F9FE 0%, #E8E5FF 100%);
        }

        .hero-section::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(108, 99, 255, 0.15) 0%, transparent 70%);
            top: -300px;
            right: -300px;
            animation: float 20s infinite;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(72, 52, 223, 0.1) 0%, transparent 70%);
            bottom: -200px;
            left: -200px;
            animation: float 25s infinite reverse;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) rotate(0deg);
            }

            33% {
                transform: translate(30px, -30px) rotate(5deg);
            }

            66% {
                transform: translate(-20px, 20px) rotate(-5deg);
            }
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            animation: fadeInLeft 1s ease;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-tag {
            display: inline-block;
            padding: 8px 20px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .hero-title {
            font-size: 64px;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--dark-color);
        }

        .hero-title .gradient-text {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 20px;
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 25px;
            font-family: 'Poppins', sans-serif;
        }

        .hero-description {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 40px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary {
            padding: 15px 40px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(108, 99, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(108, 99, 255, 0.4);
            color: white;
        }

        .btn-secondary {
            padding: 15px 40px;
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }

        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .circle-photo {
            width: 350px;
            height: 350px;
            border-radius: 50%;
            background-color: #BFD7FF;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .circle-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }


        @keyframes floatImage {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        /* ===== SERVICES SECTION ===== */
        .services-section {
            padding: 100px 30px;
            background: var(--light-bg);
        }

        .services-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s ease;
            border: 2px solid transparent;
            box-shadow: 0 10px 30px rgba(108, 99, 255, 0.1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-color);
            box-shadow: 0 20px 50px rgba(108, 99, 255, 0.2);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: white;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            transform: rotateY(360deg);
            border-radius: 50%;
        }

        .service-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 15px;
        }

        .service-description {
            color: var(--text-gray);
            line-height: 1.7;
            font-size: 15px;
        }

        /* ===== SKILLS SECTION ===== */
        .skills-section {
            padding: 100px 30px;
            background: white;
        }

        .skills-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .skill-category {
            background: var(--light-bg);
            padding: 30px;
            border-radius: 20px;
            border-left: 4px solid var(--primary-color);
        }

        .skill-category h3 {
            font-size: 20px;
            color: var(--dark-color);
            margin-bottom: 25px;
            font-weight: 700;
        }

        .skill-item {
            margin-bottom: 20px;
        }

        .skill-item:last-child {
            margin-bottom: 0;
        }

        .skill-name {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark-color);
            font-size: 15px;
        }

        .skill-bar {
            height: 10px;
            background: #e0e0e0;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }

        .skill-progress {
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 10px;
            transition: width 1.5s ease;
            position: relative;
        }

        .skill-progress::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%);
            }

            100% {
                transform: translateX(100%);
            }
        }

        /* ===== PROJECTS SECTION REDESIGN ===== */
        .projects-section {
            padding: 100px 30px;
            background: white;
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 80px;
        }

        .section-tag {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 20px;
            color: var(--dark-color);
        }

        .section-description {
            font-size: 16px;
            color: #666;
            line-height: 1.8;
        }

        .projects-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .project-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(108, 99, 255, 0.15);
            transition: all 0.4s ease;
            border: 1px solid rgba(108, 99, 255, 0.1);
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(108, 99, 255, 0.25);
        }

        .project-image {
            width: 100%;
            height: 280px;
            overflow: hidden;
            position: relative;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .project-card:hover .project-image img {
            transform: scale(1.1);
        }

        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.9), rgba(72, 52, 223, 0.9));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }

        .project-overlay a {
            padding: 12px 30px;
            background: white;
            color: var(--primary-color);
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transform: translateY(20px);
            transition: transform 0.4s ease 0.1s;
        }

        .project-card:hover .project-overlay a {
            transform: translateY(0);
        }

        .project-content {
            padding: 30px;
        }

        .project-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 15px;
        }

        .project-category {
            display: inline-block;
            padding: 5px 15px;
            background: var(--light-purple);
            color: var(--primary-color);
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
        }

        /* ===== RESUME SECTION REDESIGN ===== */
        .resume-section {
            padding: 100px 30px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            position: relative;
            overflow: hidden;
        }

        .resume-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            top: -250px;
            right: -250px;
        }

        .resume-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .resume-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .resume-header .section-tag {
            color: rgba(255, 255, 255, 0.9);
        }

        .resume-header .section-title {
            color: white;
        }

        .resume-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .resume-column h3 {
            font-size: 32px;
            color: white;
            margin-bottom: 40px;
            padding-bottom: 15px;
            border-bottom: 3px solid rgba(255, 255, 255, 0.3);
        }

        .timeline-item {
            position: relative;
            padding-left: 40px;
            padding-bottom: 40px;
            border-left: 2px solid rgba(255, 255, 255, 0.3);
        }

        .timeline-item:last-child {
            padding-bottom: 0;
            border-left-color: transparent;
        }

        .timeline-dot {
            position: absolute;
            left: -9px;
            top: 0;
            width: 16px;
            height: 16px;
            background: white;
            border: 3px solid rgba(255, 255, 255, 0.5);
            border-radius: 50%;
        }

        .timeline-date {
            display: inline-block;
            padding: 5px 15px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            color: white;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .timeline-title {
            font-size: 22px;
            color: white;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .timeline-company {
            color: rgba(255, 255, 255, 0.9);
            font-size: 16px;
            margin-bottom: 12px;
            font-weight: 500;
        }

        .timeline-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
            font-size: 15px;
        }

        /* ===== CONTACT SECTION REDESIGN ===== */
        .contact-section {
            padding: 100px 30px;
            background: var(--light-bg);
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info-card {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            padding: 50px;
            border-radius: 30px;
            color: white;
            box-shadow: 0 20px 60px rgba(108, 99, 255, 0.3);
        }

        .contact-info-card h3 {
            font-size: 32px;
            margin-bottom: 30px;
            color: white;
        }

        .contact-item {
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .contact-item i {
            font-size: 24px;
            color: rgba(255, 255, 255, 0.9);
        }

        .contact-item a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .contact-item a:hover {
            color: var(--light-purple);
            transform: translateX(5px);
            display: inline-block;
        }

        .contact-form-card {
            background: white;
            padding: 50px;
            border-radius: 30px;
            box-shadow: 0 10px 40px rgba(108, 99, 255, 0.15);
        }

        .contact-form-card h2 {
            font-size: 36px;
            color: var(--dark-color);
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--dark-color);
            font-weight: 500;
        }

        .form-input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 15px;
            font-size: 15px;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
        }

        textarea.form-input {
            resize: vertical;
            min-height: 150px;
        }

        .submit-button {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            border-radius: 15px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(108, 99, 255, 0.3);
        }

        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(108, 99, 255, 0.4);
        }

        /* ===== FOOTER REDESIGN ===== */
        .footer {
            background: var(--dark-color);
            padding: 60px 30px 30px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-logo {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
        }

        .footer-text {
            margin: 10px 0;
        }

        .footer a {
            color: var(--primary-color);
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: white;
            text-decoration: none;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 30px 0;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary-color);
            transform: translateY(-5px);
        }

        /* ===== SCROLL TO TOP ===== */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 5px 20px rgba(108, 99, 255, 0.4);
        }

        .scroll-top.show {
            opacity: 1;
        }

        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(108, 99, 255, 0.5);
        }

        #global-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(4px);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            visibility: hidden;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        #global-loader.active {
            visibility: visible;
            opacity: 1;
        }

        .loader {
            width: 55px;
            height: 55px;
            border: 5px solid #6C63FF;
            border-top: 5px solid transparent;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }



        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }


        /* ===== RESPONSIVE ===== */
        @media (max-width: 991px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: white;
                flex-direction: column;
                justify-content: flex-start;
                padding: 40px;
                transition: left 0.3s ease;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-toggle {
                display: flex;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .hero-title {
                font-size: 42px;
            }

            .hero-image {
                text-align: center;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .resume-grid {
                grid-template-columns: 1fr;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }

            .section-title {
                font-size: 36px;
            }
        }


        @media (max-width: 576px) {
            .hero-title {
                font-size: 32px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .contact-info-card,
            .contact-form-card {
                padding: 30px;
            }
        }

        /* ===== RESPONSIVE IMPROVEMENTS ===== */

@media (max-width: 1024px) {
    .hero-section {
        padding: 100px 20px 60px;
    }

    .hero-container {
        gap: 40px;
    }

    .circle-photo {
        width: 300px;
        height: 300px;
    }

    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 20px 50px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .circle-photo {
        width: 260px;
        height: 260px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 40px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .hero-buttons {
        gap: 15px;
        margin-top: 30px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 70px 15px 40px;
        margin-top: 20px;
    }

    .hero-container {
        gap: 25px;
    }

    .circle-photo {
        width: 200px;
        height: 200px;
    }

    .circle-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-tag {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 15px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Skills grid mobile */
    .skills-grid-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 30px;
    }

    .skill-card-icon {
        width: 80px;
        height: 80px;
    }

    .skill-card-icon img {
        width: 40px;
        height: 40px;
    }

    .skill-card-icon p {
        font-size: 12px;
    }

    /* Projects grid mobile */
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-image {
        height: 200px;
    }

    .project-content {
        padding: 20px;
    }

    .project-title {
        font-size: 20px;
    }

    /* Contact section mobile */
    .contact-container {
        gap: 30px;
    }

    .contact-info-card {
        padding: 30px 20px;
    }

    .contact-form-card {
        padding: 30px 20px;
    }

    .contact-form-card h2 {
        font-size: 24px;
    }

    /* Resume section mobile */
    .resume-grid {
        gap: 30px;
    }

    .resume-column h3 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 28px;
    }
}

/* ===== PROJECT CARD MOBILE IMPROVEMENTS ===== */

@media (max-width: 1024px) {
    .project-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .project-image {
        height: 220px;
    }

    .project-content {
        padding: 25px;
    }

    .project-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .project-description {
        font-size: 14px;
        line-height: 1.6;
    }

    .project-technologies {
        margin-top: 15px;
    }

    .badge {
        font-size: 12px;
        padding: 4px 10px;
    }
}

@media (max-width: 576px) {
    .project-image {
        height: 180px;  /* ← Dikecilkan untuk mobile */
    }

    .project-content {
        padding: 20px;
    }

    .project-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .project-description {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .project-technologies {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .badge {
        font-size: 11px;
        padding: 4px 8px;
    }

    .project-card {
        box-shadow: 0 5px 20px rgba(108, 99, 255, 0.1);
    }

    /* Button dokumentasi mobile */
    .project-card .btn-sm {
        font-size: 12px;
        padding: 8px 12px !important;
        width: 100%;
    }
}