* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --primary-font: "Montserrat", serif;
    --secondary-font: "Roboto", serif;
    --primary-color: #254aa5;
    --secondary-color: #171717;
    --thard-color: #5C80D9;
}

body {
     overflow-x: hidden !important;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

ul,
li,
a {
    text-decoration: none;
    list-style: none;
    margin: 0;
    padding: 0;
    
}


/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: 300ms ease;
}

.navigation-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    padding-top: 1rem;
}

.logo img {
    width: 145px;
    height: 69;
    transition: 300ms ease;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.nav-link-container {
    display: flex;
    align-items: center;
}

.nav-links {
    padding: 10px 1rem;
    border-radius: 8px;
    background: #ffff;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    border: 1px solid transparent;
    /*box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.2);*/
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;

}

.book-demo {
    background: var(--primary-color);
    padding: 10px 16px;
    border-radius: 8px;

}

.book-demo a {
    color: #ffff !important;
}


.nav-links li a {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-right a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.nav-right a i {
    font-size: 1.25rem;
}

.menu-btn {
    display: none;
}

.menu-close-btn {
    display: none;
}

.navigation-scrolled {
    background-color: #d4e7ef;
    top: 0;
}

.navigation-scrolled .logo img {
    width: 100px;
}

/*.nav-link:hover {*/
/*    color: white;*/
/*}*/


.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    border-radius: 0;
}

.dropdown-menu li a {
    padding: 10px 16px;
    font-size: 15px;
}

.dropdown-menu li:not(:last-child) a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.active-nav {
    color: var(--text-green) !important;
}

.custom-dropdown {
    border: none;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 0.5rem 0 !important;
}

.custom-dropdown li a img {
    width: 50px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 8px;
}


/* hero */

.hero {
    height: 92vh;
    position: relative;
}

.image-container {
    transition: 500ms ease;
    background-color: #eee;
    height: 100%;
}

.image-container img {
    width: 100%;
    height: 92vh;

}

.hero-content {
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    transform: translateY(-35%);
    z-index: 1;
}

.sub-heading {
    background: #e4eaf6;
    width: fit-content;
    padding: 10px 1.5rem;
    border-radius: 8px;
}

.circle-icon {
    margin-top: -5px !important;
}

.circle-icon i {
    color: var(--primary-color);
    font-size: 10px;


}

.sub-heading p {
    padding-left: 10px;
    font-weight: 500;
}

.heading p {
    font-family: var(--primary-font);
    color: var(--secondary-color);
    font-size: 60px;
    font-weight: 700;
}

.heading p span {
    color: var(--primary-color);
}

.h-content p {
    font-family: var(--secondary-font);
    color: var(--secondary-color);
    font-size: 22px;
}

.button-1 {
    background: var(--primary-color);
    padding: 10px 1.5rem;
    border-radius: 10px;
    margin-right: 1rem;

}

.button-1 a {
    color: #ffff;
    font-size: 18px;
}

.button-2 {
    border: 2px solid var(--primary-color);
    padding: 10px 1.5rem;
    border-radius: 10px;


}

.button-2 a {
    color: var(--primary-color);
    font-size: 18px;
}

.banner-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* about-section */
.about {
    margin-top: 5.5rem;
}

.about-top-box {
    padding: 1.5rem;
    border-radius: 15px;
    background-color: var(--thard-color);

}



.about-top-box .row {
    margin: 0;

}

.about-top-box .row>.col-md-3 {
    padding: 10px 26px;

}

.about-top-box .row>.col-md-3:not(:last-child) {
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    padding-right: 10px;

}


.about-icon {
    padding: 1rem;
    background-color: #fff;
    width: fit-content;
    border-radius: 5px;
}


.about-icon img {
    height: 42px;
    width: 42px;
}

.ai-heading p {
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    font-family: var(--primary-font);
    padding: 1.5rem 0;
}

.ai-content ul li {
    color: #fff;
    line-height: 35px;
    font-size:18px;

}

.ai-content ul li img {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}


/*.about-bottom-content {*/
/*    margin-top: 6rem;*/
/*}*/

.about-sub-heading p {
    font-size: 24px;
    font-family: var(--secondary-font);
    color: var(--primary-color);
    padding-left: 10px;
    font-weight: 600;
}

.about-main-heading h1 {
    font-size: 52px;
    font-family: var(--primary-font);
    color: var(--secondary-color);
    font-weight: bold;
    padding: 0 0 1rem 0;
}

.about-main-content p {
    font-size: 20px;
    font-family: var(--secondary-font);
    color: var(--secondary-color);
    line-height: 1.5;
    padding-bottom: 1.5rem;
}

.about-main-content ul li {
    line-height: 1.5;
    font-size: 20px;
}

.about-readmore-button {
    background: var(--primary-color);
    padding: 10px 1rem;
    border-radius: 10px;
    width: fit-content;
}

.about-readmore-button a {
    color: #fff;
}

.about-main-image img {
    width: 100%;
    height: 540px;
    border-radius: 15px;
}

/* service we offer */

.about-section-back {
    margin-top: 5.5rem;
    position: relative;
}

.about-sec-back-image {
    transition: 500ms ease;
    background-color: #eee;
}

.about-sec-back-image img {
    width: 100%;
    height: 86vh;
}

.about-bottom-content {
    position: absolute;
    top: 15%;
    left: 0%;
    right: 0;
    z-index: 1;
}


.service-top {
    margin-top:5.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-text-content {
    text-align: center;
}

.service-sub-heading p {
    font-size: 24px;
    font-family: var(--secondary-font);
    color: var(--primary-color);
    padding-left: 10px;
    font-weight: 600;
}

.service-heading h1 {
    font-size: 52px;
    font-family: var(--primary-font);
    color: var(--secondary-color);
    font-weight: bold;
    padding: 1rem 0;
}

.service-text-content p {
    font-size: 18px;
    font-family: var(--secondary-font);
    color: var(--secondary-color);
    line-height: 28px;
    padding-bottom: 1.5rem;
}


.s-card-1 {
    background-color: #C4D4FB;
    border-radius: 15px;
}

.s-card-2 {
    background-color: #D3BBFB;
    border-radius: 15px;
}

.s-card-3 {
    background-color: #F9C9A6;
    border-radius: 15px;
}

.s-card-4 {
    background-color: #FFEA94;
    border-radius: 15px;
}

.s-card-image {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.s-card-image img {
    height: 128px;
    width: 128px;
    display: block;
    margin: 0 auto;
}


.s-card-contents {
    padding: 2rem;

}

.s-card-heading p {
    font-size: 24px;
    font-family: var(--secondary-font);
    color: var(--secondary-color);
    font-weight: bold;
    /*margin-bottom: 1rem;*/
}

.s-card-content p {
    font-size: 18px;
    font-family: var(--secondary-font);
    color: var(--secondary-color);
    line-height: 28px;

}

.s-card-button a {
    color: #092C83;
    border-bottom: 1px solid #092C83;
    font-size: 18px;
    font-weight: 600;
}

/* industries */
.industries {
    margin-top: 5.5rem;

}

.industries-sub-heading p {
    font-size: 24px;
    font-family: var(--secondary-font);
    color: var(--primary-color);
    padding-left: 10px;
    font-weight: 600;

}

.industries-heading h1 {
    font-size: 52px;
    font-family: var(--primary-font);
    color: var(--secondary-color);
    font-weight: bold;
    padding: 1rem 0;
    text-align: center;
}

.industries-content p {
    font-size: 22px;
    font-family: var(--secondary-font);
    color: var(--secondary-color);
    line-height: 1.5;
    padding-bottom: 1.5rem;
    text-align: center;

}

.industies-card {
    background-color: #e4eaf9;
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    border: 1px solid rgb(201, 201, 201);
    height: 165px;

}



.i-card-image img {
    background-color: #fff;
    padding: 1rem;
    border-radius: 5px;
    width: 70px;
    height: 70px;
}

.i-card-heading p {
    font-size: 24px;
    font-family: var(--secondary-font);
    color: var(--secondary-color);
    font-weight: bold;
    padding-bottom: 10px;
}

.i-card-content p {
    font-size: 18px;
    font-family: var(--secondary-font);
    color: var(--secondary-color);
    line-height: 22px;

}

/* why-choose us sec */

.container-fluid {
    padding: 0 !important;
    margin: 0 !important;
}

.container-fluid .row {
    margin: 0;
}

.container-fluid .row .col-xl-6,
.container-fluid .row .col-md-6 {
    padding: 0;
    margin: 0;
    width: 50%;
}

.why-choose-content,
.why-choose-image {
    width: 100%;
    height: 100%;
}

.why-choose-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}


.why-choose-sec {
    margin-top: 5.5rem;
    background-color: var(--thard-color);
    display: flex;
    justify-content: space-between;
    height: 600px;

}


.why-choose-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.why-choose-us-heading h1 {
    font-size: 52px;
    font-family: var(--primary-font);
    color: #fff;
    font-weight: bold;
    padding: 1rem 0;
    margin-left: -85px !important;
}

.why-choose-text-content p {
    font-size: 18px;
    font-family: var(--secondary-font);
    color: #fff;
    line-height: 50px;
    padding-bottom: 1.5rem;

}

.why-choose-text-content p:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 8px;
    margin-bottom: 8px;

}

/* articles sec */
.our-articles {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.articles-sub-heading p {
    font-size: 24px;
    font-family: var(--secondary-font);
    color: var(--primary-color);
    padding-left: 10px;
    font-weight: 600;
}

.articles-heading h1 {
    font-size: 52px;
    font-family: var(--primary-font);
    color: var(--secondary-color);
    font-weight: bold;
    padding: 1rem 0;
    text-align: center;
}

.articles-text-content p {
    font-size: 18px;
    font-family: var(--secondary-font);
    color: var(--secondary-color);
    line-height: 28px;
    padding-bottom: 1.5rem;
    text-align: center;
}

.articles-card {
    margin-top: 2rem;
}

.articles-card-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.articles-card-heading p {
    padding: 1.3rem 0;
    font-size: 24px;
    font-family: var(--primary-font);
    color: var(--secondary-color);
    font-weight: bold;
}

.articles-card-content p {
    font-size: 18px;
    font-family: var(--secondary-font);
    color: var(--secondary-color);
    line-height: 28px;
    padding-bottom: 1.5rem;

}

.articles-card-button a {
    color: #092C83;
    border-bottom: 1px solid #092C83;
    font-size: 18px;
    font-weight: 600;
}

/* book-demo */

.book-demo-sec {
    background-color: #e6e9ef;
    height: 500px;
    padding: 2rem 0;
}

.book-demo-sec-image img {
    width: 100%;
    height: 450px;
    object-fit:contain;
}

.b-demo-heading h1 {
    font-size: 52px;
    font-family: var(--primary-font);
    color: var(--secondary-color);
    font-weight: bold;
    padding: 1rem 0;
}

.b-demo-heading h1 span {
    color: #092C83;
}

.b-demo-button {
    background: var(--primary-color);
    padding: 10px 16px;
    border-radius: 8px;
    width: fit-content;
}

.b-demo-button a {
    color: #ffff !important;
}

/* footer */
.footer-section {
    margin-top: 5.5rem;
}

.footer-logo {
    margin-bottom: 3rem;
}

.footer-logo img {
    width: 160px;
    height: 80px;
    object-fit: contain;
}

.footer-s-content p {
    font-size: 18px;
    font-family: var(--secondary-font);
}


.footer-all-links{
    display:flex;
    justify-content:center;
}
.quick-links p {
    font-size: 24px;
    font-weight: bold;
    font-family: var(--primary-font);
    padding-bottom: 1rem;
}

.helpful-links p {
    font-size: 24px;
    font-weight: bold;
    font-family: var(--primary-font);
    padding-bottom: 1rem;
}

.contact-us-heading p {
    font-size: 24px;
    font-weight: bold;
    font-family: var(--primary-font);
    padding-bottom: 1rem;
}

.footer-s-content p {
    font-size: 18px;
    /* color: var(--secondary-color); */
    line-height: 30px;
    font-weight: 500;
}

.contacts-list ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contacts-list ul li i {
    margin-bottom: 7px;
    padding: 4px 8px;
    border: 1px solid rgb(167, 164, 164);
    font-size: 26px;
    line-height: 40px;
    border-radius: 5px;
    color: #092C83;
}

.contacts-list ul li a {
    font-size: 18px;
    color: var(--secondary-color);
    line-height: 35px;
    font-weight: 500;
}

.quick-links-list ul li a {
    font-size: 18px;
    color: var(--secondary-color);
    line-height: 35px;
    font-weight: 500;
}

.footer-bottom-heading {
    border-bottom: 1px solid rgb(167, 164, 164);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.footer-bottom-heading h1 {
    font-size: 50px;
    font-family: var(--primary-font);
    color: var(--secondary-color);
    font-weight: bold;
    /* padding: 1rem 0; */
}

.footer-bottom-heading h1 span {
    color: var(--primary-color);
}

.social-list i {
    border: 1px solid rgb(167, 164, 164);
    padding: 4px 8px;
    background-color: var(--primary-color);
    font-size: 26px;
    color: #fff;
    border-radius: 5px;
}

.copyright-sec {
    padding-bottom: 1rem;
}

.why-choose-text-content p img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/*our partners*/
.certificate-slider .swiper-slide,
.partner-slider .swiper-slide {
    width: max-content;
    display: flex;
    align-items: center;
}

.certificate-slider>.swiper-wrapper,
.partner-slider>.swiper-wrapper {
    transition-timing-function: linear;
}

.certificate-slider-card {
    height: 100px;
    width: 100px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e6e9ef;
    margin-right: 3rem;
}

.certificate-slider .swiper-slide img,
.partner-slider .swiper-slide img {
    width: 60px;
}

.certifications .section-header h2 {
    font-size: 2.5rem !important;
}

.certificate-scroller{
    margin:5.5rem 0 7rem 0;
}


.partner-heading h1{
     font-size: 52px;
    font-family: var(--primary-font);
    color: var(--secondary-color);
    font-weight: bold;
    padding: 1rem 0;
    margin-bottom:3rem;
    text-align:center;
}

.partner-heading h1 span{
      color: #092C83;
}


/* Contact Us */
.contact-info-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}


.contact-heading h2{
        font-size: 52px;
    font-family: var(--primary-font);
    color: var(--secondary-color);
    font-weight: bold;
    padding: 1rem 0;
    text-align: center;
    margin-bottom:2.25rem;
}
.contact-info-box:not(:first-child) {
    margin-top: 3rem;
}

.contact-info-icon {
    height: 40px;
    width: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.45rem;
    color: #092C83;;
}

.contact-info-text h6 {
    font-size: 1.25rem;
    font-family: var(--primary-font);
    font-weight: 600;
}

.contact-info-text p {
    color: var(--text-grey);
    margin: 0.25rem 0 0.25rem 0 !important;
}

.contact-info-text a {
    font-weight: 600;
    color: #092C83;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.contact-info-text a i {
    color: var(--primary);
    margin-top: -1px;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-form {
    padding: 3.5rem;
    border-radius: 20px;
    background-color:#e6e9ef;
}

.contact-form h4 {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: var(--primary-font);
    margin-bottom: 1.75rem !important;
}

.contact-form label {
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 16px;
    border: 2px solid  #092C83;
    background-color: #fff;
}

.contact-form button {
    background-color: var(--primary-color) !important;
    color:#fff;
}


/*advisory services*/

.advisory-heading h2{
        font-size: 52px;
    font-family: var(--primary-font);
    color: var(--secondary-color);
    font-weight: bold;
    padding: 1rem 0;
    text-align: center;
    margin-bottom:1rem;
}

.advisory-heading h2 span{
     color: var(--primary-color);
}
.choose-us-card {
     background-color:#e4eaf9;
     padding:1.5rem;
     border-radius:15px;
     height:260px;
}
.choose-img{
    display:flex;
    align-items:center;
    justify-content:center;
}
.choose-img img {
    width:80%;
    height:550px;
    object-fit:contain;
}
.choose-us-icon {
    height: 100px;
    width: 100px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:#fff;
    margin-bottom:1rem;
}

.choose-us-icon img{
    width:50px;
}

.choose-us-card ul li{
    font-weight:600;
}
.choose-us-card ul li i{
   color:var(--primary-color);
   padding-right:7px;
}

.advisory-heading p{
    color:gray;
    font-size:19px;
    font-weight:600;
    margin-bottom:2.5rem;
    text-align:center;
}

/*solutions page*/

.solutions-sec{
    margin-top:5.5rem;
}

.solutions-heading h1{
       font-size: 52px;
    font-family: var(--primary-font);
    color: var(--secondary-color);
    font-weight: bold;
    padding: 1rem 0;
    text-align: center;
    margin-bottom:1rem;
}

.solutions-heading h1 span{
     color: var(--primary-color);
}

.solutions-image img{
    width:100%;
    border-radius:8px;
}


.side-content h6{
    font-size:24px;
    font-weight:bold;
    margin-bottom:10px;
}

.side-content ul{
    margin-bottom:1.5rem;
}

.side-content ul li{
    color:gray !important;
    font-weight:600;
    font-size:18px;
    display:flex;
   
}

.side-content ul li i{
    color:var(--primary-color);
    margin-right:10px;
}

.side-content p{
   
    font-weight:600;
    font-size:18px;
}


/*service-inner page*/

.service-inner-sec{
    margin-top:7.5rem;
    background-color:#f2f3f4;
}

.service-inner-sec2{
     background-color:#f2f3f4;
}



.service-inner-image img{
    /*width:450px;*/
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:15px;
    /*border:1px solid gray;*/
   
   
}


.service-inner-side-content h6{
    font-size:35px;
    font-weight:bold;
    margin-bottom:10px;
}

.service-inner-side-content ul{
    margin-bottom:1.5rem;
}

.service-inner-side-content ul li{
    color:black !important;
    font-weight:500;
    font-size:18px;
    display:flex;
   
}

.service-inner-side-content ul li i{
    color:var(--primary-color);
    margin-right:10px;
}

.service-inner-side-content p{
   
    font-weight:600;
    font-size:18px;
}


.services-solution {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.service-solution-card:first-child {
    border-left: 1px solid rgba(0, 0, 0, 0.25);
}
.service-solution-card{
    border-top: 1px solid rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    border-right: 1px solid rgba(0, 0, 0, 0.25);
    padding: 2rem 1.5rem;
    display: flex
;
    flex-direction: column;
    gap: 1.25rem;
}

.service-solution-c-image {
    height: 100px;
    width: 100px;
    border-radius: 100%;
    display: flex
;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.25);
}

.service-solution-c-image img{
    width:50px;
}

.service-solution-card h6 {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--primary-font);
    margin-top: 0.5rem;
}

.service-solution-card ul li{
    display:flex;
    font-size:16px;
    color:gray;
    font-weight:500;
}

.service-solution-card ul li i{
    padding-right:8px;
}


.drop-msg {
    position: relative;
}

.drop-msg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.drop-msg-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 3rem;
    width: 45%;
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.25rem;
}

.drop-msg-content h2 {
    color: #fff;
    font-size: 3rem;
    font-family: var(--primary-font);
}
.secondary-btn {
    padding: 11px 24px;
    border-radius: 30px;
    display: flex
;
    align-items: center;
    justify-content: center;
    column-gap: 1rem;
    border: 1px solid #fff !important;
    color: #fff !important;
    text-transform: uppercase;
    font-size: 15px;
}

.drop-msg-content p{
    color:#fff;
}

.services-solution-sec{
    /*background-color:#e4eaf9;*/
    margin-top:3rem;
}

.top-content-services-inner2{
    display:flex;
    align-items:center;
    gap:1rem;
    margin-bottom:2rem;
}

.top-content-services-inner{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.top-content-services-inner2 h1{
        font-size: 52px;
    font-family: var(--primary-font);
    color: var(--secondary-color);
    font-weight: bold;
    padding: 1rem 0;
    text-align: center;
    margin-bottom:1rem;
}

.top-content-services-inner2 h1 span{
     color: var(--primary-color);
}

.top-content-services-inner p{
    text-align:center;
    font-size:19px;
    font-weight:600;
}


.tech-cards {
    display: flex
;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.tech-card {
    background-color: #e4eaf9;
    padding:  10px 14px;
    border-radius: 50px;
    display: flex
;
    align-items: center;
    gap: 16px;
    transition: 500ms ease;
}

.service-inner-side-content{
    
    height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.service-inner-image{
       height: 380px;
    display: flex;
    justify-content: center;
    /*background-color:#d4e7ef;*/
    border-radius: 15px;
    padding: 2rem;
}

.com-heading{
    font-weight:bold;
    font-size:24px;
}

.co-content li{
    font-size:20px;
}

.book-call-modal .modal-footer p {
    display: flex;
    align-items: center;
    gap: 5px;
}

/*partner page*/
.partners-images{
    border:1px solid gray;
    border-radius:8px;
    padding:1rem;
}

.partners-images img{
    width:100%;
    height:125px;
    object-fit:contain;
}



/* Testimonial Sec */
.testi-card-sec{
    margin-top:4rem;

}

.testi-swiper-section{
    padding-bottom:4rem;
}

.testi {
    border: 2px solid #254aa5;
    border-radius: 8px;
    margin: 30px 0;
    padding: 25px 20px;
    text-align: left;
   position:relative;
    
}

.testi-name{
    font-size:20px;
    font-weight:bold;
}

.rating i{
    color:#254aa5;
}

.testi p::after {
    content: "";
    position: absolute;
    z-index: 9;
    left: 0px;
    top: -28px;
    width: 40px; /* Set your desired width */
    height: 40px; /* Set your desired height */
    background-image: url(../images/quotes.png);
    background-size: contain; /* Or 'cover' */
    background-repeat: no-repeat;
    background-color: #ffffff;
    padding: 15px;
}
.testi p::before {
    content: "";
    position: absolute;
    z-index: 9;
    right: 0px;
    bottom: -24px;
    width: 40px; /* set your desired width */
    height: 40px; /* set your desired height */
    background-image: url(../images/quotes1.png);
    background-size: contain; /* ensures the image scales correctly */
    background-repeat: no-repeat;
    background-color: #ffffff;
    padding: 15px;
}

/*job -page-sec*/
.job-sec{
    margin-top:4rem;
}

.job-page-heading h1{
       font-size: 52px;
    font-family: var(--primary-font);
    color: var(--secondary-color);
    font-weight: bold;
    padding: 1rem 0;
    text-align: center;
    margin-bottom:1rem;
}

.job-page-content p{
    text-align:center;
    
    padding-bottom: 2rem;
    font-size: 16px;
    font-weight: 600;
}

ul.job-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.job-list > li.job-preview {
	background: #fff;
	border: 1px solid #d7e2e9;
	-webkit-border-radius: 0.4rem;
	-moz-border-radius: 0.4rem;
	border-radius: 0.4rem;
	padding: 1.5rem 2rem;
	margin-bottom: 1rem;
	float: left;
	width: 100%;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	
	display:flex;
	justify-content:space-between;
}

/*ul.job-list > li.job-preview:hover {*/
/*	cursor: pointer;*/
/*	-webkit-box-shadow: 0 3px 8px rgba(0,0,0,0.05);*/
/*	-moz-box-shadow: 0 3px 8px rgba(0,0,0,0.05);*/
/*	box-shadow: 0 3px 8px rgba(0,0,0,0.05);*/
/*}*/

.job-title {
	margin-top: 0.6rem;
}

.company {
	color: #96a4b1;
}

.job-preview .btn {
	margin-top: 1.1rem;
}

.btn-apply {
	text-transform: uppercase;
	font-size: 0.875rem;
	font-weight: 800;
	letter-spacing: 1px;
	background-color: transparent;
	color:  #393a5f;
	border: 2px solid #393a5f;
	padding: 0.6rem 2rem;
	-webkit-border-radius: 2rem;
	-moz-border-radius: 2rem;
	border-radius: 2rem;
}

.btn-apply:hover {
	background-color: #254aa5;
	color:  #fff;
	border: 2px solid #254aa5;
}

/*teams*/

.our-teams{
    margin-top:4rem;
}

.box {
	border-radius: 100px;
	background:#fff;
	position:relative;
	overflow: hidden;
	text-align:center;
	height:370px;
}
.box:before {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 0px;
    height: 100%;
    border-radius: 100px;
    box-shadow: inset 0 0 25px rgba(0,0,0,0.30);
    transition: all 0.3s ease;
    background-image: linear-gradient(to right, #3c70a4 0%, #64b2cd 100%);
}
.box:hover:before {
    width: 100%;
}
.box:hover .image-wrapper {
	padding:0;
}
.box:hover .box-desc {
	color:#fff;
}
.box:hover .social li a {
	background:#fff;
	background-image: none;
	color:#000;
}
.box:hover .social li a:hover {
	background:#1d1d1d;
	color:#fff;
}
.image-wrapper {
    position: relative;
	max-width: 210px;
    max-height: 210px;
	margin:0 auto;
    overflow: hidden;
    border-radius: 50%;
    padding: 15px;
    transition: all 0.5s ease;
    box-shadow: inset 0px 0px 20px rgba(0,0,0,0.20);
}
.image-wrapper img {
    border-radius: 50%;
    transition: all 500ms ease;
}
.box-desc {
	position:relative;
}
ul.social {
	padding:0;
}
ul.social li {
	display:inline-block;
	list-style-type:none;
}
ul.social li a {
	position:relative;
	width: 36px;
    height: 36px;
	background-image: linear-gradient(to right, #3c70a4 0%, #64b2cd 100%);
	display:inline-block;
	line-height:36px;
	border-radius:50%;
	color:#fff;
	transition: all .5s ease;
}

.o-teams p{
   text-align:center;
}






/* recent jobs */

#jobs {
  background: #f8f8fa;
  padding: 50px 0;
}

.company-details {
  box-shadow: 0 2px 70px 0 rgba(110, 130, 208, 0.18);
  border-radius: 5px;
  margin-bottom: 20px;
}

.job-update {
  background: white;
  padding: 10px 20px;
  border-radius: 5px;
}

.job-update h4 strong {
  font-size: 30px;
  font-family: "Oswald", sans-serif;
}

.job-update .fa {
  margin-top: 5px;
  margin-right: 10px;
  color: #77d1b1;
}

.price {
  color: #018f62;
}

.location {
  color: red;
}

/* .description {
  display: none;
}
.company-details :hover .description {
  display: block;
}
 */


/*.description {*/
/*    overflow: hidden; */
/*    height: 0; opacity: 0;*/
/*    transition: height 0ms 400ms, opacity 400ms 0ms;*/
/*}*/
/*.company-details :hover .description{*/
/*    height: auto; opacity: 1;*/
/*    transition: height 0ms 0ms, opacity 600ms 0ms;*/
/*}*/


.bookmark{
  color: #000 !important;
  float: right;
  display: inline-flex;
  font-size: 20px;
  cursor: pointer;
}

.bookmark p{
  margin-left: 5px;
    font-size: 20px;
    cursor: pointer;

}
.fa-heart-o:before {
    content: "\f08a";
    margin-right: 8px;
      font-size: 20px;
      cursor: pointer;
      
    color: rgb(33, 33, 226) !important;

}
.fa-heart-o:before .bookmark{
  color: rgb(33, 33, 226) !important;
}
.fa-heart:before {
    content: "\f004";
    margin-right: 8px;
      font-size: 20px;
      cursor: pointer;
      color: rgb(33, 33, 226) !important;
}




.job-update small {
  background: #efefef;
  padding: 1px 5px;
  margin: 0 5px;
}

/*.job-update small:hover {*/
/*  cursor: pointer;*/
/*  background: #23c0e9;*/
/*  z-index: 2;*/
/*  transition: all 200ms ease-in;*/
/*  transform: scale(1.1);*/
/*  color: white;*/
/*}*/

.job-update p {
  margin-bottom: 0 !important;
}

.job-update a {
  text-decoration: none !important;
  color: #b6bed2;
  float: right;
}

.job-update a:hover {
  text-decoration: none !important;
  color: rgb(0, 95, 238);
  float: right;
}

.apply-btn {
  height: 40px;
  background-image: linear-gradient(to right, #254aa5, #111136);
  padding: 5px;
  border-bottom-left-radius: 5px;
}

.apply-btn .btn-primary {
  padding: 0 30px;
  float: right;
  box-shadow: none !important;
  background: transparent;
  border: 1px solid #fff;
  width: 100px;
  height: 30px;
  line-height: 30px;
  background: #254aa5;
  color: #ffffff;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 10px;
}

.pagelink li {
  height: 25px;
  list-style: none;
  width: 25px;
  display: inline-block;
  cursor: pointer;
}

.pagelink li:hover,
.activa {
  color: #fff;
  background-image: linear-gradient(to right,#254aa5, #7ce08a);
}

.left-arrow {
  color: #999;
}

.right-arrow {
  color: #29b929;
}

.content-sec p {
    font-size: 28px !important;
    font-weight: 600;
    font-style: italic;
    text-align: center;
}


