/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2025 by Sendos
 */

.rtl {
  direction: rtl;
  text-align: right;
}

.arabicFont {
  font-family: 'Cairo', sans-serif;
}
.arabicFont #logo1{
  font-size: 40px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.arabicFont #logo1 p{
  font-size: 25px;
}

/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --battleship-gray: hsl(0, 0%, 53%);
  --viridian-green: #4b4f4d;
  --silver-chalice: hsl(0, 0%, 69%);
  --mikado-yellow: #f2925f;
  --granite-gray: hsl(0, 0%, 40%);
  --independence: hsl(132, 5%, 39%);
  --spanish-gray: hsl(0, 0%, 61%);
  --oxford-blue: hsl(222, 46%, 17%);
  --black-coral: hsl(223, 8%, 44%);
  --eerie-black: hsl(210, 11%, 15%);
  --light-gray: hsl(0, 0%, 80%);
  --white-2: hsl(0, 0%, 98%);
  --white-1: hsl(0, 0%, 100%);
  --white-3: #fff;
  --black: hsl(0, 0%, 0%);
  --jet: hsl(0, 0%, 20%);

  /**
   * typography
   */

  --ff-abril-fatface: 'Petrov Sans-Trial', sans-serif;
  --ff-comforter-brush: 'Petrov Sans-Trial', sans-serif;
  --ff-heebo: 'Petrov Sans-Trial', sans-serif;

  --fs-1: 3rem;
  --fs-2: 2.6rem;
  --fs-3: 2.2rem;
  --fs-4: 1.9rem;
  --fs-5: 1.8rem;
  --fs-6: 1.7rem;
  --fs-7: 1.4rem;
  --fs-8: 1.2rem;

  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /**
   * border radius
   */

  --radius-6: 6px;

  /**
   * spacing
   */

  --section-padding: 40px;


  /**
   * transition
   */

  --transition-1: 0.15s ease;
  --transition-2: 0.35s ease;
  --cubic-out: cubic-bezier(0.33, 0.85, 0.56, 1.02);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

a,
img,
span,
input,
button,
ion-icon {
  display: block;
}

input,
button {
  border: none;
  background: none;
  font: inherit;
}

button {
  cursor: pointer;
}

input {
  width: 100%;
}

img {
  height: auto;
}

address {
  font-style: normal;
}

:focus-visible {
  outline-offset: 5px;
}

html {
  font-family: 'Petrov Sans-Trial', sans-serif;
  font-size: 10px;
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background: var(--white-1);

  font-size: 1.6rem;
  direction: ltr;
  transition: all 0.3s ease;
  max-width: 100%;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: hsl(0, 0%, 95%);
}

::-webkit-scrollbar-thumb {
  background: hsl(0, 0%, 80%);
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(0, 0%, 70%);
}




/* preloading ------------------------------------------------------------------------------------- */





/*-----------------------------------*\
  #PRELOAD
\*-----------------------------------*/

.preload {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2a2927;
  z-index: 10;
  display: flex;
  flex-direction: column;
align-items: center;
justify-content: center;
  transition: var(--transition-2 , 1s);
  direction: ltr !important;
  unicode-bidi: plaintext;
  overflow: hidden;
}

.loader-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  width: auto;
  margin: 2rem;
  font-family: "Poppins", sans-serif;
  font-size: 1.6em;
  font-weight: 600;
  user-select: none;
  color: #fff;
  scale: 2;
 
}

.loader {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;

  background-color: transparent;
  mask: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 6px,
    black 7px,
    black 8px
  );
}

