@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;600;700&display=swap');



* {
    font-family: 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    transition: 0.2s ease-in-out;
    /* color: #000; */
    text-decoration: none;
}

::selection {
    background-color: var(--Soft-Orange);
    color: #fff;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--Soft-Blue);
    border-radius: 20px;
}

section {
    padding: 2rem 9%;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.heading {
    text-align: center;
    font-size: 2rem;
    color: var(--text-color);
    margin-top: 6rem;
}

.heading h1 {
    padding-bottom: 2rem;
}

.heading p {
    max-width: 60rem;
    margin: auto;
    color: var(--text-color);
    font-size: 1.7rem;
}

.all-btn {
    padding: 1rem 3rem;
    font-size: 1.5rem;
    background-color: var(--Soft-Blue);
    border-radius: .5rem;
    color: #fff;
}

.all-btn:hover {
    background-color: transparent;
    color: var(--Soft-Blue);
    border: 2px solid var(--Soft-Blue);
}

:root {
    --Soft-Blue: hsl(231, 77%, 69%);
    --Dark-Blue: hsl(238.05deg 94% 66%);
    --Soft-Orange: hsl(37, 94%, 66%);
    --Grayish: hsl(229, 8%, 60%);
    --box-shadow: .5rem .5rem 0 hsl(231, 50%, 90%);
    --text-shadow: .4rem .4rem 0 rgba(0, 0, 0, .2);
    --border: .2rem solid var(--green);
    --text-color: hsl(229, 31%, 21%);
    --green: hsl(122.4deg 94% 66%);
}


/* navbar sections starts */

.header {
    padding: 0.9em 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0%;
    left: 0;
    z-index: 10000;
    box-shadow: 0rem 0.5rem 1.5rem rgba(0, 0, 0, .1);
    border-top: 0.5px solid blue;
    transition: background-color 0.3s ease;
}

.white-BackGround {
    background-color: #fff;
}

.header .logo {
    cursor: pointer;
}

.header .navbar a {
    margin-left: 2rem;
    font-weight: 600;
    font-size: 18px;
    color: #000;
}

.header .navbar a:hover {
    color: var(--Soft-Orange);
}

.header .navbar .btn {
    padding: .6rem 3rem;
    background-color: var(--Soft-Orange);
    color: #fff;
    border-radius: .5rem;
}

.header .navbar .btn:hover {
    color: var(--Soft-Orange);
    background-color: transparent;
    border: 2px solid var(--Soft-Orange);
}

#menu-btn {
    padding: 1rem 1rem;
    background-color: #eee;
    font-size: 3rem;
    color: var(--Soft-Blue);
    border-radius: .5rem;
    cursor: pointer;
    display: none;
}


/* Media Queries */

@media (max-width: 991px) {
    html {
        font-size: 55%;
    }
}

@media (max-width: 768px) {
    #menu-btn {
        display: initial;
    }

    .header .navbar {
        position: absolute;
        top: 115%;
        right: 2rem;
        box-shadow: 0rem 0.5rem 1.5rem rgba(0, 0, 0, .1);
        width: 33rem;
        border-radius: 1em;
        border: 1px solid var(--Soft-Blue);
        background-color: #eeeeee;
        transform: scale(0);
        transform-origin: top right;
    }

    .header .navbar.active {
        transform: scale(1);
    }

    .header .navbar a {
        margin: 2.5rem;
        text-align: center;
        display: block;
        font-size: 2rem;
    }
}

@media (max-width: 450px) {
    html {
        font-size: 50%;
    }
}

/* navbar sections ends */


/* home section starts  */

