/* 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: #1e293b;
    background-color: #000000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333333;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero-section {
    padding: 6rem 0;
    background: #000000;
    color: #ffffff;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.25rem;
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}

.btn .icon {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.profile-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-decorations {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    border: 2px solid transparent;
    background-clip: padding-box;
    animation: advancedFloat 8s ease-in-out infinite;
    filter: blur(0.5px);
}

.decoration-circle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #06b6d4, #3b82f6);
    border-radius: 50%;
    z-index: -1;
    animation: borderShimmer 4s linear infinite;
}

.circle-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 5%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.circle-2 {
    width: 80px;
    height: 80px;
    bottom: 15%;
    left: 8%;
    animation-delay: 3s;
    animation-duration: 12s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 55%;
    right: 12%;
    animation-delay: 6s;
    animation-duration: 14s;
}

.circle-4 {
    width: 90px;
    height: 90px;
    top: 25%;
    left: 5%;
    animation-delay: 2s;
    animation-duration: 9s;
}

.circle-5 {
    width: 110px;
    height: 110px;
    bottom: 35%;
    right: 8%;
    animation-delay: 5s;
    animation-duration: 11s;
}

.decoration-dot {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, #3b82f6, #8b5cf6, transparent);
    animation: advancedPulse 4s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

.decoration-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 3s ease-out infinite;
}

.dot-1 {
    width: 16px;
    height: 16px;
    top: 12%;
    left: 18%;
    animation-delay: 0.5s;
}

.dot-2 {
    width: 20px;
    height: 20px;
    bottom: 18%;
    right: 22%;
    animation-delay: 2.5s;
}

.dot-3 {
    width: 14px;
    height: 14px;
    top: 68%;
    left: 22%;
    animation-delay: 4.5s;
}

.dot-4 {
    width: 18px;
    height: 18px;
    top: 35%;
    right: 15%;
    animation-delay: 1.5s;
}

.dot-5 {
    width: 12px;
    height: 12px;
    bottom: 45%;
    left: 12%;
    animation-delay: 3.5s;
}

.dot-6 {
    width: 22px;
    height: 22px;
    top: 80%;
    right: 35%;
    animation-delay: 5.5s;
}

@keyframes advancedFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-30px) translateX(15px) rotate(90deg) scale(1.1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-15px) translateX(-20px) rotate(180deg) scale(0.9);
        opacity: 0.8;
    }
    75% {
        transform: translateY(20px) translateX(10px) rotate(270deg) scale(1.05);
        opacity: 0.6;
    }
}

@keyframes borderShimmer {
    0% {
        background: linear-gradient(45deg, #3b82f6, #8b5cf6, #06b6d4, #3b82f6);
    }
    25% {
        background: linear-gradient(45deg, #8b5cf6, #06b6d4, #3b82f6, #8b5cf6);
    }
    50% {
        background: linear-gradient(45deg, #06b6d4, #3b82f6, #8b5cf6, #06b6d4);
    }
    75% {
        background: linear-gradient(45deg, #3b82f6, #8b5cf6, #06b6d4, #3b82f6);
    }
    100% {
        background: linear-gradient(45deg, #8b5cf6, #06b6d4, #3b82f6, #8b5cf6);
    }
}

@keyframes advancedPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
    }
    25% {
        opacity: 0.8;
        transform: scale(1.3) rotate(90deg);
        box-shadow: 0 0 30px rgba(139, 92, 246, 0.6);
    }
    50% {
        opacity: 1;
        transform: scale(1.5) rotate(180deg);
        box-shadow: 0 0 40px rgba(6, 182, 212, 0.8);
    }
    75% {
        opacity: 0.7;
        transform: scale(1.2) rotate(270deg);
        box-shadow: 0 0 35px rgba(59, 130, 246, 0.7);
    }
}

@keyframes ripple {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(0);
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(2);
    }
}

.profile-image {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    display: block;
    margin: 0 auto;
    background: #0a0a0a;
    padding: 0;
    border: 1px solid #333333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}





.profile-image img,
.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 50%;
    transition: all 0.3s ease;
    filter: contrast(1.1) brightness(0.95);
}

.profile-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.8);
    border-color: #555555;
}

.profile-image img,
.profile-image .profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.profile-image:hover img,
.profile-image:hover .profile-photo {
    filter: contrast(1.2) brightness(1.05);
}

@keyframes profileAdvancedGlow {
    0% {
        box-shadow: 
            0 25px 80px rgba(59, 130, 246, 0.5),
            0 15px 40px rgba(139, 92, 246, 0.3),
            0 5px 20px rgba(6, 182, 212, 0.4),
            inset 0 2px 4px rgba(255, 255, 255, 0.3),
            inset 0 -2px 4px rgba(0, 0, 0, 0.2);
        filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.6));
    }
    100% {
        box-shadow: 
            0 35px 100px rgba(59, 130, 246, 0.7),
            0 20px 50px rgba(139, 92, 246, 0.5),
            0 8px 25px rgba(6, 182, 212, 0.6),
            inset 0 3px 6px rgba(255, 255, 255, 0.4),
            inset 0 -3px 6px rgba(0, 0, 0, 0.3);
        filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.8));
    }
}

@keyframes profileRotate {
    0% {
        background: conic-gradient(from 0deg, #3b82f6, #8b5cf6, #06b6d4, #10b981, #f59e0b, #ef4444, #3b82f6);
    }
    100% {
        background: conic-gradient(from 360deg, #3b82f6, #8b5cf6, #06b6d4, #10b981, #f59e0b, #ef4444, #3b82f6);
    }
}

@keyframes gentleGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@keyframes subtleShimmer {
    0% {
        opacity: 0.8;
        transform: rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: rotate(180deg);
    }
    100% {
        opacity: 0.8;
        transform: rotate(360deg);
    }
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes ambientGlow {
    0% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes cosmicRotation {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.particle-trail {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.8), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.particle-trail::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    animation: particleGlow 2s ease-in-out infinite;
}

.particle-trail.trail-1 {
    top: 20%;
    left: 15%;
    animation: particleOrbit1 8s linear infinite, particleFade 3s ease-in-out infinite;
}

.particle-trail.trail-2 {
    top: 70%;
    right: 20%;
    animation: particleOrbit2 10s linear infinite reverse, particleFade 2.5s ease-in-out infinite;
}

.particle-trail.trail-3 {
    bottom: 25%;
    left: 25%;
    animation: particleOrbit3 12s linear infinite, particleFade 4s ease-in-out infinite;
}

.particle-trail.trail-4 {
    top: 30%;
    right: 15%;
    animation: particleOrbit4 9s linear infinite reverse, particleFade 3.5s ease-in-out infinite;
}

.energy-ring {
    position: absolute;
    border: 2px solid transparent;
    border-radius: 50%;
    pointer-events: none;
}

.energy-ring.ring-1 {
    width: 450px;
    height: 450px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-image: conic-gradient(from 0deg, #3b82f6, transparent, #8b5cf6, transparent, #06b6d4, transparent) 1;
    animation: energyPulse1 6s ease-in-out infinite, energyRotate 15s linear infinite;
}

.energy-ring.ring-2 {
    width: 520px;
    height: 520px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-image: conic-gradient(from 120deg, #8b5cf6, transparent, #06b6d4, transparent, #3b82f6, transparent) 1;
    animation: energyPulse2 8s ease-in-out infinite, energyRotate 20s linear infinite reverse;
}

.energy-ring.ring-3 {
    width: 580px;
    height: 580px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-image: conic-gradient(from 240deg, #06b6d4, transparent, #3b82f6, transparent, #8b5cf6, transparent) 1;
    animation: energyPulse3 10s ease-in-out infinite, energyRotate 25s linear infinite;
}



@keyframes particleGlow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
}

@keyframes particleFade {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes particleOrbit1 {
    0% {
        transform: rotate(0deg) translateX(150px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(150px) rotate(-360deg);
    }
}

@keyframes particleOrbit2 {
    0% {
        transform: rotate(0deg) translateX(180px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(180px) rotate(-360deg);
    }
}

@keyframes particleOrbit3 {
    0% {
        transform: rotate(0deg) translateX(200px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(200px) rotate(-360deg);
    }
}

@keyframes particleOrbit4 {
    0% {
        transform: rotate(0deg) translateX(170px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(170px) rotate(-360deg);
    }
}

@keyframes energyPulse1 {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes energyPulse2 {
    0%, 100% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.03);
    }
}

@keyframes energyPulse3 {
    0%, 100% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.02);
    }
}

@keyframes energyRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: #000000;
    color: #ffffff;
}

.about-section .section-title {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #333333;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    background: #2a2a2a;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffffff, #f3f4f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.card-icon .icon {
    width: 32px;
    height: 32px;
    color: #1f2937;
    stroke-width: 2;
}

.about-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.about-card p {
    color: #e5e7eb;
    line-height: 1.7;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Skills Section */
