@charset "UTF-8";
:root {
  --LightBlue:#139597;
  --DarkBlue:#0b738c;
  --DarkerBlue:#0c5062;
  --BackgroundAnimAngle:0deg;
  --card-width: 200px;
  --card-height: 300px;
  --card-transition-duration: 800ms;
  --card-transition-easing: ease;
}

* {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
  cursor: none !important;
}

body {
  overflow-x: hidden;
  background-color: #ffffff;
  scroll-behavior: smooth;
}

.IIV::-webkit-media-controls-play-button,
.IIV::-webkit-media-controls-start-playback-button {
  opacity: 0;
  pointer-events: none;
  width: 5px;
}

#preloader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  background: linear-gradient(var(--BackgroundAnimAngle), var(--LightBlue), var(--DarkerBlue));
  z-index: 2000;
}

#preloaderLogo_anim {
  height: 150px;
}

#loadingText {
  margin-top: 20px;
  font-size: 1.2rem;
  color: #fff;
}

#nprogress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3000; /* أعلى قيمة لضمان الظهور فوق الـ preloader */
}

#nprogress .bar {
  background: #29d;
}

#nprogress .peg {
  box-shadow: 0 0 10px #29d, 0 0 5px #29d;
}

#nprogress .spinner-icon {
  display: none;
}

.bg_DarkerBlue {
  background-color: var(--DarkerBlue);
}

.color_darkBlue {
  color: var(--DarkBlue);
}

.bg_gradient {
  background: linear-gradient(45deg, var(--LightBlue), var(--DarkerBlue));
}

.pageTransition {
  position: absolute;
  z-index: 200;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  pointer-events: none;
  background-color: var(--LightBlue);
  transform: scaleY(0);
}

.cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
  border-radius: 50%;
  border: 2px solid #fff;
  transition: transform 0.2s ease;
  transform-origin: center center;
  pointer-events: none;
  z-index: 90000000;
  opacity: 1;
}

.paralax {
  transition: transform 0.2s;
}

.grow {
  transform: scale(5);
  background-color: #fff;
  border: none;
  z-index: 1;
  filter: blur(6px);
}

.cursorLink {
  transform: scale(0.7);
  border-radius: 50%;
  background-color: var(--DarkerBlue);
  mix-blend-mode: difference;
  border: none;
}

.cursorDark {
  transform: scale(1);
  opacity: 0.5;
  border: 2px solid #000000;
}

/* navbar */
.navbar {
  transition: 0.2s;
}

.navbar_scrolled {
  background: linear-gradient(45deg, var(--LightBlue), var(--DarkerBlue));
  box-shadow: 0 0rem 1rem rgb(0, 0, 0);
}

.nav-item {
  color: rgb(81, 81, 81) !important;
}

.nav-item .active {
  color: rgb(255, 255, 255) !important;
  text-shadow: 0 0 0.3em currentColor;
}

.nav-item :hover {
  color: rgb(255, 255, 255) !important;
  text-shadow: 0 0 0.5em currentColor;
}

/* Menu */
.shadowSVG {
  filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
  /* Similar syntax to box-shadow */
}

#navbarLogo_anim, #navbarLogo_anim_Menu {
  height: 90px;
  filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.5));
}

#navbarLogo_anim_Menu {
  float: left;
}

.menuButton {
  font-size: 3rem;
}

#Minue_Animeted {
  width: 50px;
  transition: 0.3s ease-in-out;
}

#Minue_Animeted:hover {
  scale: 1.1;
  filter: drop-shadow(0px 0px 3px rgba(255, 255, 255, 0.9));
}

#full-screen-menu {
  position: fixed;
  top: -110%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(var(--BackgroundAnimAngle), var(--LightBlue), var(--DarkerBlue));
  color: white;
  display: flex;
  z-index: 9; /* Initial z-index */
  overflow-y: auto;
  overflow: hidden;
  /* Enable vertical scrolling if content overflows */
}

#full-screen-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 35%);
  pointer-events: none;
}

#full-screen-menu::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/menu_bg.svg"); /* Replace 'your-svg-file.svg' with the actual path to your SVG file */
  background-position: 0px center; /* Adjust -50px to the desired amount to shift out from the left side */
  background-repeat: no-repeat;
  background-size: auto 80%; /* Adjust as needed */
  pointer-events: none;
}

