

@font-face {
    font-family: Roboto-Thin;
    font-display: swap;
    font-style: normal;
    font-weight: 100;
    src: local('Roboto Thin'),local('Roboto-Thin'),url(../fonts/Roboto-Thin.ttf) format('truetype');
}

@font-face {
    font-family: Roboto-Light;
    font-display: swap;
    font-style: normal;
    font-weight: 300;
    src: local('Roboto Light'),local('Roboto-Light'),url(../fonts/Roboto-Light.ttf) format('truetype')
}

@font-face {
    font-family: Roboto;
    font-display: swap;
    font-style: normal;
    font-weight: 400;
    src: local('Roboto Regular'),local('Roboto-Regular'),url(../fonts/Roboto-Regular.ttf) format('truetype')
}

@font-face {
    font-family: Roboto-Medium;
    font-display: swap;
    font-style: normal;
    font-weight: 500;
    src: local('Roboto Medium'),local('Roboto-Medium'),url(../fonts/Roboto-Medium.ttf) format('truetype')
}

@font-face {
    font-family: Roboto-Bold;
    font-display: swap;
    font-style: normal;
    font-weight: 700;
    src: local('Roboto Bold'),local('Roboto-Bold'),url(../fonts/Roboto-Bold.ttf) format('truetype')
}

@font-face {
    font-family: Roboto-Black;
    font-display: swap;
    font-style: normal;
    font-weight: 900;
    src: local('Roboto Black'),local('Roboto-Black'),url(../fonts/Roboto-Black.ttf) format('truetype')
}

:root {
    --primary-color: #212d56;
    --secondary-color: #fdc300;
    --white-color: #ffffff;
    --dark-color: #212d56;
    --menu-bg: #212d56;
    --gray-color: #e3e2eb;
    --link-color: #404040;
    --p-color: #212d56;
    --base-font-family: 'Roboto';
    --title-font-family: Roboto;
    --font-bold-family: 'Roboto';
    --font-weight-bold: bold;
    --h1-font-size: 42px;
    --h2-font-size: 32px;
    --h3-font-size: 28px;
    --p-font-size: 14px;
    --base-font-size: 16px;
    --menu-font-size: 16px;
    --border-radius-large: 100px;
    --border-radius-small: 5px;
}

body {
    background: var(--white-color);
    font-family: var(--base-font-family);
}


/*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

h1, h2, h3, h4, h5, h6 {
    font-family: var(--title-font-family);
    line-height: 1.2;
    color: var(--dark-color);
}

h1 {
    color: var(--primary-color);
    font-size: var(--h1-font-size);
}

h2 {
    font-size: var(--h2-font-size);
    font-weight: 100;
}

h3 {
    font-size: var(--h3-font-size);
    font-weight: 600;
    margin-bottom: 0;
}

h4 {
    color: var(--dark-color);
    font-family: var(--base-font-family);
    font-size: var(--p-font-size);
    letter-spacing: 1px;
    text-transform: uppercase;
}

p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    line-height: 1.5em;
}

b,
strong {
    letter-spacing: 0;
    /*    color: var(--primary-color);*/
}


/*  BLOCKQUOTES */
.quote {
    position: relative;
    margin: 0;
}

    .quote::after {
        content: "“";
        position: absolute;
        bottom: -80px;
        left: 20px;
        font-family: times;
        color: var(--gray-color);
        font-weight: var(--font-weight-bold);
        font-size: 14em;
        line-height: 0;
        opacity: 0.10;
    }

blockquote {
    border-left: 5px solid rgba(0,0,0,0.05);
    display: block;
    margin: 42px 0;
    padding: 14px 22px;
    color: rgba(0,0,0,0.5);
}


/* BUTTON */
.custom-btn {
    background: transparent;
    border: 2px solid var(--dark-color);
    border-radius: var(--border-radius-large);
    padding: 12px 26px 14px 26px;
    color: var(--dark-color);
    font-family: var(--title-font-family);
    font-size: var(--p-font-size);
    white-space: nowrap;
}

    .custom-btn.btn-bg {
        background: var(--white-color);
        color: var(--primary-color);
        border-color: transparent;
        transition: all .3s ease;
    }

    .custom-btn:hover,
    .custom-btn:focus {
        background: var(--dark-color);
        color: var(--white-color);
        border-color: transparent;
    }
/*---------------------------------------
     BOOTSTRAP               
  -----------------------------------------*/

.col-form-label {
    font-size: 0.9rem;
    padding: 0 10px;
}

.table th, td {
    color: var(--dark-color);
    font-size: 0.9em;
}

.datepicker {
    border: 1px solid #e2e3eb !important;
    background-color: var(--white-color) !important;
}
/*---------------------------------------
     GENERAL               
  -----------------------------------------*/
.btn {
    color: var(--primary-color);
}

.btn-primary {
    color: var(--primary-color);
}

.btn-outline-primary {
}

.container {
    max-width: 100% !important;
}