.skills-section {
    padding: 6rem 0;
    background: #000000;
    color: #ffffff;
}

.skills-section .section-title {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

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

.skill-category {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #333333;
    color: #ffffff;
}

.skill-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    background: #2a2a2a;
}

.skill-category h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #2563eb;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-tag {
    background: #333333;
    color: #e2e8f0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #4a5568;
}

.skill-tag:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-1px);
    border-color: #2563eb;
}

/* Section Styles */
.section {
    padding: 4rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 212, 255, 0.3);
}

/* Education Section */
#education {
    background: #000000;
    color: #ffffff;
}

#education .section-title {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Professional Experience Section */
.experience-section {
    padding: 5rem 0;
    background: #000000;
    color: #ffffff;
}

.experience-section .section-title {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.experience-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.experience-card {
    display: flex;
    margin-bottom: 3rem;
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
    background: #2a2a2a;
}

.experience-date {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    text-align: center;
}

.date-range {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.experience-content {
    flex: 1;
    padding: 2rem;
}

.experience-header {
    margin-bottom: 1.5rem;
}

.job-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.company-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e2e8f0;
    font-size: 1rem;
}

.company {
    font-weight: 600;
    color: #60a5fa;
}

.location {
    color: #cbd5e1;
}

.experience-description {
    margin-top: 1rem;
}

.responsibilities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.responsibilities-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #e2e8f0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.responsibilities-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #60a5fa;
    font-weight: bold;
    font-size: 1rem;
}

