
/* START DEFAULT  */


/* START GOOGLE FONTS HERE  */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* END GOOGLE FONTS HERE  */


/* START SCRALL BAR HERE  */
/* width */
::-webkit-scrollbar {
    width: 20px;
    background-color: var(--color);
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px gray;
    border-radius: 10px;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--background-color);
    border-radius: 10px;
  }




/* END SCROLLBAR HERE  */

:root
{
    --background-color:#ffc410;
    --color:#241f20;
    --font-site: "Open Sans", sans-serif;
    --error-background:#CC0000;
}

body , html
{
    scroll-behavior: smooth !important;
}

*
{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

.container
{
    width: 80%;
    height: 100%;
    margin: auto;
}


/* END DEFAULT  */


/* START NAVBAR */
nav
{
    width: 100%;
    padding: 25px 0px;
    background-color: var(--color);
    color: var(--color);
    font-family: var(--font-site);
    font-style: italic;
}
nav .container 
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav nav__logo 
{
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

nav .nav__logo a
{
    text-decoration: none;
    font-size: 23px;
    color: var(--background-color);

}

nav .nav__logo:hover
{
    transform: scale(1);
}



nav .nav__content 
{
    list-style: none;
}

nav .nav__content  li 
{
    display: inline-block;
    padding: 10px 15px;
}


nav .nav__content  li a 
{
    text-decoration: none;
    font-size: 18px;
    color: var(--background-color);
    transition: all 0.3s ease-in-out;
}

nav .nav__content  li a:hover 
{
    opacity: 0.5;
}



.contact__btn a 
{
    font-size: 25px !important;
}


.nav__hide
{
    display: none !important;
}


nav .burger 
{
    font-size: 23px;
    cursor: pointer;
    color: var(--background-color);
    transition: all 0.3s ease-in-out;
    display: none;
}


/* START SCREENS  */
@media(max-width:540px)
{
    nav 
    {
        position: static;
        top: 0px;
        z-index: 3;
    }
    /* nav.active 
    {
        position: fixed !important;
        top: 0px;
    } */
  .nav__content
  {
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--color);
    color: var(--background-color);
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
    z-index: 99 !important;
  }
  .nav__content.active 
  {
    transform: translateX(0%) !important;
  }

  .nav__content li 
  {
    margin: 20px 0px;
  }

  .burger
  {
    display: block !important;
    color: var(--background-color);
    position: static;
    right: 20px;
    z-index: 99;
  }
  .burger.active 
  {
    position: fixed;
    right: 20px;
  }
}


/* END SCREENS HERE  */


/* END NAVBAR  */


/* START HEADER HERE  */
header
{
    width: 100%;
    height: 100vh;
    background-image: url(../images/pexels-leandro-boogalu-5876-1390403.jpg);
    background-size: cover;
    background-attachment: fixed;
    font-family: var(--font-site);
    text-transform: capitalize;
    font-style: italic;   
}

header .container 
{
    display: flex;
    align-items: center;
    justify-content: center;
}

header .header__content 
{
    text-align: center;
}

header .header__content  h2
{
    font-size: 65px;
    margin: 10px 0px;
}
header .header__content  p
{
    margin: 10px 0px;
}


header .header__content  a 
{
    text-decoration: none;

}

header .header__content  a button
{
    padding: 10px 25px;
    background-color: var(--background-color);
    color: var(--color);
    border-radius: 10px;
    outline: none;
    border: none;
    margin: 10px 0px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

header .header__content  a button:hover 
{
    background-color: var(--color);
    color: var(--background-color);

}

/* small screens */
@media(max-width:540px)
{
   header 
   {
  
    background-image: url('https://images.pexels.com/photos/841131/pexels-photo-841131.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
   }

   .header__content  h2 , p
   {
        color: var(--background-color);
   }


   .header__content a button
   {
        color: var(--color) !important;
        background-color:var(--background-color) !important;
        transition: all 0.3s ease-in-out;
   }

   .header__content a button:hover
   {
    background-color: var(--color) !important;
    color: var(--background-color) !important;
   }


}
/* END HEADER HERE */



/* START MOVEMENT SECTION HERE  */

.movemoent
{
      padding: 60px 0px;
  background-color:#241f20;
  color:#ffc410 ;
}

 .card__content{
  /* display: flex;
  justify-content: space-around;
  align-items: center; */
  /* background-color: #241f20;
  color: #ffc410;
  height: 200px; */

    padding: 30px 45px;
    background-color: #ffc410;
    color: #241f20;
    border-radius: 15px ;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    /* margin: 20px; */
}

.card {
  text-align: center;
}

.icon {
  font-size: 40px;
  margin-bottom: 10px;
  display: inline-block;
  animation: float 2s ease-in-out infinite;
}

/* Different delays for variation */
.card:nth-child(2) .icon { animation-delay: 0.3s; }
.card:nth-child(3) .icon { animation-delay: 0.6s; }
.card:nth-child(4) .icon { animation-delay: 0.9s; }

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.label {
  font-size: 16px;
  font-weight: bold;
}


/* START SMALL SCREEN HERE  */
@media(max-width:540px)
{
     .card__content
     {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
     }
     .card 
     {
        margin: 15px 0px;
     }
}


/* END SMALL SCREEN HERE  */

/* END MOVEMENT SECTION HERE  */


















/* START ABOUT ME HERE */
#about
{
    padding: 40px 0px;
    background-color: var(--color);
    color: var(--background-color);
    font-family: var(--font-site);
    font-style: italic;
    text-align: center;
}

#about h3 
{
    margin: 20px 0px;
    letter-spacing: 4px;
    position: relative;


}

#about h3::after
{
    content: "";
    width: 80px;
    height: 2px;
    background-color: var(--background-color);
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}

#about p 
{
    padding: 20px 0px;
}

/* END ABOUT ME HERE  */


/* START TRANSFORMATION HERE  */

.Transformations 
{
    width: 100%;
    height: 100% !important;

}


.Transformations .splide__arrow--next
{
    background-color: var(--background-color) !important; 
    color: var(--color) !important;
}
.Transformations
 .splide__arrow--prev
{
    background-color: var(--background-color) !important;
    color: var(--color) !important;
}



.Transformations .splide__slide img {
    max-width: 100%;
    height: auto;
  }




  .splide__pagination__page
  {
    background-color: var(--color) !important;
  }

/* END TRANSFORMATION HERE  */

/* START Transformations__clients  SECTION HERE */
.Transformations__clients
{
    width: 100%;
    height: 950px;
 

}

.Transformations__clients img 
{
    max-width: 100%;
    max-height: 100%;
}



/* END  Transformations__clients  SECTION HERE*/




/* DIET SECTION START  */
.diet 
{
    width: 100%;
    height: 100vh;
    background-image:  linear-gradient(to right bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%), url('../images/Diet.jpg');
    background-size: cover;
       /* background-attachment: fixed; */
}


.diet .container
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.diet a 
{
     text-decoration: none;
    padding: 10px 25px ;
    background-color: var(--background-color);
    color: var(--color);
    font-family: var(--font-site);
    font-style: inherit;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;

}


.diet a:hover 
{
    color: var(--background-color);
    background-color: var(--color);
}


/* SMALL SCREEN START  */
@media(max-width:540px)
{
    .diet 
    {
        background-size: cover;
    }
}


/* SMALL SCREEN  END  */

/* DIET   SECTION END  */


/* WORKOUT SECTION START  */
.workout
{
    width: 100%;
    height: 100vh;
    background-image:  linear-gradient(to right bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%), url('../images/workout.jpg');
    background-size: cover;
    /* background-attachment: fixed; */
}


.workout .container
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.workout a 
{
     text-decoration: none;
    padding: 10px 25px ;
    background-color: var(--background-color);
    color: var(--color);
    font-family: var(--font-site);
    font-style: inherit;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;

}


.workout a:hover 
{
    color: var(--background-color);
    background-color: var(--color);
}


/* SMALL SCREEN START  */
@media(max-width:540px)
{
    .workout 
    {
        background-size: cover;
    }
}


/* SMALL SCREEN  END  */

/* WORKOUT   SECTION END  */








/* GYM SECTION START  */
.gym 
{
     width: 100%;
    height: 100vh;
    background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%),   url('../images/gym.jpg');
    background-size: cover;
       /* background-attachment: fixed; */

    
}

.gym .container
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.gym .gym__content 
{
    text-align: center;
}

.gym__content h2 
{
    font-size: 65px;
    margin: 10px 0px;
    color: var(--background-color);
}



/* GYM SECTION END  */


/* START STRUGGLE SECTION HERE  */
.struggle 
{
    padding: 60px 0px ;
    background-color: var(--color);
    color: var(--background-color);
   

}

.struggle h3
{
      margin: 30px 0px;
    letter-spacing: 4px;
    position: relative;
    text-align: center;
    font-size: 19px;
}

.struggle span
{
    display: block;
    margin: 20px 0px;
    font-size: 10px !important;
}


.struggle h3::after
{
       content: "";
    width: 80px;
    height: 2px;
    background-color: var(--background-color);
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}


.struggle .container 
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.struggle .struggle__content 
{
    text-align: center;
    margin: 30px 0px;
    padding: 30px 50px ;
    border: 1px solid var(--color);
    border-radius: 15px;
    color: var(--color);
    background-color: var(--background-color);
}


.struggle .struggle__content .struggle__content__icon
{
    font-size: 23px ;
    margin: 10px 0px;
}


.struggle .struggle__content__title 
{
    margin: 10px 0px;
}


 
.struggle .struggle__content__text
{
    margin: 10px 0px;
    color: var(--color) !important;
}


/* START SMALL SCREEN HERE  */
@media(max-width:540px)
{

    .struggle .container
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .struggle__content 
    {
        border: none !important;
    }
    .struggle .struggle__content__text p
{
    margin: 10px 0px;
    color: var(--color) !important;
}

}


/* END SMALL SCREEN HERE */
/* END STRUGGLE SECTION HERE  */


/* START TEXT__ANIMATION SECTION HERE  */
.text__animation
{
    padding: 20px 0px;
    background-color: var(--color);
    color: var(--background-color);
    font-family: var(--font-site);

}

.text__animation .container
{
    display: flex;
    align-items: center;
    justify-content: center;

}


.text 
{
    font-size: 30px;
    word-wrap: break-word;
    text-transform: capitalize;

}

.text span:nth-child(2)
{
    animation-delay: .05s;

}

.text span:nth-child(3)
{
    animation-delay: .1s;

}


.text span:nth-child(4)
{
    animation-delay: .15s;
    
}


.text span:nth-child(5)
{
    animation-delay: .2s;
    
}



.text span:nth-child(6)
{
    animation-delay: .25s;
    
}

.text span:nth-child(7)
{
    animation-delay: .3s;
    
}

.text span:nth-child(8)
{
    animation-delay: .35s;
    
}


.text span:nth-child(9)
{
    animation-delay: .4s;
    
}

.text span:nth-child(10)
{
    animation-delay: .45s;
    
}


.text span:nth-child(11)
{
    animation-delay: .5s;
    
}


.text span:nth-child(12)
{
    animation-delay: .55s;
    
}

.text span:nth-child(13)
{
    animation-delay: .6s;
    
}


















.text span 
{
    color: var(--background-color);
    opacity: 0;
    display: inline-block;
    text-shadow: 3px 3px 4px rgba(0, 0, 0, .2);
    animation: animate 6s  forwards infinite ;
    transform: translate(300px , 0) scale(0);
}




@keyframes animate {

    60%{

             transform: translate(20px , 0) scale(1);
              color: var(--background-color);

    }


       80%{

             transform: translate(20px , 0) scale(1);
              color: var(--background-color);

    }



    
  99%{

             transform: translate(0) scale(1.2);
              color: #FFF;

    }



    100%{

             transform: translate(0) scale(1);
            color: var(--background-color);
            opacity: 1;

    }














}








/* START SMALL SCREEN HERE   */
@media(max-width:540px)
{
    .text 
{
    font-size: 20px;
   

}   
}




/* END SMALL SCREEN HERE  */















/* END TEXT__ANIMATION SECTION HERE  */















/* START STEPS SECTION HERE  */
.steps 
{
    padding: 80px 0px;
    background-color: var(--color);
    color: var(--background-color);

}

.steps .container 
{
    display: flex;
    flex-direction: column;
    
}

.steps .steps__content__step
{
    margin: 40px 0px;
}

.steps .steps__content__step h4 
{
    font-size: 18px;
    font-style: italic;
}


.steps .steps__content__title
{

    margin: 20px 0px;

}

.steps .steps__content__title h2 span
{
    font-size: 18px;
    font-style: normal;
}


.steps .steps__content__title h2 
{
    font-style: italic;
    font-size: 30px;
}


.steps__content__text 
{
    margin: 30px 0px;
}

/* END STEPS SECTION HERE  */



/* START CLASS SECTION HERE  */
.class 
{
    width: 100%;
    height: 650px;
    background-image: url('./../images/sport1.jpg');
    background-size: cover;
    font-style: italic;
}

.class .container
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.class a 
{
    padding: 10px 25px;
    text-decoration: none;
    background-color: var(--background-color);
    color: var(--color);
    border-radius: 10px;
    outline: none;
    border: none;
    margin: 10px 0px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}


.class a:hover 
{
      background-color: var(--color);
    color: var(--background-color);
}




/* END CLASS SECTION HERE  */


/* START CALENDAR SECTION HERE  */

.calendar
{
    width: 100%;
    height: 850px;
    background-color: var(--color);
    color: var(--background-color);
    /* padding: 40px 0px; */

    padding-top: 40px;
    transition: all 0.5s ease-in-out;
}

.calendar .container 
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}





/* START CALENDER SECTION HERE  */

.calendar-container 
{
    /* white for background  */
    background: var(--background-color);
    border-radius: 20px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.3s ease ;

}


.calendar-container:hover 
{
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);

}