.home {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.home .image {
    flex: 1 1 45rem;
}

.home .image img {
    width: 100%;
    margin-top: 5rem;
}

.home .contentText h1 {
    font-size: 4.5rem;
    padding-block-end: 1rem 0;
    color: var(--text-color);
}

.home .contentText p {
    font-size: 1.7rem;
    /*font-family: cursive;*/
    padding: 1rem 0;
    max-width: 100%;
    color: var(--text-color);
    padding-bottom: 1rem;
}



.indexPageHeader {
    transform: translate(-14%, -130%) !important;
}

/* home section ends */


/* chooseUs section starts  */

.chooseUs .box-container {
    display: grid;
    row-gap: 2em;
    column-gap: 4em;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    justify-content: center;
    align-items: center;
    margin-bottom: 2em;
}

.chooseUs .box {
    border: 0.5px solid var(--Dark-Blue);
    text-align: center;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0rem 2rem 1.5rem rgba(0, 0, 0, .1);
}

.chooseUs .box:hover {
    border: 3px solid var(--Soft-Orange);
    box-shadow: var(--green);
}

.chooseUs .choosenText:hover {
    color: var(--Soft-Orange);
}

.chooseUs .box h3 {
    font-size: 2rem;
    padding: 1rem 0;
    color: var(--text-color);
}

.chooseUs .box p {
    font-size: 1.7rem;
    padding-bottom: 2.5rem;
    color: var(--Grayish);
}

.chooseUs .fa {
    font-weight: bold;
    font-size: 5em;
    color: var(--Dark-Blue);
}

.chooseUs .fa:hover {
    color: var(--Soft-Orange);
}

.chooseUs .choosenText {
    text-align: center;
    justify-content: center;
    display: flex;
    font-size: 25px;
    font-weight: 900;
    color: var(--Dark-Blue);
    margin-top: 0.5em;
    word-break: break-word;
    /*font-family: cursive;*/
}


/* chooseUs section ends */


/* downloads section starts  */

.companyList .box-container {
    display: grid;
    gap: 4rem;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
}

.companyList .box {
    border: 0.5px solid var(--Soft-Blue);
    box-shadow: 0.5em 0.5rem 0.5em 0.5em rgba(0, 0, 0, .2);
    border-radius: 20px;
    text-align: center;
    background-color: ghostwhite;
}

.companyList .box:hover {
    border: none;
    transform: scale(1.1);
}

.companyList .box h3 {
    padding: 1rem;
}

.companyList .box p {
    font-size: 1.7rem;
    padding-bottom: 2.5rem;
    color: var(--Grayish);
}


/* downloads section ends */


/* footer section starts */

.footer .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap: 2rem;
}

.footer .box-container .box h3 {
    font-size: 2.5rem;
    color: var(--black);
    padding: 1rem 0;
}

.footer .box-container .box a {
    display: block;
    font-size: 1.5rem;
    color: var(--light-color);
    padding: 1rem 0;
    text-decoration: underline;
}

.footer .box-container .box a i {
    padding-right: .5rem;
    color: var(--green);
}

.footer .box-container .box a:hover i {
    padding-right: 1rem;
}

.footer .credit {
    padding: 1rem;
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 2rem;
    /* color: #000; */
    /* border-top: .1rem solid rgba(0, 0, 0, .1); */
    border-top: .1rem solid #ffffff;
}

.footer .credit span {
    color: var(--Soft-Orange);
    cursor: pointer;
}


/* footer section ends */

.imageCenteredText {
    display: flex;
    align-self: center;
    position: absolute;
    justify-content: center;
    font-weight: bold;
    font-size: 35px;
    width: 84%;
    text-align: center;
}

.mySlides {
    text-align: center;
}

.contentImage {
    width: 70%;
    height: 25vh;
    border-radius: 10px;
}

.contentImageContainer {
    display: flex;
    justify-content: center;
}

.contentText {
    position: relative;
    background-color: ghostwhite;
    width: 100%;
    border-radius: 20px;
    display: grid;
    place-content: center;
    padding: 2em;
    isolation: isolate;
    overflow: hidden;
    box-shadow: 1rem 0.5rem 1rem rgb(0 0 0 / 19%);

}

