/* Import Roboto Slab font */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    outline: 0;
    border: 0;
    appearance: none;
    box-sizing: border-box;
    list-style: none;
}

html {
    overflow-x: hidden;
    font-size: 14px;
    scroll-behavior: smooth;

}

body {
    background: rgba(255, 255, 255, 1);
    font-family: 'Roboto Slab', sans-serif;
    line-height: 10px;
    margin: 0px;
    position: relative;
    visibility: hidden;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}



/* Headings Styling */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto Slab', serif;
    font-style: normal;
    color: #333333;
    margin-bottom: 10px;
    text-transform: capitalize;
}

h1 {
    font-weight: bold;
    font-size: 48px;
    line-height: 65px;
}

h2 {
    font-weight: bold;
    font-size: 40px;
    line-height: 55px;
}

h3 {
    font-weight: bold;
    font-size: 32px;
    line-height: 45px;
}

h4 {
    font-weight: bold;
    font-size: 24px;
    line-height: 35px;
}

h5 {
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
}

h6 {
    font-weight: bold;
    font-size: 16px;
    line-height: 25px;
}

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

ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

.fs {
    font-size: 12px;
}


.zoomout img {
    transition: transform 0.3s ease-in-out;
}

.zoomout img:hover {
    transform: scale(1.2);
}

.hover-bg-blue:hover {
    background-color: #179FCF;
    color: #FFFFFF;
}

.hover-blue:hover {
    color: #179FCF;
}

.hover-underline-animation,
.hover-underline-animation.active {
    display: inline-block;
    position: relative;
    color: #FFFFFF;
}

.hover-underline-animation:hover {
    color: #FFFFFF;
}

.nav-link.show {
    color: #FFFFFF;
}

.hover-underline-animation::after,
.hover-underline-animation.active::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #FFFFFF;
    transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after,
.hover-underline-animation.active::after {
    transform: scaleX(1);
}

.hover-underline-animation::after {
    transform-origin: bottom right;
}

.hover-underline-animation:hover::after {
    transform-origin: bottom left;
}

.link-dark.hover-underline-animation:hover {
    color: #179FCF;
}

.link-dark.hover-underline-animation:hover::after {
    background-color: #179FCF;
}

.title-sub {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    line-height: 28px;
    text-transform: uppercase;
    color: #262161;
}

.title-heading {
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 50px;
}

.section-padding {
    padding: 60px 0;
}

.btn-blue {
    display: inline-block;
    width: auto;
    background-color: #179FCF;
    border-radius: 5px;
    transition: 0.5s;
}

.btn-blue:hover {
    background-color: #262161;
}

.btn-view {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-family: 'Lato', sans-serif;
    font-weight: normal;
    font-size: 18px;
    line-height: 21.6px;
    color: #ffffff;
    padding: 10px 36px;
}

.section-btn {
    display: inline-block;
    width: auto;
    background-color: #FFFFFF;
    border-radius: 5px;
    transition: 0.5s;
    align-items: center;
    border: 1px solid #262161;
}

.section-btn .btn-text {
    /* background-color: #FFFFFF; */
    color: #262161;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    line-height: 21.6px;
    transition: 0.5s;

}

.section-btn .btn-icon {
    background-color: #262161;
    color: #FFFFFF;
    transition: 0.5s;
}

.section-btn:hover {
    border-color: #179FCF;
}

.section-btn:hover .btn-text {
    color: #179FCF;
}

.section-btn:hover .btn-icon {
    background-color: #179FCF;

}

/* Header Start */
.header-top {
    margin-bottom: -30px;
    position: relative;
}

.topbar-content {
    padding: 15px 0;
}

.header-logo a img {
    display: block;
    max-height: 67px;
}

.address-list {
    display: inline-block;
    /* padding-right: 25px; */
    padding-left: 25px;
    border-right: 1px solid #eee;
    font-size: 14px;
}

.address-list:last-child {
    border: none;
}