.calendar-header 
{
    background: linear-gradient(135deg , var(--primary) 0%, var(--secondary) 100%);
    color: var(--color);
    /* white for color */
    padding: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.calendar-header::before
{
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(circle, rgba(255,255,255,0.1) 0% , rgba(255,255,255,0) 70%) ;
    transform: rotate(30deg);

}

.month-year 
{
    font-size: 1.5rem ;
    font-weight: 600;
    margin-bottom: 0.5rem ;
    position: relative;
}

.nav-buttons
{
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 0 1rem;
    z-index: 1;
}


.nav-btn 
{
    /* background: rgba(255, 255, 255, 0.5); */
    background-color: var(--color);
    color: var(--background-color);
    /* white */
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}


.nav-btn:hover
{
    /* background: rgba(255, 255, 255, 0.3); */
    background-color: var(--background-color);
    color: var(--color);
    /* background-color: red; */
    transform: scale(1.1);

}



.weekdays 
{
    display: grid;
    grid-template-columns: repeat(7,1fr);
    padding: 0.5rem 1rem;
    /* background: rgba(74, 107, 223, 0.1); */
    background: var(--color);
    font-weight: 600;
    color: var(--primary);
}


.weekday
{
    text-align: center;
    padding: 0.5rem ;
    font-size: 0.9rem ;

}


.days 
{
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 5px;
    padding: 1rem;

}

.day 
{
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    color: var(--color);
    /* color: white; */

}
.day:hover
{
    /* background: rgba(74, 107, 223, 0.1); */
    background-color: var(--color);
    color: var(--background-color);
    transform: scale(1.1);
}

.day.today
{
    /* background-color: var(--today); */
    /* background-color: var(--background-color); */
    /* color: white; */
    color: white;
  
    font-weight: bold;
}

.daytodayselected 
{
    /* color: white !important; */
    color: white !important;
}
.daytoday 
{
    color: white !important;
}

.day.selected
{
    /* background: var(--selected); */
    /* background-color: white; */
    /* color: red; */
    color: white !important;
    font-weight: bold;
    animation: pop 0.3s ease;
}

@keyframes pop {
    0%{
        transform: scale(1);
    }

    50% 
    {
        transform: scale(1.2);
    }

    100% 
    {
        transform: scale(1);
    }
}


.day.other-months
{
    color: var(--text);
    /* color: var(--color); */
    /* color: var(--color); */
    opacity: 0.5;
}


.day.has-events::after
{
    content: "";
    position: absolute;
    bottom: 5px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    /* background: var(--accent); */
    background: var(--color);
}


.calendar-footer 
{
    padding: 1rem;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;

}

.today-btn
{
    background: linear-gradient(135deg , var(--accent) 0% ,#00b894 100%);
    /* color: white; */
    color: var(--color);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;

}


.today-btn:hover 
{
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,206,201,0.3);

}

.event-indicator 
{
    font-size: 0.8rem ;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 5px;

}

/* Event panel Styles */

.event-panel
{
    /* background: white; */
    background: var(--background-color);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0 , 0, 0.1);
    padding: 1.5rem;
    width: 100%;
    max-width: 450px;
    height: fit-content;

}


