    body {
        margin: 0;
        font-family: var(--font-body);
        background: var(--bg-gradient);
        color: var(--text-main);
        overflow-x: hidden;
        background-size: 400% 400%;
        animation: gradient 15s ease infinite;
    }

    @keyframes gradient {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    .home-section {
        width: 100%;
        box-sizing: border-box;
    }

    #home-section-1 {
        height: 100vh;
        /* Full screen height */
        position: relative;
        overflow: hidden;
        /* Hide anything that goes outside the section */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #bg-video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: -1;
        transform: translateX(-50%) translateY(-50%);
        filter: brightness(var(--video-brightness));
        /* Darken the video */
    }

    #home-section-1::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 30%;
        /* Adjust the height of the fade */
        background: linear-gradient(to top, var(--tint-color), transparent);
        z-index: 1;
    }

    .video-overlay-text {
        position: relative;
        z-index: 2;
        text-align: center;
        color: var(--text-main);
    }

    .video-overlay-text h1 {
        font-size: 4rem;
        font-family: var(--font-headings);
    }

    .video-overlay-text p {
        font-size: 1.2rem;
        margin-top: 1rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    #home-section-2 {
        padding: 5rem 2rem;
        text-align: center;
    }

    .section-title {
        font-size: 3rem;
        font-weight: bold;
        margin-bottom: 3rem;
        font-family: var(--font-headings);
        text-align: center;
    }

    .projects-grid {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
        align-items: start;
    }

    .project-card {
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .project-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .project-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

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

    .project-card.large {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
        height: 600px;
    }

    .project-card.small {
        height: 290px;
    }

    .project-card.small:nth-of-type(2) {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .project-card.small:nth-of-type(3) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .project-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1.5rem;
        background: rgba(0, 0, 0, 0.5);
        color: var(--text-main);
        transform: translateY(100%);
        transition: transform 0.5s ease;
    }

    .project-card:hover .project-info {
        transform: translateY(0);
    }

    .project-info h3 {
        margin: 0 0 0.5rem 0;
        font-size: 1.75rem;
        font-family: var(--font-headings);
    }

    .project-info p {
        margin: 0 0 1rem 0;
        font-size: 1rem;
    }

    .learn-more-btn,
    .learn-more-link {
        color: var(--text-main);
        text-decoration: none;
        font-weight: bold;
        display: inline-block;
        transition: color 0.3s ease;
    }

    .learn-more-btn {
        background-color: var(--btn-bg);
        padding: 0.5rem 1rem;
        border-radius: 5px;
    }

    .learn-more-btn:hover {
        background-color: var(--btn-hover);
    }

    .learn-more-link:hover {
        text-decoration: underline;
    }

    #home-section-3 {
        padding: 5rem 2rem;
        text-align: center;
    }

    .carousel-container {
        position: relative;
        width: 100%;
        max-width: 1400px;
        /* Increased width */
        margin: 0 auto;
        height: 500px;
        /* Set a fixed height */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .carousel-track {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .carousel-card {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 33.333%;
        max-width: 400px;
        transform: translate(-50%, -50%);
        transition: all 0.5s ease-in-out;
        opacity: 0;
        z-index: 1;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 15px;
        overflow: hidden;
    }

    .carousel-card.active {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        z-index: 3;
    }

    .carousel-card.prev {
        transform: translate(-140%, -50%) scale(0.8);
        /* Increased from -120% */
        opacity: 0.5;
        z-index: 2;
    }

    .carousel-card.next {
        transform: translate(40%, -50%) scale(0.8);
        /* Increased from 20% */
        opacity: 0.5;
        z-index: 2;
    }

    .carousel-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 10px;
        transition: transform 0.3s ease;
    }

    .carousel-card:hover img {
        transform: scale(1.05);
    }

    .card-content {
        padding: 1.5rem;
        text-align: left;
    }

    .card-content h3 {
        font-family: var(--font-headings);
        font-size: 1.5rem;
        margin: 0 0 1rem 0;
        min-height: 80px;
        /* Ensure consistent height */
    }

    .read-more-btn {
        background-color: var(--btn-bg);
        color: var(--text-main);
        padding: 0.75rem 1.5rem;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        display: inline-block;
        transition: background-color 0.3s ease;
    }

    .read-more-btn:hover {
        background-color: var(--btn-hover);
    }

    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(255, 255, 255, 0.1);
        /* Lighter background */
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        color: var(--text-main);
        /* White color for arrows */
        cursor: pointer;
        z-index: 10;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .carousel-btn:hover {
        background-color: rgba(255, 255, 255, 0.3);
        /* Lighter hover */
    }

    .prev-btn {
        left: -50px;
        /* Further away */
    }

    .next-btn {
        right: -50px;
        /* Further away */
    }

    .main-header {
        position: fixed;
        top: 20px;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        /* Keep space-between for logo left, switcher right */
        align-items: center;
        z-index: 100;
        padding: 0 5%;
        box-sizing: border-box;
        transition: top 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        /* Smooth slide transition */
        gap: 10px;
        /* Keep gap for spacing */
    }

    .main-header.header-hidden {
        top: -150px;
        /* Hides the header by moving it up */
    }

    .header-logo {
        width: 50px;
        height: 50px;
        cursor: pointer;
    }

    .top-bar {
        flex-grow: 1;
        max-width: 800px;
        /* Increased width */
        display: flex;
        justify-content: space-around;
        /* Changed back to space-around for menu items */
        align-items: center;
        margin: 0 auto;
        /* Centered the top bar */
        position: relative;
        /* For the slider */
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        /* Line instead of bubble */
        padding-bottom: 10px;
    }

    .contact-link {
        color: var(--text-main);
        /* Changed color */
        text-decoration: none;
        font-weight: bold;
    }

    .language-switcher {
        display: flex;
        gap: 10px;
        margin-left: 20px;
    }

    .lang-button {
        background-color: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: var(--text-main);
        padding: 5px 10px;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s ease, border-color 0.3s ease;
    }

    .lang-button:hover {
        background-color: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
    }

    .lang-button.active {
        background-color: var(--primary-highlight);
        color: black;
        border-color: var(--primary-highlight);
    }

    .nav-item {
        color: var(--text-main);
        /* Changed color */
        text-decoration: none;
        padding: 10px 20px;
        transition: color 0.3s, transform 0.3s;
        /* Added transform transition */
        position: relative;
        z-index: 1;
        cursor: pointer;
    }

    .nav-item:not(.active):hover {
        color: var(--primary-highlight);
        /* Highlight color on hover */
        transform: translateY(-3px);
        /* Float effect */
    }

    .dropdown {
        position: relative;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--dropdown-bg);
        /* Dark dropdown */
        backdrop-filter: blur(10px);
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 1;
        border-radius: 10px;
        padding: 10px 0;
    }

    .dropdown-content a {
        color: var(--text-main);
        /* White text in dropdown */
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

    .dropdown-content a:hover {
        background-color: rgba(0, 0, 0, 0.1);
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .nav-slider {
        position: absolute;
        height: 2px;
        /* Thin line */
        bottom: -1px;
        /* Position on the border line */
        left: 0;
        background-color: var(--primary-highlight);
        /* Highlight color */
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        z-index: 2;
    }

    .hidden {
        display: none;
    }

    @keyframes landingAnimation {
        0% {
            opacity: 0;
            transform: scale(1);
        }

        60% {
            opacity: 1;
            transform: scale(1);
        }

        100% {
            opacity: 1;
            transform: scale(0.75);
        }
    }

    @keyframes rotate {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(90deg);
        }
    }

    @keyframes floatUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .main-footer-container {
        font-family: var(--font-body);
        color: var(--text-main);
    }

    .main-footer-content {
        background-color: #0a2a43;
        display: flex;
        justify-content: space-between;
        padding: 60px 12% 40px;
        border-bottom: 1px solid var(--footer-border);
    }

    .footer-left {
        flex-basis: 28%;
        text-align: left;
    }

    .footer-logo {
        width: 90px;
        margin-bottom: 25px;
    }

    .footer-left p {
        margin: 12px 0;
        font-size: 0.85rem;
        line-height: 1.6;
        color: var(--text-secondary);
    }

    .footer-left p:first-of-type {
        color: var(--text-main);
    }

    .social-icons {
        margin-top: 25px;
    }

    .social-icons span {
        margin-right: 10px;
        font-size: 0.85rem;
    }

    .social-icons a {
        margin-right: 10px;
        display: inline-block;
        vertical-align: middle;
    }

    .social-icons img {
        width: 22px;
        height: 22px;
    }

    .footer-right {
        flex-basis: 68%;
    }

    .sitemap {
        display: flex;
        justify-content: space-between;
    }

    .sitemap-col {
        flex-basis: 19%;
        text-align: left;
    }

    .sitemap-col h4 {
        font-size: 0.9rem;
        font-weight: bold;
        margin-bottom: 20px;
        position: relative;
        padding-left: 15px;
        color: var(--text-main);
    }

    .sitemap-col h4::before {
        content: '|';
        color: var(--primary-highlight);
        position: absolute;
        left: 0;
    }

    .sitemap-col a {
        display: block;
        color: var(--text-secondary);
        text-decoration: none;
        margin-bottom: 12px;
        font-size: 0.85rem;
    }

    .sitemap-col a:hover {
        color: var(--text-main);
        text-decoration: underline;
    }

    .footer-bottom {
        background-color: transparent;
        color: var(--text-muted);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 12%;
        font-size: 0.8rem;
    }

    .footer-bottom-links a {
        color: var(--text-muted);
        text-decoration: none;
        margin-left: 25px;
    }

    .footer-bottom-links a:hover {
        color: var(--text-main);
        text-decoration: underline;
    }

    /* Development Page Specific Styles */
    .development-page {
        padding: 120px 5% 50px;
        text-align: center;
    }

    .corporate-page {
        padding: 120px 5% 50px;
        text-align: center;
        min-height: 100vh;
    }

    .dev-tabs {
        margin-bottom: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        /* Matching header menu line */
        display: inline-block;
    }

    .dev-tab-button {
        background: none;
        border: none;
        padding: 15px 30px;
        font-size: 1.1rem;
        cursor: pointer;
        position: relative;
        color: var(--text-muted);
        /* Changed color for dark theme */
        transition: color 0.3s ease;
    }

    .dev-tab-button.active {
        color: var(--text-main);
        /* Changed color for dark theme */
    }

    .dev-tab-button::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--primary-highlight);
        /* Yellow underline */
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .dev-tab-button.active::after {
        transform: scaleX(1);
    }

    .dev-tab-content {
        display: none;
        animation: fadeInDown 0.6s forwards;
    }

    .dev-tab-content.active {
        display: block;
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .dev-project-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .dev-project-card {
        background: var(--card-bg);
        /* Darker card background */
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        text-align: left;
        color: var(--text-main);
        /* Ensure text is white */
    }

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

    .dev-project-card h3 {
        padding: 15px 20px 10px;
        font-size: 1.2rem;
        color: var(--text-main);
        /* Ensure heading is white */
    }

    .dev-project-card .learn-more-btn {
        margin: 0 20px 20px;
        display: inline-block;
    }

    .dev-future-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .dev-future-card {
        display: block;
        /* Changed from flex to block for vertical layout */
        background: var(--card-bg);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        text-align: left;
        color: var(--text-main);
    }

    .dev-future-card:nth-child(even) {
        /* flex-direction: row-reverse; Removed */
    }

    .dev-future-card img {
        width: 100%;
        /* Full width image */
        height: 220px;
        /* Fixed height like other cards */
        object-fit: cover;
        border-radius: 0;
        /* Remove border radius since it's full width now */
    }

    .dev-future-info {
        padding: 20px;
        /* Add padding for content */
        flex: 1;
    }

    .dev-future-info h3 {
        font-size: 1.8rem;
        font-family: var(--font-headings);
        margin-bottom: 15px;
    }

    .dev-future-info p {
        font-size: 1rem;
        line-height: 1.7;
        color: var(--btn-hover);
    }

    /* News Page Specific Styles */
    .news-page {
        padding: 120px 5% 50px;
    }

    .page-title {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 40px;
        font-family: var(--font-headings);
    }

    .news-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .news-card {
        background: var(--card-bg);
        /* Darker card background */
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .news-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    }

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

    .news-content {
        padding: 25px;
    }

    .news-date {
        display: block;
        font-size: 0.8rem;
        color: #888;
        margin-bottom: 10px;
    }

    .news-content h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        line-height: 1.5;
        color: var(--text-main);
        /* Ensure text is white */
    }

    .news-content .read-more-btn {
        background-color: var(--btn-bg);
        color: var(--text-main);
        padding: 10px 20px;
    }

    /* What We Do Page Specific Styles */
    .what-we-do-page {
        padding: 120px 5% 50px;
    }

    .what-we-do-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .what-we-do-card {
        background: var(--card-bg);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .what-we-do-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    }

    .what-we-do-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .what-we-do-content {
        padding: 25px;
    }

    .what-we-do-content h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .what-we-do-content p {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-secondary);
        margin-bottom: 20px;
    }

    /* About Us Page Styles */
    .about-us-page {
        padding-top: 120px;
    }

    .about-us-page h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 40px;
        font-family: var(--font-headings);
    }

    .about-us-page section {
        padding: 60px 5%;
    }

    /* Our Story Section */
    .our-story {
        background-size: cover;
        background-position: center;
        color: var(--text-main);
        text-align: center;
        position: relative;
    }

    .our-story::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--tint-overlay);
    }

    .story-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
    }

    .story-content h1 {
        font-size: 3rem;
        font-family: var(--font-headings);
        margin-bottom: 20px;
    }

    .story-content p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .story-text-wrapper {
        max-height: 150px;
        /* Adjust as needed */
        overflow: hidden;
        transition: max-height 0.5s ease-in-out;
        position: relative;
    }

    .story-text-wrapper.expanded {
        max-height: 1000px;
        /* Adjust to fit all content */
    }

    .read-more-story {
        background: var(--primary-highlight);
        color: #0a2a43;
        border: none;
        padding: 10px 20px;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        margin-top: 20px;
        transition: background 0.3s;
    }

    .read-more-story:hover {
        background: var(--primary-highlight-hover);
    }


    /* Milestone Section */
    .milestone {
        background-color: transparent;
    }

    .timeline-container {
        overflow: hidden;
        position: relative;
        width: 100%;
        height: 200px;
        /* Adjust as needed */
    }

    .timeline-container::before,
    .timeline-container::after {
        content: '';
        position: absolute;
        top: 0;
        width: 100px;
        /* Adjust as needed */
        height: 100%;
        z-index: 2;
    }

    .timeline-container::before {
        left: 0;
        background: linear-gradient(to right, var(--tint-color), transparent);
    }

    .timeline-container::after {
        right: 0;
        background: linear-gradient(to left, var(--tint-color), transparent);
    }


    .timeline {
        display: flex;
        width: calc(280px * 8);
        /* 280px per item, 4 items duplicated */
        animation: scroll 20s linear infinite;
        padding-bottom: 20px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-280px * 4));
            /* scroll by the width of original items */
        }
    }

    .timeline-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 40px;
        position: relative;
    }

    .timeline-item::before {
        content: '';
        position: absolute;
        top: 25px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        border-top: 2px solid #ddd;
        z-index: -1;
    }

    .timeline-item:first-child::before {
        width: 50%;
        left: 50%;
    }

    .timeline-item:last-child::before {
        width: 50%;
        left: 0;
    }

    .timeline-year {
        background-color: #0a2a43;
        color: var(--text-main);
        padding: 10px 20px;
        border-radius: 20px;
        font-weight: bold;
        margin-bottom: 20px;
        z-index: 1;
    }

    .timeline-content {
        background: white;
        /* White card background */
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        text-align: center;
        width: 200px;
        color: black;
        /* Black text */
    }

    .timeline-content h3 {
        margin: 0 0 10px 0;
        font-size: 1.2rem;
        color: black;
        /* Ensure text is black */
    }

    /* Core Values Section */
    .core-values {
        background-color: transparent;
    }

    .core-values-container {
        display: flex;
        align-items: center;
        gap: 50px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .core-values-image {
        flex: 1;
    }

    .core-values-image img {
        width: 100%;
        border-radius: 10px;
    }

    .core-values-list {
        flex: 1.5;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .value-item {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .value-item img {
        width: 50px;
        height: 50px;
    }

    .value-item h4 {
        margin: 0 0 5px 0;
        font-size: 1.1rem;
    }

    .value-item p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--btn-hover);
    }

    /* Ancubic Culture Section */
    .ancubic-culture {
        background-color: transparent;
        text-align: center;
    }

    .culture-intro {
        max-width: 600px;
        margin: 0 auto 40px;
        color: var(--text-secondary);
        /* Lighter text for dark theme */
    }

    .culture-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        max-width: 1000px;
        margin: 0 auto;
    }

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

    .culture-item img {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .culture-item h4 {
        margin: 0;
        font-size: 1.1rem;
    }

    /* CSR Section */
    .csr {
        background-color: transparent;
        padding: 60px 5%;
    }

    .csr-container {
        display: flex;
        align-items: center;
        gap: 50px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .csr-content {
        flex: 1;
        text-align: left;
    }

    .csr-content h2 {
        text-align: left;
        margin-bottom: 20px;
    }

    .csr-content p {
        line-height: 1.7;
        color: var(--text-secondary);
        /* Lighter text for dark theme */
        margin-bottom: 30px;
    }

    .view-gallery-btn {
        background: transparent;
        border: 1px solid white;
        /* White border */
        color: var(--text-main);
        /* White text */
        padding: 10px 20px;
        border-radius: 20px;
        cursor: pointer;
        font-weight: bold;
        transition: background 0.3s, color 0.3s;
        text-decoration: none;
    }

    .view-gallery-btn:hover {
        background: white;
        color: black;
    }

    .csr-slideshow {
        flex: 1.5;
    }

    .slideshow-container {
        max-width: 1000px;
        position: relative;
        margin: auto;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .slideshow-container .prev,
    .slideshow-container .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        padding: 16px;
        margin-top: -22px;
        color: var(--text-main);
        font-weight: bold;
        font-size: 18px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
        background-color: rgba(0, 0, 0, 0.3);
    }

    .slideshow-container .next {
        right: 0;
        border-radius: 3px 0 0 3px;
    }

    .slideshow-container .prev:hover,
    .slideshow-container .next:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

    .slide {
        display: none;
    }

    .fade {
        animation-name: fade;
        animation-duration: 1.5s;
    }

    @keyframes fade {
        from {
            opacity: .4
        }

        to {
            opacity: 1
        }
    }

    /* Leadership Page Specific Styles */
    .leadership-page {
        padding-top: 80px;
        /* Space for the fixed header */
    }

    .page-header {
        height: 40vh;
        background-size: cover;
        background-position: top;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 50px;
    }

    .header-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        padding-left: 10%;
    }

    .header-overlay h1 {
        color: var(--text-main);
        font-size: 3.5rem;
        font-family: var(--font-headings);
        font-weight: bold;
        border-left: 5px solid yellow;
        padding-left: 20px;
    }

    .leader-profile {
        padding: 4rem 8%;
        background-color: transparent;
    }

    .leader-card {
        display: flex;
        align-items: center;
        gap: 4rem;
        background-color: var(--card-bg-secondary);
        /* A lighter grey for the card */
        padding: 3rem;
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }

    .leader-card.datin {
        flex-direction: row-reverse;
        margin-top: 4rem;
        background-color: var(--card-bg-secondary);
        /* A lighter grey for the card */
    }

    .leader-image {
        flex: 1;
        max-width: 400px;
    }

    .leader-image img {
        width: 100%;
        border-radius: 10px;
    }

    .leader-info {
        flex: 1.5;
    }

    .leader-title {
        font-size: 1.2rem;
        color: var(--text-secondary);
        /* Lighter text */
        margin-bottom: 0.5rem;
    }

    .leader-info h3 {
        font-size: 2.5rem;
        font-family: var(--font-headings);
        margin-bottom: 0.5rem;
        color: var(--text-main);
        /* Ensure text is white */
    }

    .leader-role {
        font-size: 1.1rem;
        color: var(--primary-highlight);
        /* Highlight color */
        font-weight: bold;
        margin-bottom: 1.5rem;
    }

    .leader-message {
        font-size: 1rem;
        line-height: 1.8;
        color: var(--text-secondary);
        /* Lighter text */
        margin-bottom: 2rem;
    }

    .quote-box {
        position: relative;
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .quote-icon {
        font-family: var(--font-headings);
        font-size: 6rem;
        color: #e0e0e0;
        position: absolute;
    }

    .quote-icon.top {
        top: -1rem;
        left: -1rem;
    }

    .quote-icon.bottom {
        bottom: -3rem;
        right: -1rem;
    }

    .quote-box p {
        font-size: 1.1rem;
        line-height: 1.8;
        color: var(--text-main);
        /* Ensure text is white */
        font-style: italic;
    }

    .management-team {
        padding: 4rem 8%;
        text-align: center;
        background-color: transparent;
    }

    .team-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    .team-member-card {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

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

    .team-member-photo {
        height: 400px;
        background-size: cover;
        background-position: center;
        position: relative;
        display: flex;
        align-items: flex-end;
    }

    .team-member-info {
        background: linear-gradient(to top, var(--tint-card-overlay) 0%, transparent 100%);
        color: var(--text-main);
        padding: 1.5rem;
        width: 100%;
        box-sizing: border-box;
    }

    .team-member-info h4 {
        font-size: 1.5rem;
        font-family: var(--font-headings);
        margin: 0 0 0.5rem 0;
    }

    .team-member-info p {
        margin: 0 0 1rem 0;
    }

    /* Governance Page Specific Styles */
    .governance-page {
        padding-top: 80px;
        color: var(--text-main);
    }

    .board-section {
        padding: 4rem 8%;
        text-align: center;
    }

    .leader-profile-card {
        display: inline-block;
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        max-width: 350px;
    }

    .leader-profile-card img {
        width: 100%;
        display: block;
    }

    .leader-details {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, var(--tint-card-overlay) 0%, transparent 100%);
        color: var(--text-main);
        padding: 1.5rem;
    }

    .leader-details h3 {
        margin: 0 0 0.5rem 0;
        font-family: var(--font-headings);
    }

    .leader-details p {
        margin: 0 0 1rem 0;
    }

    .cg-statement-section {
        padding: 6rem 8%;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .cg-statement-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--tint-overlay);
        backdrop-filter: blur(5px);
    }

    .cg-statement-card {
        position: relative;
        z-index: 1;
        max-width: 500px;
        background-color: #0a2a43;
        color: var(--text-main);
        border-radius: 10px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }

    .cg-card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem;
        border-bottom: 1px solid var(--footer-border);
    }

    .cg-card-header h4 {
        margin: 0;
        font-size: 1.5rem;
    }

    .cg-links {
        list-style: none;
        padding: 1.5rem;
        margin: 0;
    }

    .cg-links li {
        margin-bottom: 1rem;
    }

    .cg-links a {
        color: var(--text-secondary);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .cg-links a:hover {
        color: var(--text-main);
    }

    .cg-links img {
        width: 20px;
        height: 20px;
        filter: invert(1);
    }

    /* Careers Page Hero Section */
    .hero-section {
        height: 100vh;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: flex-end;
        /* Align content to the bottom */
    }

    .hero-slideshow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

    .hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1.5s ease-in-out;
        filter: brightness(var(--video-brightness));
        /* Darken the image */
    }

    .hero-slide.active {
        opacity: 1;
    }

    .hero-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 30%;
        background: linear-gradient(to top, var(--tint-color), transparent);
        z-index: 1;
    }

    .hero-overlay-text {
        position: relative;
        z-index: 2;
        text-align: center;
        color: var(--text-main);
    }

    .hero-overlay-text.left-align {
        text-align: left;
        max-width: 50%;
        margin-right: auto;
        padding-left: 5%;
        padding-bottom: 10vh;
        /* Add some space from the bottom */
    }

    .hero-overlay-text h1 {
        font-size: 4rem;
        font-family: var(--font-headings);
    }

    .hero-overlay-text p {
        font-size: 1.2rem;
        line-height: 1.6;
        margin-top: 1rem;
    }

    /* Video Section */
    .video-section {
        padding: 4rem 2rem;
        background-color: transparent;
        text-align: center;
    }

    .video-container {
        position: relative;
        padding-bottom: 42.85%;
        /* 21:9 aspect ratio */
        height: 0;
        overflow: hidden;
        max-width: 1200px;
        /* Increased max-width for a wider look */
        margin: 0 auto;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    /* Testimonial Section */
    .testimonial-section {
        padding: 4rem 2rem;
        background-color: transparent;
        text-align: center;
    }

    .testimonial-carousel {
        max-width: 900px;
        /* Increased size */
        margin: 0 auto;
        position: relative;
        overflow: hidden;
        cursor: grab;
    }

    .testimonial-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .testimonial-slide {
        flex: 0 0 100%;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 2rem;
        text-align: left;
        padding: 0 1rem;
        /* Add some padding to prevent content touching the edges */
        box-sizing: border-box;
    }

    .testimonial-image {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        object-fit: cover;
        flex-shrink: 0;
    }

    .testimonial-content {
        position: relative;
    }

    .quote-icon-large {
        font-family: var(--font-headings);
        font-size: 5rem;
        color: #444;
        position: absolute;
        top: -2rem;
        left: -1rem;
        z-index: 0;
        opacity: 0.5;
    }

    .testimonial-comment {
        font-size: 1.1rem;
        line-height: 1.7;
        color: var(--text-secondary);
        position: relative;
        z-index: 1;
        margin-bottom: 1rem;
    }

    .testimonial-name {
        font-weight: bold;
        color: var(--text-main);
    }

    .testimonial-dots {
        margin-top: 2rem;
    }

    .dot {
        cursor: pointer;
        height: 12px;
        width: 12px;
        margin: 0 5px;
        background-color: #444;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.3s ease;
    }

    .dot.active,
    .dot:hover {
        background-color: var(--primary-highlight);
    }

    /* Job Listing Section */
    .job-listing-section {
        padding: 4rem 5%;
        background-color: transparent;
    }

    .job-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .job-card {
        background: var(--card-bg);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .job-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    }

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

    .job-content {
        padding: 25px;
    }

    .job-content h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        line-height: 1.5;
        color: var(--text-main);
        min-height: 70px;
        /* Ensure consistent card height */
    }

    .job-content .learn-more-btn {
        background-color: var(--btn-bg);
        color: var(--text-main);
        padding: 10px 20px;
    }

    /* Contact Page Specific Styles */
    .contact-page {
        padding-top: 80px;
        color: var(--text-main);
    }

    .contact-header {
        padding: 4rem 8%;
        background-color: transparent;
    }

    .contact-header h1 {
        font-family: var(--font-headings);
        font-size: 3.5rem;
        font-weight: bold;
        color: var(--text-main);
        border-left: 5px solid var(--primary-highlight);
        padding-left: 20px;
        margin: 0;
    }

    .contact-container-new {
        display: flex;
        max-width: 1200px;
        margin: 50px auto;
        background-color: var(--text-main);
        color: #000;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .contact-info-new {
        background-color: #0a2a43;
        color: var(--text-main);
        padding: 40px;
        width: 35%;
        display: flex;
        flex-direction: column;
    }

    .ancubic-logo-card {
        width: 120px;
        height: 120px;
        background-color: var(--text-main);
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 30px;
    }

    .ancubic-logo-card img {
        width: 80%;
    }

    .contact-info-new h3 {
        font-family: var(--font-headings);
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .contact-info-new p {
        margin-bottom: 15px;
        line-height: 1.6;
        display: flex;
        align-items: center;
    }

    .contact-icon {
        margin-right: 15px;
        width: 20px;
        filter: invert(1);
    }

    .social-icons-new {
        margin-top: auto;
    }

    .social-icons-new span {
        display: block;
        margin-bottom: 10px;
    }

    .social-icons-new a {
        margin-right: 15px;
    }

    .social-icons-new img {
        width: 24px;
        height: 24px;
    }

    .contact-form-new {
        padding: 40px;
        width: 65%;
        background-color: #f4f4f4;
    }

    .contact-form-new h2 {
        font-family: var(--font-headings);
        font-size: 2.5rem;
        margin-bottom: 30px;
        color: var(--btn-bg);
    }

    #contact-form-new {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
    }

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

    .form-group.full-width {
        grid-column: span 3;
    }

    .form-group label {
        margin-bottom: 8px;
        font-size: 0.9rem;
        color: var(--btn-hover);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 1rem;
        background-color: var(--text-main);
    }

    .submit-btn {
        background-color: var(--primary-highlight);
        color: #0a2a43;
        border: none;
        padding: 15px;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        font-size: 1.1rem;
        width: auto;
        min-width: 150px;
        grid-column: 3;
        justify-self: end;
        transition: background-color 0.3s ease;
    }

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

    .contact-form-section {
        flex: 2;
    }

    .contact-form-section h2 {
        font-family: var(--font-headings);
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .contact-form-section p {
        margin-bottom: 2rem;
        color: var(--text-secondary);
    }

    #contact-form .form-row {
        display: flex;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    #contact-form input,
    #contact-form textarea {
        width: 100%;
        padding: 1rem;
        background-color: #222;
        border: 1px solid #444;
        border-radius: 5px;
        color: var(--text-main);
        font-size: 1rem;
    }

    #contact-form input::placeholder,
    #contact-form textarea::placeholder {
        color: #888;
    }

    .contact-info-section {
        flex: 1;
        background-color: #0a2a43;
        padding: 2rem;
        border-radius: 10px;
    }

    .contact-info-section h3 {
        font-family: var(--font-headings);
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        border-left: 3px solid var(--primary-highlight);
        padding-left: 1rem;
    }

    .contact-info-section p {
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    .contact-info-section .social-icons {
        margin-top: 2rem;
    }

    .contact-info-section .social-icons a {
        margin-right: 1rem;
    }

    #map {
        height: 450px;
        width: 100%;
        background-color: var(--btn-bg);
        /* Placeholder color */
    }

    /* Map Info Window Styles */
    .map-info-window {
        color: #333;
        padding: 10px;
        text-align: center;
        max-width: 250px;
    }

    .map-info-window h3 {
        font-family: var(--font-headings);
        font-size: 1.1rem;
        margin: 0 0 10px 0;
        color: #0a2a43;
    }

    .map-info-window p {
        font-size: 0.9rem;
        margin: 0 0 15px 0;
        line-height: 1.4;
        color: #555;
    }

    .get-direction-btn {
        display: inline-block;
        background-color: #333;
        color: #fff;
        padding: 8px 16px;
        border-radius: 20px;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .get-direction-btn:hover {
        background-color: #000;
    }

    /* Popup Styles */
    .popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1001;
        backdrop-filter: blur(5px);
    }

    .popup-content {
        background-color: var(--card-bg);
        padding: 30px;
        border-radius: 15px;
        width: 60%;
        max-width: 800px;
        max-height: 80vh;
        overflow-y: auto;
        position: relative;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        color: var(--text-main);
    }

    .close-btn {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 2rem;
        font-weight: bold;
        cursor: pointer;
        color: var(--text-main);
    }

    .popup-content h3 {
        font-family: var(--font-headings);
        font-size: 2rem;
        margin-bottom: 10px;
    }

    /* Chatbot UI Improvements */
    .chatbot-messages {
        background-color: #2a2a2a;
        /* Slightly lighter dark background */
        border-top: 1px solid var(--btn-bg);
        border-bottom: 1px solid var(--btn-bg);
    }

    .chatbot-message {
        padding: 12px 18px;
        /* Slightly more padding */
        border-radius: 20px;
        /* More rounded corners */
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .chatbot-message.user {
        background-color: var(--primary-highlight);
        color: #0a2a43;
        border-bottom-right-radius: 5px;
        /* Adjust specific corner for better flow */
    }

    .chatbot-message.bot {
        background-color: #0a2a43;
        color: var(--text-main);
        border-bottom-left-radius: 5px;
        /* Adjust specific corner for better flow */
    }

    .chatbot-input-field {
        border: 1px solid var(--btn-hover);
        /* Darker border */
        background-color: var(--input-bg);
        /* Darker input background */
        color: var(--text-main);
        padding: 12px;
        border-radius: 25px;
        /* More rounded input */
    }

    .chatbot-input button {
        background-color: var(--primary-highlight);
        color: #0a2a43;
        border-radius: 25px;
        /* More rounded button */
        padding: 12px 20px;
    }

    .popup-content h4 {
        font-size: 1.1rem;
        color: var(--primary-highlight);
        margin-bottom: 20px;
    }

    .popup-content p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 15px;
        color: var(--text-secondary);
    }

    /* Chatbot Styles */
    .chatbot-container {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        pointer-events: none;
    }

    .floating-action-button {
        pointer-events: auto;
    }

    .chatbot-window.active {
        pointer-events: auto;
    }

    .chatbot-toggle {
        background-color: var(--primary-highlight);
        border: none;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }

    .chatbot-toggle:hover {
        transform: scale(1.05);
    }

    .chatbot-toggle img {
        width: 30px;
        height: 30px;
        filter: invert(1);
        /* Invert color for dark background */
    }

    .chatbot-window {
        background-color: var(--card-bg);
        border-radius: 10px;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
        /* Stronger shadow */
        width: 350px;
        height: 500px;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        margin-top: 15px;
        transform: translateY(100%) translateX(0);
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease-out;
        /* Smoother transition */
        transform-origin: bottom right;
        border: 1px solid rgba(255, 255, 255, 0.1);
        /* Subtle border */
    }

    .chatbot-window.active {
        transform: translateY(0) translateX(0);
        opacity: 1;
    }

    .chatbot-header {
        background-color: var(--primary-highlight);
        /* Yellow accent color */
        color: #0a2a43;
        /* Dark blue text for contrast */
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        font-family: var(--font-headings);
        /* Use the main font */
        font-weight: bold;
    }

    .chatbot-header h3 {
        margin: 0;
        font-size: 1.2rem;
    }

    .chatbot-close {
        background: none;
        border: none;
        color: #0a2a43;
        /* Dark blue color for close button */
        font-size: 1.8rem;
        cursor: pointer;
        transition: color 0.3s ease;
    }

    .chatbot-close:hover {
        color: var(--btn-bg);
        /* Darker on hover */
    }

    .chatbot-messages {
        flex-grow: 1;
        padding: 15px;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 12px;
        /* Slightly more gap between messages */
        background-color: #2a2a2a;
        /* Slightly lighter dark background */
    }

    .chatbot-message {
        max-width: 85%;
        /* Slightly wider messages */
        padding: 12px 18px;
        /* Slightly more padding */
        border-radius: 20px;
        /* More rounded corners */
        font-size: 0.95rem;
        line-height: 1.5;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        /* Subtle shadow for bubbles */
    }

    .chatbot-message.user {
        background-color: var(--primary-highlight);
        color: #0a2a43;
        align-self: flex-end;
        border-bottom-right-radius: 8px;
        /* More rounded */
        border-top-right-radius: 8px;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
    }

    .chatbot-message.bot {
        background-color: #0a2a43;
        color: var(--text-main);
        align-self: flex-start;
        border-bottom-left-radius: 8px;
        /* More rounded */
        border-top-left-radius: 8px;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    .chatbot-input {
        display: flex;
        padding: 15px;
        border-top: 1px solid var(--btn-bg);
        background-color: var(--card-bg);
    }

    .chatbot-input-field {
        flex-grow: 1;
        padding: 12px;
        border: 1px solid var(--btn-hover);
        /* Darker border */
        border-radius: 25px;
        /* More rounded input */
        background-color: var(--input-bg);
        /* Darker input background */
        color: var(--text-main);
        font-size: 1rem;
        margin-right: 10px;
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
        /* Inner shadow */
    }

    .chatbot-input-field::placeholder {
        color: #888;
    }

    .chatbot-input button {
        background-color: var(--primary-highlight);
        color: #0a2a43;
        border: none;
        padding: 12px 20px;
        /* More padding */
        border-radius: 25px;
        /* More rounded button */
        cursor: pointer;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .chatbot-input button:hover {
        background-color: var(--primary-highlight-hover);
        transform: translateY(-1px);
        /* Subtle lift effect */
    }

    .chatbot-input button:hover {
        background-color: var(--primary-highlight-hover);
    }

    /* Utility classes */

    /* Hero Carousel Styles */
    .hero-carousel {
        position: relative;
        width: 100%;
        height: 60vh;
        /* Adjust height as needed */
        min-height: 400px;
        overflow: hidden;
        margin-bottom: 40px;
        background-color: transparent;
        /* Fallback */
    }

    .hero-carousel-track {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 0.8s ease-in-out;
        z-index: 1;
    }

    .hero-slide.active {
        opacity: 1;
        z-index: 2;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, var(--tint-card-overlay) 100%);
        display: flex;
        align-items: flex-end;
        padding: 60px;
        box-sizing: border-box;
    }

    .hero-content {
        max-width: 800px;
        color: var(--text-main);
        animation: slideUp 0.8s ease-out;
    }

    @keyframes slideUp {
        from {
            transform: translateY(20px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .hero-date {
        display: block;
        font-size: 1rem;
        color: #d4af37;
        /* Gold accent */
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .hero-content h2 {
        font-family: 'Playfair Display', serif;
        font-size: 3rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .hero-btn {
        display: inline-block;
        padding: 12px 30px;
        background-color: transparent;
        border: 2px solid #fff;
        color: var(--text-main);
        text-decoration: none;
        font-size: 1rem;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .hero-btn:hover {
        background-color: var(--text-main);
        color: #000;
    }

    /* Carousel Controls */
    .hero-prev,
    .hero-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.3);
        border: none;
        color: var(--text-main);
        font-size: 2rem;
        padding: 15px;
        cursor: pointer;
        z-index: 10;
        transition: background 0.3s;
    }

    .hero-prev:hover,
    .hero-next:hover {
        background: rgba(0, 0, 0, 0.6);
    }

    .hero-prev {
        left: 20px;
    }

    .hero-next {
        right: 20px;
    }

    .hero-dots {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 10px;
        z-index: 10;
    }

    .hero-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .hero-dot.active {
        background-color: var(--text-main);
    }

    /* Viewport Ratio Adjustments */
    .content-wrapper {
        width: 60%;
        margin: 0 auto;
    }

    .padded-section {
        padding-left: 20%;
        padding-right: 20%;
        box-sizing: border-box;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .carousel-container {
            height: auto;
            padding-bottom: 2rem;
        }

        .carousel-track {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 1rem;
        }

        .carousel-card {
            flex: 0 0 80%;
            scroll-snap-align: center;
            margin: 0 10px;
            position: relative;
            transform: none;
            opacity: 1;
            left: auto;
            top: auto;
        }

        .carousel-card.active,
        .carousel-card.prev,
        .carousel-card.next {
            transform: none;
            opacity: 1;
        }

        .carousel-btn {
            display: none;
        }

        .hero-carousel {
            height: 50vh;
        }

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

        .hero-overlay {
            padding: 30px;
        }

        .hero-prev,
        .hero-next {
            display: none;
        }
    }

    /* News Grid Styles */
    .news-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .news-card {
        background: var(--card-bg);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
    }

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

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

    .news-content {
        padding: 20px;
        color: var(--text-main);
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .news-date {
        display: block;
        color: var(--primary-highlight);
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .news-content h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.2rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .news-content p {
        color: var(--text-secondary);
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
        flex-grow: 1;
    }

    .news-content .read-more-btn {
        align-self: flex-start;
        margin-top: auto;
    }

    /* Floating Action Button (FAB) Styles */
    .floating-action-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1001;
    }

    .fab-main-button {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-color: #007bff;
        border: none;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }

    .fab-main-button:hover {
        transform: scale(1.1);
    }

    .fab-main-button img {
        width: 30px;
        height: 30px;
    }

    .fab-options {
        position: absolute;
        bottom: 70px;
        right: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
        transition: all 0.3s ease-out;
        transform: scale(0);
        transform-origin: bottom right;
    }

    .floating-action-button.active .fab-options {
        transform: scale(1);
    }

    .fab-option {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: var(--text-main);
        border: none;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, opacity 0.3s ease;
        opacity: 0;
        text-decoration: none;
    }

    .floating-action-button.active .fab-option {
        opacity: 1;
        transform: translateY(0);
    }

    .fab-option:nth-child(1) {
        transition-delay: 0.2s;
    }

    .fab-option:nth-child(2) {
        transition-delay: 0.1s;
    }

    .fab-option:nth-child(3) {
        transition-delay: 0s;
    }

    .fab-option img {
        width: 25px;
        height: 25px;
    }

/* Modal Container */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    backdrop-filter: blur(5px);
}

.modal-container.hidden {
    display: none;
}

/* Modal Content */
.modal-content {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 15px;
    width: 60%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    color: var(--text-main);
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-main);
}

/* News Popup */
.news-popup .popup-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Event Popup */
.event-popup .popup-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.event-popup .popup-gallery-image {
    width: 100%;
    border-radius: 5px;
}

/* Career Popup */
.career-popup h3 {
    margin-top: 20px;
    color: var(--primary-highlight);
}

.career-popup ul {
    list-style-type: disc;
    padding-left: 20px;
}
/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.hamburger-menu-line {
    width: 30px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 3px;
    transition: all 0.3s linear;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    background-color: var(--card-bg);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    padding-top: 80px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav .nav-item {
    display: block;
    padding: 15px 20px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.2rem;
}

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

    .hamburger-menu {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }
}
@media (max-width: 768px) {
    .projects-grid,
    .dev-project-grid,
    .dev-future-grid,
    .news-grid,
    .what-we-do-grid,
    .core-values-list {
        grid-template-columns: 1fr;
    }

    .core-values-container,
    .culture-grid,
    .csr-container,
    .team-grid,
    .contact-container-new {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .project-card.large,
    .project-card.small {
        grid-column: auto;
        grid-row: auto;
        height: auto;
    }

    .padded-section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .content-wrapper {
        width: 100%;
    }

    .main-header {
        padding: 0 5%;
    }

    .main-footer-content {
        flex-direction: column;
        padding: 40px 5%;
    }

    .sitemap {
        flex-direction: column;
    }

    .sitemap-col {
        margin-bottom: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        margin-top: 10px;
    }

    .leader-card,
    .leader-card.datin,
    .testimonial-slide {
        flex-direction: column;
        text-align: center;
    }

    .contact-info-new {
        width: 100%;
    }

    .contact-form-new {
        width: 100%;
    }

    #contact-form-new {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: auto;
    }

    .submit-btn {
        justify-self: stretch;
    }
}