@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
/* ===========================  Root Configuration Start =====================================  */
:root {
    --color-white: #ffffff;
    --color-grey: #f2f2f2;
    --color-dark: #1d1d1b;
    --color-orange: #f58220;
    --color-blue: #004071;
    --border-color: color-mix(in srgb, var(--color-dark), transparent 75%);
    --color-default-link: #004071a;
    --section-padding: 50px;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-bold: 700;
    --primary-font: "Rubik", sans-serif;
    --header-height: 56px;
    --horizontal-padding: 12px;
    --section-heading: 32px;
}
@media (min-width: 768px) {
    :root {
        --horizontal-padding: 25px;
        --section-heading: 40px;
    }
}
@media (min-width: 992px) {
    :root {
        --section-padding: 75px;
        --horizontal-padding: 75px;
        --section-heading: 4.166666666666667vw;
        --section-heading: 44px;
    }
}
@media (min-width: 1200px) {
    :root {
        --horizontal-padding: 40px;
    }
}
@media (min-width: 1400px) {
    :root {
        /* --section-padding: 100px; */
        --horizontal-padding: 70px;
    }
}
@media (min-width: 1600px) {
    :root {
        --horizontal-padding: 100px;
    }
}
/* ===========================  Root Configuration End =====================================  */

/* ===========================  Default Configuration Start =====================================  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    font: var(--fw-regular) 16px/1.5 var(--primary-font);
    color: var(--color-dark-text);
    background-color: var(--color-grey);
    scroll-behavior: smooth !important;
}
ul,
ol {
    margin: 0 0 0 18px;
    padding: 0;
    list-style: square;
    list-style-position: outside;
}
header ul,
footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
li:not(header ul li, footer ul li) {
    margin-bottom: 10px;
}
li::marker {
    color: var(--color-orange);
}
a,
a:not([class]) {
    text-decoration: none;
}
a:not([class]) {
    color: var(--color-default-link);
}
a:not([class]):hover {
    text-decoration: underline;
}
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: var(--fw-bold);
}
/* h1, .h1 { font-size: 2.25rem; }
h2, .h2 { font-size: 1.75rem; }
h3, .h3 { font-size: 1.5rem; }
h4, .h4 { font-size: 1.375rem; }
h5, .h5 { font-size: 1.25rem; } */
p {
    font-size: 1rem;
    font-weight: 400;
}
/* ===========================  Default Configuration End =====================================  */
/* ===========================  Button CSS Start =====================================  */
.btn {
    --btn-bg: var(--color-orange);
    --btn-hover-bg: transparent;
    --btn-color: var(--color-white);
    --btn-hover-color: var(--color-orange);
    --btn-border-color: var(--color-orange);
    font-size: 1rem;
    font-weight: var(--fw-bold);
    padding: 10px 25px;
    display: inline-block;
    background-color: var(--btn-bg);
    color: var(--btn-color);
    border: 1px solid var(--btn-border-color);
    /* border-radius: 0; */
    transition: all 0.4s ease-in-out;
}

.btn:hover,
.btn:active {
    background-color: var(--btn-hover-bg);
    border: 1px solid var(--btn-border-color) !important;
    color: var(--btn-hover-color) !important;
}

