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

/***** General CSS *****/

body {
    color: #393939;
    overflow-x: hidden;
    word-break: break-word;
    background-color: var(--bodyBg);
    font: 15px/25px 'Poppins', sans-serif;
}

:root {
    --black: #000;
    --white: #fff;
    --bodyBg: #f8f8f8;
    --textColor: #000;
    --themeColor: #0c3e61;
    --themeColor2: #83151a;
    --themeColor3: #ce0014;
    --headingColor: #161a1d;
    --headingColor2: #131212;
}

a {
    color: var(--black);
    white-space: initial;
    text-decoration: none;
    display: inline-block;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #000;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
}

:-moz-placeholder {
    color: #000;
    opacity: 1;
}

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

img {
    max-width: 100%
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
}

@font-face {
    font-family: 'big_noodle_titling';
    src: url(../fonts/big_noodle_titling.ttf);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    line-height: 1;
    margin: 0 0 0px;
    font-size: 125px;
    font-weight: 500;
    color: var(--white);
    font-family: 'big_noodle_titling';
}

h2 {
    margin: 0 0 0px;
    font-size: 78px;
    font-weight: 500;
    font-family: 'Poppins';
    color: var(--themeColor);
}

h3 {
    font-size: 35px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Poppins';
}

h4 {
    font-size: 24px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Poppins';
}

h5 {
    margin: 0 0 0px;
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Poppins';
}

h6 {
    font-size: 16px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--black);
    font-family: 'Poppins';
}

p {
    margin: 0px;
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    letter-spacing: 0px;
    font-family: 'Poppins';
}

.container {
    max-width: 1400px;
}

.section-heading {
    text-align: center;
    margin-bottom: 25px;
}

.section-heading p {
    width: 80%;
    margin: auto;
    max-width: 950px;
}

.section-heading h6 {
    color: var(--themeColor3);
}

.theme-btn-1 {
    display: flex;
    font-size: 16px;
    width: fit-content;
    padding: 14px 25px;
    align-items: center;
    border-radius: 10px;
    color: var(--white);
    justify-content: center;
    text-transform: capitalize;
    background: linear-gradient(0deg, var(--themeColor2) 0%, var(--themeColor3) 100%);
}






/*header css start */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    font-size: 16px;
    font-weight: 500;
    position: relative;
    padding: 10px 20px;
    color: var(--white);
    display: inline-block;
    text-decoration: none;
}


/*.menuSec ul li a:after {
    content: '';
    position: absolute;
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: #393939;
    display: none;
}
*/


/*.menuSec ul li:last-child a {
    padding-right: 0px;
}*/


/* .menuSec ul li:last-child a:after {
    display: none;
} */

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: var(--themeColor3);
}

.menuSec ul li a::before {
    left: 20px;
    width: 0px;
    content: '';
    height: 2px;
    bottom: 7px;
    position: absolute;
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor3);
}

.menuSec ul li a:hover::before,
.menuSec ul li a.active::before {
    width: 30px;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #0000007a;
    left: 0px;
    width: 230px;
    backdrop-filter: blur(3px);
    text-align: left;
    top: 45px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    color: var(--themeColor) !important;
    background-color: var(--white);
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
    display: none;
}

.menuSec ul:after {
    clear: both;
}

.menuSec ul li a.theme-btn-1 {
    padding: 13px 40px;
}

.menuSec ul li a.theme-btn-1::before {
    display: none;
}

