:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --dark-bg: #0f0f1e;
    --light-bg: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #b0b0c0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--light-bg) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

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

/* Animated Blobs */
.blob {
    position: fixed;
    z-index: -1;
    opacity: 0.1;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #667eea, transparent);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    top: -100px;
    left: -100px;
    animation: blob1 8s infinite;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #764ba2, transparent);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    top: 50%;
    right: -150px;
    animation: blob2 10s infinite;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #f093fb, transparent);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: -100px;
    left: 20%;
    animation: blob3 12s infinite;
}

@keyframes blob1 {
    0%, 100% {
        transform: translateX(0px) translateY(0px) scale(1);
    }
    33% {
        transform: translateX(30px) translateY(-50px) scale(1.1);
    }
    66% {
        transform: translateX(-30px) translateY(50px) scale(0.9);
    }
}

@keyframes blob2 {
    0%, 100% {
        transform: translateX(0px) translateY(0px) scale(1);
    }
    33% {
        transform: translateX(-50px) translateY(30px) scale(0.9);
    }
    66% {
        transform: translateX(50px) translateY(-30px) scale(1.1);
    }
}

@keyframes blob3 {
    0%, 100% {
        transform: translateX(0px) translateY(0px) scale(1);
    }
    33% {
        transform: translateX(40px) translateY(40px) scale(1.05);
    }
    66% {
        transform: translateX(-40px) translateY(-40px) scale(0.95);
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.6s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.nav-brand:hover {
    transform: scale(1.05);
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-name {
    font-size: 1.3rem;
    color: #667eea;
}

.brand-text {
    font-size: 0.9rem;
    color: var(--text-primary);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: width 0.3s ease;
}

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

.nav-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-icon {
    color: var(--text-secondary);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: #667eea;
    transform: scale(1.2) rotate(360deg);
}

.mobile-toggle {
    display: none;
    background: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding-top: 120px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.hero-content {
    animation: slideInLeft 0.8s ease 0.2s both;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 3s ease infinite;
}

@keyframes gradientFlow {
    0%, 100% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(360deg);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    animation: slideInLeft 0.8s ease 0.3s both;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    max-width: 500px;
    animation: slideInLeft 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: slideInLeft 0.8s ease 0.5s both;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #667eea;
    color: #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 0.8s ease 0.2s both;
}

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

.avatar {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
    animation: float 4s ease-in-out infinite;
}

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

.avatar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Features Section */
.features {
    padding: 6rem 0;
    animation: fadeInUp 0.8s ease;
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.2);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.feature-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Page Hero */
.page-hero {
    text-align: center;
    padding: 4rem 2rem;
    padding-top: 120px;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideDown 0.8s ease;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 600px;
    animation: slideDown 0.8s ease 0.1s both;
}

/* About Section */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.about-intro {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.2);
    padding: 3rem;
    border-radius: 15px;
    animation: fadeInUp 0.8s ease;
}

.about-intro h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #667eea;
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Skills Section */
.skills-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

.skill-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.2);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.skill-item:nth-child(1) { animation-delay: 0.1s; }
.skill-item:nth-child(2) { animation-delay: 0.15s; }
.skill-item:nth-child(3) { animation-delay: 0.2s; }
.skill-item:nth-child(4) { animation-delay: 0.25s; }
.skill-item:nth-child(5) { animation-delay: 0.3s; }
.skill-item:nth-child(6) { animation-delay: 0.35s; }
.skill-item:nth-child(7) { animation-delay: 0.4s; }
.skill-item:nth-child(8) { animation-delay: 0.45s; }
.skill-item:nth-child(9) { animation-delay: 0.5s; }

.skill-item:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-5px);
}

.skill-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.skill-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 4px;
    width: 0;
    animation: fillWidth 1s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes fillWidth {
    to {
        width: var(--skill-level, 0%);
    }
}

.skill-level {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: block;
}

/* Experience Section */
.experience-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #667eea, transparent);
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative;
    padding-left: 100px;
    animation: slideInLeft 0.8s ease;
    animation-fill-mode: both;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }

.timeline-marker {
    position: absolute;
    left: 0;
    top: 5px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--dark-bg);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(102, 126, 234, 0.6);
    }
}

.timeline-marker::after {
    content: '';
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.2);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(10px);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #667eea;
}

.timeline-content .company {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

.timeline-content .period {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.timeline-content .description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 4rem 2rem;
}

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

.stat-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 1px solid rgba(102, 126, 234, 0.3);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-card:hover {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    transform: scale(1.05);
}

.stat-card h3 {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Projects Section */
.projects-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: slideDown 0.8s ease;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid rgba(102, 126, 234, 0.3);
    color: var(--text-secondary);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #667eea;
    color: #667eea;
}

.filter-btn.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-color: transparent;
    color: white;
}

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