.contentText::before,
.contentText::after {
    content: '';
    position: absolute;
}

.contentText::before {
    width: 200%;
    height: 200%;
    background-image: conic-gradient(rgb(241 137 2) 0deg, transparent 60deg, transparent 180deg, rgb(241 137 2) 180deg, transparent 240deg);
    inset: -50%;
    z-index: -2;
    animation: float-border 6s linear infinite;
}

.contentText::after {
    background-color: ghostwhite;
    inset: 3px;
    border-radius: calc(20px - 3px);
    z-index: -1;
    transition: all 0.35s linear;
}

@keyframes float-border {
    to {
        transform: rotatez(360deg);
    }
}

@media only screen and (max-width: 768px) {
    .imageCenteredText {
        font-size: 2rem;
        width: 80%;
    }

    .contentImage {
        height: 100%;
        width: 100% !important;
    }

}

@media only screen and (max-width: 1440px) {
    .contentImage {
        height: 100%;
        width: 70%;
    }
}

@media only screen and (min-width: 1450px) {
    .imageCenteredText {
        font-size: 55px;
        width: 75%;
    }
}

@media only screen and (max-width: 768px) {
    .imageCenteredText {
        font-size: 2rem;
        width: 80%;
    }

    .contentImage {
        height: 100%;
    }

    .contentImage.borderRadius6px {
        margin-top: 10px;
    }


    .allDetailsBranchContentText {
        font-size: 1rem !important;
    }

    .allDetailsBranchImage {
        width: 15rem !important;
    }

    .allDetailsBranchHeader {
        font-size: 1.5rem !important;
    }

    .branchDetailsAllContainer {
        width: 43rem;
    }
}


@media only screen and (min-width: 1450px) {
    .imageCenteredText {
        font-size: 55px;
        width: 75%;
    }
}

.branchesImage {
    width: 100%;
    border-radius: 20px;
}

.branchesContentText {
    /* text-align: initial; */
    word-break: break-all;
}

.branchesHeader {
    color: #235bb5 !important;
    font-size: 1.5rem !important;
}

.branchDetails {
    cursor: pointer;
}

#branchDetailsAll {
    display: none;
}

.branchDetailsAll {
    position: absolute;
    width: 85%;
    /* top: 670vh; */
    justify-content: center;
}

.branchDetailsAllContainer {
    display: flex;
    max-width: 60rem;
    border-radius: 5px;
    border: 2px solid #235bb5;
    background-color: #ffffff;
    box-shadow: var(--box-shadow);
    padding: 5px;
}

.allDetailsBranchImage {
    width: 25rem;
    border-radius: 5px;
}

.allDetailsBranchHeader {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #235bb5 !important;
}

.branchDetailsAllContent {
    padding: 10px;
    padding-top: 0;
}

.allDetailsBranchContentText {
    font-size: 1.5rem;
}

#cancelBtn {
    display: block;
    width: 100%;
    text-align: right;
    font-size: large;
}

.fa-solid {
    cursor: pointer;
}


/* Slideshow container */

.slideshow-container {
    width: 100%;
    position: relative;
    margin: auto;
}


/* Next & previous buttons */

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -35px;
    color: #f5f9ff;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}


/* Position the "next button" to the right */

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


/* On hover, add a black background color with a little bit see-through */


/* .prev,
.next {
    background-color: rgba(0, 0, 0, 0.8);
} */


/* Caption text */

.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}


/* Number text (1/3 etc) */

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}


/* The dots/bullets/indicators */

.dot {
    cursor: pointer;
    height: 10px;
    width: 20px;
    margin: 0 2px;
    background-color: ghostwhite;
    display: inline-block;
    transition: background-color 0.6s ease;
    transform: skewX(150deg);
}

#activeDot {
    background-color: var(--Dark-Blue);
}

.dot:hover {
    background-color: var(--Soft-Blue);
}


/* Fading animation */

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

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}