/* Education & Certifications Section */
.education-certifications {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.column-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

#education .column-header .icon {
    width: 24px;
    height: 24px;
    color: #60a5fa;
    stroke-width: 2;
}

#education .column-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.column-header .icon {
    width: 24px;
    height: 24px;
    color: #2563eb;
    stroke-width: 2;
}

.column-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
}

#education .education-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #34d399;
    border: 1px solid #333333;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#education .education-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
    background: #2a2a2a;
}

#education .education-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

#education .institution {
    color: #34d399;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

#education .duration {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

#education .description {
    color: #e2e8f0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.education-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.education-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.institution {
    color: #10b981;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.duration {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.description {
    color: #475569;
    line-height: 1.6;
}

.cert-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#education .cert-item {
    background: #1a1a1a;
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 4px solid #fbbf24;
    border: 1px solid #333333;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#education .cert-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
    background: #2a2a2a;
}

#education .cert-name {
    color: #ffffff;
    font-weight: 500;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cert-item {
    background: white;
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.cert-name {
    color: #1e293b;
    font-weight: 500;
    line-height: 1.5;
}

/* Enhanced Info Section */
.simple-info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background: #000000;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #333333;
    max-width: 900px;
    position: relative;
    overflow: hidden;
}

.simple-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #040404, #010101, #020202);
}

/* Enhanced Languages */
.simple-languages {
    text-align: left;
}

