:root {
    --primary-color: #32CD32; /* Parrot Green */
    --accent-white: #ffffff;
    --accent-orange: #FF8C00; /* Darker Orange for accent */
    --accent-yellow: #FFD700; /* Gold for accent */
    --accent-charcoal: #1a1a1a; /* Darker charcoal for futuristic feel */
    --neon-green: #39FF14; /* Neon green for highlights */
    --neon-blue: #00FFFF; /* Neon blue for highlights */
    --gradient-start: rgba(57, 255, 20, 0.8); /* Neon green with transparency */
    --gradient-end: rgba(0, 255, 255, 0.8); /* Neon blue with transparency */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--accent-white); /* Changed text color for dark background */
    background-color: var(--accent-charcoal); /* Dark background for futuristic theme */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--accent-charcoal);
    margin-bottom: 1rem;
    font-weight: 700; /* Make headings bolder */
}

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

/* Header / Navigation */
header {
    background-color: transparent;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.3s ease-in-out;
}

header.scrolled {
    background-color: rgba(26, 26, 26, 0.95); /* Darker background on scroll */
    box-shadow: 0 2px 10px rgba(0, 255, 255, 0.3); /* Neon blue shadow */
}

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

nav .logo img {
    height: 60px; /* Slightly larger logo */
    border-radius: 50%;
    border: 2px solid var(--neon-green); /* Neon border */
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.6); /* Glowing effect */
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--accent-white); /* White links by default */
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.3), transparent); /* Neon hover effect */
    transition: all 0.5s ease;
}

.nav-links a:hover::before {
    left: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--neon-green); /* Neon green on hover/active */
    background-color: rgba(57, 255, 20, 0.1); /* Subtle background */
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.5); /* Glowing effect */
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--accent-charcoal) 0%, #0a0a0a 100%); /* Darker, more futuristic gradient */
    color: var(--accent-white);
    text-align: center;
    padding: 10rem 2rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    border-bottom: 2px solid var(--neon-blue); /* Neon border at the bottom */
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.2); /* Subtle glow */
}

.hero-content {
    z-index: 1;
    padding: 2rem;
    animation: fadeInScale 1.5s ease-out forwards; /* Initial animation */
}

.hero-content h1 {
    font-size: 5rem; /* Larger headline */
    margin-bottom: 1.5rem;
    color: var(--accent-white);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 10px rgba(57, 255, 20, 0.8); /* Dual neon glow */
    letter-spacing: 3px;
}

.hero-content h2 {
    font-size: 3rem; /* Larger subheadline */
    margin-bottom: 2rem;
    color: var(--accent-white);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.6);
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 4rem auto;
    color: var(--accent-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.scroll-down-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border: 3px solid var(--neon-green);
    border-radius: 50%;
    animation: bounce 2s infinite, glow 1.5s infinite alternate; /* Added glow animation */
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-down-arrow::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 15px;
    height: 15px;
    border-right: 3px solid var(--neon-green);
    border-bottom: 3px solid var(--neon-green);
    transform: rotate(45deg);
}

@keyframes fadeInScale {
    0% { opacity: 0; transform: scale(0.8); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px var(--neon-green), 0 0 10px var(--neon-green); }
    100% { box-shadow: 0 0 20px var(--neon-green), 0 0 30px var(--neon-green); }
}

/* About Section */
.about-section {
    padding: 6rem 0; /* More padding */
    background-color: var(--accent-charcoal); /* Darker background */
    color: var(--accent-white);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem; /* More gap */
    align-items: center;
    justify-content: center;
}

.about-text {
    flex: 1;
    min-width: 350px; /* Increased min-width */
}

.about-text h2 {
    font-size: 3rem; /* Larger heading */
    color: var(--neon-green); /* Neon green heading */
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text ul {
    list-style: none;
    margin-top: 2rem;
    padding-left: 0;
}

.about-text ul li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    border-left: 3px solid var(--neon-blue); /* Neon blue accent */
    padding-top: 5px;
    padding-bottom: 5px;
}

.about-text ul li::before {
    content: '⚡'; /* Lightning bolt icon */
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-size: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
}

.about-image {
    flex: 1;
    min-width: 350px;
    text-align: center;
    position: relative;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5), 0 0 15px rgba(57, 255, 20, 0.5); /* Dual neon shadow */
    transition: transform 0.5s ease-in-out;
}

