/* Custom CSS for Hatemalo Saving & Co-operative Ltd */

:root {
    --primary-gradient: linear-gradient(135deg, #2d8659 0%, #1e5f3f 100%);
    --secondary-gradient: linear-gradient(135deg, #dc3545 0%, #a71e2a 100%);
    --accent-gradient: linear-gradient(135deg, #2d8659 0%, #dc3545 100%);
    --dark-gradient: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-primary: #2c3e50;
    --text-secondary: #6c757d;
    --border-color: #e9ecef;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Navbar */
.custom-navbar {
    background: linear-gradient(135deg, #2d8659 0%, #dc3545 100%);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.custom-navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.slide-1 {
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.9) 0%, rgba(30, 95, 63, 0.9) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"><rect fill="%23f8f9fa" width="1000" height="600"/><circle cx="200" cy="150" r="80" fill="%23e9ecef" opacity="0.5"/><circle cx="700" cy="400" r="120" fill="%23dee2e6" opacity="0.3"/><rect x="600" y="100" width="300" height="200" rx="20" fill="%23ffffff" opacity="0.1"/></svg>');
    background-size: cover;
    background-position: center;
}

.slide-2 {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.9) 0%, rgba(167, 30, 42, 0.9) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"><rect fill="%23f8f9fa" width="1000" height="600"/><polygon points="100,100 300,200 200,400 50,300" fill="%23e9ecef" opacity="0.4"/><circle cx="800" cy="200" r="100" fill="%23dee2e6" opacity="0.3"/></svg>');
    background-size: cover;
    background-position: center;
}

.slide-3 {
    background: var(--accent-gradient),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 600"><rect fill="%23f8f9fa" width="1000" height="600"/><rect x="150" y="150" width="200" height="300" rx="15" fill="%23ffffff" opacity="0.1"/><circle cx="700" cy="150" r="60" fill="%23e9ecef" opacity="0.4"/><rect x="600" y="350" width="250" height="150" rx="10" fill="%23dee2e6" opacity="0.3"/></svg>');
    background-size: cover;
    background-position: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
}

.hero-buttons .btn {
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

.btn-primary:hover {
    background: linear-gradient(135deg, #e85463 0%, #c02639 100%);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background: var(--white);
    transform: scale(1.2);
}

/* Features Section */
.features-section {
    background: var(--light-bg);
    margin-top: -100px;
    padding-top: 150px !important;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card:hover .feature-icon {
    background: var(--secondary-gradient);
    transform: scale(1.1);
}

.feature-card h5 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Section Styling */
.section-subtitle {
    color: #dc3545;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: var(--white);
}

.about-content {
    padding-right: 2rem;
}

.stats-row {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

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

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    border: 2px dashed var(--border-color);
}

.image-placeholder i {
    margin-bottom: 1rem;
    opacity: 0.7;
}

/* Services Section */
.services-section {
    background: var(--light-bg);
    padding: 5rem 0;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card:hover .service-icon {
    background: var(--secondary-gradient);
    transform: scale(1.1);
}

.service-card h5 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.service-features li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.btn-outline-primary {
    border: 2px solid #2d8659;
    color: #2d8659;
    border-radius: 25px;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

/* Contact Section */
.contact-section {
    background: var(--dark-gradient);
    color: var(--white);
    padding: 5rem 0;
}

.contact-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.contact-section .section-title {
    color: var(--white);
}

.contact-section .section-description {
    color: rgba(255, 255, 255, 0.8);
}

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

.contact-buttons .btn {
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 600;
    margin: 0.5rem;
    transition: all 0.3s ease;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-info-card h5 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

/* Footer */
.footer-section {
    background: linear-gradient(135deg, #2d8659 0%, #dc3545 100%);
    color: var(--white);
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h5,
.footer-section h6 {
    color: var(--white);
}

.footer-section .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-gradient);
    color: var(--white);
    transform: translateY(-3px);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .stats-row {
        justify-content: center;
        gap: 1rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .carousel-control-prev {
        left: 15px;
    }

    .carousel-control-next {
        right: 15px;
    }

    .features-section {
        margin-top: -50px;
        padding-top: 100px !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .hero-buttons .btn {
        display: block;
        margin: 0.5rem 0;
        width: 100%;
        max-width: 250px;
    }

    .contact-buttons .btn {
        display: block;
        margin: 0.5rem auto;
        width: 100%;
        max-width: 200px;
    }
}

/* Utility Classes */
.bg-gradient-primary {
    background: var(--primary-gradient);
}

.bg-gradient-secondary {
    background: var(--secondary-gradient);
}

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

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}


/*new css ----*/
/*------Gallery CSS---------*/
.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
  }

  .filters {
    margin: 20px 0;
  }

  .filter-button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    background-color: #f0f0f0;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .filter-button:hover {
    background-color: #ccc;
  }

  .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;

  }

  .gallery-item {
    flex: 1 1 calc(33.333% - 10px);
    margin: 5px;
    display: none;
  }

  .gallery-item img {
    width: 100%;
    border-radius: 8px;
  }

  .gallery-item img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer; /* Changes the cursor to a pointer on hover */
}

.gallery-item img:hover {
    transform: scale(1.05); /* Slightly enlarge the image */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Add a shadow effect */
}

  .gallery-item p {
    margin-top: 5px;
    font-size: 14px;
    color: #555;
  }

  .gallery-item[data-category="all"] {
    display: block;
  }




/*----------------*/

/* -----------------Contact CSS Start-------------------------*/
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
}
.contact-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.contact-card:hover {
    transform: translateY(-10px);
}
.map-container {
    width: 100%;
    height: 400px;
    margin-top: 30px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}
.map-container:hover {
    transform: scale(1.05);
}
.icon {
    color: #ff7b00;
    margin-right: 10px;
    font-size: 1.2rem;
}
.btn-warning {
    background-color: #ff7b00;
    border: none;
    transition: background-color 0.3s ease-in-out, transform 0.2s;
}
.btn-warning:hover {
    background-color: #ff9c3f;
    transform: translateY(-2px);
}

textarea.form-control {
    min-height: 174px !important; /* Force a minimum height */
     /* Allow dynamic resizing */
    resize: vertical; /* Enable user resizing vertically */
    font-size: 14px;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: none !important;
    border: 1px solid #ced4da;
    transition: box-shadow 0.3s ease;
  }

  .form-control{
    height: 52px;
    background-color: #fff;
    font-size: 14px;
    border-radius: 2px;
    box-shadow: none !important;
    border: 1px solid;
    transition: box-shadow 0.3s ease;
  }

/*--------Contact CSS End-------*/

/*-------Career CSS--------*/

.career-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}
.vacancy-card {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}
.career-card:hover {
    transform: scale(1.05); /* Slightly enlarge the card */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* Add a more pronounced shadow */
}

.vacancy-card:hover {
    transform: scale(1.03); /* Slightly enlarge the card */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* Add a more pronounced shadow */
}

.btn-warning {
    background-color: #ff7b00 ;
    border: none;
}

.tab-pane {
    text-align: left !important;
    color: #170303 !important;
}

.tab-pane ul li {
    list-style: none !important;
    color: #170303 !important;
}

/*------career CSS end--------*/

/*------Portfolio CSS---------*/

/*--------Portfolio CSS end--------*/

/*--------Notice CSS Start------*/


table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}

table th {
    background-color: #f2f2f2;
    font-weight: bold;
}

h1 {
    text-align: center;
    margin-top: 20px;
}

.pagination {
    margin-top: 20px;
    text-align: center;
}
.pagination a {
    margin: 0 5px;
    padding: 5px 10px;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #007bff;
}
.pagination a:hover {
    background-color: #f0f0f0;
}
.pagination span {
    margin: 0 5px;
    padding: 5px 10px;
}

/*-------team member CSS Start--------*/
.team-card h3 {
    color: #385380;
    font-weight: bold;
    margin-bottom: 10px; /* Optional: Adds spacing between h3 and p */
}

/* Style for the p tag */
.team-card p {
    position: relative;
    color: #5d2121;
    margin-bottom: 15px; /* Adds spacing between p and the social icons */
    text-decoration: none; /* Disable default underline */
}

.team-card p::after {
    content: '';
    position: absolute;
    bottom: -5px; /* Place the underline slightly below the text */
    left: 0;
    width: 0;
    height: 2px; /* Thickness of the underline */
    background-color: #007bff; /* Blue color for the underline */
    animation: underlineAnimation 4s infinite; /* Apply animation */
}

/* Keyframes for underline animation */
@keyframes underlineAnimation {
    0% {
        width: 0; /* Start with no underline */
    }
    50% {
        width: 100%; /* Expand underline to full width */
    }
    100% {
        width: 0; /* Shrink it back to no underline */
    }
}

.team-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 15px;
    margin-bottom: 15px; /* Add some space between cards */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Added transition for smooth hover effect */
}

.team-card:hover {
    transform: translateY(-10px) scale(1.05); /* Moves up and zooms in */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Darker shadow on hover */
}

.team-card img {

    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
    transition: transform 0.3s ease; /* Smooth zoom effect for the image */
}

.team-card:hover img {
    transform: scale(1.1); /* Zooms in the image on hover */
}

.team-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 10px 0 5px;
}

.team-card p {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
    opacity: 0.8; /* Slightly faded text */
    transition: opacity 0.3s ease; /* Fade effect for text */
}

.team-card:hover p {
    opacity: 1; /* Full opacity on hover */
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-links a {
    text-decoration: none;
    color: #007bff;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #0056b3;
}
.sanchalak-samiti-card {
    background-color: #e0d390; /* Light red/pink for Board of Directors */
    padding: 20px;
    margin-bottom: 30px;
    color: #030300; /* Dark red for text to match the background */
    border: 2px solid #f5c6cb;
}

.sahalakar-card {
    background-color: #58d074; /* Light green for Management Team */
    padding: 20px;
    margin-bottom: 30px;
    color: #030300; /* Dark green for text */
    border: 2px solid #c3e6cb;
}
.lekha-samiti-card {
    background-color: #35b2dc; /* Light green for Management Team */
    padding: 20px;
    margin-bottom: 30px;
    color: #030300; /* Dark green for text */
    border: 2px solid #c3e6cb;
}
.employe-card {
    background-color: #efed93; /* Light green for Management Team */
    padding: 20px;
    margin-bottom: 30px;
    color: #030300; /* Dark green for text */
    border: 2px solid #c3e6cb;
}
/* Example of changing the background color on hover */
.parent-card:hover {
    background-color: #e0e0e0; /* Slightly darker gray on hover */
}
