* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}


:root {
    --primary-body-color: #085C5C;
    --secondary-body-color: #f2f3f4;
    --primary-color: #119E9E;
    --secondary-color: #FEA32C;
    --tertiary-color: #171717;
    --text-black: #171717;
    --text-white: #fff;
    --text-gray: #868593;
    --text-green: #119E9E;
    --text-yellow: #FEA32C;
    --primary-font: "Jost", serif;
    --secondary-font: "Roboto", serif;
    --tertiary-font: "Poppins", serif;
}

body {
    font-family: var(--secondary-font);
    color: var(--text-black);
    line-height: 1.6;
}

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 */
.upper-bar {
    background-color: var(--tertiary-color);
}

.upper-bar-contact {
    padding: 10px 0;
}

.bar-contact a {
    color: var(--text-white);
    font-size: 15px;
}

.bar-contact a i {
    color: var(--text-green);
    padding-right: 10px;
    font-size: 18px;
}

.bar-contact p {
    color: var(--text-gray);

}

.bar-social p {
    color: var(--text-white);
    font-size: 15px;
}

.bar-social a i {
    color: var(--text-gray);
    font-size: 18px;
}


/* Navigation */
.w-number:hover {
    color: black;
}

.navigation-container {
    padding: 0.5rem 0;
}

.logo img {

    width: 100px;
    height: 100px;
}

.navigation-container ul li a {
    padding: 5px 10px;
    color: var(--text-black);
    font-size: 18px;

}

.active-nav {
    color: var(--text-green) !important;
}

.nav-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    display: none;
}

.header-btn-container {
    display: flex;
    align-items: center;
}

.menu-btn {
    display: none;
}

.navigation-scrolled {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


.header-btn-container i {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 100%;
    height: 46px;
    font-size: 24px;
    width: 46px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-number {
    padding-left: 1rem;
    font-size: 18px;
    color: var(--text-black);
}

.nav-link:hover {
    color: var(--text-black);
}



.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;
}


/* banner-sec */

.hero-content {
    height: 780px;
    position: relative;
}

.hero-content::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    background: rgb(4, 4, 4);
    background: linear-gradient(90deg, rgba(4, 4, 4, 0.9976365546218487) 0%, rgba(4, 4, 4, 0.3533788515406162) 100%);
}

.hero-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;

}

.banner-content .container {
    height: 100%;
}

