﻿html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

@font-face {
    font-family: 'Noto Sans Variable';
    src: url('/fonts/NotoSans/NotoSans-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-stretch: 50% 100%;
    font-style: normal;
}

@font-face {
    font-family: 'Noto Sans Variable';
    src: url('/fonts/NotoSans/NotoSans-Italic-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-stretch: 50% 100%;
    font-style: italic;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin: 0;
    font-family: 'Noto Sans Variable', sans-serif;
    background-color: #FFFFFF;
    color: #333;
}

.header {
    background-color: #0033A0;
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .header .logo img {
        max-height: 50px;
    }

    .header .buttons button {
        /*background-color: ##FFB81C;*/
        color: #0033A0;
        border: none;
        padding: 10px 15px;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        height: 40px;
    }

.navigation {
    background-color: white;
    display: flex;
    justify-content: center;
    padding: 15px 0;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    font-weight: bold;
}

    .navigation a {
        color: #0033A0;
        text-decoration: none;
        font-size: 1rem;
        margin: 0 20px;
    }

.hero-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to bottom, #eef4fb, white);
}


    .hero-section img {
        max-width: 400px;
        height: auto;
        margin-bottom: 20px;
    }

    .hero-section h1 {
        font-size: 2.8rem;
        color: #0033A0;
        font-weight: bold;
    }

    .hero-section p {
        font-size: 1rem;
        color: #666;
        margin-bottom: 30px;
    }

    .hero-section .action-buttons {
        display: flex;
        justify-content: center;
        gap: 15px;
    }

        .hero-section .action-buttons button {
            background-color: #0033A0;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            font-weight: bold;
        }

.globe-section {
    /*padding: 60px 20px;*/
    margin-top: 2px;
    position: relative;
    width: 100%;
    height: 642.63px;
    background: url('../images/landingpage_waveheader.svg') no-repeat center bottom;
    background-size: 100% auto; /*stretch to fill width and height */
    overflow: hidden;
}


.globe-container {
    position: relative;
    width: 60%;
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    margin-top: 1%;
}

.globe-image {
    position: absolute;
    width: 550px;
    height: 550px;
    top: 209px;
    left: 167px;
    object-fit: cover;
    z-index: 2;
}

/*.plus-icon {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 566px;
    left: 543px;
    background-color: #FFB81C;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 3;
}*/

.plus-icon {
    width: 60px;
    height: 60px;
    position: absolute;
    background-color: #FFB81C;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.glob-right {
    padding-right: 80px;
    position: absolute;
    top: 36%;
    left: 56%; /* Adjust based on globe image width */
}

.text-right {
    transform: translateY(-50%);
    width: 448px;
    height: 125px;
    color: #0033A0;
    font-weight: 600;
    font-size: 64px;
    line-height: 64px;
    letter-spacing: 0%;
    z-index: 2;
}

.glob-right p {
    margin-bottom: 30px;
}

.button-left {
    background-color: #0033A0;
    color: #FFFFFF;
    border: none;
    padding: 14px 24px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Noto Sans Variable';
}

.modal-popup {
    position: absolute;
    top: 80%;
    left: calc(437px + 25px);
    transform: translateY(-50%);
    width: 636px;
    height: auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    padding: 40px;
    display: none;
    z-index: 10;
}

    .modal-popup p {
        font-size: 14px;
        font-weight: 400;
        font-family: 'Noto Sans Variable';
        line-height: 24px;
        max-width: 509px;
    }

.modal-popup-video {
    position: absolute;
    top: 50%;
    left: calc(560px + 150px);
    transform: translateY(-50%);
    width: 448px;
    height: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    padding: 20px;
    display: none;
    z-index: 10;
}



.modal-popup-video-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .modal-popup-video-modal-header-h2 {
        color: #0033A0;
        font-size: 40px !important;
        margin: 30px;
        line-height: 44px;
        font-weight: 600;
        font-family: 'Noto Sans Variable';
    }



.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .modal-header h2 {
        color: #0033A0;
        font-size: 48px;
        font-weight:600;
        font-family:'Noto Sans Variable';
        margin: 0;
    }

.close-btn {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
}



.see-more {
    font-size: 0.95rem;
    color: #0033A0;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
}

    .see-more .arrow-down {
        font-size: 12px;
        margin-left: 5px;
    }

.modal-actions {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.modal-actions-video {
   /* text-align: center;
    align-items: center;
    gap: 20px;*/
}

.modal-details {
    margin-top: 10px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #ccc;
}

.detail-label {
    font-size: 0.95rem;
    color: #4066B8;
}

.detail-value {
    font-size: 0.95rem;
    color: #333;
}

.button-right {
    background-color: #CEDEF7;
    color: #333333;
    border: 1px solid #333333;
    margin-left: 20px;
    padding: 14px 24px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
    font-family: 'Noto Sans Variable';
}

.content-section {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
}

.content-left {
    padding-right: 80px;
}

    .content-left h2 {
        color: #0033A0;
        font-size: 2.2rem;
    }

    .content-left ul {
        padding-left: 20px;
        line-height: 3.0;
        margin-top: -20px !important;
    }



    .content-left button {
        background-color: #FFB81C;
        color: #333333;
        border: none;
        padding: 14px 24px;
        font-weight: bold;
        cursor: pointer;
        border-radius: 5px;
        font-size: 1rem;
        font-family: 'Noto Sans Variable';
    }

.content-right {
    flex: 1;
}

    .content-right h2 {
        color: #0033A0;
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

.job-listing {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.job-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    background: white;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
}

    .job-item button {
        background-color: #0056b3;
        color: white;
        border: none;
        padding: 10px 18px;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        font-size: 0.9rem;
    }

        .job-item button:hover {
            background-color: #003f7f;
        }

.video-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to bottom, #eef4fb, white);
}

.video-container {
    display: flex;    
    width: 100%;
}

    .video-container iframe {
        width: 915px;
        height: 550px;
        border-radius: 8px;
    }

.how-it-works {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(to bottom, white, #4066B8);
    color: #0033A0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1160px;
    margin: 0 auto;
}

.step-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    text-align: left;
    overflow: hidden;
    z-index: 0;
}

.step-card-content {
    position: relative;
    z-index: 2;
}

.step-card img {
    width: 50px;
    height: 50px;
}

.step-card h3 {
    color: #0033A0;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0px;
}

.step-card p {
    font-size: 1rem;
    color: gray;
}

.step-number {
    position: absolute;
    font-size: 12rem;
    font-weight: 800;
    color: #E6EFFB;
    right: -35px;
    bottom: 42px;
    z-index: 1;
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.how-it-works p {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 20px;
    font-weight: 400;
}


.country-offices {
    text-align: center;
    padding: 80px 20px;
    background: white;
    color: #0033A0;
}

    .country-offices h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .country-offices p {
        font-size: 1rem;
        color: #333333;
        margin-bottom: 40px;
    }

.features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

.feature-card {
    background: #ffffff;
    border: #E1E4ED 2px solid;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    height: 130px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

    .feature-card h3 {
        margin-top: -15px;
        font-size: 48px;
        font-weight: 600;
        color: #CEDEF7;
        margin-bottom: 0px;
        text-align: left;
    }

    .feature-card p {
        font-weight: 700;
        font-size: 20px;
        color: #5B92E5;
        margin-bottom: 40px;
        text-align: left;
        margin-top: 0px;
    }

.request-button {
    margin-top: 30px;
    background-color: #FFB81C;
    color: #333333;
    border: none;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Noto Sans Variable';
}

.deployee-feedback {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(to bottom, #E6EFFB, white);
    color: #0033A0;
}

    .deployee-feedback h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .deployee-feedback p {
        font-size: 16px;
        width: 730px;
        color: #333333;
        margin: 30px auto 20px auto;
        font-weight: 600;
        margin-top: 30px !important;
        line-height: 28px;
        font-family: 'Noto Sans Variable';
    }

.profile-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 30px;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.profile {
    text-align: center;
    position: relative;
}

    .profile img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        margin-bottom: 10px;
        border: 3px solid #FFB81C;
        padding: 5px;
    }

    .profile span {
        display: block;
        font-weight: bold;
        color: #0033A0;
        font-size: 1.1rem;
    }

    .profile small {
        color: #666;
        font-size: 0.9rem;
    }

.faq-section {
    text-align: center;
    padding: 80px 20px;
    background: white;
}

    .faq-section h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #0033A0;
    }

.faq-container {
    max-width: 1000px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.faq-card {
    border: 1px solid #dbe3f1;
    border-radius: 8px;
    padding: 20px;
    background: white;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question {
    color: #888888;
    font-weight: 600;
    font-size:16px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    text-align: left;
    font-family:'Noto Sans Variable'
}

.faq-answer {
    margin-top: 10px;
    font-size: 14px;
    text-align: left;
    color: #888888;
    font-weight: normal;
    display: none;
}

.faq-card.active .faq-answer {
    display: block;
}

.faq-toggle {
    font-weight: bold;
    color: #888888;
    margin-left: 10px;
    cursor: pointer;
    flex-shrink: 0;
}

.footer {
    background-color: #0033A0;
    color: white;
    padding: 50px 20px;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.footer-left, .footer-right, .footer-cards {
    flex: 1;
    min-width: 300px;
}

    .footer-left img {
        max-height: 50px;
        margin-bottom: 10px;
    }

    .footer-left p {
        margin: 10px 0;
        line-height: 24px;
        font-size: 16px;
    }

    .footer-left h3 {
        margin-bottom: 10px;
    }

.footer-links {
    margin-top: 15px;
}

    .footer-links a {
        color: #FFB81C;
        text-decoration: none;
        font-size: 0.9rem;
        display: block;
        margin-bottom: 5px;
    }

        .footer-links a:hover {
            text-decoration: underline;
        }

.footer-right {
    text-align: left;
}

    .footer-right p {
        font-weight: 600;
        font-size: 24px;
        margin-bottom: 20px;
    }

.subscribe-form {
    display: flex;
    gap: 5px;
}

    .subscribe-form input[type="email"] {
        flex: 1;
        padding: 10px;
        border: none;
        border-radius: 5px 0 0 5px;
    }

    .subscribe-form button {
        padding: 10px;
        background-color: #FFB81C;
        color: #333333;
        border: none;
        border-radius: 5px 5px 5px 5px;
        font-weight: bold;
        cursor: pointer;
        margin-left: 20px;
        min-width: 180px !important;
        font-family: 'Noto Sans Variable';
    }

.footer-bottom {
    margin: 80px auto 0 auto;
    border-top: 1px solid #ccc;
    padding-top: 10px;
    text-align: center;
    font-size: 0.8rem;
    max-width: 1200px;
    width: 100%;
}

.footer-cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.footer-card {
    background-color: #0033A0;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    flex: 1;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 300px;
}

.footer-card-left {
    background-color: #5B92E5;
    padding: 20px;
    border-radius: 8px;
    min-height: 50px;
    text-align: left;
    flex: 1;
    color: white;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 300px;
}

    .footer-card-left .text-group {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .footer-card-left a {
        color: #FFB81C;
        text-decoration: none;
        font-size: 1rem;
    }

    .footer-card-left p {
        color: white;
        text-decoration: none;
        font-size: 14px;
        margin: 0;
        font-weight: normal; /* <- Add this line */
    }

    .footer-card-left a:hover {
        text-decoration: underline;
    }

    .footer-card-left .icon {
        background-color: #FFB81C;
        color: #0033A0;
        padding: 12px;
        border-radius: 20%;
        display: flex;
        align-items: center;
        justify-content: center;
    }


.footer-card-right {
    background-color: #CEDEF7;
    padding: 20px;
    border-radius: 8px;
    min-height: 50px;
    text-align: left;
    flex: 1;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 300px;
    gap: 10px; /* Optional: space between elements */
    flex-wrap: wrap; /* Allow line breaks if needed */
}

    .footer-card-right p {
        color: #333333;
        text-decoration: none;
        font-size: 14px;
        font-weight: normal; /* Not bold */
        margin: 0;
    }

    .footer-card-right a {
        color: #0033A0;
        text-decoration: none;
        font-size: 1rem;
    }

        .footer-card-right a:hover {
            text-decoration: underline;
        }

    .footer-card-right .icon {
        background-color: #0033A0;
        color: #0033A0 !important;
        padding: 12px;
        border-radius: 20%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.job-listing {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feedback-text {
    font-size: 0.95rem;
    text-align: justify;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* limits to 4 lines */
    -webkit-box-orient: vertical;
}

.read-more {
    color: #0033A0;
    font-weight: bold;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 10px;
    display: inline-block;
}



.job-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 20px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #E1E4ED;
}

    .job-card span {
        color: #0033A0;
        font-weight: 600;
    }

.apply-btn {
    background: #5B92E5;
    color: white;
    padding: 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    white-space:nowrap;
}

    .apply-btn:hover {
        background: #003ea3;
    }

.feedback-card {
    text-align: center;
    margin: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    width: 300px;
    display: inline-block;
    vertical-align: top;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 3px solid #FFB81C;
    padding: 5px;
}

.read-more-link {
    color: #0033A0;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    cursor: pointer;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background: white;
    margin: 10% auto;
    padding: 30px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
}

.close {
    float: right;
    font-size: 24px;
    cursor: pointer;
}

.testimonial-section {
    background: linear-gradient(to bottom, #f0f6ff, white);
    padding: 40px 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #003399;
    margin-bottom: 20px;
}

.section-description {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #333;
    line-height: 1.6;
}

.custom-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
    max-width: 900px;
}

.line {
    height: 2px;
    flex-grow: 1;
    background-color: #8099D0;
}

    .line.center {
        flex-grow: 0;
        width: 300px;
        background-color: #FFB81C;
        margin: 10px 0px;
        height: 3px;
    }

.person-card-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
       
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.person-card {
    max-width: 300px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 10px;
    margin-right: 10px;
    flex-shrink: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 0.5;
    transform: scale(0.95);
}

    .person-card.center {
        transform: scale(1.05);
        opacity: 1;
    }

    .person-card.hidden {
        opacity: 0;
        pointer-events: none;
        transform: translateX(-100%);
    }


/*.person-card-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.person-card {
    max-width: 300px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 10px;
    margin-right: 10px;
}*/

.person-top-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-circle {
    width: 48px;
    height: 48px;
    background-color: #d8e4f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

    .icon-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.person-name {
    font-weight: 600;
    color: #4066B8;
    font-size: 16px;
    white-space: nowrap;
    text-align: left;
}

.person-title {
    color: #888888;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: justify;
    transition: all 0.3s ease;
    margin-top: 7px;
    font-family: 'Noto Sans Variable';
    text-align: left;
}

.person-info {
    display: flex;
    flex-direction: column;
}

/*subscribe banner*/

.subscribe-banner {
    background-color: #1a33a0; /* strong blue */
    color: white;
    padding: 40px 20px;
    border-radius: 10px;
    max-width: 1160px;
    margin: auto;
}

.subscribe-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 0px 55px 0px 55px
}

.subscribe-text {
    font-size: 24px;
    font-weight: 400;
    min-width: 250px;
    line-height: 1.6;
}

.arrow-icon {
    height: auto;
    margin-top: 40px;
    flex-shrink: 0;
}

.subscribe-input-group {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    height: 55px;
    min-width: 450px
}

    .subscribe-input-group input {
        border: none;
        padding: 12px 16px;
        flex: 1;
        font-size: 1rem;
        outline: none;
        min-width: 220px;
    }

    .subscribe-input-group button {
        background-color: #F4B400; /* Google yellow style */
        color: #333;
        font-weight: 600;
        border: none;
        border-radius: 8px;
        padding: 12px 25px;
        margin-right: 7px !important;
        cursor: pointer;
        font-size: 14px;
        font-family: 'Noto Sans Variable';
    }

.social-icon {
    margin-left: 13px;
}
