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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #f5f5f5;
            min-height: 100vh;
            padding: 20px;
            position: relative;
            overflow-x: hidden;
        }

        nav{
            text-align: center;
            padding: 5px;
        }

 nav a{
  color:  #09381F;
  transition: color 0.3s ease;
  text-decoration: none;
}

nav a:hover {
  color: #E6D4E6;
}

a[aria-current="page"] {
  font-weight: bold;
  color: #E6D4E6;
  text-decoration: none;
}

        .container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            position: relative;
            z-index: 10;
            animation: slideUp 0.8s ease-out;
        }

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

        /* Header Section */
        .header {
            background: #2c3e50;
            color: white;
            padding: 50px 40px;
            text-align: center;
            position: relative;
            overflow: visible;
        }

        .header-content {
            position: relative;
            z-index: 2;
        }

        .download-btn {
            background: #3498db;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 0.95em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 20px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .download-btn:hover {
            background: #2980b9;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
        }

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

        .name {
            font-size: 2.5em;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .title {
            font-size: 1.3em;
            font-weight: 300;
            opacity: 0.95;
            margin-bottom: 20px;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            font-size: 0.95em;
        }

        .contact-info a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.3s ease;
        }

        .contact-info a:hover {
            transform: translateY(-3px);
        }

        /* Main Content */
        .content {
            padding: 50px 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .section {
            margin-bottom: 30px;
        }

        .section-title {
            font-size: 1.4em;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #bdc3c7;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-title i {
            font-size: 1.2em;
        }

        /* Skills Section */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .skill-category {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #34495e;
        }

        .skill-category h4 {
            color: #2c3e50;
            font-size: 0.95em;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .skill-items {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .skill-tag {
            background: white;
            border: 1px solid #bdc3c7;
            color: #34495e;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85em;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .skill-tag:hover {
            background: #34495e;
            color: white;
            transform: scale(1.05);
        }

        /* Experience & Education */
        .entry {
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .entry:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

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

        .entry-title {
            font-size: 1.1em;
            font-weight: 700;
            color: #333;
        }

        .entry-date {
            color: #7f8c8d;
            font-size: 0.9em;
            font-weight: 600;
        }

        .entry-company {
            color: #2c3e50;
            font-size: 0.95em;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .entry-description {
            color: #555;
            font-size: 0.9em;
            line-height: 1.6;
        }

        .entry-description li {
            margin-left: 20px;
            margin-bottom: 5px;
        }

        /* Right Column */
        .right-column {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        /* Certifications */
        .cert-item {
            background: #f8f9fa;
            padding: 12px;
            border-radius: 8px;
            border-left: 3px solid #34495e;
            margin-bottom: 12px;
        }

        .cert-name {
            font-weight: 600;
            color: #333;
            font-size: 0.95em;
        }

        .cert-issuer {
            color: #666;
            font-size: 0.85em;
            margin-top: 3px;
        }

        /* Proficiency Bars */
        .proficiency-item {
            margin-bottom: 18px;
        }

        .proficiency-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 6px;
            font-size: 0.9em;
        }

        .proficiency-name {
            font-weight: 600;
            color: #333;
        }

        .proficiency-level {
            color: #34495e;
            font-weight: 700;
        }

        .proficiency-bar {
            height: 8px;
            background: #ecf0f1;
            border-radius: 10px;
            overflow: hidden;
        }

        .proficiency-fill {
            height: 100%;
            background: linear-gradient(90deg, #34495e 0%, #2c3e50 100%);
            border-radius: 10px;
            transition: width 0.6s ease;
        }

        /* Print Styles */
        @media print {
            body {
                background: white;
                padding: 0;
            }

            .download-btn {
                display: none;
            }

            .container {
                box-shadow: none;
                max-width: 100%;
            }

            .content {
                padding: 40px 30px;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header {
                padding: 40px 20px 30px;
            }

            .name {
                font-size: 2em;
            }

            .title {
                font-size: 1.1em;
            }

            .contact-info {
                gap: 15px;
                font-size: 0.85em;
            }

            .content {
                grid-template-columns: 1fr;
                padding: 30px 20px;
                gap: 30px;
            }

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

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

            .entry-header {
                flex-direction: column;
                gap: 5px;
            }
        }

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

            .header {
                padding: 30px 15px 20px;
            }

            .name {
                font-size: 1.6em;
            }

            .title {
                font-size: 0.95em;
            }

            .contact-info {
                flex-direction: column;
                gap: 10px;
            }

            .content {
                padding: 20px 15px;
            }

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