@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;500&display=swap");
@import url("https://site-assets.fontawesome.com/releases/v6.0.0/css/all.css");

:root {
    --white: #fff;
    --black: #000;
    --primary: #dba622;
    --secondary: #333333;
}

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

body {
    position: relative;
    background: #fff;
    overflow-x: hidden;
    height: 100%;
    /* font-family: "Jost", sans-serif; */
    font-family: "madaniLight";
}

@media (min-width: 1700px) {
    .container {
        max-width: 1410px;
    }
}

/* How to add New font */

/* @font-face {
    font-family: "madaniReg";
    src: url("../fonts/MADANI\ ARABIC\ REGULAR.TTF");
} */

@font-face {
    font-family: "madaniLight";
    src: url("../fonts/MADANI\ ARABIC\ VARIABLE.TTF");
}

section {
    position: relative;
}

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

:is(a, p) {
    font-weight: 800;
}

.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;
}

/* loader */

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

.preLoader.black {
    background-color: var(--white);
    z-index: 11113;
}

.preLoader.white {
    z-index: 11112;
    background-color: var(--primary);
}

/* loader */

/* navigation css */

header {
    padding: 8px 0;
}

.navbar-nav .nav-item .nav-link {
    font-size: 1.125rem;
    color: var(--black);
    display: inline-block;
    position: relative;
    overflow: hidden;
    padding: 8px 1.5rem;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--white);
}

.navbar-nav .nav-item .nav-link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--primary);
    z-index: -1;
    opacity: 0;
    transition: transform 1s;
}

.navbar-nav .nav-item .nav-link:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(50);
}

.searchForm {
    display: flex;
    align-items: center;
    position: relative;
}

.searchForm input {
    height: 33px;
    width: 205px;
    background: #f6f6f6;
    border: unset;
    border-radius: unset;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding-left: 2rem;
}

.searchForm input::placeholder {
    color: #494a4c;
}

.searchForm i {
    position: absolute;
    left: 0.75rem;
    color: #494a4c;
}

.form-inline a {
    color: #494a4c;
    font-size: 1.25rem;
}

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

.store span {
    font-size: 0.625rem;
    background: var(--primary);
    width: 1rem;
    height: 1rem;
    display: grid;
    place-items: center;
    border-radius: 50px;
    color: var(--white);
    position: absolute;
    right: -7px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.store {
    position: relative;
}

/* navigation css */

/* slider css */

.main-slider {
    height: 930px;
    background: url(../images/banner.webp) center/cover no-repeat;
    overflow: hidden;
}

.main-slider::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #00000050;
    position: absolute;
    inset: 0;
}

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

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

.homeSlider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
}

.mainHeading {
    font-size: 5rem;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-family: "madaniLight";
}

.mainHeading span {
    font-size: 1.4375rem;
    display: block;
    font-family: "Jost";
    font-weight: 400;
}

.mainBtn span {
    font-size: 1.125rem;
    text-transform: uppercase;
}

.mainBtn {
    color: var(--white);
    letter-spacing: 3px;
    position: relative;
    height: 108px;
    display: inline-flex;
    align-items: center;
    transition: 0.4s ease;
}

.mainBtn:before {
    content: "";
    position: absolute;
    border: 2px solid var(--white);
    width: 108px;
    height: 108px;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    margin: auto;
    left: -1rem;
    transition: 0.4s ease;
}

.mainBtn:hover::before {
    border-color: var(--white);
    animation: buttonhover 2s ease both;
    transition: 0.4s ease;
}

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

@keyframes buttonhover {
    33% {
        width: 165px;
    }

    66% {
        width: 165px;
        height: 60px;
        left: -1rem;
        border-radius: 20px;
    }

    100% {
        width: 66px;
        height: 66px;
        left: 6rem;
    }
}

.videoBtns {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
}

.videoBtns a {
    background: rgb(255 255 255 / 30%);
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    margin: auto;
}