#full-screen-menu ul {
  list-style: none;
  padding: 0;
}

#full-screen-menu ul li {
  margin: 20px 0;
}

#full-screen-menu ul li a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  transition: 0.3s ease-in-out;
}

#full-screen-menu a:active {
  font-size: 30px;
  filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
}

#full-screen-menu a:hover {
  font-size: 30px;
  filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
}

.bottom-icons {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
  text-align: center;
}

.bottom-icons a {
  color: var(--DarkBlue); /* Icon color */
  font-size: 30px; /* Icon size */
  text-decoration: none;
  transition: 0.2s ease-in-out;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottom-icons a:hover {
  color: var(--LightBlue); /* Hover color */
  scale: 1.3;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(var(--BackgroundAnimAngle), var(--LightBlue), var(--DarkerBlue));
}

.imageHolder {
  position: relative;
  width: 500px;
  z-index: 1;
}

.imageHolder #heroImage {
  height: 500px;
  top: 50px;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.5));
}

.imageHolder #heroLogo {
  max-width: 400px;
  display: block;
  margin: 0 auto;
  position: relative;
  top: -60px;
  z-index: 2;
}

.imageHolder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(0.5);
  border-radius: 50%;
  background-color: #fff;
  filter: blur(100px);
  opacity: 0.7;
}

.services_btn {
  display: none;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 35%);
  pointer-events: none;
}

.heroicons {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  top: 40%;
  transform: translateY(-50%);
  z-index: 2;
  filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.5));
}

.heroicons.left-icons {
  left: calc(50% - 230px);
}

.heroicons.right-icons {
  right: calc(50% - 230px);
}

.heroiconsHolder {
  align-items: center;
  width: 100px !important;
  height: 100px !important;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}

.heroiconsHolder:hover {
  display: flex;
  width: 400px !important;
  height: 100px !important;
  background-color: #fff;
  border-radius: 50px;
  margin: 30px -50px;
}

.heroiconsHolder .iconTitle {
  visibility: hidden;
  opacity: 0;
  transition: opacity 1s ease; /* Only apply transition to opacity */
}

.heroiconsHolder:hover .iconTitle {
  visibility: visible;
  opacity: 1;
}

.heroiconsHolder .iconTitle {
  animation: none; /* No animation by default */
  color: var(--DarkerBlue);
  font-weight: bold;
}

.heroiconsHolder:hover .iconTitle {
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
.heroicons div {
  margin: 30px 0;
}

.heroicons.left-icons a:nth-child(1) {
  width: 90px;
  transition: 1s ease-in-out;
}

.heroicons.left-icons a:nth-child(1):hover {
  margin-left: -180px;
  margin-top: 20px;
}

.heroicons.left-icons a:nth-child(2) {
  width: 80px;
  margin-left: -50px;
  transition: 1s ease-in-out;
}

.heroicons.left-icons a:nth-child(2):hover {
  margin-left: -120px;
}

.heroicons.left-icons div:nth-child(3) {
  width: 90px;
}

.heroicons.right-icons a:nth-child(1) {
  padding-top: 80px;
  width: 90px;
}

.heroicons.right-icons a:nth-child(2) {
  width: 80px;
  margin-right: -50px;
  transition: 1s ease-in-out;
}

.heroicons.right-icons a:nth-child(2):hover {
  margin-right: -120px;
}

.heroicons.right-icons div:nth-child(3) {
  width: 90px;
}

/* New CSS for z-index control */
.heroicons.above {
  position: fixed;
  z-index: 3; /* Above the image holder */
}

.heroicons.below {
  z-index: -1; /* Below the image holder */
}

.firefly {
  position: absolute;
  width: 7px;
  height: 7px;
  background: rgb(255, 255, 255);
  border-radius: 50%;
  box-shadow: 0 0 10px white, 0 0 15px #999898, 0 0 20px white, 0 0 25px #999898;
  z-index: 0;
}

.panel {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  text-align: center;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
  color: #fff;
}

.panel h1 {
  margin-top: 4em;
  font-weight: 600;
  font-size: xx-large;
}

.panel p {
  text-align: justify !important;
  line-height: 1.4;
  font-size: 25px;
}

.panel img {
  width: 450px;
  filter: drop-shadow(0px 0px 7px rgba(0, 0, 0, 0.3));
}

#imageSequence {
  width: 100%; /* Adjust width as needed */
  height: auto; /* Maintain aspect ratio */
}

