@import url("https://fonts.googleapis.com/css2?family=Changa:wght@200..800&display=swap");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Changa", sans-serif;
    text-align: center;
}
html {
    scroll-behavior: smooth;
}
ul li {
    list-style: none;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -27px;
    padding: 0 15px;
    height: 60px;
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 99999;
}
header img {
    width: 100%;
}
a {
    text-decoration: none;
    color: #000;
}
.cart_header {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 22px;
    color: #333;
}

.cart_header i {
    font-size: inherit;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(10%, -20%);
    background: tomato;
    color: #fff;
    padding: 3px 6px;
    border-radius: 50%;
    font-size: 13px;
    font-weight: bold;
    line-height: 1;
    min-width: 18px;
    text-align: center;
}

.add_btn {
    background: #000;
    color: #fff;
    padding: 2px 10px;
    border-radius: 7px;
    font-weight: 600;
}
.top-header {
    background-image: linear-gradient(
        to right,
        #000 0%,
        #2e2e2e 51%,
        #222 100%
    );
    height: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 150;
}
.experts {
    color: #000;
    background-image: linear-gradient(to right, #fff 0%, #ddd 51%, #eee 100%);
    display: inline-block;
    margin: 4px;
    padding: 1px 5px;
    border-radius: 8px;
    z-index: 120;
    font-weight: 600;
    font-size: 18px;
    font-size: 20px;
}

@media (max-width: 768px) {
    .experts {
        font-size: 15px;
    }
    .top-header {
        background-color: #000;
        height: 40px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 150;
    }
}

.kitchen-loader {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.pot {
    width: 100px;
    height: 60px;
    background-image: linear-gradient(
        to right,
        #000 0%,
        #2e2e2e 51%,
        #222 100%
    );
    border-radius: 10px 10px 20px 20px;
    position: relative;
    animation: bounce 1s infinite;
}

.pot::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 20px;
    width: 60px;
    height: 10px;
    background-image: linear-gradient(
        to right,
        #000 0%,
        #2e2e2e 51%,
        #222 100%
    );
    border-radius: 10px;
}

.smoke {
    position: absolute;
    top: -30px;
    left: 45%;
    width: 10px;
    height: 10px;
    background: #000000;
    border-radius: 50%;
    animation: smokeUp 2s infinite;
    opacity: 0.7;
}

.smoke.delay {
    animation-delay: 1s;
}

.kitchen-loader p {
    margin-top: 20px;
    font-size: 20px;
    background-image: linear-gradient(
        to right,
        #000 0%,
        #2e2e2e 51%,
        #222 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    animation: fadeIn 2s ease-in-out infinite;
}

@keyframes smokeUp {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    100% {
        transform: translateY(-40px) scale(1.5);
        opacity: 0;
    }
}

@keyframes bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes fadeIn {
    0%,
    100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

.SignUp {
    background-image: linear-gradient(
        to right,
        #000 0%,
        #2e2e2e 51%,
        #222 100%
    );
}
.SignUp {
    margin: 10px;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
    display: block;
    font-weight: 600;
}

.SignUp:hover {
    background-position: right center;
    color: #fff;
    text-decoration: none;
}
.user-btn {
    font-size: 30px;
}
.installment_btn {
    color: #fff;
    display: inline-block;
    margin: 0 10px;
    padding: 5px 15px;
    font-weight: 600;
    font-size: 17px;
    border-radius: 7px;
    background-image: linear-gradient(
        to right,
        #000 0%,
        #2e2e2e 51%,
        #222 100%
    );
}
@media (max-width: 768px) {
    .installment_btn {
        padding: 5px 8px;
        font-size: 14px;
    }
}
/* Hero Section */
.hero_section {
    height: calc(100vh - 60px);
    background-image: url(../images/kmbg.jpg);
    background-size: cover;
}
.hero_section::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
    background-color: rgba(228, 219, 219, 0.2);
    z-index: 0;
}
@media (max-width: 768px) {
    .hero_section::before {
        top: 40px;
    }
}
.hero_section {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}

.kitchen_hero {
    height: calc(100vh - 60px);
    background-image: url(https://i.postimg.cc/KcQ4MHmv/kitbg.jpg);
    background-size: cover;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.kitchen_hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background-color: rgba(228, 219, 219, 0.2);
    z-index: 1;
}
.kitchen_hero_section {
    color: #fff;
    font-weight: 600;
    z-index: 11;
}
.kitchen_hero_title {
    color: #222;
    background-color: #ffffff8e;
    display: inline-block;
    border-radius: 8px;
    padding: 2px 15px;
}
.scroll-down {
    text-align: center;
    font-size: 30px;
    color: #222;
    cursor: pointer;
    animation: bounceDown 2s infinite;
    margin-top: 30px;
    position: absolute;
    bottom: 5vh;
}
@media (max-width: 768px) {
}
@keyframes bounceDown {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}
/* */

.appliances_hero {
    height: calc(100vh - 60px);
    background-image: url(/KitchenMeter/public/images/kitbgsec.jpg);
    background-size: cover;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.appliances_hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background-color: rgba(228, 219, 219, 0.2);
    z-index: 1;
}
.appliances_hero_section {
    color: #fff;
    font-weight: 600;
    z-index: 11;
}
.appliances_hero_title {
    color: #222;
    background-color: #ffffff8e;
    display: inline-block;
    border-radius: 8px;
    padding: 2px 15px;
}

/**/
.hero_title {
    color: #000000;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff,
        1px 1px 0 #fff, 2px 2px 5px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.hero_left {
    width: 300px;
}
.hero_right {
    text-align: center;
    width: 400px;
    color: #222;
    z-index: 1000;
}
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.floating-img {
    animation: float 2s ease-in-out infinite;
    width: 100%;
    margin: -130px 0;
}

@media (max-width: 720px) {
    .hero_section {
        flex-direction: column-reverse;
    }
    .hero_right {
        width: 330px;
    }
}

/* info Section */
.section_title {
    background-image: linear-gradient(
        to right,
        #000 0%,
        #2e2e2e 51%,
        #222 100%
    );
    padding: 10px;
    color: #fff;
    font-size: 30px;
}

.info_cards {
    height: 100%;

    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.info_card {
    margin: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    width: 300px;
    height: 277px;
    border: 1px solid #eee;
    border-radius: 10px;
    position: relative;
    color: #fff;
}
.info_card img {
    width: 300px;
    border-radius: 8px;
}
.info_card h3 {
    position: absolute;
    bottom: 20px;
}
/*  */
.image-stack {
    position: relative;
    width: 400px;
    margin-left: 10%;
    margin-top: -350px;
}

.image-stack img {
    position: absolute;
    width: 60%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    border: 2px solid #222;
}

.image-stack img:nth-child(1) {
    top: -40px;
    left: -70px;
    z-index: 3;
}

.image-stack img:nth-child(2) {
    top: 100px;
    left: 70px;
    z-index: 4;
}

.image-stack img:nth-child(3) {
    top: 200px;
    left: -70px;
    z-index: 5;
}

.image-stack img:hover {
    transform: scale(1.05);
    z-index: 4;
}

@media (max-width: 920px) {
    .image-stack {
        display: none;
    }
    .section_title {
        font-size: 16px;
    }
}

.features_section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row-reverse;
}
.features_items {
    width: 750px;
    padding: 0 25px;
}
.feature-item {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    margin-bottom: 25px;
    color: #444;
}

.feature-item i {
    font-size: 60px;
    color: #ea5b6f;
    margin-left: 15px;
}

.feature-text {
    color: #222;
    font-size: 20px;
    text-align: right;
}

.feature_title {
    text-align: right;
}
.items_paragraph {
    font-size: 18px;
    text-align: right;
}

@media (max-width: 768px) {
    .items_paragraph {
        font-size: 14px;
        text-align: right;
    }
}

/* input */
.booking_form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
        rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    width: 90%;
    margin: 1% auto;
}
.form-group > input,
.form-group > select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    outline: none;
    border: none;
    background: none;
    border: 1px solid #eee;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    color: #000;
}
.inpt_txt {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
}
button[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
button[type="submit"]:hover {
    background-color: #fff;
    color: #222;
    border: 1px solid #333;
}
@media (max-width: 480px) {
    form {
        padding: 15px;
    }
    .inpt_txt {
        font-size: 14px;
    }
    button[type="submit"] {
        font-size: 14px;
    }
}

::placeholder {
    color: #000;
}
.title_form,
.feature-item {
    background-image: linear-gradient(
        to right,
        #000 0%,
        #2e2e2e 51%,
        #222 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
.why_us {
    text-align: right;
    padding: 2px 10px;
    color: #222;
    border-right: 5px solid;
    margin: 10px;
}

.team-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
    position: relative;
    display: inline-block;
}

.team-section h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background-color: #222;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.team-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.team-card {
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
    max-width: 260px;
    transition: 0.3s;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.team-card .info {
    padding: 20px;
}

.team-card .info h3 {
    margin: 0;
    font-size: 20px;
    color: #222;
}

.team-card .info p {
    margin: 5px 0 0;
    color: #777;
    font-size: 14px;
}

@media (max-width: 768px) {
    .team-card {
        max-width: 100%;
    }
}
/*  */

.testimonial-section {
    background: linear-gradient(135deg, #232526, #414345);
    padding: 80px 20px;
    color: white;
    text-align: center;
    font-family: "Cairo", sans-serif;
}

.testimonial-wrapper {
    max-width: 800px;
    margin: auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.testimonial-slider {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 100px;
    background: rgba(255, 255, 255, 0.06);
    box-sizing: border-box;
}

.testimonial-card p {
    font-size: 22px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
}

.testimonial-card p::before,
.testimonial-card p::after {
    content: '"';
    font-size: 48px;
    color: #000;
    position: absolute;
}

.testimonial-card p::before {
    top: -20px;
    left: -10px;
}

.testimonial-card p::after {
    bottom: -20px;
    right: -10px;
}

.testimonial-card span {
    display: block;
    text-align: left;
    font-size: 16px;
    color: #ccc;
}

.testimonial-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #000;
    border: none;
    font-size: 26px;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 2;
    transition: background 0.3s ease;
}

.testimonial-btn:hover {
    background: #ddd;
}

.testimonial-prev {
    left: 10px;
}

.testimonial-next {
    right: 10px;
}
.testimonial-client {
    padding: 10px;
    margin-bottom: 15px;
    font-size: 30px;
}
/*  */
.main_footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 20px 20px;
    direction: rtl;
    font-family: "Cairo", sans-serif;
}
.note {
    text-align: right;
    border-right: 5px solid;
    background-color: #00000048;
    padding: 10px 15px;
}
.footer_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer_box {
    flex: 1 1 250px;
}

.footer_box h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 20px;
}

.footer_box p {
    font-size: 15px;
    text-align: right;
    line-height: 1.7;
    color: #ccc;
}

.footer_box ul {
    list-style: none;
    padding: 0;
}

.footer_box ul li {
    margin-bottom: 10px;
    text-align: right;
}

.footer_box ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer_box ul li a:hover {
    color: #fffd;
}

.social_links a {
    display: block;
    margin-bottom: 10px;
    text-align: right;
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.social_links a:hover {
    color: #fff;
}

.footer_bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #888;
    border-top: 1px solid #333;
    padding-top: 15px;
}
