/* FONT IMPORT */


/* Google Font */

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

/* Local Font */


/* font-family: "Roboto", sans-serif; */

@font-face {
    font-family: "cairo-bold";
    src: url("../fonts/cairo-bold.ttf");
}

@font-face {
    font-family: "cairo-semibold";
    src: url("../fonts/cairo-semibold.ttf");
}

:root {
    --white: #fff;
    --black: #000;
    --primary: #0034FF;
    --secondary: #009A00;
}

html {
    scroll-behavior: smooth;
    height: 100%;
    overflow-x: clip;
}

body {
    position: relative;
    background: #fff;
    overflow-x: clip;
    height: 100%;
    font-family: "Poppins";
}

section {
    position: relative;
}

h1,
h2,
h3 {
    font-family: "cairo-bold";
}

p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.83;
    color: #707070;
}

.img-auto {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none !important;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

a:hover,
button:hover {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

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

figure {
    margin: 0;
}


/* Cursor Start */

.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.cursor-inner {
    margin-left: 2px;
    margin-top: 2px;
    width: 7px;
    height: 7px;
    z-index: 10000001;
    background-color: var(--primary);
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
    margin-left: -10px;
    margin-top: -10px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    opacity: 0.3;
}


/* Cursor End */


/* PRELOADER */

body.loading {
    overflow: hidden;
}

.preLoader {
    width: 100%;
    height: 100%;
    z-index: 1111;
    display: flex;
    align-items: start;
    justify-content: start;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 11113;
}

.preLoader .counter {
    color: var(--white);
    font-size: 16rem;
    font-weight: 600;
    letter-spacing: 8px;
    position: absolute;
    bottom: 2rem;
    right: 5rem;
}

.preLoader .line {
    position: absolute;
    top: 80%;
    left: 0;
    width: 0;
    height: 5px;
    background-color: var(--white);
    opacity: 0.75;
}

.preLoader .bar {
    width: 20%;
    height: 100vh;
    background-color: var(--primary);
}


/* PRELOADER */


/* NAV HEADER CSS */

header {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 111;
    top: 0;
    width: 100%;
    padding-top: 1rem;
    transition: 0.3s ease-in-out;
}

header marquee {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0;
    margin-bottom: 0.5rem;
    position: fixed;
    top: 0;
    left: 0;
}

.navbar-brand {
    padding: 0;
    margin: 0;
    width: 200px;
}

.navbar-brand>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navbar-nav {
    align-items: center;
    gap: 2rem;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1rem;
    color: var(--white);
    padding: 0 0;
    display: inline-block;
    font-family: "Roboto", sans-serif;
    position: relative;
}

.navbar-nav .nav-item .nav-link:before {
    content: "";
    position: absolute;
    background: var(--white);
    width: 0;
    height: 2px;
    transition: 0.5s ease;
    bottom: -5px;
}

.navbar-nav .nav-item .nav-link:hover:before {
    width: 100%;
}

.innerHeader .navbar-nav .nav-item .nav-link {
    color: var(--primary);
}

.innerHeader .navbar-nav .nav-item .nav-link::before {
    background: var(--primary);
}


/* !NAV HEADER CSS */


/* MAIN HERO SLIDER CSS */

.main-slider {
    height: 980px;
    background: url(../images/main-banner.png) no-repeat center / cover;
}

.homeSlider.swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
    overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
    overflow: hidden;
    display: flex;
    align-items: center;
}

.slideOne {
    margin-top: -15rem;
}

.slideOne h1 {
    color: var(--white);
    font-size: 3rem;
    line-height: 1.27;
    margin-bottom: 2rem;
}

.themeBtn {
    font-size: 1.125rem;
    color: var(--white);
    text-transform: uppercase;
    font-family: "cairo-bold";
    background: var(--secondary);
    display: inline-block;
    padding: 0.8125rem 2.34em;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.themeBtn:hover {
    color: var(--white);
}

.themeBtn:before {
    content: "";
    position: absolute;
    background: var(--black);
    inset: 0;
    transition: 0.5s ease;
    transform: scale(0);
    z-index: -1;
}

.themeBtn:hover:before {
    transform: scale(1);
}

.scroll {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.scroll a {
    background: var(--white);
    width: 63px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50px;
    box-shadow: 0 5px 23px rgb(152 152 152 / 54%);
    color: var(--black);
    font-size: 1.75rem;
    outline: 3px solid var(--white);
    outline-offset: 22px;
    transition: 0.5s ease;
    animation: bounce-1 2s infinite linear;
    transform-origin: bottom;
}

.scroll:hover a {
    background: var(--primary);
    color: var(--white);
}

@keyframes bounce-1 {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}


/* !MAIN HERO SLIDER CSS */


/* About Sec Css Start */

.aboutSec {
    padding: 7.5rem 0;
}

.about--inner {
    padding: 10rem 0 7.5rem;
}

.aboutImages {
    position: relative;
    text-align: right;
    margin-right: 1rem;
}

.aboutOne {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: -6rem;
    border-radius: 11.8125rem;
    border: 8px solid var(--white);
}

.aboutTwo {
    border-radius: 16.125rem;
}

.smallHead {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--secondary);
    border: 1px solid var(--secondary);
    padding: 7px 1.4em;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 0.625rem;
}

.secHeading {
    font-size: 2.5rem;
    color: var(--black);
    font-weight: bold;
    line-height: 1.16;
    overflow: hidden;
}

.aboutContent h3 {
    font-size: 1.4375rem;
    color: var(--secondary);
    font-family: "cairo-semibold";
    margin-bottom: 1rem;
}

.aboutContent ul {
    margin-bottom: 1.875rem;
}

.aboutContent ul li+li {
    margin-top: 0.625rem;
}

.aboutContent ul li a {
    color: #707070;
    font-size: 1.25rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.aboutContent ul li a i {
    color: var(--secondary);
}

.themeBtn1 {
    background: var(--primary);
}


/* About Sec Css End */


/* Service Sec Css Start */

.serviceSec {
    padding: 6.25rem 0 7.5rem 0;
    background: #F8F8F8;
}

.serviceHeading {
    margin-bottom: 5rem;
}

.serviceSlider {
    margin-left: 12rem;
}


/* .serviceSlider .serviceBox {
    opacity:40%;
} */


/* .serviceSlider .swiper-slide.swiper-slide-active .serviceBox,
.serviceSlider .swiper-slide.swiper-slide-next .serviceBox,
.serviceSlider .swiper-slide-next+.swiper-slide .serviceBox {
    opacity: 1;
} */

.serviceSec .container {
    max-width: 1450px;
}

.serviceWraps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.serviceWraps .serviceBox:nth-child(odd) {
    margin-top: 10rem;
}

.serviceBox figure {
    background: url("../images/service-circle-odd.webp") no-repeat center / cover;
    width: 190px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50%;
    margin: auto;
    position: relative;
    transition: 0.5s ease;
    z-index: 1;
}

.serviceWraps .serviceBox:nth-child(even) figure {
    background: url("../images/service-circle-even.webp") no-repeat center / cover;
}

.serviceBox figure img {
    transition: all 300ms ease-in-out;
}


/* .serviceBox:hover figure {
    border-color: var(--secondary);
} */

.serviceWraps .serviceBox:nth-child(even) figure img {
    filter: brightness(0) saturate(100%) invert(38%) sepia(67%) saturate(1423%) hue-rotate(88deg) brightness(91%) contrast(105%);
}


/* .serviceWraps .serviceBox:nth-child(2) figure:before,
.serviceWraps .serviceBox:nth-child(2) figure:after {
    content: "";
    position: absolute;
    background: var(--primary);
    height: 4px;
    width: 100px;
    top: 0;
    bottom: 0;
    margin: auto;
    left: -6.8rem;
}

.serviceWraps .serviceBox:nth-child(2) figure:after {
    left: inherit;
    right: -6.7rem;
} */

.serviceText h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    text-align: right;
    margin: 0;
    transition: 0.5s ease;
    width: 44%;
}

.serviceWraps .serviceBox:nth-child(even) .serviceText h3 {
    color: var(--primary);
}

.serviceText p {
    font-size: 14px;
    line-height: 1.625;
    margin: 0;
    width: 56%;
}

.serviceText {
    display: flex;
    gap: 2.25rem;
    padding-top: 8.75rem;
    margin-right: -2rem;
}

.serviceWraps .serviceBox:nth-child(even) .serviceText {
    padding-top: 3.75rem;
}

.serviceContent {
    position: relative;
}

.serviceContent:before {
    content: "";
    position: absolute;
    background: var(--secondary);
    width: 4px;
    height: 218px;
    inset: 0;
    margin: 0 auto;
    border-radius: 1rem;
    transition: 0.5s ease;
    transform-origin: top;
    animation: bounceline 4s infinite linear alternate;
}

@keyframes bounceline {
    from {
        transform: scaleY(0);
        opacity: 0;
    }
    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

.serviceWraps .serviceBox:nth-child(even) .serviceContent:before {
    background: var(--primary);
}

.serviceWraps .serviceBox:nth-child(even) .serviceContent:before {
    height: 134px;
}

.serviceContent span {
    background: var(--secondary);
    width: 12px;
    height: auto;
    aspect-ratio: 1;
    display: block;
    border-radius: 50px;
    outline: 4px solid var(--secondary);
    outline-offset: 4px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 2rem auto 0;
    transition: 0.5s ease;
}

.serviceWraps .serviceBox:nth-child(even) .serviceContent span {
    background: var(--primary);
    outline-color: var(--primary);
}


/* Service Sec Css End */


/* Customer Sec Css Start */

.customerSec {
    padding: 6.25rem 0 7.8125rem 0;
}

.customerHeading .smallHead {
    padding: 7px 2.5em;
}

.customerBox {
    border: 2px solid var(--primary);
    border-radius: 10px;
    text-align: center;
    padding: 3.4375rem 1.875rem 1.875rem 1.875rem;
    position: relative;
}

.quotes img {
    position: absolute;
}

.quotesOne {
    top: -1.5rem;
    left: 2rem;
}

.quotesTwo {
    bottom: -2rem;
    right: 4rem;
}

.customerBox p {
    font-size: 1.25rem;
    font-style: italic;
}

.customerBox ul {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 0.625rem;
}

.customerBox ul li i {
    font-size: 18px;
    color: #FFBE00;
}

.customerBox h3 {
    font-size: 1.625rem;
    color: var(--black);
    font-family: "cairo-semibold";
}

.customerBox span {
    color: #9F9F9F;
}

.customerSlider {
    padding: 4rem 0 2rem 0;
}

.customerSec .swiper-button-next:after,
.customerSec .swiper-button-prev:after {
    font-size: 1.125rem;
    font-weight: 700;
}

.customerSec .swiper-button-next,
.customerSec .swiper-button-prev {
    border: 1px solid var(--secondary);
    width: 60px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50px;
    color: var(--secondary);
    background: transparent;
    top: 23%;
    transition: 0.5s ease;
}

.customerSec .swiper-button-next:hover,
.customerSec .swiper-button-prev:hover {
    background: var(--secondary);
    color: var(--white);
}

.customerSec .swiper-button-next {
    right: 16%;
}

.customerSec .swiper-button-prev {
    left: inherit;
    right: 20%;
}


/* Customer Sec Css End */


/* Quick Sec Css Start */

.quickSec {
    padding: 5rem 0;
    background: #F8F8F8;
}

.quickWrap {
    display: flex;
    justify-content: center;
    gap: 3.75rem;
    margin-top: 4rem;
    position: relative;
}

.quickWrap:before {
    content: "";
    position: absolute;
    background: var(--primary);
    width: 70px;
    height: 5px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.quickBox {
    border: 5px solid var(--secondary);
    width: 200px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 100%;
    font-size: 5rem;
    color: var(--secondary);
    background: transparent;
    transition: 0.5s ease;
    box-shadow: 0 3px 20px rgb(0 0 0 / 48%);
    z-index: 1;
}

.quickBox:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}


/* Quick Sec Css End */


/* Footer Css Start */

footer {
    background: #000E2A url(../images/footBg.webp)center/cover;
    padding-top: 5rem;
}

.footerLogo p {
    color: var(--white);
    font-size: 1rem;
    line-height: 2.2;
    width: 96%;
    margin: 1.5rem 0 0 0;
}

footer h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.3rem;
}

footer ul li a:hover {
    color: var(--secondary);
}

.links li a {
    color: var(--white);
    text-transform: uppercase;
}

.links li+li {
    margin-top: 1rem;
}

.contactLinks li {
    flex-direction: column;
}

.contactLinks li,
.contactLinks .text {
    display: flex;
    gap: 8px;
}

.contactLinks li a {
    flex: 1;
    color: var(--white);
    font-size: 0.875rem;
    display: block;
}

.contactLinks li span {
    font-size: 1rem;
    font-weight: 500;
    display: block;
    color: var(--white);
}

.contactLinks li+li {
    margin-top: 2.1875rem;
}

.socialLinks li a {
    display: flex;
    gap: 1.125rem;
    align-items: center;
}

.socialLinks li a div {
    background: var(--white);
    width: 35px;
    height: auto;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: var(--secondary);
    transition: 0.5s ease;
}

.socialLinks li a:hover div {
    background: var(--secondary);
    color: var(--white);
}

.socialLinks li a span {
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
}

.socialLinks li+li {
    margin-top: 1.5625rem;
}

.copyRight p {
    color: var(--white);
    font-size: 1rem;
    margin: 0;
    text-align: center;
}

.copyRight {
    border-top: 1px solid rgb(238 232 227 / 20%);
    margin-top: 2.5rem;
    padding: 1.5625rem 0;
}

.copyRight p a {
    color: var(--secondary);
}


/* Footer Css End */

ul.manuicon {
    display: flex;
    align-items: center;
    gap: 1rem;
}

ul.manuicon li a i {
    background: #0034FF;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    color: #fff;
    display: grid;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    transition: 0.5s ease;
}

.form-inline {
    margin-left: 2rem;
}

ul.manuicon li a:hover i {
    background: var(--secondary);
}


/* Service Page */

.servicesInner {
    padding: 10rem 0 7.5rem;
}

.servicesInner .row+.row {
    margin-top: 3rem;
}

.servicesInner .row:nth-child(odd) {
    flex-direction: row-reverse;
}

.servicesInner__img {
    background: url("../images/service-circle-odd.webp") no-repeat center / cover;
    width: 190px;
    height: auto;
    aspect-ratio: 1;
    position: relative;
    display: grid;
    place-items: center;
    border-radius: 100%;
    margin: 0 auto;
}

.servicesInner .row:nth-child(odd) .servicesInner__img {
    background: url("../images/service-circle-even.webp") no-repeat center / cover;
}

.servicesInner__img img {
    width: 35%;
}

.servicesInner__img .dot {
    width: 11px;
    aspect-ratio: 1;
    background: var(--secondary);
    border-radius: 100%;
    outline: 2px solid var(--secondary);
    outline-offset: 4px;
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
}

.servicesInner .row:nth-child(odd) .servicesInner__img .dot {
    background: var(--primary);
    outline-color: var(--primary);
}

.servicesInner__img .dot::before {
    content: "";
    position: absolute;
    background: var(--secondary);
    width: 4px;
    height: 50px;
    inset: 0;
    margin: 0 auto;
    border-radius: 1rem;
    transition: 0.5s ease;
    transform-origin: top;
    animation: bounceline 4s infinite linear alternate;
}

.servicesInner .row:nth-child(odd) .servicesInner__img .dot::before {
    background: var(--primary);
}

.servicesInner__content h3 {
    font-size: 1.75rem;
    text-transform: uppercase;
    color: var(--secondary);
    line-height: 28px;
}

.servicesInner__content p {
    font-size: 0.875rem;
}

.servicesInner .row:nth-child(odd) .servicesInner__content {
    text-align: right;
}

.support {
    padding-bottom: 5rem;
}

.support__contentWrapper {
    background: #020B2D;
}

.support__content {
    width: 100%;
    height: 100%;
    padding: 5rem 4rem;
    text-align: center;
}

.support__content--border {
    border-right: 1px solid #707070;
    /* border-left: 1px solid #707070; */
}

.support__content :is(h3,
p) {
    text-align: center;
}

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

.support__content .inputField {
    margin-bottom: 1rem;
}

.support__content .inputField label {
    color: #707070;
    display: block;
    text-align: left;
}

.support__content .inputField input {
    width: 100%;
    background: #0E1B4D40;
    border: 1px solid #70707050;
    outline: none;
    padding: 0.75rem 0.5rem;
    color: #A7A7A7;
}

.support__content form .themeBtn {
    width: 100%;
    border: 1px solid #70707050;
    border-radius: 0;
    background: #0E1B4D40;
    margin-top: 0.5rem;
}

.support__content .icon {
    width: 100px;
    aspect-ratio: 1;
    font-size: 2rem;
    color: var(--primary);
    background: var(--white);
    border-radius: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}


/* Tracking */

.tracking {
    padding: 10rem 0 5rem;
}

.tracking__content input {
    width: 100%;
    padding: 0.5rem 0.75rem;
}

.tracking__list {
    height: 100%;
    background: #F8F8F8;
    padding: 3rem;
}


/* Tracking Order */

.tracking-card {
    padding: 3.125rem 5rem 4.5rem;
    border-radius: 0.5rem;
}

.tracking-card--header {
    margin-bottom: 6.125rem;
}

.tracking-card--header h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
}

.tracking-card--header #order-id {
    color: #DB4343;
}

