/* Custom Variables */
:root {
    --primary-color: #F9A61B;
    --secondary-color: #42526E;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --orange-gradient: linear-gradient(to right, #f7931e, #f15a24);
    --orange-button: #f7931e;
    --text-color: #333;
    --heading-color: #42526E;
    --MGS-Gold: rgba(255, 160, 0, 0.80);
}

/* Font Aliases and Smoothness */
@font-face {
    font-family: 'Gotham';
    src: local('Gotham'),
        local('Gotham-Book'),
        url('../fonts/Gotham-Book.woff2') format('woff2'),
        url('../fonts/Gotham-Book.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: local('Gotham Medium'),
        local('Gotham-Medium'),
        url('../fonts/Gotham-Medium.woff2') format('woff2'),
        url('../fonts/Gotham-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: local('Gotham Bold'),
        local('Gotham-Bold'),
        url('../fonts/Gotham-Bold.woff2') format('woff2'),
        url('../fonts/Gotham-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Font Smoothing and Rendering */
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1;
    font-kerning: normal;
}

body {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.011em;
    color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Gotham';
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

a.elementor-accordion-title {
    font-family: 'gotham';
}

img.featured-image.wp-post-image {
    height: auto;
}

.onecolumn img {
    height: auto;
}

.forminator-ui span.forminator-checkbox-label {
    font-size: 14px;
    font-family: 'gotham';
}

.elementor-icon-list-text {
    font-weight: 400 !important;
}

p.elementor-heading-title.elementor-size-default {
    font-weight: 400 !important;
}

footer .fifthcol-ft ul li a::after {
    background: none;
}

.newsletter-signup h2.display-5.fw-bold.mb-3 {
    line-height: 1.2;
    font-weight: 700 !important;
    font-size: 3rem;
}

input#mc4wp_submitaction {
    border-radius: 0px 5px 5px 0px;
    height: 48px;
    font-family: gotham;
    font-size: 20px;
}

input#mc4wp_email {
    font-family: gotham;
}

.bluebox.header-bottom {
    background: #011F5B;
    border-radius: 8px 0px 0px 8px;
}

.bluebox.header-bottom p {
    color: #fff;
}

section.testimonials-section img {
    display: none;
}

/* Page Header Styles */
.page-header {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(249, 166, 27, 0.1) 0%, rgba(241, 90, 36, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

button.navbar-toggler {
    display: none;
}

.hamburger-menu ul#menu-header-menu li a {
    color: white;
}

.hamburger-menu li {
    line-height: 25px;
    padding: 7px 0px;
}

.page-header .badge {
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: #222 !important;
    font-weight: 500;
    padding: 0.5em 1em;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.page-header h1 {
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    line-height: 1.2;
}

.page-header .lead {
    color: var(--text-color);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.page-header .btn-dark {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.page-header .btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-header img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
    .page-header {
        padding: 80px 0;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .page-header {
        padding: 60px 0;
        text-align: center;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header .lead {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .page-header img {
        margin-top: 2rem;
    }
}

/* Hero Section */
.hero-section {
    /* background: linear-gradient(to right, rgba(255, 200, 20, 0.8), rgba(241, 90, 36, 0.8)), url('../img/full-width-bg-hero.jpg') no-repeat center right;
    background-size: cover; */

    color: white;
    position: relative;
    overflow: hidden;
}


.hero-section img {
    display: block;
    /* Ensure no extra space below the image */
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section .badge {
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: #42526E !important;
    font-weight: 500;
    padding: 0.5em 1em;
    border-radius: 20px;
    font-size: 0.9rem;
}

.hero-section h1 {
    color: #42526E;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.hero-section p.lead {
    color: #222;
    margin-bottom: 2rem;
}

.hero-section .btn-light {
    color: #222 !important;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.hero-section .btn-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
    color: #000 !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.placeholder-image {
    height: 400px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

/* Features Section */
.features {
    background-color: #fff;
}

.card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;

}

.navbar-brand img {
    margin-right: 5px;
}

.navbar-brand small {
    font-size: 0.75rem;
    display: block;
}

.navbar-nav {
    display: flex;
    align-items: center;
    width: 100%;
}

.navbar-nav .nav-item:last-child {
    margin-left: auto;
}

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .btn-warning {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar-nav .btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(249, 166, 27, 0.2);
}

/* Buttons */
.btn-primary {
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
}

/* Logos Section */
.logos-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.logos-section h6 {
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    padding: 8px 16px;
    border-radius: 2px;

    display: inline-block;
    position: relative;
    color: #000;
    font-weight: 600;
}

.logos-container {
    padding: 20px 0;
}

.logo-wrapper {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 200px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    transition: all 0.3s ease;
}

.logo-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo-wrapper img {
    height: 30px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-wrapper:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive adjustments for logo wrapper size and inner image height */
@media (max-width: 1199.98px) {
    .logo-wrapper {
        width: 180px;
        height: 70px;
    }

    .logo-wrapper img {
        height: 50px;
        /* Adjust inner logo height responsively */
    }
}

@media (max-width: 991.98px) {
    .logo-wrapper {
        width: 150px;
        height: 60px;
    }

    .logo-wrapper img {
        height: 40px;
        /* Adjust inner logo height responsively */
    }
}

@media (max-width: 767.98px) {
    .logos-container .col-auto {
        margin-bottom: 20px;
    }

    .logo-wrapper {
        width: 120px;
        height: 50px;
    }

    .logo-wrapper img {
        height: 35px;
        /* Adjust inner logo height responsively */
    }

    .logos-container .row {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .logo-wrapper {
        width: 90px;
        height: 40px;
    }

    .logo-wrapper img {
        height: 30px;
        /* Adjust inner logo height responsively */
    }
}

/* .logos-container {
    padding: 20px 0;
}

.logo-wrapper {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    /* Optional: Add some rounded corners */
width: 200px;
/* Fixed width for equal size */
height: 80px;
/* Fixed height for equal size */
display: flex;
justify-content: center;
align-items: center;
padding: 10px;
/* Add some padding inside the wrapper */
}

.logo-wrapper img {
    /* max-width: 100%; Keeping max-width for safety */
    height: 30px;
    /* Fixed height for all inner logos */
    width: auto;
    /* Allow width to adjust based on height and aspect ratio */
    object-fit: contain;
    /* Ensure logo fits inside wrapper without distortion */
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-wrapper img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive adjustments for logo wrapper size and inner image height */
@media (max-width: 1199.98px) {
    .logo-wrapper {
        width: 180px;
        height: 70px;
    }

    .logo-wrapper img {
        height: 50px;
        /* Adjust inner logo height responsively */
    }
}

@media (max-width: 991.98px) {
    .logo-wrapper {
        width: 150px;
        height: 60px;
    }

    .logo-wrapper img {
        height: 40px;
        /* Adjust inner logo height responsively */
    }
}

@media (max-width: 767.98px) {
    .logos-container .col-auto {
        margin-bottom: 20px;
    }

    .logo-wrapper {
        width: 120px;
        height: 50px;
    }

    .logo-wrapper img {
        height: 35px;
        /* Adjust inner logo height responsively */
    }

    .logos-container .row {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .logo-wrapper {
        width: 90px;
        height: 40px;
    }

    .logo-wrapper img {
        height: 30px;
        /* Adjust inner logo height responsively */
    }
}

*/

/* MissionOS Data Section */
.data-section {
    padding: 80px 0;
}

.data-section h2 {
    color: var(--orange-button);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.data-section h3 {
    margin-bottom: 1.5rem;
}

.data-section .btn-primary {
    background-color: #000;
    border-color: #000;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.data-section .btn-primary:hover {
    background-color: #333;
    border-color: #333;
}

/* Industry Solutions Section */
/* .industry-solutions {
    background-color: #fff;
    padding: 80px 0;
}

.industry-solutions .card {
    border: 1px solid #ddd;
    box-shadow: none;
}

.industry-solutions .card-body {
    padding: 1.5rem;
}

.industry-solutions .card-title {
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.industry-solutions .card img {
    height: 200px;
    object-fit: cover;
} */
section.cost-reduction h4.display-6 {
    color: #011F5B !important;
}

/* Industry Solutions Section */
.industry-solutions {
    background-color: #fff;
    padding: 80px 0;
}

.industry-solutions .card {
    border: 1px solid #ddd;
    box-shadow: none;
    transition: all 0.3s ease;
}

.industry-solutions .card:hover {
    background-color: #FFF8EB;
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.industry-solutions .card-body {
    padding: 1.5rem;
}

.industry-solutions .card-title {
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.industry-solutions .card img {
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.industry-solutions .card:hover img {
    filter: brightness(0.9);
}

/* Cost Reduction Section */
.cost-reduction {
    padding: 0px;
    background-color: #f8f9fa;
}

.cost-reduction .col-lg-6:first-child {
    display: flex;
    justify-content: flex-end;
}

.cost-reduction img {
    /* Ensure image fills its container while maintaining aspect ratio */
    object-fit: cover;
}

.cost-reduction h2 {
    color: var(--orange-button);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cost-reduction h3 {
    margin-bottom: 1.5rem;
}

.cost-reduction h4 {
    color: var(--orange-button);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.cost-reduction p {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #222;
    font-weight: 500;
}

@media (max-width: 991.98px) {
    .cost-reduction .col-lg-6:first-child {
        justify-content: center;
        margin-bottom: 2rem;
    }
}

/* Build Smarter Section */
.build-smarter {
    background-color: #fff;
    padding: 80px 0;
    text-align: center;
}

.build-smarter h2 {
    margin-bottom: 1rem;
}

.build-smarter p.lead {
    margin-bottom: 2rem;
    color: #555;
}

/* Real Impact Section */
.real-impact {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.real-impact h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.real-impact .card {
    border: 1px solid #ddd;
    box-shadow: none;
}

.real-impact .card-body {
    padding: 1.25rem;
}

.real-impact .card-title {
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.real-impact .card-text {
    color: #555;
    font-size: 0.95rem;
}

.real-impact .card-link {
    color: var(--orange-button);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.real-impact .card-link:hover {
    color: darken(var(--orange-button), 10%);
}

.real-impact .object-fit-cover {
    object-fit: cover;
}

/* Newsletter Signup Section */
.newsletter-signup {
    padding: 80px 0;
    color: white;
    position: relative;
    z-index: 1;
}



.newsletter-signup h2,
.newsletter-signup p {
    color: white;
}

.newsletter-signup .form-control {
    border-radius: 5px 0 0 5px;
    border: none;
}

.newsletter-signup .btn-warning {
    border-radius: 0 5px 5px 0;
    background-color: var(--orange-button);
    border-color: var(--orange-button);
    color: white;
    transition: background-color 0.3s ease;
}

.newsletter-signup .btn-warning:hover {
    background-color: darken(var(--orange-button), 10%);
    border-color: darken(var(--orange-button), 10%);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #fff;
}

.testimonials-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.testimonials-section .text-muted {
    text-align: center;
    margin-bottom: 2rem !important;
    display: block;
}

.testimonials-section .card {
    border: 1px solid #ddd;
    box-shadow: none;
}

.testimonials-section .card-body {
    padding: 1.5rem;
}

.testimonials-section .card-title {
    margin-bottom: 0;
    font-weight: 600;
}

.testimonials-section .text-muted small {
    font-size: 0.9rem;
}

/* Support Section */
.support-section {
    background: var(--orange-gradient);
    color: white;
    padding: 80px 0;
}

.support-section h2 {
    color: white;
    margin-bottom: 2rem;
}

.support-section .list-group-item {
    border-color: rgba(255, 255, 255, 0.3) !important;
    margin-bottom: 1rem;
    background-color: transparent !important;
    padding-left: 0;
    padding-right: 0;
}

.support-section .list-group-item i {
    color: white;
    font-size: 2.5rem;
    margin-right: 20px;
}

.support-section .list-group-item div {
    flex-grow: 1;
}

.support-section .list-group-item h5 {
    color: white;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.support-section .list-group-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Footer */
footer {
    background-color: #212529;
    color: #aaa;
    padding: 60px 0;
    font-size: 0.95rem;
}

footer h5 {
    color: #f8f8f8;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

footer ul {
    padding: 0;
    list-style: none;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer ul li a {
    color: #f8f8f8;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
    display: inline-block;
}

footer ul li a:hover {
    color: #F9A61B;
}

footer ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #F9A61B;
    transition: width 0.3s ease;
}

footer ul li a:hover::after {
    width: 100%;
}

footer .bg-secondary {
    background-color: #555 !important;
}

footer small {
    font-size: 0.85rem;
}

footer img {
    vertical-align: middle;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: none;
    width: 50px;
    height: 50px;
    background-color: var(--orange-button);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    line-height: 50px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.scroll-to-top.show {
    display: block;
}

.scroll-to-top:hover {
    opacity: 0.8;
}

/* Responsive adjustments */
@media (min-width: 576px) {
    .cost-reduction .row.text-left .col-sm-3 {
        border-right: 1px solid #ccc;
        /* Add right border */
    }

    .cost-reduction .row.text-left .col-sm-3:last-child {
        border-right: none;
        /* Remove border from the last column */
    }
}

@media (min-width: 768px) {
    .logos-section img {
        margin: 0 10px;
    }
}

@media (min-width: 992px) {

    .hamburger-menu {
        display: none;
    }


    .logos-section img {
        margin: 0 15px;
    }

    .cost-reduction img {
        max-height: 430px;
        /* Adjusted max-height */
        width: auto;
        /* Allow width to adjust based on max-height and aspect ratio */
    }
}

@media (min-width: 1200px) {
    /* Add specific styles for extra large devices here */
}

@media (min-width: 1400px) {
    /* Add specific styles for extra extra large devices here */
}

@media (max-width: 767.98px) {

    .hero-section,
    .data-section,
    .industry-solutions,
    .cost-reduction,
    .build-smarter,
    .real-impact,
    .newsletter-signup,
    .testimonials-section,
    .support-section,
    footer {
        padding: 40px 0;
    }

    .cost-reduction h4 {
        font-size: 1.5rem;
    }

    .cost-reduction p {
        font-size: 0.9rem;
    }

    .real-impact .card .row>div {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .real-impact .card img {
        width: 100%;
        height: auto !important;
        border-radius: 5px 5px 0 0 !important;
    }

    .real-impact .card-body {
        padding-top: 1rem;
    }

    .newsletter-signup .input-group {
        flex-direction: column;
    }

    .newsletter-signup .form-control,
    .newsletter-signup .btn-warning {
        border-radius: 5px !important;
        margin-top: 10px;
    }

    .support-section h2 {
        margin-bottom: 1rem;
    }

    .support-section .list-group-item i {
        margin-right: 10px !important;
    }

    footer .row>div {
        margin-bottom: 20px;
    }

    footer .row>div:last-child {
        margin-bottom: 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    h5 {
        font-size: 1.1rem;
    }

    h6 {
        font-size: 1rem;
    }

    .logosSwiper .swiper-slide .row {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 1rem;
    }

    .logosSwiper .swiper-slide .col-auto {
        flex: 0 0 auto;
        width: auto;
    }
}

@media (max-width: 575.98px) {
    .logos-section small {
        margin-right: 10px;
    }

    .logos-section img {
        margin: 0 5px;
    }

    .cost-reduction .row>div {
        margin-bottom: 20px;
    }

    .cost-reduction .row>div:last-child {
        margin-bottom: 0;
    }

    .support-section .list-group-item {
        flex-direction: column;
        text-align: center;
    }

    .support-section .list-group-item i {
        margin-right: 0 !important;
        margin-bottom: 10px;
    }

    .support-section .list-group-item div {
        text-align: center;
    }

    .support-section h2 {
        font-size: 2rem;
    }
}

.row.text-center.mt-4>div:not(:last-child) {
    border-right: 1px solid #ccc;
    /* light gray divider */
    /* Optional: add some right padding for spacing */
    padding-right: 15px;
}

/* Optional: add some left padding for balance */
.row.text-center.mt-4>div:not(:last-child)+div {
    padding-left: 15px;
}

/* Custom Padding */
.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Custom Text Colors */
.text-orange {
    color: var(--primary-color);
}

/* Global link styles */
a {
    color: #42526E;
    /* Default link color */
    text-decoration: none;
    /* Remove default underline from all links */
}

a:hover {
    color: #F9A61B;
    /* Hover link color */
}

.animated-link {
    transition: color 0.3s ease-in-out;
    display: inline-block;
    cursor: pointer;
    position: relative;
}

.animated-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    /* Underline thickness */
    bottom: -3px;
    /* Distance from text */
    left: 100%;
    /* Start from the right */
    transform: translateX(0%);
    /* No horizontal translation needed */
    background-color: #ff8c00;
    /* Underline color */
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
}

.animated-link:hover {
    color: #ff8c00;
}

.animated-link:hover::after {
    width: 100%;
    left: 0%;
    opacity: 1;
}

.animated-underline-ltr {
    transition: color 0.3s ease-in-out;
    display: inline-block;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    /* Remove default underline */
    font-weight: 600;

}

.animated-underline-ltr::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    /* Underline thickness */
    bottom: -3px;
    /* Distance from text */
    left: 100%;
    /* Start from the right */
    transform: translateX(0%);
    /* No horizontal translation needed */
    background-color: #f7931e;
    /* Underline color (orange from design) */
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
}

.animated-underline-ltr:hover {
    color: #f7931e;
    /* Text color on hover (orange from design) */
}

.animated-underline-ltr:hover::after {
    width: 100%;
    /* Expand underline on hover */
    left: 0%;
    opacity: 1;
    /* Fade in on hover */
}

.flag-wrapper {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.flag-wrapper img {
    vertical-align: middle;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.footer-legal {
    font-size: 0.875rem;
    color: #f8f8f8;
}

.footer-legal a {
    color: #f8f8f8;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.footer-legal a:hover {
    color: #F9A61B;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #F9A61B;
    transition: width 0.3s ease;
}

.footer-legal a:hover::after {
    width: 100%;
}

.footer-legal .copyright {
    color: #f8f8f8;

}

.footer-custom {
    position: relative;
    background-color: #242F3E;
    overflow: hidden;
}

.footer-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(36, 47, 62, 0.95) 0%, rgba(36, 47, 62, 0.85) 100%);
    z-index: 1;
}

.footer-custom .container {
    position: relative;
    z-index: 2;
}

/* Navigation Styles */
.navbar-nav .nav-item {
    position: relative;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    padding: 0.5rem 0;
    margin: 0;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .175);
    transition: all 0.3s ease;
}

/* Show dropdown on hover */
.nav-item:hover>.dropdown-menu {
    display: block;
}

/* Submenu Styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

/* Show submenu on hover */
.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

/* Submenu Arrow */
.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

/* Dropdown Item Styles */
.dropdown-item {
    padding: 0.5rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
    background-color: rgba(249, 166, 27, 0.1);
    transform: translateX(5px);
}

/* Mobile Responsive Styles */
@media (max-width: 991.98px) {

    .navbar {
        padding-top: 1rem;
        padding-bottom: 1.5rem;
    }

    .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }

    .dropdown-submenu .dropdown-menu {
        position: static;
        margin-left: 1rem;
    }

    .nav-item:hover>.dropdown-menu {
        display: none;
    }

    .dropdown-menu.show {
        display: block;
    }
}

/* Dropdown Menu Hover Effects */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    transition: all 0.3s ease;
    padding: 0.5rem 1.5rem;
}

.dropdown-item:hover {
    background-color: rgba(249, 166, 27, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Platform Page Styles */
.platform-hero {
    background: linear-gradient(135deg, rgba(249, 166, 27, 0.1) 0%, rgba(241, 90, 36, 0.1) 100%);
    padding: 120px 0;
}

.platform-hero h1 {
    color: var(--heading-color);
    margin-bottom: 1.5rem;
}

.platform-hero .lead {
    color: var(--text-color);
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Section Styles */
.what-is-missionos,
.data-visualization,
.system-of-record,
.project-lifecycle,
.super-connector,
.risk-mitigation {
    position: relative;
}

.what-is-missionos h2,
.data-visualization h2,
.system-of-record h2,
.project-lifecycle h2,
.super-connector h2,
.risk-mitigation h2 {
    color: var(--heading-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.what-is-missionos p,
.data-visualization p,
.system-of-record p,
.project-lifecycle p,
.super-connector p,
.risk-mitigation p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Benefits Grid */
.benefits-grid {
    background-color: var(--light-color);
}

.benefits-grid h2 {
    color: var(--heading-color);
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.benefits-grid .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.benefits-grid .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.benefits-grid .card-body {
    padding: 2rem;
}

.benefits-grid h3 {
    color: var(--heading-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefits-grid p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .platform-hero {
        padding: 80px 0;
    }

    .platform-hero h1 {
        font-size: 2.5rem;
    }

    .what-is-missionos h2,
    .data-visualization h2,
    .system-of-record h2,
    .project-lifecycle h2,
    .super-connector h2,
    .risk-mitigation h2 {
        font-size: 2rem;
    }

    .benefits-grid .card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .platform-hero {
        padding: 60px 0;
    }

    .platform-hero h1 {
        font-size: 2rem;
    }

    .what-is-missionos h2,
    .data-visualization h2,
    .system-of-record h2,
    .project-lifecycle h2,
    .super-connector h2,
    .risk-mitigation h2 {
        font-size: 1.75rem;
    }

    .benefits-grid h2 {
        font-size: 2rem;
    }
}

/* Section Navigation Styles */
.section-nav-wrapper {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-top: -1px;
    padding: 0.5rem 0;
}

#sectionNav {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-wrap: nowrap;
}

#sectionNav::-webkit-scrollbar {
    display: none;
}

#sectionNav .nav-item {
    margin: 0;
    padding: 0;
}

#sectionNav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

#sectionNav .nav-link:hover {
    color: var(--primary-color);
    background: transparent;
    border-bottom-color: var(--primary-color);
}

#sectionNav .nav-link.active {
    color: var(--primary-color);
    background: transparent;
    border-bottom-color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    #sectionNav {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    #sectionNav .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}