.videoBtns span {
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* slider css */

/* About Sec Css Start */

.aboutSec {
    padding: 7rem 0;
}

.secHeading {
    font-size: 3.75rem;
    color: var(--black);
    text-transform: uppercase;
}

.aboutContent p {
    font-size: 1.375rem;
    color: #747474;
    line-height: 1.8;
    width: 98%;
}

.themeBtn {
    background: var(--primary);
    color: var(--white);
    text-transform: uppercase;
    font-weight: 500;
    padding: 8px 2.5em;
    display: inline-block;
}

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

/* About Sec Css End */

/* Service Sec Css Start */

.serviceSec {
    background: #f8f8f8;
    padding: 5rem 0;
}

.serviceWraps figure {
    position: relative;
    transition: 0.5s ease;
    overflow: hidden;
}

.serviceWraps figure:hover .themeBtn {
    opacity: 1;
}

.serviceWraps figure img {
    transition: 0.5s ease-in-out;
}

.serviceWraps figure:hover img {
    transform: scale(1.1);
}

.serviceWraps .themeBtn {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    padding: 0.75rem;
    left: 0;
    opacity: 0;
}

.serviceWraps h3 {
    font-size: 1.875rem;
    color: var(--black);
    text-transform: uppercase;
    margin-top: 1.5rem;
}

.servicesTabs {
    background-color: var(--primary);
    padding: 1rem 2rem;
}

.servicesTabs ul {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.servicesTabs ul li a {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--black);
    text-transform: capitalize;
}

.serviceSec-img {
    height: 100%;
}

.serviceContent-wrapper {
    width: 100%;
    height: 100%;
    text-align: center;
    color: var(--black);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    position: relative;
    transform: scaleX(1.1);
    z-index: 1;
}

.serviceContent-wrapper::before {
    content: "";
    width: 100%;
    height: 100%;
    border: 2px solid #6f6f6f9e;
    position: absolute;
    inset: 0;
    margin: 0;
}

.serviceContent {
    position: relative;
    z-index: 1;
}

.serviceContent :is(p, a) {
    transform: scaleX(0.9) !important;
}

/* Service Sec Css End */

/* Gallery Sec Css Start */

.gallerySec {
    padding: 5rem 0 6rem 0;
}

.galleryBox {
    display: flex;
    gap: 1.7rem;
}

.galleryWraps {
    position: relative;
    overflow: hidden;
    margin-bottom: 1.6rem;
}

.galleryWraps a img {
    width: 100%;
    object-fit: cover;
    transition: 0.5s ease-in-out;
}

.galleryWraps .portimg1 {
    height: 669px;
}

.galleryWraps .portimg2 {
    height: 375px;
}

.galleryWraps .portimgFlex {
    height: 268px;
    width: 400px;
}

.galleryWraps a:hover img {
    transform: scale(1.1);
}

/* Gallery Sec Css End */

/* Reviews Sec Css Start */

.reviewsSec {
    background: url(../images/reviewBg.webp) center/cover no-repeat;
    padding: 10rem 0;
}

.reviewsWraps {
    text-align: center;
}

.reviewsWraps p {
    color: var(--white);
    font-size: 2.0625rem;
    line-height: 1.8;
    width: 93%;
    margin: 2.5rem auto 1.5rem;
}

.reviewsWraps h3 {
    font-size: 2.5rem;
    color: var(--white);
}

.quote img {
    position: absolute;
}

.quote1 {
    top: 5.5rem;
    left: 20%;
}

.quote2 {
    bottom: 8rem;
    right: 17%;
}

/* Reviews Sec Css End */

/* Footer Css Start */

footer {
    background: var(--black);
    padding-top: 5rem;
}

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

footer h2 {
    font-size: 1.625rem;
    color: var(--white);
    text-transform: uppercase;
    padding-bottom: 0.75rem;
}

.links li a {
    color: var(--white);
    display: block;
    line-height: 1.3;
    font-size: 1.125rem;
}

.links li+li {
    padding-top: 10px;
}

.contctLinks li a {
    font-size: 1.125rem;
    line-height: 1.1;
    color: var(--white);
}

.contctLinks li a span {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    font-family: "madaniReg";
}

.contctLinks li+li {
    padding-top: 1.5rem;
}

.foorForm input {
    height: 50px;
    width: 100%;
    border: 1px solid #f1f1f1;
    background: #f6f6f6;
    font-size: 0.75rem;
    padding-left: 1.2rem;
}

.foorForm button {
    font-size: 0.9375rem;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: unset;
    padding: 7px 1.375rem;
    letter-spacing: 2px;
    position: absolute;
    right: 10px;
}

.foorForm {
    display: flex;
    align-items: center;
    position: relative;
    margin: 0.875rem 0 1.5rem 0;
}

.instaLinks {
    display: flex;
    gap: 1.5rem;
}

.payText {
    font-size: 0.75rem;
    margin: 10px 0;
    color: var(--white);
    font-family: "madaniReg";
}

.instaLinks li a {
    font-size: 1.5rem;
    color: var(--white);
}

.termsLink {
    display: flex;
    gap: 1.5rem;
    justify-content: end;
}

.termsLink li a {
    font-size: 0.875rem;
    color: var(--white);
}

.footBottom p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--white);
}