.address-list .info-icon {
    float: left;
    margin-right: 15px;
    line-height: 35px;
}

.address-list .info-content {
    float: left;
    text-align: left;
    display: block;
    line-height: 24px;
}

.info-content .info-title {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    line-height: 18px;
    font-weight: 600;
}

.info-content a {
    color: #333333;
}

.info-content .info-des {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #333333;
    font-weight: 300;
}

.menu-bar {
    background: transparent;
    margin: 0;
    z-index: 999;
    width: 100%;
    top: 0;
    position: relative;
}

.menu-bar-box {
    position: relative;
    z-index: 10;
    max-width: 1172px;
    margin: 0 auto;
    border-radius: 1px;
    background: #262161;
    padding: 10px 30px;
}

.navbar {
    display: flex;
    width: 100%;
    position: relative;
    align-items: center;
    justify-content: space-between;
}

.menu-area ul li {
    display: inline-block;
    margin-right: 32px;
    padding: 0;
    font-size: 18px;
}

.menu-area ul li a {
    font-size: 15px;
    font-weight: 400;
    margin-right: 10px;
    height: 22px;
    line-height: 21.6px;
    padding: 0;
    color: #fff;
    position: relative;
    font-family: 'Lato', sans-serif;
}

.toolbar {
    border-left: 1px solid rgba(255, 255, 255, .42);
    padding-left: 22px;
    border-color: #fff;
}

.toolbar ul {
    display: flex;
    align-items: center;
}

.toolbar ul li {
    display: inline-block;
    margin-right: 22px;
}

.toolbar ul li a {
    color: #fff;
    display: inline-block;
    cursor: pointer;
}

.toolbar ul li a i {
    font-size: 18px;
}

.offcanvas-start {
    left: unset;
    right: 0;
    transform: translateX(100%);
}

.nav-item.dropdown .dropdown-menu li a {
    color: #262161;
}

/* .dropdown-item.hover-underline-animation.active,
.dropdown-item.hover-underline-animation:hover {
    background-color: white !important;
    text-decoration: underline;
    text-decoration-color: #262161;
} */

.nav-item.dropdown .dropdown-menu li a,
.nav-item.dropdown .dropdown-menu li a.active {
    display: inline-block;
    position: relative;
}

.nav-item.dropdown .dropdown-menu li a::after,
.nav-item.dropdown .dropdown-menu li a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #179FCF;
    transition: transform 0.25s ease-out;
}

.nav-item.dropdown .dropdown-menu li a:hover::after,
.nav-item.dropdown .dropdown-menu li a.active::after {
    transform: scaleX(1);
}

.nav-item.dropdown .dropdown-menu li a::after {
    transform-origin: bottom right;
}

.nav-item.dropdown .dropdown-menu li a:hover::after {
    transform-origin: bottom left;
}
.nav-item.dropdown .dropdown-menu li a:hover {
    color: #179FCF;
}
/* .nav-item.dropdown .dropdown-menu li a:hover {
    text-decoration: underline;
    text-decoration-color: #179FCF;
    color: #179FCF;
} */

.dropdown-item.active,
.dropdown-item:hover {
    background-color: transparent;
    /* color: #179FCF; */
}

/* Header End */

/* Banner Start */
.banner .swiper-slide.bg {
    background: linear-gradient(123.89deg, rgba(0, 0, 0, 0.44) 49.19%, rgba(255, 255, 255, 0) 61.45%),
        url("/assets/images/slider.webp") center/cover no-repeat;
    /* background-image: url("/assets/images/slider.webp"); */
    width: 100%;
    height: 815px;
}

.banner .swiper-slide.bg1 {
    background: linear-gradient(123.89deg, rgba(0, 0, 0, 0.44) 49.19%, rgba(255, 255, 255, 0) 61.45%),
        url("/assets/images/slider1.webp") center/cover no-repeat;
    /* background-image: url("/assets/images/slider.webp"); */
    width: 100%;
    height: 815px;
}

