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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #4d4d4d;
    line-height: 1.6;
}





.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
}

/* Logo Section */
.logo-section {
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.logo {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.logo:hover {
    transform: scale(1.08) translateY(-2px);
}

.logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 77, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.logo:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Download Section */
.download-section {
    margin-bottom: 40px;
    text-align: center;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #FF4D00 0%, #f94000 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.download-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.download-button:hover::before {
    left: 100%;
}

.download-button:hover {
    transform: translateY(-2px);
}

/* Header Section */
.header-section {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.header-section::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FF4D00, #f94000);
    border-radius: 2px;
}

.main-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #FF4D00;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(255, 77, 0, 0.1);
}

.subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    color: #4d4d4d;
    line-height: 1.3;
    opacity: 0.85;
    letter-spacing: 0.2px;
}

/* Content Wrapper */
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}



.section {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid #e0e0e0;
}

/* Experience Highlight Section */
.experience-highlight {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.experience-card {
    background: linear-gradient(135deg, #FF4D00 0%, #f94000 100%);
    border-radius: 24px;
    padding: 40px 30px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 450px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.experience-card:hover::before {
    left: 100%;
}

.experience-card:hover {
    transform: translateY(-5px);
}

.experience-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    z-index: 1;
}

.experience-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

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

.experience-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.experience-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.95;
    letter-spacing: 0.3px;
}

.section-title {
    background: #FF4D00;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 20px 30px;
    margin: 0;
    text-align: center;
    letter-spacing: 0.5px;
}

.section-content {
    color: #4d4d4d;
    padding: 30px;
    text-align: center;
}

.name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4d4d4d;
    margin-bottom: 8px;
}

.title {
    font-size: 1.3rem;
    font-weight: 500;
    color: #FF4D00;
    margin-bottom: 8px;
}

.location, .origin {
    font-size: 1rem;
    color: #4d4d4d;
    opacity: 0.8;
    margin-bottom: 4px;
}

/* Lists */
.experience-list, .skills-list, .software-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Enhanced list container */
.section-content ul {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 77, 0, 0.1);
    backdrop-filter: blur(10px);
}

.experience-list li, .skills-list li, .software-list li {
    padding: 16px 20px;
    margin: 8px 0;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #4d4d4d;
    font-size: 1rem;
    line-height: 1.5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.experience-list li:last-child,
.skills-list li:last-child,
.software-list li:last-child {
    margin-bottom: 0;
}

.experience-list li:hover,
.skills-list li:hover,
.software-list li:hover {
    background: linear-gradient(135deg, #fff5f2, #fff);
    border-color: #FF4D00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 77, 0, 0.15);
}

/* Add subtle icons to list items */
.experience-list li::before,
.skills-list li::before,
.software-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #FF4D00, #f94000);
    border-radius: 50%;
    margin-right: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Enhanced hover effects for list items */
.experience-list li:hover::before,
.skills-list li:hover::before,
.software-list li:hover::before {
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(255, 77, 0, 0.4);
}

/* Staggered animation for list items */
.experience-list li,
.skills-list li,
.software-list li {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.experience-list li:nth-child(1) { animation-delay: 0.1s; }
.experience-list li:nth-child(2) { animation-delay: 0.2s; }
.experience-list li:nth-child(3) { animation-delay: 0.3s; }
.experience-list li:nth-child(4) { animation-delay: 0.4s; }
.experience-list li:nth-child(5) { animation-delay: 0.5s; }
.experience-list li:nth-child(6) { animation-delay: 0.6s; }
.experience-list li:nth-child(7) { animation-delay: 0.7s; }

.skills-list li:nth-child(1) { animation-delay: 0.1s; }
.skills-list li:nth-child(2) { animation-delay: 0.2s; }
.skills-list li:nth-child(3) { animation-delay: 0.3s; }
.skills-list li:nth-child(4) { animation-delay: 0.4s; }
.skills-list li:nth-child(5) { animation-delay: 0.5s; }
.skills-list li:nth-child(6) { animation-delay: 0.6s; }
.skills-list li:nth-child(7) { animation-delay: 0.7s; }
.skills-list li:nth-child(8) { animation-delay: 0.8s; }
.skills-list li:nth-child(9) { animation-delay: 0.9s; }
.skills-list li:nth-child(10) { animation-delay: 1.0s; }
.skills-list li:nth-child(11) { animation-delay: 1.1s; }
.skills-list li:nth-child(12) { animation-delay: 1.2s; }
.skills-list li:nth-child(13) { animation-delay: 1.3s; }

.software-list li:nth-child(1) { animation-delay: 0.1s; }
.software-list li:nth-child(2) { animation-delay: 0.2s; }
.software-list li:nth-child(3) { animation-delay: 0.3s; }
.software-list li:nth-child(4) { animation-delay: 0.4s; }
.software-list li:nth-child(5) { animation-delay: 0.5s; }
.software-list li:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.current-role {
    background: linear-gradient(135deg, #FF4D00, #f94000) !important;
    color: white !important;
    border-color: #FF4D00 !important;
    box-shadow: 0 4px 12px rgba(255, 77, 0, 0.3) !important;
}

.current-role::before {
    background: white !important;
}

.current-role:hover {
    background: linear-gradient(135deg, #f94000, #FF4D00) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(255, 77, 0, 0.4) !important;
}

.current-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

/* Contact Form Section */
.contact-section {
    text-align: center;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 77, 0, 0.1);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #ffffff;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FF4D00;
}

.submit-btn {
    background: linear-gradient(135deg, #FF4D00 0%, #f94000 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    margin: 30px auto 0 auto;
}

.submit-btn:hover {
    transform: translateY(-2px);
}





/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 20px 16px;
    }
    
    .section {
        padding: 20px;
    }
    
    .experience-card {
        max-width: 90%;
    }
    
    /* Responsive section titles - revert to underline style on mobile */
    .section-title {
        background: transparent;
        color: #FF4D00;
        padding: 0 0 16px 0;
        margin-bottom: 20px;
        position: relative;
        text-align: center;
    }
    
    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, #FF4D00, #f94000);
        border-radius: 2px;
    }
    
    .section-content {
        padding: 20px 0;
        text-align: center;
    }
    
    .contact-form {
        max-width: 100%;
    }
    
    .submit-btn {
        max-width: 250px;
        margin: 20px auto 0 auto;
    }
    
    .contact-form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .experience-title {
        font-size: 1.8rem;
    }
    
    .experience-card {
        padding: 20px;
    }
    
    .logo {
        width: 60px;
        height: 60px;
    }
}

/* Contact Icons */
.contact-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    color: #4d4d4d;
    transition: all 0.3s ease;
    min-width: 120px;
}

.contact-icon:hover {
    transform: translateY(-5px);
    border-color: #FF4D00;
    background: rgba(255, 77, 0, 0.05);
}

.contact-icon svg {
    width: 32px;
    height: 32px;
}

.contact-icon span {
    font-weight: 600;
    font-size: 0.9rem;
}

.contact-icon.instagram:hover svg path {
    fill: #E4405F;
}

.contact-icon.email:hover svg path {
    fill: #FF4D00;
}
