body {
    overscroll-behavior: none;
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 400;
    padding-top: 100px;
    color: var(--color-13);
    /* background-color: var(--color-7); */
}

:root {
    --color-1: #003A69;
    --color-2: #BF8B2A;
    --color-3: #012340;
    --color-4: #011526;
    --color-5: #444444;
    --color-6: #979DA6;
    --color-7: #F2F2F2;
    --color-8: #F7F7FA;
    --color-9: #555758;
    --color-10: #021526;
    --color-11: #000000;
    --color-12: #FFFFFF;
    --color-13: #5A5858;
}

.row {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.main {
    /* padding: 24px 0 0 0; */
    padding: 80px 0 0 0;
}

/*custom_container*/
.custom_container {
    margin-left: 64px;
    margin-right: 64px;
    /* width: 100%; */
}

.custom_container_l {
    margin-left: 64px;
    margin-right: 0;
    /* width: 100%; */
}

.custom_container95 {
    width: 95%;
}

.custom_container90 {
    width: 90%;
}

.custom_container85 {
    width: 85%;
}

.custom_container80,
.w_80 {
    width: 80%;
}

.custom_container75 {
    width: 75%;
}

.custom_container70 {
    width: 70%;
}

.custom_container65 {
    width: 65%;
}

.custom_container60 {
    width: 60%;
}

.custom_container50 {
    width: 50%;
}

.custom_container95,
.custom_container90,
.custom_container85,
.custom_container80,
.custom_container70,
.custom_container75,
.custom_container65,
.custom_container60,
.custom_container50 {
    margin: 0 auto;
    max-width: 1200px;
}

/* Common */
.mw_1100 {
    max-width: 1100px;
}

.mw_1000,
.article_wrapper {
    max-width: 1000px;
}

.mw_800,
.article_container_desc {
    max-width: 800px;
}

.mw_600 {
    max-width: 600px;
}

.m_zero {
    margin: 0;
}

.p_zero {
    padding: 0;
}

.p_l_0 {
    padding-left: 0;
}

.p_r_0 {
    padding-right: 0;
}

.p_top_128 {
    padding-top: 128px;
}

.p_bottom_128 {
    padding-bottom: 128px;
}

.p_top_64 {
    padding-top: 64px;
}

.p_bot_64 {
    padding-bottom: 64px;
}

.m_top_128 {
    margin-top: 128px;
}

.m_bot_128 {
    margin-bottom: 128px;
}

.m_top_80 {
    margin-top: 80px;
}

.m_bot_80 {
    margin-bottom: 80px;
}

.m_top_64 {
    margin-top: 64px;
}

.m_bot_64 {
    margin-bottom: 64px;
}

.m_top_40 {
    margin-top: 40px;
}

.m_bot_40 {
    margin-bottom: 40px;
}

.m_bot_32 {
    margin-bottom: 32px;
}

.m_bot_20 {
    margin-bottom: 20px;
}

.common_btn,
.form_col .submit_btn input[type="submit"] {
    display: inline-block;
    padding: 12px 50px;
    /* padding: 14px 64px 15px 59px; */
    font-weight: 500;
    color: var(--color-7);
    background-color: var(--color-1);
    border: 1px solid transparent;
    box-shadow: inset 0 0 0 0 var(--color-2);
    text-decoration: none;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.common_btn:hover,
.form_col .submit_btn input[type="submit"]:hover {
    border: 1px solid transparent;
    color: var(--color-7);
    background-color: var(--color-2);
    box-shadow: inset 0 0px 10px 10px var(--color-2);
}

.gold_top_border {
    border-top: 1px solid var(--color-2);
}

.gold_bot_border {
    border-bottom: 1px solid var(--color-2);
}

.gold_gradient_bot_border {
    border-bottom: 2px solid transparent;
    border-image-slice: 1;
    border-width: 2px;
    border-image-source: linear-gradient(to right, #BF8B2A, transparent);
}

.white_bot_border {
    border-bottom: 1px solid var(--color-12);
}

.blue_bot_border {
    border-bottom: 1px solid var(--color-1);
}

.link {
    cursor: pointer;
    position: relative;
    text-decoration: none;
    outline: none;
    font-weight: 500;
}

.white-gold-link {
    cursor: pointer;
    position: relative;
    text-decoration: none;
    outline: none;
    font-weight: 500;
    color: white;
}

.link::before {
    content: '';
}

.link::before {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    /* top: 100%; */
    bottom: -0.3em;
    left: 0;
    pointer-events: none;
}

.white-gold-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--color-2);
    bottom: -0.3em;
    left: 0;
    pointer-events: none;
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
    transition: transform 0.3s;
}

.blue_link,
.blue_link:hover {
    color: var(--color-1);
}

.gold_link,
.gold_link:hover {
    color: var(--color-2);
}

.white_link,
.white_link:hover,
.white-gold-link:hover {
    color: var(--color-12);
}

.blue_link::before,
.gold_link::before,
.white_link::before {
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
    transition: transform 0.3s;
}

.blue_link:hover::before,
.gold_link:hover::before,
.white_link:hover::before {
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
}

.white-gold-link:hover::before {
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
}

.footer_link {
    text-decoration: none;
    color: var(--color-8);
    font-weight: 500;
    font-size: 16px;
}

.footer_link_alt {
    font-size: 16px;
    color: var(--color-11);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: -1px;
    line-height: 31.2px;
}

.footer_contact_link, .footer_p {
    text-decoration: none;
    color: var(--color-11);
    font-weight: 500;
    font-size: 20px;
    letter-spacing: -1px;
    line-height: 31.2px;
}

.footer_link:hover,
.footer_contact_link:hover,
.footer_link_alt:hover {
    color: var(--color-2);
}

.copyright_text {
    font-size: 16px;
    color: var(--color-11);
    font-weight: 500;
    letter-spacing: -1px;
    line-height: 31.2px;
}

img {
    width: 100%;
    height: auto;
}

h1,
.h1-alt {
    font-family: "Inter", sans-serif;
    font-size: 64px;
    font-weight: 300;
    line-height: 70.8px;
    letter-spacing: -2px;
    color: var(--color-10);
}

.h1-white {
    font-family: "Inter", sans-serif;
    font-size: 64px;
    font-weight: 300;
    line-height: 70.8px;
    letter-spacing: -3px;
    color: var(--color-8);
}

.h1-blue {
    font-family: "Inter", sans-serif;
    font-size: 64px;
    font-weight: 300;
    line-height: 70.8px;
    letter-spacing: -3px;
    color: var(--color-1);
}

h2 {
    font-family: "Inter", sans-serif;
    font-size: 80px;
    font-weight: 200;
    line-height: 70.8px;
    /* letter-spacing: -6px; */
    letter-spacing: -1px;
    color: var(--color-10);
}

h3 {
    font-size: 32px;
    color: var(--color-10);
    font-weight: 400;
    line-height: 38.4px;
    /* letter-spacing: -6px; */
    letter-spacing: -2px;
}

.h3-alt {
    font-family: "Inter", sans-serif;
    font-size: 32px;
    color: var(--color-11);
    font-weight: 400;
    line-height: 32px;
    /* letter-spacing: -6px; */
    letter-spacing: -2px;
}

.h3-alt2 {
    font-family: "Inter", sans-serif;
    font-size: 48px;
    color: var(--color-11);
    font-weight: 400;
    line-height: 57.6px;
    /* letter-spacing: -6px; */
    letter-spacing: -2px;
}

.h3-alt-blue {
    font-size: 32px;
    color: var(--color-1);
    font-weight: 400;
    line-height: 38.4px;
    /* letter-spacing: -6px; */
    letter-spacing: -2px;
}

h4 {
    font-size: 24px;
    color: var(--color-10);
    font-weight: 400;
    line-height: 41.6px;
    letter-spacing: -1px;
}

.h4-alt {
    font-size: 24px;
    color: var(--color-9);
    font-weight: 400;
    line-height: 41.6px;
    letter-spacing: -1px;
}

.h4-white {
    font-size: 24px;
    color: var(--color-12);
    font-weight: 600;
    line-height: 41.6px;
    letter-spacing: -1px;
}

h5 {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    color: var(--color-10);
    font-weight: 400;
    line-height: 31.2px;
    letter-spacing: -1px;
}

.p-white {
    color: var(--color-8);
}

.p-gold {
    color: var(--color-2);
}

.p-inter {
    font-family: "Inter", sans-serif;
    color: var(--color-9);
}

.fw_600 {
    font-weight: 600;
}

/* Navbar */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #fff;
    transition: all 0.3s ease;
    height: 100px;
    box-shadow: none;
    z-index: 9999;
}

