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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #2c3e50;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 20px;
        }

        .resume-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
            overflow: hidden;
            position: relative;
            animation: slideUp 0.8s ease-out;
        }

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

        .header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
            color: white;
            padding: 50px 40px;
            position: relative;
            overflow: hidden;
            z-index: 10;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%);
            z-index: 0;
        }

        .header-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 40px;
            align-items: center;
        }

        .personal-info h1 {
            font-size: 3.5em;
            font-weight: 700;
            margin-bottom: 15px;
            background: linear-gradient(45deg, #fff, #e0e6ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .personal-info .subtitle {
            font-size: 1.4em;
            opacity: 0.9;
            margin-bottom: 20px;
            font-weight: 300;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 25px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95em;
            opacity: 0.8;
        }

        .contact-item .icon {
            width: 20px;
            height: 20px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }



        /* .download-section {
            text-align: center;
        }

        .download-btn {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        }

        .download-btn:active {
            transform: translateY(0);
        } */


        .profile-photo {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 10;
      }

      @media (max-width: 768px) {
        .profile-photo {
          width: 90px;
          height: 90px;
          position: static;
          display: block;
          margin: 0 auto 15px auto;
        }
    }

        .main-content {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 0;
        }

        .left-column {
            padding: 40px;
        }

        .right-column {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 40px 30px;
            border-left: 1px solid #e0e6ed;
        }

        .section {
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 2em;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(45deg, #667eea, #764ba2);
            border-radius: 2px;
        }

        .experience-item {
            background: #fff;
            padding: 30px;
            margin-bottom: 25px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border-left: 4px solid #667eea;
            position: relative;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }

        .experience-item.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .experience-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
        }

        .job-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 15px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .job-title {
            font-size: 1.5em;
            font-weight: 600;
            color: #1a1a2e;
            line-height: 1.3;
        }

        .company {
            font-size: 1.1em;
            color: #667eea;
            font-weight: 500;
            margin-bottom: 5px;
        }

        .duration {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.85em;
            font-weight: 500;
            white-space: nowrap;
        }

        .location {
            color: #6c757d;
            font-size: 0.9em;
            margin-bottom: 15px;
        }

        .responsibilities {
            list-style: none;
            padding: 0;
        }

        .responsibilities li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            line-height: 1.6;
            color: #495057;
        }

        .responsibilities li::before {
            content: '◆';
            position: absolute;
            left: 0;
            color: #667eea;
            font-size: 0.8em;
            top: 10px;
        }

        .highlight {
            background: linear-gradient(120deg, #667eea15, #764ba215);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
            color: #1a1a2e;
        }

        .sidebar-section {
            margin-bottom: 40px;
        }

        .sidebar-title {
            font-size: 1.3em;
            font-weight: 600;
            color: #1a1a2e;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #667eea;
        }

        .education-item, .certification-item {
            background: white;
            padding: 20px;
            margin-bottom: 15px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        .education-item:hover, .certification-item:hover {
            transform: translateY(-2px);
        }

        .education-title, .cert-title {
            font-weight: 600;
            color: #1a1a2e;
            margin-bottom: 5px;
        }

        .education-details, .cert-details {
            font-size: 0.9em;
            color: #6c757d;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 10px;
            margin-top: 15px;
        }

        .skill-item {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            padding: 12px 15px;
            border-radius: 25px;
            text-align: center;
            font-size: 0.85em;
            font-weight: 500;
            transition: transform 0.3s ease;
        }

        .skill-item:hover {
            transform: scale(1.05);
        }

        .progress-bar {
            width: 100%;
            height: 8px;
            background: #e9ecef;
            border-radius: 4px;
            overflow: hidden;
            margin-top: 10px;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(45deg, #667eea, #764ba2);
            border-radius: 4px;
            transition: width 1s ease;
        }

        .summary {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            border-left: 4px solid #667eea;
        }

        .summary p {
            font-size: 1.1em;
            line-height: 1.8;
            color: #495057;
            margin-bottom: 15px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
            }

            .left-column {
                order: 1;
            }
            
            .right-column {
                order: 2;
                border-left: none;
                border-bottom: 1px solid #e0e6ed;
            }
        }

        @media (max-width: 768px) {
            .resume-container {
                margin: 10px;
                border-radius: 15px;
            }

            .header {
                padding: 40px 30px;
            }

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

            .personal-info h1 {
                font-size: 2.5em;
            }

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

            .left-column, .right-column {
                padding: 30px 20px;
            }

            .job-header {
                flex-direction: column;
                align-items: start;
            }

            .duration {
                align-self: flex-start;
            }
        }

        @media (max-width: 480px) {
            body {
                padding: 10px;
            }

            .personal-info h1 {
                font-size: 2em;
            }

            .section-title {
                font-size: 1.6em;
            }

            .experience-item {
                padding: 20px;
            }

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

        @media print {
            body {
                background: white;
                padding: 0;
            }

            .resume-container {
                box-shadow: none;
                border-radius: 0;
                max-width: none;
            }

            .download-btn {
                display: none;
            }

            .header {
                background: #1a1a2e !important;
                -webkit-print-color-adjust: exact;
            }

            .experience-item {
                break-inside: avoid;
                box-shadow: none;
                border: 1px solid #e0e6ed;
            }

            .main-content {
                grid-template-columns: 1fr 300px;
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        a[href^="tel:"] {
            text-decoration: none;
            color: inherit;
        }