.loader::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-image: radial-gradient(circle at 50% 50%, #ff0 0%, transparent 50%),
    radial-gradient(circle at 45% 45%, #f00 0%, transparent 45%),
    radial-gradient(circle at 55% 55%, #0ff 0%, transparent 45%),
    radial-gradient(circle at 45% 55%, #0f0 0%, transparent 45%),
    radial-gradient(circle at 55% 45%, #00f 0%, transparent 45%);
  mask: radial-gradient(
    circle at 50% 50%,
    transparent 0%,
    transparent 10%,
    black 25%
  );
  animation:
    transform-animation 2s infinite alternate,
    opacity-animation 4s infinite;
  animation-timing-function: cubic-bezier(0.6, 0.8, 0.5, 1);
}

@keyframes transform-animation {
  0% {
    transform: translate(-55%);
  }
  100% {
    transform: translate(55%);
  }
}

@keyframes opacity-animation {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

.loader-letter {
  display: inline-block;
  opacity: 0;
  animation: loader-letter-anim 4s infinite linear;
  z-index: 2;
}

.loader-letter:nth-child(1) {
  animation-delay: 0.1s;
}
.loader-letter:nth-child(2) {
  animation-delay: 0.205s;
}
.loader-letter:nth-child(3) {
  animation-delay: 0.31s;
}
.loader-letter:nth-child(4) {
  animation-delay: 0.415s;
}
.loader-letter:nth-child(5) {
  animation-delay: 0.521s;
}
.loader-letter:nth-child(6) {
  animation-delay: 0.626s;
}
.loader-letter:nth-child(7) {
  animation-delay: 0.731s;
}
.loader-letter:nth-child(8) {
  animation-delay: 0.837s;
}
.loader-letter:nth-child(9) {
  animation-delay: 0.942s;
}
.loader-letter:nth-child(10) {
  animation-delay: 1.047s;
}

@keyframes loader-letter-anim {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
    text-shadow: 0 0 4px #fff;
    transform: scale(1.1) translateY(-2px);
  }
  20% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}

/* /////////////////////////////////////////////////////// */
.loaderhome {
  display: flex;
  justify-content: center;
  align-items: center;
  /* Add these properties to position the loader properly */
  position: relative;
  width: 90px;
  height: 103px;
 /* Adjust the height to accommodate the "h4" span */
}

.loaderhome div {
  position: absolute;
  width: 50px;
  height: 31px;
}

.rot {
  transform: rotate(150deg);
}

.rot2 {
  transform: rotate(20deg);
}

.loaderhome div:nth-of-type(2) {
  transform: rotate(60deg);
}

.loaderhome div:nth-of-type(3) {
  transform: rotate(-60deg);
}

.loaderhome div div {
  width: 100%;
  height: 100%;
  position: relative;
}

.loaderhome div div span {
  position: absolute;
  width: 4px;
  height: 0%;
  background: #fefefe;
  z-index: 999999;
}

.h1 {
  left: 0;

}

.h2 {
  right: 0;
}

.h3 {
  right: 0;
}

.h4 {
  top: 10px;
  left: 23px;
  transform: rotate(90deg);
}

.h5 {
  bottom: 0;
}

.h6 {
  left: 0;
}




.word2{
  font-size: 1.5rem;
  color: white;
  margin-top: -50px;
  opacity: 0;
  white-space: pre;
  text-align: center;
}
.preload.loaded>* {
  opacity: 0;
}

.preload.loaded {
  /* transition-delay: 5s; time */
  transition:  transform 1s ease;
  transform: translateY(100%);
}














/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  max-width: 100%;
  overflow-x: hidden;
}

.btn {
  background: var(--background, var(--white-1));
  color: var(--color, var(--viridian-green));
  font-weight: var(--fw-700);
  width: max-content;
  padding: 10px 25px;
  border: 2px solid var(--border-color, var(--white-1));
  border-radius: var(--radius-6);
}

.btn-secondary:is(:hover, :focus) {
  --background: transparent;
  --color: var(--mikado-yellow);
}

.btn-primary {
  --background: #2f4d32;
  --color: var(--white-1);
  --border-color: #2f4d32;
}

.btn-primary:is(:hover, :focus) {
  --background: transparent;
  --color: #2f4d32;
}









.btn-outline {
  --color: var(--oxford-blue);
  --border-color: var(--silver-chalice);
}

.btn-outline:is(:hover, :focus) {
  --color: var(--viridian-green);
  --border-color: var(--viridian-green);
}



.section-subtitle {
  font-family: var(--ff-heebo);
  color: var(--mikado-yellow);
  font-size: var(--fs-1);
  font-weight: 300;
  margin-top: 50px;
}

.w-100 {
  width: 100%;
}

.h2 {
  color: #2f4d32;
  font-size: var(--fs-3);
  font-weight: var(--fw-500);
}

.h3 {
  font-size: var(--fs-4);
  font-weight: var(--fw-400);
}

.section-title {
  font-family: var(--ff-heebo);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-banner {
  background: var(--silver-chalice);
}

:is(.popular, .blog) .section-subtitle {
  text-align: center;
  margin-bottom: 10px;
}

:is(.popular, .blog) .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.popular-list,
.blog-list {
  display: grid;
  gap: 30px;
}

.popular-card,
.blog-card {
  box-shadow: 0 10px 30px hsla(0, 0%, 0%, 0.1);
  border-radius: var(--radius-6);
  overflow: hidden;
}

:is(.popular, .blog) .card-banner {
  position: relative;
}

.card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--mikado-yellow);
  color: var(--white-1);
  padding: 14px 10px;
  border-radius: var(--radius-6);
}

.card-badge ion-icon {
  --ionicon-stroke-width: 60px;
  font-size: 20px;
  margin-inline: auto;
}

.card-badge time {
  font-weight: var(--fw-700);
}

:is(.popular, .blog) .card-content {
  padding: 30px 15px;
}

.card-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

:is(.popular, .blog) .card-title {
  color: var(--granite-gray);
  font-size: var(--fs-7);
  margin-block: 20px;
}

:is(.popular, .blog) .card-title>a {
  color: inherit;
}

:is(.popular, .blog) .card-title>a:is(:hover, :focus) {
  color: var(--viridian-green);
}





/*-----------------------------------------------------------------------------------------------------------------------------------------------------------*\
  #HEADER
\*-----------------------------------*/

.header {
  background: var(--viridian-green);
  padding-block: 10px;
  height: 7rem;
  overflow: hidden;
  transition: 0.25s var(--cubic-out);
}

.header.active {
  height: 445px;
  transition-duration: 0.35s;
}

.header .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--white-1);
  font-size: var(--fs-4);
    font-family: "Changa", sans-serif;
  font-weight: var(--fw-600);
  display: flex;
  justify-items: center;
  align-items: baseline;
}