/* On smaller screens, decrease text size */

@media only screen and (max-width: 300px) {

    .prev,
    .next,
    .text {
        font-size: 11px
    }
}

.whyChooseContent {
    font-size: 2em;
    padding: 1em 2em 0em 2em;
    background-size: cover;
    background-position: 50% 50%;
    background-image: linear-gradient(rgb(255 255 255 / 60%), rgb(255 255 255 / 67%)), url(../images/whyChooseUsImg.jfif);
    background-repeat: space;
    border-radius: 10px;
    box-shadow: 0rem 0.5rem 1.5rem rgb(45 25 214 / 90%);
}


/* Animation for Who we are */

.whoAreWe {
    animation: whoAreWe 1.5s ease forwards;
}

.ourMission {
    animation: ourMission 1.5s ease forwards;
}

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

    100% {
        transform: translateX(0%);
    }
}

@keyframes whoAreWe {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}


/* Choose Us  */

.sliderDots {
    display: flex;
    justify-content: center;
    width: 100%;
}

.chooseUsBoxContentContainer {
    height: 100%;
}


/* #whyChooseUs {
    display: none;
} */

@keyframes whyChooseUs {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0%);
    }
}

.footer>* {
    color: #ffffff !important;
}

.footer {
    /* background-color: #343d3c; */
    background-image: linear-gradient(180deg, #898989 0%, #000 100%) !important;
}


/* Our companies */

@keyframes companyListHeader {
    0% {
        transform: translateY(250%);
    }

    100% {
        transform: translateY(0%);
    }
}

@keyframes companyListContent1 {
    0% {
        transform: translateY(250%);
    }

    100% {
        transform: translateY(0%);
    }
}


/* clients section css */

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

    to {
        transform: translateX(-100%);
    }
}

.clients {
    overflow: hidden;
    white-space: nowrap;
    padding: 30px 0px;
}

.clients:hover .clients-slides {
    animation-play-state: paused;
}

.clients-slides {
    display: inline-block;
    animation: 35s clientsImg infinite linear;
}

.clients-slides img {
    height: 120px;
    width: 200px;
    margin: 0px 20px;
}

.body {
    background-color: #cce0ff;
}


/* Carrer section css */

.container {
    width: 80%;
    margin: 20px auto;
}

.job {
    background-color: ghostwhite;
    padding: 20px 30px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

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

.jobPreviewHeader,
.jobDetailView {
    width: 70%;
}

.jobDetailView {
    display: none;
}

.jobButtonsHolder {
    width: 30%;
    display: flex;
    justify-content: space-between;
}

.listViewApplyButton,
.jobPreviewButton {
    width: 45%;
}

@media screen and (max-width: 560px) {
    .container {
        width: 100%;
    }

    .jobListItem {
        display: block;
    }

    .jobPreviewHeader {
        width: 100%;
        margin-bottom: 10px;
    }

    .jobButtonsHolder {
        width: 100%;
    }

    .jobDetailView {
        width: 100%;
    }
}

.job h2 {
    margin-top: 0;
}

.job p {
    margin-top: 5px;
    font-size: 1.25rem;
}

.job ul li {
    font-size: 1.25rem;
}

.jobIcon {
    font-size: 1.5rem;
    padding: 10px;
    border-radius: 3px;
    background-color: #e6e6e68f;
}

.jobIconContainer {
    margin-right: 1rem;
}

.jobTittle {
    font-weight: bold;
    font-size: 20px;
}

.jobPreviewButton {
    color: #ffffff;
    background-color: #17a2b8;
    border-color: #2e6da4;
}

.jobPreviewButton:hover {
    color: #ffffff;
    background-color: #138496;
    border-color: #117a8b;
}

.applyButton {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
}

.applyButton:hover {
    color: #fff;
    background-color: #286090;
    border-color: #204d74;
}

.btn {
    /* font-weight: 400; */
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 6px 12px;
    border-radius: 4px;
}


/* form {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    max-width: none !important;
} */

#jobForm {
    display: none;
    background-color: ghostwhite;
    border-radius: 5px;
    padding: 20px;
    max-width: 500px;
}

