:root {
    --bg-color: #ffffff;
    --text-color: #2d3436;
    --primary-color: #05737f;
    --secondary-color: #e3f0f1;
    --accent-color: #8b7355;
    --shadow-light: #ffffff;
    --shadow-dark: #e0e0e0;
    --nav-bg: rgba(255, 255, 255, 0.95);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
}

/* Floating Navigation */
.navbar {
    background: var(--nav-bg);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    margin: 20px auto;
    padding: 12px 24px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: auto;
    min-width: 400px;
    max-width: 600px;
}

.navbar-brand, .nav-link {
    color: white !important;
}

.nav-link:hover {
    color: var(--secondary-color) !important;
}

.nav-content {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.nav-link {
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 12px;
    transition: all 0.2s ease;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.95em;
}

.nav-link:hover {
    background: var(--primary-color);
    color: var(--shadow-light) !important;
    transform: translateY(-1px);
}

.nav-link i {
    font-size: 1.1em;
}

.nav-link.active {
    background: var(--primary-color);
    color: var(--shadow-light) !important;
    box-shadow: 
        inset 2px 2px 4px rgba(0, 0, 0, 0.1),
        inset -2px -2px 4px rgba(255, 255, 255, 0.1);
}

/* Adjust main content to account for fixed navbar */
.hero-section {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 6rem 0;
    margin-top: 14rem;
    margin-bottom: 4rem;
}

.hero-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.profile-photo {
  max-width: 250px;     /* Limit size */
  width: 100%;          /* Responsive */
  height: auto;         /* Maintain aspect ratio */
  border-radius: 10px;  /* Rounded corners */
  display: block;       /* Prevents text wrapping around image */
  margin: 0 auto;       /* Center image horizontally */
}


/* Update existing styles for new color scheme */
.content-wrapper {
    background: var(--secondary-color);
    border-radius: 30px;
    padding: 40px;
    position: relative;
    box-shadow: 
        20px 20px 60px var(--shadow-dark),
        -20px -20px 60px var(--shadow-light);
}

.bio-text {
    color: var(--text-color);
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 
        8px 8px 16px var(--shadow-dark),
        -8px -8px 16px var(--shadow-light);
}

.bio-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.bio-text p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.tech-tag {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    background: var(--bg-color);
    color: var(--primary-color);
    box-shadow: 
        2px 2px 4px var(--shadow-dark),
        -2px -2px 4px var(--shadow-light);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    transform: translateY(-2px);
    box-shadow: 
        3px 3px 6px var(--shadow-dark),
        -3px -3px 6px var(--shadow-light);
}

/* Category tags */
.tech-tag:contains('Data Analysis'),
.tech-tag:contains('Machine Learning'),
.tech-tag:contains('Data Visualization'),
.tech-tag:contains('Deep Learning'),
.tech-tag:contains('NLP'),
.tech-tag:contains('Computer Vision'),
.tech-tag:contains('Time Series'),
.tech-tag:contains('Big Data'),
.tech-tag:contains('Web Scraping') {
    background: var(--primary-color);
    color: var(--bg-color);
}

/* Package tags */
.tech-tag:contains('Pandas'),
.tech-tag:contains('NumPy'),
.tech-tag:contains('SciPy'),
.tech-tag:contains('Matplotlib'),
.tech-tag:contains('Seaborn'),
.tech-tag:contains('Plotly'),
.tech-tag:contains('Scikit-learn'),
.tech-tag:contains('TensorFlow'),
.tech-tag:contains('PyTorch'),
.tech-tag:contains('Keras'),
.tech-tag:contains('XGBoost'),
.tech-tag:contains('NLTK'),
.tech-tag:contains('spaCy'),
.tech-tag:contains('OpenCV'),
.tech-tag:contains('StatsModels'),
.tech-tag:contains('PySpark'),
.tech-tag:contains('Requests'),
.tech-tag:contains('Flask'),
.tech-tag:contains('Django') {
    background: var(--secondary-color);
    color: var(--text-color);
}

.btn {
    background: var(--primary-color);
    color: var(--shadow-light);
    border: none;
    border-radius: 15px;
    padding: 12px 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../Images/background_1.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
    border-radius: 30px;
    margin: 20px;
    margin-bottom: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-name {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--shadow-light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--shadow-light);
    opacity: 0.9;
    margin-bottom: 2rem;
    font-weight: 500;
}

.hero-image-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
}