.project-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.project-card.hidden {
    display: none;
}

.project-card:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    transform: translateY(-10px);
}

.project-image {
    width: 100%;
    height: 200px;
    background-size: 200% 200%;
    animation: gradientFlow 6s ease infinite;
    position: relative;
    overflow: hidden;
}

.project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

.gradient-1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.gradient-2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.gradient-3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.gradient-4 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.gradient-5 { background: linear-gradient(135deg, #fa709a, #fee140); }
.gradient-6 { background: linear-gradient(135deg, #30cfd0, #330867); }

@keyframes gradientFlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.1); }
}

.project-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #667eea;
}

.project-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

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

.tech-tag {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: center;
}

.project-links a {
    color: #667eea;
    font-size: 1.3rem;
}

.project-links a:hover {
    color: #764ba2;
    transform: scale(1.2);
}

.view-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--light-bg);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 15px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 10;
    animation: modalSlideIn 0.3s ease;
}

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

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    border: none;
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: #667eea;
    transform: rotate(90deg);
}

.modal-image {
    width: 100%;
    height: 300px;
    background-size: cover;
    position: relative;
}

.modal-info {
    padding: 2rem;
}

.modal-info h2 {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.modal-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.modal-tech h3 {
    color: #667eea;
    margin-bottom: 1rem;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

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

.modal-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    border: 2px solid #667eea;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 1;
    justify-content: center;
}

.modal-btn:hover {
    background: #667eea;
    color: white;
}

.modal-btn.primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
}

.modal-btn.primary:hover {
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Contact Section */
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2,
.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #667eea;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.info-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    animation: slideInLeft 0.8s ease;
    animation-fill-mode: both;
}

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; }

.info-card:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(10px);
}

.info-icon {
    font-size: 2rem;
    color: #667eea;
    display: flex;
    align-items: center;
    min-width: 50px;
}

.info-text h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
}

.info-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.social-links h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons .social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.4);
    border-radius: 50%;
    color: #667eea;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons .social-icon:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: scale(1.2) rotate(360deg);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.2);
    padding: 2rem;
    border-radius: 15px;
    animation: slideInRight 0.8s ease;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.2);
}

.submit-btn {
    padding: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.success-message {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(39, 174, 96, 0.2);
    border: 1px solid rgba(39, 174, 96, 0.5);
    border-radius: 8px;
    color: #27ae60;
    text-align: center;
    font-weight: 600;
    animation: slideDown 0.4s ease;
}

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    margin-top: 4rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 15, 30, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-social {
        display: none;
    }

    .brand-text {
        display: none;
    }

    .hero {
        padding-top: 100px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .avatar {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }

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

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 80px;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
        left: -10px;
    }

    .timeline-content {
        padding: 1.5rem;
    }

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

    .stat-card h3 {
        font-size: 2rem;
    }

    .stat-card p {
        font-size: 0.9rem;
    }

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

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .project-image {
        height: 150px;
    }

    .modal-content {
        width: 95%;
        max-height: 85vh;
    }

    .modal-image {
        height: 200px;
    }

    .modal-info {
        padding: 1.5rem;
    }

    .modal-info h2 {
        font-size: 1.5rem;
    }

    .modal-links {
        flex-direction: column;
    }

    .modal-btn {
        flex: 1 1 auto;
    }

    .info-cards {
        gap: 1rem;
    }

    .info-card {
        padding: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.7rem;
    }

    .submit-btn {
        padding: 0.8rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}


.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.nav-brand:hover {
    transform: scale(1.05);
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.brand-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #667eea;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.4);
}

.brand-photo:hover {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.8);
    transform: scale(1.1);
}

.brand-text {
    font-size: 0.9rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ... rest of the CSS ... */

@media (max-width: 768px) {
    .brand-photo {
        width: 35px;
        height: 35px;
    }

    .brand-text {
        font-size: 0.8rem;
    }
}

/* ============ ABOUT PAGE STYLES ============ */

/* Professional Introduction */
.professional-intro {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    animation: fadeInUp 0.8s ease;
}

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

.intro-image {
    position: relative;
    animation: slideInLeft 0.8s ease 0.2s both;
}

.intro-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    object-fit: cover;
}

.intro-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.5);
}

.intro-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-radius: 20px;
    pointer-events: none;
}

.intro-text {
    animation: slideInRight 0.8s ease 0.2s both;
}

.intro-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.intro-subtitle {
    font-size: 1.2rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #667eea;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    display: block;
}