.logo p {
  font-size: var(--fs-8);
  margin-left: 3px;
  font-family: "Changa", sans-serif;
}

.whatsappContent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f2935fe6;
  color: white !important;
}

.whatsapp {
  width: 25px;
  margin-right: 1rem;
}

.nav-toggle-btn.active .open,
.nav-toggle-btn .close {
  display: none;
}

.nav-toggle-btn .open,
.nav-toggle-btn.active .close {
  display: block;
}

.nav-toggle-btn ion-icon {
  color: var(--white-1);
  font-size: 35px;
  --ionicon-stroke-width: 40px;
}

.imageMain {
  width: 30px;
}

.navbar {
  width: 100%;
  padding: 0px 10px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-1);
}

.header.active .navbar {
  opacity: 1;
  visibility: visible;
}

.navbar-list {
  margin-bottom: 10px;
}

.navbar-link {
  color: var(--white-1);
  font-size: var(--fs-5);

  padding-block: 10px 0;
  border-bottom: 2px solid transparent;
  width: max-content;
}

.navbar-link:is(:hover, :focus) {
  border-color: var(--white-1);
}





/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*\
  #HERO
\*-----------------------------------*/

.Home{
  width: 100%;
  height: 100vh;
 
}
.containerHome{
  direction: ltr !important;
}
.containerHome .content {
  text-align: center;
  position: absolute;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.containerHome .content h1 {
  font-size: 70px;
  color: #ffffff;
  font-family: "Roslindale";

}
.containerHome .content p {
  color: #ded9d3;
   font-size: 30px;
}
.backgroundVideo {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.social-icons {
  position: relative;
  z-index: 2;
}

.social-icons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  height: 2rem;
  width: 2rem;
  border-radius: 100rem;
  border: none;
  background-color: #f9f9f9a7;
}

.socialcontent {
  display: flex;
  flex-direction: column;
  gap: 8px;

}


 .social-icons {
    position: absolute;
    height: 100%;
    top: 23%;
    right: 2.5rem;
    width: auto;
  }

  .social-icons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px;
    height: 2rem;
    width: 2rem;
    border-radius: 100rem;
    border: none;
    background-color: #f9f9f9a7;
  }

  .socialcontent {
    display: flex;
    flex-direction: column;
    gap: 8px;

  }
/* @media (min-aspect-ratio:16/9) {
  .backgroundVideo {
    width: 100%;
    height: auto;
  }
}

@media (max-aspect-ratio:16/9) {
  .backgroundVideo {
    width: 100%;
    height: 100vh;
  }
} */

/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*\
  #DESTINATION
\*-----------------------------------*/

.destination .section-subtitle {
  text-align: center;
  margin-bottom: 15px;
}

.destination .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.destination-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.destination-card {
  position: relative;
  border-radius: var(--radius-6);
  overflow: hidden;
}

.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(hsla(222, 46%, 17%, 0), hsla(222, 46%, 17%, 0.7));
}

.destination-card img {
  transition: var(--transition-2);
}

.destination-card:is(:hover, :focus) img {
  transform: scale(1.1);
}

.destination-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 1;
}

.destination-card .card-subtitle {
  color: var(--mikado-yellow);
  font-family: var(--ff-comforter-brush);
  font-size: var(--fs-5);
}

.destination-card .card-title {
  color: var(--white-1);
  font-family: var(--ff-abril-fatface);
}