.panel-content {
  width: 100vw;
}

.typed-text {
  opacity: 0;
}

.panel-content_before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
  text-align: center;
}

#btn-back-to-top {
  position: fixed;
  bottom: 10px;
  right: 12px;
  z-index: 1040;
  opacity: 0;
  transition: 0.2s;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--LightBlue), var(--DarkerBlue));
  color: white;
  box-shadow: none; /* Removes any box-shadow */
  outline: none; /* Removes outline */
  border: none;
}

#btn-back-to-top:hover {
  scale: 1.05 !important;
}

#whatsapp-button {
  position: fixed;
  bottom: 80px;
  right: 12px;
  z-index: 1040;
  opacity: 0;
  transition: 0.2s;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--LightBlue), var(--DarkerBlue));
  color: white;
  box-shadow: none; /* Removes any box-shadow */
  outline: none; /* Removes outline */
  border: none; /* Ensures no border is applied */
}

#whatsapp-button:hover {
  scale: 1.05 !important;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(45deg, var(--LightBlue), var(--DarkerBlue));
  color: white; /* تغيير لون النص إذا كان اللون الخلفي غامق */
}

/* خلفية الزرار في الوضع المغلق */
.accordion-button.collapsed {
  background-color: #f8f9fa; /* أو أي لون تريده */
  color: var(--DarkBlue); /* تغيير لون النص إذا كان اللون الخلفي فاتح */
}

.accordion-button:focus {
  outline: none;
  box-shadow: none; /* لتعطيل أي ظل قد يظهر حول الزر */
}

/* لتدوير السهم في الوضع المفتوح */
.accordion-button::after {
  transform: rotate(180deg);
  transition: transform 0.3s;
  margin-right: auto !important;
  margin-left: 0;
}

/* لتدوير السهم في الوضع المغلق */
.accordion-button.collapsed::after {
  transform: rotate(0deg);
  transition: transform 0.3s;
  margin-right: auto !important;
  margin-left: 0;
}

#testimonials {
  min-height: 100vh;
  padding: 0;
}

.text-center {
  text-align: center;
}

.flex-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(70vh - 50px);
  overflow: hidden;
  /* Adjust the height considering the space taken by the heading */
}

.demoWrapper {
  width: 100%;
  -webkit-font-smoothing: antialiased;
  perspective: 1100px;
  transform-style: preserve-3d;
  padding: 1px;
  position: relative;
}

.box {
  width: 350px;
  height: 350px;
  display: inline-block;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.creative-pro {
  background: transparent;
}

.creative-pro:hover {
  cursor: pointer;
  box-shadow: 0 0px 10px 0 white;
}

/* Gallery Section
--------------------------------*/
#gallery {
  overflow: hidden;
  height: 800px;
  width: 100vw;
  align-items: center;
}

#galleryHeader {
  position: relative;
  z-index: 2;
  top: 0;
}

.wheel {
  position: relative;
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300vw;
  height: 300vw;
  max-width: 2000px;
  max-height: 2000px;
}

.wheel_card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  max-width: 200px;
  aspect-ratio: 1/1;
  transition: all ease-in-out 0.4s;
  padding-inline: 5px;
  z-index: 10;
}

.wheel_card:hover {
  width: 120px;
}

.wheel_card img {
  width: 100%;
  border-radius: 20px;
}

#preview {
  position: absolute;
  align-self: center;
  align-items: center;
  margin-top: 200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  padding-block-end: 100px;
}

.spinnerPreview {
  position: relative;
  top: 50%;
  width: 100%;
  height: 100%;
  display: none;
}

#preview img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 350px;
  border-radius: 20px;
  filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.5));
}

#preview video {
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 30px;
  height: 350px;
  border-radius: 20px;
  background-color: #000000;
  filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.5));
}

/* Fullscreen styles */
#preview video:-webkit-full-screen {
  width: auto;
  height: auto;
  object-fit: contain;
}

#preview video:fullscreen {
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

