 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Merriweather', 'Georgia', serif;
            line-height: 1.7;
            color: #1a1a1a;
            background: #2a2a2a;
            padding: 2rem 1rem;
        }

        .container {
            max-width: 850px;
            margin: 0 auto;
            background: #1e1e1e;
            border-radius: 2px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.4);
            border-top: 4px solid #388087;
        }

        .header {
            background: #2d5a5e;
            color: #e8e8e8;
            padding: 2.5rem 2rem 2rem;
            text-align: center;
        }

        .profile-image-container {
            margin-bottom: 1.2rem;
        }

        .profile-image {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            border: 4px solid #ecf0f1;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            display: block;
            margin: 0 auto;
            object-fit: cover;
            object-position: center;
            background: #ddd;
        }

        .header h1 {
            font-size: 2.2rem;
            margin-bottom: 0.3rem;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .header .title {
            font-size: 1.1rem;
            margin-bottom: 1.2rem;
            opacity: 0.85;
            /* font-style: italic; */
            font-family: 'Inter', 'Arial', sans-serif;
        }

        .contact-bar {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 1rem;
            margin-right: -2rem;
            font-family: 'Inter', 'Arial', sans-serif;
            font-size: 0.85rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .main-content {
            padding: 2rem 2.5rem;
        }

        .section {
            margin-bottom: 2rem;
        }

        .section-title {
            font-size: 1.3rem;
            color: #4a9da6;
            margin-bottom: 1rem;
            padding-bottom: 0.4rem;
            border-bottom: 2px solid #4a9da6;
            font-family: 'Inter', 'Arial', sans-serif;
            font-weight: 600;
        }

        .objective {
            font-size: 0.95rem;
            line-height: 1.8;
            color: #d0d0d0;
            text-align: justify;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.2rem;
        }

        .skill-category {
            background: #252525;
            padding: 1rem 1.2rem;
            border-radius: 1px;
            border-left: 3px solid #5a5a5a;
        }

        .skill-category h3 {
            color: #4a9da6;
            font-size: 0.95rem;
            margin-bottom: 0.6rem;
            font-family: 'Inter', 'Arial', sans-serif;
            font-weight: 600;
        }

        .skill-category p {
            font-size: 0.88rem;
            color: #b0b0b0;
            line-height: 1.6;
        }

        .project-card {
            margin-bottom: 1.8rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #3a3a3a;
        }

        .project-card:last-child {
            border-bottom: none;
        }

        .project-card h3 {
            color: #4a9da6;
            margin-bottom: 0.7rem;
            font-size: 1.1rem;
            font-family: 'Inter', 'Arial', sans-serif;
            font-weight: 600;
        }

        .project-link {
            color: #3498db;
            text-decoration: none;
            font-size: 0.9rem;
            margin-left: 0.5rem;
            transition: color 0.2s ease;
        }

        .project-link:hover {
            color: #2980b9;
            text-decoration: underline;
        }

        .project-card ul {
            list-style: none;
            padding-left: 0;
        }

        .project-card li {
            padding-left: 1.2rem;
            margin-bottom: 0.5rem;
            position: relative;
            font-size: 0.9rem;
            color: #d0d0d0;
            line-height: 1.6;
        }

        .project-card li:before {
            content: "•";
            position: absolute;
            left: 0;
            color: #5a5a5a;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .tech-stack {
            margin-top: 0.8rem;
            font-size: 0.88rem;
            color: #a0a0a0;
            font-style: italic;
        }

        .training-box {
            background: #252525;
            padding: 1.3rem 1.5rem;
            border-radius: 1px;
            margin-bottom: 1rem;
            border-left: 3px solid #4a9da6;
        }

        .training-box h3 {
            font-size: 1.05rem;
            margin-bottom: 0.4rem;
            color: #4a9da6;
            font-family: 'Inter', 'Arial', sans-serif;
            font-weight: 600;
        }

        .training-box .institution {
            font-style: italic;
            margin-bottom: 0.8rem;
            color: #b0b0b0;
            font-size: 0.9rem;
        }

        .training-box ul {
            list-style: none;
            padding-left: 0;
        }

        .training-box li {
            padding-left: 1.2rem;
            margin-bottom: 0.4rem;
            position: relative;
            font-size: 0.88rem;
            color: #d0d0d0;
        }

        .training-box li:before {
            content: "✓";
            position: absolute;
            left: 0;
            font-weight: bold;
            color: #4a9da6;
        }

        .education-item {
            background: #252525;
            padding: 1.3rem 1.5rem;
            border-radius: 1px;
            margin-bottom: 1rem;
            border-left: 3px solid #5a5a5a;
        }

        .education-item h3 {
            color: #4a9da6;
            margin-bottom: 0.3rem;
            font-size: 1.05rem;
            font-family: 'Inter', 'Arial', sans-serif;
            font-weight: 600;
        }

        .education-item .degree {
            color: #b0b0b0;
            font-size: 0.9rem;
            margin-bottom: 0.2rem;
        }

        .education-item .year {
            color: #808080;
            font-size: 0.88rem;
            font-style: italic;
        }

        .footer {
            background: #2d5a5e;
            color: #e8e8e8;
            text-align: center;
            padding: 1.2rem;
            font-size: 0.85rem;
            font-family: 'Inter', 'Arial', sans-serif;
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 1.8rem;
            }

            .main-content {
                padding: 1.5rem;
            }

            .contact-bar {
                gap: 1rem;
            }

            .skills-grid {
                grid-template-columns: 1fr;
            }
        }