.mainContainer {
    padding-top: 77px;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    *::before,
    *::after {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

a {
    color: var(--link-color);
    font-weight: normal;
    text-decoration: none;
}

    a:hover,
    a:active,
    a:focus {
        color: var(--secondary-color);
        outline: none;
        text-decoration: none;
    }

::selection {
    background: var(--secondary-color);
    color: var(--white-color);
}

.section-padding {
    padding: 6em 0;
}

.section-padding-half {
    padding: 4em 0;
}

.google-map iframe {
    display: block;
    width: 100%;
}

.validator {
    color: red;
}
/*---------------------------------------
    MENU             
  -----------------------------------------*/
/* NAVBAR BASE */
.navbar {
    background: var(--menu-bg);
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.5em 1em 0.2em 1em;
    position: fixed;
    width: 100%;
}

.navbar-brand {
    color: var(--white-color);
    font-size: var(--h2-font-size);
}


/* NAV LINKS */
.nav-link {
    color: var(--white-color);
    font-size: var(--menu-font-size);
    letter-spacing: 0.4px;
    margin: 0 0 0 4em;
    padding: 0.6em 0.8em;
    transition: color 0.3s ease;
}

    .nav-link.active,
    .nav-link:hover,
    .nav-link:focus,
    .nav-link:focus-visible {
        color: var(--secondary-color);
        box-shadow: none;
    }

.navbar-collapse {
    margin-top: 10px;
    margin-left: 80px;
}


.navbar-nav .nav-link.signin {
    padding: 0px 40px !important;
    display: inline-block;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    background-color: #454b70;
    color: var(--secondary-color);
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

    .navbar-nav .nav-link.signin:hover {
        background-color: var(--secondary-color);
        color: var(--white-color);
    }

.nav-login {
    padding: 5px 25px !important;
    display: inline-block;
    border: 2px solid var(--secondary-color);
    border-radius: 50px;
    background-color: #454b70;
    color: var(--secondary-color);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link.show {
    color: var(--secondary-color);
}

.nav-logout {
    color: var(--white-color);
    color: var(--white-color);
    margin: 0.5em 0;
    padding: 0.5em;
    display: inline-block;
}

.dropdown-menu {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
    border: none;
    min-width: 150px;
}

    .dropdown-menu a {
        color: #333;
        font-size: 0.95rem;
        padding: 0.5em 1.2em;
        display: block;
        transition: background 0.2s;
    }

        .dropdown-menu a:hover {
            text-decoration: underline;
            background-color: var(--secondary-color);
            color: var(--primary-color);
        }

        .dropdown-menu a,
        .dropdown-menu a:hover,
        .dropdown-menu a:active,
        .dropdown-menu a:focus,
        .dropdown-menu a:focus-visible {
            color: #333;
            font-size: 0.95rem;
            padding: 0.5em 1.2em;
            display: block;
            transition: background 0.2s;
            text-decoration: none;
        }

.nav-item .dropdown-toggle::after {
    display: none !important;
}

.navbar-nav .navbar-toggler-icon {
    background: none;
}

.navbar-toggler {
    border: 0;
    padding: 0;
    cursor: pointer;
    margin: 0 10px 0 0;
    width: 30px;
    height: 35px;
    outline: none;
}

    .navbar-toggler:focus {
        outline: none;
        box-shadow: none;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background: transparent;
    }

        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
            transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
            transition: top 300ms 50ms ease, transform 300ms 350ms ease;
            transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
            top: 0;
        }

        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
            transform: rotate(45deg);
        }

        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
            transform: rotate(-45deg);
        }

    .navbar-toggler .navbar-toggler-icon {
        background: var(--white-color);
        transition: background 10ms 300ms ease;
        display: block;
        width: 30px;
        height: 2px;
        position: relative;
    }

        .navbar-toggler .navbar-toggler-icon::before,
        .navbar-toggler .navbar-toggler-icon::after {
            transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
            transition: top 300ms 350ms ease, transform 300ms 50ms ease;
            transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
            position: absolute;
            right: 0;
            left: 0;
            background: var(--white-color);
            width: 30px;
            height: 2px;
            content: '';
        }

        .navbar-toggler .navbar-toggler-icon::before {
            top: -8px;
        }

        .navbar-toggler .navbar-toggler-icon::after {
            top: 8px;
        }

.navbar-nav .nav-item.d-lg-none {
    display: none;
}

/*---------------------------------------
     LOGIN             
  -----------------------------------------*/
.card-header {
    background-color: var(--primary-color) !important;
    color: var(--white-color) !important;
}

.account-label {
    color: var(--primary-color);
    padding: 15px;
    font-size: 16px;
}

.btn-warning {
    border-radius: 13px;
    font-weight: bold;
}

.btn-cancel {
    border-width: 3px;
    border-color: var(--secondary-color);
    background-color: var(--white-color);
    border-radius: 15px;
    font-weight: bold;
    color: var(--primary-color);
    padding-top: 4px;
}

    .btn-cancel:hover {
        border-width: 3px;
        border-color: var(--secondary-color);
        background-color: var(--white-color);
        border-radius: 15px;
        font-weight: bold;
        color: var(--primary-color);
        padding-top: 4px;
        opacity: 0.6;
    }

.btn-register {
    background-color: #0470B5;
    color: var(--white-color);
    border-radius: 13px;
    font-weight: bold;
}

    .btn-register:hover {
        background-color: #0470B5;
        color: var(--white-color);
        border-radius: 13px;
        font-weight: bold;
        opacity: 0.6;
    }


/*---------------------------------------
     MAIN SECTION              
  -----------------------------------------*/

.hero {
    position: relative;
    overflow: hidden;
    padding: 70px 28px;
}

.hero-bg {
    background: var(--primary-color);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    color: white;
}

.hero-image {
    position: relative;
    padding-bottom: 50px;
    top: -5em;
}

    .hero-image img {
        width: 100%;
    }

.hero .hero-text {
    padding: 0px 100px;
}

.hero-text h2 {
    margin-top: 20px;
}

.hero-text p {
    font-size: 22px;
    padding-top: 20px;
    font-family: Roboto-Light;
    line-height: 1.3em;
}

.search {
    padding: 10px 0.285rem 10px 0.285rem;
    background: var(--white-color);
    border-radius: 55px;
    background-color: var(--white-color);
    margin: 1px;
}

    .search .main-textbox {
        display: inline-block;
        width: 100%;
        height: 100%;
        padding: .375rem .75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: var(--dark-color);
        background-color: var(--white-color);
        background-clip: padding-box;
        border: 1px solid var(--white-color);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: .25rem;
        transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }

        .search .main-textbox:focus {
            color: var(--dark-color);
            background-color: var(--white-color);
            border-color: var(--white-color);
            box-shadow: none;
        }

        .search .main-textbox:focus-visible {
            outline: none;
            box-shadow: none;
        }

    .search .location::before {
        content: '';
        display: block;
        position: absolute;
        width: 1px;
        height: 2rem;
        background-color: var(--dark-color);
        margin: 8px 0px;
    }

.main-button {
    display: inline-block;
    background-color: var(--dark-color);
    font-size: 15px;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: capitalize;
    padding: 12px 25px;
    border-radius: 23px;
    letter-spacing: 0.25px;
    outline: none;
    border: none;
}

.jobssection {
    z-index: 1;
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
}

.jobssection-bg {
    background: var(--primary-color);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
    color: white;
}

.Boxes::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 5px;
    bottom: 0;
    height: 101%;
    width: 99%;
    left: 10px;
    border-radius: 50px;
    right: 0;
    background: var(--secondary-color);
}