.event-panel-container
{
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.event-panel i 
{
    color: var(--color);
}


.event-header
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(74,107,223 , 0.2);


}



.event-date
{
    font-size: 1.5rem;
    font-weight: 600;
    /* color: var(--primary); */
    color: var(--color);

}


.event-list 
{
    max-height: 350px;
    overflow-y: auto;

}


.event-item 
{
    padding: 1rem;
    margin-bottom: 0.8rem;
    background: var(--event-panel-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 3px 10px rgba(0,0 ,0 ,0.05);
    transition: transform 0.2s ease ;
}


.event-item:hover
{
    transform: translateX(5px);

}



.event-color 
{
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}


.event-time 
{
    font-weight: 600;
    color: var(--primary);
    min-width: 80px;

}


.event-text
{
    flex: 1;
}

.no-events
{
    text-align: center;
    color: var(--text);
    padding: 2rem 1rem ;
    font-style: italic;

}

.event-icon{
    font-size: 1.2rem;
    color: var(--accent);
    margin-right: 10px;


}

@media(max-width:767px)
{
    .container 
    {
        gap: 15px;

    }

    .calendar-container , .event-panel
    {
        width: 100%;
        margin: 0 auto;
    }   

    .event-panel {
        max-width: 400px;

    }

    .event-date 
    {
        font-size: 1.3rem;
        
    }

    .weekdays
    {
        padding: 0px 20px;
    }
}


/* END CALENDER SECTION HERE  */







/* END CALENDAR */



/* START FIT__VIDEO SECTION HERE  */
.fit__video
{
    padding: 60px 0px;
    background-color: var(--color);
    color: var(--background-color);
}

.fit__video .container
{
    display: flex;
    align-items: center;
    justify-content: center;

}


/* END FIT__VIDEO SECTION HERE  */
















/* START SERVICES HERE  */
.services
{
    width: 100%;
    padding: 40px 0px;
    background-color: var(--color);
    color: var(--background-color);
    font-family: var(--font-site);
    font-style: italic;
    text-align: center;
}

.services h3
{
    margin: 30px 0px;
    letter-spacing: 4px;
    position: relative;
}




.services h3::after
{
    content: "";
    width: 80px;
    height: 2px;
    background-color: var(--background-color);
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}

.services .container 
{
     flex-direction: column;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
}


.services .services__content
{
    margin: 15px 0px;
    border: 2px solid var(--background-color);
    padding: 24px 25px;
    border-radius: 10px;
    cursor: pointer;
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.services .services__content:hover
{
    background-color: var(--background-color);
    color: var(--color);
    transform: scale(1.2);
}

.services__content:hover a 
{
    background-color: var(--color);
    color: var(--background-color);
}

.services .services__content p 
{
    margin: 15px 0px;
}

.services .services__content  a 
{
    text-decoration: none;
    padding: 10px 25px ;
    background-color: var(--background-color);
    color: var(--color);
    font-family: var(--font-site);
    font-style: inherit;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;

}   

.services .services__content  a:hover 
{
    color: var(--background-color);
    color: var(--color);
}

/* SMALL SCREENS HERE  */
@media(max-width:540px)
{
    .services .container
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .services .services__content
    {
        transform: scale(1);

        margin: 20px 0px;
    }
    .services .services__content:hover
    {
        transform: scale(1);
        color: var(--color);
        background-color: var(--color);
    }

    .services .services__content:hover h2 
    {
         color: var(--background-color);
    }

}



/* END SMALL SCREENS HERE  */

/* END SERVICES HERE  */
/* START OURSTORE SECTION HERE  */
.ourstore
{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%) , url('https://media3.giphy.com/media/v1.Y2lkPWVjZjA1ZTQ3ZmZ5MGFla3JsNXUwdDl4dmV1dHplYXJiNnZsYmJhYWhpanV0M3Z1diZlcD12MV9naWZzX3NlYXJjaCZjdD1n/4ABoXYN2TJVJJlYnhn/giphy.webp');
    background-size: cover;
    color: var(--background-color);
}

.ourstore .container 
{
    display: flex;
    align-items: center;
    justify-content: center;
}


.ourstore a 
{
    text-decoration: none;
    padding: 10px 25px ;
    background-color: var(--background-color);
    color: var(--color);
    outline: none;
    border-radius: 15px ;
    border: none;
    font-family: var(--font-site);
}




/* END OURSTORE SECTION HERE  */



/* START COUNTER SECTION HERE  */
.counter
{
    padding: 80px 0px;
    background-color: var(--color);

    transition: all 0.3s  ease-in-out;
}

.counter .container
{
    display: flex;
    align-items: center;
    justify-content: center;

}


.counter__content
{
    text-align: center;
    padding: 40px 80px;
    background-color: var(--background-color);
    color: var(--color);
    border-radius: 15px;

}

.counter__content .counter__content__icon
{
    margin: 15px 0px;
    font-size: 40px;
}

.counter__content .counter__content__number span 
{
    font-size: 23px;
}


.counter .icon__plus
{
    color: var(--color);
}
/* END COUNTER SECTION HERE  */



/* START QUESTION SECTION HERE  */
.question
{
    padding: 60px 0px;
    background-color: var(--color);
    color: var(--background-color);
    text-align: center;
    font-family: var(--font-site);
}

.question__title 
{
      margin: 40px 0px;
    letter-spacing: 4px;
    position: relative;    
}


.question__title::after
{
     content: "";
    width: 80px;
    height: 2px;
    background-color: var(--background-color);
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);   
}
.question h3 
{
    margin: 25px 0px;
}