.profile-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 5px solid var(--shadow-light);
    object-fit: cover;
    object-position: 50% 30%;
    box-shadow: 
        8px 8px 16px var(--shadow-dark),
        -8px -8px 16px var(--shadow-light);
    margin-bottom: 30px;
}

.profile-image-container {
    background: var(--shadow-light);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 
        8px 8px 16px var(--shadow-dark),
        -8px -8px 16px var(--shadow-light);
    display: inline-block;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.hero-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.hero-btn-primary {
    background: var(--accent-color);
    color: var(--shadow-light);
    border: none;
    box-shadow: 
        5px 5px 10px rgba(0, 0, 0, 0.2),
        -5px -5px 10px rgba(255, 255, 255, 0.1);
}

.hero-btn-primary:hover {
    background: #7a6347;
    transform: translateY(-2px);
    box-shadow: 
        8px 8px 15px rgba(0, 0, 0, 0.3),
        -8px -8px 15px rgba(255, 255, 255, 0.1);
}

.hero-btn-outline {
    background: transparent;
    color: var(--shadow-light);
    border: 2px solid var(--shadow-light);
    box-shadow: 
        5px 5px 10px rgba(0, 0, 0, 0.2),
        -5px -5px 10px rgba(255, 255, 255, 0.1);
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 
        8px 8px 15px rgba(0, 0, 0, 0.3),
        -8px -8px 15px rgba(255, 255, 255, 0.1);
}



h1, h2, h3, h4, h5, h6 {
    color: var(--shadow-light);
    font-weight: 600;
}

/* Projects Page Grid */

/* Image Hover Animation */
.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Button Glow Effect */
.project-card .btn {
    transition: all 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 
        2px 2px 6px rgba(0,0,0,0.2),
        -2px -2px 6px rgba(255,255,255,0.1);
}

.project-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 10px var(--primary-color),
        0 0 20px var(--primary-color),
        0 0 30px var(--primary-color);
    background: var(--accent-color);
    color: var(--shadow-light);
}

.projects-container {
    display: grid;
    gap: 2rem; /* Space between cards */
    padding: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Individual Project Cards */
.project-card {
    background: var(--secondary-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        8px 8px 16px var(--shadow-dark),
        -8px -8px 16px var(--shadow-light);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        12px 12px 20px var(--shadow-dark),
        -12px -12px 20px var(--shadow-light);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 1rem;
}

.project-card p {
    flex: 1;
    margin: 0 1rem 1rem 1rem;
    color: var(--text-color);
    line-height: 1.5;
}

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

/* Tech stack styling inside cards */
.project-card .tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 1rem 1rem 1rem;
}

.project-card .tech-stack span {
    background: var(--primary-color);
    color: var(--shadow-light);
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    box-shadow: 
        2px 2px 4px var(--shadow-dark),
        -2px -2px 4px var(--shadow-light);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .projects-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .project-card img {
        height: 180px;
    }
}



.project-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    padding: 2rem;
    max-width: 1100px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


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


.project-card h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: #2c3e50;
    text-align: center;
}

/* Dashboards Container */
.dashboards-container {
    display: flex;
    flex-direction: column; /* stack vertically */
    gap: 40px; /* spacing between dashboards */
    padding: 20px;
}

/* Individual Dashboard Card */
.dashboard-card {
    width: 100%;
    background-color: #fff; /* card look */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 24px rgba(0,0,0,0.15), -12px -12px 24px rgba(255,255,255,0.1);
}