.label {
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 14px;
    display: block;
}

.inputField {
    background: #e1e1e1;
    padding: 10px 20px;
    border: 1px solid #e1e1e1;
    border-radius: 2px;
    display: block;
    width: 100%;
    max-width: 100%;
    height: 39px;
}

.inputField:focus-visible {
    color: #222;
    background-color: #ffffff;
}

.uploadFileContainer {
    text-align: center;
    border: 1px solid #c8c8c8 !important;
    border-radius: 3px;
    padding: 10px;
}

.uploadButton {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: -5px;
}

.uploadFileIcon {
    font-size: 35px;
    color: #c8c8c8;
}

.formButtonsContainer {
    text-align: right;
}

.careersBody {
    padding-top: 7em;
    background-color: #cce0ff;
}


/* contactUS section starts */

.contactUS .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap: 2rem;
    padding-top: 2em;
}

.contactUS .box-container .box h3 {
    font-size: 2.5rem;
    color: var(--black);
    padding: 1rem 0;
}

.contactUS .box-container .box a {
    display: block;
    font-size: 1.5rem;
    color: var(--light-color);
    padding: 1rem 0;
}

.contactUS .box-container .box a i {
    padding-right: .5rem;
    color: var(--green);
}

.contactUS .box-container .box a:hover i {
    padding-right: 1rem;
}

.contactUS .credit {
    padding: 1rem;
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 2rem;
    /* color: #000; */
    /* border-top: .1rem solid rgba(0, 0, 0, .1); */
    border-top: .1rem solid #ffffff;
}

.contactUS .credit span {
    color: var(--Soft-Orange);
    cursor: pointer;
}


/* contactUS section ends */

form {
    margin: 20px auto;
    width: 100%;
    max-width: 500px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

h2 {
    text-align: center;
    margin-bottom: 10px;
}

hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 10px 0;
}

.contact-inputs {
    display: block;
    width: 100%;
    max-width: 500px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 20px;
    margin-bottom: 15px;
    outline: none;
}

.contact-inputs:focus {
    /* Add a border effect on focus */
    border: 1px solid #007bff;
}

#yourFormId {
    box-shadow: 0rem 0.5rem 1.5rem rgba(0, 0, 0, .1);
}

textarea {
    /* Adjust height for the message field */
    height: 100px;
}

.map-container {
    padding: 20px;
    max-width: 550px;
}

.contact-us {
    margin-bottom: 0 !important;
    text-align: start;
    padding: 25rem 0em 0em 0em;
    margin-top: 1.8em;
}

@media (max-width: 600px) {
    .contact-us {
        margin-top: 2em;
    }
}


/* Caption text */

.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}


/* Number text (1/3 etc) */

.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

.contactUS>* {
    color: #343d3c !important;
}

.contactUS {
    background-color: #ffffff;
}

.contact-us-img {
    width: 100%;
    background-size: cover;
    background-position: left;
    background-image: url(../images/contacts-Us.png);
    background-repeat: space;
    box-shadow: 0rem 0.5rem 1.5rem rgb(45 25 214 / 90%);
}

.about-us-img {
    width: 100%;
    background-size: cover;
    background-position: 50% 50%;
    background-image: url(../images/aboutUs.jpg);
    background-repeat: space;
    box-shadow: 0rem 0.5rem 1.5rem rgb(45 25 214 / 90%);
    margin-top: 7.2em;
}

@media (max-width: 600px) {
    .about-us-img {
        margin-top: 8em;
    }
}

.justifyContentCenter {
    justify-content: center;
    display: flex;
}

.fontSize2em {
    font-size: 2em;
}

.marginBottom10px {
    margin-bottom: 10px !important;
}

