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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 100%);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(26, 26, 58, 0.5);
}

::-webkit-scrollbar-thumb {
    background: #64ffda;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4ecdc4;
}

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

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

nav.scrolled {
    background: rgba(15, 15, 35, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom-color: rgba(100, 255, 218, 0.3);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #64ffda;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
}

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

.nav-links a {
    color: #ccd6f6;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: #64ffda;
    text-shadow: 0 0 5px rgba(100, 255, 218, 0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #64ffda, #4ecdc4);
    transition: width 0.3s ease;
}

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

/* CV Download Button */
.nav-cta {
    display: flex;
    align-items: center;
}

.cv-download-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #64ffda, #4ecdc4);
    color: #0f0f23;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

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

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

.cv-download-btn:hover {
    background: linear-gradient(135deg, #4ecdc4, #64ffda);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.4);
    border-color: rgba(100, 255, 218, 0.3);
}

.cv-download-btn:active {
    transform: translateY(0px);
    box-shadow: 0 4px 15px rgba(100, 255, 218, 0.3);
}

.cv-download-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cv-download-btn:hover svg {
    transform: translateY(2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 0 0 300px;
}

.profile-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #64ffda;
    box-shadow: 0 0 30px rgba(100, 255, 218, 0.3);
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
}

.profile-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 0 50px rgba(100, 255, 218, 0.5);
    border-color: #4ecdc4;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(100, 255, 218, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(100, 255, 218, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 60% 80%, rgba(100, 255, 218, 0.08) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    color: #ccd6f6;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 0 20px rgba(204, 214, 246, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.2rem, 4vw, 2rem);
    color: #64ffda;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    color: #8892b0;
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.8;
}

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

.btn {
    padding: 12px 30px;
    border: 2px solid #64ffda;
    background: transparent;
    color: #64ffda;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

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

.btn:hover {
    background: #64ffda;
    color: #0f0f23;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(100, 255, 218, 0.3);
}

.btn-primary {
    background: #64ffda;
    color: #0f0f23;
}

.btn-primary:hover {
    background: transparent;
    color: #64ffda;
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    color: #ccd6f6;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    text-shadow: 0 0 10px rgba(204, 214, 246, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #64ffda, #4ecdc4);
    border-radius: 2px;
}

/* About Section */
.about {
    background: rgba(26, 26, 58, 0.5);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(100, 255, 218, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.about-text {
    color: #8892b0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.about-text p:hover {
    transform: translateX(5px);
    color: #9ca3af;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    background: rgba(100, 255, 218, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(100, 255, 218, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.stat-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(100, 255, 218, 0.5);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #64ffda;
    display: block;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.5);
}

.stat-label {
    color: #ccd6f6;
    font-weight: 600;
}

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

.skill-category {
    background: rgba(26, 26, 58, 0.7);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-category:hover::before {
    opacity: 1;
}

.skill-category:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.5);
    box-shadow: 0 15px 35px rgba(100, 255, 218, 0.15);
}

.skill-category h3 {
    color: #64ffda;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 0 5px rgba(100, 255, 218, 0.3);
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.skill-tag {
    background: rgba(100, 255, 218, 0.1);
    color: #ccd6f6;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(100, 255, 218, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.skill-tag:hover {
    background: rgba(100, 255, 218, 0.2);
    transform: scale(1.05) translateY(-2px);
    color: #64ffda;
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
}

/* Enhanced Projects Section */
.projects {
    background: rgba(26, 26, 58, 0.5);
    position: relative;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(100, 255, 218, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.projects-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.project-arrow {
    background: rgba(100, 255, 218, 0.1);
    border: 2px solid rgba(100, 255, 218, 0.3);
    color: #64ffda;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
    flex-shrink: 0;
}

.project-arrow:hover {
    background: rgba(100, 255, 218, 0.2);
    border-color: #64ffda;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.4);
}

.project-arrow:active {
    transform: scale(0.95);
}

.project-arrow svg {
    width: 24px;
    height: 24px;
}

.projects-container {
    overflow-x: auto;
    padding: 20px 0;
    scroll-behavior: smooth;
    position: relative;
    flex: 1;
    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.projects-container::-webkit-scrollbar {
    display: none; /* WebKit */
}

.projects-scroll {
    display: flex;
    gap: 2rem;
    padding: 0 20px;
    min-width: max-content;
    align-items: center;
}

/* Enhanced Project Cards */
.project-card {
    background: linear-gradient(145deg, rgba(26, 26, 58, 0.9), rgba(15, 15, 35, 0.9));
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(100, 255, 218, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex: 0 0 380px;
    height: 420px;
    position: relative;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.1) 0%, transparent 50%, rgba(78, 205, 196, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.project-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(100, 255, 218, 0.6);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(100, 255, 218, 0.3),
        inset 0 1px 0 rgba(100, 255, 218, 0.2);
}

.project-header {
    padding: 2rem 2rem 1rem 2rem;
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-title {
    color: #ccd6f6;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    transition: color 0.3s ease;
    text-shadow: 0 0 5px rgba(204, 214, 246, 0.3);
}

.project-card:hover .project-title {
    color: #64ffda;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.5);
}

.project-description {
    color: #8892b0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.project-card:hover .project-description {
    color: #9ca3af;
}

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

.tech-tag {
    background: rgba(100, 255, 218, 0.15);
    color: #64ffda;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(100, 255, 218, 0.3);
    transition: all 0.3s ease;
}

.project-card:hover .tech-tag {
    background: rgba(100, 255, 218, 0.25);
    color: #4ecdc4;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(100, 255, 218, 0.3);
}

.project-links {
    display: flex;
    gap: 1rem;
    padding: 0 2rem 2rem 2rem;
    position: relative;
    z-index: 2;
}

.project-link {
    color: #64ffda;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(100, 255, 218, 0.3);
    background: rgba(100, 255, 218, 0.1);
}

.project-link:hover {
    color: #4ecdc4;
    background: rgba(100, 255, 218, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
}

/* Project Navigation Buttons - Remove old styles */
.projects-nav {
    display: none; /* Hide old navigation */
}

.nav-btn {
    display: none; /* Hide old buttons */
}

/* Contact Section */
.contact-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-text {
    color: #8892b0;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    line-height: 1.8;
}

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

.contact-card {
    background: linear-gradient(145deg, rgba(26, 26, 58, 0.8), rgba(15, 15, 35, 0.8));
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(100, 255, 218, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.contact-card:hover {
    transform: translateY(-10px);
    border-color: rgba(100, 255, 218, 0.5);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.15);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #64ffda;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: rgba(100, 255, 218, 0.2);
    transform: scale(1.1);
}

.contact-card h3 {
    color: #ccd6f6;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-card p {
    color: #8892b0;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(100, 255, 218, 0.1);
    color: #64ffda;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid rgba(100, 255, 218, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
}

.contact-btn:hover {
    background: rgba(100, 255, 218, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.3);
}

/* Quick Contact Form */
.quick-contact {
    background: linear-gradient(145deg, rgba(26, 26, 58, 0.8), rgba(15, 15, 35, 0.8));
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.quick-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(100, 255, 218, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.quick-contact h3 {
    color: #64ffda;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
}

.quick-contact-form {
    position: relative;
    z-index: 2;
}

.quick-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.quick-contact-form input,
.quick-contact-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(15, 15, 35, 0.8);
    border: 1px solid rgba(100, 255, 218, 0.3);
    border-radius: 12px;
    color: #ccd6f6;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.quick-contact-form input:focus,
.quick-contact-form textarea:focus {
    border-color: #64ffda;
    background: rgba(15, 15, 35, 0.9);
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.3);
    transform: scale(1.02);
}

.quick-contact-form textarea {
    min-height: 120px;
    resize: vertical;
    margin-bottom: 2rem;
    grid-column: 1 / -1;
}

.quick-contact-form .submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #64ffda, #4ecdc4);
    color: #0f0f23;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.quick-contact-form .submit-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;
}

.quick-contact-form .submit-btn:hover::before {
    left: 100%;
}

.quick-contact-form .submit-btn:hover {
    background: linear-gradient(135deg, #4ecdc4, #64ffda);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(100, 255, 218, 0.4);
}

/* Client Satisfaction Section */
.client-satisfaction {
    background: rgba(15, 15, 35, 0.8);
    position: relative;
    overflow: hidden;
}

.client-satisfaction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 60% 20%, rgba(100, 255, 218, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.satisfaction-metric {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(145deg, rgba(26, 26, 58, 0.6), rgba(15, 15, 35, 0.6));
    border-radius: 16px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.satisfaction-metric:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.5);
    box-shadow: 0 15px 35px rgba(100, 255, 218, 0.15);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #64ffda;
    transition: all 0.3s ease;
}

.satisfaction-metric:hover .metric-icon {
    background: rgba(100, 255, 218, 0.2);
    transform: scale(1.1);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #64ffda;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
}

.metric-label {
    color: #ccd6f6;
    font-weight: 600;
    font-size: 1rem;
}

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

.testimonial-card {
    background: linear-gradient(145deg, rgba(26, 26, 58, 0.8), rgba(15, 15, 35, 0.8));
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(100, 255, 218, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.5);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.15);
}

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

.quote-icon {
    color: #64ffda;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.testimonial-text {
    color: #8892b0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

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

.author-info h4 {
    color: #ccd6f6;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.author-info p {
    color: #64ffda;
    font-size: 0.9rem;
    font-weight: 500;
}

.rating {
    font-size: 1.2rem;
}

.satisfaction-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(145deg, rgba(26, 26, 58, 0.8), rgba(15, 15, 35, 0.8));
    border-radius: 16px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    backdrop-filter: blur(10px);
}

.satisfaction-cta h3 {
    color: #ccd6f6;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.satisfaction-cta p {
    color: #8892b0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Footer */
footer {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95), rgba(26, 26, 58, 0.95));
    padding: 2rem 0;
    text-align: center;
    color: #8892b0;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-image {
        flex: 0 0 250px;
    }

    .profile-image {
        width: 250px;
        height: 250px;
    }

    .projects-wrapper {
        gap: 1rem;
    }

    .project-arrow {
        width: 40px;
        height: 40px;
    }

    .project-arrow svg {
        width: 20px;
        height: 20px;
    }

    .projects-scroll {
        padding: 0 10px;
    }

    .project-card {
        flex: 0 0 320px;
        height: 400px;
    }

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

    .quick-contact {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-content {
        justify-content: space-between;
    }

    .cv-download-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .cv-download-btn svg {
        width: 18px;
        height: 18px;
    }

    /* Hero Section Mobile Fix */
    .hero {
        min-height: 100vh;
        padding: 100px 0 50px 0;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        flex: 0 0 200px;
        order: 1;
    }

    .profile-image {
        width: 200px;
        height: 200px;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem) !important;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 5vw, 1.5rem) !important;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    /* Client Satisfaction Mobile */
    .satisfaction-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .satisfaction-metric {
        padding: 1.5rem;
    }

    .metric-number {
        font-size: 2rem;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .satisfaction-cta {
        padding: 2rem 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .projects-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .project-arrow {
        position: relative;
        align-self: center;
    }

    .project-arrow-left {
        order: 2;
    }

    .projects-container {
        order: 1;
    }

    .project-arrow-right {
        order: 3;
    }

    .project-card {
        flex: 0 0 280px;
        height: 380px;
    }

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

    .quick-contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .quick-contact {
        padding: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    /* Hero Section - Extra Small Screens */
    .hero {
        min-height: 100vh;
        padding: 80px 0 30px 0;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
        margin-bottom: 0.8rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.2rem) !important;
        margin-bottom: 0.8rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .hero-image {
        flex: 0 0 150px;
    }

    .profile-image {
        width: 150px;
        height: 150px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .project-card {
        flex: 0 0 260px;
        height: 360px;
    }

    .projects-scroll {
        gap: 1rem;
    }

    .projects-wrapper {
        flex-direction: row;
        gap: 0.5rem;
    }

    .project-arrow {
        width: 35px;
        height: 35px;
        position: absolute;
        z-index: 20;
    }

    .project-arrow-left {
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        order: initial;
    }

    .project-arrow-right {
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        order: initial;
    }

    .projects-container {
        order: initial;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .quick-contact {
        padding: 1rem;
    }

    /* Mobile CV Button */
    .cv-download-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .cv-download-btn span {
        display: none;
    }

    .cv-download-btn svg {
        width: 16px;
        height: 16px;
    }

    .logo {
        font-size: 1.2rem;
    }

    /* Container padding for small screens */
    .container {
        padding: 0 15px;
    }

    /* Button improvements for mobile */
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Client Satisfaction Extra Small Screens */
    .satisfaction-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .satisfaction-metric {
        padding: 1rem;
    }

    .metric-icon {
        width: 50px;
        height: 50px;
    }

    .metric-number {
        font-size: 1.8rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .satisfaction-cta {
        padding: 1.5rem 1rem;
    }

    .satisfaction-cta h3 {
        font-size: 1.5rem;
    }
}

/* Enhanced Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

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

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* Additional smooth animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(100, 255, 218, 0.3); }
    50% { box-shadow: 0 0 20px rgba(100, 255, 218, 0.6); }
}

.pulse { animation: pulse 2s ease-in-out infinite; }
.glow { animation: glow 3s ease-in-out infinite; }

/* Loading states */
.loading {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loaded {
    opacity: 1;
}
