/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple: #D946EF;
    --blue: #06B6D4;
    --pink: #FF1493;
    --dark-pink: #C2185B;
    --light-pink: #FFB6D9;
    --orange: #FF6B9D;
    --green: #10B981;
    --dark: #1a0a1e;
    --darker: #0f0514;
    --light: #f8f9fa;
    --gray: #B8B8D1;
    --gradient: linear-gradient(135deg, #FF1493 0%, #C2185B 35%, #D946EF 70%, #FF6B9D 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background-color: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid rgba(255, 20, 147, 0.3);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

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

.nav-link {
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--pink);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 20px;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--pink);
}

.btn-secondary:hover {
    background: var(--pink);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

/* Floating Shapes */
.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--pink), transparent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--purple), transparent);
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--orange), transparent);
    top: 50%;
    right: 30%;
    animation-delay: 4s;
}

/* Highlights Section */
.highlights {
    padding: 4rem 0;
    background-color: var(--darker);
}

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

.highlight-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 20, 147, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 20, 147, 0.15);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.icon-wrapper.purple { background: linear-gradient(135deg, #D946EF, #C2185B); }
.icon-wrapper.blue { background: linear-gradient(135deg, #06B6D4, #0891B2); }
.icon-wrapper.pink { background: linear-gradient(135deg, #FF1493, #C2185B); }
.icon-wrapper.orange { background: linear-gradient(135deg, #FF6B9D, #FF1493); }

.highlight-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Page Header */
.page-header {
    padding: 6rem 20px 3rem;
    text-align: center;
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--gray);
}

/* About Page */
.about-content {
    padding: 4rem 0;
}

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

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

.image-placeholder {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    box-shadow: 0 20px 60px rgba(255, 20, 147, 0.4);
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--pink);
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

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

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

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 20, 147, 0.1);
    border-radius: 15px;
}

.stat h3 {
    font-size: 2.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-values h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.value-card {
    padding: 2rem;
    background: rgba(255, 20, 147, 0.05);
    border-radius: 20px;
    border: 2px solid rgba(255, 20, 147, 0.2);
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--pink);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon.purple { background: rgba(217, 70, 239, 0.2); }
.value-icon.blue { background: rgba(6, 182, 212, 0.2); }
.value-icon.pink { background: rgba(255, 20, 147, 0.2); }
.value-icon.orange { background: rgba(255, 107, 157, 0.2); }

.value-card h3 {
    margin-bottom: 0.5rem;
}

/* Skills Page */
.skills-content {
    padding: 4rem 0;
}

.skills-section {
    margin-bottom: 4rem;
}

.skills-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--pink);
}

.skills-grid {
    display: grid;
    gap: 1.5rem;
}

.skill-card {
    background: rgba(255, 20, 147, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 20, 147, 0.2);
}

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

.skill-header h3 {
    font-size: 1.2rem;
}

.skill-level {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.skill-level.expert {
    background: rgba(255, 20, 147, 0.2);
    color: var(--pink);
}

.skill-level.advanced {
    background: rgba(217, 70, 239, 0.2);
    color: var(--purple);
}

.skill-level.intermediate {
    background: rgba(6, 182, 212, 0.2);
    color: var(--blue);
}

.skill-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: var(--gradient);
    border-radius: 10px;
    transition: width 1s ease;
}

.skills-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.badge {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.badge.purple { background: rgba(217, 70, 239, 0.2); color: var(--purple); }
.badge.blue { background: rgba(6, 182, 212, 0.2); color: var(--blue); }
.badge.pink { background: rgba(255, 20, 147, 0.2); color: var(--pink); }
.badge.orange { background: rgba(255, 107, 157, 0.2); color: var(--orange); }
.badge.green { background: rgba(16, 185, 129, 0.2); color: var(--green); }

.badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.3);
}

/* Experience Page */
.experience-content {
    padding: 4rem 0;
}

.timeline {
    position: relative;
    padding-left: 50px;
    margin-bottom: 4rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--pink), var(--dark-pink), var(--purple));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: -38px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 4px solid var(--dark);
}

.timeline-dot.purple { background: var(--purple); }
.timeline-dot.blue { background: var(--blue); }
.timeline-dot.pink { background: var(--pink); }
.timeline-dot.orange { background: var(--orange); }
.timeline-dot.dark-pink { background: var(--dark-pink); }

.timeline-content {
    background: rgba(255, 20, 147, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--pink);
}

.timeline-date {
    color: var(--pink);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.timeline-content h4 {
    color: var(--gray);
    font-weight: normal;
    margin-bottom: 1rem;
}

.experience-highlights {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.experience-highlights li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tech-tag {
    padding: 0.4rem 1rem;
    background: rgba(255, 20, 147, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--pink);
}

.education-section {
    margin-top: 4rem;
}

.education-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--pink);
}

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

.education-card {
    background: rgba(255, 20, 147, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 20, 147, 0.2);
}

.education-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.education-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.education-card h4 {
    color: var(--gray);
    font-weight: normal;
    margin-bottom: 0.5rem;
}

.education-date {
    color: var(--pink);
    font-weight: 600;
    margin-bottom: 1rem;
}

.cert-list {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.cert-list li {
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-content {
    padding: 4rem 0;
}

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

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--pink);
}

.contact-intro {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--gray);
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-icon.purple { background: rgba(217, 70, 239, 0.2); }
.contact-icon.blue { background: rgba(6, 182, 212, 0.2); }
.contact-icon.pink { background: rgba(255, 20, 147, 0.2); }

.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-details a {
    color: var(--pink);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.social-links h3 {
    margin-bottom: 1rem;
}

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

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.social-icon.linkedin {
    background: rgba(10, 102, 194, 0.2);
    color: #0A66C2;
}

.social-icon.github {
    background: rgba(36, 41, 47, 0.4);
    color: #fff;
}

.social-icon.twitter {
    background: rgba(29, 155, 240, 0.2);
    color: #1DA1F2;
}

.social-icon.instagram {
    background: linear-gradient(45deg, rgba(225, 48, 108, 0.2), rgba(193, 53, 132, 0.2));
    color: #E1306C;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 20, 147, 0.4);
}

.contact-form-wrapper {
    background: rgba(255, 20, 147, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 20, 147, 0.2);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--pink);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--gray);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 20, 147, 0.3);
    border-radius: 10px;
    color: var(--light);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink);
    background: rgba(255, 255, 255, 0.08);
}

.submit-btn {
    width: 100%;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
}

/* Footer */
footer {
    background-color: var(--darker);
    padding: 2rem 0;
    text-align: center;
    border-top: 2px solid rgba(255, 20, 147, 0.3);
    margin-top: 4rem;
}

footer p {
    color: var(--gray);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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

    .page-header h1 {
        font-size: 2rem;
    }

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

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

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

    .timeline {
        padding-left: 30px;
    }

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

    .timeline-dot {
        left: -28px;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 0.5rem;
        font-size: 0.85rem;
    }

    .logo {
        font-size: 1.5rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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