.marginBottom15px {
    margin-bottom: 15px !important;
}

.marginTop10px {
    margin-top: 10px !important;
}

.marginTop15px {
    margin-top: 15px !important;
}

.serviceList .box-container {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
}

.serviceImage {
    position: relative;
    width: 100%;
}

.serviceImage-inner {
    display: flex;
    /* position: absolute; */
    height: 100%;
    width: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.serviceImage-front,
.serviceImage-back {
    height: 100%;
    width: 100%;
    backface-visibility: hidden;
}

.serviceImage-back {
    position: absolute;
}

.serviceListImage {
    width: 100%;
    border-radius: 5px;
}


.image-wrapper {
    position: relative;
    display: inline-block;
}

.image-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 5px;
}

.serviceImage-front .serviceListImage {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

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

.serviceImage-back {
    transform: rotateY(180deg);
}

.serviceImage h2 {
    position: absolute;
    top: 35%;
    left: 0;
    right: 0;
    color: #FFFFFF;
    font-size: 3em;
    margin: 10px !important;
}

.serviceImage hr {
    position: absolute;
    top: 70%;
    left: 0;
    right: 0;
    border: 2px solid #fe4f00;
    width: 100%;
}

.borderRadius6px {
    border-radius: 6px;
}

.dealWithAlign {
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 5px;
    margin-top: 10px;
    font-size: 30px;
    font-weight: bolder;
    /*font-family: cursive;*/
}

.serviceContent {
    animation: serviceContent 1s ease forwards;
    margin-top: 30px;
}

@keyframes serviceContent {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0%);
    }
}

.service-contact-info a {
    display: block;
    /* Ensures each item is on a new line */
}

.service-contact-info a i {
    margin-right: 10px;
    /* Optional: Adds space between icon and text */
}

.serviceHeaderImage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(0%, -52%);
    text-align: center;
    font-size: 5em;
    font-weight: 700;
    color: #ffffff;
    /*font-family: 'Arial', sans-serif;*/
}

@media (max-width: 770px) {
    .serviceHeaderImage {
        font-size: 3em !important;
    }

    .indexPageHeader {
        transform: translate(-2%, -185%) !important;
    }

}

@media (max-width: 450px) {
    .serviceHeaderImage {
        font-size: 3em !important;
    }

    .indexPageHeader {
        transform: translate(-2%, -180%) !important;
        line-height: 1.6;
    }

}

@media (max-width: 1024px) {
    .serviceHeaderImage {
        font-size: 4em;
    }
}

.paddingTop9em {
    padding-top: 9em !important;
}

.auboutUs-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    background-color: #d7e2f4;
}

.auboutUs-content-right-radius {
    border-top-right-radius: 150px;
}

.auboutUs-content-left-radius {
    border-top-left-radius: 150px;
}

/* Media query for mobile screens (e.g., screens with a max width of 600px) */
@media (max-width: 600px) {
    .auboutUs-content-right-radius {
        border-top-right-radius: 80px;
    }

    .auboutUs-content-left-radius {
        border-top-left-radius: 80px;
    }
}


.auboutUs-content h1 {
    line-height: 1.6 !important;
    font-size: 20px !important;
    text-transform: uppercase;
    margin-top: 8px;
}

@media (max-width: 750px) {
    .auboutUs-content h1 {
        font-size: 15px !important;
    }

    .auboutUs-content h3 {
        font-size: 10px !important;
    }

    .companyList .carrer-container {
        grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr)) !important;
    }

    .careersBody {
        padding-top: 8em !important;
    }
}

.paddingTop0 {
    padding-top: 0 !important;
}

.marginTop0 {
    margin-top: 0 !important;
}

.auboutUs-content ul li {
    text-align: left;
    font-size: 15px;
    line-height: 2;
}

.aboutUs hr {
    margin: 0 !important;
    height: 5px;
    background-color: #000;
    width: 100%;
}