.about-image img:hover {
    transform: scale(1.03) rotate(2deg);
}

/* Menu Section */
.menu-section {
    padding: 6rem 0;
    background-color: #121212; /* Even darker background */
    text-align: center;
    color: var(--accent-white);
}

.menu-section h2 {
    font-size: 3rem;
    color: var(--neon-green);
    margin-bottom: 4rem;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Larger cards */
    gap: 3rem;
}

.menu-item {
    background-color: #1a1a1a; /* Darker card background */
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    padding-bottom: 1.5rem;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.menu-item:hover {
    transform: translateY(-15px) scale(1.03) rotate(1deg);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.6), 0 0 20px rgba(57, 255, 20, 0.6);
}

.menu-item img {
    width: 100%;
    height: 220px; /* Slightly taller images */
    object-fit: cover;
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.menu-item h3 {
    font-size: 1.8rem;
    margin-top: 1.5rem;
    color: var(--neon-green);
}

.menu-item p {
    font-size: 1.1rem;
    color: #bbb;
    padding: 0 1.5rem;
}

/* Gallery Section */
.gallery-section {
    padding: 6rem 0;
    background-color: var(--accent-charcoal);
    text-align: center;
    color: var(--accent-white);
}

.gallery-section h2 {
    font-size: 3rem;
    color: var(--neon-blue);
    margin-bottom: 4rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
    cursor: pointer;
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 280px; /* Taller gallery images */
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 255, 255, 0.7), rgba(57, 255, 20, 0.7)); /* Neon gradient overlay */
    color: var(--accent-white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background-color: #121212;
    text-align: center;
    color: var(--accent-white);
}