.intro-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.intro-cta .btn {
    animation: slideInUp 0.8s ease 0.5s both;
}

/* Background Section */
.background-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

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

.background-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.2);
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.background-card:nth-child(1) { animation-delay: 0.1s; }
.background-card:nth-child(2) { animation-delay: 0.2s; }
.background-card:nth-child(3) { animation-delay: 0.3s; }

.background-card:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.card-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.background-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.background-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.background-card strong {
    color: #667eea;
}

/* Skills Section */
.skills-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.skills-wrapper {
    margin-top: 3rem;
}

.skill-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
    font-weight: 700;
}

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

.skill-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.2);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.skill-item:nth-child(1) { animation-delay: 0.1s; }
.skill-item:nth-child(2) { animation-delay: 0.15s; }
.skill-item:nth-child(3) { animation-delay: 0.2s; }
.skill-item:nth-child(4) { animation-delay: 0.25s; }
.skill-item:nth-child(5) { animation-delay: 0.3s; }
.skill-item:nth-child(6) { animation-delay: 0.35s; }

.skill-item:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.skill-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.skill-item h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.skill-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 4px;
    width: 0;
    animation: fillWidth 1s ease-out forwards;
}

.skill-item:nth-child(1) .skill-progress { animation-delay: 0.6s; }
.skill-item:nth-child(2) .skill-progress { animation-delay: 0.7s; }
.skill-item:nth-child(3) .skill-progress { animation-delay: 0.8s; }
.skill-item:nth-child(4) .skill-progress { animation-delay: 0.9s; }
.skill-item:nth-child(5) .skill-progress { animation-delay: 1s; }
.skill-item:nth-child(6) .skill-progress { animation-delay: 1.1s; }

.skill-level {
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 700;
    display: block;
}

/* Experience Section */
.experience-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.timeline {
    position: relative;
    padding: 2rem 0;
    margin-top: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #667eea, transparent);
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
    padding-left: 100px;
    animation: slideInLeft 0.8s ease;
    animation-fill-mode: both;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }

.timeline-marker {
    position: absolute;
    left: 0;
    top: 5px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--dark-bg);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(102, 126, 234, 0.6);
    }
}

.timeline-marker::after {
    content: '';
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.2);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(10px);
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: #667eea;
    font-weight: 700;
}

.timeline-company {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.timeline-period {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-period i {
    color: #667eea;
}

.timeline-location {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-location i {
    color: #667eea;
}

.timeline-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-achievements {
    background: rgba(102, 126, 234, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #667eea;
}

.timeline-achievements p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.timeline-achievements i {
    color: #27ae60;
    font-size: 1.1rem;
}

.timeline-achievements p:last-child {
    margin-bottom: 0;
}

/* Values Section */
.values-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

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

.value-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 1px solid rgba(102, 126, 234, 0.3);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
    animation-fill-mode: both;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

.value-card:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.value-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

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

.cta-buttons .btn {
    animation: slideInUp 0.8s ease 0.3s both;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .intro-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-text h2 {
        font-size: 2rem;
    }

    .intro-subtitle {
        font-size: 1rem;
    }

    .intro-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

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

    .intro-cta .btn {
        width: 100%;
    }

    .background-content {
        grid-template-columns: 1fr;
    }

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

    .skill-item {
        padding: 1rem;
    }

    .skill-icon {
        font-size: 2rem;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 80px;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
        left: -10px;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-achievements {
        padding: 0.8rem;
    }

    .timeline-achievements p {
        font-size: 0.9rem;
    }

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

    .final-cta {
        padding: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

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

    .cta-buttons .btn {
        width: 100%;
    }
}

/* Social Media Section */
.social-media-section {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 15px;
}

.social-media-section h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.social-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.social-link-card:hover {
    transform: translateY(-8px);
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.social-link-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 0.8rem;
}

.social-link-card span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.social-link-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    word-break: break-word;
}

/* Contact Page Social Icons */
.social-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(102, 126, 234, 0.2);
}

.social-links h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.social-icons-contact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.social-icon-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #667eea;
    gap: 0.5rem;
}

.social-icon-contact:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: scale(1.08);
}

.social-icon-contact i {
    font-size: 1.8rem;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .social-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 0.8rem;
    }

    .social-link-card {
        padding: 1rem;
    }

    .social-link-icon {
        font-size: 2rem;
    }

    .social-icons-contact {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .social-icon-contact {
        padding: 0.8rem;
    }

    .social-icon-contact i {
        font-size: 1.5rem;
    }

    .social-icon-contact span {
        font-size: 0.7rem;
    }
}

/* ============ GLOSSY TRANSPARENT BUBBLES ============ */

/* Bubble Container */
.bubbles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Individual Bubble Styles */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.1),
                inset 2px 2px 5px rgba(255, 255, 255, 0.3),
                0 8px 32px rgba(102, 126, 234, 0.1);
    animation: float 8s ease-in-out infinite;
}