.Boxes {
    padding: 30px;
    height: 100%;
    background: var(--white-color);
    border-radius: 50px;
    box-shadow: 0 4px 4px 0 rgba(0,0,0,.25);
    width: 98%;
    color: var(--primary-color);
}

    .Boxes:hover {
        color: var(--white-color);
        background: #b2aec2;
    }

.jobbox {
    margin-bottom: 40px;
}

.jobtypesection {
    margin-top: 50px;
}

    .jobtypesection h2 {
        font-weight: bold;
        margin-bottom: 50px !important;
    }

.jobtype {
    padding: 0px 50px;
}

    .jobtype a {
        font-size: 16px;
        margin-bottom: 0px !important;
        color: var(--primary-color);
    }

.active {
    background-color: var(--gray-color);
    margin-bottom: 0px !important;
    border-radius: 20px 20px 0px 0px;
    padding: 20px 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.jobkeywords {
    background-color: var(--gray-color);
    height: auto;
    border-radius: 50px;
    color: #6e6b8c;
    margin: 0px 15px 30px 15px;
    padding: 20px;
    max-width: 100%;
}

    .jobkeywords ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: left;
    }

        .jobkeywords ul li {
            list-style: none;
            white-space: nowrap;
            margin: 5px 20px;
        }

        .jobkeywords ul a {
            color: var(--primary-color);
            font-family: roboto-light;
        }

#jobCarousel,
#jobCarousel .carousel-item {
    background-color: transparent;
}

    #jobCarousel .carousel-control-prev,
    #jobCarousel .carousel-control-next {
        width: auto;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        z-index: 10;
        opacity: 1;
    }
/*---------------------------------------
     ABOUT US PAGE          
  -----------------------------------------*/
.ABhero {
    position: relative;
    overflow: visible;
    padding: 40px 20px;
}

    .ABhero h2 {
        color: var(--white-color);
    }

    .ABhero h4 {
        color: var(--white-color);
        text-transform: none;
        font-size: 20px;
    }

    .ABhero .hero-text p {
        font-size: 18px;
        padding-bottom: 50px;
    }

.ABhero-bg {
    margin: 20px 0px;
    background: var(--primary-color);
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 85%);
    color: white;
}

.ABhero-image {
    position: relative;
    top: 2em;
}

.ABhero-wrapper {
    position: relative;
}

.aboutus {
    background-color: var(--secondary-color);
    border-radius: 23px;
    padding: 10px 30px;
    font-weight: bold;
}

/* Floating image positioned absolutely outside top-right */
.floating-aboutus {
    position: absolute;
    top: -90px;
    right: 0px;
    max-width: 650px;
    z-index: 10;
}

.timeline {
    margin: 20px 0px;
    background: var(--primary-color);
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0% 100%);
}

.ourvalues {
    padding: 0px 30px;
}

