

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Montserrat, 'Poppins', sans-serif;
    -webkit-tap-highlight-color: transparent;
}


/* cark mode */

:root {
    --dark: #030712;
    --light: white;
}

.mode-change {
    --dark: white;
    --light: #030712;
}



html,
body {
    scroll-behavior: smooth !important;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
    position: relative;
}


/* header */
#header {
    padding: 0;
}

header {
    position: relative;
    width: 100%;
    height: 80px;
    padding: 25px 20px;
    background: #030712f3;
    transition: all .3s;
    position: fixed;
    top: 0;
    z-index: 999;
}

nav {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

nav .logo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
}

.logo img {
    width: 100%;
    height: 100%;
}

.logo .head {
    font-size: 12px;
}

nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    list-style: none;
}

nav ul li {
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;

}

nav li {
    width: fit-content;
    cursor: pointer;
}

.line {
    width: 0px;
    transition: all .3s;
    height: 2px;
    background: #0891B2;
}

nav ul li:hover .line {
    width: 100%;
}

.stick {
    margin-right: -20px;
}

.icons i {
    padding: 12px;
    border-radius: 50%;
    margin: 0px 5px;
    transition: all .3s;
    color: white;
}

.fa-magnifying-glass {
    display: inline-block;
    position: relative;
    left: 30px;
    z-index: 999;
}

.icons .fa-bars {
    display: none;
}

.fa-magnifying-glass:hover {
    color: var(--dark);
    background: #0891B2;
}

.fa-bars:hover {
    background: var(--light);
    color: var(--dark);
}


.icons input {
    transition: all .3s;
    width: 0;
    outline: none;
}

.Search {
    opacity: 0;
    border-radius: 7px;
    border: none;
    padding: 5px;
    visibility: hidden;
}

.icons .open {
    width: 200px;
    opacity: 1;
    visibility: visible;
}

.move {
    left: -1px;
}

/* hero section */

p {
    color: #747474;
    line-height: 21px;
}

.hero-section {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px;
    padding-top: 100px;
    transition: all .3s;
    color: var(--light);
    background: var(--dark);
    transform: all .1s;
}

.hero-section .left,
.hero-section .right {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 1px;
}

.hero-section .left {
    margin-top: -60px;
    padding: 20px;
}

.hero-section .left h1 {
    font-size: 30px;
}

.left .content p {
    width: 90%;
    margin: 30px 0px;
}

.content button {
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    color: #F97316;
    font-size: 16px;
    font-weight: 600;
    overflow: hidden;
    background: white;
    display: flex;
    justify-content: space-between;
    transition: all .2s;
}

.content .border {
    border: 2px solid #F97316;
}

button:hover {
    background: rgb(255, 106, 0);
    color: white;
}

.button-area {
    transform: translateX(5px);
    transition: all .3s;
}

button i {
    transition: all .3s;
    transform: translateX(35px);
}

button:hover i {
    transform: translateX(10px);
}

button:hover .button-area {
    transform: translateX(-10px);
}

.hero-section .right img {
    animation: move 2s ease-in-out infinite alternate;
}

@keyframes move {
    0% {
        transform: translateY(-50px);
    }

    100% {
        transform: translateY(-10px);
    }
}


/* sectiob2 */

.section2 {
    background: #111827;
    padding: 100px 0px;
}

.section2,
.section3 {
    text-align: center;
    transition: all .3s;
}

.section2 h1,
.section3 h1 {
    color: var(--light);
    margin: 20px 0px;
    font-size: 35px;
}

.section2 p,
.section3 p {
    color: #747474(0, 0, 0, 0.69);
    width: 35%;
    line-height: 25px;
    margin: 20px auto 30px;
}

.section3 button {
    margin-bottom: 70px;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    border: none;
    transition: all .3s;
    font-size: 18px;
    cursor: pointer;
    font-weight: 500;
    background: #086BC9;
}

.section3 button:hover {
    color: #086BC9;
    background: white;
}

.service1:hover {
    transform: translateY(-10px);
}

.services {
    width: 90%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}

.services .service1 {
    margin: 10px 10px 10px 10px;
    padding: 10px;
    border: 1px solid #F97316;
    background: transparent;
    text-align: center;
    width: 31%;
    border-radius: 5px;
    cursor: pointer;
    transition: .3s;
}

.services .service1:hover .border-pink {
    width: 30%;
}

.service1 h5 {
    color: var(--light);
    margin: 10px 0px;
    font-size: 20px;
}

.border-pink {
    border: 1px solid #0891B2;
    width: 20%;
    margin: 20px auto;
    transition: .3s;
}

.service1 img {
    filter: invert(49%) sepia(44%) saturate(5828%) hue-rotate(3deg) brightness(106%) contrast(102%);
    width: 60px;
    height: 60px;
    margin: 10px 0px;
}