/* Tableau embed responsiveness */
.dashboard-card .tableauPlaceholder,
.dashboard-card .tableauViz {
    width: 100%;
    min-height: 600px; /* ensure interactivity */
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-card:hover .tableauViz {
    transform: scale(1.02);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* Dashboard Title */
.dashboard-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #333;
}

/* Dashboard Description */
.dashboard-card p {
    margin-top: 15px;
    font-size: 1rem;
    color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dashboard-card {
        padding: 15px;
    }

    .dashboard-card h3 {
        font-size: 1.3rem;
    }

    .dashboard-card p {
        font-size: 0.95rem;
    }
}


/* ------------------- */
/* Gallery Cards */
.gallery-page {
    background: linear-gradient(165deg, #e3f0f1, #83d1d6);
  
}

.gallery-card {
    background: var(--secondary-color); /* e3f0f1 */
    padding: 20px;
    border-radius: 20px;
    box-shadow: 
        8px 8px 16px var(--shadow-dark),
        -8px -8px 16px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        12px 12px 20px var(--shadow-dark),
        -12px -12px 20px var(--shadow-light);
}

.cards-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px;
}


/* Make all iframes inside gallery cards responsive */
.gallery-card iframe {
    width: 100%;
    aspect-ratio: 16 / 9; /* Maintains 16:9 ratio */
    border: 0;
    border-radius: 15px; /* optional: rounded corners */
    box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* optional: subtle shadow */
}

.gallery-card h2 {
    text-align: center;
    color: var(--text-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.gallery-card p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.gallery-card img,
.gallery-card iframe {
    width: 100%;
    border-radius: 10px;
    display: block;
    margin: 10px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover img,
.gallery-card:hover iframe {
    transform: scale(1.02);
    box-shadow: 0 0 12px rgba(0,0,0,0.2);
}

/* Lists inside gallery */
.gallery-card ul {
    padding-left: 20px;
    margin-top: 10px;
}

.gallery-card ul li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-card {
        padding: 15px;
    }

    .gallery-card h2 {
        font-size: 1.5rem;
    }

    .gallery-card p,
    .gallery-card ul li {
        font-size: 0.9rem;
    }
}



/* Contact Page Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    padding: 2rem 0;
}

.contact-info {
    background: var(--secondary-color);
    color: var(--text-color);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        8px 8px 16px var(--shadow-dark),
        -8px -8px 16px var(--shadow-light);
}

.contact-details {
    margin: 2rem 0;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.social-link {
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.contact-form {
    background: var(--secondary-color);
    color: var(--text-color);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        8px 8px 16px var(--shadow-dark),
        -8px -8px 16px var(--shadow-light);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #000000;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: var(--bg-color);
    color: #000000;
    font-size: 1rem;
    box-shadow: inset 2px 2px 5px var(--shadow-dark),
                inset -2px -2px 5px var(--shadow-light);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: inset 3px 3px 6px var(--shadow-dark),
                inset -3px -3px 6px var(--shadow-light);
}

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

.contact-info {
    margin-top: 3rem;
    text-align: center;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info p {
    color: #000000;
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Success Message */
.success-message {
    background: #4CAF50;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    text-align: center;
}

/* Error Message */
.error-message {
    background: #f44336;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        width: 90%;
        min-width: 300px;
        padding: 10px 16px;
    }
    
    .nav-content {
        gap: 8px;
    }
    
    .nav-link {
        padding: 6px 12px;
        font-size: 0.9em;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    
    .project-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

.about-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: var(--secondary-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 
        8px 8px 16px var(--shadow-dark),
        -8px -8px 16px var(--shadow-light);
}

.profile-image-container {
    flex: 0 0 300px;
    position: relative;
}

.profile-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 
        4px 4px 8px var(--shadow-dark),
        -4px -4px 8px var(--shadow-light);
}

.bio-text {
    flex: 1;
    color: var(--text-color);
    padding: 0;
    background: none;
    box-shadow: none;
}

.bio-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.bio-text p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.tech-stack {
    margin-top: 2rem;
}

.tech-stack span {
    background: var(--primary-color);
    color: var(--shadow-light);
    padding: 8px 15px;
    border-radius: 12px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-size: 0.9em;
    display: inline-block;
    box-shadow: 
        3px 3px 6px var(--shadow-dark),
        -3px -3px 6px var(--shadow-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        gap: 20px;
    }

    .profile-image-container {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .profile-image {
        height: 250px;
    }
}

/* Search and Filter Styles */
.search-filter-container {
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--secondary-color);
    border-radius: 16px;
    box-shadow: 
        8px 8px 16px var(--shadow-dark),
        -8px -8px 16px var(--shadow-light);
}

.search-filter-form {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 12px 20px;
    padding-right: 50px;
    border: none;
    border-radius: 10px;
    background: var(--bg-color);
    color: var(--text-color);
    font-size: 1rem;
    box-shadow: inset 2px 2px 5px var(--shadow-dark),
                inset -2px -2px 5px var(--shadow-light);
}

.search-input:focus {
    outline: none;
    box-shadow: inset 3px 3px 6px var(--shadow-dark),
                inset -3px -3px 6px var(--shadow-light);
}

.search-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
}

.filter-box {
    min-width: 200px;
}

.tech-filter {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    background: var(--bg-color);
    color: var(--text-color);
    font-size: 1rem;
    cursor: pointer;
    box-shadow: inset 2px 2px 5px var(--shadow-dark),
                inset -2px -2px 5px var(--shadow-light);
}

.tech-filter:focus {
    outline: none;
    box-shadow: inset 3px 3px 6px var(--shadow-dark),
                inset -3px -3px 6px var(--shadow-light);
}

.no-results {
    text-align: center;
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: 16px;
    color: var(--text-color);
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-filter-form {
        flex-direction: column;
    }
    
    .search-box,
    .filter-box {
        width: 100%;
    }
}

/* Search Section */
.search-section {
    padding: 1rem 0;
    background: var(--bg-color);
    margin-bottom: 2rem;
}


.tech-section {
    margin: 1rem 0;
}

.tech-section h4 {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    box-shadow: 
        2px 2px 4px var(--shadow-dark),
        -2px -2px 4px var(--shadow-light);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    transform: translateY(-2px);
    box-shadow: 
        3px 3px 6px var(--shadow-dark),
        -3px -3px 6px var(--shadow-light);
}

/* Category tags */
.category-tag {
    background: var(--primary-color);
    color: var(--bg-color);
}

/* Library tags */
.library-tag {
    background: var(--secondary-color);
    color: var(--text-color);
}

/* Specific library colors */
.library-tag:contains('Pandas') { background: #150458; color: white; }
.library-tag:contains('NumPy') { background: #013243; color: white; }
.library-tag:contains('Matplotlib') { background: #11557C; color: white; }
.library-tag:contains('Seaborn') { background: #2C3E50; color: white; }
.library-tag:contains('Scikit-learn') { background: #F7931E; color: white; }
.library-tag:contains('TensorFlow') { background: #FF6F00; color: white; }
.library-tag:contains('PyTorch') { background: #EE4C2C; color: white; }
.library-tag:contains('Keras') { background: #D00000; color: white; }
.library-tag:contains('NLTK') { background: #7FDBFF; color: black; }
.library-tag:contains('spaCy') { background: #09A3D5; color: white; }
.library-tag:contains('OpenCV') { background: #5C3D2E; color: white; }
.library-tag:contains('StatsModels') { background: #2C3E50; color: white; }
.library-tag:contains('PySpark') { background: #E25A1C; color: white; }
.library-tag:contains('Requests') { background: #44B78B; color: white; }
.library-tag:contains('Flask') { background: #000000; color: white; }
.library-tag:contains('Django') { background: #092E20; color: white; }



.no-results {
    text-align: center;
    padding: 2rem;
    background: var(--secondary-color);
    border-radius: 16px;
    color: var(--text-color);
    font-size: 1.1rem;
    grid-column: 1 / -1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
   
   
    .search-filter-form {
        flex-direction: column;
    }
    
    .search-box,
    .filter-box {
        width: 100%;
    }
}

.contact-section {
    padding: 2rem 0;
    color: #000000;
}

.contact-section h2,
.contact-section h3 {
    color: #000000;
}

.nav-spacer {
    height: 4rem;
} 
