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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 50px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Professional Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.7; 
    }
    50% { 
        transform: translateY(-15px) rotate(180deg); 
        opacity: 1; 
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 15px 40px rgba(108, 92, 231, 0.4);
    }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes blink {
    0%, 90%, 100% { height: 8px; }
    95% { height: 2px; }
}

/* Header Section */
.header {
    background: white;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    animation: slideInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

.profile-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #6c5ce7;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: scaleIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.profile-badge:hover {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

.icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.icon-lg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.icon-xl {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* General highlight class - Ultra specific */
.highlight,
span.highlight,
.highlight span,
* .highlight,
* span.highlight {
    color: #6c5ce7 !important;
    font-weight: 600 !important;
    display: inline !important;
    background: none !important;
    border: none !important;
    text-decoration: none !important;
    font-size: inherit !important;
    line-height: inherit !important;
}

.name {
    font-size: 48px;
    font-weight: 300;
    color: #2d3436;
    margin-bottom: 10px;
    opacity: 0;
    animation: slideInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both;
}

.name .highlight {
    color: #6c5ce7;
    font-weight: 600;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

.name .highlight {
    color: #6c5ce7 !important;
    font-weight: 600 !important;
}

.title {
    font-size: 32px;
    color: #2d3436;
    font-weight: 600;
    margin-bottom: 40px;
    opacity: 0;
    animation: slideInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
}

.profile-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    opacity: 0;
    animation: scaleIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
}

.profile-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: pulse 3s ease-in-out infinite;
}

.profile-image:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 50px rgba(108, 92, 231, 0.5);
}

.hero-character {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}

.character-head {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: #ffeaa7;
    border-radius: 50%;
    border: 3px solid #fff;
}

.character-face {
    position: relative;
    width: 100%;
    height: 100%;
}

.eyes {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.eye {
    width: 8px;
    height: 8px;
    background: #2d3436;
    border-radius: 50%;
    animation: blink 3s infinite;
}

.mouth {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 8px;
    border: 2px solid #2d3436;
    border-top: none;
    border-radius: 0 0 16px 16px;
}

.character-hair {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 30px;
    background: #6c5ce7;
    border-radius: 30px 30px 0 0;
}

.character-body {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 40px;
    background: #0984e3;
    border-radius: 10px 10px 0 0;
}

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

.floating-element {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: 15%;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 20%;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    animation-delay: 2s;
}

.element-3 {
    bottom: 30%;
    left: 25%;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    animation-delay: 4s;
}

.rating-section {
    text-align: left;
    opacity: 0;
    animation: slideInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s both;
}

.rating-number {
    font-size: 24px;
    font-weight: 700;
    color: #2d3436;
}

.rating-text {
    font-size: 14px;
    color: #636e72;
    margin-bottom: 10px;
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.star {
    width: 20px;
    height: 20px;
    background: #fdcb6e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.star:hover {
    transform: scale(1.2) rotate(15deg);
    background: #f39c12;
}

.buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    opacity: 0;
    animation: scaleIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s both;
}

.btn {
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn::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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: #6c5ce7;
    color: white;
}

.btn-secondary {
    background: white;
    color: #2d3436;
    border: 2px solid #ddd;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

.btn-secondary:hover {
    border-color: #6c5ce7;
    color: #6c5ce7;
}

/* Skills Section */
.skills {
    background: #00b894;
    padding: 20px 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    animation: slideInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.4s both;
}

.skill-tag {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.skill-tag:hover {
    transform: scale(1.1) translateY(-2px);
    background: rgba(255,255,255,0.3);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Services Section */
.services-section {
    background: #6c5ce7;
    padding: 60px 40px;
    color: white;
    opacity: 0;
    animation: slideInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.6s both;
}

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

.section-title {
    font-size: 32px;
    font-weight: 300;
}

.section-title .highlight {
    color: #00b894;
    font-weight: 600;
}

.section-title .highlight {
    color: #00b894 !important;
    font-weight: 600 !important;
}

.view-all-btn {
    background: #00b894;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.view-all-btn:hover {
    transform: translateY(-2px) scale(1.05);
    background: #00a085;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.service-card:nth-child(1) { animation-delay: 1.8s; }
.service-card:nth-child(2) { animation-delay: 2s; }
.service-card:nth-child(3) { animation-delay: 2.2s; }

.service-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255,255,255,0.2);
}

.service-card.featured .service-icon {
    background: white;
    color: #6c5ce7;
}

.service-card.featured {
    transform: scale(1.05);
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-description {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    margin-bottom: 15px;
}

.learn-more {
    color: #00b894;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.learn-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00b894;
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.learn-more:hover::after {
    width: 100%;
}

.learn-more:hover {
    color: #00a085;
}

/* About Section */
.about-section {
    background: white;
    padding: 60px 40px;
    display: flex;
    gap: 40px;
    align-items: center;
    opacity: 0;
    animation: slideInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.4s both;
}

.experience-card {
    background: #6c5ce7;
    color: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    min-width: 250px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.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.6s;
}

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

.experience-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(108, 92, 231, 0.3);
}

.experience-number {
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.experience-text {
    font-size: 16px;
    font-weight: 500;
}

.experience-label {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: rotate(-90deg) translateY(-50%);
    font-size: 14px;
    font-weight: 600;
    color: #2d3436;
    background: white;
    padding: 5px 15px;
    border-radius: 10px;
}

.about-content {
    flex: 1;
}

.about-title {
    font-size: 28px;
    color: #2d3436;
    margin-bottom: 20px;
}

.about-title .highlight {
    color: #6c5ce7 !important;
}

.about-description {
    color: #636e72;
    line-height: 1.6;
    margin-bottom: 30px;
}

.stats {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}

.stat {
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat:hover {
    transform: translateY(-3px);
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #2d3436;
}

.stat-label {
    font-size: 14px;
    color: #636e72;
}

.download-cv {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #6c5ce7;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.download-cv::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;
}

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

.download-cv:hover {
    transform: translateY(-2px) scale(1.05);
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.3);
}

.download-cv span {
    font-size: 12px;
    opacity: 0.8;
}

/* Education Section */
.education-section {
    background: #f8f9fa;
    padding: 60px 40px;
    opacity: 0;
    animation: slideInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.8s both;
}

.education-header {
    text-align: center;
    margin-bottom: 50px;
}

.education-header p {
    color: #636e72;
    font-size: 14px;
    margin-bottom: 10px;
}

.education-title {
    font-size: 32px;
    color: #2d3436;
    margin-bottom: 10px;
}

.education-title .highlight {
    color: #6c5ce7 !important;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.education-column h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: #2d3436;
    margin-bottom: 30px;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: #6c5ce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.icon-circle:hover {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

.education-item, .work-item {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(30px);
}

.education-item.animate, .work-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.education-item:hover, .work-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

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

.item-title {
    font-size: 16px;
    font-weight: 600;
    color: #2d3436;
}

.item-year {
    font-size: 14px;
    color: #636e72;
    font-weight: 600;
}

.item-subtitle {
    font-size: 14px;
    color: #636e72;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 20px;
        margin-top: 20px;
    }
    
    .profile-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-section {
        flex-direction: column;
    }
    
    .education-grid {
        grid-template-columns: 1fr;
    }
    
    .skills {
        padding: 15px 20px;
    }
    
    .header, .services-section, .about-section, .education-section {
        padding: 40px 20px;
    }
    
    .name {
        font-size: 36px;
    }
    
    .title {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .education-title {
        font-size: 24px;
    }
    
    .buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
        justify-content: center;
    }
}