.bubble::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 30%;
    height: 30%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 50%;
    filter: blur(8px);
}

/* Large Bubble */
.bubble-lg {
    width: 300px;
    height: 300px;
    top: -100px;
    left: 10%;
    animation: float 12s ease-in-out infinite, drift-left 15s ease-in-out infinite;
}

/* Medium Bubble */
.bubble-md {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 5%;
    animation: float 10s ease-in-out infinite 2s, drift-right 12s ease-in-out infinite 2s;
}

/* Small Bubble */
.bubble-sm {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 5%;
    animation: float 9s ease-in-out infinite 1s, drift-left 10s ease-in-out infinite 1s;
}

/* Extra Large Bubble */
.bubble-xl {
    width: 400px;
    height: 400px;
    bottom: -50px;
    right: 10%;
    animation: float 14s ease-in-out infinite 3s, drift-right 16s ease-in-out infinite 3s;
    opacity: 0.6;
}

/* Tiny Bubble */
.bubble-xs {
    width: 60px;
    height: 60px;
    top: 30%;
    left: 20%;
    animation: float 7s ease-in-out infinite 0.5s, drift-left 8s ease-in-out infinite 0.5s;
}

/* Medium-Small Bubble */
.bubble-m {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation: float 11s ease-in-out infinite 2.5s, drift-right 13s ease-in-out infinite 2.5s;
}

/* Bubble Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-30px) translateX(10px);
    }
    50% {
        transform: translateY(-60px) translateX(-10px);
    }
    75% {
        transform: translateY(-30px) translateX(15px);
    }
}

@keyframes drift-left {
    0%, 100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(-50px);
    }
}

@keyframes drift-right {
    0%, 100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(50px);
    }
}

/* Bubble Hover Effect */
.bubble:hover {
    box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.1),
                inset 2px 2px 5px rgba(255, 255, 255, 0.3),
                0 15px 50px rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(15px);
}

/* Pulse Animation for Bubbles */
@keyframes pulse-bubble {
    0%, 100% {
        box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.1),
                    inset 2px 2px 5px rgba(255, 255, 255, 0.3),
                    0 8px 32px rgba(102, 126, 234, 0.1);
    }
    50% {
        box-shadow: inset -2px -2px 5px rgba(0, 0, 0, 0.1),
                    inset 2px 2px 5px rgba(255, 255, 255, 0.3),
                    0 15px 50px rgba(102, 126, 234, 0.25);
    }
}

.bubble-pulse {
    animation: pulse-bubble 4s ease-in-out infinite;
}

/* Gradient Color Variations */
.bubble-gradient-1 {
    background: radial-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(102, 126, 234, 0.05));
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.bubble-gradient-2 {
    background: radial-gradient(135deg, rgba(118, 75, 162, 0.15), rgba(118, 75, 162, 0.05));
    border: 1px solid rgba(118, 75, 162, 0.3);
}

.bubble-gradient-3 {
    background: radial-gradient(135deg, rgba(240, 147, 251, 0.15), rgba(240, 147, 251, 0.05));
    border: 1px solid rgba(240, 147, 251, 0.3);
}

.bubble-gradient-4 {
    background: radial-gradient(135deg, rgba(79, 172, 254, 0.15), rgba(79, 172, 254, 0.05));
    border: 1px solid rgba(79, 172, 254, 0.3);
}

/* Mobile Responsive - Reduce Bubble Size */
@media (max-width: 768px) {
    .bubble-lg {
        width: 200px;
        height: 200px;
        top: -50px;
        left: 5%;
    }

    .bubble-md {
        width: 150px;
        height: 150px;
        top: 10%;
        right: 2%;
    }

    .bubble-sm {
        width: 80px;
        height: 80px;
        bottom: 20%;
        left: 2%;
    }

    .bubble-xl {
        width: 250px;
        height: 250px;
        bottom: -30px;
        right: 5%;
        opacity: 0.4;
    }

    .bubble-xs {
        width: 50px;
        height: 50px;
        top: 35%;
        left: 15%;
    }

    .bubble-m {
        width: 120px;
        height: 120px;
        top: 65%;
        right: 15%;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .bubble {
        opacity: 0.6;
    }

    .bubble-lg {
        width: 150px;
        height: 150px;
        display: none;
    }

    .bubble-md {
        width: 100px;
        height: 100px;
    }

    .bubble-xl {
        display: none;
    }
}