html {
            scroll-behavior: smooth;
            box-sizing: border-box; /* added */
        }
        *, *::before, *::after { box-sizing: inherit; /* added */ }
        img, svg { max-width: 100%; height: auto; /* added for responsive media */ }
        body {
            margin: 0;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #0a0a0a;
            color: #fff;
            padding-top: 80px;
            overflow-x: hidden; /* prevent horizontal scroll */
        }
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 60px;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        .logo {
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: -0.01em;
            font-family: 'Inter', sans-serif;
        }
        nav a {
            color: #fff;
            text-decoration: none;
            margin-left: 32px;
            font-weight: 500;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
        }
        nav a:hover {
            color: #ffb400;
        }
        nav a.active {
            color: #ffb400;
        }
        nav a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #ffb400;
            border-radius: 1px;
        }

        /* Mobile Menu Toggle Button */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 30px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #fff;
            border-radius: 2px;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }
        .hero {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 80vh;
            text-align: center;
            background: #0a0a0a;
            padding: 60px 40px;
        }
        .hero-greeting {
            font-size: 0.9rem;
            font-weight: 600;
            color: #888;
            margin-bottom: 20px;
            letter-spacing: 0.05em;
            font-family: 'Inter', sans-serif;
            text-transform: uppercase;
        }
        .hero-title {
            font-size: clamp(2.2rem, 6vw, 4rem); /* fluid font size */
            font-weight: 700;
            margin-bottom: 24px;
            letter-spacing: -0.02em;
            line-height: 1.1;
            text-align: left;
            max-width: 800px;
            font-family: 'Inter', sans-serif;
        }
        .title-main {
            color: #fff;
            font-weight: 800;
            font-family: 'Inter', sans-serif;
        }
        .title-accent {
            color: #a8b3a8;
            font-weight: 400;
            font-style: italic;
            font-family: 'Playfair Display', serif;
            font-size: 0.95em;
        }
        .hero-desc {
            font-size: clamp(1rem, 2.2vw, 1.3rem);
            font-weight: 400;
            margin-bottom: 40px;
            color: #ccc;
            max-width: 600px;
        }
        .hero-btn {
            padding: 16px 40px;
            font-size: 1.1rem;
            font-weight: 700;
            background: #ffb400;
            color: #0a0a0a;
            border: none;
            border-radius: 40px;
            cursor: pointer;
            transition: background 0.2s;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .hero-btn:hover {
            background: #ffd700;
        }
        .projects {
            padding: 100px 60px;
            background: #0a0a0a;
        }
        .projects-content {
            max-width: 1400px;
            margin: 0 auto;
        }
        .projects-header {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 80px;
            margin-bottom: 80px;
            align-items: start;
        }
        .projects-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: #888;
            letter-spacing: 0.05em;
            font-family: 'Inter', sans-serif;
            text-transform: uppercase;
            padding-top: 10px;
        }
        .projects h2 {
            font-size: clamp(1.8rem, 4.5vw, 2.8rem);
            font-weight: 400;
            line-height: 1.3;
            color: #fff;
            font-family: 'Inter', sans-serif;
            margin: 0;
        }
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .project-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }
        .project-card {
            background: transparent;
            border-radius: 0;
            padding: 0;
            box-shadow: none;
            transition: transform 0.3s ease;
        }
        .project-card:hover {
            transform: translateY(-5px);
        }
        .project-image {
            width: 100%;
            height: 300px;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 24px;
            background: #1a1a1a;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            cursor: pointer;
        }
        .project-icon {
            transition: transform 0.3s ease;
            z-index: 1;
        }
        .project-image:hover .project-icon {
            transform: scale(0.8);
        }
        .project-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 12px;
        }
        .project-image:hover .project-overlay {
            opacity: 1;
        }
        .view-project-circle {
            width: 120px;
            height: 120px;
            border: 2px solid #a8b3a8;
            border-radius: 50%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .rotating-text {
            position: absolute;
            width: 100%;
            height: 100%;
            animation: rotate 8s linear infinite;
        }
        .rotating-text span {
            position: absolute;
            left: 50%;
            font-size: 10px;
            font-weight: 600;
            color: #a8b3a8;
            font-family: 'Inter', sans-serif;
            letter-spacing: -0.05em;
            transform-origin: 0 60px;
        }
        .rotating-text span:nth-child(1) { transform: rotate(0deg) translateX(-50%); }
        .rotating-text span:nth-child(2) { transform: rotate(15deg) translateX(-50%); }
        .rotating-text span:nth-child(3) { transform: rotate(30deg) translateX(-50%); }
        .rotating-text span:nth-child(4) { transform: rotate(45deg) translateX(-50%); }
        .rotating-text span:nth-child(5) { transform: rotate(60deg) translateX(-50%); }
        .rotating-text span:nth-child(6) { transform: rotate(75deg) translateX(-50%); }
        .rotating-text span:nth-child(7) { transform: rotate(90deg) translateX(-50%); }
        .rotating-text span:nth-child(8) { transform: rotate(105deg) translateX(-50%); }
        .rotating-text span:nth-child(9) { transform: rotate(120deg) translateX(-50%); }
        .rotating-text span:nth-child(10) { transform: rotate(135deg) translateX(-50%); }
        .rotating-text span:nth-child(11) { transform: rotate(150deg) translateX(-50%); }
        .rotating-text span:nth-child(12) { transform: rotate(165deg) translateX(-50%); }
        .rotating-text span:nth-child(13) { transform: rotate(180deg) translateX(-50%); }
        .rotating-text span:nth-child(14) { transform: rotate(195deg) translateX(-50%); }
        .rotating-text span:nth-child(15) { transform: rotate(210deg) translateX(-50%); }
        .rotating-text span:nth-child(16) { transform: rotate(225deg) translateX(-50%); }
        .rotating-text span:nth-child(17) { transform: rotate(240deg) translateX(-50%); }
        .rotating-text span:nth-child(18) { transform: rotate(255deg) translateX(-50%); }
        .rotating-text span:nth-child(19) { transform: rotate(270deg) translateX(-50%); }
        .rotating-text span:nth-child(20) { transform: rotate(285deg) translateX(-50%); }
        .rotating-text span:nth-child(21) { transform: rotate(300deg) translateX(-50%); }
        .rotating-text span:nth-child(22) { transform: rotate(315deg) translateX(-50%); }
        .rotating-text span:nth-child(23) { transform: rotate(330deg) translateX(-50%); }
        .rotating-text span:nth-child(24) { transform: rotate(345deg) translateX(-50%); }
        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        .project-info {
            padding: 0;
            text-align: center;
        }
        .project-title {
            font-size: clamp(1.3rem, 3.2vw, 1.8rem);
            font-weight: 600;
            margin-bottom: 12px;
            color: #fff;
            font-family: 'Inter', sans-serif;
        }
        .project-desc {
            color: #ccc;
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 0;
        }
        .project-description { /* style missing earlier */
            font-size: 1rem;
            line-height: 1.55;
            color: #ccc;
            max-width: 720px;
            margin: 0 auto; /* center text block */
            text-align: center;
            padding: 0 8px;
        }
        @media (max-width: 768px){
          .project-description { font-size: 0.95rem; line-height: 1.5; }
        }
        /* Stack experience items fully on narrow screens */
        @media (max-width: 600px){
          .brands-grid { grid-template-columns: 1fr !important; gap: 40px; }
          .experience-item { align-items: center; }
          .experience-description { text-align: left; max-width: 90%; margin: 0 auto; }
        }
        /* Tighten very narrow widths */
        @media (max-width:400px){
          .project-description { font-size: 0.9rem; }
        }
        .see-all-projects {
            display: flex;
            justify-content: center;
            margin-top: 80px;
        }
        .see-all-btn {
            background: transparent;
            border: 2px solid #a8b3a8;
            color: #a8b3a8;
            padding: 16px 32px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            min-width: 200px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-sizing: border-box;
        }
        .see-all-btn:hover {
            background: #a8b3a8;
            color: #0a0a0a;
            border-color: #a8b3a8;
        }
        .see-all-btn:hover .btn-text-hover {
            color: #0a0a0a;
        }
        .btn-text {
            display: block;
            transition: transform 0.4s ease, opacity 0.2s ease;
            position: relative;
            transform: translateY(0);
            opacity: 1;
        }
        .btn-text-hover {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translateX(-50%) translateY(calc(-50% + 100%));
            transition: transform 0.4s ease, opacity 0.2s ease;
            white-space: nowrap;
            opacity: 0;
        }
        .see-all-btn:hover .btn-text {
            transform: translateY(-100%);
            opacity: 0;
        }
        .see-all-btn:hover .btn-text-hover {
            transform: translateX(-50%) translateY(-50%);
            opacity: 1;
        }
        footer {
            text-align: center;
            padding: 40px 0;
            background: #0a0a0a;
            color: #888;
            font-size: 1rem;
        }
        .skills {
            padding: 100px 60px;
            background: #111;
            color: #fff;
        }
        .skills-content {
            max-width: 1400px;
            margin: 0 auto;
        }
        .skills-header {
            text-align: center;
            margin-bottom: 80px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        .skills-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: #888;
            margin-bottom: 30px;
            letter-spacing: 0.05em;
            font-family: 'Inter', sans-serif;
            text-transform: uppercase;
        }
        .skills h2 {
            font-size: clamp(1.8rem, 4.5vw, 2.8rem);
            font-weight: 400;
            line-height: 1.3;
            color: #fff;
            font-family: 'Inter', sans-serif;
            text-align: center;
        }
        .italic-text {
            font-style: italic;
            font-family: 'Playfair Display', serif;
            color: #a8b3a8;
        }
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
            gap: clamp(30px,5vw,60px) clamp(40px,8vw,100px);
            max-width: 1000px;
            margin: 0 auto;
        }
        .skill-card {
            text-align: center;
        }
        .skill-icon {
            margin-bottom: 30px;
            display: flex;
            justify-content: center;
        }
        .skill-card h3 {
            font-size: 1.8rem;
            font-weight: 500;
            margin-bottom: 20px;
            color: #fff;
            font-family: 'Inter', sans-serif;
        }
        .skill-card p {
            font-size: 1rem;
            line-height: 1.6;
            color: #ccc;
            font-family: 'Inter', sans-serif;
        }
        /* Skills Marquee */
        .skills-marquee {
            margin-top: 60px;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            background: rgba(168, 179, 168, 0.1);
            border-radius: 50px;
            padding: 20px 0;
        }
        .marquee-content {
            display: inline-block;
            animation: marquee 40s linear infinite;
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            font-weight: 500;
            color: #fff;
        }
        .marquee-content span {
            margin: 0 20px;
            display: inline-block;
        }
        .marquee-content span:nth-child(even) {
            color: #a8b3a8;
            font-size: 1rem;
        }
        @keyframes marquee {
            0% {
                transform: translateX(0%);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        /* Contact Section */
        .contact {
            padding: 100px 40px;
            text-align: center;
            background: #0d0d0d;
        }

        .contact-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-header {
            margin-bottom: 40px;
        }

        .contact-title {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 2px;
            color: #a8b3a8;
            margin-bottom: 20px;
        }

        .contact-main h2 {
            font-family: 'Inter', sans-serif;
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 400;
            color: #fff;
            margin: 0 0 30px 0;
            line-height: 1.1;
            white-space: nowrap;
        }

        .contact-subtitle {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            color: #a8b3a8;
            margin: 0 0 50px 0;
            line-height: 1.3;
        }

        .contact-subtitle .italic-text {
            font-style: italic;
        }

        /* Site Footer */
        .site-footer {
            background: #0a0a0a;
            border-top: 1px solid #333;
            padding: 60px 0 40px 0;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 60px 0 180px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 50px;
            align-items: flex-start;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 30px;
        }

        .footer-logo {
            font-family: 'Inter', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-copyright p {
            font-family: 'Inter', sans-serif;
            font-size: 0.875rem;
            color: #666;
            line-height: 1.6;
            margin: 0;
        }

        .footer-contact,
        .footer-social {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }

        .footer-social a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            color: #a8b3a8;
        }

        .footer-social a:hover svg {
            transform: translateY(-2px);
        }

        .footer-social svg {
            transition: all 0.3s ease;
        }

        .footer-contact p {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            color: #fff;
            margin: 0;
            cursor: pointer;
            transition: color 0.3s ease;
            text-decoration: none;
        }

        .footer-contact p:hover {
            color: #a8b3a8;
        }

        .footer-contact p:first-child {
            color: #a8b3a8;
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 0 20px;
                text-align: center;
            }

            .footer-brand,
            .footer-contact,
            .footer-social {
                align-items: center;
            }

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

        /* Brands Section */
        .brands {
            padding: 80px 0;
            background: #0a0a0a;
        }

        .brands-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .brands-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .brands-title {
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 2px;
            color: #a8b3a8;
            margin-bottom: 1rem;
            font-family: 'Inter', sans-serif;
            text-transform: uppercase;
        }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 40px;
            align-items: center;
            justify-items: center;
        }

        .brand-name {
            font-family: 'Inter', sans-serif;
            font-size: 1.125rem;
            font-weight: 500;
            color: #fff;
            opacity: 0.7;
            transition: opacity 0.3s ease;
            text-align: center;
            letter-spacing: 0.5px;
            text-decoration: none;
            display: block;
        }

        .brand-name:hover {
            opacity: 1;
        }

        .experience-item {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .experience-item .brand-name {
            text-align: center;
        }

        .experience-period {
            font-size: 0.875rem;
            color: #a8b3a8;
            opacity: 0.8;
            text-align: center;
        }

        .experience-description {
            margin-top: 16px;
            text-align: left;
            max-width: 90%;
            margin: 0 auto;
        }

        .experience-description ul {
            margin: 0;
            padding-left: 20px;
            list-style-type: disc;
        }

        .experience-description li {
            margin-bottom: 8px;
            font-size: 0.9rem;
            line-height: 1.6;
            color: #cccccc;
        }

        .italic-text {
            font-style: italic;
        }

        @media (max-width: 768px) {
            .brands {
                padding: 60px 0;
            }
            
            .brands-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .brand-name {
                font-size: 1rem;
            }
        }

        /* Achievements Section */
        .achievements {
            padding: 80px 0;
            background: #0a0a0a;
        }

        .achievements-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .achievements-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .achievements-title {
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 2px;
            color: #a8b3a8;
            margin-bottom: 1rem;
            font-family: 'Inter', sans-serif;
        }

        .achievements-table {
            max-width: 900px;
            margin: 0 auto;
        }

        .table-header {
            display: grid;
            grid-template-columns: 1fr 200px;
            gap: 2rem;
            padding: 1rem 0;
            border-bottom: 1px solid #333;
            margin-bottom: 1rem;
        }

        .table-header .table-cell {
            font-family: 'Inter', sans-serif;
            font-size: 0.875rem;
            font-weight: 600;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .table-row {
            display: grid;
            grid-template-columns: 1fr 200px;
            gap: 2rem;
            padding: 1.5rem 0;
            border-bottom: 1px solid #1a1a1a;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
        }

        .table-row:hover {
            background: rgba(168, 179, 168, 0.05);
            margin: 0 -2rem;
            padding-left: 2rem;
            padding-right: 2rem;
        }

        .table-row .table-cell {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            line-height: 1.5;
            color: #fff;
        }

        .table-row .table-cell:last-child {
            color: #a8b3a8;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .external-link {
            font-size: 1.2rem;
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }

        .table-row:hover .external-link {
            transform: translateX(3px) translateY(-3px);
        }

        @media (max-width: 768px) {
            .achievements {
                padding: 60px 0;
            }

            .table-header,
            .table-row {
                grid-template-columns: 1fr;
                gap: 0.5rem;
            }

            .table-header .table-cell:last-child,
            .table-row .table-cell:last-child {
                padding-top: 0.5rem;
                border-top: 1px solid #2a2a2a;
                margin-top: 0.5rem;
            }

            .table-row:hover {
                margin: 0;
                padding: 1.5rem 0;
            }
        }

        /* About Section */
        .about-me {
            padding: 100px 60px;
            background: #111;
            color: #fff;
        }

        .about-me-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-me-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .about-me-title {
            font-size: 0.9rem;
            font-weight: 600;
            color: #888;
            margin-bottom: 30px;
            letter-spacing: 0.05em;
            font-family: 'Inter', sans-serif;
            text-transform: uppercase;
        }

        .about-me-text {
            text-align: center;
            margin-bottom: 80px;
        }

        .about-me-text p {
            font-size: 1.25rem;
            line-height: 1.6;
            color: #fff;
            font-family: 'Inter', sans-serif;
            max-width: 800px;
            margin: 0 auto;
        }

        .about-link {
            color: #a8b3a8;
            text-decoration: none;
            border-bottom: 1px solid #a8b3a8;
            transition: all 0.3s ease;
        }

        .about-link:hover {
            color: #fff;
            border-bottom-color: #fff;
        }

        .resume-download {
            display: flex;
            justify-content: center;
            margin: 40px 0;
        }

        .resume-btn {
            background: transparent;
            border: 2px solid #a8b3a8;
            color: #a8b3a8;
            padding: 16px 32px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            min-width: 200px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-sizing: border-box;
        }

        .resume-btn:hover {
            background: #a8b3a8;
            color: #0a0a0a;
            border-color: #a8b3a8;
        }

        .resume-btn:hover .btn-text-hover {
            color: #0a0a0a;
        }

        .resume-btn .btn-text {
            display: block;
            transition: transform 0.4s ease, opacity 0.2s ease;
            position: relative;
            transform: translateY(0);
            opacity: 1;
        }

        .resume-btn .btn-text-hover {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translateX(-50%) translateY(calc(-50% + 100%));
            transition: transform 0.4s ease, opacity 0.2s ease;
            white-space: nowrap;
            opacity: 0;
        }

        .resume-btn:hover .btn-text {
            transform: translateY(-100%);
            opacity: 0;
        }

        .resume-btn:hover .btn-text-hover {
            transform: translateX(-50%) translateY(-50%);
            opacity: 1;
        }

        .about-me-details h3 {
            font-size: clamp(1.4rem,4vw,2rem);
            font-weight: 500;
            line-height: 1.3;
            color: #fff;
            text-align: center;
            margin-bottom: 40px;
            font-family: 'Inter', sans-serif;
        }

        .about-me-content-text {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 40px;
        }

        .about-me-content-text p {
            font-size: 1rem;
            line-height: 1.7;
            color: #ccc;
            font-family: 'Inter', sans-serif;
            margin: 0;
        }

        @media (max-width: 968px) {
            .about-me {
                padding: 80px 40px;
            }

            .about-me-content-text {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .about-me-details h3 {
                font-size: 1.5rem;
            }

            .about-me-text p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 768px) {
            .about-me {
                padding: 60px 20px;
            }

            .about-me-details h3 {
                font-size: 1.3rem;
            }

            .about-me-text p {
                font-size: 1rem;
            }
        }

        /* ========== RESPONSIVE DESIGN ========== */

        /* Tablet and smaller laptops */
        @media (max-width: 1024px) {
            header {
                padding: 20px 40px;
            }

            .hero {
                padding: 40px 30px;
                min-height: 70vh;
            }

            .hero-title {
                font-size: 3.2rem;
                max-width: 700px;
            }

            .hero-desc {
                font-size: 1.2rem;
                max-width: 550px;
            }

            .projects {
                padding: 80px 40px;
            }

            .projects-header {
                grid-template-columns: 250px 1fr;
                gap: 60px;
                margin-bottom: 60px;
            }

            .projects h2 {
                font-size: clamp(1.8rem, 4.5vw, 2.8rem);
            }

            .projects-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 40px;
            }

            .skills {
                padding: 80px 40px;
            }

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

            .skills h2 {
                font-size: clamp(1.8rem, 4.5vw, 2.8rem);
            }

            .skills-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 40px;
            }

            .brands {
                padding: 80px 40px;
            }

            .about-me {
                padding: 80px 40px;
            }

            .contact {
                padding: 80px 40px;
            }
        }

        /* Mobile devices */
        @media (max-width: 768px) {
            body {
                padding-top: 70px;
            }

            header {
                padding: 15px 20px;
                justify-content: space-between;
                align-items: center;
                background: rgba(10, 10, 10, 0.98);
            }

            .logo {
                font-size: 1.5rem;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: rgba(10, 10, 10, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                align-items: center;
                padding: 30px 20px;
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                z-index: 999;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            }

            .nav-menu.active {
                transform: translateX(0);
            }

            .nav-menu a {
                margin: 0;
                margin-bottom: 20px;
                font-size: 1.1rem;
                padding: 12px 24px;
                border-radius: 25px;
                background: rgba(255, 255, 255, 0.1);
                transition: all 0.3s ease;
                width: 200px;
                text-align: center;
                display: block;
            }

            .nav-menu a:hover,
            .nav-menu a.active {
                background: #ffb400;
                color: #0a0a0a;
            }

            .nav-menu a.active::after {
                display: none;
            }

            .hero {
                padding: 30px 20px;
                min-height: 60vh;
                text-align: center;
            }

            .hero-title {
                font-size: 2.2rem;
                margin-bottom: 20px;
                text-align: center;
                max-width: 100%;
            }

            .hero-desc {
                font-size: 1rem;
                margin-bottom: 30px;
                max-width: 100%;
            }

            .projects {
                padding: 60px 20px;
            }

            .projects-header {
                grid-template-columns: 1fr;
                gap: 30px;
                margin-bottom: 40px;
                text-align: center;
            }

            .projects h2 {
                font-size: 1.8rem;
            }

            .projects-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .project-image {
                height: 250px;
            }

            .see-all-projects {
                margin-top: 40px;
            }

            .skills {
                padding: 60px 20px;
            }

            .skills-header {
                margin-bottom: 40px;
            }

            .skills h2 {
                font-size: 1.8rem;
            }

            .skills-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .skill-card {
                padding: 30px 20px;
            }

            .skill-card h3 {
                font-size: 1.5rem;
            }

            .brands {
                padding: 60px 20px;
            }

            .experience-item {
                padding: 30px 20px;
            }

            .brand-name {
                font-size: 1.3rem;
            }

            .about-me {
                padding: 60px 20px;
            }

            .about-me-text p {
                font-size: 1rem;
            }

            .about-me-details h3 {
                font-size: 1.3rem;
            }

            .about-me-content-text {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .achievements {
                padding: 60px 20px;
            }

            .contact {
                padding: 60px 20px;
            }

            .contact-main h2 {
                font-size: 2rem;
                white-space: normal;
            }

            .contact-subtitle {
                font-size: 1.3rem;
            }

            .site-footer {
                padding: 40px 20px;
            }

            .footer-content {
                flex-direction: column;
                gap: 30px;
                text-align: center;
            }

            .footer-social {
                flex-direction: column;
                gap: 15px;
            }

            /* Improve skills marquee for mobile */
            .skills-marquee {
                margin-top: 40px;
                padding: 15px 0;
            }

            .marquee-content {
                font-size: 0.9rem;
            }
        }

        /* Small mobile devices */
        @media (max-width: 480px) {
            header {
                padding: 12px 15px;
            }

            .logo {
                font-size: 1.3rem;
            }

            nav {
                gap: 10px;
            }

            nav a {
                font-size: 0.8rem;
                padding: 6px 10px;
            }

            .hero {
                padding: 20px 15px;
            }

            .hero-title {
                font-size: 1.8rem;
            }

            .hero-desc {
                font-size: 0.9rem;
            }

            .projects {
                padding: 40px 15px;
            }

            .projects h2 {
                font-size: 1.5rem;
            }

            .project-image {
                height: 200px;
            }

            .skills {
                padding: 40px 15px;
            }

            .skills h2 {
                font-size: 1.5rem;
            }

            .skill-card {
                padding: 25px 15px;
            }

            .skill-card h3 {
                font-size: 1.3rem;
            }

            .brands {
                padding: 40px 15px;
            }

            .about-me {
                padding: 40px 15px;
            }

            .about-me-details h3 {
                font-size: 1.1rem;
            }

            .achievements {
                padding: 40px 15px;
            }

            .contact {
                padding: 40px 15px;
            }

            .contact-main h2 {
                font-size: 1.5rem;
            }

            .contact-subtitle {
                font-size: 1.1rem;
            }

            .site-footer {
                padding: 30px 15px;
            }

            .marquee-content {
                font-size: 0.9rem;
            }

            .marquee-content span {
                margin: 0 15px;
            }
        }

        /* Extra small devices */
        @media (max-width: 360px) {
            .hero-title {
                font-size: 1.6rem;
            }

            .projects h2,
            .skills h2 {
                font-size: 1.3rem;
            }

            .contact-main h2 {
                font-size: 1.3rem;
            }

            .about-me-details h3 {
                font-size: 1rem;
            }

            .skill-card h3 {
                font-size: 1.2rem;
            }
        }

        /* Landscape orientation for mobile */
        @media (max-width: 768px) and (orientation: landscape) {
            .hero {
                min-height: 50vh;
                padding: 20px;
            }

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

            .hero-desc {
                font-size: 0.95rem;
            }
        }

        /* High DPI displays */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            .project-icon svg,
            .skill-icon svg {
                transform: scale(1.1);
            }
        }

        /* Hover states for touch devices */
        @media (hover: none) and (pointer: coarse) {
            .project-card:hover {
                transform: none;
            }

            .project-image:hover .project-icon {
                transform: none;
            }

            .project-overlay {
                opacity: 1;
                background: rgba(0, 0, 0, 0.3);
            }

            .view-project-circle {
                opacity: 1;
            }

            nav a:hover {
                color: #fff;
            }

            .see-all-btn:hover .btn-text,
            .resume-btn:hover .btn-text {
                transform: translateY(0);
                opacity: 1;
            }

            .see-all-btn:hover .btn-text-hover,
            .resume-btn:hover .btn-text-hover {
                transform: translateX(-50%) translateY(calc(-50% + 100%));
                opacity: 0;
            }
        }

        /* Touch-friendly improvements for mobile */
        @media (max-width: 768px) {
            /* Ensure touch targets are at least 44px */
            .nav-menu a {
                min-height: 44px;
                padding: 12px 24px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .project-link {
                min-height: 44px;
            }

            .see-all-btn,
            .resume-btn {
                min-height: 48px;
                padding: 12px 32px;
            }

            .about-link {
                padding: 4px 0;
                display: inline-block;
            }

            .footer-social a {
                min-height: 44px;
                padding: 8px 0;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            /* Prevent text selection on interactive elements */
            .mobile-menu-toggle,
            .nav-menu a,
            .project-link,
            .see-all-btn,
            .resume-btn {
                -webkit-touch-callout: none;
                -webkit-user-select: none;
                -khtml-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none;
            }

            /* Improve scrolling performance */
            body {
                -webkit-overflow-scrolling: touch;
            }

            /* Reduce motion for users who prefer it */
            @media (prefers-reduced-motion: reduce) {
                * {
                    animation-duration: 0.01ms !important;
                    animation-iteration-count: 1 !important;
                    transition-duration: 0.01ms !important;
                    scroll-behavior: auto !important;
                }
            }
        }

        /* High contrast mode support */
        @media (prefers-contrast: high) {
            body {
                background: #000;
                color: #fff;
            }

            .project-image,
            .skill-card {
                border: 2px solid #fff;
            }

            .nav-menu a {
                border: 1px solid #fff;
            }
        }

        /* Reduced transparency for users who prefer it */
        @media (prefers-reduced-transparency: reduce) {
            header {
                background: #0a0a0a;
                backdrop-filter: none;
            }

            .nav-menu {
                background: #0a0a0a;
                backdrop-filter: none;
            }
        }

        /* Print styles */
        @media print {
            header,
            .mobile-menu-toggle,
            .nav-menu {
                display: none;
            }

            body {
                padding-top: 0;
                background: white;
                color: black;
            }

            .hero,
            .projects,
            .skills,
            .brands,
            .about-me,
            .achievements,
            .contact {
                page-break-inside: avoid;
                padding: 20px 0;
            }

            .project-overlay,
            .view-project-circle {
                display: none;
            }

            a {
                color: black;
                text-decoration: underline;
            }
        }