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

        :root {
            --primary-gradient: linear-gradient(135deg, #3f3f3f 0%, #7c7d7d 100%);
            --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --accent-gradient: linear-gradient(135deg, #3f3f3f 0%, #7c7d7d 100%);
            --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            --glass-bg: rgba(255, 255, 255, 0.15);
            --glass-border: rgba(255, 255, 255, 0.2);
            --shadow-light: 0 8px 32px rgba(31, 38, 135, 0.37);
            --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.15);
            --text-primary: #1a202c;
            --text-secondary: #4a5568;
            --text-light: #718096;
            --header-height: 80px;
        }

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

        

        /* Animated Background */
        .bg-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .bg-animation::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(102, 126, 234, 0.1), transparent, rgba(245, 87, 108, 0.1), transparent);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            height: var(--header-height);
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(0px);
            -webkit-backdrop-filter: blur(0px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateY(0);
        }

        /* Scrolled state with enhanced blur */
        header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        /* Hidden state when scrolling down */
        header.hidden {
            transform: translateY(-100%);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
            height: 100%;
        }

        .logo {
            font-size: 1.75rem;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--primary-gradient);
            transform: scaleX(0);
            transform-origin: center;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 2px;
        }

        .logo:hover {
            transform: translateY(-2px);
            filter: brightness(1.1);
        }

        .logo:hover::after {
            transform: scaleX(1);
        }

        nav {
            position: relative;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 1rem;
            margin: 0;
            padding: 0;
        }

        nav li {
            position: relative;
        }

        nav a {
            text-decoration: none;
            color: var(--text-light);
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            padding: 0.75rem 1.25rem;
            border-radius: 30px;
            display: block;
            white-space: nowrap;
        }

        nav a:hover,
        nav a.active {
            color: var(--text-primary);
            background: rgba(102, 126, 234, 0.12);
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-gradient);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateX(-50%);
            border-radius: 1px;
        }

        nav a:hover::after,
        nav a.active::after {
            width: calc(100% - 20px);
        }

        /* Mobile menu button */
        .mobile-menu {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--text-primary);
            cursor: pointer;
            padding: 0.75rem;
            border-radius: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .mobile-menu::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(102, 126, 234, 0.1);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .mobile-menu:hover {
            transform: scale(1.1);
            color: #667eea;
        }

        .mobile-menu:hover::before {
            opacity: 1;
        }

        .mobile-menu:active {
            transform: scale(0.95);
        }

        /* Mobile Navigation */
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
            opacity: 0;
            transform: translateY(-20px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .mobile-nav.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-nav ul {
            flex-direction: column;
            padding: 1rem 2rem;
            gap: 0.5rem;
        }

        .mobile-nav a {
            padding: 1rem 1.5rem;
            border-radius: 15px;
            font-size: 1rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                padding: 1rem 1.5rem;
            }
            
            .logo {
                font-size: 1.5rem;
            }
            
            nav {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
        }

        @media (max-width: 480px) {
            .header-content {
                padding: 1rem;
            }
            
            .logo {
                font-size: 1.25rem;
            }
            
            :root {
                --header-height: 70px;
            }
        }

        /* Smooth scrolling behavior */
        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--header-height);
        }

        /* Body padding to prevent content from hiding behind fixed header */
        body {
            padding-top: var(--header-height);
            margin: 0;
        }

        /* Enhanced focus states for accessibility */
        nav a:focus,
        .mobile-menu:focus,
        .logo:focus {
            outline: 2px solid #667eea;
            outline-offset: 2px;
        }

        /* Reduced motion support */
        @media (prefers-reduced-motion: reduce) {
            header,
            .logo,
            nav a,
            .mobile-menu {
                transition: none;
            }
            
            .logo:hover,
            nav a:hover {
                transform: none;
            }
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 50%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

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

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0;
            animation: slideUp 1s ease 0.3s forwards;
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-secondary);
            margin-bottom: 1rem;
            opacity: 0;
            animation: slideUp 1s ease 0.6s forwards;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            color: var(--text-light);
            opacity: 0;
            animation: slideUp 1s ease 0.9s forwards;
            line-height: 1.7;
        }

        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            opacity: 0;
            animation: slideUp 1s ease 1.2s forwards;
        }

        .profile-container {
            position: relative;
            width: 350px;
            height: 350px;
        }

        .profile-image {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: var(--primary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8rem;
            color: white;
            box-shadow: var(--shadow-heavy);
            position: relative;
            overflow: hidden;
            animation: float 6s ease-in-out infinite;
        }

        .profile-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
            animation: shine 3s ease-in-out infinite;
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .floating-element {
            position: absolute;
            width: 60px;
            height: 60px;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            animation: floatAround 8s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            top: 10%;
            left: 15%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            top: 20%;
            right: 10%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            bottom: 25%;
            left: 5%;
            animation-delay: 4s;
        }

        .floating-element:nth-child(4) {
            bottom: 15%;
            right: 20%;
            animation-delay: 6s;
        }

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

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

        @keyframes floatAround {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-10px) rotate(5deg); }
            50% { transform: translateY(-5px) rotate(-3deg); }
            75% { transform: translateY(-15px) rotate(3deg); }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Sections */
        .section {
            padding: 6rem 0;
            position: relative;
        }

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

        .section-title {
            text-align: center;
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 1rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        /* Enhanced Cards */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            padding: 2.5rem;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .card:hover::before {
            opacity: 0.05;
        }

        .card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-heavy);
            border-color: rgba(102, 126, 234, 0.3);
        }

        .card-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-gradient);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            color: white;
            font-size: 2rem;
            box-shadow: var(--shadow-light);
            transition: all 0.3s ease;
        }

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

        .card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        .card p {
            color: var(--text-light);
            line-height: 1.8;
            font-size: 1rem;
        }

        /* Enhanced Skills */
        .skills-rating {
        margin-top: 20px;
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
        flex-wrap: wrap; /* ensures responsive */
        }

        .rating-column {
        display: flex;
        flex-direction: column;
        gap: 25px; /* more spacing between bars */
        flex: 1; /* equal width columns */
        }

       .skills-grid {
        display: grid;
        grid-template-columns: repeat(11, 1fr);
        gap: 30px;
        justify-items: center;
        align-items: center;
        }

        .skill-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 0.85rem; /* slightly bigger text */
        }

        .skill-item img {
        width: 45px;  /* increased from 35px → 45px */
        height: 45px; /* increased from 35px → 45px */
        object-fit: contain;
        margin-bottom: 8px; /* slightly more spacing */
        }


        .skill-bar {
        width: 100%;
        height: 20px; /* bigger height */
        background: rgba(0,0,0,0.1);
        border-radius: 15px;
        overflow: hidden;
        position: relative;
        }

        .skill-fill {
        height: 100%;
        width: 0;
        background: linear-gradient(135deg, #a4a4a4, #4a4a4a); /* colored gradient */
        border-radius: 15px;
        transition: width 1s ease-in-out;
        }

        /* Optional: add percentage text on the right */
        .skill-bar::after {
        content: attr(data-percent);
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.85rem;
        font-weight: 600;
        color: #fff;
        }


    

        /* Enhanced Projects */
        .project-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--secondary-gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .project-card:hover::before {
            opacity: 0.03;
        }

        .project-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: var(--shadow-heavy);
            border-color: rgba(240, 147, 251, 0.3);
        }

        .project-image {
            height: 150px;
            background: var(--primary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
            position: relative;
            overflow: hidden;
        }

        .project-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .project-card:hover .project-image::before {
            transform: translateX(100%);
        }

        .project-content {
            padding: 2.5rem;
        }

        .project-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--text-primary);
        }

        .project-description {
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
            
        }

        .tech-tag {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            color: var(--text-secondary);
            padding: 0.5rem 0.5rem;
            border-radius: 15px;
            font-size: 0.9rem;
            font-weight: 500;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .tech-tag:hover {
            background: var(--primary-gradient);
            color: white;
            transform: scale(1.05);
        }

        .project-links {
            display: flex;
            gap: 1rem;
        }

        .project-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--primary-gradient);
            color: white;
            padding: 1rem 2rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-size: 0.95rem;
            box-shadow: var(--shadow-light);
        }

        .project-link:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: var(--shadow-heavy);
        }

        .project-link.secondary {
            background: transparent;
            color: var(--text-secondary);
            border: 2px solid rgba(102, 126, 234, 0.2);
            box-shadow: none;
        }

        .project-link.secondary:hover {
            background: var(--primary-gradient);
            color: white;
            border-color: transparent;
        }

        /* Enhanced Contact */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            color: inherit;
            position: relative;
            overflow: hidden;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--accent-gradient);
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .contact-card:hover::before {
            opacity: 0.1;
        }

        .contact-card:hover {
            transform: translateY(-8px) scale(1.03);
            border-color: rgba(79, 172, 254, 0.3);
            box-shadow: var(--shadow-heavy);
        }

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

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

        .contact-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: var(--text-primary);
        }

        .contact-info {
            color: var(--text-light);
            font-size: 1rem;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;
            padding: 4rem 0;
            position: relative;
        }

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

        footer p {
            color: var(--text-light);
            font-size: 1rem;
        }

        footer p:first-child {
            font-weight: 600;
            color: var(--text-secondary);
        }

        /* Scroll to top */
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 56px;
            height: 56px;
            background: var(--primary-gradient);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-light);
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: var(--shadow-heavy);
        }

        /* Alternating sections */
        .section:nth-child(even) {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }

            .hero-image {
                order: -1;
            }

            .profile-container {
                width: 280px;
                height: 280px;
            }

            .profile-image {
                font-size: 6rem;
            }

            
        }

        @media (max-width: 768px) {
            .header-content {
                padding: 1rem;
            }

            .mobile-menu {
                display: block;
            }

            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(20px);
                border-bottom: 1px solid rgba(255, 255, 255, 0.2);
                padding: 2rem;
                border-radius: 0 0 20px 20px;
            }

            nav.active {
                display: block;
            }

            nav ul {
                flex-direction: column;
                gap: 1rem;
            }

            nav a {
                display: block;
                text-align: center;
                padding: 1rem;
                border-radius: 15px;
            }

            .section {
                padding: 4rem 0;
            }

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

            .card-grid,
            .skills-grid,
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .container {
                padding: 0 1rem;
            }

            .project-links {
                flex-direction: column;
            }

            .scroll-top {
                bottom: 1rem;
                right: 1rem;
                width: 48px;
                height: 48px;
            }

            .profile-container {
                width: 240px;
                height: 240px;
            }

            .profile-image {
                font-size: 5rem;
            }

            .skills-rating {

                flex-direction: column;
                gap: 10px;
            }

            .skills-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }

            .skill-item img {
                width: 30px;
                height: 30px;
            }
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

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

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-gradient);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--secondary-gradient);
        }

        /* Education Section */
        .education-timeline {
            position: relative;
            padding-left: 0; /* no space for timeline line since no dots */
            margin-top: 2rem;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .edu-card {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 12px;
            border: 1px solid rgba(0,0,0,0.1);
            width: 100%;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .edu-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }

        .edu-img img {
            width: 50px;
            height: 50px;
            object-fit: contain;
            border-radius: 8px;
        }

        .edu-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .edu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 5px;
        }

        .edu-university {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 0.95rem;
            margin: 0;
        }

        .edu-year {
            font-weight: 500;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        h3 {
            margin: 0;
            font-size: 1rem;
            font-weight: 500;
            color: var(--text-primary);
        }