.title__icon i
{
  animation-name: animates;
  animation-duration: 1s;
  animation-iteration-count: infinite;
   
}



   
@keyframes animates {

   
    0%
    {
        transform: scale(1.3);
    }

    50% 
    {
         transform: scale(1.2);
    }

    100%
    {
         transform: scale(1);
    }

}


.question .container
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}



.question h3 span 
{
    font-size: 30px ;
}



.ques 
{
    background-color: #2d2d2d;
    padding: 30px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    margin: 20px 0px;
    
    /* max-width: 100% !important; */
}


.ques:hover
{
    background-color: #545454;


}

.ans 
{
    max-height: 0px;
    width: 100%;
    overflow: hidden;
    transition: max-height 1.3s ease-in-out;
}

.ans p span 
{
    color: #FFF;
}



.ans p a 
{
    padding: 10px 25px ;
    background-color: var(--background-color);
    color: var(--color);
    border-radius: 15px;

    text-decoration: none;
}

.faq i 
{
    transition: all 0.3s ease-in-out;

}

.faq-list
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;

}

/* .faq{
    margin: 20px 0px;
} */


.faq.active  .ans
{
    max-height: 300px;

}


.faq.active i 
{
    transform: rotate(45deg);
    
}

.ans p
{
     background-color: #2d2d2d;
    padding: 30px;
    font-size: 20px;
    border-top: 1px solid #000;
    

}
/* END QUESTION SECTION HERE  */





   /* START SAY SECTION HERE  */
    /* section-header  */
.section-header 
{
    text-align: center;
    margin-bottom:50px;

}

.section-header .title 
{
    font-size: 25px;
    font-weight: 600;
    text-transform: capitalize;
    color: inherit;
    line-height: 1.2;

     margin: 30px 0px;
    letter-spacing: 4px;
    position: relative;
}

.section-header .title::after
{
    content: "";
    width: 80px;
    height: 2px;
    background-color: var(--background-color);
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}

/* testimonials */
.testimonials
{   
    width: 100%;
    background-color: var(--color);
    color: var(--background-color);
    padding: 100px 0;

}

.testimonials-item
{
    background-color: var(--background-color);
    padding: 30px;
    border-radius: 30px;

}


.testimonials-item .info
{
    display: flex;
    align-items: center;

}
.testimonials-item img {
    max-width: 80px;
    border-radius: 50%;
    margin-right: 20px;
    vertical-align: middle;

}


.testimonials-item .name 
{
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 600;
    color: var(--color);
    line-height: 1.2;

}


.testimonials-item .job 
{
    text-transform: capitalize;
    color: var(--color);

}

.testimonials-item p 
{
    margin-top: 20px;
    color: var(--color);

}

.testimonials-item .rating 
{
    margin-top: 15px;
    font-size: 14px;
    color: var(--color);

}


.testimonials .swiper-pagination
{
    position: relative;
    margin-top: 40px;
    bottom: auto;

}

.testimonials .swiper-pagination-bullet
{
    height: 12px;
    width: 12px;
    background-color: var(--background-color);
}

















    /* END SAY SECTION HERE  */








/* START CONTACT  HERE*/
.contact 
{
    padding: 40px 0px ;
    width: 100%;
    background-color: var(--color);
    color: var(--background-color);
    font-family: var(--font-site);
    font-style: italic;
    text-align: center;
}

.contact  h3 
{

    margin: 30px 0px;
    letter-spacing: 4px;
    position: relative;
}

.contact h3::after
{
    content: "";
    width: 80px;
    height: 2px;
    background-color: var(--background-color);
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}



.contact .container 
{
    display: flex;
    align-items: center;
    justify-content: space-evenly;

    
}

.contact contact__content_insta,

.contact__content_whats,

.contact__content_phone
{
    margin: 20px 0px;
    transition: all 0.3s ease-in-out;
 
}


.contact a 
{
    text-decoration: none;
    color: var(--background-color);
    font-size: 23px;
}
.contact a:hover 
{
    opacity: 0.5;
}

/* SMALL SCREENS  */
@media(max-width:540px)
{
    .contact .container 
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

/* END CONTACT HERE  */

/* START FOOTER HERE */
footer
{
    padding: 25px 0px;
    background-color: var(--background-color);
    color: var(--color);
    font-family: var(--font-site);
    font-style: italic;
}
footer .container 
{
    display: flex;
    align-items: center;
    justify-content: center;
}


/* END FOOTER HERE  */



/* START LOADER PAGE HERE  */

.loading
{
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    background-color: var(--color);
    color: var(--background-color);
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
}


.loading.active 
{
    transform: translateY(100%) !important;
}

.loader {
    width: 64px;
    height: 64px;
    position: relative;
    animation: rotate 1.5s ease-in infinite alternate;
  }
  .loader::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    color: var(--background-color);
    background: currentColor;
    width: 64px;
    height: 32px;
    border-radius: 0 0 50px 50px;
  }
  .loader::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 10%;
    background: #FFF;
    width: 8px;
    height: 64px;
    animation: rotate 1.2s linear infinite alternate-reverse;
  }
  
  @keyframes rotate {
    100% { transform: rotate(360deg)}
  }
        






/* END LOADER HERE */



/* STRAT POPUPS */
.pop__ups
{
    width: 350px;
    height: 200px !important;
    background-color: var(--color);
    color: var(--background-color);
    font-family: var(--font-site);
    margin: 120px auto;
    position: fixed;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    padding: 10px 25px;
    border-radius: 15px;
    font-style: italic;
    z-index: 99999;
    transform: translateY(-330%);
    transition: all 0.3s ease-in-out;

}

