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

:root {
    --primary-purple: #8B5CF6;
    --dark-purple: #6D28D9;
    --light-purple: #A78BFA;
    --accent-purple: #C084FC;
    --dark-black: #0F0F23;
    --light-black: #1A1A2E;
    --grey-black: #16213E;
    --text-white: #FFFFFF;
    --text-light: #E5E7EB;
    --text-grey: #9CA3AF;
}

/* Light Theme */
[data-theme="light"] {
    --dark-black: #FFFFFF;
    --light-black: #F8FAFC;
    --grey-black: #E2E8F0;
    --text-white: #1A202C;
    --text-light: #2D3748;
    --text-grey: #4A5568;
}

/* Light theme navbar */
[data-theme="light"] .navbar {
    background: rgba(248, 250, 252, 0.95);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

/* Light theme cards and sections */
[data-theme="light"] .project-card,
[data-theme="light"] .skill-category,
[data-theme="light"] .about-card,
[data-theme="light"] .contact-form,
[data-theme="light"] .profile-card {
    background: linear-gradient(135deg, #F8FAFC, #E2E8F0);
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .stat-item,
[data-theme="light"] .skill-item,
[data-theme="light"] .contact-method {
    background: rgba(139, 92, 246, 0.1);
}

[data-theme="light"] .form-group input,
[data-theme="light"] .form-group textarea {
    background: rgba(139, 92, 246, 0.05);
    color: var(--text-white);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background: var(--dark-black);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-purple);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    color: var(--light-purple);
    text-shadow: 0 0 20px var(--primary-purple);
}

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

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

.nav-link:hover {
    color: var(--primary-purple);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, var(--primary-purple), var(--light-purple));
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-purple);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark-black) 0%, var(--light-black) 50%, var(--grey-black) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 139, 250, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-left: 45px;
    padding-right: 45px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight {
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text h2 {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

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

.btn-secondary:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
}

.btn-resume {
    background: linear-gradient(135deg, var(--accent-purple), var(--light-purple));
    color: white;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-resume:hover {
    background: linear-gradient(135deg, var(--light-purple), var(--accent-purple));
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(192, 132, 252, 0.3);
}

.btn-resume i {
    font-size: 0.9rem;
}

/* Profile Card */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-card {
    position: relative;
    background: linear-gradient(135deg, var(--light-black), var(--grey-black));
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.profile-img {
    text-align: center;
    margin-bottom: 1rem;
}

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-purple);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.profile-picture:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.profile-img i {
    font-size: 8rem;
    color: var(--primary-purple);
    opacity: 0.8;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    color: var(--accent-purple);
    font-size: 1.5rem;
    animation: float 4s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 50%;
    right: -20px;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: -15px;
    animation-delay: 2s;
}

.floating-icon:nth-child(4) {
    bottom: 10%;
    right: -15px;
    animation-delay: 3s;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-down {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-purple);
    border-radius: 25px;
    position: relative;
}

.scroll-down span {
    display: block;
    width: 4px;
    height: 4px;
    background: var(--primary-purple);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

.scroll-down span:nth-child(2) { animation-delay: 0.15s; }
.scroll-down span:nth-child(3) { animation-delay: 0.3s; }

@keyframes scroll {
    0% { opacity: 0; top: 5px; }
    15% { opacity: 1; top: 5px; }
    60% { opacity: 1; top: 35px; }
    100% { opacity: 0; top: 35px; }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section */
.about {
    background: var(--light-black);
}

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

.about-text h3 {
    font-size: 1.8rem;
    color: var(--light-purple);
    margin-bottom: 1.5rem;
}

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

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

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.stat-item h4 {
    font-size: 2rem;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.personal-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    color: var(--primary-purple);
    width: 20px;
}

.about-card {
    background: linear-gradient(135deg, var(--grey-black), var(--dark-black));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.about-card h4 {
    color: var(--light-purple);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.about-card ul {
    list-style: none;
}

.about-card li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.about-card li i {
    color: var(--primary-purple);
}

/* Skills Section */
.skills {
    background: var(--dark-black);
}

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

.skill-category {
    background: linear-gradient(135deg, var(--light-black), var(--grey-black));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: transform 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-5px);
}

.skill-category h3 {
    color: var(--light-purple);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.3rem;
}

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

.skill-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: rgba(139, 92, 246, 0.2);
    transform: scale(1.05);
}

.skill-item i {
    font-size: 2rem;
    color: var(--primary-purple);
}

.skill-item span {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Projects Section */
.projects {
    background: var(--light-black);
}

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

.project-card {
    background: linear-gradient(135deg, var(--grey-black), var(--dark-black));
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.project-card.featured-project {
    border: 3px solid var(--primary-purple);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.5), 0 0 0 1px rgba(139, 92, 246, 0.1);
    cursor: pointer;
    position: relative;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(109, 40, 217, 0.05));
}

.project-card.featured-project:hover {
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.6), 0 0 0 2px var(--light-purple);
    border-color: var(--light-purple);
    transform: translateY(-8px) scale(1.01);
}

.project-card.featured-project:hover .click-indicator {
    opacity: 1;
    transform: translateY(0);
}

.click-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    background: rgba(139, 92, 246, 0.95);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 100;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-badge-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
}

.featured-badge {
    background: linear-gradient(135deg, var(--primary-purple), var(--accent-purple));
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

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

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.project-card.featured-project:hover {
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.4);
    border-color: var(--light-purple);
}

/* Contact Section */

.project-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.project-card.featured-project .project-image {
    overflow: visible !important;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 1;
}

.project-card.featured-project .project-image img {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 9999 !important;
    position: relative !important;
}

.project-placeholder {
    font-size: 3rem;
    color: white;
    opacity: 0.8;
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    color: var(--light-purple);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.project-content p {
    color: var(--text-grey);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.project-tech span {
    background: rgba(139, 92, 246, 0.2);
    color: var(--light-purple);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

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

.project-link {
    width: 40px;
    height: 40px;
    background: var(--primary-purple);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Featured project links with text */
.project-card.featured-project .project-link {
    width: auto;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.project-card.featured-project .request-access {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.project-card.featured-project .request-access:hover {
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.4);
}

.project-card.featured-project .view-details {
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
}

.project-card.featured-project .view-details:hover {
    background: linear-gradient(135deg, var(--light-purple), var(--primary-purple));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.project-link:hover {
    background: var(--light-purple);
    transform: scale(1.1);
}

/* Contact Section */
.contact {
    background: var(--dark-black);
}

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

.contact-info h3 {
    color: var(--light-purple);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-grey);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary-purple);
    width: 30px;
}

.contact-method h4 {
    color: var(--light-purple);
    margin-bottom: 0.3rem;
}

.contact-method p {
    color: var(--text-light);
    margin: 0;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, var(--light-black), var(--grey-black));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    color: var(--text-white);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.form-group i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-purple);
}

.form-group textarea + i {
    top: 1rem;
    transform: none;
}

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

/* Footer */
.footer {
    background: var(--light-black);
    padding: 2rem 0 1rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

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

.footer-left h3 {
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.footer-left p {
    color: var(--text-grey);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-purple);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.footer-bottom p {
    color: var(--text-grey);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 30px;
    }
    
    .nav-container {
        padding: 1rem 30px;
    }
    
    .hero-content {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--light-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 250px;
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 25px;
    }
    
    .nav-container {
        padding: 1rem 25px;
    }
    
    .hero-content {
        padding-left: 25px;
        padding-right: 25px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .skill-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

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

/* Smooth transitions for elements */
.hero-text, .about-text, .skill-category {
    animation: fadeInUp 0.8s ease;
}

.project-card {
    animation: none !important;
}

.hero-image {
    animation: fadeInRight 0.8s ease;
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .section-title {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s ease;
    }
    
    .section-title.animate {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Simple featured project styling - no opacity tricks */
.project-card.featured-project {
    border: 2px solid var(--primary-purple);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.project-card.featured-project:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.4);
}

