/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #111827;
    overflow-x: hidden;
}

/* Fixed Background */
.fixed-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #111827 0%, #1e3a8a20 50%, #7c2d9220 100%);
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    top: 80px;
    left: 40px;
    width: 288px;
    height: 288px;
    background: rgba(59, 130, 246, 0.1);
    animation-delay: 0s;
}

.shape-2 {
    top: 160px;
    right: 40px;
    width: 384px;
    height: 384px;
    background: rgba(147, 51, 234, 0.1);
    animation-delay: 1s;
}

.shape-3 {
    bottom: 80px;
    left: 33.333%;
    width: 320px;
    height: 320px;
    background: rgba(20, 184, 166, 0.1);
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(75, 85, 99, 0.3);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(to right, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    position: relative;
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #60a5fa, #a78bfa);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    padding: 0.5rem;
    background: #374151;
    border: none;
    border-radius: 0.5rem;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background: #4b5563;
}

.mobile-menu {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(55, 65, 81, 0.95);
    backdrop-filter: blur(16px);
    border-radius: 0.75rem;
    border: 1px solid rgba(75, 85, 99, 0.3);
}

.mobile-nav-link {
    display: block;
    padding: 0.5rem 0;
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu.active {
        display: block;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 1rem;
    text-align: center;
}

.hero-container {
    max-width: 1152px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.profile-image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.profile-image-wrapper {
    width: 192px;
    height: 192px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6, #14b8a6);
    padding: 4px;
    animation: pulse 2s infinite;
}

.profile-image {
    width: 100%;
    height: 100%;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.profile-image i {
    font-size: 5rem;
    color: #9ca3af;
}

.profile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.5), transparent);
}

.status-indicator {
    position: absolute;
    bottom: -8px;
    right: -8px;
    background: #10b981;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 4px solid #111827;
    animation: bounce 1s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #60a5fa, #a78bfa, #14b8a6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: pulse 3s infinite;
}

.hero-subtitle {
    position: relative;
    margin-bottom: 2rem;
}

.primary-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #d1d5db;
    font-weight: 300;
    margin-bottom: 1rem;
}

.secondary-title {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: #9ca3af;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid;
}

.badge-blue {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    border-color: rgba(59, 130, 246, 0.3);
}

.badge-green {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
    border-color: rgba(16, 185, 129, 0.3);
}

.badge-purple {
    background: rgba(147, 51, 234, 0.2);
    color: #c4b5fd;
    border-color: rgba(147, 51, 234, 0.3);
}