.menuSec ul li a.theme-btn-1.active,
.menuSec ul li a.theme-btn-1:hover {
    color: var(--white);
    background: var(--themeColor);
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.menuSection {
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    padding: 40px 0px;
    position: absolute;
}

.menuSection .row {
    align-items: center;
}



/*header css start */


/*banner css start */

.main_slider {
    display: flex;
    overflow: hidden;
    min-height: 1140px;
    position: relative;
    align-items: flex-end;
    padding: 160px 0px 80px;
    justify-content: flex-start;
    background-image: url(../images/banner-bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.main_slider::before {
    top: 0;
    left: 0;
    width: 110%;
    content: '';
    height: 100%;
    position: absolute;
    background: radial-gradient(circle, rgb(0 0 0 / 39%) 0%, rgb(0 0 0 / 59%) 52%, rgb(0 0 0) 100%);
}

.main_slider::after {
    left: 0;
    bottom: 0;
    width: 100%;
    height: 62%;
    content: '';
    position: absolute;
    background: linear-gradient(0deg, rgb(0 0 0) 40%, rgb(0 0 0 / 0%) 100%);
}

.main_slider .row {
    z-index: 1;
    position: relative;
}

.banner_text {
    margin: 100px 0px;
}

.banner_text h6 {
    padding: 4px 10px;
    width: fit-content;
    border-radius: 50px;
    margin-bottom: 60px;
    color: var(--themeColor);
    background-color: var(--white);
}

.banner_text h1 {
    margin-bottom: 40px;
}

.banner_text p {
    font-weight: 400;
    color: var(--white);
    margin-bottom: 30px;
}

.banner_text p span {
    font-weight: 600;
    font-style: italic;
}

.banner_text ul {
    gap: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.banner-bottom-box h2 {
    color: var(--white);
    font-family: 'big_noodle_titling';
}

.banner-bottom-box p {
    color: var(--white);
}

.custom-space .col-xl-3.col-lg-4.col-md-4.col-sm-12.col-12 {
    min-width: fit-content;
}

.main_slider .custom-space {
    column-gap: 4%;
}

section.main_slider.inner-banner {
    min-height: 650px;
    align-items: center;
    background-image: url(../images/inner-banner-bg.png);
    background-attachment: scroll;
}

section.main_slider.inner-banner::before {
    top: unset;
    left: 0;
    bottom: 0;
    width: 130%;
    content: '';
    height: 100%;
    background: radial-gradient(circle, rgb(0 0 0 / 39%) 19%, rgb(0 0 0) 52%, rgb(0 0 0) 100%);
}

section.main_slider.inner-banner::after {
    height: 19%;
}

/*banner css end*/

/* trusted-sec */

.trusted-sec {
    overflow: hidden;
    padding-top: 50px;
}

.logoSlider .slick-list {
    overflow: visible;
}

.logoSlider .slick-slide {
    opacity: 1;
    margin: 0px 10px;
}

.logo-slider-box {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slider-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* trusted-sec */

/* service-text-slider-sec */

.service-text-slider-sec {
    padding: 0px 0px 50px;
}

.marque-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marqee {
    font-weight: 600;
    font-size: 160px;
    font-style: normal;
    line-height: 150px;
    position: relative;
    white-space: nowrap;
    display: inline-block;
    text-transform: capitalize;
    animation: marquee 60s linear infinite;
}

.marqee span {
    color: #829bac;
    position: relative;
    display: inline-block;
}

.marqee a {
    top: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position: relative;
    align-items: center;
    transform: rotate(0);
    display: inline-flex;
    justify-content: center;
    transition: ease-in-out;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}

.marqee a img {
    width: 40px;
    height: 33px;
    object-fit: contain;
}

.marqee a:hover {
    transition: ease-in;
    transform: rotate(31deg);
    transition-duration: 0.5s;
}

.word {
    position: relative;
    cursor: pointer;
}

.word::before {
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
    position: absolute;
    -webkit-text-stroke: 0px;
    content: attr(data-text);
    color: var(--themeColor);
    transition: width 0.9s ease;
}

.word:hover::before {
    width: 100%;
    cursor: pointer;
}

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

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

.marque-container {
    animation-play-state: running;
    padding: 28px 0;
}

/* service-text-slider-sec */

/* about-sec */

.about-sec {
    padding: 100px 0px;
}


.about-sec .custom-col-1 {
    width: 30%;
}

.about-sec .custom-col-2 {
    width: 70%;
}

.about-sec .custom-col-3 {
    width: 30%;
}

.about-sec .custom-col-4 {
    width: 30%;
}

.about-sec .custom-col-5 {
    width: 40%;
}

.built-text {
    margin-bottom: 50px;
}

.built-text h3 {
    font-size: 30px;
    color: var(--themeColor);
}

.built-name h6 {
    color: var(--themeColor3);
}

.customers-box {
    height: 400px;
    display: flex;
    overflow: hidden;
    padding: 45px 30px;
    position: relative;
    border-radius: 30px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    background-color: var(--white);
}

.customers-box::before {
    left: 0;
    bottom: 0;
    content: '';
    width: 100%;
    opacity: 0.2;
    height: 190px;
    position: absolute;
    background-image: url(../images/delivery-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.customers-box h2 {
    line-height: 1;
    font-size: 140px;
    font-family: 'big_noodle_titling';
}

.customers-box p {
    z-index: 1;
    position: relative;
    margin-bottom: 10px;
}

.about-img {
    width: 100%;
    height: 400px;
    min-height: 100%;
    overflow: hidden;
    border-radius: 30px;
}

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

.about-text {
    gap: 20px;
    display: flex;
    min-height: 100%;
    padding: 40px 0px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.about-text p {
    margin-bottom: 10px;
}

/* about-sec */

/* what-we-offer-sec */

.what-we-offer-sec {
    z-index: 1;
    position: relative;
    padding: 100px 0px;
    border-radius: 30px;
    background-color: var(--themeColor);
}

.what-we-offer-heading {
    gap: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 50px;
    justify-content: space-between;
}

.what-we-offer-heading>div {
    max-width: 935px;
}

.what-we-offer-heading h2 {
    color: var(--white);
}

.what-we-offer-heading p {
    color: var(--white);
    margin-top: 15px;
}

.what-we-offer-heading h6 {
    color: var(--white);
    margin-bottom: 50px;
}

.service-slider-btn {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.service-slider-btn button {
    width: 70px;
    height: 70px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white);
    background-color: var(--themeColor);
}

.service-slider-btn button img {
    width: 25px;
    height: 20px;
    object-fit: contain;
}

.service-slider-btn button:hover img {
    filter: brightness(0) saturate(100%) invert(17%) sepia(63%) saturate(889%) hue-rotate(166deg) brightness(101%) contrast(97%);
}

.service-slider-btn button.service-slider-btn-left {
    transition: ease-in-out;
    transform: rotate(235deg);
    transition-duration: 0.5s;
}

.service-slider-btn button.service-slider-btn-right {
    transition: ease-in-out;
    transform: rotate(0deg);
    transition-duration: 0.5s;
}

.service-slider-btn button.service-slider-btn-right:hover {
    transition: ease-in;
    transform: rotate(31deg);
    transition-duration: 0.5s;
    background-color: var(--white);
}

.service-slider-btn button.service-slider-btn-left:hover {
    transition: ease-in;
    transform: rotate(212deg);
    transition-duration: 0.5s;
    background-color: var(--white);
}

.service-box-img {
    width: 100%;
    height: 370px;
    display: flex;
    overflow: hidden;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
}

.service-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: ease-in-out;
    transition-duration: 0.5s;
}

.serviceSlider .slick-slide {
    opacity: 1;
    margin: 0px 10px;
}

.service-box-text ul {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    justify-content: space-between;
}

.service-box-text ul li h3 {
    color: var(--white);
}

.service-box-text ul li img {
    width: 70px;
    height: 65px;
    object-fit: contain;
}

.service-box-text p {
    height: 120px;
    overflow: hidden;
    margin-bottom: 15px;
    color: var(--white);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.service-box-text {
    padding-bottom: 10px;
}

.service-box:hover .service-box-img img {
    transform: scale(1.1);
    transition: ease-in;
    transition-duration: 0.5s;
}

.inner-serive-sec .service-box {
    margin-bottom: 50px;
}

section.what-we-offer-sec.inner-serive-sec {
    padding-bottom: 70px;
}

.delivery-sec .bottom-line {
    margin-top: 50px;
    text-align: center;
}

.delivery-sec .bottom-line h5 {
    font-weight: 600;
    font-style: italic;
    color: var(--themeColor3);
}

.commitment-box {
    gap: 15px;
    display: flex;
    min-height: 270px;
    padding: 25px 10px;
    text-align: center;
    align-items: center;
    border-radius: 30px;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white);
    border: 1px solid var(--themeColor);
}

.commitment-box h5 {
    font-size: 18px;
    line-height: 30px;
    color: var(--themeColor);
}

.commitment-box h4 {
    color: var(--themeColor);
}

.commitment-box p {
    font-size: 14px;
    color: var(--themeColor);
}

.iiner-commitment-sec .commitment-box {
    min-height: 220px;
}

section.commitment-sec {
    padding: 100px 0px 0px;
}

section.commitment-sec .section-heading h2 {
    font-size: 50px;
}

/* what-we-offer-sec */

/* service-detail-sec */

.service-detail-img {
    width: 100%;
    height: 550px;
    overflow: hidden;
    min-height: 100%;
    border-radius: 30px;
}

.service-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-text {
    gap: 20px;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.service-detail-text-icon {
    width: 100px;
    height: 100px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: var(--themeColor3);
}

.service-detail-text-icon img {
    height: 50px;
    object-fit: contain;
}


/* service-detail-sec */

/* why-choose-sec  */

.why-choose-sec {
    margin-top: -30px;
    padding: 100px 0px;
    background-color: var(--white);
    border-radius: 0px 0px 30px 30px;
}

.why-choose-img {
    display: flex;
    min-height: 100%;
    align-items: flex-end;
    flex-direction: column;
    justify-content: space-between;
}

.why-choose-img h6 {
    width: 100%;
    color: var(--themeColor3);
}

.why-choose-img img {
    right: 5%;
    width: 113%;
    max-width: 140%;
    position: relative;
    object-fit: contain;
}

.why-choose-text {
    gap: 35px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.why-choose-text .theme-btn-1 {
    margin-top: 20px;
}

.why-choose-text ul {
    gap: 10%;
    width: 100%;
    display: flex;
    position: relative;
    align-items: flex-start;
    justify-content: space-between;
}

.why-choose-text ul li:first-child {
    flex-shrink: 0;
}

.why-choose-text ul::before {
    left: 0;
    right: 0;
    top: 11px;
    width: 100%;
    content: '';
    height: 2px;
    position: absolute;
    background-color: var(--themeColor);
}

.why-choose-text ul li {
    z-index: 1;
    position: relative;
    background-color: var(--white);
}

.why-choose-text ul li h3 {
    display: flex;
    line-height: 140px;
    font-size: 175px;
    padding-right: 10px;
    align-items: flex-start;
    color: var(--themeColor);
    justify-content: flex-start;
}

.why-choose-text ul li h3 span {
    top: 2px;
    font-size: 45px;
    position: relative;
    line-height: 40px;
}

.why-choose-text ul li p {
    padding-left: 10px;
}

.why-choose-text ul li:last-child {
    max-width: 420px;
}

.why-choose-sec.inner-why-choose-sec {
    margin-top: 0px;
    border-radius: 30px;
}

/* why-choose-sec  */


.delivery-sec {
    padding: 100px 0px;
}

.delivery-box {
    overflow: hidden;
    padding: 80px 5%;
    position: relative;
    border-radius: 30px;
    background-color: var(--themeColor);
}

.delivery-box::before {
    top: 0;
    left: 0;
    width: 100%;
    content: '';
    height: 100%;
    position: absolute;
    background-image: url(../images/delivery-bg.png);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.delivery-text {
    gap: 30px;
    z-index: 1;
    display: flex;
    text-align: center;
    position: relative;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.delivery-text h2 {
    font-size: 45px;
    color: var(--white);
}

.delivery-text h3 {
    color: var(--white);
}

.delivery-text h6 {
    color: var(--white);
}


/* service-area-sec */

.service-area-sec {
    padding-bottom: 100px;
}

.service-area-text {
    gap: 20px;
    display: flex;
    max-width: 900px;
    margin: 0px auto;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.service-area-text h6 {
    color: var(--themeColor3);
}

.service-area-text ul {
    gap: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.inner-service-area-sec {
    padding-top: 100px;
}

/* service-area-sec */

/* safety sec */


.safety-sec {
    padding: 100px 0;
}

.safety-text .main-title,
.safety-text .sub-title {
    margin-bottom: 25px;
    color: var(--themeColor);
}

.safety-text .main-title {
    font-size: 50px;
}

.safety-text .sub-title {
    font-size: 50px;
    margin-top: 50px;
}

.safety-text .intro-p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    margin-bottom: 20px;
}

.safety-text .list-label {
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.safety-list {
    list-style: none;
    padding: 0;
}

.safety-list li {
    display: flex;
    font-size: 16px;
    font-weight: 500;
    padding-left: 35px;
    position: relative;
    color: var(--black);
    margin-bottom: 15px;
    align-items: center;
}

.safety-list li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--themeColor);
}

/* safety sec */

/* careers sec */

.careers-sec {
    padding: 100px 0;
}

.form-title {
    color: var(--themeColor);
    text-align: center;
    margin-bottom: 40px;
}

.careers-sec .form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--black);
}

.career-form-container .form-control {
    width: 100%;
    height: 65px;
    font-size: 14px;
    transition: 0.3s;
    padding: 12px 20px;
    border-radius: 40px;
    border: 1px solid #9c9c9c;
    background-color: var(--white);
}

.career-form-container select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 30px 18px;
}

.form-control:focus {
    border-color: #003366;
    outline: none;
    box-shadow: 0 0 8px rgba(0, 51, 102, 0.1);
}

/* Range Slider */
.range-slider {
    position: relative;
    padding-top: 10px;
}

.slider {
    margin: 0px;
    width: 100%;
    accent-color: #003366;
}

.range-val {
    display: block;
    text-align: center;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

/* Resume Upload Zone */
.drop-zone {
    padding: 40px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
    border-radius: 15px;
    text-align: center;
    border: 2px dashed transparent;
}

.drop-zone:hover {
    border-color: #90101f;
    background: #fffafa;
}

.drop-icon {
    font-size: 40px;
    color: #90101f;
    margin-bottom: 15px;
}

.drop-text {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 25px;
}

.drop-info {
    color: #777;
    font-size: 22px;
}

.drop-info strong {
    color: var(--black);
}

/* Form Footer & Buttons */
.form-divider {
    max-width: 700px;
    margin: 25px auto;
    text-align: center;
    position: relative;
}

.form-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #eee;
    z-index: 1;
}

.form-divider span {
    z-index: 2;
    padding: 0 25px;
    font-size: 18px;
    color: #787878;
    font-weight: 500;
    position: relative;
    background: #fff;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.form-actions button {
    border: none
}

.form-actions button i {
    margin-right: 9px;
}

.form-actions button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.career-form-container {
    padding: 80px 8%;
    border-radius: 30px;
    background-color: var(--white);
}

/* careers sec */

/*Contact us start*/

.contact-text>p {
    color: #8b8a8a;
    font-size: 15px;
}

.contact-main-box {
    padding: 80px 5%;
    border-radius: 30px;
    background-color: var(--white);
}

.contatc-form h2 {
    font-size: 48px;
    color: #000000;
}

.contatc-form select,
.contatc-form input {
    width: 100%;
    height: 60px;
    padding: 10px;
    font-weight: 500;
    color: #7c7c7c;
    padding: 0px 25px;
    border-radius: 10px;
    border: 0px solid #c4c4c4;
    background-color: #f3f3f3;
}

.contatc-form textarea {
    width: 100%;
    height: 200px;
    padding: 10px;
    padding: 10px 25px;
    color: var(--black);
    border-radius: 10px;
    border: 0px solid #c4c4c4;
    background-color: #f3f3f3;
}

.contatc-form input::placeholder,
.contatc-form textarea::placeholder {
    color: #7c7c7c;
}

.contatc-form .theme-btn-1 {
    width: 100%;
    border: none;
    margin: 0px auto;
}

.contact-text h2 {
    font-size: 48px;
    color: #000000;
    line-height: 58px;
}

.contact_page_sidbar h6 {
    margin: 0;
    font-size: 14px;
    color: #8b8a8a;
    font-weight: 500;
    line-height: 20px;
    font-family: 'Poppins';
    text-transform: capitalize;
}

.contact_page_sidbar h4 {
    font-weight: 500;
    line-height: 23px;
    margin: 0 0px 10px;
}

.contact_page_sidbar i {
    width: 30px;
    width: 75px;
    height: 75px;
    display: flex;
    flex-shrink: 0;
    font-size: 35px;
    margin: 0 30px 0 0;
    color: var(--white);
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    background-color: var(--themeColor);
}

.contact_page_main {
    padding: 100px 0px;
}


.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* contact us page */

/* footer  */

footer {
    position: relative;
    padding-bottom: 80px;
}

footer::before {
    bottom: 0;
    width: 100%;
    z-index: -1;
    content: '';
    height: 1600px;
    position: absolute;
    background-image: url(../images/footer-befor.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}


.footer-box {
    overflow: hidden;
    border-radius: 50px;
    position: relative;
    padding: 100px 3% 40px;
    background-color: var(--white);
}


.footer-left-text h3 {
    font-size: 35px;
    margin-top: 35px;
    color: var(--themeColor);
}

.footer-links h6 {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--themeColor);
    text-transform: capitalize;
}

.footer-links {
    min-height: 85px;
    height: fit-content;
    margin: 80px 0 50px 0;
}

.footer-links-1 ul {
    columns: 2;
}

.footer-links ul li a {
    font-size: 16px;
    font-weight: 500;
    line-height: 35px;
    color: var(--themeColor);
    transition: 0.3s ease-in-out;
}

.footer-links a:hover {
    color: #000;
    transition: 0.3s ease-in-out;
}

.footer-links p {
    color: #fff;
}

form.footer-form {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 5px;
    display: flex;
    max-width: 450px;
    overflow: hidden;
    border-radius: 50px;
    align-items: center;
    margin: 40px 0 20px 0;
    border: 2px solid #777777;
    justify-content: space-between;
}

form.footer-form input {
    border: none;
    height: 60px;
    font-size: 16px;
    border-radius: 0;
    padding: 10px 20px;
    color: var(--black);
    background: transparent;
    border-bottom: 1px solid var(--white);
}

form.footer-form input:focus {
    color: var(--black);
    border-color: transparent;
    background-color: transparent;
}

form.footer-form input::placeholder {
    color: var(--black);
}

.footer-left-text p {
    max-width: 440px;
}

form.footer-form button {
    width: 60px;
    height: 60px;
    border: none;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    background-color: var(--themeColor);
}

form.footer-form button img {
    width: 27px;
    height: 20px;
    object-fit: contain;
}

ul.follow-ftr-list li a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    color: #fff;
    font-size: 15px;
    border-radius: 50%;
    transition: 0.5s ease-in-out;
}

ul.follow-ftr-list {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: end;
    flex-wrap: wrap;
}

ul.footer-nav-list {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 40px;
}

ul.footer-nav-list a {
    color: #fff;
    transition: 0.3s ease-in-out;
}

ul.footer-nav-list a:hover {
    color: #000;
    transition: 0.3s ease-in-out;
}

.ftr-bottom {
    padding: 0 0 20px 0;
    margin: 70px 0 30px 0;
    border-bottom: 2px solid var(--themeColor);
}

.ftr-copyright p {
    color: var(--themeColor);
}

.ftr-copyright {
    display: flex;
    padding-top: 30px;
    margin-top: 80px;
    align-items: center;
    justify-content: center;
    border-top: 2px solid var(--themeColor);
}

.footer-logo {
    height: 120px;
    display: block;
    width: fit-content;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* footer  */


/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1291) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1290px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (min-width: 520px) and (max-width: 767px) {}

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


/*Media Query End*/