/* Swiper container */
.banner .swiper-container {
    width: 100%;
    /* max-width: 1107px; */
    /* height: 439px; */
    /* margin-top: 154px; */
    position: relative;
    height: 100%;
}

.banner .swiper-slide {
    /* display: flex; */
    /* flex-wrap: wrap; */
    padding: 130px 0 0 130px;
    /* padding-left: 130px; */
    /* height: 439px; */
}

.banner .swiper-slide .span-text {
    font-family: 'Roboto Slab', sans-serif;
    font-size: 18px;
    line-height: 23.74px;
    color: #179FCF;
    background-color: #fff;
    padding: 0 19px;
    border-radius: 5px;
}

.banner .swiper-slide h2 {
    color: #fff;
    font-family: 'Roboto Slab', sans-serif;
    font-weight: 500;
    line-height: 65px;
    margin: 25px 0;
}

.banner .swiper-slide h2 p {
    margin-bottom: 0;
}

.banner .swiper-slide .p-text {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    line-height: 27px;
    width: 539px;
    color: #fff;
    margin-bottom: 25px;
}

/* Vertical pagination positioning */
.banner .swiper-pagination {
    left: 10px;
    top: 30% !important;
    transform: translateX(95%);
    display: flex;
    flex-direction: column;
    position: absolute;
    bottom: unset !important;
}

/* Custom Pagination Styling */
.banner .swiper-pagination-bullet {
    width: 45px;
    height: 45px;
    background-color: transparent;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    border-radius: 50%;
    margin: 0px 0px 20px !important;
    border: 2px solid #179FCF;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.banner .swiper-pagination-bullet-active {
    color: #fff;
    background: #179FCF;
}

/* Banner End */

/* Service Top Section Start */
.service-card {
    margin-top: -112px;
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
}

.service-card-wrapper .card {
    width: 350px;
    height: 225px;
    border: 1px solid rgba(72, 72, 72, 0.31);
    padding: 25px 0;
    background-color: #fff;
    color: rgba(38, 33, 97, 1);
    transition: 0.5s;

}

.service-card-wrapper .card:hover {
    background-color: #262161;
    color: #fff;
}

.service-card-title {
    font-family: 'Lato', sans-serif;
    font-size: 19.75px;
    line-height: 23.7px;
    padding-top: 25px;
}

/* Service Top Section End */

/* About Section Start */
.about-img {
    height: 386.62px;
    width: auto;
    margin-top: 135px;
}

.about-img-wrapper img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    object-position: center;
}

.about-des-wrapper .sub-title {
    background-color: #262161;
    color: #F2F2F6;
    padding: 0 19px;
    border-radius: 5px;
    font-size: 18px;
}

.about-des-wrapper h2 {
    color: #333333;
    padding: 25px 0;
    font-weight: 600;
    text-transform: capitalize;
}

.about-des-wrapper h1 {
    font-weight: bold;
    font-size: 39px;
    line-height: 55px;
    padding: 12px 0;
}

.about-des-wrapper p {
    line-height: 27px;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    padding-top: 1rem;
}

.about-icon-wrapper {
    width: 427px;
    height: auto;
}

.about-icon-item {
    background-color: #F2F2F6;
    color: #4B4848;
    padding: 5px 10px;
    transition: 0.5s;
}

.about-icon-item:hover {
    background-color: #262161;
    color: #F2F2F6;
}

