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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #748dff;
    background-color: #D8F1FF;
}

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

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(116, 141, 255, 0.9);
    backdrop-filter: blur(10px);
}

header nav {
    padding: 1rem 1.5rem;
}

header ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
}

header a {
    color: #D8F1FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

header a:hover {
    color: #C0E7FF;
}

#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #748dff;
    color: #D8F1FF;
    padding-top: 5rem;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 6rem 0;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-text h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: #D8F1FF;
    color: #748dff;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #C0E7FF;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    width: 400px;
    height: 400px;
    border-radius: 0.5rem;
    object-fit: cover;
}

#projects {
    padding: 5rem 0;
    background-color: #D8F1FF;
}

#projects h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

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

.project-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-card-link:hover .project-card {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

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

.project-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
    cursor: pointer;
}

.project-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.project-image {
    height: 12rem;
    position: relative;
    overflow: hidden;
}

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

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-icon {
    flex-shrink: 0;
    color: #748dff;
}

.project-content p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background-color: #C0E7FF;
    color: #748dff;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

#skills {
    padding: 5rem 0;
    background-color: #5A7FE6;
    color: #D8F1FF;
}

#skills h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

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

.skill-item {
    margin-bottom: 1rem;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.skill-name {
    font-weight: 600;
}

.skill-bar {
    width: 100%;
    background-color: #748dff;
    border-radius: 0.625rem;
    height: 0.625rem;
    overflow: hidden;
}

.skill-progress {
    background-color: #C0E7FF;
    height: 100%;
    border-radius: 0.625rem;
    width: 0;
    transition: width 1s ease-in-out;
}

#about {
    padding: 5rem 0;
    background-color: #748dff;
    color: #D8F1FF;
}

#about h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    width: 400px;
    height: 400px;
    border-radius: 0.5rem;
    object-fit: cover;
}

.about-text {
    flex: 2;
}

.about-text p {
    margin-bottom: 1rem;
}

#testimonials {
    padding: 5rem 0;
    background-color: #C0E7FF;
}

#testimonials h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: #748dff;
}

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

.testimonial-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    margin-bottom: 1rem;
    color: #6b7280;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    color: #748dff;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: #6b7280;
}

footer {
    background-color: #748dff;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    color: #D8F1FF;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin: 0.5rem 0;
    color: #D8F1FF;
}

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

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.github-btn {
    background-color: #D8F1FF;
    color: #748dff;
}

.github-btn:hover {
    background-color: #C0E7FF;
    border-color: #D8F1FF;
    transform: translateY(-2px);
}

.linkedin-btn {
    background-color: #D8F1FF;
    color: #748dff;
}

.linkedin-btn:hover {
    background-color: #C0E7FF;
    border-color: #D8F1FF;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(216, 241, 255, 0.3);
    padding-top: 1rem;
    margin-top: 1rem;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: #D8F1FF;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #C0E7FF;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .hero-image img {
        width: 300px;
        height: 300px;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-image img {
        width: 300px;
        height: 300px;
    }
    
    header ul {
        gap: 1rem;
    }
    
    .projects-grid,
    .skills-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-section {
        min-width: auto;
    }
    
    .social-buttons {
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .hero-text h2 {
        font-size: 1.25rem;
    }
    
    header ul {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    header a {
        font-size: 0.875rem;
    }
}

html {
    scroll-behavior: smooth;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}