.banner-content-inner {
    /* margin-top: 3rem; */
    height: 100%;
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.banner-heading h1 {
    font-family: var(--primary-font);
    font-size: 70px;
    font-weight: 600;
    color: var(--text-white);

}

.banner-heading h1 span {
    color: var(--text-green);
}

.banner-s-content p {
    color: var(--text-white);
    font-family: var(--secondary-font);
    padding: 2rem 10px;
    font-size: 18px;
}

.banner-btn .get-btn {
    color: var(--text-white);
    background-color: var(--primary-color);
    padding: 10px 32px;
    border-radius: 30px;
}


.banner-btn .read-btn {
    color: var(--text-white);
    border: 1px solid var(--text-white);
    padding: 10px 32px;
    border-radius: 30px;
}

.hero-image {
    width: 100%;
    height: 100%;
}


/* about-sec */

.about-sec {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.about-image img {
    width: 100%;
}


.about-content {
    padding-left: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.small-heading h4 {
    font-size: 24px;
    font-family: var(--tertiary-font);
    color: var(--text-yellow);
    font-weight: 600;
}


.about-heading h1 {
    font-size: 56px;
    font-family: var(--primary-font);
    font-weight: 700;
}

.a-inner-content p {
    padding: 2rem 0;
    font-size: 17px;
    font-family: var(--secondary-font);
    color: var(--text-gray);
}

.button-count {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.button-icon a {
    background-color: var(--primary-color);
    padding: 14px 25px;
    border-radius: 30px;
    color: var(--text-white);
    font-size: 17px;
}

.button-icon a img {
    margin-left: 1rem;
    width: 35px;
}


/* Stats Section */
.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
}

.stat-card-text {
    position: relative;
}

.stat-card-text h2 {
    font-size: 44px;
    font-family: var(--primary-font);
    font-weight: 700;
}


.stat-card-text img {
    position: absolute;
    top: -5px;
    right: -2rem;
    width: 35px;
}


/* why-choose-sec */

.why-choose-sec {
    background-color: var(--primary-body-color);
    padding: 5rem 0 5rem 0;
}

.why-choose-heading h1 {
    font-size: 56px;
    font-weight: 700;
    font-family: var(--primary-font);
    color: var(--text-white);
}

.why-choose-content p {
    font-size: 17px;
    color: var(--text-white);
    font-family: var(--secondary-font);
}


.why-image img {
    width: 100%;
    border-radius: 20px;

}

.why-image-content {
    position: relative;
}

.why-content {
    padding: 2rem;
    position: absolute;
    /* top: 0; */
    bottom: 0;
    left: 0;
    right: 0;

}


.why-content-heading h4 {
    color: var(--text-white);
    font-family: var(--primary-font);
    font-size: 28px;
    font-weight: 700;

}

.w-content p {
    color: var(--text-white);
}


.why-image-content {
    margin-top: 1.60rem;
}


/*  < !-- quality Parts sec --> */

.quality-parts {
    margin-top: 5rem;
    margin-bottom: 7rem;
}

.quality-parts-content {
    padding-bottom: 3rem;
}


.parts-heading h1 {
    font-size: 56px;
    font-weight: 700;
    font-family: var(--primary-font);
    text-align: center;
}

.parts-content p {
    padding: 10px 15rem 10px 15rem;
    font-family: var(--secondary-font);
    font-size: 17px;
    color: var(--text-gray);
    text-align: center;
}

.card-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.parts-card-content {
    position: relative;
}

.card-name {
    position: absolute;
    width: 90%;
    /* top: 70%; */
    bottom: 20px;
    left: 5%;
    text-align: center;
    backdrop-filter: blur(15px);
    padding: 1rem 0;

}

.card-name h4 {
    font-size: 32px;
    font-weight: 600;
    font-family: var(--primary-font);
    color: var(--text-white);
}



/* Explore Work */
.explore-sec {
    position: relative;
    padding-top: 5rem;
    padding-bottom: 5rem;

}

.explore-sec::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70%;
    content: '';
    background: var(--primary-body-color);
    background: linear-gradient(90deg, #085C5C 0%, #119E9E 100%);
    z-index: -1;
}

.explore-sec::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    /* background-color: var(--text-gray); */
    z-index: -2;
}

.explore-sec .explore-heading h2 {
    color: var(--text-white);
    font-size: 56px;
    font-family: var(--primary-font);
    font-weight: 700;

}

.explore-content p {
    font-size: 17px;
    color: var(--text-white);
    font-family: var(--secondary-font);
    padding-top: 1.5rem;
}

.btn-export {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
}

.btn-export a {
    background-color: var(--secondary-color) !important;
    color: var(--text-black) !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    border-radius: 30px;
    padding: 14px 30px;
}

.btn-export .primary-btn img {
    width: 28px;
    margin-left: 10px;
}

.explore-slider .swiper-slide {
    width: 450px;
    height: 550px;
}


.explore-slider-card img {
    height: 500px !important;
    width: 100%;
    object-fit: cover;
    border: 1px solid var(--secondary-color);
}


/* Footer Form */
.footer-form-container {
    padding: 4rem;
    position: relative;
}

.footer-form-container::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(100deg, rgba(0, 0, 0, 0.7455357142857143) 0%, rgba(0, 0, 0, 0.24693627450980393) 100%);
    z-index: -4;
}

.form-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -5;
}

.footer-form-content h2 {
    color: var(--text-black);
    font-size: 4.5rem;
    font-weight: 600;
}

.footer-form-content .form-text {
    color: var(--text-gray);
    text-align: center;
    padding-bottom: 1rem;
}

.footer-form {
    padding: 3rem 2rem;
    background-color: var(--text-white);
}

.footer-form h2 {
    text-align: center;
    margin-bottom: 1rem !important;
    font-weight: 700;
    font-family: var(--primary-font);
    font-size: 2.5rem;
}

.footer-form input,
.footer-form textarea {
    padding: 12px 16px 12px 48px;
    border-radius: 0;
}

.footer-form .primary-btn {
    width: 100%;
    border-radius: 0;
    background-color: var(--secondary-color) !important;
    color: var(--text-white);
    padding: 14px 32px;
    margin-top: 0.5rem;
}

.input-box {
    position: relative;
}

.input-box i {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    font-size: 1.25rem;
    color: var(--text-grey);
}

.input-box:last-child i {
    transform: translateY(0);
    top: 10px;
}

/* Footer */
.footer {
    position: relative;
}

.footer::after {
    position: absolute;
    top: -300px;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background-color: #085C5C;
    /* background: rgb(23, 23, 23); */
    /* background: linear-gradient(100deg, rgba(23, 23, 23, 1) 0%, #085C5C 100%); */
    z-index: -6;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    color: var(--text-white);
}

.footer-col h6 {
    font-size: 1.5rem;
    font-family: var(--primary-font);
}

.footer-col ul li {
    font-weight: 300;
}

.footer-col ul li span {
    color: var(--text-yellow);
    font-weight: 500;
}

.footer-col ul li a {
    color: var(--text-white);
    font-weight: 300;
}

.footer-col-container {
    display: flex;
    justify-content: center;
}

.footer-social a i {
    font-size: 1.25rem;
    color: var(--text-white);
}

.footer-bottom-box {
    border-top: 1px dashed var(--secondary-color);
}

.footer-bottom-box p {
    color: var(--text-white);
    font-weight: 300;
}

.footer-bottom-box p a {
    color: var(--text-yellow);
}

.location-map iframe {
    width: 100%;
    height: 560px;
}


.section-padding-top {
    padding-top: 5rem;
}