.pop__ups.active 
{
    transform: translateY(0%);
}
.pop__ups button
{
    float: right;
    padding: 5px 10px;
    font-size: 15px;
    color: var(--color);
    cursor: pointer;
    border-radius: 50%;
    background-color: var(--background-color);
    transition: all 0.3s ease-in-out;

}

.pop__ups button:hover 
{
    background-color: var(--color);
    color: var(--background-color);
}
.pop__ups .container
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pop__ups p 
{
    margin: 20px 0px;
}
.pop__ups a  
{
    text-decoration: none;
    font-size:18px;
    padding: 10px 25px;
    border-radius: 15px;
    background-color: var(--background-color);
    color: var(--color);
    transition: all 0.3s ease-in-out;
}

.pop__ups a:hover 
{
    background-color: var(--color);
    color: var(--background-color);
}

/* END POPUPS  */


/* START NEWS POPUPS HERE  */
.news 
{
    width: 100%;
    height: 60px ;
    background-color: var(--background-color);
    color: var(--color);
    position: fixed;
    bottom: 0px;
    right: 0px;
    left: 0px;
    font-style: italic;
       z-index: 20;
}


.news .news__content 
{
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
}

.news .news__content span
{
    font-weight: 900;
    background-color: var(--color);
    color: var(--background-color);
    padding: 10px 25px;
    border-radius: 20px;
    font-size: 18px;

}


/* END NEWS POPUPS HERE */


/* START CAL SECTION HERE  */
.cal 
{
    position: fixed;
    right: 100%;

    /* left:100% */

    top: 0px;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--color);
    color: var(--background-color);
    z-index: 2000000;
    font-family: var(--font-site);

    transition: all 0.8s ease-in-out;
}

.cal.active 
{
   right: 0% !important;
}
.cal .cal__close
{
    text-align: right;
    margin: 20px ;
    font-size: 23px;
    cursor: pointer;
}


.cal .cal__title
{
    text-align: center;
    margin: 10px;
    font-size: 30px;
}


.cal .container 
{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
}

.cal .cal__content
{
   
    margin-bottom: 10px ;
}

.cal .cal__content input 
{
    width: 100%;
    padding: 10px 40px;
    border: none;
    outline: none;
    border-radius: 15px;
    text-align: left;

}

.cal .cal__content  
{
    text-align: center;
}

.cal .cal__content select 
{
     width: 100%;
    padding: 10px 80px;
    border: none;
    outline: none;
    border-radius: 15px;
    text-align: left;
}
.cal .cal__content label 
{
    margin: 10px 0px;
}

.cal .cal__content  button
{
    padding: 10px 25px;
    background-color: var(--background-color);
    color: var(--color);
    border-radius: 15px;
    outline: none;
    border: none;
    cursor: pointer;
    margin: 20px;
    transition: all 0.3s ease-in-out;
}
.cal .cal__content  button:hover 
{
    color: var(--background-color);
    background-color: var(--color);
}

.cal__result 
{
    transition: all 0.4s ease-in-out;
}

/* END CAL SECTION HERE  */


/* START CALBTN SECTION HERE  */
.scroll-btn
{
   width: 42px ;
    height: 45px ;
    position: fixed;
    left: 30px;
    top: 200px ;
    z-index: 9 ;
    color: var(--color) !important;
    font-family: var(--font-site);
    background-color: var(--background-color);
    text-align: center;
    line-height: 45px;
    border-radius: 6px;
    opacity:1;
    transition: all 0.3s ease-in-out;

      text-decoration: none;
    /* color: var(--white-color) !important; */
    font-size: 27px;
    cursor: pointer;
}



.scroll-btn:hover
{
    background-color: var(--color) !important;
    color: var(--background-color) !important;

}

/* .scroll-btn a:hover  
{
    color: var(--background-color) !important;
}
.show-bb
{
    top: 50px !important;
    opacity: 1 !important;
} */



/* END CALBTN SECTION HERE  */


/* START ALERT__ERORR SECTION HERE  */

.alert__erorr
{
    width: 100%;
    height: 70px;
    background-color: var(--error-background);    
    position: fixed;
    top: -100%;
    left: 0px;
    font-family: var(--font-site);
    z-index:  2300000;
    transition: all 0.8s ease-in-out;
}
.alert__erorr.active 
{
    top: 0% !important;
}

.alert__erorr  .alert__erorr__close
{
    text-align: right;
    margin: 10px;
    cursor: pointer;
}

.alert__erorr .container
{
    display: flex;
    /* align-items: center; */
    justify-content: center;
}




/* START SMALL SCREEN  HERE */
@media(max-width:540px)
{
    .alert__erorr__content p 
    {
        color: var(--color);
    }

}


/* END SMALL SCREEN HERE  */






/* END ALERT__ERORR SECTION HERE */



/* START FOOOD SECTION HERE  */
.food
{
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0px;
    bottom: 0px;
    top: 100%;
    right: 0px;
    background-color: var(--color);
    color: var(--background-color);
     z-index: 2000000;
    font-family: var(--font-site);
    transition: all 0.8s ease-in-out;

}


.food.active 
{
    top:0px!important;
}