.about-icon-img {
    font-size: 24px;
    padding: 12px;
    background-color: #262161;
    color: #F2F2F6;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

/* About Section End */

/* RECRUITMENT PROCESS Start */
.recruitment {
    background-image: url(/assets/images/index-bg.webp);
}

.flip-card {
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 320px;
    /* text-align: center; */
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    box-shadow: 0px 0px 4px 0px #00000040;
}

.flip-card-front {
    background: #FFFFFF;
    padding: 25px;
}

.flip-card-inner .recruitment-title-sub {
    font-size: 18px;
    line-height: 28px;
    font-family: 'Lato', sans-serif;
    color: #000000;
    font-weight: 900;
    padding: 25px 0;
    text-transform: uppercase;
}

.flip-card-inner .recruitment-des {
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    line-height: 25px;
}

.flip-card-front .recruitment-des {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.flip-card-front .flip-card-img img {
    width: 103px;
}


.flip-card-back {
    background: #262161;
    color: white;
    transform: rotateY(180deg);
    padding: 25px;
    text-align: center;
}

.flip-card-back .recruitment-title-sub {
    color: #FFFFFF;
}


/* RECRUITMENT PROCESS End */

/* Job Start  */
.table-header {
    background-color: rgba(76, 75, 91, 0.72);
}

.table-header span {
    font-family: 'Lato', sans-serif;
    color: #FFFFFF;
    font-size: 20px;
    line-height: 28px;
    padding: 10px;
    font-weight: bold;
    text-transform: capitalize;
}

.job-table-wrapper table {
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    line-height: 28px;
    padding: 5px;
    text-transform: capitalize;
}

.table-container {
    box-shadow: 0px 1px 1px 0px #00000040;
    margin-bottom: 20px;
}

.table th {
    vertical-align: middle;

}

.table td {
    vertical-align: middle;
}

.btn-table-view,
.btn-table-apply:hover {
    background-color: #179FCF;
    transition: 0.5s;
}

.table-btn a {
    font-family: 'Lato', sans-serif;
    color: #FFFFFF;
    font-size: 14px;
    line-height: 21.56px;
    padding: 5px 15px;
}

.btn-table-apply,
.btn-table-view:hover {
    background-color: #262161;
    transition: 0.5s;
}

.job-table-wrapper .table>:not(:first-child) {
    border-top: unset;
}

/* Job End  */

/* Index Counter Start */
.index-counter {
    background-color: #262161;
}

.counter-img i {
    font-size: 25px;
}

/* Index Counter End */

/* Client Start  */
.client .card {
    height: auto;
    width: 100%;
    padding: 25px;
    display: flex;
    align-items: center;
}

.client .card img {
    width: 200px;
    height: 120px;
    object-fit: contain;
    object-position: center;

}


.client .card.last-card {
    background-color: #262161;
    transition: 0.5s;


}

.client .card.last-card:hover {
    background-color: #179FCF;
}

.client .card.last-card a {
    color: #FFFFFF;
    line-height: 28px;
    text-align: center;
    font-family: 'Lato', sans-serif;
    display: flex;
    flex-direction: column;
    height: 120px;
    justify-content: center;
}

.card-span {
    font-size: 48px;
    font-weight: 300;
}

.card-span1 {
    font-size: 24px;
    font-weight: normal;
}

/* Client End  */

/* Testimonial Start */
.testimonial {
    background-image: url(/assets/images/testimonial-bg.webp);
    background-color: #F2F2F6;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-slider {
    overflow: hidden;
}

.testimonial-slider .swiper-slider {
    width: calc(100% / 3);
    transition: all .25s ease-out;
    opacity: 1;
}

.testimonial-slider .swiper-slide-active+.swiper-slide~.swiper-slide {
    opacity: .35;
}

.testimonial-card {
    background: transparent;
    color: #6c757d;
    border-radius: 5px;
    max-width: 100%;
    transition: all .25s ease-out;
    transform: scale(.75);
    transform-origin: center;

}

.testimonial-card .testimonial-des {
    color: #000000;
    font-size: 16px;
    line-height: 26.32px;
    font-family: 'Lato', sans-serif;
    text-align: justify;
}

.testimonial-card .testimonial-des i {
    color: #d7d7db;
    font-size: 24px;

}

.testimonial-info img {
    height: 60px;
    width: 60px;
    object-fit: cover;
}

.testimonial-slider .swiper-slide-active .testimonial-card {
    transform: scale(1);
    background-color: #262161;
    color: #ffffff;
}

.testimonial-slider .swiper-slide-active .testimonial-card .testimonial-des,
.testimonial-slider .swiper-slide-active .testimonial-card .testimonial-info h6,
.testimonial-slider .swiper-slide-active .testimonial-card .testimonial-info p {
    color: #FFFFFF;
}

.swiper-button-next-custom,
.swiper-button-prev-custom {
    position: absolute;
    background: #3e2c89;
    color: #fff;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
    font-size: 24px;
    top: 5%;
    padding: 5px;
}

.swiper-button-next-custom:hover,
.swiper-button-prev-custom:hover {
    background: #2a1b5c;
}

.swiper-button-next-custom {
    right: 5%;

    /* transform: translateY(-50%); */
}

.swiper-button-prev-custom {
    right: 8%;
}



/* Testimonial End */

/* Manpower Section Start */
.manpower-info {
    border-left: 4px solid #179FCF;
    width: 665px;
}

.manpower-info .title-heading {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    text-transform: none;

}

.overlay-manpower {
    width: 418px;
    height: 316px;
    background-color: #262161;
    position: absolute;
    bottom: -5%;
    right: -5%;
    border-top-left-radius: 98px;
}

.manpower-img-wrapper {
    width: 591px;
    height: 383px;
}

.manpower-img-wrapper img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    border-top-left-radius: 98px;

}

/* Manpower Section Start */

/* Index Contact Start */
.bg-dark-blue {
    background-color: #0F1A44;
}

.contact-section {
    color: white;
    width: 630px;
}

.contact-section .dash-title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 15px;
    font-family: 'Lato', sans-serif;
    position: relative;
    display: flex;
    align-items: center;
    left: 85px;
}