.values {
    /*padding:40px;*/
    text-align: left;
}

    .values h3 {
        font-size: 16px;
        margin-bottom: 5px;
        font-weight:550;
    }

    .values p {
        font-size: 20px;
        line-height: 1.2em;
        font-family: Roboto-Light;
    }

    .values .imgvalues {
        text-align: center;
        height: 220px;
    }

        .values .imgvalues img {
            height: 200px;
        }

    .values img {
        height: 100px;
    }


.contact {
    background: var(--primary-color);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 75%);
    padding: 50px 30px;
    min-height: 550px;
    position: relative;
    z-index: 1; 
    margin-bottom: 180px;
}

.contacttext {
    color: white;
}

    .contacttext h2 {
        color: var(--white-color);
        font-size: 20px;
    }

    .contacttext p {
        color: var(--white-color);
        font-size: 14px;
    }

.contactform {
    position: absolute;
    bottom: -120px;
    right: 30px;
    /*height: 590px;*/
    width: 700px;
    background: #ffd670;
    border-radius: 50px;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 15px 30px;
}

    .contactform spam {
        margin: 5px;
        margin-left: 10px;
    }

    .contactform input,
    .contactform textarea {
        width: 100%;
        border-radius: 40px;
        height: 40px;
        border: 1px solid #eee;
        padding: 10px; /* Optional: improves readability */
        box-sizing: border-box;
        font-family: inherit;
        font-size: 14px;
        resize: none; /* Optional: disables manual resizing */
        margin: 5px 0px;
    }

    .contactform .submit {
        background-color: #ffe6ab;
        border: 1px solid #ffe6ab;
    }


.cd-timeline {
    overflow: visible; /* or just remove overflow property */
    padding: 2em 0 0px;
    color: var(--cd-color-3);
    font-family: var(--font-primary);
}

.timeline-scroll-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100vw; /* full viewport width */
    -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
    padding-bottom: 20px; /* space for scrollbar */
}

.cd-timeline__container {
    display: flex;
    flex-direction: row;
    gap: 60px;
    position: relative;
    padding: 2em 1em 0em 1em;
    min-width: max-content; /* key: make container width fit all children */
}

    /* Horizontal connecting line */
    .cd-timeline__container::before {
        content: '';
        position: absolute;
        top: 40px; /* adjust to vertically center with icons */
        left: 0;
        height: 4px;
        width: 100%;
        background: #cac7d5;
        z-index: 0;
    }

/* Each timeline block is vertical stack but laid horizontally */
.cd-timeline__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex-shrink: 0;
    width: 210px; /* fixed width for consistency */
    z-index: 1;
    margin-bottom: 0; /* remove vertical margin */
}

/* Timeline icon above content */
.cd-timeline__img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    box-shadow: 0 0 0 4px var(--white-color), inset 0 2px 0 rgba(0,0,0,0.08), 0 3px 0 4px rgba(0,0,0,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    transform: translate(-50%, -50%);
    margin-bottom: 0;
}

    .cd-timeline__img img {
        height: 30px;
    }

/* Remove arrow pointer */
.cd-timeline__content::before {
    display: none;
}

/* Headings */
.cd-timeline__content h2 {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: bold;
}

.cd-timeline__content p {
    font-size: 14px;
    line-height: 1.3em;
}

/*---------------------------------------
     RECRUIT WITH US PAGE          
  -----------------------------------------*/
.RWChero {
    position: relative;
    overflow: visible;
    padding: 40px 20px;
}

    .RWChero h2 {
        color: var(--white-color);
        font-weight:300;
    }

    .RWChero h4 {
        color: var(--white-color);
        text-transform: none;
        font-size: 22px;
    }

    .RWChero .hero-text p {
        font-size: 20px;
        padding-bottom: 20px;
        padding-right: 100px;
    }

    .RWChero .hero-text  {
        margin-bottom: 50px;
    }

.RWChero-bg {
    background: var(--primary-color);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 85%);
    color: white;
}

.RWChero-image {
    position: relative;
    top: 2em;
}

.RWChero-wrapper {
    position: relative;
}

.btnAdvertise, .btnAdvertise:hover, .btnAdvertise:focus,
.btnAdvertise:active, .btnAdvertise:focus-visible {
    border: 1px solid var(--secondary-color);
    border-radius: 23px;
    padding: 10px 20px;
    font-weight: bold;
    color: var(--white-color);
}

.imgrecruit {
    max-width: 400px;
    z-index: 10;
    position: absolute;
    top: 0px;
    right: 120px;
}

.recruitbox {
    background-color: #B1C2E3;
    border-radius: 50px;
    position: relative;
    height: 230px;
    width: 80%;
    padding: 40px 35px;
    border-right: 3px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
    margin: 5px;
}

.ourservices {
    padding: 0px 30px;
}

.ourservices h2{
    font-weight:300;
}

.services img {
    height: 60px;
}

.services h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: none;
    margin-top: 10px;
}

.services p {
    font-size: 12px
}

.reviewHeading {
    padding-top: 40px;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 26px;
    text-align: center;
}

.reviewbox {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 40px;
    border-radius: 30px;
    width: 100%;
    min-height: 310px;
    font-size: 14px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    font-family: roboto-light;
}

    .reviewbox p {
        color: var(--white-color);
        font-size: 12px;
    }

.recruit .carousel-item {
    background-color: transparent;
}