.banner-btn-prev {
    position: absolute;
    left: 2%;
    top: 50%;
    transform: translatey(-50%);
    z-index: 1;
}

.banner-btn-next {
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translatey(-50%);
    z-index: 1;
}

.banner-button {
    height: 46px;
    width: 46px;
    border-radius: 100%;
    border: 1px solid var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.banner-button i {
    color: var(--text-white);
    font-size: 2rem;
}


/* Choose Us */
.choose-header-img img {
    width: 60px;
    position: relative;
}

.choose-header-img img:nth-child(1) {
    z-index: 1;
}

.choose-header-img img:nth-child(2) {
    z-index: -1;
}

.choose-header-img img:nth-child(3) {
    z-index: -3;
}

.choose-header-img img:not(:first-child) {
    margin-left: -30px;
}

.choose-us-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.choose-us-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;
}

.choose-us-card:first-child {
    border-left: 1px solid rgba(0, 0, 0, 0.25);
}

.choose-us-icon {
    height: 100px;
    width: 100px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.25);
}

.choose-us-card h6 {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--primary-font);
    margin-top: 0.5rem;
}

.choose-us-icon img {
    width: 50px;
}


.why-choose-heading-about h1 {
    font-size: 56px;
    font-weight: 700;
    font-family: var(--primary-font);

}

.text-grey {
    font-size: 17px;
    color: var(--text-gray);
    font-family: var(--secondary-font);
}

.grey-bg {
    background-color: var(--secondary-body-color);
    padding-bottom: 3.5rem;
}



/* Contact Us */
.contact-heading h2 {
    font-family: var(--primary-font);
    font-size: 56px;
    text-align: center;
    font-weight: 700;
    padding-bottom: 3rem;
}

.contact-info-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.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: var(--text-black);
}

.contact-info-text h6 {
    font-size: 1.25rem;
    font-family: var(--primary-font);
    font-weight: 600;
}

.contact-info-text p {
    color: var(--text-gray);
    margin: 0.25rem 0 0.25rem 0 !important;
}

.contact-info-text a {
    font-weight: 600;
    color: var(--text-black);
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-form {
    padding: 3.5rem;
    border-radius: 20px;
    background-color: var(--secondary-body-color);
}

.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 var(--primary-color);
    background-color: var(--primary-bg);
}

.contact-form button {
    background-color: var(--primary-color) !important;
    padding: 8px 24px;
    font-size: 14px;
    border-radius: 30px;
    color: var(--text-white);
}

.blog-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: flex-start;
}


.blog-content img {
    width: 100%;

    object-fit: cover;
    margin-bottom: 1rem;
}

.blog-content h2 {
    font-family: var(--primary-font);
    font-size: 56px;

    font-weight: 700;
}

.blog-content h2 span {
    color: var(--text-green);
}

.blog-content p {
    font-size: 17px;

    color: var(--text-gray);
}

.blog-content h3 {
    font-size: 34px;
    font-family: var(--primary-font);
    font-weight: 700;
}

.details-content h4 {
    font-size: 28px;
    font-family: var(--tertiary-font);
    padding: 1rem 0;
    font-weight: 600;
}

.point {
    display: flex;
    /*align-items: center;*/

}

.point p strong {
    color: var(--text-black);
}


.point i {
    color: var(--secondary-color);
    padding-right: 8px;

}

.blog-inner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    height: 100%;

}


.news-image {
    width: 100%;
    height: 430px;
    object-fit: cover;
}


.quality-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(12, 1fr);
    gap: 24px;
    height: 650px;
}

.quality-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    z-index: 11;
}

.quality-image img:nth-child(1) {
    grid-row: 2/8;
    grid-column: 1/2;
}

.quality-image img:nth-child(2) {
    grid-column: 1/2;
    grid-row: 8/12;
}

.quality-image img:nth-child(3) {
    grid-column: 2/3;
    grid-row: 1/6;
}

.quality-image img:nth-child(4) {
    grid-column: 2/3;
    grid-row: 6/9;
}

.quality-image img:nth-child(5) {
    grid-column: 2/3;
    grid-row: 9/13;
}


.quality-icon i {
    color: var(--secondary-color);
    padding-right: 10px;
}

.quality-icon {
    display: flex;
}

.quality-parts-page h2 {
    font-size: 34px;
    font-family: var(--primary-font);
    font-weight: 700;
    padding-bottom: 1.5rem;
}

.quality-parts-page p {
    font-size: 17px;
    color: var(--text-gray);
    padding-bottom: 1rem;
}

.quality-icon p strong {
    color: var(--text-black);
}

.quality-parts-page {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.quality-service h2 {
    font-size: 34px;
    font-family: var(--primary-font);
    font-weight: 700;
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
}

.quality-service p {
    font-size: 17px;
    color: var(--text-gray);
    padding-bottom: 1rem;
}

.quality-works h2 {
    font-size: 34px;
    font-family: var(--primary-font);
    font-weight: 700;
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
}

.quality-works p {
    font-size: 17px;
    color: var(--text-gray);
    padding-bottom: 1rem;
}