.food .food__close
{
    margin: 20px;
    text-align: right;
    font-size: 23px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.food .container 
{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
}

.food .lists 
{
    list-style: none;
    transition: all 0.5s ease-in-out;
    text-align: center;
}


.food .lists li 
{
    display: inline-block;
    padding: 10px 25px;
   
}



.food .lists li button
{
    padding: 10px 25px ;
    background-color: var(--background-color);
    color: var(--color);
    border-radius: 15px;
    border: none; 
    outline: none;
    cursor: pointer;
    transition: all 0.5s ease-in-out;

}

.food .lists li button:hover
{
    background-color: var(--color);
    color: var(--background-color);
}




.food .food__content
{
    margin: 30px 0px;
    text-align: center;
}


.food .food__content__images
 {
        max-width: 100%;
        margin: 20px 0px;
        
        transition: all 0.5s ease-in-out;
 }

 .food .food__content__images img
 {
    max-width: 320px;
     border: 4px solid #FFF;
     /* box-shadow: 5px 10px 8px #888888; */
 }

 .food .food__content__btn 
 {
    margin: 30px 0px;
    text-decoration: none;
    /* font-size: 23px; */
    padding: 10px 25px ;
    background-color: var(--background-color);
    color: var(--color);
    border-radius: 15px;
    border: none; 
    outline: none;
   
    transition: all 0.5s ease-in-out;

 }



  .food .food__content__btn:hover 
  {
    background-color: var(--color);
    color: var(--background-color);
  }


  /* START SMALL SCREENS HERE  */
  @media(max-width:540px)
  {
    .food__close
    {
        margin: 20px  !important;
    }

  
    .food .food__content
    {
        margin: 0px 0px !important;
    }

    .food__content__images 
    {
        margin: 10px 0px !important;
    }
    .food__content__images img 
    {
        max-width: 200px !important;
    }

    .food__content__btn 
    {
        margin: 15px 0px !important;
    }



  }





  /* END SMALL SCREENS HERE  */

/* END FOOD SECTION HERE  */


/* START FOOD BTN SECTION HERE  */
.food-btn
{
    width: 42px ;
    height: 45px ;
    position: fixed;
    /* left: 30px;
    top: 140px ; */

     /* left: 30px;    original*/
     left: 100%;
    top: 270px ;

    /* 
         left: 30px;
        top: 270px ;
    
    */


    z-index: 9 ;
    color: var(--color);
    font-family: var(--font-site);
    background-color: var(--background-color);
    text-align: center;
    line-height: 45px;
    border-radius: 6px;
    opacity:1;
    transition: all 0.3s ease-in-out;
}
.food-btn a
{
    text-decoration: none;
    color: var(--white-color) !important;
    font-size: 27px;

}


.food-btn:hover
{
    background-color: var(--color);

}

.food-btn a:hover  
{
    color: var(--background-color) !important;
}
.food-show-bb
{
    top: 30px !important;
    opacity: 1 !important;
}



/* END FOOD BTN SECTION HERE  */



/* START DIET-BTN SECTION HERE  */
.diet-btn 
{
     width: 42px ;
    height: 45px ;
    position: fixed;
    /* left: 30px;
    top: 270px ; */


    /* left: 30px; original  */
    left: 100%;
    top: 140px ;
    z-index: 9 ;
    color: var(--color);
    font-family: var(--font-site);
    background-color: var(--background-color);
    text-align: center;
    line-height: 45px;
    border-radius: 6px;
    opacity:1;

   
    transition: all 0.3s ease-in-out;
    
}



.diet-btn a
{
    text-decoration: none;
    color: var(--white-color) !important;
    font-size: 27px;
  
     
}


.diet-btn a i 
{
      animation-name: diet;
    animation-duration: 1s;
    animation-iteration-count: infinite;   
}

.diet-btn:hover
{
    background-color: var(--color);

}

.diet-btn a:hover  
{
    color: var(--background-color) !important;
}
.diet-btn-show-bb
{
    top: 30px !important;
    opacity: 1 !important;
}




@keyframes diet {
    0% 
    {
        transform: rotate(180deg);
    }

  
    25%
    {
        transform: rotate(90deg);
    }

    50%
    {
         transform: rotate(45deg);  
    }

    100%
    {
        transform: rotate(0deg);
    }

}





/* END DIET-BTN SECTION HERE  */



/* START DIET CON SECTION HERE  */
.diet__con 
{
    position: fixed;
      left: 0px;
    right: 900%; 

    /* left:900% */

    top: 0px;
    bottom: 0px;  
    width: 100%;
    height: 100vh;
    background-color: var(--color);
    color: var(--background-color);
    font-family: var(--font-site);
    z-index: 2000000;
     transition: all 0.8s ease-in-out;
   
}


.diet__con.active
{
    right: 0% !important;
}

.diet__con .diet__con__close
{
    font-size: 23px;
    text-align: right;
    margin: 20px;
    cursor: pointer;
     transition: all 0.8s ease-in-out;

}
.diet__con .container 
{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
}


.diet__con .diet__con__content__images 
{
    display: inline-block;
}

.diet__con__content__images img
{
    max-width: 350px ;
    margin: 35px ;
    border: 4px solid #FFF;
}


.diet__con .diet__con__content__btn 
{
    margin: 30px 0px;
    text-decoration: none;
    /* font-size: 23px; */
    padding: 10px 25px ;
    background-color: var(--background-color);
    color: var(--color);
    border-radius: 15px;
    border: none; 
    outline: none;
    transition: all 0.5s ease-in-out;
}


.diet__con .diet__con__content__btn:hover 
{
    color: var(--background-color);
    background-color: var(--color);
}



/* START SMALL SCREENS HERE  */
@media(max-width:540px)
{

    .diet__con .diet__con__close
    {
        margin: 10px;
    }

    .diet__con .container
    {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .diet__con__content__images img
    {
        max-width: 200px;
        /* margin: 30px 0px; */
    }

    .diet__con .diet__con__content__btn 
    {
        margin: 10px 0px;
    }
}



/* END SMALL SCREENS HERE  */

/* END DIET CON SECTION HERE  */



/* START SUB SECTION HERE  */
.sub
{
       width: 42px ;
    height: 45px ;
    position: fixed;
    right: 10px;
    bottom: 140px ;
    z-index: 9 ;
    color: var(--background-color);
    font-family: var(--font-site);
    background-color: var(--color);
    text-align: center;
    line-height: 45px;
    border-radius: 6px;
    transform: translateX(150%);
    opacity:1;
    transition: all 1.5s ease-in-out;

    
}

.sub.active 
{
    transform: translateX(0%);
}







.sub__btn  i 
{
   text-decoration: none;
    color: var(--background-color);
    background-color: inhert;
    font-size: 18px;
     cursor: pointer;
    animation-name: sub1;
    animation-duration: 1s;
    animation-iteration-count: infinite; 
}






@keyframes sub1 
{
    0%
    {
        transform: scale(1.2);
    }
    50% 
    {
         transform: scale(1.1);
    }
    100%
    {
        transform: scale(1);
    }


}


/* END SUB SECTION HERE  */


/* START SUB__CONTENT SECTION HERE  */
.sub__content
{
    position: fixed;
      right: 0px;
    left: 0px;
    top: 0px;
    bottom: 0px;  
    width: 100%;
    height: 100vh;
    background-color: var(--color);
    color: var(--background-color);
    font-family: var(--font-site);
    z-index: 2000000;
    overflow-y: auto;
    text-align: center;
    padding: 6px;
    transform: translateX(100%);
     transition: all 0.8s ease-in-out;
}

.sub__content.active 
{
    transform: translateX(0%);
}




.sub__content__close
{
    font-size: 23px;
    text-align: right;
    margin: 10px;
    cursor: pointer;
}




.sub__content .container 
{
   display: flex;
   align-items: center;
   justify-content: center;
}


.sub__content .services__content
{
    margin: 15px 0px;
    border: 2px solid var(--background-color);
    padding: 24px 25px;
    border-radius: 10px;
    cursor: pointer;
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.sub__content .services__content:hover
{
    background-color: var(--background-color);
    color: var(--color);
    transform: scale(1.2);
}

.sub__content  .services__content:hover a 
{
    background-color: var(--color);
    color: var(--background-color);
}

.sub__content .services__content p 
{
    margin: 15px 0px;
}

.sub__content .services__content  a 
{
    text-decoration: none;
    padding: 10px 25px ;
    background-color: var(--background-color);
    color: var(--color);
    font-family: var(--font-site);
    font-style: inherit;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;

}   

.sub__content .services__content  a:hover 
{
    color: var(--background-color);
    color: var(--color);
}

/* SMALL SCREENS HERE  */
@media(max-width:540px)
{
    .sub__content 
    {
        padding: 20px 0px;
    }
    .sub__content .container
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* justify-content: center; */
        height: 100%;
    }

    .sub__content .services__content
    {
        transform: scale(1);
        
        margin: 20px 0px;
    }
    .sub__content .services__content:hover
    {
        transform: scale(1);
        color: var(--color);
        background-color: var(--color);
    }

    .sub__content .services__content:hover h2 
    {
         color: var(--background-color);
    }

}








/* END SCREEN  */














/* END SUB__CONTENT SECTION HERE  */


/* START LANG-BTN SECTION HERE  */
.lang-btn
{
       width: 42px ;
    height: 45px ;
    position: fixed;
    left: 30px;
    top: 265px ;
    z-index: 9 ;
    color: var(--color);
    font-family: var(--font-site);
    background-color: var(--background-color);
    text-align: center;
    line-height: 45px;
    border-radius: 6px;
  
    opacity:1;
    transition: all 0.3s ease-in-out;

}

.lang-btn i
{
      text-decoration: none;
    color: inherit;
    background-color: inherit;
    font-size: 24px;   
    cursor: pointer; 
}

.lang-btn:hover 
{
    color: var(--background-color);
    background-color: var(--color);
}



/* END LANG-BTN SECTION HERE  */




/*  START LANG__CONTENT SECTION HERE   */
.lang__content 
{
      position: fixed;
      right: 0px;
    left: 0px;
    top: 0px;
    bottom: 0px;  
    width: 100%;
    height: 100vh;
    background-color: var(--color);
    color: var(--background-color);
    font-family: var(--font-site);
    z-index: 2000000;
    overflow-y: auto;
    text-align: center;
    padding: 6px;   
    transform: translateY(-100%);
     transition: all 0.8s ease-in-out;
}

.lang__content.active 
{
    transform: translateY(0%);
}




.lang__content .lang__content__close
{
    text-align: right;
    margin: 15px;
    font-size: 23px;
    cursor: pointer;
}

.lang__content .container
{
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang__content img 
{
    max-width: 150px;
    border-radius: 15px ;
    border: 3px solid var(--background-color);
    padding: 4px;
}



.lang__content__flag__en , .lang__content__flag__ar , 
.lang__content__flag__sp 
{
    margin: 15px 0px;
}


/* SMALL SCREEN HERE  */

@media(max-width:540px)
{
    .lang__content .container
    {
        justify-content: flex-start !important;
    }
}


/* END SMALL SCREEN  */

/* END LANG__CONTENT SECTION HERE  */








/* START PAGE 2 HERE  */

.header__services 
{
    width: 100%;
    height: 100vh;
    background-image: url('https://images.pexels.com/photos/163351/girl-boxer-ring-boxing-pear-163351.jpeg');
    background-size: cover;
    background-attachment: fixed;
}

.header__services h2 
{
    font-size: 65px;
    color: var(--background-color);
}


/* SMALLL SCREEN HERE  */
@media(max-width:540px)
{
    .header__services 
    {
        background-attachment: unset !important;
        background-image: url('https://images.pexels.com/photos/136405/pexels-photo-136405.jpeg');
        background-size: cover;
    }
    .header__services h2 
    {
        font-size: 45px;
    }
}



/* END SMALL SCREEN  */


/* START SCROLL__BTN__CALL SECTION HERE  */

.scroll__btn__call
{
    width: 42px ;
    height: 45px ;
    position: fixed;
    right: -100%;
    top: 40px;
    z-index: 9 ;
    color: var(--color);
    font-family: var(--font-site);
    background-color: var(--background-color);
    text-align: center;
    line-height: 45px;
    border-radius: 6px;
    transition: all 1.5s ease-in-out;
}

.scroll__btn__call.active 
{
    right: 30px;
}

.scroll__btn__call a 
{
    text-decoration: none;
    font-size: 23px; 
    color: inherit;
}





/* END  SCROLL__BTN__CALL SECTION HERE  */






/* START OUR CLIENTS SECTION HERE  */

.clients
{
    padding: 60px 0px;
    background-color: var(--color);
    color: var(--background-color);
    font-family: var(--font-site);
    text-align: center;
}

.clients h3 
{
     margin: 30px 0px;
    letter-spacing: 4px;
    position: relative;
}


.clients h3::after
{
     content: "";
    width: 80px;
    height: 2px;
    background-color: var(--background-color);
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%); 
}



.clients .container 
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.clients .clients__image
{
    margin: 15px 0px;
    transition: all 0.6s ease-in-out;
}

.clients .clients__image img 
{
    max-width: 500px;
    border: 3px solid var(--background-color);
    padding: 4px;
    border-radius: 15px;
}




.clients  .clients__content button 
{
    padding: 5px 15px;
    background-color: var(--background-color);
    color: var(--color);
    border-radius: 20px;
    margin: 15px 20px ;
    font-size: 23px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;

}

.clients  .clients__content button:hover 
{
    background-color: var(--color);
    color: var(--background-color);
}


/* SMALL SCREENS HERE  */
@media(max-width:540px)
{
    .clients .clients__image  img 
    {
        max-width: 300px !important;
    }
}


/* END SMALL SCREEN HERE  */
/* END OUR CLIENTS SECTION HERE  */


/* END PAGE 2 HERE  */





/* START CONNECTIONS POPUPS HERE  */

/* START OFFLINE SECTION HERE  */
.offline
{
    position: fixed;
    top: -100% ;
    left: 0px ;
    right: 0px;
    background-color: var(--background-color);
    color: var(--color);
    font-family: var(--font-site);
    width: 100%;
    border-radius: 15px;
    text-align: center;
    transition: all 0.5s  ease-in-out;
    /* z-index: 9999999999999999; */
}

.offline.active
{
    top: 0% !important;
}



.offline .offline__close
{
    text-align: right;
    margin: 10px;
    font-size: 23px;
    color: var(--color);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.offline .offline__close:hover 
{
    opacity: 0.4;
}





.offline p 
{
    margin: 10px 0px;
    
    
}




/* start small screen here  */
@media(max-width:540px)
{
    .offline p 
    {
        color: var(--color);
    }
}



/* end small screen here */

/* END OFFLINE SECTION HERE  */


/* START ONLINE SECTION HERE  */

.online
{
    position: fixed;
    top: -100% ;
    left: 0px ;
    right: 0px;
    background-color: var(--background-color);
    color: var(--color);
    font-family: var(--font-site);
    width: 100%;
    border-radius: 15px;
    text-align: center;
    transition: all 0.5s  ease-in-out;
    /* z-index: 9999999999999999; */
}

.online.active
{
    top: 0% !important;
}



.online .online__close
{
    text-align: right;
    margin: 10px;
    font-size: 23px;
    color: var(--color);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.online .online__close:hover 
{
    opacity: 0.4;
}





.online p 
{
    margin: 10px 0px;
    
    
}




/* start small screen here  */
@media(max-width:540px)
{
    .online p 
    {
        color: var(--color);
    }
}



/* end small screen here */




/* END ONLINE SECTION HERE  */


/* END CONNECTIONS POPUPS HERE  */

/* START COOKIES SECTION HERE  */
.cookies
{
    
    /* margin: 120px auto; */
 background-color: var(--background-color);
    color: var(--color);
    
    font-family: var(--font-site);
    position: fixed;
    bottom: 80px;
    /* right: 0px ; */
    left: 0px;
    width: 360px;
    min-height: 180px;
    padding: 20px 30px;
    border-radius: 20px;
    text-align: center;    
    display: none;
    transition: all 1s ease-in-out;
   z-index: 10;
   

}



/* .cookies.active 
{
    right: 0px;

     transition: all 1s ease-in-out;
} */

.cookies .container 
{
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
}


.cookies .cookies__text
{
    
    margin: 10px 0px;
    color: var(--color);
}


.cookies .cookies__btn
{
    padding: 10px 25px;
    background-color: var(--color);
    color: var(--background-color);
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.cookies .cookies__btn:hover 
{
    background-color: var(--golden-color);
    color: var(--white-color);
}



/* START  SMALL SCREEN  */
@media(max-width:540px)
{
    .cookies
    {
       right: 10px;
       left: 10px;
         padding: 20px 20px;

    }

    .cookies.active
    {
        right: 0px;
        /* left: 0px; */
        transition: all 1s ease-in-out;
    }
}



/* END SMALL SCREEN  */
/* END COOKIES SECTION HERE  */



/* START ALI__BOOK SECTION HERE  */
.ali__book
{
     position: fixed;
      right: 0px;
    left: 0px;
    top: 0px;
    bottom: 0px;  
    width: 100%;
    height: 100vh;
    background-color: var(--color);
    color: var(--background-color);
    font-family: var(--font-site);
    z-index: 9999;
    /* opacity: 0; */
    overflow-y: auto;
    text-align: center;
    padding: 6px;   
    transform: translateY(-100%);
     transition: all 0.8s ease-in-out;
}

.ali__book.active 
{
       transform: translateY(0%);
}


.ali__book__close
{
       margin: 20px;
    text-align: right;
    font-size: 23px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}


.ali__book .container
{
    display: flex;
    justify-content: center;
}


.ali__book__content__images
{
     margin: 20px 0px;
}

.ali__book__content__images img
{
     max-width: 250px;
    border: 3px solid var(--background-color);
    padding: 4px;
    border-radius: 15px;
}


.ali__book__content__btn 
{
     padding: 10px 25px;
    background-color: var(--background-color);
    color: var(--color);
    border-radius: 10px;
    outline: none;
    border: none;
    margin: 10px 0px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

.ali__book__content__btn:hover
{
     color: var(--background-color);
    background-color: var(--color);
}
/* END ALI__BOOK SECTION HERE  */


/* START PAGE 3 HERE  */

/* START COOKIES__CONTENT SECTION HERE  */
.cookies__content
{
    padding: 20px 0px;
    background-color: var(--color);
    color: var(--background-color);
    font-family: var(--font-site);

}
.cookies__content h2 
{
    margin: 20px;
}

.cookies__content p 
{
    text-align: center;
    letter-spacing: 2px;
}



/* END COOKIES__CONTENT SECTION HERE  */



/* START MANGE__COOKIES SECTION HERE  */
.mange__cookies
{
        padding: 20px 0px;
    background-color: var(--color);
    color: var(--background-color);
    font-family: var(--font-site);
    text-align: center;   
}

.mange__cookies  h2 
{
     margin: 20px;    
}

.mange__cookies p 
{
     text-align: center;
    letter-spacing: 2px;
    margin: 15px 0px;   
}


.mange__cookies ol li 
{
     margin: 15px 0px;
}
.mange__cookies ol li a
{
    color: var(--background-color);
   
}

/* END MANGE__COOKIES SECTION HERE  */


/* END PAGE 3 HERE  */


/* START POPUP 2 SECTION HERE  */
/* START CHAT SECTION HERE  */
/* Floating Chat Icon */
#chatbot-icon {
  /* position: fixed;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: #d32f2f;
  color: white;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s; */



     width: 42px ;
    height: 45px ;
    position: fixed;
     left: 30px;
    bottom: 150px ;

    /* left 30px   top 130 px */

    z-index: 9 ;
    color: var(--background-color);
    font-family: var(--font-site);
    background-color: var(--color);
    text-align: center;
    line-height: 45px;
    border-radius: 6px;
    font-size: 23px;
    cursor: pointer;
    transform: translateX(-180%);
    transition: all 0.8s ease-in-out;
}


#chatbot-icon.active 
{
     transform: translateX(0%);
}



#chatbot-icon:hover {
  /* background-color: #b71c1c;
  transform: scale(1.1); */
  background-color: var(--background-color);
  color: var(--color);
}


/* Chatbot Container */
#chatbot-container {
  position: fixed;
  left: 10px;
 bottom: 140px ;
  width: 350px;
  height: 450px;
  background-color: #1f1f1f;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  z-index: 2222222;
  overflow: hidden;
  transform: translateX(-180%);
  transition: all 0.8s ease-in-out;
}
#chatbot-container.active
{
    transform: translateX(0%);
     transition: all 0.8s ease-in-out;
}
/* Hide Chatbot Initially */
/* .hidden {
  display: none !important;
} */

/* Chatbot Header */
#chatbot-header {
  background-color: var(--background-color);
  color:var(--color) ;
  padding: 15px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
}

#close-btn {
  background: none;
  border: none;
  color: var(--color);
  font-size: 23px;
  cursor: pointer;
}

/* Chatbot Body */
#chatbot-body {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
}