.auboutUs-content h3 {
    line-height: 1.5 !important;
    font-size: 15px !important;
    font-weight: 500;
}

.circle-image {
    width: 250px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid #000;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.ourProcessIcon {
    font-size: 70px !important;
}

.fullHorizontalRow {
    height: 2px;
    border: 2px solid;
}

.ourProcessAlign {
    text-align: center;
}

.ourProcessAlign:hover {
    transform: scale(1.1);
}

.careersBody h1 {
    font-size: 30px !important;
}

.careersBody h3 {
    font-size: 22px !important;
    color: #00000085 !important;
    margin: 0 10px;
}

.careersBody .lifeAtAlarabi {
    font-size: 40px;
    font-weight: 900;
}

.careersBody .careerContent {
    font-size: 15px;
    background: #ffff;
    padding: 15px;
    border-radius: 6px;
}

.careersBody .careerContent span {
    line-height: 1.9;
}

.companyList .carrer-container {
    display: grid;
    row-gap: 4em;
    column-gap: 9em;
    grid-template-columns: repeat(auto-fit, minmax(37rem, 1fr));
}

.careersBody .careerHeading {
    position: absolute;
    top: 43%;
    left: 51%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #004a9e;
}

@media (max-width: 1300px) {
    .careersBody .careerHeading {
        transform: translate(-50%, -130%);
    }
}


.bar {
    height: 4px;
    width: 250px;
    background: #fabb57;
    margin: 5px auto 25px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.dealWithAlign+.bar {
    background: #fe4f00 !important;
}

.bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 10px;
    background: #ffffff;
    animation: 5s linear infinite bar-move;
}

@keyframes bar-move {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(250px);
    }
}

.fontFamilyCursive {
    /*font-family: cursive !important;*/
}

/* Gallery CSS */

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    background-color: #ffffff;
    width: 100%;
    padding: 10px;
    padding-top: 9em;
    /* box-shadow: 0 0 3px 0 rbg(0, 0, 0, 0.3); */
}

.gallery-item {
    flex-basis: 25%;
    margin-bottom: 6px;
    cursor: pointer;
    opacity: 0.78;
}

.gallery-item:hover {
    opacity: 1;
}

.gallery-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.galleryContainerDiv {
    position: fixed;
    display: none;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    overflow: auto;
    top: 0;
    left: 0;
}

.galleryContentDiv {
    position: relative;
    width: 45%;
    height: 75%;
    margin: 5% auto;
    margin-top: 12em;
}

.galleryContentDiv img {
    width: 100%;
    height: 100%;
    border: solid 5px #fff;
    object-fit: cover;
}

.galleryPopupNext,
.galleryPopupPrev {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 8px;
    top: 45%;
    cursor: pointer;
}

.galleryPopupPrev {
    left: 0;
}

.galleryPopupNext {
    right: 0;
}

@media (max-width: 770px) {
    .gallery-item {
        flex-basis: 33.3%;
        margin-bottom: 3px;
    }

    .galleryContentDiv {
        position: relative;
        width: 60%;
        height: 60%;
        margin: 15% auto;
        margin-top: 12em;
    }

}

@media (max-width: 470px) {

    .gallery-container {
        padding-top: 9em;
    }

    .gallery-item {
        flex-basis: 100%;
        margin-bottom: 1px;
    }

    .galleryContentDiv {
        position: relative;
        width: 90%;
        height: 60%;
        margin: 20px auto;
        margin-top: 12em;
    }

}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    transition: opacity 0.75s, visibility 0.75s;
    z-index: 1000;
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader::after {
    content: '';
    width: 75px;
    height: 75px;
    border: 10px dotted #0074c7;
    border-top-color: #fabb57;
    border-radius: 50%;
    animation: loading 1s ease infinite;
}

.loaderText {
    position: absolute;
    font-size: 1.2em;
}

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

    to {
        transform: rotate(1turn);
    }
}