/* Global Styles */
* {
    box-sizing: border-box;
}

:root {
    --primary-color: #ffd700;
    --text-color: #000000;
    --bg-color: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 72px 0 0 0;
    /* Adjusted to account for fixed nav */
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    text-align: center;
}

/* Navigation Styles */
nav {
    background-color: var(--text-color);
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 72px;
    /* Explicitly set height */
}

nav .logo {
    margin-right: auto;
    padding-left: 20px;
}

nav .logo img {
    height: 40px;
    width: auto;
    display: block;
    /* This removes any extra space below the image */
    margin: 0 auto;
    /* This centers the image within its container */
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0;
    width: 100%;
}

nav a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--bg-color);
}

/* Hamburger menu icon */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero Section Styles */
#dynamic-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 72px);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 60%, rgba(255, 215, 0, 0.08) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#dynamic-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

#dynamic-hero .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

#dynamic-hero .hero-content {
    text-align: center;
    color: var(--bg-color);
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    box-sizing: border-box;
    position: relative;
}

#dynamic-hero h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    letter-spacing: -1px;
}

#dynamic-hero p {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

#dynamic-hero button {
    padding: 0.85rem 2.5rem;
    font-size: 1.2rem;
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#dynamic-hero button:hover {
    background-color: var(--bg-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    nav {
        padding: 0.5rem 0;
        height: 60px;
        /* Adjust height for smaller screens */
    }

    body {
        padding-top: 60px;
        /* Adjust for new nav height */
    }

    #dynamic-hero {
        height: calc(100vh - 60px);
    }

    #dynamic-hero h1 {
        font-size: 3rem;
    }

    #dynamic-hero p {
        font-size: 1.4rem;
    }

    #dynamic-hero button {
        font-size: 1.1rem;
        padding: 0.75rem 2rem;
    }
}

/* Media query for very small screens */
@media (max-width: 480px) {
    nav {
        padding: 0.3rem 0;
        height: 50px;
        /* Further adjust height for very small screens */
    }

    body {
        padding-top: 50px;
        /* Adjust for new nav height */
    }

    #dynamic-hero {
        height: calc(100vh - 50px);
    }

    #dynamic-hero h1 {
        font-size: 2.5rem;
    }

    #dynamic-hero p {
        font-size: 1.2rem;
    }

    #dynamic-hero .hero-content {
        padding: 0 20px;
    }

    #dynamic-hero button {
        font-size: 1rem;
        padding: 0.7rem 1.8rem;
    }
}

/* Home Section Styles */
#home {
    padding: 50px 20px;
    text-align: center;
}

.image-gallery {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 20px 0;
}

.image-gallery img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin: 10px;
    transition: transform 0.3s ease;
}

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

/* Partners & Clients Section Styles */
#partners {
    padding: 50px 20px;
    background-color: var(--bg-color);
}

.partners-clients {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.partner img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner img:hover {
    filter: grayscale(0%);
}

/* Testimonial Styles */
.testimonials {
    margin: 40px 0;
    padding: 20px;
    background-color: var(--bg-color);
    position: relative;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    min-height: 200px;
    /* Ensure minimum height for content */
}

.testimonial-slider h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    text-align: center;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-card {
    background-color: var(--text-color);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid var(--bg-color);
}

.testimonial-info h3 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--bg-color);
}

.testimonial-info p {
    font-size: 0.9rem;
    margin: 0.25rem 0;
    color: var(--primary-color);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--bg-color);
}

.testimonial-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.testimonial-nav {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.testimonial-nav:hover {
    background-color: var(--text-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.testimonial-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.testimonial-indicator:hover {
    transform: scale(1.2);
}

.testimonial-indicator.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .testimonial-slider {
        padding: 10px;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-image {
        width: 60px;
        height: 60px;
    }

    .testimonial-nav {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .testimonial-indicator {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }
}

/* Map Container Styles */
.map-container {
    margin: 30px 0;
    /* border: 2px solid var(--primary-color);*/
    border-radius: 10px;
    overflow: hidden;
}

/* Footer Styles */
footer {
    background: var(--text-color);
    color: var(--primary-color);
    padding: 20px;
    text-align: center;
}

footer .social-media a {
    margin: 0 10px;
    color: var(--primary-color);
    font-size: 20px;
    transition: color 0.3s;
}

footer .social-media a:hover {
    color: var(--bg-color);
}

#scrollToTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #858484;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
}

#scrollToTop:hover {
    background-color: var(--primary-color);
}

/* Team Section Styles */
#team {
    padding: 50px 20px;
    background-color: var(--bg-color);
    text-align: center;
}

#team h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 300px));
    gap: 30px;
    justify-content: center;
}