/*-----------------------------------------------------------------------------------------------------------------------------------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about-content {
  margin-bottom: 50px;
  text-align: center;
  font-family: var(--ff-heebo);
}

.about .section-subtitle {
  margin-bottom: 10px;
}

.about .section-title {
  margin-bottom: 20px;
}

.about-text,
.about-item-text {
  color: var(--battleship-gray);
  font-size: var(--fs-6);
  line-height: 1.7;
}

.about-text {
  margin-bottom: 30px;

}

.counters {
  padding: 3em 2em;
  background: #fff;
  color: #4b4f4d;
  text-align: center;
}

.counters>div {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4em 2em;
}


.counter {
  position: relative;
}

.counter h1 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.about-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.about-item1{
width: 100%;
}
.about-item-icon {
  background: #2f4d32;
  color: var(--white-1);
  font-size: 26px;
  padding: 16px;
  border-radius: 50%;
  margin-top: 5px;
}

.about-item-title {
  color: #2f4d32;
  font-weight: 300;
  margin-bottom: 5px;
}

.about-item-content{
      display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

}
.about-item-content h3{
   width: 100%;

}
.buttonsforProjects {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.Viewallproject {
  width: 25%;
  /* align-items: center; */
  justify-content: center;
  display: flex;
  margin-top: 10px;
  margin-bottom: 10px;

}

.Viewallproject a {
  width: min(100%, 300px);
  font-size: medium;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Gotoinstagram {
  width: 25%;
  /* align-items: center; */
  justify-content: center;
  display: flex;
}

.Gotoinstagram a {
  width: min(100%, 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: medium;
  border: 1px solid #2f4d32;
}


/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*\
  #clients
\*-----------------------------------*/
.slider {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider img {
  width: 100px;
  height: auto;
  object-fit: cover;
}

.slider .row {
  display: flex;
  width: calc(100px * 18);
  animation: slider 20s linear infinite;
}

@keyframes slider {
  0% {
    transform: translateX(0);
  }

  0% {
    transform: translateX(calc(100px *2));
  }
}

.slider img:hover {
  transform: translateZ(15px);
}

.slider .column {
  perspective: 100px;
  padding: 15px;
}

/* map  ----------------------------------------------------------------------------*/
.container-map{
  background: none;
 
}
.map-wrapper {
  max-width: 100%;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 380px;
  border: none;
  pointer-events: none; /* يمنع تحريك الخريطة */
}

.map-wrapper a {
  display: block;
  position: relative;
}

.map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
  backdrop-filter: blur(2px);
}

.map-wrapper:hover .map-overlay {
  opacity: 1;
}

.map-wrapper:hover {
  transform: translateY(-4px);
  transition: transform 0.3s ease;
}
.map-wrapper iframe {
  width: 100%;
  height: 380px;
  border: none;
  pointer-events: none;
}


/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*\
  #Offers
\*-----------------------------------*/
.offers{
  width: 100%;
  height: 100vh;
  background: #ffffff4c;
  position: relative;
}
.offers .box{
  /* width: 500px; */
  width: 335px;
  min-height: 500px;
  background: #ded9d3;
  padding: 50px;
  text-align: center;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  color: #555;
animation: glow 2s infinite alternate;
}
@keyframes glow {
  from {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    background: #ded9d3;
  }
  to {
    box-shadow: 0 0 30px 10px #2f4d32b2;
    background: #fff4ec;
  }
}
.offers .box h2{
  font-size: 16px;
  margin-bottom: 20px;
    padding: 4px;
  text-transform: uppercase;
}
.offers .box h1{
   font-size: 22px;
  margin-bottom: 20px;
  color: #2f4d32;
  font-weight: 500;
}
.offers .box h1 span{
  font-size: 22px;
  color: #555;
}
.offers .box b{
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}
.offers .box p{
  font-size: 14px;
  margin-bottom: 20px;
}
.offers .box button{
  display: block;
  margin: 30px auto;
  border: 0;
  outline: 0;
  background: #2f4d32;
  color: #fff;
  padding: 12px 40px;
  border-radius: 30px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.offers .box img{
  width: 125px;
}
.ribbon-wrap{
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
  top: -10px;
  left: -10px;
}
.ribbon-wrap::before, .ribbon-wrap::after{
  content: '';
  width: 10px;
  height: 10px;
  background: #2f4d32;
  position: absolute;
  z-index: -1;
}
.ribbon-wrap::before{
  top: 0;
  right: 0;
}
.ribbon-wrap::after{
  bottom: 0;
  left: 0;
}
.ribbon{
  width: 225px;
  font-size: 15px;
  text-align: center;
  padding: 8px 0;
  background: #2f4d32;
  color: #ded9d3;
  position: absolute;
  transform: rotate(-45deg);
  right: -17%;
  top: 29%;
}
/*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog {
  padding-bottom: 100px;
}

.blog-card .author-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-card .card-wrapper {
  color: var(--spanish-gray);
  font-size: var(--fs-8);
  justify-content: space-between;
}

.author-name {
  color: var(--granite-gray);
  font-weight: var(--fw-500);
}

.btn-link {
  color: var(--viridian-green);
  font-weight: var(--fw-700);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}

.btn-link ion-icon {
  font-size: 20px;
}

.btn-link:is(:hover, :focus) {
  color: var(--oxford-blue);
}




/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  background-color: var(--viridian-green);

}

.footer-top {
  padding: 10px;
}

.footer-text,
.footer-list-title {
  color: var(--white-1);
}

.footer-text {
  font-size: var(--fs-4);
  font-weight: 400;
  margin-block-start: 20px;
}

.footer-list-title {
  font-size: var(--fs-4);
  font-weight: 700;
  margin-block-end: 15px;
}

.footer-link {
  margin-block-start: 5px;
  color: #fff;
  transition: 0.25s ease;
}

.footer-link:is(:hover, :focus) {
  color: var(--mikado-yellow);
}

.footer-list-item {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-block-start: 12px;
}

.footer-list-item ion-icon {
  flex-shrink: 0;
  color: var(--white-1);
}

.footer-list-item .footer-link {
  margin-block-start: 0;
}

.footer-list-item :is(.footer-link, .address) {
  font-size: var(--fs-7);
}

.footer-list-item .footer-link:is(:hover, :focus) {
  color: var(--mikado-yellow);
}

.footer-bottom {
  border-block-start: 1px solid #fff;
  padding-block: 30px;
  text-align: center;
}

.footer-bottom .copyright {
  color: var(--battleship-gray);
}

.social-list {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-block-start: 15px;
}

.social-link {
  background-color: var(--viridian-green);
  color: var(--white-1);
  padding: 12px;
  border-radius: var(50%);
  transition: 0.25s ease;
}

.social-link:is(:hover, :focus) {
  background-color: var(--white-1);
  color: var(--mikado-yellow);
}










/*-----------------------------------*\
  #GO TO TOP
\*-----------------------------------*/

.go-top {
  position: fixed;
  bottom: 0;
  right: 15px;
  background: var(--mikado-yellow);
  color: var(--white-1);
  font-size: 22px;
  padding: 10px;
  border-radius: var(--radius-6);
  visibility: hidden;
  opacity: 0;
  transition: var(--transition-1);
}

.go-top.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(-15px);
}

.go-top:is(:hover, :focus) {
  transform: translateY(-25px);
}





/*-----------------------------------*\
  #RESPONSIVE
\*-----------------------------------*/

/**
 * responsive for larger than 575px screen 
 */

@media (min-width: 575px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 5rem;
    --fs-3: 4rem;
    --fs-8: 1.4rem;

  }



  /**
   * HERO
   */

  .hero-text {
    --fs-7: 1.8rem;
  }






}




/**
 * responsive for larger than 768px screen 
 */

@media (min-width: 768px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 100%;
    margin-inline: auto;
  }

  .popular-list,
  .blog-list {
    grid-template-columns: 1fr 1fr;
  }



  /**
   * HERO
   */

  .hero {
    min-height: 550px;
    display: grid;
    place-items: center;
  }

  .hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
  }


  /**
   * DESTINATION
   */

  .destination-list>li {
    width: calc(33.33% - 20px);
  }

  .destination-list .w-50 {
    width: calc(50% - 20px);
  }