.contact-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.contact-card {
    position: relative;
    overflow: hidden;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover {
    transform: scale(1.05);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card-blue {
    background: linear-gradient(to right, #2563eb, #1d4ed8);
}

.contact-card-blue::before {
    background: linear-gradient(to right, #60a5fa, #3b82f6);
}

.contact-card-purple {
    background: linear-gradient(to right, #9333ea, #7c3aed);
}

.contact-card-purple::before {
    background: linear-gradient(to right, #a78bfa, #8b5cf6);
}

.contact-card-teal {
    background: linear-gradient(to right, #0d9488, #0f766e);
}

.contact-card i {
    font-size: 1.25rem;
}

.contact-card span {
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.professional-summary {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(16px);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(75, 85, 99, 0.5);
    margin-bottom: 3rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.professional-summary h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ffffff;
}

.summary-text {
    font-size: 1.125rem;
    color: #d1d5db;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.career-objective {
    text-align: center;
}

.objective-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #60a5fa;
    margin-bottom: 0.5rem;
}

.objective-text {
    color: #d1d5db;
    font-style: italic;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.achievement-card {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(16px);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(75, 85, 99, 0.5);
    transition: all 0.3s ease;
    text-align: center;
}

.achievement-card:hover {
    transform: scale(1.05);
    border-color: rgba(107, 114, 128, 0.5);
}

.achievement-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    border-radius: 0.75rem;
    margin: 0 auto 1rem;
}

.achievement-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.achievement-value {
    font-size: 1.875rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.achievement-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #60a5fa;
    margin-bottom: 0.25rem;
}

.achievement-desc {
    font-size: 0.875rem;
    color: #9ca3af;
}

.scroll-indicator {
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: #9ca3af;
}

/* Section Styles */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1rem;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #9ca3af;
    max-width: 32rem;
    margin: 0 auto;
}

/* Skills Section */
.skills-section {
    position: relative;
    padding: 5rem 0;
}

.skills-section .section-title {
    background: linear-gradient(to right, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.skill-category {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(16px);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(75, 85, 99, 0.5);
    transition: all 0.5s ease;
}

.skill-category:hover {
    transform: scale(1.02);
    border-color: rgba(107, 114, 128, 0.5);
}

.skill-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.skill-icon {
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
}

.skill-icon-blue {
    background: linear-gradient(to right, #3b82f6, #1e40af);
}

.skill-icon-green {
    background: linear-gradient(to right, #10b981, #059669);
}

.skill-icon-purple {
    background: linear-gradient(to right, #8b5cf6, #7c3aed);
}

.skill-icon-orange {
    background: linear-gradient(to right, #f59e0b, #d97706);
}

.skill-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.skill-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}

.skill-list {
    display: grid;
    gap: 0.75rem;
}

.skill-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: rgba(55, 65, 81, 0.3);
}

.skill-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

.skill-bullet-blue {
    background: linear-gradient(to right, #3b82f6, #1e40af);
}

.skill-bullet-green {
    background: linear-gradient(to right, #10b981, #059669);
}

.skill-bullet-purple {
    background: linear-gradient(to right, #8b5cf6, #7c3aed);
}

.skill-bullet-orange {
    background: linear-gradient(to right, #f59e0b, #d97706);
}

.skill-item span {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.skill-item:hover span {
    color: #ffffff;
}

.certifications-section {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(16px);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(75, 85, 99, 0.5);
}

.certifications-section h3 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.certification-card {
    background: rgba(55, 65, 81, 0.5);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(107, 114, 128, 0.5);
    transition: all 0.3s ease;
}

.certification-card:hover {
    transform: scale(1.05);
    border-color: rgba(156, 163, 175, 0.5);
}

.cert-progress {
    width: 100%;
    height: 8px;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.cert-progress-orange {
    background: linear-gradient(to right, #f59e0b, #d97706);
}

.cert-progress-red {
    background: linear-gradient(to right, #ef4444, #dc2626);
}

.cert-progress-green {
    background: linear-gradient(to right, #10b981, #059669);
}

.cert-progress-blue {
    background: linear-gradient(to right, #3b82f6, #1e40af);
}

.certification-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.cert-status {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.cert-status-progress {
    background: rgba(251, 191, 36, 0.2);
    color: #fcd34d;
}

.cert-status-planned {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
}

/* Experience Section */
.experience-section {
    position: relative;
    padding: 5rem 0;
}

.experience-section .section-title {
    background: linear-gradient(to right, #14b8a6, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.experience-timeline {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #3b82f6, #8b5cf6, #14b8a6);
    border-radius: 9999px;
}

.experience-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.experience-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.experience-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.experience-content {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(16px);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(75, 85, 99, 0.5);
    flex: 1;
    transition: all 0.5s ease;
}

.experience-content:hover {
    transform: scale(1.02);
    border-color: rgba(107, 114, 128, 0.5);
}

.experience-header {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.experience-info h3 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.company-name {
    font-size: 1.25rem;
    color: #60a5fa;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.company-desc {
    color: #9ca3af;
}

.experience-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #9ca3af;
    background: rgba(55, 65, 81, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    align-self: flex-start;
}

.responsibilities-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.responsibilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.responsibility-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(55, 65, 81, 0.3);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.responsibility-item:hover {
    background: rgba(55, 65, 81, 0.5);
}

.responsibility-item i {
    color: #fbbf24;
    margin-top: 2px;
    flex-shrink: 0;
}

.responsibility-item span {
    color: #d1d5db;
    font-size: 0.875rem;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.stat-card {
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid;
}

.stat-card-blue {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.stat-card-green {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.3);
}

.stat-card-purple {
    background: rgba(147, 51, 234, 0.2);
    border-color: rgba(147, 51, 234, 0.3);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.stat-card-blue .stat-value {
    color: #60a5fa;
}

.stat-card-green .stat-value {
    color: #34d399;
}

.stat-card-purple .stat-value {
    color: #a78bfa;
}

.stat-label {
    font-size: 0.875rem;
    color: #d1d5db;
}

/* Projects Section */
.projects-section {
    position: relative;
    padding: 5rem 0;
}

.projects-section .section-title {
    background: linear-gradient(to right, #22c55e, #14b8a6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(16px);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(75, 85, 99, 0.5);
    transition: all 0.5s ease;
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.2), rgba(17, 24, 39, 0.2));
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.project-card:hover {
    transform: scale(1.02);
    border-color: rgba(107, 114, 128, 0.5);
}

.project-card:hover::before {
    opacity: 1;
}

.project-card > * {
    position: relative;
    z-index: 1;
}

.project-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1rem;
}

.project-description {
    color: #d1d5db;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.project-technologies h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    border-radius: 9999px;
    font-size: 0.875rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.project-highlights h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.project-highlights ul {
    list-style: none;
    padding: 0;
}

.project-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.project-highlights i {
    color: #22c55e;
}

.project-highlights span {
    color: #d1d5db;
    font-size: 0.875rem;
}

/* Services Section */
.services-section {
    position: relative;
    padding: 5rem 0;
}

.services-section .section-title {
    background: linear-gradient(to right, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(16px);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(75, 85, 99, 0.5);
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.2), rgba(17, 24, 39, 0.2));
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover {
    transform: scale(1.02);
    border-color: rgba(107, 114, 128, 0.5);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-description {
    color: #d1d5db;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.service-features i {
    color: #22c55e;
}

.service-features span {
    color: #d1d5db;
    font-size: 0.875rem;
}

/* Education Section */
.education-section {
    position: relative;
    padding: 5rem 0;
}

.education-section .section-title {
    background: linear-gradient(to right, #fb923c, #f472b6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.education-timeline {
    max-width: 80rem;
    margin: 0 auto;
}

.education-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(16px);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(75, 85, 99, 0.5);
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
}

.education-item:hover {
    transform: scale(1.02);
    border-color: rgba(107, 114, 128, 0.5);
}

.education-year {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: bold;
    font-size: 1.25rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.education-year-blue {
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
}

.education-year-green {
    background: linear-gradient(to right, #22c55e, #14b8a6);
}

.education-year-orange {
    background: linear-gradient(to right, #fb923c, #ef4444);
}

.education-year-pink {
    background: linear-gradient(to right, #f472b6, #ec4899);
}

.education-year i {
    font-size: 2rem;
}

.education-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.institution {
    color: #9ca3af;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.education-details {
    color: #6b7280;
    font-size: 0.875rem;
}

.education-date {
    font-size: 1.875rem;
    font-weight: bold;
    color: #ffffff;
    text-align: right;
}

@media (min-width: 768px) {
    .education-item {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .education-item > div:first-child {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        flex: 1;
    }
}

/* Contact Section */
.contact-section {
    position: relative;
    padding: 5rem 0;
}

.contact-section .section-title {
    background: linear-gradient(to right, #22c55e, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-info-card,
.personal-info-card {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(16px);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(75, 85, 99, 0.5);
    transition: all 0.5s ease;
}

.contact-info-card:hover,
.personal-info-card:hover {
    border-color: rgba(107, 114, 128, 0.5);
}

.contact-info-card h3,
.personal-info-card h3 {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(55, 65, 81, 0.3);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(55, 65, 81, 0.5);
}

.contact-info-item i {
    font-size: 1.5rem;
    width: 24px;
    text-align: center;
}

.contact-info-item:nth-child(1) i { color: #60a5fa; }
.contact-info-item:nth-child(2) i { color: #a78bfa; }
.contact-info-item:nth-child(3) i { color: #14b8a6; }
.contact-info-item:nth-child(4) i { color: #22c55e; }

.contact-info-content {
    text-align: left;
}

.contact-info-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
}

.contact-info-value {
    color: #d1d5db;
}

.language-skills {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.language-item {
    padding: 1rem;
    background: rgba(55, 65, 81, 0.3);
    border-radius: 1rem;
}

.language-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.language-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
}

.language-level {
    font-size: 0.875rem;
    color: #9ca3af;
}

.language-progress {
    width: 100%;
    height: 12px;
    background: #374151;
    border-radius: 9999px;
    overflow: hidden;
}

.language-bar {
    height: 100%;
    border-radius: 9999px;
    animation: pulse 2s infinite;
}

.language-bar-80 {
    width: 80%;
    background: linear-gradient(to right, #60a5fa, #a78bfa);
}

.language-bar-100 {
    width: 100%;
    background: linear-gradient(to right, #22c55e, #14b8a6);
}

.personal-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.personal-detail-item {
    padding: 0.75rem;
    background: rgba(55, 65, 81, 0.3);
    border-radius: 0.75rem;
    text-align: center;
}

.personal-detail-label {
    font-size: 0.875rem;
    color: #9ca3af;
}

.personal-detail-value {
    color: #ffffff;
    font-weight: 600;
}

.personal-detail-available {
    color: #22c55e;
}

.contact-cta {
    background: linear-gradient(to right, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
    backdrop-filter: blur(16px);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(75, 85, 99, 0.5);
    text-align: center;
    display: inline-block;
    width: 100%;
    max-width: none;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-description {
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.cta-button {
    position: relative;
    overflow: hidden;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-weight: bold;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button > * {
    position: relative;
    z-index: 1;
}

.cta-button-blue {
    background: linear-gradient(to right, #2563eb, #1d4ed8);
}

.cta-button-blue::before {
    background: linear-gradient(to right, #60a5fa, #3b82f6);
}

.cta-button-purple {
    background: linear-gradient(to right, #9333ea, #7c3aed);
}

.cta-button-purple::before {
    background: linear-gradient(to right, #a78bfa, #8b5cf6);
}

.cta-button-teal {
    background: linear-gradient(to right, #0d9488, #0f766e);
}

.cta-button-teal::before {
    background: linear-gradient(to right, #5eead4, #2dd4bf);
}

/* Footer */
.footer {
    position: relative;
    padding: 3rem 1rem;
    border-top: 1px solid #374151;
}

.footer-container {
    max-width: 1152px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-subtitle {
    color: #9ca3af;
    font-size: 1.125rem;
}

.footer-description {
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
}

.footer-copyright {
    color: #6b7280;
}

.footer-tagline {
    color: #4b5563;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translateY(0); }
    40%, 43% { transform: translateY(-10px); }
    70% { transform: translateY(-5px); }
    90% { transform: translateY(-2px); }
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-card {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .responsibilities-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-stats {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .section-container {
        padding: 3rem 1rem;
    }
    
    .hero-section {
        padding: 3rem 1rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .personal-details {
        grid-template-columns: 1fr;
    }
    
    .experience-item {
        flex-direction: column;
        text-align: center;
    }
    
    .experience-header {
        text-align: center;
    }
    
    .education-item {
        flex-direction: column;
        text-align: center;
    }
    
    .education-date {
        text-align: center;
    }
}