/* ===========================  Button CSS End =====================================  */
/* =========================== Image Class Start  =====================================  */
.for-bg-img {
    position: relative;
}
.for-bg-img .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}
.for-bg-img .bg-img-content {
    position: relative;
    z-index: 2;
}
/* ===========================  Image Class End =====================================  */
/* ===========================  Padding & Color Class End =====================================  */
/* Padding  */
.section-padding {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

/* Colors  */
.bg-orange {
    background-color: var(--color-orange);
    color: var(--color-dark);
}
.bg-grey {
    background-color: var(--color-grey) !important;
    color: var(--color-dark) !important;
}
.bg-blue {
    background-color: var(--color-blue);
    color: var(--color-white);
}
.text-orange {
    color: var(--color-orange) !important;
}
.text-blue {
    color: var(--color-blue) !important;
}
/* ===========================  Padding & Color Class End =====================================  */
/* ===========================  Custom Class Start =====================================  */
.section-horizontal-padding {
    padding-left: var(--horizontal-padding);
    padding-right: var(--horizontal-padding);
}
.section-heading {
    font-size: var(--section-heading);
    font-weight: var(--fw-bold) !important;
    line-height: 1.2;
    color: var(--color-orange);
}
.bg-orange .section-heading {
    color: var(--color-white);
}
.service-item *:last-child,
.card-content *:last-child,
.number-box *:last-child,
.last-child-mb-0 *:last-child {
    margin-bottom: 0;
}
.section-heading + h3 {
    color: var(--color-blue);
    font-weight: var(--fw-medium);
}
/* ===========================  Custom Class End =====================================  */
/* ===========================  Border Box CSS Start End =====================================  */
.border-box {
    border: 1px solid var(--border-color) !important;
    padding: 20px !important;
    background-color: var(--color-white);
    border-radius: 10px;
}
/* ===========================  Border Box CSS End =====================================  */
/* ===========================  Swiper Customization Start =====================================  */
.swiper {
    --navigation-btn-bg: var(--color-orange);
    --navigation-btn-hover-bg: var(--color-blue);
    --navigation-btn-color: var(--color-white);
    --navigation-btn-hover-color: var(--color-white);
    --pagination-bg: var(--color-orange);
}
.bg-white .swiper {
    --pagination-bg: var(--color-dark-blue);
}
.slider-control {
    position: relative;
    width: 100%;
    user-select: none;
    z-index: 1000;
}
.slider-control .swiper-button-prev,
.slider-control .swiper-button-next {
    position: relative;
    left: unset;
    right: unset;
    bottom: unset;
    top: unset;
    width: unset;
    height: unset;
    margin-top: unset;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all 0.4s ease-in-out;
}
.swiper-button-prev::after {
    content: "\F12F";
    font-family: "bootstrap-icons";
}
.swiper-button-next::after {
    content: "\F138";
    font-family: "bootstrap-icons";
}

.swiper-button-prev::after,
.swiper-button-next::after,
.slider-control .swiper-button-prev::after,
.slider-control .swiper-button-next::after {
    font-size: 20px;
    font-weight: var(--fw-bold);
    background-color: var(--navigation-btn-bg);
    color: var(--navigation-btn-color);
    border: 1px solid var(--navigation-btn-border-color);
    padding: 10px;
    border-radius: 5px;
    transition: all 300ms ease-in-out;
}
.slider-control .swiper-pagination {
    position: relative;
    left: unset !important;
    bottom: unset !important;
    top: unset !important;
    right: unset !important;
    display: flex;
    align-items: center;
    z-index: 10;
    padding: 20px 0;
}
.testimonial-slider .slider-control .swiper-pagination {
    justify-content: center;
}
.swiper-pagination-bullet,
.slider-control .swiper-pagination-bullet {
    position: relative;
    width: 12px;
    height: 12px;
    /* margin: 0 4px !important; */
    background-color: var(--pagination-bg);
    border-radius: 50%;
}
/* ===========================  Swiper Customization End =====================================  */
/* ===========================  Banner Section Start =====================================  */
.header-belt {
    position: relative;
}
.contact-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    color: var(--color-white);
    padding: 5px;
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
    border: 2px solid var(--color-orange);
}
.contact-box:hover {
    background-color: transparent;
    border: 2px solid var(--color-orange);
    color: var(--color-orange);
}
@media (min-width: 576px) {
    .contact-box {
        width: 70px;
        height: 70px;
        font-size: 22px;
    }
}
@media (min-width: 992px) {
    .header-belt {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }
}
@media (max-width: 767px) {
    .header-logo {
        max-width: 200px;
    }
}
@media (max-width: 340px) {
    .contact-box {
        max-width: 50px;
        max-height: 50px;
    }
}