/* map  */


  /**
   * FOOTER
   */

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .social-list {
    margin-block-start: 0;
  }


}





/**
 * responsive for larger than 992px screen 
 */

@media (min-width: 972px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-2: 3.5rem;
    --fs-3: 4.4rem;

    /**
     * spacing
     */

    --section-padding: 60px;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 980px;
  }

  .popular-list,
  .blog-list {
    grid-template-columns: repeat(3, 1fr);
  }



  /**
   * HEADER
   */

  .nav-toggle-btn {
    display: none;
  }

  .header,
  .header.active {
    height: unset;
  }

  .navbar {
    all: unset;
    display: flex;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .navbar-list {
    margin-bottom: 0;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .navbar-link {

    margin-bottom: 8px;
  }



  /**
   * DESTINATION
   */

  .destination {
    --fs-4: 3.2rem;
    --fs-5: 2.6rem;
  }



  /**
   * ABOUT
   */


  .about-content {
    margin-bottom: 0;
  }





}



/**
 * responsive for larger than 1200px screen 
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 6rem;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 90%;
  }

  :is(.popular, .blog) .card-content {
    padding: 30px;
  }



  /**
   * HEADER
   */



  /**
   * ABOUT
   */

  .about .container {
    grid-template-columns: 0.7fr 1fr;
  }

  /**
   * FOOTER
   */

  .footer-top {
    display: grid;
    grid-template-columns: 1fr 0.4fr 0.4fr;
  }

  .footer-text {
    margin-inline-end: 80px;
  }
}

/**
 * responsive for MOBILE
 */