.services .service1 p {
    width: 100%;
    padding: 0px 10px;
    margin: 0px 0px 10px;
    color: #747474;
}

@keyframes movein {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translatex(100px);
    }
}


/* section 3 */

.section3 {
    width: 100%;
    height: auto;
    background: var(--dark);
    padding: 100px 40px;
}

.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    padding: 30px;
    grid-gap: 30px;
}

.img-1 {
    grid-area: 1/1/2/2;
}

.gallery .img {
    width: 100%;
    height: 100%;
    border: 1px solid #086BC9;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .4s;
}


.gallery img {
    width: 60%;
    margin: auto;
    object-fit: cover;
    transition: .3s linear;
}


.gallery .gallery-change {
    background: #ffffff;
    transition: all .3s;
}

.gallery .img:hover {
    background: #0891B2;
}

/* Cursor */

.point {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #F16332;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.4s ease-out;
    pointer-events: none;
}


/* moving line  */

.pointer {
    width: 100px;
    height: 5px;
    background: #fabf94;
    margin: 20px auto;
    padding: 1px;
    border-radius: 20px;
}

.pointer .dot {
    width: 8px;
    height: 8px;
    margin-top: -3px;
    background: #F97316;
    border-radius: 50%;
    animation: movein 3s linear infinite;
}

@keyframes movein {
    0% {
        transform: translateX(0px);
    }

    100% {
        transform: translatex(100px);
    }
}


/* Sectuion 4 */

.section4 {
    width: 100%;
    background: #111827;
    padding: 100px 0px 50px;
}

.section4 .head {
    text-align: center;
}

.section4 h1 {
    font-size: 20px;
    font-weight: 500;
    color: #F97316;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section4 h3 {
    color: var(--light);
    font-size: 40px;
    font-weight: 700;
    margin: 20px auto 0px;
    width: 65%;
}