.tracking-card--header h5 {
    font-size: 16px;
    font-weight: 400;
}

.tracking-card--header h5+h5 {
    margin: 0.5rem 0 0;
}

.tracking-bar {
    height: 18px;
    background: var(--primary);
    border-radius: 3.125rem;
    margin-bottom: 3rem;
}

.tracking-bar .step {
    position: relative;
}

.tracking-bar .step .circle {
    width: 42px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--primary);
    display: grid;
    place-items: center;
    position: relative;
    color: var(--white);
    border: 4px solid var(--white);
}

.traking-details figure {
    gap: 0.75rem;
}

.traking-details figure figcaption {
    font-size: 1.375rem;
    line-height: 1.2;
}

.order-tracking-section {
    background: #EDEDED;
    padding-top: 8rem;
}


/* Scroll Top */

.scroll-top {
    position: fixed;
    right: -5rem;
    bottom: 2rem;
    width: 2.75rem;
    aspect-ratio: 1;
    border-radius: 100%;
    display: grid;
    place-items: center;
    background-color: var(--primary);
    color: var(--white);
    z-index: 99;
    transition: all 0.5s ease, right 1s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.scroll-top.show {
    right: 2rem;
}

.scroll-top:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.quickSecText p {
    text-align: center;
    line-height: 0.5;
    margin-top: 1rem;
}

.quickSecText p img {
    width: 50px;
    padding: 0 0.5rem;
}

.quickSecText p span {
    font-size: 4rem;
    padding: 0 0.5rem;
}

.privacyContent h3 {
    margin: 1rem 0;
}

.privacyContent ul li {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.83;
    color: #707070;
}