/* Chatbot Messages */
#chatbot-messages {
  display: flex;
  flex-direction: column;
}

.message {
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 8px;
  max-width: 85%;
}

.message h3 
{
    margin: 10px 0px;
}


.message .container
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.message a.message__link 
{
    text-decoration: none;
    padding: 10px 25px ;
    background-color: var(--color);
    color: var(--background-color);
    margin: 5px 0px;
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
}

.message a.message__link:hover
{
    color: var(--color);
    background-color: var(--background-color);
}
.message.user {
  background-color: var(--color);
  color: var(--background-color);
  align-self: flex-end;
}

.message.bot {
  background-color: var(--background-color);
  color: var(--color);
  align-self: flex-start;
  text-align: center;
}

/* Input Section */
#chatbot-input-container {
  display: flex;
  padding: 10px;
  border-top: 1px solid #444;
  background-color: var(--background-color);
}

#chatbot-input {
  flex: 1;
  padding: 10px;
  border: 1px solid var(--color);
  border-radius: 10px;
  background-color: var(--color);
  color: var(--background-color);
}

#send-btn {
  margin-left: 10px;
  padding: 10px 15px;
  background-color: var(--color);
  color: var(--background-color);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

/* #send-btn:hover {
  background-color: var(--background-color);
  color: var(--color);
} */




.link__message
{
    text-decoration: none;
    color: var(--color);
}


/* END CHAT SECTION HERE  */



/* END POPUP 2 SECTION HERE  */