#preview iframe {
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 450px;
  height: 350px;
  border-radius: 20px;
  background-color: #000000;
  filter: drop-shadow(0px 2px 5px rgba(0, 0, 0, 0.5));
}

.contact-info {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 5px;
  transition: all ease-in-out 0.4s;
}

.contact-icon {
  font-size: 3rem;
  color: var(--DarkBlue);
  margin-right: 20px;
  padding: 0 0 0 30px;
  align-self: center;
  transition: all ease-in-out 0.4s;
}

.contact-info:hover .contact-icon {
  color: var(--LightBlue);
  scale: 1.1;
}

.contact-info:hover {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.contact-details {
  flex: 1;
}

.contact-details h5 {
  margin: 0;
  font-size: 1.2rem;
}

.contact-details p {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  color: #555;
}

.text-decoration-none {
  text-decoration: none;
}

.color_darkBlue {
  color: var(--DarkBlue);
}

.fw-bolder {
  font-weight: bolder;
}

.social_links a {
  text-decoration: none;
  color: #777;
}

.social_links .facebook :hover {
  color: #4267B2;
  transition: 0.5s ease-in-out;
}

.social_links .instagram :hover {
  color: #833AB4;
  transition: 0.5s ease-in-out;
}

.social_links .messenger :hover {
  color: #006AFF;
  transition: 0.5s ease-in-out;
}

.social_links .whatsapp :hover {
  color: #25D366;
  transition: 0.5s ease-in-out;
}

.social_links a :hover {
  text-decoration: none;
  text-shadow: 0 0 0.5em currentColor;
}

.btn_DarkerBlue {
  background-color: var(--DarkBlue);
  color: white;
  transition: 0.5s ease-in-out;
}

.btn_DarkerBlue:hover {
  background-color: var(--LightBlue);
  scale: 1.2;
  color: white;
}

.form-floating > label {
  text-align: right;
  width: 100%;
  padding-right: 10px; /* Adjust as needed for spacing */
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  top: -5px; /* Ensure the label stays at the top */
  right: 0; /* Adjust for right alignment */
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
  top: -5px; /* Ensure the label stays at the top */
  right: 0; /* Adjust for right alignment */
}

@media (max-width: 950px) {
  .heroicons {
    display: none;
  }
  .services_btn {
    display: block;
  }
  #full-screen-menu::after {
    background-position: -250px center; /* Adjust -50px to the desired amount to shift out from the left side */
    background-size: auto 80%;
  }
}
@media (max-width: 600px) {
  #btn-back-to-top {
    bottom: 10px;
    width: 3.5rem;
    height: 3.5rem;
  }
  #whatsapp-button {
    bottom: 10px;
    right: 75px;
    width: 3.5rem;
    height: 3.5rem;
  }
  #full-screen-menu::after {
    background-position: -200px center; /* Adjust -50px to the desired amount to shift out from the left side */
    background-size: auto 60%;
  }
}
@media (max-width: 500px) {
  .cursor {
    display: none;
  }
  .imageHolder #heroImage {
    height: 500px;
  }
  .imageHolder #heroLogo {
    width: 350px;
  }
  .demoWrapper {
    perspective: 500px;
  }
  .box {
    width: 300px;
    height: 300px;
  }
  .panel p {
    font-size: 18px;
  }
  .panel img {
    width: 250px;
  }
  .wheel {
    top: -150px;
  }
  #preview {
    margin-top: 200px;
    width: 100%;
  }
  #preview img {
    min-width: 90vw;
  }
  #preview video {
    max-width: 90vw;
  }
  #preview iframe {
    min-width: 90vw;
  }
  .contact-icon {
    margin-right: 15px;
    padding: 0 0 0 30px;
  }
}
@media (max-width: 400px) {
  #navbarLogo_anim, #navbarLogo_anim_Menu {
    height: 50px;
  }
  .imageHolder #heroImage {
    height: 400px;
  }
  .imageHolder #heroLogo {
    width: 250px;
  }
  #Minue_Animeted {
    width: 30px;
  }
  .wheel {
    top: -100px;
  }
  #preview {
    margin-top: 200px;
  }
  #preview img {
    min-width: 90vw;
  }
  #preview video {
    max-width: 90vw;
  }
}/*# sourceMappingURL=main.css.map */