.testimonials {
    margin: auto;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.content-post {
    width: 30%;
}

.testimonials .content {
    padding: 30px 25px;
    margin: 0px 0px;
    border-radius: 10px;
    width: 100%;
    border: 1px solid #F97316;
}

.testimonials .content p {
    line-height: 24px;
}


.review1 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.review-content {
    width: 100%;
    padding: 20px;
    color: var(--light);
}

.review1 .review-content h2 {
    margin: 10px 0px;
}

.review1 .review-content img {
    border-radius: 50%;
}

.card {
    width: 100%;
    height: auto;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    background: var(--dark);
    padding: 40px 50px 100px;
    perspective: 1000px;
    transition: all .4s;
}

.card .container {
    margin: 10px 10px 10px 10px;
    padding: 10px;
    background: transparent;
    text-align: center;
    width: 31%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all .3s;
    perspective: 1000px;
    transition: all .4s;
}

.card-section {
    background: var(--dark);
    padding-bottom: 0px;
    transition: all .4s;
}

.card-section p {
    margin: -1px auto;
}

.cube-flipper {
    width: 100%;
    height: auto;
    border-radius: 10px;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0px;
}

.face {
    border-radius: 10px;
    width: 100%;
    height: auto;
    text-align: center;
    font-size: 20px;
    color: var(--light);
    padding: 40px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.front {
    position: absolute;
    background: var(--dark);
    top: 0;
    left: 0;
    backface-visibility: hidden;
    border-radius: 10px;
    z-index: 11;
    border: 1px solid #086BC9;
}

.face h2 {
    margin: 10px 0px;
}

.face img {
    width: 100px;
    margin-top: 13px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(99%) saturate(0%) hue-rotate(207deg) brightness(105%) contrast(100%);
}

.front .filter-change {
    filter: brightness(0) saturate(100%);
}

.back {
    border-radius: 10px;
    background-color: #086BC9;
    transform: rotateY(180deg);
}

.container:hover .cube-flipper {
    transform: rotateY(-180deg);
}

.back p {
    width: 80%;
    padding: 57px 0px;
    font-size: 17px;
    margin: auto;
}

.light-mode {
    background: #e9e9e9;
    transition: all .3s;
}


/* footer  */

footer {
    width: 100%;
    height: auto;
    background: #030712;
    border-top: 1px solid #111827;
    padding: 100px 40px 20px;
}

.footer-content {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    padding: 0px 50px;
}

.footer-link-p {
    transition: .3s linear;
}

.footer-link-p:hover {
    color: white;
}

.footer-section {
    width: 30%;
    height: auto;
    text-align: left;
    flex: 1;
}

.footer-section .logo {
    display: flex;
    align-items: center;
}

.footer-section .logo img {
    width: 100px;
}

.footer-section h3 {
    color: white;
    margin: 0px 0px;
}

.footer-section p {
    color: #6d7277;
    font-size: 1rem;
    margin: 20px 0px;
}

.footer-section .social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.footer-section a {
    color: #6d7277;
    text-decoration: none;
}

.footer-link-a {
    transition: .3s linear;
}

.footer-link-a:hover {
    text-decoration: underline;
    color: white;
}

.footer-bottom {
    text-align: left;
    font-size: 1rem;
    margin: 100px 0px 20px;
}

.footer-bottom hr {
    width: 90%;
    height: 1px;
    background: #111827;
    margin: 20px auto;
    border: 1px solid #111827;
}

.footer-bottom p {
    color: #747474;
    width: 90%;
    margin: auto;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 20px 0px;
}

.footer-section ul li {
    text-decoration: none;
    color: #6d7277;
    transition: .3s linear;
}

.footer-section ul li:hover,
.footer-section ul li:hover a {
    color: #F97316;
    transform: translateX(10px);
}

.footer-bottom a {
    color: white;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.social-icons i {
    font-size: 1.25rem;
    margin: 30px 10px 0px 0px;
    transition: .3s linear;
    cursor: pointer;
}

.social-icons i:hover {
    color: #F97316;
}


/* products */

.product {
    transition: all .4s;
}

.card-section button {
    padding: 13px 20px;
    margin: 20px 0px;
    border-radius: 5px;
    background: #F16332;
    color: white;
    border: none;
    cursor: pointer;
    transition: all .4s;
}

.buy-button {
    padding: 13px 20px;
    margin: 20px 0px;
    border-radius: 5px;
    background: #ffffff;
    color: #F16332;
    border: none;
    cursor: pointer;
    transition: all .4s;
}

.card-section button:hover {
    color: #F16332;
    background: white;
}

.product .cube-flipper {
    margin: 0px;
}

.product .front {
    border: 1px solid #F16332;
    background-color: #ffff;
}

.product .face {
    padding: 0px;
    color: #030712;
}

.product .back {
    background: #F16332;
    height: 289px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product .back p {
    padding: 30px 0px 0px;
}

.product .face img {
    filter: none;
    width: 90%;
    height: auto;
    margin: 0px;
}

.face .img {
    width: 100%;
    height: 289px;
    background: white;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.back-p {
    width: fit-content;
    height: fit-content;
}

.face .canva {
    font-size: 48px;
    font-weight: normal;
    letter-spacing: 1px;
    text-align: center;
    font-family: 'Pacifico', cursive;
    background: linear-gradient(90deg, #00C4CC, #8A3FFC);
    margin: 0px;
    color: white;
}

.uber-sugest {
    color: #F16332;
}


/* Loader Style */

.loader {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    background: #111827;
    color: #F16332;
    z-index: 999;
    height: 100vh;
    overflow: hidden;
    display: none;
    justify-content: center;
    align-items: center;
}

.load {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #F16332;
    padding: 20px;
    animation: spin 1s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.grey {
    background: #111827;
    padding: 28px;
    border-radius: 50%;
    position: relative;
    z-index: 99;
}

.blue {
    position: absolute;
    top: 0px;
    border-radius: 5px;
    padding: 20px;

    z-index: 1;
    background: #00C4CC;
    height: 30px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



.items {
    width: 100%;
    height: auto;
    padding: 37px;
}

.items ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    width: 100%;
    justify-content: center;
}

.items ul li {
    color: #F16332;
    font-weight: 500;
    text-transform: uppercase;
    transition: .3s;
    padding: 10px 15px;
    border-radius: 20px;
    background: #fff;
    margin: 10px;
    cursor: pointer;
}

.items ul li:hover {
    background: #F16332;
    color: #fff;
}




.ham {
    position: fixed;
    top: 0;
    left: 0;
    background: #111827;
    color: white;
    width: 100vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease-in-out;
    transform: translateY(-100%);
    z-index: 1000;
}

.ham a {
    padding: 17px;
    text-decoration: none;
    color: white;
    width: 100%;
    text-align: center;
    transition: all .4s;
}

.ham a:hover {
    color: #F16332;
}

.show {
    transform: translateY(0%);
}


.fa-xmark {
    position: fixed;
    right: 30px;
    top: 10px;
}


.whatsapp {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 70px;
    height: 70px;
    color: white;
    background: #32F269;
    border-radius: 50%;
    transition: all .4s;
    display: flex;
    justify-content: center;
    align-items: center;
}


.whatsapp img {
    width: 70%;
    height: 70%;
    cursor: pointer;
    filter: brightness(0) saturate(100%) invert(99%) sepia(4%) saturate(8%) hue-rotate(119deg) brightness(103%) contrast(100%);
}

.whatsapp:hover {
    transform: scale(1.1);
}

.our-product {
    transition: all 0.4s ease;
}

.card .zeroscale,
.our-product.zeroscale {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.card .scaleshow,
.our-product.scaleshow {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}
.face .black-filter{
    filter: invert(0%) sepia(0%) saturate(18%) hue-rotate(83deg) brightness(96%) contrast(101%);
}