.recruit .carousel-control-prev, .recruit .carousel-control-next {
    width: auto;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    z-index: 10;
    opacity: 1;
}

.recruit i {
    color: var(--primary-color);
}

.btnEnquire,
.btnEnquire:hover,
.btnEnquire:focus,
.btnEnquire:active, .btnEnquire:focus-visible {
    background-color: #0470b5 !important;
    color: var(--white-color) !important;
    border-radius: 40px;
    padding: 10px 30px;
    margin-top: 10px;
}

.LRhero {
    position: relative;
    overflow: visible;
    padding: 40px 20px;
}

    .LRhero h3 {
        background-color: #FFEBC0;
        border-radius: 40px;
        width: 290px;
        color: var(--primary-color);
        padding: 10px 20px;
        margin: 20px 0px;
        font-size:22px;
    }

    .LRhero h4 {
        color: var(--white-color);
        text-transform: none;
        font-size: 24px;
    }

    .LRhero .hero-text {
        padding-bottom: 150px;
    }

        .LRhero .hero-text p {
            font-size: 20px;
        }

.LRhero-bg {
    margin: 20px 0px;
    background: var(--primary-color);
    clip-path: polygon(0 0, 100% 10%, 100% 100%, 0% 85%);
    color: white;
}

.LRhero-image {
    position: relative;
    top: 2em;
}

.ABhero-wrapper {
    position: relative;
}

.floating-leadership {
    position: absolute;
    top: 80px;
    right: 160px;
    max-width: 450px;
    z-index: 10;
}

.servicesOfferings {
    top: 380px;
    position: absolute;
    padding-left: 30px;
}

.Offeringsbox {
    background-color: var(--white-color);
    border-radius: 50px;
    position: relative;
    height: 140px;
    width: 80%;
    padding: 20px;
    border-right: 3px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
    margin: 5px;
}

    .Offeringsbox h4 {
        text-transform: none;
        font-size: 14px;
        font-weight: 500;
    }

    .Offeringsbox p {
        font-size: 12px;
        font-family: roboto-light;
    }

.candidatecare {
    min-height: 250px;
}

    .candidatecare p {
        font-family: roboto-light;
        margin-top:20px;
    }


.clientHeading {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 26px;
    text-align: center;
}

/*---------------------------------------
     JOBS PAGE              
  -----------------------------------------*/
.jobsearch {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 16px;
}

.jobfilter1 {
    display: flex;
    flex-wrap: wrap;
    padding: 5px 0.285rem;
    background: var(--white-color);
    border-radius: 26px;
    margin: 2px;
}

    .jobfilter1 .icon-input {
        display: flex;
        align-items: center;
        gap: 10px; /* spacing between icon and input */
    }

    .jobfilter1 i {
        color: var(--primary-color);
        font-size: 1.2rem;
        flex-shrink: 0;
    }

    .jobfilter1 input {
        flex: 1;
        height: 100%;
        padding: .375rem .3rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: var(--dark-color);
        background-color: var(--white-color);
        background-clip: padding-box;
        border: 1px solid var(--white-color);
        border-radius: .25rem;
        transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    }

    .jobfilter1 select {
        border: none;
    }

        .jobfilter1 select:focus {
            border-color: none;
            box-shadow: none;
        }


    .jobfilter1 input:focus {
        color: var(--dark-color);
        background-color: var(--white-color);
        border-color: var(--white-color);
        box-shadow: none;
    }

.showfilters {
    background: var(--primary-color);
    border-radius: 26px;
    color: var(--white-color);
    border: 1px solid var(--white-color);
    padding: 5px 0.75rem;
    height: 46px;
    margin: 2px;
}

.buttonSearch {
    background: #b2aec2;
    border-radius: 26px;
    color: var(--primary-color);
    padding: 5px 0.75rem;
    height: 46px;
}

    .buttonSearch input:focus {
        border-color: none;
        box-shadow: none;
    }

.btnfilter {
    background: #A8903D;
    border-radius: 26px;
    color: var(--primary-color);
    padding: 10px 0.75rem;
    cursor: pointer; /* makes the whole area feel clickable */
    user-select: none;
    margin: 3px;
}



/* Style the dropdown-like checkbox list */
.custom-checklist {
    position: absolute;
    top: 100%; /* show below the link button */
    left: 0;
    z-index: 1000;
    background: var(--white-color);
    width: max-content;
    min-width: 225px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    /*box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);*/
    margin-top: 5px;
}

    .custom-checklist input {
        margin-right: 5px;
    }

    .custom-checklist td {
        padding: 10px 0px;
    }

.joblist {
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    margin: 15px 0px 0px 15px;
    height: 200px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color:#212d56;
}

    .joblist:hover {
        background-color: var(--gray-color);
    }

    .joblist .ImageLogo {
        height: 80px;
        width: 100%;
        object-fit: contain;
        margin-bottom: 35px;
    }

    .joblist h4 {
        text-transform: uppercase;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 0.2em;
    }

    .joblist h5 {
        font-size: 14px;
        font-weight: 500;
        line-height: 1.1;
    }

    .joblist p {
        color: var(--primary-color);
        opacity: 0.8;
        margin-bottom: 0px;
        font-size: 14px;
    }

