@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    font-family: "Poppins", sans-serif;
    
    /* Tailwind Colors */
    --pink-100: #fce7f3;
    --pink-200: #fbcfe8;
    --pink-300: #f9a8d4;
    --pink-400: #f9a8d4;
    --pink-500: #f472b6;
    --pink-600: #ec4899;
    
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --blue-300: #93c5fd;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-200: #bbf7d0;
    --green-300: #86efac;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --green-800: #166534;
    
    --purple-50: #faf5ff;
    --purple-100: #f3e8ff;
    --purple-200: #e9d5ff;
    --purple-300: #d8b4fe;
    --purple-600: #9333ea;
    --purple-700: #7e22ce;
    
    --indigo-700: #4338ca;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-800: #1f2937;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    transition: background-color 0.3s, color 0.3s;
}

body.light {
    background-color: #ffffff;
    color: #000000;
}

body.dark {
    background-color: #121212;
    color: #ffffff;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 50;
    background-color: #f9a8d4;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.12);
}

.navbar.scrolled {
    backdrop-filter: blur(11px);
    background-color: #feedf5;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 2rem 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

.navbar-logo {
    font-weight: 700;
    font-size: 1.125rem;
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar-logo:hover {
    color: #6C63FF;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-menu li a {
    font-weight: 600;
    font-size: 1rem;
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.navbar-menu li a:hover {
    color: #6C63FF;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    top: 7.5rem;
    right: 5.5rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    z-index: 1000;
    border-radius: 15%;
    border: none;
    font-size: 1.5rem;
    transition: all 0.3s;
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2.5rem 2rem;
    min-height: 80vh;
    margin-top: -96px;
    padding-top: 150px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-title {
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: left;
    min-height: 96px;
    display: flex;
    align-items: center;
    font-size: 3.3rem;
    line-height: 1.1;
}

.hero-im {
    margin-right: 0.75rem;
    color: #4338ca;
    text-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.hero-name {
    color: #ec4899;
    position: relative;
}

.typing-cursor {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    color: #000;
    margin-left: 0.25rem;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.hero-image {
    width: 360px;
    height: 360px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Section Styles */
.section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    padding: 0 1rem;
}

.section-container {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: visible;
}

body.dark .section-container {
    background: #1e1e1e;
}

/* About Section */
.about-container {
    padding: 3rem;
    max-width: 72rem;
    width: 100%;
    border: 4px solid #fbcfe8;
}

.about-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ec4899;
    text-align: center;
    margin-bottom: 3rem;
}

.about-text {
    font-size: 1.125rem;
    line-height: 2;
    color: #374151;
    margin-bottom: 1.5rem;
}

body.dark .about-text {
    color: #d1d5db;
}

/* Education Section */
.education-container {
    padding: 3rem;
    max-width: 64rem;
    width: 100%;
    border: 4px solid #bfdbfe;
}

.education-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    text-align: center;
    margin-bottom: 3rem;
}

.education-item {
    background: #eff6ff;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

body.dark .education-item {
    background: #1e293b;
}

.education-degree {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1d4ed8;
    margin-bottom: 0.5rem;
}

.education-school {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

body.dark .education-school {
    color: #d1d5db;
}

.education-details {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Experience Section */
.experience-container {
    padding: 3rem;
    max-width: 64rem;
    width: 100%;
    border: 4px solid #bbf7d0;
}

.experience-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #16a34a;
    text-align: center;
    margin-bottom: 3rem;
}

.experience-card {
    background: #f0fdf4;
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #86efac;
}

body.dark .experience-card {
    background: #14532d;
}

.experience-role {
    font-size: 1.25rem;
    font-weight: 700;
    color: #15803d;
    margin-bottom: 0.5rem;
}

.experience-company {
    font-weight: 600;
    color: #166534;
    margin-bottom: 0.5rem;
}

.experience-date {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.experience-list {
    list-style: none;
    padding: 0;
}

.experience-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #374151;
    line-height: 1.6;
}

body.dark .experience-list li {
    color: #d1d5db;
}

.experience-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: bold;
}

/* Skills Section */
.skills-container {
    padding: 3rem;
    max-width: 72rem;
    width: 100%;
    border: 4px solid #bfdbfe;
}

.skills-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
    text-align: center;
    margin-bottom: 3rem;
}

.skills-category {
    margin-bottom: 2rem;
}

.skills-category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1d4ed8;
    margin-bottom: 1rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: #eff6ff;
    border-radius: 0.5rem;
    transition: transform 0.3s;
}

body.dark .skill-item {
    background: #1e293b;
}

.skill-item:hover {
    transform: scale(1.1);
}

.skill-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
}

.skill-name {
    font-size: 0.875rem;
    text-align: center;
}

/* Projects Section */
.projects-container {
    padding: 3rem;
    max-width: 64rem;
    width: 100%;
    border: 4px solid #e9d5ff;
}

.projects-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #9333ea;
    text-align: center;
    margin-bottom: 3rem;
}

.project-item {
    background: #faf5ff;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    border: 1px solid #f3e8ff;
    margin-bottom: 1.5rem;
}

body.dark .project-item {
    background: #2e1065;
}

.project-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #7e22ce;
    margin-bottom: 0.5rem;
}

.project-date {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.project-description {
    color: #374151;
    line-height: 1.6;
}

body.dark .project-description {
    color: #d1d5db;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 1rem 0;
    margin-top: 2rem;
}

.footer-content {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.social-link:hover {
    color: #3b82f6;
}

.social-icon {
    width: 20px;
    height: 20px;
}

/* Decorative Circles */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
}

.circle-tl {
    top: -1.5rem;
    left: -1.5rem;
    width: 5rem;
    height: 5rem;
}

.circle-br {
    bottom: -1.5rem;
    right: -1.5rem;
    width: 5rem;
    height: 5rem;
}

.circle-tc {
    top: 0.5rem;
    right: 50%;
    transform: translateX(50%);
    width: 2rem;
    height: 2rem;
    opacity: 0.4;
}

/* Animated Emojis */
.animated-emoji {
    position: absolute;
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 1;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 50;
        width: 100%;
        padding: 1.5rem 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        backdrop-filter: blur(12px);
        background-color: rgba(251, 191, 36, 0.2);
        box-shadow: 0 4px 24px 0 rgba(0,0,0,0.12);
    }
    
    .mobile-menu-close {
        align-self: flex-end;
        margin-bottom: 1rem;
    }
    
    .mobile-menu-list {
        width: 100%;
        list-style: none;
        padding: 0;
    }
    
    .mobile-menu-list li {
        padding: 0.5rem 0;
        text-align: center;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
        justify-content: center;
    }
    
    .hero-image {
        width: 250px;
        height: 250px;
    }
    
    .theme-toggle {
        top: 5rem;
        right: 1rem;
    }
    
    .about-title,
    .education-title,
    .experience-title,
    .skills-title,
    .projects-title {
        font-size: 2rem;
    }
    
    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
    
    .circle-tl,
    .circle-br {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .circle-tc {
        width: 1rem;
        height: 1rem;
    }

}


