/*=============== GOOGLE FONTS ===============*/

@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Montserrat:wght@400;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/*=============== VARIABLES CSS ===============*/

:root {
    --header-height: 3.5rem;
    /*========== Colors ==========*/
    --hue: 230;
    --first-color: #d66a1f;
    --first-color-dark: #a94408;
    --first-color-light: #ff9b52;
    --button-color: #141414;
    --button-color-alt: #1f1f1f;
    --gradient-color: linear-gradient(135deg, #0d0d0d 0%, #2a1207 45%, #d66a1f 100%);
    --gradient-color2: linear-gradient(90deg, #ff9b52 0%, #d66a1f 45%, #7a2e00 100%);
    --title-color: #f5d2b8;
    --text-color: #b6a79d;
    --text-color-light: #7e746e;
    /* --body-color: hsl(0, 2%, 9%); */
    --body-color: #050505;
    --container-color: #111111;
    --white-color: #ffffff;
    --border-color: rgba(214, 106, 31, .18);
    --ant-success-color: rgba(255, 255, 255, 0.1);
    --ant-primary-color: rgb(18, 18, 18);
    /* --ant-success-color: rgba(255, 255, 255, 0.1); */
    --shadow-img: drop-shadow(0 12px 24px hsla(0, 0%, 0%, .4));
    --shadow-circle: 0 12px 24px hsla(0, 0%, 0%, .4);
    --shadow-button: 0 -4px 8px hsla(0, 0%, 0%, .3);
    --shadow-card: 0 -8px 24px hsla(0, 0%, 0%, .3);
    --shadow-glow: 0 0 35px rgba(214, 106, 31, .28);
    --shadow-text: 0 2px 4px var(--first-color-darken);
    /*========== Font and typography ==========*/
    --body-font: "Montserrat", sans-serif;
    --second-font: "Inter", sans-serif;
    --biggest-font-size: 3rem;
    --bigger-font-size: 2rem;
    --big-font-size: 2rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    /* --loading-font-size: 2rem; */
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;
    --tiny-font-size: .625rem;
    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-bold: 700;
    /*========== Margenes Bottom ==========*/
    --mb-0-5: .5rem;
    --mb-0-75: .75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 2rem;
    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
}

@media screen and (min-width: 768px) {
     :root {
        --h6-font-size: 1.7rem;
    }
}

@media screen and (min-width: 1150px) {
     :root {
        --big-font-size: 3.5rem;
        --biggest-font-size: 5rem;
        --bigger-font-size: 3rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
    }
}


/*========== Variables Dark theme ==========*/

body.dark-theme {
    --first-color: #c75b16;
    --first-color-dark: #8f3500;
    --first-color-light: #ffb27c;
    --button-color: hsl(0, 0%, 17%);
    --button-color-alt: hsl(0, 0%, 21%);
    --gradient-color: linear-gradient(135deg, #ffffff 0%, #fff3ea 50%, #ffd4b3 100%);
    --gradient-color2: linear-gradient(90deg, #ffb27c 0%, #d66a1f 100%);
    --title-color: #1e0f05;
    --text-color: #5a4b43;
    --text-color-light: #7d6c62;
    /* --body-color: hsl(0, 2%, 9%); */
    --body-color: #fffaf7;
    --container-color: #ffffff;
    --border-color: rgba(199, 91, 22, .18);
    --ant-success-color: rgba(255, 255, 255, 0.1);
    --ant-primary-color: rgb(18, 18, 18);
    /* --ant-success-color: rgba(255, 255, 255, 0.1); */
    --shadow-img: drop-shadow(0 12px 24px hsla(0, 0%, 0%, .4));
    --shadow-circle: 0 12px 24px hsla(0, 0%, 0%, .4);
    --shadow-button: 0 -4px 8px hsla(0, 0%, 0%, .3);
    --shadow-card: 0 -8px 24px hsla(0, 0%, 0%, .3);
    --shadow-text: 0 2px 4px var(--first-color-darken);
}


/*=============== BASE ===============*/

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    direction: ltr;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
}

h1,
h2,
h3,
h4 {
    color: var(--title-color);
    font-family: var(--second-font);
    font-weight: var(--font-regular);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}


/*=============== REUSABLE CSS CLASSES ===============*/

.container {
    max-width: 1120px;
    margin-inline: 1.5rem;
}

.containercard {
    max-width: 1024px;
    margin-left: var(--mb-1-5);
    margin-right: var(--mb-1-5);
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.section {
    padding-block: 5rem 1rem;
}

.section__title {
    font-size: var(--bigger-font-size);
    font-family: var(--second-font);
    margin-bottom: 1.5rem;
    text-align: center;
}

.section__title-center {
    font-size: var(--h2-font-size);
    margin-bottom: var(--mb-2);
    line-height: 140%;
    text-align: center;
}

.section__subtitle {
    display: block;
    text-align: center;
    font-size: var(--small-font-size);
    margin-bottom: var(--mb-3);
}

section,
.pricing__card,
.testimonial__card,
.accordion__item,
.containere,
.about__img,
.care__img,
.nutrantion__img {
    will-change: transform, opacity;
}

html,
body {
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow-x: hidden;
}

body::-webkit-scrollbar,
html::-webkit-scrollbar {
    width: 0;
    display: none;
}


/*=============== HEADER & NAV ===============*/

.header {
    border-radius: 4rem;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    /* background-color: var(--body-color); */
    border-bottom: 1px solid rgba(214, 106, 31, .35);
    box-shadow: 0 0 25px rgba(214, 106, 31, .08);
    z-index: var(--z-fixed);
}

.logo img {
    height: 3.5rem;
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
    letter-spacing: 3px;
}

.nav__toggle,
.nav__close {
    font-size: 1.25rem;
    color: var(--first-color);
    cursor: pointer;
}


/* Navigation for mobile devices */

@media screen and (max-width:1023px) {
    .nav__menu {
        position: fixed;
        top: -100%;
        left: 0;
        background-color: var(--body-color);
        border-bottom: 1px solid var(--text-color);
        width: 100%;
        padding-block: 4.5rem 3.5rem;
        transition: top .4s;
        /* background: linear-gradient(rgb(0 0 0 / 70%), rgba(0, 0, 0, 0.7)), url(../images/testo/logo.png) no-repeat;
        background-attachment: fixed;
        background-size: contain;
        background-position: center; */
    }
}

.nav__list {
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    text-align: center;
    align-items: center
}

.nav__link {
    color: var(--text-color);
    font-weight: var(--font-bold);
    letter-spacing: 3px;
    transition: color .3s;
}

.nav__link:hover {
    color: var(--title-color);
}

.nav__social {
    display: flex;
    justify-content: center;
    column-gap: 1rem;
    margin-top: 3rem;
}

.nav__social-link {
    font-size: 1.5rem;
    color: var(--text-color);
    transition: color .4s;
}

.nav__social-link:hover {
    color: var(--title-color);
}

.nav__close {
    position: absolute;
    top: 1.15rem;
    right: 1.5rem;
}

.nav__buttons {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

.change-theme {
    font-size: 1.25rem;
    color: var(--first-color);
    cursor: pointer;
    transition: color .3s;
}


/* Show menu */

.show-menu {
    top: 0;
}


/* Add shadow header */

.blur-header::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: hsla(0, 0%, 0%, .3);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    top: 0;
    left: 0;
    z-index: -1;
}


/* Active link */


/*========== BOOKS NAV SPECIAL ==========*/

.nav__link--books {
    position: relative;
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 1.4rem;
    border-radius: 5rem 0;
    background: var(--gradient-color2);
    color: var(--white-color);
    font-weight: 700;
    letter-spacing: 2px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 0 0 rgba(214, 106, 31, 0), 0 0 25px rgba(214, 106, 31, .35);
    transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}


/* Glow Layer */

.nav__link--books::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient( 120deg, transparent 20%, rgba(255, 255, 255, .35) 50%, transparent 80%);
    transform: translateX(-140%);
    transition: transform .8s ease;
}


/* Hover */

.nav__link--books:hover {
    color: white;
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 0 20px rgba(214, 106, 31, .45), 0 0 45px rgba(214, 106, 31, .28), 0 0 70px rgba(214, 106, 31, .18);
    filter: brightness(1.08);
}

.nav__link--books:hover::before {
    transform: translateX(140%);
}


/* Icon */

.nav__link--books i {
    font-size: 1rem;
}


/* Mobile */

@media screen and (max-width:1023px) {
    .nav__item--books {
        display: flex;
        justify-content: center;
    }
    .nav__link--books {
        width: fit-content;
    }
}


/*=============== HOME ===============*/

.home {
    height: 100vh;
    padding: 3.5rem 0 2rem;
}


/* .home2{
  background-image:  url(../img/personaledit.png); 
   background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
 
} */

.home__img {
    /* background-attachment: fixed; */
    background-image: url(../images/testo/homeimagee13.jpeg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-fit: cover;
    object-position: 50%;
}

.home__img2 {
    /* background: linear-gradient(rgb(4 9 30 / 21%), rgb(0 0 0)), url(../images/testo/background2.png); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50%;
    display: block;
}

.home__img {
    display: block;
}

.home__container {
    position: relative;
    row-gap: 2rem;
    z-index: 1;
}

.home__title {
    font-size: var(--big-font-size);
    line-height: 140%;
    margin-bottom: var(--mb-1);
    color: var(--white-color);
}

.home__description {
    margin-bottom: var(--mb-2-5);
    color: var(--text-color-light);
}

.home__social {
    display: none;
    position: absolute;
    top: 2rem;
    right: -1rem;
    /* display: grid; */
    justify-items: center;
    row-gap: 3.5rem;
}

.home__social-follow {
    font-weight: var(--font-medium);
    font-size: var(--smaller-font-size);
    color: var(--text-color-light);
    position: relative;
    transform: rotate(90deg);
}

.home__social-follow::after {
    content: '';
    position: absolute;
    width: 1rem;
    height: 2px;
    background-color: var(--text-color-light);
    right: -45%;
    top: 50%;
}

.home__social-links {
    display: inline-flex;
    flex-direction: column;
    row-gap: .25rem;
}

.home__social-link {
    font-size: 1rem;
    color: var(--text-color-light);
    transition: .3s;
}

.home__social-link:hover {
    transform: translateX(.25rem);
}

.home__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.home__video--desktop {
    display: block;
}

.home__img--mobile {
    display: none;
}

.video-container {
    /* position: relative; */
    width: 100%;
    max-width: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 65%);
    z-index: 1;
    /* يجب أن يكون فوق الفيديو */
}

#video-file {
    border-radius: 41px;
    border: 5px solid var(--my-color);
}


/*=============== home3 ===============*/

.home3 {
    position: relative;
}

.home__container3 {
    row-gap: 3rem;
    padding-top: 2rem;
}

.home__img3 {
    border-radius: 5rem 0;
    border: 5px solid var(--first-color);
    width: 320px;
    justify-self: center;
}

.home__data3 {
    text-align: center;
}

.home__title3 {
    font-size: var(--biggest-font-size);
    font-family: var(--second-font);
    margin-bottom: 1rem;
}

.home__title3 img {
    width: 40px;
}

.home__title3 div {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: .5rem;
}

.home__description3 {
    padding: 0 1rem;
    margin-bottom: 2.5rem;
}

.home__leaf-1,
.home__leaf-2 {
    position: absolute;
    opacity: .2;
}

.home__leaf-1 {
    width: 80px;
    top: 8rem;
    left: -1rem;
    transform: rotate(90deg);
}

.home__leaf-2 {
    width: 100px;
    right: -2rem;
    bottom: 1rem;
    transform: rotate(-15deg);
}


/*=============== Button ===============*/

.button {
    background: var(--gradient-color);
    padding: .75rem 1.5rem;
    border-radius: 4rem 0;
    color: var(--white-color);
    font-weight: var(--font-medium);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: .5rem;
    transition: box-shadow .4s;
    border-left: 4px solid var(--first-color);
}

.button i {
    font-size: 2rem;
    font-weight: initial;
    color: var(--first-color);
}

.button:hover {
    box-shadow: 0 0 18px rgba(214, 106, 31, .25), 0 0 35px rgba(214, 106, 31, .12);
    transform: translateY(-3px);
}


/*=============== RECIPE ===============*/

.wrapper {
    width: 100%;
    max-width: 1024px;
    /* أقصى عرض يمكن أن يأخذه العنصر wrapper */
    margin: auto;
    /* لتوسيط العنصر أفقياً */
    margin-top: 3rem;
    /* تخصيص المسافة العمودية بين القسمين */
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

.containere {
    width: 28vmin;
    height: 28vmin;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 1em 0;
    position: relative;
    font-size: 18px;
    border-radius: 4rem 0;
    /* background: #21242b; */
    border-top: 6px solid var(--first-color);
    border-bottom: 6px solid var(--first-color);
}

.containere i {
    color: var(--first-color);
    font-size: 2.5em;
    text-align: center;
}

span.num {
    color: var(--title-color);
    display: grid;
    place-items: center;
    font-weight: 600;
    font-size: 3em;
}

span.text {
    color: var(--title-color);
    font-size: 1.1em;
    text-align: center;
    pad: 0.7em 0;
    font-weight: 400;
    line-height: 0;
}


/*=============== CARE ===============*/


/* .care{
  background-color: firebrick;
}
.care__container{
  row-gap: 3rem;
  padding-block: 1rem 2rem;
}
.care__list{
  display: grid;
  row-gap: 1.25rem;
}
.care__item{
  display: flex;
  column-gap: .75rem;
  align-items: center;
}
.care__item i {
  font-size: 1.5rem;
  color: var(--first-color);
}
.care__img{
  width: 320px;
  filter: var(--shadow-img);
  justify-self: center;
} */

.care__container {
    padding-top: 2rem;
    row-gap: 2rem;
}

.care__img {
    /* width: 270px; */
    /* filter: drop-shadow(var(--shadow-img)); */
    justify-self: center;
    border-radius: 5rem 0;
    border: 5px solid var(--first-color);
    order: -1;
    width: 320px;
    /* justify-self: center; */
}

.care__list {
    display: grid;
    row-gap: 1rem;
}

.care__item {
    display: flex;
    column-gap: .5rem;
    align-items: flex-start;
}

.care__item i {
    font-size: 1.5rem;
    color: var(--first-color);
}


/* ============================projects================ */

.section__border {
    border-bottom: 1px solid var(--title-color);
    padding-bottom: 3.5rem;
}

.projects__container {
    overflow: initial;
}

.projects__content {
    text-align: center;
    display: grid;
    justify-content: center;
}

.projects__img {
    width: 320px;
    border-radius: .75rem;
    margin-bottom: 1.25rem;
}

.projects__subtitle {
    font-size: var(--small-font-size);
    color: var(--text-color);
}

.projects__title {
    font-size: var(--h2-font-size);
    margin-bottom: 1.25rem;
    margin: .5rem 0 1.25rem;
}

.projects__button {
    display: inline-flex;
    align-items: center;
    column-gap: .5rem;
    color: var(--title-color);
    font-size: var(--small-font-size);
}

.projects__button i {
    font-size: 1rem;
    transition: trasform .3s;
}

.projects__button:hover i {
    transform: translateX(.25rem);
}


/* swiper */

.projects__container .swiper-button-prev::after,
.projects__container .swiper-button-next::after {
    content: '';
}

.projects__container .swiper-button-prev,
.projects__container .swiper-button-next {
    width: initial;
    height: initial;
    margin: initial;
    font-size: 2.5rem;
    color: var(--title-color);
}

.projects__container .swiper-button-prev {
    left: -1rem;
    top: 21.5rem;
}

.projects__container .swiper-button-next {
    right: -1rem;
    top: 21.5rem;
}

.projects__container .swiper-slide {
    margin-bottom: 4.5rem;
}

.projects__container .swiper-pagination-bullets {
    bottom: 0;
}

.projects__container .swiper-pagination-bullet {
    background-color: var(--text-color);
    opacity: initial;
}

.projects__container .swiper-pagination-bullet-active {
    background-color: var(--title-color);
    /* opacity: initial; */
}


/*=============== ABOUT ===============*/

.about__container {
    row-gap: 4rem;
}

.about__data {
    position: relative;
    text-align: center;
}

.about__description {
    margin-bottom: 3rem;
}

.about__img {
    border-radius: 5rem 0;
    border: 5px solid var(--first-color);
    order: -1;
    width: 320px;
    justify-self: center;
    box-shadow: 0 0 40px rgba(214, 106, 31, 0.25), 0 0 80px rgba(214, 106, 31, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about__img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 60px rgba(214, 106, 31, 0.35), 0 0 120px rgba(214, 106, 31, 0.2);
}

.mk {
    display: flex;
    flex-direction: column-reverse;
}


/*=============== ACCORDION ===============*/

.tt {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/testo/homeimagee4.jpeg) no-repeat;
    background-size: cover;
    background-position: center top;
    /* background-attachment: fixed; */
    object-fit: cover;
}

.accordion {
    display: grid;
    align-content: center;
    height: 100vh;
}

.accordion__container {
    display: grid;
    border-radius: 4rem 0;
    row-gap: .75rem;
    padding: 2rem 1rem;
    background-color: #202020;
    /* border-radius: .5rem; */
    box-shadow: 0 12px 32px rgba(51, 51, 51, 0.1);
}

.accordion__title {
    font-size: var(--small-font-size);
    color: var(--white-color);
    font-weight: 400;
    margin-top: .15rem;
    transition: .2s;
}

.accordion__header {
    display: flex;
    column-gap: .5rem;
    padding: 1.25rem 1.25rem 1.25rem 1rem;
    cursor: pointer;
}

.accordion__description {
    color: aliceblue;
    padding: 0 1.25rem 1.25rem 3rem;
    font-size: var(--smaller-font-size);
}

.accordion__icon {
    font-size: 1.5rem;
    height: max-content;
    color: var(--title-color);
    transition: .3s;
}

.accordion__item {
    box-shadow: 0 2px 6px rgba(38, 38, 38, 0.1);
    background-color: var(--container-color);
    border-radius: .25rem;
    position: relative;
    border-radius: 4rem 0;
    border-left: 4px solid var(--first-color);
    transition: all .25s ease;
}


/* .accordion__item::after {
  content: '';
  background-color: var(--first-color);
  width: 5px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: .25rem 0 0 .25rem;
} */

.accordion__item:nth-child(1) {
    background: var(--gradient-color);
}

.accordion__item:nth-child(1)::after {
    background-color: var(--first-color);
}

.accordion__item:nth-child(2) {
    background: var(--gradient-color);
}

.accordion__item:nth-child(2)::after {
    background-color: var(--first-color);
}

.accordion__item:nth-child(3) {
    background: var(--gradient-color);
}

.accordion__item:nth-child(3)::after {
    background-color: var(--first-color);
}

.accordion__item:nth-child(4) {
    background: var(--gradient-color);
}

.accordion__item:nth-child(4)::after {
    background-color: var(--first-color);
}

.accordion__item:nth-child(5) {
    background: var(--gradient-color);
}

.accordion__item:nth-child(5)::after {
    background-color: var(--first-color);
}

.accordion__content {
    overflow: hidden;
    height: 0;
    transition: all .25s ease;
}


/*Rotate icon and add font weight to titles*/

.accordion-open .accordion__icon {
    transform: rotate(45deg);
}

.accordion-open .accordion__title {
    font-weight: 600;
}


/*=============== PRICING ===============*/

.pricing__container {
    grid-template-columns: 285px;
    justify-content: center;
    row-gap: 2rem;
}

.pricing__card,
.pricing__shape,
.pricing__list {
    display: grid;
}

.pricing__card {
    row-gap: 2rem;
    border: 5px solid var(--first-color);
    border-radius: 5rem 0;
    /* object-fit: cover; */
    /* background-color: hsla(79, 6%, 64%, .07); */
    padding: 2rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: .4s;
    backdrop-filter: blur(3px);
}

.pricing__badge {
    position: absolute;
    top: 20px;
    right: -40px;
    background: var(--first-color);
    color: black;
    padding: .5rem 3rem;
    transform: rotate(45deg);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.popular {
    background: #ffcc00;
    color: black;
}

.ultimate {
    background: #ff5e00;
    color: white;
}

.pricing__small {
    color: #d1d1d1;
    font-size: .9rem;
    margin-top: -.5rem;
}

.pricing__popular {
    transform: scale(1.05);
    border-color: #ffcc00;
}

.pricing__popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing__ultimate {
    border-color: #ff5e00;
}

.pricing__bottom h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pricing__bottom p {
    max-width: 700px;
    margin: auto;
    color: #cfcfcf;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.pricing__bottom {
    margin-top: 5rem;
    text-align: center;
}

.pricing__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .4);
}

.article1 {
    background-image: linear-gradient(rgba(4, 9, 30, 0.8), rgba(0, 0, 0, 0.788)), url(../images/testo/4.jpg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    object-fit: cover;
}

.article2 {
    background-image: linear-gradient(rgba(4, 9, 30, 0.8), rgba(0, 0, 0, 0.788)), url(../images/testo/3.jpg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    object-fit: cover;
}

.article3 {
    background-image: linear-gradient(rgba(4, 9, 30, 0.8), rgba(0, 0, 0, 0.788)), url(../images/testo/13.jpeg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    object-fit: cover;
}

.article11 {
    background-image: linear-gradient(rgba(4, 9, 30, 0.8), rgba(0, 0, 0, 0.788)), url(../images/testo/blackpp2.jpeg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    object-fit: cover;
}

.article21 {
    background-image: linear-gradient(rgba(4, 9, 30, 0.8), rgba(0, 0, 0, 0.788)), url(../images/testo/last1.jpeg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    object-fit: cover;
}

.article31 {
    background-image: linear-gradient(rgba(4, 9, 30, 0.8), rgba(0, 0, 0, 0.788)), url(../images/testo/blackpp4.jpeg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    object-fit: cover;
}

.pricing__img {
    width: 35px;
}

.pricing__shape {
    width: 60px;
    height: 60px;
    background-color: var(--first-color);
    border-radius: 2rem 0;
    place-items: center;
    margin-bottom: 1rem;
}

.pricing__title {
    font-size: var(--h3-font-size);
    color: white;
    margin-bottom: 1rem;
}

.pricing__number {
    color: #cf480a;
    font-size: var(--h1-font-size);
    FONT-WEIGHT: 700;
}

.pricing__list {
    row-gap: 1rem;
}

.pricing__item {
    color: white;
    display: flex;
    column-gap: .5rem;
    align-items: center;
    font-size: var(--small-font-size);
}

.pricing__item i {
    font-size: 1.25rem;
    color: var(--first-color);
}

.pricing__item-opacity {
    opacity: .3;
}

.pricing__button {
    background-color: var(--title-color);
}

.pricing__button:hover {
    background-color: var(--title-color);
}

.pricing__card-active {
    background-color: var(--first-color);
    border: 2px solid var(--first-color);
}

.pricing__card-active .pricing__shape {
    background-color: var(--first-color);
}

.pricing__card-active .pricing__item i {
    color: var(--first-color);
}

.pricing__card-active .pricing__title,
.pricing__card-active .pricing__number,
.pricing__card-active .pricing__item {
    color: white;
}

.pricing__description {
    max-width: 650px;
    margin: 1rem auto 3rem;
    text-align: center;
    color: white;
    line-height: 1.8;
    font-size: 1rem;
}


/* bbok englisj */


/*=============== BOOK MODAL ===============*/

.book__modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: .4s;
}

.book__modal.show-modal {
    opacity: 1;
    pointer-events: initial;
}

.book__modal-card {
    width: 90%;
    max-width: 450px;
    background: #111;
    border: 2px solid var(--first-color);
    border-radius: 2rem;
    padding: 3rem 2rem;
    position: relative;
    text-align: center;
    animation: popup .4s ease;
}

.book__modal-title {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.book__modal-description {
    color: #cfcfcf;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.book__modal-buttons {
    display: grid;
    gap: 1rem;
}

.book__btn {
    padding: 1rem;
    border-radius: 1rem;
    font-weight: 700;
    transition: .4s;
    text-decoration: none;
}

.book__btn:hover {
    transform: translateY(-5px);
}

.arabic {
    background: var(--first-color);
    color: black;
}

.english {
    background: #ff5e00;
    color: white;
}

.book__modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

@keyframes popup {
    0% {
        transform: scale(.7);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/*=============== TESTIMONIAL ===============*/


/* .testimonial{
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ccc;
  overflow: hidden;
}
.testimonial .swiper-container{
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}
.testimonial .swiper-slide{
  background-position: center;
  background-size: cover;
  width: 300px;
  height: 300px;
} */


/*=============== TESTIMONIAL2 ===============*/


/* .testa{
  background-color: #F1F2EB;
  font-family: "Roboto";
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
 }
 .testimonial {
  width: 500px;
  height: 80px;
  background-color: #1C2321;
  border-radius: 3px;
  overflow: hidden;
}

.testimonial__image {
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
  border-right: 10px solid black;
  animation: displayTestimonial 3s  infinite;
}

.testimonial__text {
  display: inline-block;
  margin: 0;
  color: #FFFFFF;
  transform: translateY(50px);
  animation: displayTestimonial 3s  infinite;
}

@keyframes displayTestimonial {
  0% { transform: translateY(80px); }
  40% { transform: translateY(0px); }
  60% { transform: translateY(0px); }
  100% { transform: translateY(80px); }
} */


/*=============== Testimonial===============*/

.vv {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/testo/homeimagee1.jpeg) no-repeat;
    background-size: cover;
    background-position: center top;
    /* background-attachment: fixed; */
    object-fit: cover;
}

.testimonial__card {
    background: var(--gradient-color);
    padding: 1.25rem 1.5rem;
    border-radius: 4rem 0;
    margin-bottom: 3rem;
}

.testimonial__img {
    width: 40px;
    height: 40px;
    border-radius: 2rem;
    margin-bottom: 1rem;
}

.testimonial__name {
    color: white;
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    margin-bottom: .25rem;
}

.testimonial__description {
    color: var(--white-color);
    font-size: var(--small-font-size);
}

.swiper-pagination-bullet-active {
    color: var(--first-color);
}


/*=============== Testimonial===============*/

.calc {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}

.bmr-calculator {
    overflow: hidden;
    background: linear-gradient(to bottom, var(--body-color), hsl(0deg 0% 0% / 87%)), url(../images/logo.png) no-repeat;
    background-size: contain;
    background-position: center;
    background-attachment: fixed;
    border: 4px solid var(--first-color);
    max-width: 300px;
    /* background: var(--gradient-color); */
    border-radius: 4rem 0;
    font-family: "Roboto", sans-serif;
    padding: 8px 24px;
    box-shadow: 0 4px 8px -3px rgba(0, 0, 0, 0.3);
}

.bmr-calculator,
.bmr-calculator * {
    box-sizing: border-box;
}

input[type="radio"]:checked {
    background-color: #000;
}

.bmr-calculator h2 {
    text-align: center;
    background: #222;
    border-radius: 5rem 0;
    color: #fff;
    font-weight: 700;
    margin: -8px -24px;
    margin-bottom: 8px;
    padding: 16px;
}

.bmr-calculator form h3 {
    font-size: 15px;
    text-transform: uppercase;
    margin: 16px 0 10px 0;
}

.bmr-calculator form input[type="text"] {
    width: 100%;
    padding: 4px 16px;
    font-size: 24px;
    border-radius: 25px;
    font-weight: bold;
    border: 1px solid #d5dbdd;
}

.bmr-calculator form input[type="text"].invalid {
    border: 1px solid red;
}

.bmr-calculator form {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bmr-calculator form #female {
    margin-left: 20px;
}

.bmr-calculator form .height,
.bmr-calculator form .weight {
    position: relative;
}

.bmr-calculator form .unit {
    position: absolute;
    right: 20px;
    top: 50px;
    color: #777;
}

.bmr-calculator .result .calculate-btn {
    padding: 8px 24px;
    margin: 16px 0;
    font-size: 18px;
    font-weight: 100;
    text-transform: uppercase;
    border: none;
    background: #333;
    color: #fff;
    cursor: pointer;
    margin-bottom: 32px;
}

.bmr-calculator .result {
    text-align: center;
    color: #4e4e4e;
    font-size: 18px;
}

.bmr-calculator .result .calories {
    color: var(--first-color);
    font-size: 38px;
    font-weight: 900;
    margin-right: 8px;
    vertical-align: middle;
}

.bmr-calculator .result .error-message {
    color: red;
    font-size: 14px;
    display: none;
}

.bmr-calculator .result .error-message.active {
    display: block;
}

form input {
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
}

.fle {
    /* color: white; */
    font-size: 1rem;
    color: var(--first-color);
    /* margin-top: 0.15rem; */
    display: flex;
    column-gap: 0.5rem;
    align-items: center;
}


/*=============== nutrantion ===============*/


/* .nutrantion {
    background-image: linear-gradient(rgba(4, 9, 30, 0.8), rgba(0, 0, 0, 0.788)), url(../images/testo/cook1.jpg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    object-fit: cover;
} */

.nutrantion__container {
    row-gap: 2rem;
}

.nutrantion__img2 {
    width: 280px;
}

.nutrantion__img {
    width: 280px;
    justify-self: center;
    border-radius: 4rem 0;
    border-left: 4px solid var(--first-color);
    order: 1;
}

.nutrantion__title {
    margin-bottom: var(--mb-1);
}

.nutrantion__description {
    margin-bottom: var(--mb-2);
}

.nutrantion__details {
    display: grid;
    row-gap: 1rem;
    margin-bottom: var(--mb-2-5);
}

.nutrantion__details-description {
    display: inline-flex;
    column-gap: .5rem;
    font-size: var(--small-font-size);
}

.nutrantion__details-icon {
    font-size: 1rem;
    color: var(--first-color);
    margin-top: .15rem;
}


/*=============== CONTACT ===============*/

.contact {
    padding-bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/testo/background4.png) no-repeat;
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed; */
    object-fit: cover;
    object-position: 50%;
    /* height: 100vh; */
}

.contact__container {
    position: relative;
    grid-template-rows: max-content;
    row-gap: 0;
}

.contact__data {
    display: none;
    position: relative;
    width: 300px;
    height: 300px;
    background-color: var(--container-color);
    padding: 3rem 1.5rem 3.5rem;
    margin-left: auto;
    border-bottom: 4px solid var(--first-color);
    z-index: 5;
    transition: background-color .4s;
}

.contact__data .section__title-2 {
    margin: 0 0 1.5rem;
    transform: translateX(-3rem);
}

.contact__description-1 {
    color: var(--title-color);
    font-weight: var(--font-medium);
    margin-bottom: 2rem;
}

.contact__description-2 {
    color: var(--title-color);
    font-size: var(--small-font-size);
}

.contact__data .gometric-box {
    top: 2rem;
    right: 2.5rem;
}

.contact__mail {
    position: relative;
    /* background-color: rgba(0, 0, 0, 0.244); */
    padding: 5rem 1.5rem 2.5rem;
    margin-top: -2.5rem;
    border-radius: 15rem 0;
    transition: background-color .4s;
}

.contact__title {
    color: var(--white-color);
    font-size: var(--h2-font-size);
    margin-bottom: 2rem;
    text-align: center;
}

.contact__form,
.contact__group {
    display: grid;
    row-gap: 1.25rem;
}

.contact__form {
    position: relative;
}

.contact__box {
    position: relative;
    width: 100%;
    height: 58px;
}

.contact__input,
.contact__button {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    outline: none;
    border: none;
}

.contact__input {
    position: absolute;
    border-radius: 4rem 0;
    width: 100%;
    height: 100%;
    background-color: black;
    border: 3px solid hsl(0, 0%, 40%);
    color: var(--white-color);
    padding: .5rem 1.5rem;
    font-weight: var(--font-medium);
    transition: border .4s, background-color .4s;
}

.contact__input::placeholder {
    color: var(--text-color-light);
    transition: opacity .4s;
}

.contact__input:focus {
    border: 3px solid var(--white-color);
}

.contact__input:-webkit-autofill {
    transition: background-color 6000s, color 6000s;
}

.contact__label {
    position: absolute;
    top: 8px;
    left: 10px;
    border-radius: 4rem 0 4rem 4rem;
    color: var(--text-color-light);
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
    background-color: black;
    padding: 8px;
    pointer-events: none;
    transition: top .4s, opacity .4s, background-color .4s;
    opacity: 0;
}

.contact__form .contact__area {
    height: 10rem;
}

.contact__area textarea {
    resize: none;
    padding-top: 1rem;
}

.contact__button {
    background-color: var(--first-color);
    cursor: pointer;
}


/* Opaque placeholder */

.contact__input:focus::placeholder {
    opacity: 0;
}


/* Move label up & sticky label */

.contact__input:focus+.contact__label,
.contact__input:not(:placeholder-shown).contact__input:not(:focus)+.contact__label {
    opacity: 1;
    top: -16px;
}

.contact__social {
    display: none;
    /* display: grid; */
    row-gap: 1rem;
    background-color: hsla(0, 0%, 10%);
    padding-block: 1rem 2rem;
    text-align: center;
}

.contact__social-arrow {
    width: 32px;
    margin: 0 auto;
}

.contact__social-data {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
}

.contact__social-description-1 {
    color: var(--text-color-light);
    font-size: var(--small-font-size);
    margin-bottom: .5rem;
}

.contact__social-description-2 {
    color: var(--white-color);
    font-size: var(--small-font-size);
    font-weight: 600;
}

.contact__social-links {
    display: flex;
    /* justify-content: center; */
    column-gap: .75rem;
}

.contact__social-link {
    background: var(--gradient-color);
    padding: 6px;
    color: var(--white-color);
    font-size: 1.25rem;
    display: grid;
    place-items: center;
    border-radius: 1rem 0;
    transition: background-color .3s;
}

.contact__social-link:hover {
    background-color: var(--first-color);
}

.contact__message {
    color: white;
    font-size: var(--small-font-size);
    position: absolute;
    bottom: -1.6rem;
    left: 0;
}


/*=============== FOOTER ===============*/

footer {
    width: 100%;
    /* position: absolute; */
    bottom: 0;
    background: linear-gradient(to bottom, var(--body-color), var(--first-color)), url(../images/logo\ w.fit-11.png) no-repeat;
    color: #fff;
    /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)); */
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    padding: 100px 0 30px;
    border-top-left-radius: 125px;
    font-size: 13px;
    line-height: 20px;
}

.moalrmaly {
    font-family: 'Lobster', cursive;
}

.row {
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.col {
    flex-basis: 25%;
    padding: 10px;
}

.col:nth-child(2),
.col:nth-child(3) {
    flex-basis: 15%;
}

footer .logo {
    width: 80%;
    margin-bottom: 30px;
}

.col h3 {
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
}

.email-id {
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
}

ul li {
    list-style: none;
    margin-bottom: 12px;
}

ul li a {
    text-decoration: none;
    color: var(--nav_link);
}

ul li a:hover {
    color: #000000;
}

.footer form {
    display: none;
    padding-bottom: 15px;
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;
}

form .fa-envelope {
    font-size: 18px;
    margin-right: 10px;
}

footer form input {
    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
}

form button {
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
}

form button .fa-arrow-right {
    font-size: 16px;
    color: #ccc;
}

.social-icon .fab {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;
}

.social-icon .social_iconsos {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;
}

.social-icon .fab:hover {
    background-color: black;
    color: white;
}

hr {
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}

.copyright {
    text-align: center;
}

.underline {
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}

.underline span {
    width: 15px;
    height: 100%;
    background: var(--first-color-dark);
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
}

@keyframes moving {
    0% {
        left: -20px;
    }
    100% {
        left: 100%;
    }
}


/*=============== SCROLL BAR ===============*/


/*----- LAYOUT -----*/

.bd-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    max-width: 1200px;
    margin-left: 1rem;
    margin-right: 1rem;
}

.l-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: transparent;
    z-index: var(--z-tooltip);
}

.main-bg {
    height: 100vh;
}

.main-bg__hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}


/*Home*/

.home2 {
    position: relative;
    height: 100%;
    -ms-flex-line-pack: center;
    align-content: center;
    justify-items: center;
    color: var(--first-color);
    z-index: 1312;
    row-gap: 2rem;
}

.home__title2 {
    font-size: var(--h1-font-size);
}


/*=============== Home 66 ===============*/

.home66 {
    /* background-color: beige; */
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../images/testo/homeimagee1.jpeg) no-repeat;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    /* position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; */
    object-fit: cover;
    object-fit: cover;
    object-position: 50%;
    overflow: hidden;
}

.home__container66 {
    padding: 4rem 0 1rem;
    row-gap: 8.5rem;
    position: relative;
}

.home__title66 {
    font-size: var(--bigger-font-size);
    font-weight: 400;
}

.home__description66 {
    color: var(--title-color);
    margin: 1rem 0 2rem;
}

.home__title66,
.home__description66 {
    line-height: 140%;
}

.home__images66 {
    position: relative;
    width: 310px;
    justify-self: center;
}

.home__images66 img:nth-child(1) {
    width: 224px;
    position: absolute;
    right: -1.5rem;
    top: -7.5rem;
}

.home__images66 img:nth-child(2) {
    width: 180px;
    margin-left: .5rem;
    position: relative;
}

.buuton__link {
    color: var(--title-color);
    font-weight: var(--font-medium);
    display: inline-flex;
    align-items: center;
    column-gap: .5rem;
}

.buuton__link i {
    font-size: 1rem;
    transition: .3s;
}

.buuton__link:hover i {
    transform: translateY(.25rem);
}


/* ============= Featured  ========== */

.featured__container {
    position: relative;
    text-align: center;
    background-color: var(--container-color);
    padding: 2rem;
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: border .4s, background-color .4s;
}

.featured__img {
    width: 230px;
    margin: 0 auto .75rem;
}

.features__title {
    font-size: var(--h2-font-size);
    margin-bottom: .5rem;
}

.featured__prices {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: .75rem;
    margin-bottom: 1.25rem;
}

.featured__discount {
    color: var(--title-color);
}

.featured__price {
    font-size: var(--small-font-size);
    text-decoration: line-through;
}

.featured__card .button {
    cursor: pointer;
}

.featured__actions {
    display: none;
    /* display: inline-flex; */
    flex-direction: column;
    row-gap: .75rem;
    position: absolute;
    top: 2rem;
    right: -1.5rem;
    transition: right .4s;
}

.featured__actions button {
    background: none;
    font-size: 1.25rem;
    color: var(--first-color);
    cursor: pointer;
}

.featured__card:hover .featured__actions {
    right: 1.5rem;
}


/* swiper */

.swiper-button-next::after,
.swiper-button-prev::after {
    content: '';
}

.swiper-button-prev,
.swiper-button-next {
    width: initial;
    height: initial;
    background-color: var(--container-color);
    border: 2px solid var(--border-color);
    padding: .5rem;
    font-size: 1.5rem;
    color: var(--first-color);
    transition: border .4s background-color;
    position: absolute;
    top: 31rem;
}


/*=============== SCROLL UP ===============*/

.services__container55 {
    row-gap: 3rem;
}

.services__card55 {
    text-align: center;
}

.services__card55 i {
    display: block;
    font-size: 3rem;
    color: var(--first-color);
    margin-bottom: 1rem;
}

.services__title55 {
    font-size: var(--h3-font-size);
    margin-bottom: .5rem
}


/*=============== SCROLL UP ===============*/


/* srcoll up */

.scrollup {
    position: fixed;
    background: var(--gradient-color2);
    right: 1rem;
    bottom: -30%;
    font-size: 1.25rem;
    padding: .5rem;
    display: inline-flex;
    border-radius: 1rem 0;
    /* opacity: .8; */
    z-index: 1515151;
    transition: .4s;
    color: black;
}

.scrollup:hover {
    background-color: var(--first-color);
    opacity: 1;
}

.show-scroll {
    bottom: 5rem;
}


/*=============== BREAKPOINTS ===============*/


/* For small devices */

@media screen and (max-width:320px) {
    .container {
        margin-inline: 1rem;
    }
    .section {
        padding-block: 4rem 1rem;
    }
    .home__title {
        font-size: var(--h1-font-size);
    }
    .home__title3 {
        font-size: 2rem;
    }
    .home__leaf-1 {
        top: 5rem;
    }
    .home__leaf-2 {
        bottom: 0;
    }
    .video__container {
        padding: 0;
    }
    .containercard {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    .section__title {
        flex-direction: column;
        row-gap: .25rem;
    }
    .pricing__container {
        grid-template-columns: 250px;
    }
    .pricing__card {
        padding: 1.5rem;
    }
    .contact__data {
        width: 100%;
    }
    .contact__data .section__title-2 {
        transform: translateX(0);
    }
    .projects__img {
        width: 200px;
        justify-self: center;
    }
    .home__container66 {
        padding: 2rem 0 1rem;
        row-gap: 6rem;
    }
    .home__description66 {
        font-size: var(--small-font-size);
    }
    .home__images66 {
        width: 248px;
    }
    .home__images66 img:nth-child(1) {
        width: 180px;
        top: -7rem;
    }
    .home__images66 img:nth-child(2) {
        width: 150px;
        /* top: -7rem; */
    }
}

@media screen and (min-width:450px) {
    .featured__card {
        width: 290px;
    }
}


/* For medium devices */

@media screen and (min-width:576px) {
    .home__container3 {
        grid-template-columns: .7fr;
        justify-content: center;
    }
    .home__container55 {
        grid-template-columns: 420px;
        justify-content: center;
    }
    .video__container {
        display: grid;
        grid-template-columns: .6fr;
        justify-content: center;
    }
    .care__container {
        grid-template-columns: 400px;
        justify-content: center;
    }
    .about__container {
        grid-template-columns: 350px;
        justify-content: center;
    }
    .contact__data {
        width: 350px;
        padding: 4rem 1.5rem;
        margin-inline: auto;
    }
    .contact__container {
        grid-template-columns: 500px;
        justify-content: center;
    }
    .contact__group {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 1rem;
    }
    .contact__social {
        background-color: transparent;
    }
    .contact__social-arrow {
        filter: invert(1);
    }
    .contact__social-description-1 {
        color: var(--text-color);
    }
    .contact__social-description-2 {
        color: var(--title-color);
    }
    .dark-theme .contact__social-arrow {
        filter: none;
    }
    .projects__container {
        width: 400px;
    }
    .projects__container {
        overflow: hidden;
    }
    .projects__container .swiper-button-prev {
        left: 1rem;
    }
    .projects__container .swiper-button-next {
        right: 1rem;
    }
}

@media screen and (min-width:768px) {
    .nutrantion__container,
    .home__container {
        grid-template-columns: repeat(2, 1fr);
    }
    .home {
        padding: 10rem 0 5rem;
    }
    .home__container {
        align-items: center;
    }
    .home__social {
        top: 30%;
    }
    .section {
        padding: 6rem 0 2rem;
    }
    .home__container66 {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }
    .home__images66 {
        margin-top: 6rem;
    }
    .section__subtitle {
        margin-bottom: 4rem;
    }
    .about__container {
        grid-template-columns: repeat(2, 350px);
        align-items: center;
    }
    .about__data {
        order: 1;
    }
    .about__data,
    .about__data .section__title {
        text-align: initial;
    }
    .pricing__container {
        grid-template-columns: repeat(2, 285px);
    }
    .nutrantion__container {
        grid-template-columns: repeat(2, 1fr);
    }
    .projects__container {
        width: 500px;
    }
    .services__container55 {
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
        column-gap: 5rem;
    }
}

@media (max-width:700px) {
    footer {
        bottom: unset;
    }
    .col {
        flex-basis: 100%;
    }
    .col:nth-child(2),
    .col:nth-child(3) {
        flex-basis: 100%;
    }
}

@media screen and (max-width: 749px) {
    .home__video {
        display: block;
    }
    .home__video--desktop {
        display: none !important;
    }
    .home__img--mobile {
        display: block !important;
        background-image: url(../images/testo/test1.jpeg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .home__img {
        display: none;
    }
    .home__img2 {
        display: none;
    }
    .home__data {
        display: flex;
        justify-content: center;
        align-items: baseline;
        z-index: 100000;
        height: 80%;
        flex-direction: column;
    }
    .home__container {
        position: relative;
        row-gap: 2rem;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1;
        height: 91vh;
    }
    .home__social {
        position: absolute;
        top: 25rem;
        right: -2rem;
        display: none;
        /* display: grid; */
        justify-items: center;
        row-gap: 3.5rem;
    }
    .wrapper {
        gap: 15px;
    }
    .containere {
        width: 100%;
        height: 25vmin;
        font-size: 8px;
    }
    span.text {
        font-size: 1.5em;
    }
    .pricing__popular {
        transform: scale(1);
    }
    .pricing__popular:hover {
        transform: translateY(-10px);
    }
}


/* @media (min-width: 750px) and (max-width: 1099px){
  .home__img{
    background-attachment: fixed;
    background-image:  url(../img/Untitled\ design\ \(13\).png);  background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50%;
  }
  .home__img2{
    background-attachment: fixed;
    background-image:  url(../img/Untitled\ design\ \(13\).png);  background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50%;
  }
} */

@media screen and (min-width: 992px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }
    .section {
        padding: 8rem 0 1rem;
    }
    .section__title,
    .section__title-center {
        font-size: var(--h1-font-size);
    }
    .home {
        padding: 13rem 0 5rem;
    }
    .home__description {
        padding-right: 7rem;
    }
    .testimonial__container {
        width: 750px;
    }
    .testimonial__card {
        padding: 1.5rem 2rem;
    }
    .nutrantion__img2 {
        width: 320px;
    }
}

@media screen and (max-width:1024px) {
    .wrapper {
        width: 85vw;
    }
    .containere {
        height: 26vmin;
        width: 26vmin;
        /* font-size: 12px; */
    }
}


/* For large devices */

@media screen and (min-width:1023px) {
    .section {
        padding: 7rem 1.5rem;
    }
    .container {
        margin-inline: auto;
    }
    .home2 {
        /* background-attachment: fixed; */
        background-image: url(../img/Untitled\ design\ \(13\).png);
        background-size: cover;
        background-position: center top;
        background-repeat: no-repeat;
    }
    .home__container3 {
        position: relative;
        grid-template-columns: 480px 500px;
        padding-block: 7rem 3rem;
    }
    .home__data3 {
        text-align: initial;
        order: -1;
    }
    .home__title3 img {
        width: 60px;
    }
    .home__title3 div {
        justify-content: initial;
        column-gap: 1rem;
    }
    .home__description3 {
        padding-inline: 0 10rem;
    }
    .home__img3 {
        width: 370px;
        /* position: absolute;
    top: 5rem;
    right: -2rem; */
    }
    .section__subtitle {
        margin-bottom: .75rem;
    }
    .video__container {
        grid-template-columns: .7fr;
    }
    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, hsl(0deg 0% 0% / 76%) 0%, hsl(23deg 4% 8% / 20%) 100%);
        z-index: 1;
    }
    .nav {
        height: calc(var(--header-height) + 2rem);
    }
    .nav__close,
    .nav__toggle {
        display: none;
    }
    .nav__menu {
        display: flex;
        align-items: center;
        column-gap: 4rem;
    }
    .nav__list {
        flex-direction: row;
        column-gap: 3.5rem;
    }
    .nav__social {
        margin: 0;
    }
    .section__subtitle {
        font-size: 2rem;
    }
}

@media screen and (min-width:1150px) {
    .container {
        margin-inline: auto;
    }
    .section {
        padding-block: 7rem 2rem;
    }
    .home__social {
        right: -3rem;
        row-gap: 4.5rem;
    }
    .home__social-follow {
        font-size: var(--small-font-size);
    }
    .home__social-follow::after {
        width: 1.5rem;
        right: -60%;
    }
    .home__social-link {
        font-size: 1.15rem;
    }
    .home__container66 {
        padding: 10rem 0 3rem;
        column-gap: 0;
    }
    .home__images66 {
        width: 500px;
        margin-top: 8rem;
        transform: translate(-1rem);
    }
    .home__container66 img:nth-child(1) {
        width: 345px;
        top: -14.5rem;
    }
    .home__container66 img:nth-child(1) {
        width: 277px;
        top: -14.5rem;
    }
    .care__container {
        grid-template-columns: 480px 385px;
        column-gap: 8rem;
        align-items: center;
        padding-top: 3rem;
    }
    .care__img {
        width: 480px;
        order: 1;
    }
    .care__list {
        row-gap: 1.5rem;
    }
    /* .care__item i{
    font-size: 2rem;
  } */
    .about__container {
        grid-template-columns: 450px 430px;
        column-gap: 7rem;
    }
    .about__img {
        /* order: 1; */
        width: 400px;
    }
    .pricing__container {
        padding-top: 3rem;
        grid-template-columns: repeat(3, 350px);
    }
    .pricing__card {
        padding: 2rem 3.5rem;
        row-gap: 2.5rem;
    }
    .contact__container {
        grid-template-columns: 440px 670px;
        grid-template-rows: initial;
        padding-bottom: 2rem;
    }
    .contact__mail {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
        padding: 7rem 5.5rem 6rem 7.5rem;
        margin-top: 0;
    }
    .contact__title {
        font-size: var(--h3-font-size);
        text-align: initial;
    }
    .contact__box {
        height: 60px;
    }
    .contact__form .contact__area {
        height: 11rem;
    }
    .contact__button {
        margin-top: 1.25rem;
        width: max-content;
    }
    .contact__data {
        width: 392px;
        height: 375px;
        padding: 4.5rem 3.5rem 3.5rem;
        margin: 7.5rem 0 0 8rem;
        border-bottom: 6px solid var(--first-color);
    }
    .contact__data .section__title-2 {
        margin: 0 0 2rem;
        transform: translateX(-6.5rem);
    }
    .contact__social {
        margin-left: 8rem;
        text-align: initial;
    }
    .contact__social-data {
        flex-direction: row;
        align-items: center;
        column-gap: 1.25rem;
    }
    .contact__social-arrow {
        width: 40px;
    }
    .contact__social-link {
        font-size: 1.5rem;
        padding: .5rem;
    }
    .contact__message {
        bottom: -2.5rem;
    }
    .dark-theme .contact__data {
        box-shadow: 4px 0 8px hsla(0, 0%, 4%, .3);
    }
    .nutrantion__container {
        column-gap: 7rem;
    }
    .bd-grid {
        margin-left: auto;
        margin-right: auto;
    }
    .services__container55 {
        column-gap: 10rem;
    }
    .services__card55 i {
        font-size: 3.5rem;
    }
    .scrollup {
        right: 3rem;
    }
    .featured__container {
        padding-top: 2rem;
    }
    .features__title {
        font-size: var(--h3-font-size);
    }
}

@media screen and (min-width:1220px) {
    .projects__container {
        width: 900px;
    }
    .projects__container .swiper-button-prev,
    .projects__container .swiper-button-next {
        font-size: 3rem;
    }
    .projects__container .swiper-button-prev {
        left: 1rem;
    }
    .projects__container .swiper-button-next {
        right: 1rem;
    }
    .projects__container .swiper-slide {
        margin-bottom: 6.5rem;
    }
    .projects__img {
        width: 320px;
        margin-bottom: 2rem;
    }
}


/* تحديد مكان النص للغة العربية فقط */

.arabic-font {
    direction: rtl;
    text-align: center;
    font-family: 'Amiri', serif;
}

.second-arabic-font {
    direction: rtl;
    text-align: right;
    font-family: 'Cairo', sans-serif;
}

.se-arab {
    direction: rtl;
    text-align: center;
    font-family: 'Amiri', serif;
}

.scroll-progress {
    position: fixed;
    top: 0;
    right: 0;
    width: 5px;
    height: 0%;
    background: linear-gradient( to bottom, #ffb27c, #d66a1f, #8f3500);
    box-shadow: 0 0 10px rgba(214, 106, 31, .7), 0 0 25px rgba(214, 106, 31, .35);
    z-index: 99999;
    border-radius: 20px;
    transition: height .08s linear;
}

.scroll-progress::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 14px;
    left: -4px;
    background: rgba(214, 106, 31, .25);
    filter: blur(10px);
}

.scroll-indicator {
    animation: float 2s infinite ease-in-out;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}


/* loader */

#loader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--body-color);
    overflow: hidden;
}


/* خلفية نيون خفيفة */

.loader-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(214, 106, 31, 0.15), transparent 60%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: .8;
    }
    50% {
        transform: scale(1.2);
        opacity: .4;
    }
}