@media (max-width: 450px) {

  body,
  html {
    overflow-x: hidden !important;
    max-width: 100vw;
  }

  * {
    box-sizing: border-box;
  }

  .container,
  section,
  header,

  main {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }


  .about-list {
    display: flex;
    flex-wrap: wrap;
  }

  .contactus a {
    width: 55%;
  }

  .buttonsforProjects {
    display: flex;
    flex-direction: column;
  }

  .Viewallproject {
    width: 100%;
  }

  .Viewallproject a {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .Gotoinstagram {
    width: 100%;
  }

  .Gotoinstagram a {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .counter h1 {
    font-size: 1em;
  }

  .counter h3 {
    font-size: smaller;
  }

  .about-text,
  .about-item-text {
    font-size: var(--fs-7);
  }

  .footer .container {
    padding: 8px;
  }
}

.section-sendmessage{
    display: flex;
    justify-content: center;
    align-items: center;
   
}
  


.contact-form1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
   box-shadow:0 0 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 60px;
}

.contact-form1 input , .contact-form1 textarea {
    box-shadow: 10px 10px 10px 10px rgba(127, 232, 150, 0.1);
  width: 90%;
  padding: 10px;
  margin-bottom: 10px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.contact-form1 button {
  padding: 10px 20px;
  cursor: pointer;
  background-color: rgb(47 77 50);
  color: white ;
  margin-bottom: 25px;
  border-radius: 10px;
}
.contact-form1 button:hover {
  background-color: var(--mikado-yellow);
}

.contact-form1 h2{
  font-family: 'Changa';
  color: #555;
  margin-bottom: 30px;
  border-bottom: 1px solid #555;
}



/* 
.imageRevel{
    animation: move 5s linear ;
}
.imageRevel1{
    animation: move 7s linear ;
}.imageRevel2{
    animation: move 10s linear ;
}.imageRevel3{
    animation: move 13s linear ;
}
@keyframes move {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(30px);
  }
} */


/* إظهار/إخفاء بناءً على حجم الشاشة */
.desktop-only {
  display: block;

}

.mobile-only {
  display: none;
}

/* إظهار الصورة على الموبايل فقط */
@media (max-width: 768px) {
  * {
    box-sizing: border-box;
  }

  body,
  html {
    overflow-x: hidden;
    padding: 0;
    margin: 0;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
   
  }

  .mobile-hero {
    position: relative;
    height: 35vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  .mobile-hero .hero-image {
    width: 100vw;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
  }

  .hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    /* شفافية سوداء */
    border-radius: 10px;
    width: 90%;
    max-width: 95%;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
  
}


.whatsAppIcon {
  position: fixed;
  bottom: 68px;
  right: 15px;
  background-color: var(--mikado-yellow);
  color: var(--white-2);
  font-size: 22px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-6);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-1);
  transition: var(--transition-1);
  opacity: 0;
  visibility: hidden;
  z-index: 4;
}

.whatsAppIcon:is(:hover, :focus-visible) {
  background-color: white;
  color: var(--mikado-yellow);
}

.whatsAppIcon.active {
  opacity: 1;
  visibility: visible;
}
.callIcon {
  position: fixed;
  bottom: 117px;
  right: 15px;
  background-color: #2f4d32;
  color: var(--white-2);
  font-size: 22px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-6);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-1);
  transition: var(--transition-1);
  opacity: 0;
  visibility: hidden;
  z-index: 4;
}

.callIcon:is(:hover, :focus-visible) {
  background-color: white;
  color: #2f4d32;
}

.callIcon.active {
  opacity: 1;
  visibility: visible;
}

/* f1................................................ */
.imageslider{
    width: 100%;
      height: 400px;
    background-image: url(../images/finalProjects/f2/f\ \(1\).jpg);
    background-size: 100% 100%;
    animation: changeimage 10s infinite;
    animation-delay: 3s;
    /* you can change the speed  */
}

@keyframes changeimage{
    50%{
        background-image: url(../images/finalProjects/f2/f\ \(2\).jpg);
    }
 75%{
        background-image: url(../images/finalProjects/f2/f\ \(3\).jpg);
    }
    100%{
        background-image: url(../images/finalProjects/f2/f\ \(4\).jpg);
    }
}

.checked{
    color: #fe7b35;
  }
/* f2 ................................................... */
.imageslider1{
    width: 100%;
      height: 400px;
    background-image: url(../images/finalProjects/f3/f\ \(1\).jpg);
    background-size: 100% 100%;
    animation: changeimage1 18s infinite;
    animation-delay: 3s;
    /* you can change the speed  */
}

@keyframes changeimage1{
    20%{
        background-image: url(../images/finalProjects/f3/f\ \(2\).jpg);
    }
 40%{
        background-image: url(../images/finalProjects/f3/f\ \(3\).jpg);
    }
    50%{
        background-image: url(../images/finalProjects/f3/f\ \(4\).jpg);
    }
        70%{
        background-image: url(../images/finalProjects/f3/f\ \(5\).jpg);
    }
 75%{
        background-image: url(../images/finalProjects/f3/f\ \(6\).jpg);
    }
  
     100%{
        background-image: url(../images/finalProjects/f3/f\ \(7\).jpg);
    }
}