.team-member {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 4px solid var(--primary-color);
}

.team-member h3 {
    margin: 10px 0 5px 0;
    font-size: 20px;
}

.team-member p {
    font-size: 16px;
    color: var(--primary-color);
}

/* Modal Styles */
.team-modal {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.team-modal .modal-content {
    background-color: var(--bg-color);
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-modal .close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-color);
}

.team-modal h2 {
    margin-bottom: 15px;
}

.linkedin-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary-color);
    font-size: 18px;
}

.linkedin-link i {
    margin-right: 8px;
}

/* Modal Active State */
.team-modal.active {
    display: flex;
}

/* Contact Page Styles */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info,
.contact-form {
    flex: 1;
    padding: 1rem;
    min-width: 300px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: 1px solid var(--text-color);
    border-radius: 4px;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-size: 1rem;
}

.contact-form button {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: none;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 4px;
}

.contact-form button:hover {
    background-color: var(--text-color);
    color: var(--primary-color);
}

.contact-form .success-message,
.contact-form .error-message {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
}

.contact-form .success-message {
    background-color: var(--primary-color);
    color: var(--text-color);
    border: 1px solid var(--text-color);
}

.contact-form .error-message {
    background-color: var(--text-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.error-message {
    color: red;
    font-size: 0.8em;
    margin-top: 5px;
}

.social-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    margin-top: 0.5rem;
}

.social-link:hover {
    background-color: var(--text-color);
    color: var(--primary-color);
}

/* Video Container Styles */
.video-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    width: 100%;
    max-width: 800px;
}

.video-container h2 {
    color: var(--text-color);
    margin-bottom: 15px;
    text-align: center;
}

.video-container iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border: none;
}

/* Styles for About Us Page */
#about {
    background: url('/images/General Mine Site/mine pit.png') no-repeat center center/cover;
    color: var(--text-color);
    padding: 50px 20px;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: var(--bg-color);
    border: 4px solid var(--primary-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid var(--primary-color);
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--primary-color);
}

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid var(--primary-color);
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--primary-color) transparent transparent;
}

.right::after {
    left: -16px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--bg-color);
    position: relative;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.value-item {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    background-color: var(--text-color);
    color: var(--primary-color);
}

.value-item h3 {
    margin-top: 0;
}

/* Careers Page Styles */
#careers {
    padding: 50px 20px;
    text-align: center;
}

#careers h1 {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

/* Diversity Statement Styles */
.diversity-statement {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 10px;
    margin: 30px auto;
    max-width: 800px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    border: 2px solid var(--primary-color);
}

.diversity-statement h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.diversity-statement p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* About Page - Diversity Statement Styles */

.diversity-inclusion {
    max-width: fit-content;
    margin: 40px auto;
    background-color: var(--bg-color);
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.diversity-inclusion h2 {
    color: var(--primary-color);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.diversity-inclusion p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.diversity-inclusion ul {
    list-style-type: none;
    padding: 0;
}

.diversity-inclusion li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.diversity-inclusion li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.highlight {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
}

/* Updated Job Listings Styles */
.job-listings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.job-card {
    background-color: var(--bg-color);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--primary-color);
}

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

.job-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.job-card .location {
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.job-card .location i {
    margin-right: 10px;
    color: var(--primary-color);
}

.job-card p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.5;
}

.apply-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.apply-btn:hover {
    background-color: var(--text-color);
    color: var(--primary-color);
}

/* Employee Spotlight Styles */
#employee-spotlight {
    padding: 50px 20px;
    background-color: var(--bg-color);
    text-align: center;
}

#employee-spotlight h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 30px;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-content: center;
}

.spotlight-card {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.spotlight-card:hover {
    transform: translateY(-5px);
}

.spotlight-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.spotlight-card h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.spotlight-card p {
    font-style: italic;
    color: #666;
    margin-bottom: 10px;
}

.spotlight-card q {
    display: block;
    font-style: italic;
    color: #333;
}

/* Application Form Styles */
.application-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background-color: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.application-form h2 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-color);
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

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

.submit-btn {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--text-color);
    color: var(--primary-color);
}

/* Prevent image selection but allow interactions */
img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -ms-user-drag: none;
}