.loader-content {
    text-align: center;
    z-index: 2;
}

.loader-title {
    font-size: 2.2rem;
    color: var(--first-color);
    text-shadow: 0 0 20px rgba(214, 106, 31, .6);
    letter-spacing: 3px;
    margin-bottom: 20px;
}


/* progress bar */

.loader-bar {
    width: 280px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    overflow: hidden;
    margin: auto;
    box-shadow: 0 0 15px rgba(214, 106, 31, .2);
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--gradient-color2);
    box-shadow: 0 0 20px rgba(214, 106, 31, .8);
    transition: .2s;
}

.loader-percent {
    margin-top: 15px;
    color: var(--title-color);
    font-size: 1.2rem;
}


/* skip button */

.skip-btn {
    margin-top: 25px;
    padding: 10px 20px;
    border: 1px solid var(--first-color);
    background: transparent;
    color: var(--first-color);
    cursor: pointer;
    border-radius: 20px;
    transition: .3s;
}

.skip-btn:hover {
    background: var(--first-color);
    color: #000;
    box-shadow: 0 0 25px rgba(214, 106, 31, .6);
}


/*=============== CARE STATS ===============*/

.care__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.care__stat-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(214, 106, 31, .18);
    border-radius: 2rem 0;
    padding: 1.25rem 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all .35s ease;
    box-shadow: 0 0 15px rgba(214, 106, 31, .05);
}

.care__stat-card:hover {
    transform: translateY(-6px);
    border-color: var(--first-color);
    box-shadow: 0 0 25px rgba(214, 106, 31, .18);
}

.care__stat-card h3 {
    font-size: 2rem;
    color: var(--first-color-light);
    font-weight: 700;
    margin-bottom: .35rem;
    text-shadow: 0 0 15px rgba(214, 106, 31, .25);
}

.care__stat-card p {
    font-size: var(--small-font-size);
    color: var(--text-color);
    line-height: 1.4;
}


/* Large screens */

@media screen and (min-width:1150px) {
    .care__stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
    .care__stat-card h3 {
        font-size: 2.3rem;
    }
}


/* Mobile */

@media screen and (max-width:576px) {
    .care__stats {
        grid-template-columns: 1fr;
    }
}