/* Shrink effect on scroll */
.site-header.scrolled {
    height: 70px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Logo transition */
.site-header .header-logo {
    transition: all 0.3s ease;
    height: 100px;
    width: auto;
}

/* Shrink logo on scroll */
.site-header.scrolled .header-logo {
    height: 80px;
}

.navbar {
    background-color: var(--color-12);
    transition: all 0.3s ease;
}

/* Smooth scroll wrapper */
#smooth-wrapper {
    overflow: hidden;
}

#smooth-content {
    overflow: visible;
    padding-top: 100px;
    /* Match the header height */
}

.nav-item,
.dropdown-link-item {
    padding-right: 32px;
    color: var(--color-5);
    display: flex;
    align-items: center;
}

.nav-link {
    font-weight: 500;
}

.dropdown-link-item:hover {
    color: var(--color-11);
}

.nav-link::before,
.dropdown-link-item::before {
    transform-origin: 100% 50%;
    transform: scale3d(0, 1, 1);
    transition: transform 0.3s;
}

.nav-link:hover::before,
.dropdown-link-item:hover::before {
    background-color: var(--color-2);
    transform-origin: 0% 50%;
    transform: scale3d(1, 1, 1);
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
    letter-spacing: -0.8px;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Solutions Dropdown Styles */
.solutions-dropdown-menu {
    /* width: 1000px; */
    width: 1200px;
    max-width: 95vw;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-top: 15px;
    background: #F7F7FA;
    overflow: hidden;
    /* Initial hidden state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    pointer-events: none;
    border-radius: unset;
}

.solutions-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Solution Box Styling */
.solution-box {
    background: white;
    border-radius: 12px;
    padding: 25px 20px !important;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 0 5px;
}

.solutions-dropdown-section {
    height: 100%;
    /* Initial state for animation */
    opacity: 0;
    transform: translateY(20px);
}

.solutions-dropdown-header {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--color-2);
    position: relative;
}

.solution-category-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #012340;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
    padding: 8px 0;
    opacity: 0;
    transform: translateX(-15px);
    position: relative;
    padding-left: 0;
}

