
/* ... keep existing code (reset and base styles) the same ... */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Portfolio Container */
.portfolio-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #1e293b 0%, #7c3aed 50%, #1e293b 100%);
}

/* ... keep existing code (hero section, background layers, floating elements, navigation, hero content, scroll indicator) the same ... */

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

/* Background Layers */
.bg-layer {
    position: absolute;
    inset: 0;
}

.bg-gradient {
    background: linear-gradient(135deg, rgba(126, 34, 206, 0.2) 0%, rgba(236, 72, 153, 0.2) 50%, rgba(34, 211, 238, 0.2) 100%);
}

.bg-radial-1 {
    background: radial-gradient(circle at 30% 20%, rgba(120, 119, 198, 0.3) 0%, transparent 50%);
}

.bg-radial-2 {
    background: radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.4) 0%, transparent 50%);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: pulse 3s ease-in-out infinite;
}

.floating-1 {
    top: 80px;
    left: 40px;
    width: 128px;
    height: 128px;
    background: linear-gradient(45deg, #06b6d4, #7c3aed);
}

.floating-2 {
    bottom: 80px;
    right: 40px;
    width: 160px;
    height: 160px;
    background: linear-gradient(45deg, #ec4899, #fb923c);
    animation-delay: 1s;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.nav-logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(45deg, #06b6d4, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #06b6d4;
}

/* Hero Content */
.hero-content {
    text-align: center;
    padding: 0 24px;
    max-width: 1024px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: clamp(48px, 8vw, 128px);
    font-weight: 900;
    background: linear-gradient(45deg, #06b6d4, #a855f7, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    line-height: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.hero-subtitle p {
    font-size: clamp(18px, 3vw, 32px);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.sparkles {
    color: #fbbf24;
    animation: pulse 2s ease-in-out infinite;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
    max-width: 512px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.highlight {
    color: #06b6d4;
    font-weight: 600;
}

/* Buttons */
.cta-button {
    background: linear-gradient(45deg, #7c3aed, #ec4899);
    color: white;
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-top:20px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
}

.secondary-button {
    background: linear-gradient(45deg, #06b6d4, #7c3aed);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(6, 182, 212, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    width: 32px;
    height: 32px;
    color: #06b6d4;
}

/* Section Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-title {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 900;
    margin-bottom: 32px;
}

.section-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 768px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #7c3aed 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.1) 0%, transparent 70%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.section-title {
    background: linear-gradient(45deg, #06b6d4, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.about-paragraph {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-cyan {
    color: #06b6d4;
    font-weight: 600;
}

.highlight-purple {
    color: #a855f7;
    font-weight: 600;
}

.about-cta {
    margin-top: 32px;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-container {
    position: relative;
    display: inline-block;
}

.image-container::before {
    content: '';
    position: absolute;
    inset: -16px;
    background: linear-gradient(45deg, #06b6d4, #7c3aed, #ec4899);
    border-radius: 24px;
    filter: blur(20px);
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.image-container:hover::before {
    opacity: 0.5;
}

.profile-image {
    position: relative;
    border-radius: 24px;
    width: 320px;
    height: 384px;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.image-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(45deg, #fbbf24, #fb923c);
    color: black;
    padding: 8px 12px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    animation: pulse 2s ease-in-out infinite;
}

/* Skills Section */
.skills-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #7c3aed 0%, #1e293b 50%, #7c3aed 100%);
    position: relative;
}

.skills-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
}

.skills-section .section-title {
    background: linear-gradient(45deg, #fbbf24, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 64px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 10;
}

.skill-category {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px 24px;
    min-height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.skill-category:first-child {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(147, 197, 253, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.skill-category:nth-child(2) {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(134, 239, 172, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.skill-category:nth-child(3) {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(196, 181, 253, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.skill-category-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
}

.skill-category:first-child .skill-category-title {
    color: #60a5fa;
}

.skill-category:nth-child(2) .skill-category-title {
    color: #4ade80;
}

.skill-category:nth-child(3) .skill-category-title {
    color: #c084fc;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
}

.skill-tag {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.skill-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.skill-category:first-child .skill-tag {
    background: rgba(59, 130, 246, 0.2);
    color: #93c5fd;
    border-color: rgba(59, 130, 246, 0.3);
}

.skill-category:first-child .skill-tag:hover {
    background: rgba(59, 130, 246, 0.3);
    color: #dbeafe;
}

.skill-category:nth-child(2) .skill-tag {
    background: rgba(34, 197, 94, 0.2);
    color: #86efac;
    border-color: rgba(34, 197, 94, 0.3);
}

.skill-category:nth-child(2) .skill-tag:hover {
    background: rgba(34, 197, 94, 0.3);
    color: #dcfce7;
}

.skill-category:nth-child(3) .skill-tag {
    background: rgba(168, 85, 247, 0.2);
    color: #c4b5fd;
    border-color: rgba(168, 85, 247, 0.3);
}

.skill-category:nth-child(3) .skill-tag:hover {
    background: rgba(168, 85, 247, 0.3);
    color: #e9d5ff;
}

/* Journey Section */
.journey-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #7c3aed 50%, #1e293b 100%);
    position: relative;
}

.journey-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.1) 0%, transparent 70%);
}

.journey-section .section-title {
    background: linear-gradient(45deg, #fb923c, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #06b6d4, #a855f7, #ec4899);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }
.timeline-item:nth-child(5) { animation-delay: 1.0s; }

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    position: relative;
    z-index: 10;
    background: linear-gradient(45deg, #06b6d4, #a855f7);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    min-width: 140px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.timeline-content {
    flex: 1;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    margin: 0 40px;
    transition: all 0.5s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
    border-color: rgba(6, 182, 212, 0.3);
}

.timeline-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.timeline-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.timeline-item.current .timeline-year {
    background: linear-gradient(45deg, #fbbf24, #fb923c);
    animation: pulse 2s ease-in-out infinite;
}

.timeline-item.current .timeline-content {
    border-color: rgba(251, 191, 36, 0.5);
    background: rgba(251, 191, 36, 0.1);
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #7c3aed 0%, #1e293b 50%, #7c3aed 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
}

.services-section .section-title {
    background: linear-gradient(45deg, #ec4899, #06b6d4);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 10;
}

.service-card {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    position: relative;
    transition: all 0.5s ease;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 64px rgba(6, 182, 212, 0.2);
    border-color: rgba(6, 182, 212, 0.5);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: transform 0.5s ease;
}

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

.icon-cyan {
    background: linear-gradient(135deg, #06b6d4, #7c3aed);
}

.icon-purple {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.icon-pink {
    background: linear-gradient(135deg, #ec4899, #fb923c);
}

.service-icon i {
    width: 40px;
    height: 40px;
    color: white;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    position: relative;
    z-index: 10;
}

.service-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    position: relative;
    z-index: 10;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #7c3aed 50%, #1e293b 100%);
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.1) 0%, transparent 70%);
}

.testimonials-section .section-title {
    background: linear-gradient(45deg, #fb923c, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 10;
}

.testimonial-card {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    transition: all 0.5s ease;
}

.testimonial-card:hover {
    border-color: rgba(6, 182, 212, 0.3);
}

.testimonial-emoji {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.author-image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 16px;
    border: 2px solid rgba(6, 182, 212, 0.5);
}

.author-name {
    font-weight: 700;
    color: white;
    font-size: 18px;
    margin-bottom: 4px;
}

.author-role {
    color: #06b6d4;
    font-size: 14px;
    font-weight: 500;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    line-height: 1.6;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #7c3aed 0%, #1e293b 50%, #7c3aed 100%);
    position: relative;
}

.blog-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 60% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
}

.blog-section .section-title {
    background: linear-gradient(45deg, #06b6d4, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 10;
}

.blog-card {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 64px rgba(6, 182, 212, 0.2);
    border-color: rgba(6, 182, 212, 0.5);
}

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

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

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

.blog-content {
    padding: 24px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-excerpt {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 14px;
}

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

.blog-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.blog-tag {
    background: linear-gradient(45deg, #06b6d4, #a855f7);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #7c3aed 0%, #1e293b 50%, #7c3aed 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 60% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    position: relative;
    z-index: 10;
}

.contact-info .section-title {
    background: linear-gradient(45deg, #06b6d4, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 16px;
}

.contact-icon.icon-cyan {
    color: #06b6d4;
}

.contact-icon.icon-purple {
    color: #a855f7;
}

.contact-icon.icon-pink {
    color: #ec4899;
}

.contact-item span {
    color: rgba(255, 255, 255, 0.9);
}

.download-button-container {
    margin: 32px 0;
}

.download-button {
    background: linear-gradient(45deg, #fb923c, #ec4899);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(251, 146, 60, 0.3);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-linkedin {
    background: linear-gradient(45deg, #0077b5, #06b6d4);
}

.social-github {
    background: linear-gradient(45deg, #374151, #1f2937);
}

.social-link:hover {
    transform: scale(1.1);
}

/* Contact Form */
.contact-form-container {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #06b6d4;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    width: 100%;
    background: linear-gradient(45deg, #7c3aed, #ec4899);
    color: white;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(124, 58, 237, 0.3);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 48px 0;
}

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

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

.footer-title {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(45deg, #06b6d4, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #06b6d4;
}

.footer-social-links {
    display: flex;
    gap: 16px;
}

.footer-social-link {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-social-link:hover {
    color: #06b6d4;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 32px;
    padding-top: 32px;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
}

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

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

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40%, 43% {
        transform: translateX(-50%) translateY(-30px);
    }
    70% {
        transform: translateX(-50%) translateY(-15px);
    }
    90% {
        transform: translateX(-50%) translateY(-4px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-image {
        order: -1;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .profile-image {
        width: 280px;
        height: 336px;
    }

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

    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }

    .timeline-year {
        position: absolute;
        left: 0;
        min-width: 50px;
        font-size: 14px;
        padding: 8px 12px;
    }

    .timeline-content {
        margin: 0;
    }

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

@media (max-width: 768px) {
    .section-container {
        padding: 0 16px;
    }
    
    .hero-content {
        padding: 0 16px;
    }
    
    .floating-1,
    .floating-2 {
        width: 80px;
        height: 80px;
    }
    
    .floating-1 {
        top: 40px;
        left: 20px;
    }
    
    .floating-2 {
        bottom: 40px;
        right: 20px;
        width: 100px;
        height: 100px;
    }
    
    .about-section,
    .skills-section,
    .journey-section,
    .services-section,
    .testimonials-section,
    .blog-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .service-card,
    .skill-category,
    .testimonial-card,
    .blog-card,
    .contact-form-container {
        padding: 24px;
    }
    
    .profile-image {
        width: 240px;
        height: 288px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .skill-category {
        padding: 24px;
        min-height: auto;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle p {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        width: 30px;
        height: 30px;
    }
    
    .profile-image {
        width: 200px;
        height: 240px;
    }
    
    .social-links {
        justify-content: center;
    }

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

    .timeline-year {
        min-width: 40px;
        font-size: 12px;
        padding: 6px 8px;
    }

    .timeline-content {
        padding: 16px;
    }

    .timeline-title {
        font-size: 18px;
    }
}