.simple-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 2rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #030404;
    display: inline-block;
    position: relative;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.simple-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 30%;
    height: 3px;
    background: #8b5cf6;
    border-radius: 2px;
}

.simple-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.simple-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 60px;
}

.simple-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #3b82f6, #8b5cf6);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.simple-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
    border-color: #3b82f6;
}

.simple-item:hover::before {
    transform: scaleY(1);
}

.item-name {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.2rem;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.item-level {
    font-size: 1rem;
    color: #1e40af;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    background: rgba(30, 64, 175, 0.1);
    border-radius: 25px;
    border: 2px solid rgba(30, 64, 175, 0.2);
    min-width: 80px;
    text-align: center;
}

/* Enhanced Interests */
.simple-interests {
    text-align: left;
}

.simple-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    line-height: 1.5;
}

.simple-tag {
    display: inline-flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #1a1a1a;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 30px;
    border: 2px solid #333333;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: -0.025em;
    min-height: 48px;
    line-height: 1.3;
}

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

.simple-tag:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    border-color: #3b82f6;
}

.simple-tag:hover::before {
    left: 100%;
}

/* Featured Projects Section */
#projects {
    background: #000000;
    color: #ffffff;
}

#projects .section-title {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.featured-projects {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

#projects .featured-project {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333333;
}

#projects .featured-project:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
    background: #2a2a2a;
}

.featured-project {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid #e5e7eb;
}

.featured-project:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

#projects .featured-project .project-image {
    height: 250px;
    overflow: hidden;
    background: #2a2a2a;
    border-bottom: 1px solid #333333;
}

.featured-project .project-image {
    height: 250px;
    overflow: hidden;
    background: white;
}

.featured-project .project-image svg {
    width: 100%;
    height: 100%;
    display: block;
}

.featured-project .project-content {
    padding: 2rem;
}

#projects .featured-project .project-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

#projects .featured-project .project-content p {
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.featured-project .project-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-project .project-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

#projects .project-tech .tech {
    background: #333333;
    color: #e2e8f0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #4a5568;
    transition: all 0.3s ease;
}

#projects .project-tech .tech:hover {
    background: #4a5568;
    border-color: #60a5fa;
    color: #ffffff;
}

.project-tech .tech {
    background: white;
    color: #64748b;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #e5e7eb;
}

.project-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: #2563eb;
    color: white;
    border: 1px solid #2563eb;
}

.btn-primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
}

.btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 1px solid #2563eb;
}

.btn-secondary:hover {
    background: #2563eb;
    color: white;
}

/* Project Showcase */
.project-showcase {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    padding: 2rem;
}

.showcase-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.showcase-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.showcase-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.tech {
    background: white;
    color: #0369a1;
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-actions {
    display: flex;
    gap: 1rem;
}

.btn-view, .btn-demo {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-view {
    background: #2563eb;
    color: white;
}

.btn-view:hover {
    background: #1d4ed8;
}

.btn-demo {
    background: transparent;
    color: #2563eb;
    border: 1px solid #2563eb;
}

.btn-demo:hover {
    background: #2563eb;
    color: white;
}

/* Additional Projects */
.additional-projects {
    display: grid;
    gap: 2rem;
}

.project-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #8b5cf6;
}

.project-header {
    margin-bottom: 1rem;
}

.project-item .project-category {
    position: static;
    background: #8b5cf6;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}

.project-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 1rem 0 0.5rem 0;
}

.project-item p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.link:hover {
    color: #1d4ed8;
}
/* Services I Offer Section */
.services-offer-section {
    padding: 80px 0;
    background: #000000;
    color: #ffffff;
}

.services-offer-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.services-offer-section .section-subtitle {
    text-align: center;
    color: #e2e8f0;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-offer-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #333333;
}

.service-offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.1);
    background: #2a2a2a;
}