.contact-section h2 {
    font-size: 3rem;
    color: var(--neon-green);
    margin-bottom: 4rem;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.contact-details p {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #ddd;
}

.contact-form {
    max-width: 700px; /* Wider form */
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1.2rem;
    border: 1px solid var(--neon-blue); /* Neon border */
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    background-color: #222;
    color: var(--accent-white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 0 4px rgba(57, 255, 20, 0.3);
}

.contact-form button {
    background-color: var(--neon-green);
    color: var(--accent-charcoal);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
}

.contact-form button:hover {
    background-color: var(--neon-blue);
    color: var(--accent-white);
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.7);
}

.google-map {
    margin-top: 4rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
    border: 2px solid var(--neon-blue);
}

.google-map iframe {
    border-radius: 20px;
}

/* Footer */
footer {
    background-color: var(--accent-charcoal);
    color: var(--accent-white);
    padding: 3rem 0;
    text-align: center;
    border-top: 2px solid var(--neon-green);
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-links p {
    margin: 0;
    font-weight: 600;
    color: var(--neon-green);
}

.social-links a img {
    height: 35px;
    width: 35px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%); /* White icons */
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-links a img:hover {
    transform: scale(1.2);
    filter: brightness(0) saturate(100%) invert(70%) sepia(100%) saturate(500%) hue-rotate(80deg) brightness(100%) contrast(100%); /* Neon green on hover */
}

/* Back to Top Button */
#backToTopBtn {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--neon-green);
    color: var(--accent-charcoal);
    cursor: pointer;
    padding: 18px 22px;
    border-radius: 50%; /* Circular button */
    font-size: 20px;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.7);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

#backToTopBtn:hover {
    background-color: var(--neon-blue);
    color: var(--accent-white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 1.5rem;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .about-text h2, .menu-section h2, .gallery-section h2, .contact-section h2 {
        font-size: 2.8rem;
    }

    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 1rem 1.5rem;
    }

    .nav-links {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links li {
        margin: 0.5rem 0.8rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .about-content {
        flex-direction: column;
        gap: 2rem;
    }

    .about-text, .about-image {
        min-width: unset;
        width: 100%;
    }

    .about-image img {
        margin-top: 2rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .contact-form {
        padding: 0 1rem;
    }

    .contact-form input, .contact-form textarea {
        padding: 1rem;
    }

    .contact-form button {
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

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

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

    .nav-links a {
        padding: 0.5rem 0.8rem;
        font-size: 0.9rem;
    }

    .about-text h2, .menu-section h2, .gallery-section h2, .contact-section h2 {
        font-size: 2rem;
    }

    .menu-item h3 {
        font-size: 2.4rem;
    }

    .menu-item p {
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 180px;
    }

    .contact-form input, .contact-form textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .contact-form button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    #backToTopBtn {
        bottom: 15px;
        right: 15px;
        padding: 10px 12px;
        font-size: 14px;
    }
}

@media (max-width: 375px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .nav-links li {
        margin: 0.3rem 0.5rem;
    }

    .about-text h2, .menu-section h2, .gallery-section h2, .contact-section h2 {
        font-size: 1.8rem;
    }
}

/* Roles Section */
.roles-section {
    padding: 6rem 0;
    background-color: var(--accent-charcoal);
    color: var(--accent-white);
    text-align: center;
}

.roles-section h2 {
    font-size: 3rem;
    color: var(--neon-green);
    margin-bottom: 4rem;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

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

.role-item {
    background-color: #1a1a1a;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    padding: 2rem;
    text-align: left;
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.role-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4), 0 0 15px rgba(57, 255, 20, 0.4);
}

.role-item h3 {
    font-size: 1.8rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
}

.role-item p {
    font-size: 1.1rem;
    color: #bbb;
}

/* Employee Info Section */
.employee-info-section {
    padding: 6rem 0;
    background-color: #121212;
    color: var(--accent-white);
    text-align: center;
}

.employee-info-section h2 {
    font-size: 3rem;
    color: var(--neon-green);
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.employee-info-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.8;
    color: #ddd;
}

.contact-form {
    max-width: 700px; /* Wider form */
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1.2rem;
    border: 1px solid var(--neon-blue); /* Neon border */
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    background-color: #222;
    color: var(--accent-white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 0 4px rgba(57, 255, 20, 0.3);
}

.contact-form button {
    background-color: var(--neon-green);
    color: var(--accent-charcoal);
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
}

.contact-form button:hover {
    background-color: var(--neon-blue);
    color: var(--accent-white);
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.7);
}

.google-map {
    margin-top: 4rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
    border: 2px solid var(--neon-blue);
}

.google-map iframe {
    border-radius: 20px;
}

@media (max-width: 768px) {
    .role-grid {
        grid-template-columns: 1fr;
    }

    .role-item {
        padding: 1.5rem;
    }

    .role-item h3 {
        font-size: 1.5rem;
    }

    .role-item p {
        font-size: 1rem;
    }

    .employee-info-section p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .employee-info-section h2, .roles-section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .roles-section h2, .employee-info-section h2 {
        font-size: 2rem;
    }

    .role-item h3 {
        font-size: 1.3rem;
    }

    .role-item p {
        font-size: 0.9rem;
    }

    .employee-info-section p {
        font-size: 0.9rem;
    }

    .employee-info-section table {
        min-width: 400px;
    }
}

/* Salary Table Styles */
.salary-table-container {
    margin-top: 3rem;
    overflow-x: auto; /* Allows table to scroll horizontally on small screens */
    border: 1px solid var(--neon-blue);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.salary-table-container table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Ensure table is readable on smaller screens */
}

.salary-table-container th,
.salary-table-container td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.salary-table-container th {
    background-color: var(--neon-blue);
    color: var(--accent-charcoal);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.salary-table-container tr:nth-child(even) {
    background-color: rgba(0, 255, 255, 0.05); /* Subtle stripe effect */
}

.salary-table-container tr:hover {
    background-color: rgba(0, 255, 255, 0.1);
}

.salary-table-container td {
    color: #ddd;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .salary-table-container {
        margin-top: 2rem;
    }

    .salary-table-container th,
    .salary-table-container td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .salary-table-container {
        margin-top: 2rem;
    }

    .salary-table-container th,
    .salary-table-container td {
        padding: 0.6rem;
        font-size: 0.8rem;
    }

    .salary-table-container table {
        min-width: 400px;
    }
}

.nav-links li a {
    color: var(--accent-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.7rem 1.5rem; /* Increased padding for button feel */
    border-radius: 25px; /* More rounded corners for button look */
    border: 2px solid var(--neon-blue); /* Blue border */
    background-color: rgba(0, 255, 255, 0.1); /* Slightly transparent background */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-links li a:hover {
    background-color: var(--neon-blue); /* Change background on hover */
    color: var(--accent-charcoal); /* Change text color on hover */
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.6); /* Add a glow effect */
    transform: translateY(-2px); /* Slight lift effect */
}

.policy-section {
    margin-top: 40px;
    padding: 20px;
    background-color: var(--dark-background);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 2.2em;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.policy-section details {
    background-color: var(--accent-charcoal);
    border: 1px solid var(--neon-blue);
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.policy-section details:hover {
    background-color: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.4);
}

.policy-section summary {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--neon-blue);
    outline: none;
    padding: 5px 0;
}

.policy-section details[open] summary {
    color: var(--primary-color);
}

.policy-section p {
    font-size: 1.1em;
    color: var(--light-text-color);
    line-height: 1.6;
    margin-top: 15px;
    padding-left: 10px;
    border-left: 3px solid var(--primary-color);
}

/* Bottom Navigation for Mobile */
.bottom-nav {
    display: none; /* Hidden by default, shown on mobile */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
    padding: 5px 0;
    border-top: 1px solid var(--neon-green);
}

.bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--light-text);
    font-size: 0.7em;
    padding: 5px;
    transition: color 0.3s ease;
}

.bottom-nav .nav-item:hover {
    color: var(--neon-green);
}

.bottom-nav .nav-item img {
    width: 24px;
    height: 24px;
    margin-bottom: 3px;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%); /* White icon */
}

.bottom-nav .nav-item:hover img {
    filter: invert(70%) sepia(90%) saturate(400%) hue-rotate(80deg) brightness(120%) contrast(100%); /* Neon green on hover */
}

/* Media query to show bottom nav and hide top nav on small screens */
@media (max-width: 768px) {
    header nav ul.nav-links {
        display: none;
    }

    .bottom-nav {
        display: flex;
        flex-direction: row;
    }

    header nav .logo {
        width: 100%;
        text-align: center;
    }

    header nav .logo img {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .role-grid {
        grid-template-columns: 1fr;
    }

    .role-item {
        padding: 1.5rem;
    }

    .role-item h3 {
        font-size: 1.5rem;
    }

    .role-item p {
        font-size: 1rem;
    }

    .employee-info-section p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .employee-info-section h2, .roles-section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .roles-section h2, .employee-info-section h2 {
        font-size: 2rem;
    }

    .role-item h3 {
        font-size: 1.3rem;
    }

    .role-item p {
        font-size: 0.9rem;
    }

    .employee-info-section p {
        font-size: 0.9rem;
    }

    .employee-info-section table {
        min-width: 400px;
    }
}

/* Salary Table Styles */
.salary-table-container {
    margin-top: 3rem;
    overflow-x: auto; /* Allows table to scroll horizontally on small screens */
    border: 1px solid var(--neon-blue);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.salary-table-container table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Ensure table is readable on smaller screens */
}

.salary-table-container th,
.salary-table-container td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.salary-table-container th {
    background-color: var(--neon-blue);
    color: var(--accent-charcoal);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
}

.salary-table-container tr:nth-child(even) {
    background-color: rgba(0, 255, 255, 0.05); /* Subtle stripe effect */
}

.salary-table-container tr:hover {
    background-color: rgba(0, 255, 255, 0.1);
}

.salary-table-container td {
    color: #ddd;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .salary-table-container {
        margin-top: 2rem;
    }

    .salary-table-container th,
    .salary-table-container td {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .salary-table-container {
        margin-top: 2rem;
    }

    .salary-table-container th,
    .salary-table-container td {
        padding: 0.6rem;
        font-size: 0.8rem;
    }

    .salary-table-container table {
        min-width: 400px;
    }
}

.nav-links li a {
    color: var(--accent-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.7rem 1.5rem; /* Increased padding for button feel */
    border-radius: 25px; /* More rounded corners for button look */
    border: 2px solid var(--neon-blue); /* Blue border */
    background-color: rgba(0, 255, 255, 0.1); /* Slightly transparent background */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-links li a:hover {
    background-color: var(--neon-blue); /* Change background on hover */
    color: var(--accent-charcoal); /* Change text color on hover */
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.6); /* Add a glow effect */
    transform: translateY(-2px); /* Slight lift effect */
}

.partner-info-container {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--dark-background);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.partner-info-container h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-bottom: 15px;
    text-align: center;
}

.partner-info-container ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.partner-info-container li {
    color: var(--light-text-color);
    font-size: 1.1em;
    margin-bottom: 10px;
}