.contact-section .dash-title::before {
    content: "";
    position: absolute;
    left: -85px;
    width: 80px;
    height: 6px;
    background-color: white;
    border-radius: 20px;

}

.contact-info-item:hover {
    background: #179FCF;
    border-radius: 5px;
}

.contact-section .title-heading {
    color: #FFF8F8;
    font-weight: 600;
    text-transform: none;
}


.contact-info i {
    font-size: 24px;
    color: #262161;
}

.contact-icon {
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
}

.contact-detail .title-sub {
    text-transform: none;

}

.map-section {
    padding: 0;
}

iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Index Contact End */

/* Footer Section Start */
.footer {
    background-color: #F2F2F6;
}

.footer h5 {
    color: #262161;
    font-family: 'Lato', sans-serif;
}

.footer ul li a {
    font-size: 16px;
    line-height: 19.2px;
    font-family: 'Lato', sans-serif;
    color: #262161;
}

.newsletter-form input {
    border-right: none;
    border-top-right-radius: unset;
    border-bottom-right-radius: unset;
    border-color: #179FCF;
}

.newsletter-form .btn-blue {
    border-left: none;
    border-top-left-radius: unset;
    border-bottom-left-radius: unset;
}

.newsletter-form p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25.01px;
    color: #262161;
}

/* Footer Section End */



/* About Page Start */

/* Page Banner Start */
.page-banner {
    background: linear-gradient(to right, rgba(26, 157, 208, 1), rgba(38, 33, 97, 0.5)),
        url("/public/images/banner-bg.webp") center/cover no-repeat;
    width: 100%;
    height: 299px;
}

.page-title {
    padding: 150px 0 0 55px;
}

.page-title h1 {
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 400;
    padding-bottom: 10px;
    text-decoration-line: underline;
    text-underline-offset: 10px;
}

/* Page Banner End */

/* Page Info Start */
.about-info h2 {
    font-weight: 600;
    letter-spacing: 3%;
    padding: 25px 0;
}

.about-info p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
}

.about-info p span {
    font-weight: 700;
    font-size: 20px;
    color: #262161;
}