.jobicon {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.alljobs {
    padding: 0px 25px;
}

    .alljobs h3 {
        color: var(--primary-color);
        font-weight: bold;
        font-size: 20px;
    }


.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px; /* spacing between buttons */
}

.filter {
    display: inline-flex; /* size fits content */
}

    .filter .btn-linkfilter {
        padding: 6px 12px;
        background-color: var(--primary-color);
        color: var(--white-color);
        border-radius: 20px;
        white-space: nowrap;
        cursor: pointer;
        border: none;
        font-size: 14px;
        text-decoration: none;
        align-items: center;
        display: flex;
        gap: 6px;
        border: 1px solid var(--white-color);
    }

.btn .active {
    background-color: var(--primary-color);
    color: white;
}

.repeater-pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

    /* Each page button */
    .repeater-pagination .btn-page {
        display: inline-block;
        padding: 8px 12px;
        text-decoration: none;
        color: var(--primary-color);
        background-color: var(--white-color);
        border: 1px solid #dddddd;
        font-weight: bold;
        border-radius: 0;
        transition: all 0.2s ease-in-out;
    }

        /* Active page */
        .repeater-pagination .btn-page.active {
            color: var(--primary-color);
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            cursor: default;
            z-index: 2;
        }

        /* Hover and focus */
        .repeater-pagination .btn-page:hover,
        .repeater-pagination .btn-page:focus {
            color: var(--primary-color);
            background-color: var(--gray-color);
            border-color: var(--gray-color);
            text-decoration: none;
        }

        /* First and last item rounded corners (optional) */
        .repeater-pagination .btn-page:first-child {
            border-top-left-radius: 4px;
            border-bottom-left-radius: 4px;
        }

        .repeater-pagination .btn-page:last-child {
            border-top-right-radius: 4px;
            border-bottom-right-radius: 4px;
        }

.no-jobs-message {
    padding: 30px;
    color: var(--primary-color);
}

/*---------------------------------------
     JOBS DETAILS              
  -----------------------------------------*/
.divbtn a {
    font-size: 14px;
}

.btn-yellow {
    color: var(--primary-color);
    background-color: var(--secondary-color);
    font-weight: bold;
    border-radius: 20px;
    padding: 0.375rem 1.4rem;
    font-size:15px;
}

.btn-white {
    background-color: var(--white-color);
    border-color: var(--primary-color);
    font-weight: bold;
    color: var(--primary-color);
    border-radius: 20px;
    padding: 0.375rem 1.1rem;
    font-size: 15px;
}

.btn-blue {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    font-weight: bold;
    border-radius: 20px;
    padding: 0.375rem 1.4rem;
    font-size: 15px;
}

.btn-yellow:hover {
    background-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
    border-color: var(--secondary-color) !important;
}