/* Success Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.modal-content i.fa-check-circle {
    color: #4CAF50;
    font-size: 50px;
    margin-bottom: 20px;
}

.modal-content h2 {
    color: #333;
    margin-bottom: 20px;
}

.additional-info {
    background-color: #e9f7ef;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}

.additional-info p {
    margin: 10px 0;
}

.additional-info i {
    margin-right: 10px;
    color: #4CAF50;
}

.close-btn {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.close-btn:hover {
    background-color: #45a049;
}

@media (max-width: 768px) {
    .modal-content {
        width: 90%;
        margin: 20% auto;
    }
}

/* SEO Optimization */
#about-banangi {
    padding: 40px 0;
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

#about-banangi .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

#about-banangi .bg-accent {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 140%;
    background-color: var(--primary-color);
    opacity: 0.1;
    transform: rotate(-15deg);
    z-index: 1;
}

#about-banangi .intro-block {
    max-width: 60%;
    margin-bottom: 60px;
}

#about-banangi .section-title {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

#about-banangi .intro-text {
    font-size: 1.2rem;
    color: var(--text-color);
    line-height: 1.6;
}

#about-banangi .services-showcase {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

#about-banangi .service-highlight {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#about-banangi .service-image {
    height: 400px;
    background-size: cover;
    background-position: center;
}

#about-banangi .service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}

#about-banangi .service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

#about-banangi .services-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

#about-banangi .service-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#about-banangi .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

#about-banangi .service-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

#about-banangi .service-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

#about-banangi .service-card p {
    font-size: 0.9rem;
    color: #666;
}

#about-banangi .cta-section {
    text-align: right;
    max-width: 50%;
    margin-left: auto;
}

#about-banangi .cta-section p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

#about-banangi .cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#about-banangi .cta-button:hover {
    background-color: var(--text-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    #about-banangi .intro-block {
        max-width: 100%;
    }

    #about-banangi .services-showcase {
        flex-direction: column;
    }

    #about-banangi .cta-section {
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    #about-banangi .section-title {
        font-size: 2.5rem;
    }

    #about-banangi .services-grid {
        grid-template-columns: 1fr;
    }
}

/* SEO end */

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

    nav .logo {
        margin-bottom: 1rem;
        padding-left: 0;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

    nav ul li {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }

    #dynamic-hero h1 {
        font-size: 2rem;
    }

    #dynamic-hero p {
        font-size: 1rem;
    }

    .testimonial-slider {
        padding: 2rem 1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-image {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::before {
        left: 60px;
        border: medium solid var(--primary-color);
        border-width: 10px 10px 10px 0;
        border-color: transparent var(--primary-color) transparent transparent;
    }

    .left::after,
    .right::after {
        left: 15px;
    }

    .right {
        left: 0%;
    }

    .diversity-statement {
        padding: 20px;
        margin: 20px 15px;
    }

    .diversity-statement h2 {
        font-size: 1.75rem;
    }

    .diversity-statement p {
        font-size: 1rem;
    }

    .job-listings {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 15px;
    }

    .job-card {
        padding: 20px;
    }

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

    .application-form {
        padding: 20px;
        margin: 20px 15px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.25rem;
    }

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

    .timeline-item {
        padding-left: 50px;
    }

    .timeline::after {
        left: 21px;
    }

    .timeline-item::before {
        left: 50px;
    }

    .left::after,
    .right::after {
        left: 5px;
    }
}

/* Nav Responsive adjustments */
@media (max-width: 768px) {
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1rem;
        height: 60px;
        background-color: var(--text-color);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    nav .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    nav .logo img {
        height: 40px;
        width: auto;
    }

    .nav-toggle {
        display: block;
        background: none;
        border: none;
        color: var(--primary-color);
        font-size: 1.8rem;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
        position: absolute;
        right: 20px;
        /* Ensure 20px from right edge */
        top: 50%;
        transform: translateY(-50%);
    }

    nav ul {
        display: block;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: auto;
        max-height: 0;
        /* Animated height instead of left */
        overflow: hidden;
        background-color: var(--text-color);
        flex-direction: column;
        padding: 0;
        margin: 0;
        transition: max-height 0.4s ease-in-out;
        z-index: 1000;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    nav ul.active {
        display: flex;
        /* Keep flex for column layout */
        max-height: 100vh;
        /* Allow expansion */
        border-bottom: 2px solid var(--primary-color);
    }

    nav ul li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        /* Subtle gold divider */
        text-align: center;
    }

    nav a {
        color: #fff;
        /* White text for contrast */
        display: block;
        padding: 15px 1rem;
        font-size: 1.1rem;
        text-align: center;
        letter-spacing: 1px;
    }

    nav a:hover,
    nav a.active {
        background-color: rgba(255, 215, 0, 0.1);
        color: var(--primary-color);
    }
}