.mission-vision span {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 23.44px;
    letter-spacing: 0%;
    color: #262161;
}

.mission-vision p {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 0%;

}

.ifo-img {
    width: 100%;
    height: 243px;
}

.ifo-img img {
    width: 100%;
    height: 100%;
    object-position: cenetr;
}

.overlay-about-info {
    background-color: #262161;
    position: absolute;
    top: -2%;
    right: -2%;
    width: 225px;
    height: 392px;

}

/* Page Info End */

/* About Director Info Start */
.about-director {
    background: linear-gradient(to right, rgba(15, 26, 68, 0.75), rgba(38, 33, 97, 0.5)),
        url("/assets/images/about-bg.webp") center/cover no-repeat;
    /* background-image: url("/assets/images/slider.webp"); */
    width: 100%;
    height: auto;
}

.director-img {
    width: 100%;
    height: 100%;
}

.director-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.director-info {
    height: 100%;
}

.director-info p {
    font-family: 'Lato', sans-serif;
    font-weight: normal;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 1px;
}

.director-title p {
    color: #262161;
}

/* About Director Info End */

/* About Why Start */
.about-why {
    background-color: #F2F2F6;
}

.about-why-detail {
    width: 815px;
}

.about-why-detail ul li {
    width: 50%;
}

.about-why-detail ul li img {
    width: 57px;
    object-fit: cover;
    object-position: center;
}

.about-why-detail ul li p {
    font-family: Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0.16px;
    color: #4B4848;
}

.about-why-img {
    width: 100%;
    height: 100%;
}

.about-why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: pixelated;
    /* Best for pixel-based images */
    image-rendering: -webkit-optimize-contrast;
}

/* About Why End */

/* Country Serve Start */
.countries-section {
    text-align: center;
    padding: 50px 0;
}

.flag-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.flag-container img {
    width: auto;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.flag-container:hover {
    transform: scale(1.1);
}

/* Country Serve End */

/* Contact Page Start */

/* Contact Container Start*/
.contact-section-page {
    background: rgba(242, 242, 246, 1);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: 0px 142px 200px rgba(0.05882352963089943, 0.10196078568696976, 0.2666666805744171, 0.20000000298023224);
    overflow: hidden;
}

.left-container-wrapper {
    margin: 60px 0px 60px 80px;
}

.left-container {
    width: 500px;
}

.contact-detail p {
    line-height: 1.5rem;
    color: white;
}

.right-container {
    background: #179FCF;
    border-radius: 0 15px 15px 0;
    padding: 20px;
    margin-left: 200px;
    height: 100%;
}


.map-container {
    width: 500px;
    height: 90%;
    overflow: hidden;
    background: white;
    margin: 35px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    left: -230px;
    display: flex;
    align-items: center;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-heading {
    font-weight: 700;
    font-size: 54px;
    line-height: 71.22px;
    letter-spacing: 0%;

}

.left-container p {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
}

.contact-heading span,
.text-dark-blue {
    color: #262161;
}

.left-container .form-control {
    padding: 12px;
    border-color: #E0E0E0;
    background-color: transparent;
    color: #333333;
}

.left-container .form-control:focus {
    background-color: transparent;
    color: #333333;
}

.left-container .form-control::placeholder {
    color: #333333;
}

.btn-custom-submit {
    font-family: 'Montserrat', sans-serif;
    background-color: #1a1a5e;
    color: white;
    padding: 12px;
    font-size: 16px;
    width: 100%;
    font-weight: 700;
    transition: 0.5s;
}

.info-section ul .address-list {
    padding-left: 0;
}

.btn-custom-submit:hover {
    background-color: #179FCF;
}

/* Contact Container End*/

/* Current Job Page Start  */

/* Vacancy Page Start  */
.section-header {
    background-color: #F2F2F6 !important;
    padding: 0px !important;
    font-family: 'Lato', sans-serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: normal;
}

/* Vacancy Page End  */