/* Global Styles */
:root {
    --primary-color: #0a192f; /* Dark Navy */
    --secondary-color: #64ffda; /* Aqua Green */
    --text-color: #ccd6f6;
    --text-secondary: #8892b0;
    --background-color: #0a192f;
    --card-bg: #112240;
    --light-bg: #233554;
    --white: #e6f1ff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

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

section {
    padding:50px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    color: var(--white);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: 1px solid var(--secondary-color);
    padding: 14px 28px;     /* Increased padding */
    font-size: 1rem;        /* Increase text size */
    border-radius: 6px;     /* Optional: slightly rounder corners */
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    margin-left: 15px;
    padding: 14px 28px;     /* Match size with primary */
    font-size: 1rem;
    border-radius: 6px;
}

.btn-secondary:hover {
    background-color: rgba(100, 255, 218, 0.1);
}

.btn-details {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-details:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.btn-source-code {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 14px 28px; /* Match btn-secondary */
    font-size: 1rem;     /* Match btn-secondary */
    text-decoration: none;
    border: 1px solid var(--secondary-color); /* Match border */
    border-radius: 6px;  /* Match btn-secondary */
}

.btn-source-code:hover {
    background-color: transparent;
    color: var(--secondary-color);
}


.btn-code {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 8px 16px;
    font-size: 0.9rem;
    margin-left: 10px;
}

.btn-code:hover {
    background-color: rgba(100, 255, 218, 0.1);
}

.btn-certificate {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 16px;
    font-size: 0.9rem;
    margin-top: 15px;
    display: inline-block;
}

.btn-certificate:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.btn-resume {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 24px;
    margin-top: 20px;
    display: inline-block;
}

.btn-resume:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

/* .resume-btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.resume-btn:hover {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
} */

/* Navigation */
.navbar {
    position: fixed;
        height: 80px;

    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 25, 47, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}
.nav-links a.resume-btn {
    color: black; /* <-- this overrides nav-links a */
    background-color: var(--secondary-color);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.nav-links a.resume-btn:hover {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}


.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

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

.social-icons {
    display: flex;
    gap: 15px;
    margin-left: 30px;
}

.social-icons a {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 60px;
    padding: 60px 0 0px;
    margin-bottom: 0;


}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: center;
    max-width: 500px; /* Adjust to your preferred size */
    margin: 0 auto; 
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    border: 2px solid var(--secondary-color);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.hero h1 span {
    color: var(--secondary-color);
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* About Section */
.about-content {
    display: flex;
    gap: 50px;
}

.about-text {
    flex: 2;
}

.about-skills {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
}

.education {
    margin-top: 30px;
}

.education h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.education-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-bg);
}

.education-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

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

.about-skills h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

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

.about-skills li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.about-skills li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 15px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links a {
        padding: 10px 0;
    }
    
    .nav-links a.resume-btn {
        margin-top: 10px;
    }
    
    .social-icons {
        margin-left: 0;
        margin-top: 15px;
        justify-content: center;
        width: 100%;
    }
    
    .hamburger {
        display: block;
        z-index: 1000;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--text-color);
        margin: 5px 0;
        transition: all 0.3s ease;
    }
}

/* Hero Section Mobile Fix */
@media (max-width: 992px) {
    .hero {
        height: auto;
        padding: 100px 0 60px;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
        margin-top: 40px;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

/* About Section Mobile Fix */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
}

/* Mobile Menu Fixes */
@media (max-width: 768px) {
    body.no-scroll {
        overflow: hidden;
    }
    
    .nav-links {
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

/* Form Loading State */
button[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}
/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.skill-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.skill-card:hover {
    transform: translateY(-10px);
}

.skill-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.skill-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.skill-card p {
    color: var(--text-secondary);
}

/* Projects Section */
.projects {
    padding: 100px 0;
    background-color: var(--background-color);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    color: var(--white);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
}

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

.project-card {
    background-color: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.1);
}

.project-logo-container {
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(100, 255, 218, 0.05);
    border-radius: 24px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.project-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(100, 255, 218, 0.2));
    transition: transform 0.3s ease;
}

.project-card:hover .project-logo-container {
    transform: scale(1.05);
    background: rgba(100, 255, 218, 0.1);
    border-color: rgba(100, 255, 218, 0.3);
}

.project-card:hover .project-logo {
    transform: scale(1.1);
}

.project-content {
    padding: 0 15px;
    width: 100%;
}

.project-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--white);
}

.project-content p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.6;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.tech-tags span {
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--secondary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.project-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-details {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-code {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-details:hover {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.btn-code:hover {
    background-color: rgba(100, 255, 218, 0.1);
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-buttons {
        flex-direction: column;
    }
    
    .btn-code {
        margin-top: 10px;
    }
}

/* Achievements Section */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
}

.achievement-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    display: flex;
    gap: 20px;
    transition: transform 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-10px);
}

/* Achievements Section */
.achievement-visual {
    position: relative;
    width: 80px;  /* Increased from 60px */
    height: 80px; /* Increased from 60px */
    margin: 0 auto 20px;
}

.achievement-shield {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(100, 255, 218, 0.3));
    transition: transform 0.3s ease;
}

.achievement-shield:hover {
    transform: scale(1.05);
}

.achievement-icon {
    position: absolute;
    bottom: -8px;
    right: -8px;
    font-size: 1.5rem; /* Slightly larger icon */
    color: var(--secondary-color);
    background: var(--card-bg);
    border-radius: 50%;
    padding: 5px;
    z-index: 2;
}   