.hero-banner {
    width: 100%;
    color: var(--color-white);
}
@media (max-width: 991px) {
    .hero-banner .banner-content {
        padding: 50px 0 75px;
    }
}
.hero-banner-content {
    color: var(--color-white);
}
.banner-content {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-banner-image img {
    max-height: 35vh;
}
@media (min-width: 576px) {
    .hero-banner-image img {
        max-height: 40vh;
    }
}
@media (min-width: 768px) {
    .hero-banner-image img {
        max-height: 50vh;
    }
}
@media (min-width: 992px) {
    .hero-banner-image img {
        max-height: 65vh;
    }
}
@media (min-width: 1400px) {
    .hero-banner-image img {
        max-height: 70vh;
    }
}
@media (min-width: 992px) {
    .hero-banner {
        height: 100vh;
    }
    .banner-content-wrap {
        height: 100%;
    }
    .banner-heading {
        font-size: clamp(45px, 2.916666666666667vw, 56px);
    }
}
@media (min-width: 1920px) {
    .banner-heading {
        font-size: 56px;
    }
}
/* ===========================  Banner Section End =====================================  */
/* ===========================  Main Section Start =====================================  */
.card-intro {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.card-intro a:not(a.btn) {
    color: var(--color-blue);
    transition: all 0.4s ease-in-out;
}
.card-intro a:hover:not(a.btn) {
    color: var(--color-orange);
    text-decoration: none;
}
.intro-image-small,
.intro-image {
    max-width: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--color-orange);
}
.intro-image-small {
    max-width: 150px;
}
.intro-image-small img,
.intro-image img {
    width: 100%;
    height: 100%;
}
/* .intro-content p{
  font-weight: var(--fw-bold);
} */
.intro-content a {
    word-break: break-word;
}
.social-icon {
    margin-top: 20px;
    display: flex;
}
.social-icon li {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    padding: 5px;
    border: 1px solid var(--color-orange);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.social-icon li a{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-icon li a i {
    font-size: 20px;
}
.number-box-wrapper {
    display: flex;
    /* flex-direction: column; */
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px;
    gap: 15px;
}
.number-box {
    width: 100%;
    max-width: 150px;
    max-height: 150px;
    aspect-ratio: 1;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.number-heading {
    font-size: 32px;
    margin-bottom: 0;
    font-weight: var(--fw-medium);
}
@media (min-width: 768px) {
    .number-heading {
        font-size: 40px;
    }
    .number-box-wrapper {
        display: flex;
        flex-direction: row;
        margin-top: 0;
    }
}
@media (min-width: 992px) {
    .card-intro {
        padding: 30px;
    }
    .position-sticky {
        position: sticky !important;
        top: 25px !important;
    }
    .number-box {
        width: clamp(175px, 13.02083333333333vw, 250px);
        height: clamp(175px, 13.02083333333333vw, 250px);
    }
}
@media (min-width: 1200px) {
    .number-heading {
        font-size: calc(var(--section-heading) / 1.5);
        margin-bottom: 0;
    }
    .card-intro {
        padding: 20px;
    }
    .intro-image {
        max-width: 120px;
    }
    .card-intro .btn {
        width: 100%;
    }
}
@media (min-width: 1300px) {
    .card-intro {
        padding: 30px;
    }
    .intro-image {
        max-width: 150px;
    }
}
@media (min-width: 1400px) {
    .intro-image {
        max-width: clamp(175px, 15.625vw, 300px);
    }
    .card-intro {
        padding: clamp(35px, 2.604166666666667vw, 50px) 30px;
    }
    .intro-column-padding {
        padding-right: 50px;
    }
    .position-sticky {
        top: 50px !important;
    }
}
@media (min-width: 1600px) {
    .card-intro {
        padding: 50px 30px;
    }
    .intro-image {
        max-width: 300px;
    }
}
/* @media(max-width: 767px){
  .number-icon{
    text-align: center;
  }
} */
@media (min-width: 1200px) and (max-width: 1400px) {
    .card-intro .intro-content p.h5 {
        font-size: 18px;
    }
}
/* ===========================  Main Section End =====================================  */
/* ===========================  Service Section Start =====================================  */
.service-item {
    border-bottom: 1px solid color-mix(in srgb, var(--color-dark), transparent 75%) !important;
    padding: 25px 0;
}
.service-item h3 {
    font-weight: var(--fw-medium);
}
.service-wrapper .service-item:first-child {
    border-top: 1px solid color-mix(in srgb, var(--color-dark), transparent 75%) !important;
}
.service .service-wrapper .service-item {
    height: 100%;
}
.service .service-wrapper .service-item {
    margin-bottom: 20px;
}
.service .service-wrapper .service-item:last-child {
    margin-bottom: 0;
}
/* ===========================  Service Section End =====================================  */
/* ===========================  Need Services Section Start =====================================  */
#need-services .service-item h5 {
    font-weight: var(--fw-medium);
}
.industries-item ul li h6 {
    font-weight: var(--fw-medium);
}
/* ===========================  Need Services Section End =====================================  */
/* ===========================  Key Benefit Section Start =====================================  */
.benefits-slider,
.benefits-slider .swiper-slide {
    position: relative;
    width: 100%;
    height: auto;
}
.card.card-icon {
    width: 100%;
    height: 100%;
}
.card.card-icon img {
    width: 50px;
    height: 50px;
    display: inline-block;
    margin-bottom: 30px;
}
.card-icon h3.h5 {
    font-weight: var(--fw-medium);
}
.icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-orange);
    margin-bottom: 30px;
}
/* ===========================  Key Benefit Section End =====================================  */
/* ===========================  Testimonials Section Start =====================================  */
.testimonial-card {
    --card-color: var(--color-black);
    --quote-bg: var(--color-blue);
    --quote-color: var(--color-white);
}
/* .testimonial-card-heading{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
} */
.testimonial-card-heading .quote {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--quote-bg);
    color: var(--quote-color);
    line-height: 1;
    margin-bottom: 15px;
}
.testimonial-card-heading .heading p {
    margin-bottom: 0px !important;
}
.testimonial-card-content .testimonial-thought,
.testimonial-card-heading .heading small {
    color: var(--card-color);
}
/* ===========================  Testimonials Section End =====================================  */
/* ===========================  Contact Section Start =====================================  */
.contact-info i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-blue);
    color: var(--color-white);
    font-size: 20px;
    text-align: center;
    border-radius: 50%;
    margin-right: 8px;
}
.contact-info {
    display: flex;
    align-items: center;
}
.contact-info p,
.contact-info a {
    font-size: 18px;
}
.contact-info a {
    transition: all 0.4s ease-in-out;
    word-break: break-word;
    line-height: 1;
}
.contact-info a:hover {
    text-decoration: none;
    color: var(--color-orange);
}
.form-control {
    position: relative;
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    font-size: 16px;
    transition: all 0.4s ease;
}
.form-group label {
    font-size: 18px;
    font-weight: var(--fw-medium);
    margin-bottom: 8px;
}
.form-control:focus {
    /* box-shadow: 0 0 0 0.25rem rgba(245, 130, 32, 0.25) !important; */
    box-shadow: unset !important;
    border-color: var(--color-orange) !important;
}
@media (min-width: 576px) {
    .contact-info p,
    .contact-info a {
        font-size: 18px;
    }
}
@media (min-width: 1400px) {
    .contact-info p,
    .contact-info a {
        font-size: 22px;
    }
}
/* ===========================  Contact Section End =====================================  */
/* ===========================  Footer End Section Start =====================================  */
.footer-end a {
    line-height: 1;
    color: color-mix(in srgb, var(--color-dark), transparent 25%);
    transition: all 0.4s ease-in-out;
}
.footer-end a:hover {
    color: var(--color-orange);
    text-decoration: none;
}
/* ===========================  Footer End Section End =====================================  */