.service-offer-image {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.service-svg {
    width: 200px;
    height: 120px;
    border-radius: 8px;
}

.service-offer-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.service-offer-card p {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.check-mark {
    color: #28a745;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1rem;
}



/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #000000;
    color: #ffffff;
}

.testimonials-section .section-title {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    text-align: center;
    color: #e2e8f0;
    font-size: 18px;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #333333;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
    border-color: #3b82f6;
    background: #2a2a2a;
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #e2e8f0;
    font-style: italic;
    margin: 0;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 60px;
    color: #3b82f6;
    position: absolute;
    top: -20px;
    left: -15px;
    font-family: Georgia, serif;
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #3b82f6;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 5px 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.author-title {
    font-size: 14px;
    color: #cbd5e1;
    margin: 0;
    font-weight: 500;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: #000000;
    color: #ffffff;
}

.blog-section .section-title {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #333333;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
    background: #2a2a2a;
}

.blog-card.featured {
    grid-row: span 2;
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-card.featured .blog-image {
    height: 300px;
}

.blog-card:not(.featured) .blog-image {
    height: 200px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(59, 130, 246, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #cbd5e1;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-date::before {
    content: "📅";
    font-size: 12px;
}

.blog-read-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-read-time::before {
    content: "⏱️";
    font-size: 12px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.blog-card.featured .blog-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.blog-excerpt {
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card.featured .blog-excerpt {
    font-size: 16px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.blog-read-more:hover {
    color: #1d4ed8;
    gap: 12px;
}

.blog-read-more::after {
    content: "→";
    transition: transform 0.3s ease;
}

.blog-read-more:hover::after {
    transform: translateX(3px);
}

/* Contact Section */
.contact-section {
    background: #000000;
    padding: 5rem 0;
    color: #ffffff;
}

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

.contact-header .section-title {
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-header .section-subtitle {
    color: #e2e8f0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Information Cards */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-cards {
    display: grid;
    gap: 1.5rem;
}

.contact-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #333333;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
    background: #2a2a2a;
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: #2563eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
    color: white;
    stroke-width: 2;
}

.contact-card-content h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-card-content p {
    color: #cbd5e1;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.contact-note {
    color: #64748b;
    font-size: 0.85rem;
    font-style: italic;
}

/* Quick Actions Section */
.quick-actions-section {
    background: #000000;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
    border: 1px solid #333333;
}

.quick-actions-section h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.action-btn.primary {
    background: #2563eb;
    color: white;
    border: 2px solid #2563eb;
}

.action-btn.primary:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
}

.action-btn.secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.action-btn.secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.action-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

/* Contact Form Section */
.contact-form-section {
    background: #1a1a1a;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    border: 1px solid #333333;
}

.form-container {
    padding: 3rem;
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.form-header p {
    color: #e2e8f0;
    line-height: 1.6;
}

/* Message Alerts */
.messages {
    margin-bottom: 2rem;
}

.alert {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-weight: 500;
    border-left: 4px solid;
    animation: slideIn 0.3s ease-out;
}

.alert-success {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-left-color: #22c55e;
}

.alert-error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-left-color: #ef4444;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ffffff;
    font-size: 0.95rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 1rem;
    border: 2px solid #333333;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #2a2a2a;
    color: #ffffff;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-field select {
    cursor: pointer;
}

.form-field textarea {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
}

.form-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1rem;
}

.submit-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    background: #1d4ed8;
}

.submit-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.form-note {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin: 0;
}

/* Footer */
.footer {
    background: #000000;
    padding: 2rem 0;
    border-top: 1px solid #333333;
    text-align: center;
}

.footer p {
    color: #ffffff;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Services I Offer Section Responsive */
@media (max-width: 768px) {
    .services-offer-section {
        padding: 60px 0;
    }
    
    .services-offer-section .section-title {
        font-size: 2rem;
    }
    
    .services-offer-section .section-subtitle {
        font-size: 1rem;
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .services-offer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .service-offer-card {
        padding: 25px 20px;
    }
    
    .service-svg {
        width: 160px;
        height: 96px;
    }
    
    .service-offer-card h3 {
        font-size: 1.2rem;
    }
    
    .service-offer-card p {
        font-size: 0.95rem;
    }
    
    .service-features li {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .profile-image {
        width: 280px;
        height: 280px;
    }
    
    .about-section,
    .skills-section {
        padding: 4rem 0;
    }
    
    .about-content,
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .education-certifications {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .simple-info-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 100%;
        margin: 2rem 1rem;
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }
    
    .simple-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }
    
    .simple-item {
        padding: 1rem 1.25rem;
        border-radius: 10px;
        min-height: 56px;
    }
    
    .item-name {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    
    .item-level {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
        min-width: 70px;
    }
    
    .simple-tag {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
        border-radius: 25px;
        min-height: 44px;
        line-height: 1.3;
    }
    
    .simple-tags {
        gap: 0.75rem;
    }
    
    .featured-projects {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-project .project-content {
        padding: 1.5rem;
    }
    
    .featured-project .project-content h3 {
        font-size: 1.25rem;
    }
    
    .project-actions {
        flex-direction: column;
    }
    
    .btn-primary {
        text-align: center;
    }
    

    
    .showcase-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Contact Section Mobile */
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-header {
        margin-bottom: 3rem;
    }
    
    .contact-header .section-title {
        font-size: 2rem;
    }
    
    .contact-header .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-info-section {
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .contact-card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }
    
    .contact-card-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-card-content h4 {
        font-size: 1rem;
    }
    
    .contact-card-content p {
        font-size: 0.9rem;
    }
    
    .quick-actions-section {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .quick-actions-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .action-buttons {
        gap: 0.75rem;
    }
    
    .action-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .action-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .contact-form-section {
        border-radius: 16px;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-header {
        margin-bottom: 2rem;
    }
    
    .form-header h3 {
        font-size: 1.3rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-field input,
    .form-field select,
    .form-field textarea {
        padding: 0.875rem;
        border-radius: 10px;
    }
    
    .form-field textarea {
        min-height: 120px;
    }
    
    .submit-btn {
        padding: 1rem 2rem;
        font-size: 0.95rem;
        align-self: stretch;
        justify-content: center;
    }
    
    .submit-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .form-note {
        text-align: center;
        font-size: 0.85rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .profile-image {
        width: 240px;
        height: 240px;
    }
    
    .about-card,
    .skill-category {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    /* Experience Section */
    .experience-section {
        padding: 3rem 0;
    }

    .experience-timeline {
        max-width: 100%;
        padding: 0 1rem;
    }

    .experience-card {
        flex-direction: column;
        margin-bottom: 2rem;
    }
    
    .experience-date {
        min-width: auto;
        padding: 1.5rem;
        text-align: center;
    }
    
    .date-range {
        font-size: 0.9rem;
    }
    
    .experience-content {
        padding: 1.5rem;
    }
    
    .job-title {
        font-size: 1.25rem;
    }
    
    .company-location {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .responsibilities-list li {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }
    
    .education-item,
    .cert-item,
    .project-item {
        padding: 1.5rem;
    }
    
    .showcase-item {
        padding: 1.5rem;
    }
    
    /* Blog Section Responsive */
    .blog-section {
        padding: 50px 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .blog-card.featured {
        grid-row: span 1;
    }
    
    .blog-card.featured .blog-image {
        height: 250px;
    }
    
    .blog-card:not(.featured) .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 18px;
    }
    
    .blog-card.featured .blog-title {
        font-size: 20px;
    }
    
    .blog-excerpt {
        font-size: 14px;
    }
    
    .blog-card.featured .blog-excerpt {
        font-size: 15px;
    }
    
    /* Testimonials Section Responsive */
    .testimonials-section {
        padding: 50px 0;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .testimonial-text {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .testimonial-text::before {
        font-size: 45px;
        top: -15px;
        left: -10px;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        border-width: 2px;
    }
    
    .author-name {
        font-size: 16px;
    }
    
    .author-title {
        font-size: 13px;
    }
}