.termsLink li+li {
    border-left: 1px solid var(--white);
    padding-left: 1.5rem;
}

.footBottom {
    border-top: 1px solid rgb(212 212 212 / 28%);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

/* Footer Css End */

.reveal {
    visibility: hidden;
    position: relative;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform-origin: left;
}

.overflow {
    overflow: hidden;
}

/* Inner Pages Css Start */

.innerBanner {
    position: relative;
    background: var(--primary);
    height: 500px;
}

.innerBanner .overlay {
    position: absolute;
    text-align: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img2 {
    width: 100%;
    margin-top: -3rem;
    z-index: -1;
    position: relative;
}

.aboutImg {
    text-align: end;
}

.img1 {
    border: 10px solid var(--white);
}

.img3 {
    margin-bottom: 2rem;
}

.aboutInner .row+.row {
    padding-top: 3rem;
}

.aboutInner {
    padding: 4rem 0;
}

.serviceBox {
    height: 100%;
    background: #f8f8f8;
    padding: 3.5rem 6rem 3.5rem 3rem;
}

.subHeading {
    font-size: 3.125rem;
    text-transform: uppercase;
    color: var(--black);
}

.serviceBox P {
    font-size: 1.375rem;
    color: #747474;
    line-height: 1.8;
}

.serviceInner {
    padding: 5rem 0;
}

.serviceInner .row+.row {
    padding-top: 4rem;
}

.galleryInner .row+.row {
    padding-top: 2rem;
}

.reviewsBox {
    text-align: center;
}

.reviewsBox ul {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.reviewsBox h4 {
    font-size: 1.375rem;
    color: #1a1a1a;
    margin: 0.875rem 0 12px 0;
}

.reviewsBox p {
    font-size: 0.9375rem;
    color: #8a919c;
}

.reviewsBox ul li i {
    color: #ebaa57;
}

.reviewInner .row+.row {
    padding-top: 7rem;
}

.reviewLine {
    position: relative;
}

.reviewLine:before {
    position: absolute;
    content: "";
    border-left: 1px solid #b7b7b7;
    left: -1rem;
    height: 100%;
    top: 0;
}

.reviewLine:after {
    position: absolute;
    content: "";
    border-right: 1px solid #b7b7b7;
    right: -1rem;
    height: 100%;
    top: 0;
}

.contactForm .form-group {
    margin-bottom: 1.7rem;
}

.contactForm .form-group .form-control {
    border: 1px solid #d4d4d4;
    background: var(--white);
    border-radius: unset;
    padding-left: 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: #494a4c;
    font-family: 'madaniLight';
}

.contactForm .form-group input {
    height: 60px;
}

.contactForm .form-group textarea {
    padding-top: 1rem;
}

.contactForm .form-group .form-control::placeholder {
    color: #808080;
}

.contactInner {
    background: #f8f8f8;
    padding: 4rem 0 3rem 0;
}

.contactInner h2 {
    font-family: "madaniLight";
}

.infoWraps h3 {
    font-size: 2.1875rem;
    text-transform: uppercase;
    color: var(--black);
}

.infoWraps a {
    font-size: 2.0625rem;
    color: var(--black);
}

.infoWraps {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
}

.error {
    color: #ff0000;
    font-family: monospace;
}

#signupFormResult {    
    width: fit-content;
    display: block;
    margin: 1rem auto 0;
}

#signupFormResult2 {
    position: absolute;
    bottom: -100px;
}

/* Inner Pages Css End */