.btn-white:hover {
    background-color: var(--white-color) !important;
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-blue:hover {
    background-color: var(--primary-color) !important;
    color: var(--white-color) !important;
    border-color: var(--primary-color) !important;
}

.jobdetail {
    padding: 0px 30px;
}

    .jobdetail h3 {
        color: var(--primary-color);
        text-transform: uppercase;
        font-size: 22px;
        margin-bottom: 8px;
    }

    .jobdetail hr {
        margin: 0.5rem 0;
    }

    .jobdetail .maindesc p {
        color: var(--primary-color);
        font-size: 14px;
    }

    .jobdetail .maindesc a {
        color: var(--secondary-color);
        font-weight: bold;
    }

    .jobdetail .header {
        color: var(--primary-color);
        font-size: 14px;
    }

        .jobdetail .header span {
            font-size: 20px;
            font-weight: bold;
        }

        .jobdetail .header .addInfo {
            font-size: 14px;
            font-weight: 100;
        }


        .jobdetail .header .location {
            color: var(--primary-color);
            width: fit-content;
            margin-bottom: 15px;
        }

            .jobdetail .header .location a {
                color: #2f5ea8;
            }

    .jobdetail .lnkschool {
        font-size: 16px;
        font-weight: bold;
        text-decoration: underline;
    }


    .jobdetail .SchoolBoxes {
        width: 150px;
        padding: 5px;
        height: 150px;
        background-color: var(--white-color);
        border-color: #888;
        margin-left: auto;
        margin-right: auto;
        border-radius: 13px;
    }

    .jobdetail .ImageSchool {
        height: 120px;
        width: 120px;
        object-fit: contain;
    }

    .jobdetail .ViewEmp {
        font-size: 15px;
        font-weight: bold;
        border-width: 1px thin;
        border-color: var(--primary-color);
        border-radius: 13px;
        padding: 5px 15px;
    }

    .jobdetail .JobTag {
        color: var(--primary-color);
        font-size: 14px;
        width: 100%;
        background-color: #eeeeee;
        padding: 5px 5px 5px 0px;
        margin: 5px;
        align-self: auto;
        border-radius: 13px;
    }

.smalltags {
    font-size: 11px;
    padding: 0px;
    color: var(--primary-color);
    padding-top: 5px;
}

/*---------------------------------------
      Enquiry         
  -----------------------------------------*/

.Enquiry-bg {
    background-color: var(--primary-color);
    padding: 20px;
    margin-bottom: 20px;
}

    .Enquiry-bg img {
        height: 350px;
    }

    .Enquiry-bg h3 {
        color: var(--white-color);
        font-weight:500;
    }

    .Enquiry-bg h4 {
        color: var(--secondary-color);
        text-transform: none;
        font-size: 24px;
    }

    .Enquiry-bg p {
        color: var(--white-color);
    }

.EnquiryForm {
    background-color: var(--white-color);
    border-radius: 40px;
    padding: 20px;
}

    .EnquiryForm .control-label {
        margin: 5px 0px;
        color: var(--primary-color);
        font-size: 14px;
    }

    .EnquiryForm input,
    .EnquiryForm textarea,
    .EnquiryForm .form-control:disabled {
        background-color: var(--gray-color);
        border-radius: 40px;
    }

    .EnquiryForm textarea {
        padding: 20px;
    }

        .EnquiryForm select {
            background-color: var(--gray-color);
            border-radius: 40px;
        }

.btnSubmitEnquire, .btnSubmitEnquire:hover, .btnSubmitEnquire:focus,
.btnSubmitEnquire:active, .btnSubmitEnquire:focus-visible {
    background-color: #B1C2E3 !important;
    border-radius: 40px;
    font-weight: bold;
    color: #212d56 !important;
    border: none;
}

/*---------------------------------------
     TERMS AND CONDITION            
  -----------------------------------------*/

.divTerms {
    color: #212d56;
    padding: 30px;
}

    .divTerms .cc-header {
        font-size: 18px;
        font-weight: 700;
    }

    .divTerms a {
        text-decoration: underline;
        font-weight: bold;
        color: var(--p-color);
    }

    .divTerms .mainheader {
        font-size: 20px;
    }

    .divTerms .banner {
        color: #fff;
        background: #212d56;
        padding: 5px !important;
    }


/*---------------------------------------
     PRIVACY-POLICY              
  -----------------------------------------*/




/*---------------------------------------
     FOOTER              
  -----------------------------------------*/

.site-footer {
    background: var(--dark-color);
    padding: 5px;
}

    .site-footer a {
        color: var(--white-color) !important;
        font-family: Roboto-Light;
    }

        .site-footer a:hover,
        .footer-icon {
            color: var(--secondary-color);
        }

    .site-footer hr {
        border-top: 2px solid var(--white-color);
        margin: 5px 0px;
    }

.footerlinks {
    margin-top: 30px;
    /*margin-bottom: 10px;*/
}

.fh5co-social-icons a {
    padding-right: 5px;
    font-size: 22px;
}

.fh5co-copyright {
    color: var(--white-color);
    font-size: 12px;
}

/*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

@media screen and (max-width: 1200px) {

    .about-info h2 {
        max-width: 70%;
    }

    .navbar-collapse {
        margin-left: 0px;
    }

    .nav-link {
        margin: 0 0 0 1em;
    }

    .hero .hero-text {
        padding: 0px 10px;
    }

    .floating-aboutus {
        top: 0px;
        max-width: 480px;
    }

    .contactform {
        width: 520px;
    }

    .imgrecruit {
        max-width: 350px;
        top: 50px;
        right: 50px;
    }

    .recruitbox {
        height: auto;
        width: 100%;
    }

    .floating-leadership {
        right: 50px;
    }

    .Offeringsbox {
        height: auto;
    }

    .servicesOfferings {
        top: 400px;
    }

    .Support {
        padding: 20px 80px !important;
    }

    .btnfilter {
        padding: 10px 2px;
        font-size: 14px;
    }
}

@media screen and (max-width: 991px) {
    .navbar {
        padding: 5px 0px;
    }

    .navbar-collapse {
        text-align: center;
        padding: 2.5em 0;
    }

    .nav-link {
        display: inline-block;
    }

    .navbar-expand-lg .navbar-nav .nav-link.contact {
        margin: 1em 0;
    }

    .navbar-collapse {
        padding-top: 0em;
        margin-left: 0;
        margin-top: 0;
    }

    .navbar-nav {
        margin-top: 1em;
    }

    .nav-link {
        margin: 0.5em 0;
        padding: 0.5em;
    }

    .dropdown-menu {
        position: static !important;
        float: none;
        box-shadow: none;
        background-color: #f8f9fa;
    }

    .navbar-nav .nav-item.d-lg-none {
        display: block;
    }

    .copyright-text,
    .footer-link,
    .site-footer .social-icon {
        margin-top: 3em;
        padding: 0;
        text-align: left;
    }

    .mainContainer {
        padding-top: 80px;
    }

    .hero .hero-text {
        padding: 0px 20px;
    }

    .hero-text p {
        font-size: 22px;
    }

    .hero .search {
        border-radius: 0;
        background-color: transparent;
        padding: 15px;
    }

    .search .jobtitle {
        padding: 5px 1rem 5px 1rem;
        background: var(--white-color);
        border-radius: 26px;
        background-color: var(--white-color);
        margin: 10px 2px;
    }

    .search .location {
        padding: 5px 1rem 5px 1rem;
        background: var(--white-color);
        border-radius: 26px;
        background-color: var(--white-color);
        margin: 10px 2px;
    }

        .search .location::before {
            display: none;
        }

    .search .main-button {
        background-color: var(--secondary-color);
        border: 0px;
        color: var(--primary-color);
        font-weight: bold;
        margin: 5px;
    }

    .jobtype {
        padding: 0px 10px;
    }

    .jobssection-bg {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .jobtype a {
        font-size: 12px;
    }

    .jobkeywords {
        border-radius: 10px;
        padding: 10px 0px;
    }

        .jobkeywords ul a {
            font-size: 14px;
        }

        .jobkeywords ul li {
            margin: 5px 10px;
        }

    .active {
        border-radius: 10px 10px 0px 0px;
        padding: 10px 12px;
    }

    .jobdetail .SchoolBoxes {
        width: 100px !important;
        height: 100px !important;
    }

    .jobdetail .ImageSchool {
        width: 90px !important;
        height: 90px !important;
    }

    .jobsearch {
        padding: 10px 0px;
    }

    .jobfilter1 {
        padding: 0;
        margin: 5px 0px;
        height: 36px;
    }

        .jobfilter1 input {
            font-size: 0.8rem;
            padding: .375rem 0rem;
        }

        .jobfilter1 select {
            font-size: 0.8rem;
            margin-top: 3px;
            padding: .375rem 0rem;
        }

    .alljobs {
        padding: 0px 5px;
    }

    .joblist {
        height: auto !important;
        margin: 0;
    }

    .custom-checklist {
        width: 100%;
    }

    .buttonSearch {
        height: 36px;
        margin: 5px 0px;
    }

        .buttonSearch input {
            font-size: 16px;
        }

    .showfilters {
        height: 36px;
        margin: 5px 0px;
    }

    .btnfilter {
        height: 36px;
    }

    .values img {
        height: 130px !important;
    }

    .values .imgvalues {
        height: auto;
    }

    .five-cols {
        width: 100%
    }

    .imgrecruit {
        display: none;
    }

    .floating-leadership {
        display: none;
    }

    .LRhero-bg {
        margin: 20px 0px;
    }

    .LRhero .hero-text {
        padding-bottom: 40px;
    }

    .servicesOfferings {
        top: 0px;
        position: static !important;
    }

    .Offeringsbox {
        position: static !important;
    }

    .Enquiry-bg {
        padding: 10px 0px 20px 0px;
    }

    .jobdetail {
        padding: 0px 15px;
    }

    .divbtn a {
        padding: 0px;
    }

    .jobdetail h3 {
        font-size: 18px;
    }

    .ABhero-bg {
        clip-path: polygon(0 0, 100% 5%, 100% 100%, 0% 95%);
    }

    .ABhero .hero-text p {
        font-size: 18px;
        padding-bottom: 0px;
    }

    .ABhero {
        padding: 30px 0px;
    }

    .ourvalues {
        padding: 0px 10px;
    }

    .contact {
        clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 95%);
        padding: 30px 10px;
        min-height: auto;
        margin-bottom: 0px;
    }

    .values p {
        font-size: 14px;
    }

    .contactform {
        position: static;
        margin: 20px auto 0;
        width: 95%;
        height: auto;
        margin-bottom: 20px;
    }

    .floating-aboutus {
        display: none;
    }

    .RWChero-bg {
        clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 95%);
    }

    .RWChero {
        padding: 20px 0px;
    }
    .ourservices {
        padding: 0px 12px;
    }
    .LRhero-bg {
        clip-path: polygon(0 0, 100% 5%, 100% 100%, 0% 95%);
    }
    .LRhero {
        padding: 20px 0px;
    }

    .hero-bg {
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    }

    .hero {
        padding: 40px 10px;
    }
}

@media screen and (max-width: 767px) {

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 22px;
    }

    .project-info {
        right: 0;
        left: 0;
        margin: 0 auto;
    }

    .footer-link,
    .site-footer .social-icon {
        margin-top: 1em;
    }

    .copyright-text {
        margin: 2.5em 0 1em 0;
    }

    .footer-link li {
        margin-left: 0;
    }

    .hero .hero-text {
        padding: 0px;
    }

    .jobssection {
        padding-left: 0px;
    }

    .jobbox {
        margin-bottom: 0px;
    }

    .LRhero h3 {
        width: 320px;
    }
}

@media (max-width: 575.98px) {
        .footerlinks {
            margin-top: 10px;
            margin-bottom: 0px;
        }

    #stickyDiv {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--white-color);
        padding: 0.5rem 1rem;
        z-index: 1030;
        transition: all 0.3s ease;
    }

    .joblist h4 {
        font-size: 16px;
    }

    .jobicon {
        font-size: 12px;
    }

    .SchoolBoxes {
        width: 70px !important;
        height: 70px !important;
    }

    .ImageSchool {
        width: 60px !important;
        height: 60px !important;
    }

    .lnkJobType i {
        display: block;
    }

    .active {
        background-color: transparent;
        border-radius: 0px;
        padding: 0px;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: unset !important;
    }

    .activediv {
        background-color: var(--gray-color);
        border-radius: 20px 20px 0px 0px;
        margin: 0px 2px;
    }

    .jobkeywords {
        border-radius: 0px;
    }
}