/* f3 ................................................... */
.imageslider2{
    width: 100%;
    height: 400px;
    background-image: url(../images/finalProjects/f1/f\ \(1\).jpg);
    background-size: 100% 100%;
    animation: changeimage2 82s infinite;
    animation-delay: 3s;
    /* you can change the speed  */
}

@keyframes changeimage2{
    2%{
        background-image: url(../images/finalProjects/f1/f\ \(2\).jpg);
    }
 4%{
        background-image: url(../images/finalProjects/f1/f\ \(3\).jpg);
    }
    7%{
        background-image: url(../images/finalProjects/f1/f\ \(4\).jpg);
    }
        9%{
        background-image: url(../images/finalProjects/f1/f\ \(5\).jpg);
    }
 14%{
        background-image: url(../images/finalProjects/f1/f\ \(6\).jpg);
    }
    17%{
        background-image: url(../images/finalProjects/f1/f\ \(7\).jpg);
    }
     21%{
        background-image: url(../images/finalProjects/f1/f\ \(8\).jpg);
    }
     25%{
        background-image: url(../images/finalProjects/f1/f\ \(9\).jpg);
    }
     27%{
        background-image: url(../images/finalProjects/f1/f\ \(10\).jpg);
    }
     31%{
        background-image: url(../images/finalProjects/f1/f\ \(11\).jpg);
    }
     34%{
        background-image: url(../images/finalProjects/f1/f\ \(12\).jpg);
    }
     37%{
        background-image: url(../images/finalProjects/f1/f\ \(13\).jpg);
    }
     39%{
        background-image: url(../images/finalProjects/f1/f\ \(14\).jpg);
    }
     42%{
        background-image: url(../images/finalProjects/f1/f\ \(15\).jpg);
    }
     45%{
        background-image: url(../images/finalProjects/f1/f\ \(16\).jpg);
    }
     50%{
        background-image: url(../images/finalProjects/f1/f\ \(17\).jpg);
    }
     54%{
        background-image: url(../images/finalProjects/f1/f\ \(18\).jpg);
    }
     57%{
        background-image: url(../images/finalProjects/f1/f\ \(19\).jpg);
    }
     61%{
        background-image: url(../images/finalProjects/f1/f\ \(20\).jpg);
    }
     63%{
        background-image: url(../images/finalProjects/f1/f\ \(21\).jpg);
    }
     66%{
        background-image: url(../images/finalProjects/f1/f\ \(22\).jpg);
    }
     69%{
        background-image: url(../images/finalProjects/f1/f\ \(23\).jpg);
    }
     72%{
        background-image: url(../images/finalProjects/f1/f\ \(24\).jpg);
    }
     75%{
        background-image: url(../images/finalProjects/f1/f\ \(25\).jpg);
    }
     77%{
        background-image: url(../images/finalProjects/f1/f\ \(26\).jpg);
    }
     79%{
        background-image: url(../images/finalProjects/f1/f\ \(27\).jpg);
    }
     82%{
        background-image: url(../images/finalProjects/f1/f\ \(28\).jpg);
    }
     85%{
        background-image: url(../images/finalProjects/f1/f\ \(29\).jpg);
    }
     89%{
        background-image: url(../images/finalProjects/f1/f\ \(30\).jpg);
    }
     93%{
        background-image: url(../images/finalProjects/f1/f\ \(31\).jpg);
    }
     96%{
        background-image: url(../images/finalProjects/f1/f\ \(32\).jpg);
    }
     100%{
        background-image: url(../images/finalProjects/f1/f\ \(33\).jpg);
    }
}

/* f4 ................................................... */
.imageslider3{
    width: 100%;
     height: 400px;
    background-image: url(../images/finalProjects/f4/f\ \(1\).jpg);
    background-size: 100% 100%;
    animation: changeimage3 22s infinite;
    animation-delay: 3s;
    /* you can change the speed  */
}

@keyframes changeimage3{
    20%{
        background-image: url(../images/finalProjects/f4/f\ \(2\).jpg);
    }
 30%{
        background-image: url(../images/finalProjects/f4/f\ \(3\).jpg);
    }
    45%{
        background-image: url(../images/finalProjects/f4/f\ \(4\).jpg);
    }
        55%{
        background-image: url(../images/finalProjects/f4/f\ \(5\).jpg);
    }
      65%{
        background-image: url(../images/finalProjects/f4/f\ \(8\).jpg);
    }
        70%{
        background-image: url(../images/finalProjects/f4/f\ \(9\).jpg);
    }
 80%{
        background-image: url(../images/finalProjects/f4/f\ \(6\).jpg);
    }
  
     100%{
        background-image: url(../images/finalProjects/f4/f\ \(7\).jpg);
    }
}
/* f5 ................................................... */
.imageslider4{
    width: 100%;
    height: 400px;
    background-image: url(../images/finalProjects/f5/f\ \(1\).jpg);
    background-size: 100% 100%;
    animation: changeimage4 13s infinite;
    animation-delay: 3s;
    /* you can change the speed  */
}