/* Existing achievement card styles remain the same */


.achievement-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--white);
}

.achievement-content p {
    color: var(--text-secondary);
}

/* Contact Section */
.contact-content {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-form {
    flex: 2;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.contact-info ul {
    list-style: none;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.contact-social a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.contact-social a:hover {
    color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--light-bg);
    border: none;
    border-radius: 4px;
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
}

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

.btn-submit {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: transparent;
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

/* Footer */
.footer {
    background-color: var(--card-bg);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-about {
    flex: 2;
}

.footer-links, .footer-legal {
    flex: 1;
}

.footer h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 10px;
}

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

.footer a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--light-bg);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-content, .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .social-icons {
        display: none;
    }

    .hamburger {
        display: block;
    }

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

    .hero h2 {
        font-size: 1.5rem;
    }

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

    .projects-grid, .achievements-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .project-buttons {
        flex-direction: column;
    }

    .btn-code {
        margin-left: 0;
        margin-top: 10px;
    }

    .footer-content {
        flex-direction: column;
    }

}

.btn,
.resume-btn,
.btn-primary,
.btn-secondary,
.btn-details,
.btn-code,
.btn-certificate,
.btn-resume {
    text-decoration: none;
}


/* Thank You Page Styles */
.thank-you {
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.thank-you-content i {
    font-size: 5rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    animation: bounce 1s ease infinite alternate;
}

.thank-you h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.thank-you p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--text-secondary);
}

.thank-you-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-15px); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .thank-you-buttons {
        flex-direction: column;
    }
    
    .thank-you h1 {
        font-size: 2.5rem;
    }
}


/* Legal Document Styling */
.legal-doc {
    padding: 80px 0;
    color: var(--text-color);
}

.legal-doc h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--white);
}

.effective-date {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.legal-section p, .legal-section li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-section ul {
    padding-left: 20px;
    margin: 15px 0;
}

.legal-section a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-doc {
        padding: 60px 0;
    }
    
    .legal-doc h1 {
        font-size: 2rem;
    }
}



.email-link {
    color: white;
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}


/* Dizzables Project Specific Styles */
.project-header {
    text-align: center;
    margin-bottom: 50px;
}

/* Logo glow effect for details page only */
.logo-glow-container {
    background: rgba(100, 255, 218, 0.15);
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 15px rgba(100, 255, 218, 0.3),
        0 0 30px rgba(100, 255, 218, 0.2);
    padding: 20px;
    animation: gentle-pulse 4s infinite alternate;
}

@keyframes gentle-pulse {
    0% {
        box-shadow: 
            0 0 15px rgba(100, 255, 218, 0.3),
            0 0 30px rgba(100, 255, 218, 0.2);
    }
    100% {
        box-shadow: 
            0 0 25px rgba(100, 255, 218, 0.4),
            0 0 45px rgba(100, 255, 218, 0.3);
    }
}

.project-main-logo {
    width: 100%;
    height: auto;
    max-width: 120px;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.3));
}
.project-subtitle {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: -10px;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.project-gallery img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.project-gallery img:hover {
    transform: translateY(-5px);
}

.feature-section h2,
.technical-details h2 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.tech-card {
    background-color: rgba(100, 255, 218, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.tech-card h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.project-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .project-links {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.project-details {
    padding-top: 100px; /* Matches navbar height + spacing */
    padding-bottom: 80px;
}

/* For mobile devices */
@media (max-width: 768px) {
    .project-details {
        padding-top: 80px;
    }
}


/* HealthLab Specific Styles */
.logo-glow-container {
    background: rgba(100, 255, 218, 0.15);
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 15px rgba(100, 255, 218, 0.3),
        0 0 30px rgba(100, 255, 218, 0.2);
    padding: 20px;
    animation: gentle-pulse 4s infinite alternate;
}

.project-header {
    text-align: center;
    margin-bottom: 50px;
}

.project-subtitle {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: -10px;
}

.feature-section h2,
.technical-details h2 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.feature-icon {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.tech-card {
    background-color: rgba(100, 255, 218, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

@keyframes gentle-pulse {
    0% {
        box-shadow: 
            0 0 15px rgba(100, 255, 218, 0.3),
            0 0 30px rgba(100, 255, 218, 0.2);
    }
    100% {
        box-shadow: 
            0 0 25px rgba(100, 255, 218, 0.4),
            0 0 45px rgba(100, 255, 218, 0.3);
    }
}


/* Mobile Navigation Styles */
@media (max-width: 768px) {
    /* Hide desktop navigation by default on mobile */
    .nav-links,
    .social-icons {
        display: none;
    }
    
    /* Show hamburger on mobile */
    .hamburger {
        display: block;
        z-index: 1001;
    }
    
    /* Style for active mobile menu */
    .nav-links.active,
    .social-icons.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px; /* Height of your navbar */
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        gap: 15px;
        padding-top: 30px;
    }
    
    .social-icons.active {
        margin-top: 20px;
        justify-content: center;
        padding-bottom: 30px;
    }
    
    /* No scroll when menu is open */
    body.no-scroll {
        overflow: hidden;
    }
    
    /* Adjust navbar padding on mobile */
    .navbar {
        padding: 15px 0;
    }
}

/* Hamburger Animation (keep this exactly as is) */
.hamburger {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
}