.solution-category-title:hover {
    color: #BF8B2A;
    text-decoration: none;
}

.solutions-dropdown-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.solutions-dropdown .dropdown-menu {
    left: 50% !important;
    transform: translateX(-50%) translateY(15px) !important;
}

/* .solutions-dropdown .dropdown-menu.show {
    transform: translateX(-35%) translateY(0) !important;
} */

.dropdown-menu {
    transition: none !important;
}

/* Animation for dropdown */
@keyframes fadeInBox {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

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

/* Homepage */

/*Homepage- v1 */
.home_hero {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* height: 600px; */
    height: auto;
    width: 100%;
}


.img_wrap {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 500px;
    width: 100%;
}

.hero_subtitle {
    margin-bottom: 32px;
}

.text_grad_color {
    background: linear-gradient(#05477E, #BF8B2A);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 18px;
}

.text2_grad_color {
    background: linear-gradient(#0072CF, #BF8B2A);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 18px;
}

.ind_row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ind_col .img_wrap {
    /* height: 280px; */
    height: 300px;
}

.link_img {
    width: 30px;
    height: auto;
}

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

.project_col .img_wrap {
    height: 400px;
}

.bl_background {
    background-color: var(--color-1);
    /* padding: 64px 0; */
}

.logo-section {
    width: 100%;
    overflow: hidden;
}

.award-section,
.award-viewport,
.partner-section,
.partner-viewport {
    position: relative;
    overflow: hidden;
}

.logo-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    position: relative;
    will-change: transform;
}

.award-track,
.partner-track {
    display: flex;
    width: 100%;
}

/* .logo-slide {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 20px 0;
    width: 100%;
} */
.logo-slide {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.award-slide {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    flex-shrink: 0;
    gap: 32px;
    padding: 40px 0;
}

.partner-slide {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    flex-shrink: 0;
    gap: 32px;
    padding: 64px 20px 0 20px;
}

/* .logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 30px;
} */

.logo-row {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.award-item,
.partner-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    max-width: 130px;
}

.logo-item img {
    display: block;
    max-width: 130px;
    width: 100%;
    height: auto;
}

.award-item img,
.partner-item img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 80px;
}

.inquiry_sec .img_desc {
    top: 50%;
}

.count-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.footer-brand img {
    width: 120px;
    height: auto;
}

.socials a img {
    transition-timing-function: ease;
    transition: transform 0.2s ease, opacity 0.2s;
    -webkit-transition: -webkit-transform 0.2s ease, opacity 0.2s;
    width: 40px;
    height: auto;
}

.socials a img:hover {
    transform: scale3d(1.2, 1.2, 1);
    -webkit-transform: scale3d(1.2, 1.2, 1);
    -moz-transform: scale3d(1.2, 1.2, 1) rotate(0.02deg);
}

.project_slide {
    flex: 0 0 calc(33.333% - 14px);
    position: relative;
}

.project_slide .img_wrap {
    height: 400px;
}

.wrapper {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.slide-container {
    display: flex;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.buttons {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.hide {
    display: none;
}

.signature {
    width: 40%;
    height: auto;
}

.stars {
    width: 10%;
    height: auto;
}

.team_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.team_container {
    width: 100%;
    min-height: 500px;
    position: relative;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    overflow: hidden;
}

.team_slide {
    position: relative;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

/* Featured slide - fixed on left, bigger */
.team_slide.featured {
    width: 22%;
    z-index: 10;
}

/* Other slides - smaller thumbnails */
.team_slide:not(.featured) {
    width: 18%;
}

/* Content wrapper for animations */
.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.team_slide .img_wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 3/4;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.team_slide:not(.featured):hover .img_wrap {
    transform: translateY(-5px);
}

.team_slide .img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team_slide .title {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.team_slide.featured .title {
    text-align: left;
}

/* Description only on featured slide */
.team_slide .t_desc {
    display: none;
}

.team_slide.featured .t_desc {
    display: block;
}

.buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.buttons button {
    padding: 12px 32px;
    cursor: pointer;
    border: 2px solid #333;
    background: transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.buttons button:hover {
    background: #333;
    color: #fff;
}

.testimonial_slide .img_wrap {
    height: 350px;
}

.testimonial_slider .slick-dots {
    text-align: unset;
    bottom: -50px;
    left: 20%;
}

.testimonial_slider .slick-dots li button:before {
    color: #FFDD9F;
    opacity: 1;
    font-size: 8px;
}

.testimonial_slider .slick-dots .slick-active button::before {
    color: #BF8A2A;
}

.testimonial_slide .img-wrap img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
}

.horiz-gallery-strip {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    /* expands to fit all images */
}

.horiz-gallery-strip .image-wrap {
    flex: 0 0 auto;
    width: 25vw;
    /* adjust as needed */
    height: 45vh;
}

.horiz-gallery-strip .image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article_card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article_card p {
    flex-grow: 1;
}

.article_img_wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 45%;
}

.article_img_wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_img_container {
    position: relative;
    padding-top: 85%;
}

.news_img_container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog_content_desc h3 {
    font-size: 32px;
    color: var(--color-9);
    font-weight: 400;
    line-height: 33.6px;
    margin: 40px 0;
}

.blog_content_desc h3:first-child {
    margin-top: 0;
}

.blog_content_desc ul {
    margin-bottom: 0;
    padding-left: 1.2rem;
}

.featured_badge {
    padding: 12px;
    background-color: var(--color-11);
    color: var(--color-12);
}

.single_career_wrapper:first-child {
    border-top: 1px solid var(--color-1);
    border-bottom: 1px solid var(--color-1);
}

.single_career_wrapper {
    border-bottom: 1px solid var(--color-1);
    padding: 48px 0;
}

/* Contact Form 7 - Full width fields */
.form_col .wpcf7 form .d-flex label {
    flex: 1;
    min-width: 0;
}

.form_col .wpcf7 form label {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form_col .wpcf7 form input[type="text"],
.form_col .wpcf7 form input[type="email"],
.form_col .wpcf7 form input[type="tel"],
.form_col .wpcf7 form input[type="number"],
.form_col .wpcf7 form select,
.form_col .wpcf7 form textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #E89A0C;
    padding: 8px 7px;
    color: #9D9D9D;
}

.form_col .wpcf7 form textarea {
    height: 200px;
}

.form_col .wpcf7 form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    margin-top: 8px;
}

.form_col p {
    margin-bottom: 24px;
}

.form_col .submit_btn {
    position: relative;
    text-align: right;
}

.form_col .submit_btn .wpcf7-spinner {
    position: absolute;
    left: 65%;
    bottom: 15px;
}

.form_col .country-select.inside .flag-dropdown {
    left: 85%;
}