@keyframes changeimage4{
    25%{
        background-image: url(../images/finalProjects/f5/f\ \(2\).jpg);
    }
 50%{
        background-image: url(../images/finalProjects/f5/f\ \(3\).jpg);
    }

   
 75%{
        background-image: url(../images/finalProjects/f5/f\ \(4\).jpg);
    }
  
     100%{
        background-image: url(../images/finalProjects/f5/f\ \(5\).jpg);
    }
}
/* f5 ................................................... */
.imageslider5{
    width: 100%;
    height: 400px;
    background-image: url(../images/finalProjects/f6/f\ \(1\).jpg);
    background-size: 100% 100%;
    animation: changeimage5 13s infinite;
    animation-delay: 3s;
    /* you can change the speed  */
}

@keyframes changeimage5{
    50%{
        background-image: url(../images/finalProjects/f6/f\ \(2\).jpg);
    }
 100%{
        background-image: url(../images/finalProjects/f6/f\ \(3\).jpg);
    }

}

/* before and after .......................................................................... */

.imagecontainer img{
  display: block;
  max-width: 100%;
}
.mainBeforeAfter{
  display: flex;
  place-items: center;
padding: 10px;
gap: 10px;
}
.containerBeforeAfter{
  display: grid;
  place-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  --position:50%;
}
.imagecontainer{
max-width: 800px;
max-height: 90vh;
position: relative;
aspect-ratio: 1/1;
}
.imageBefore , .imageAfter{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}
.imageBefore{
  position: absolute;
  inset: 0;
  width: var(--position);
}
.sliderBeforeAfter{
  position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.sliderBeforeAfter:focus-visible ~ .sliderButton{
  outline: 5px solid black;
  outline-offset: 3px;
}
.sliderLine{
  position: absolute;
  inset: 0;
  width: .2rem;
  height: 100%;
  background-color: #ffffff;
  z-index: 10;
  left: var(--position);
  transform: translateX(-50%);
  pointer-events: none;
}
.sliderButton{
  position: absolute;
 background-color: #ffffff;
 color: #fe7b35;
 padding: .5rem;
 border-radius: 100vw;
 display: grid;
 place-items: center;
 top: 50%;
 left: var(--position) !important;
   transform: translate(-50% , -50%);
    pointer-events: none;
    z-index: 100;
    box-shadow: 1px 1px 1px hsl(0, 50%, 2%, .5);
    direction: ltr !important;
    right: auto !important;
}
body.rtl .sliderButton{
direction: ltr !important;
  left: var(--position) !important;
  right: auto !important;
}

@media (max-width: 768px) {
  .mainBeforeAfter{
  display: grid;
  place-items: center;
padding: 10px;
gap: 10px;
}

}

@media screen and (max-width : 760px) {
  .Home {
  height: 35vh !important;
  width: auto;
}
  .social-icons {
    position: absolute;
    height: 100%;
    top: 13% !important;
    right: 2.5rem;
    width: auto;
  }
    .containerHome .content {

 top: 10px;

}

.containerHome .content h1 {
  font-size: 26px !important;
 
}
.containerHome .content p {
  
   font-size: 17px !important;
}
}


@media (max-width: 972px) {
.desktop-only{
        width: 100vw;
        height: 122%;}
  .Home {
  height: 61vh;
  width: auto;
}
  .social-icons {
    position: absolute;
    height: 100%;
    top: 23%;
    right: 2.5rem;
    width: auto;
  }

  .social-icons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    height: 2rem;
    width: 2rem;
    border-radius: 100rem;
    border: none;
    background-color: #f9f9f9a7;
  }

  .socialcontent {
    display: flex;
    flex-direction: column;
    gap: 8px;

  }
  .buttonsforProjects {gap: 7px;}
  .containerHome .content {
  text-align: center;
  position: absolute;
  height: 55%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 10px;
}

.containerHome .content h1 {
  font-size: 50px;
  color: #ffffff;
}
.containerHome .content p {
  color: #ded9d3;
   font-size: 30px;
}
}



/* @media (min-width: 992px) {
  .Home {
  height: 100vh;
  width: auto;
}
  .social-icons {
    position: absolute;
    height: 100%;
    top: 40%;
    right: 2.5rem;
    width: auto;
  }

  .social-icons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    height: 2rem;
    width: 2rem;
    border-radius: 100rem;
    border: none;
    background-color: #f9f9f9a7;
  }

  .socialcontent {
    display: flex;
    flex-direction: column;
    gap: 8px;

  }
} */
