*{
  margin: 0;padding: 0;box-sizing: border-box; 
}

body {
  background: #121112;
  font-family: Montserrat,sans-serif;
  font-style: normal;
  overflow-x: hidden;
}
/* Glitch */

.loader {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000; /* High z-index to cover the entire screen */
}

.loader  iframe{
  width: 300px; /* Adjust the size of your logo */
}
/* Glitch */

/*    menu overlay  */
.menu-button {
  width: 32px;
  cursor: pointer;
  z-index: 33;
  display: block;
  height: calc(12px + 8px);
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.menu-button__wrapper {
  position: fixed;
  top: 3rem;
  right: 4.3rem;
  z-index: 33;
  background-color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 70px;
}
.menu-button__bar {
  background-color: #191919;
  height: 4px;
  width: 32px;
  display: block;
  position: absolute;
  transition: all 0.4s ease;
}
.menu-button__bar:nth-of-type(2) {
  top: 8px;
}
.menu-button__bar:nth-of-type(3) {
  top: 16px;
}
.menu-button.active .menu-button__bar {
  transform: translateY(8px) rotate(45deg);
}
.menu-button.active .menu-button__bar:nth-of-type(2) {
  transform: translateX(2rem);
  opacity: 0;
  visibility: hidden;
}
.menu-button.active .menu-button__bar:nth-of-type(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.menu-overlay {
  background-color: white;
  height: 100vh;
  width: 100%;
  right: 0;
  position: fixed;
  padding: 8rem 2rem;
  visibility: hidden;
  transition: all 0.4s ease;
  transform: translateX(100%);
  z-index: 22;
  text-align: center;

}
.menu-overlay.open {
  visibility: visible;
  opacity: 0.8;
  transform: translateX(0%);
  width: 30%;
  text-align: center;
}
a
.background-overlay {
  background-color: rgba(25, 25, 25, 0.5);
  width: 100%;
  height: 100vh;
  z-index: 1;
  opacity: 0;
  transition: all 0.4s ease;
  position: fixed;
  pointer-events: none;
}
.background-overlay.bg-overlay {
  opacity: 1;
  pointer-events: all;
}

.nav {
  display: flex;
  flex-direction: column;
}
.nav__item {
  text-decoration: none;
  color: #191919;
  font-size: 2rem;
  transition: all 0.4s ease;
  position: relative;
 text-align: center;
}
.nav__item:not(:last-child) {
  margin-bottom: 2rem;
}
.nav__item::after {
  content: "";
  background-color: #191919;
  height: 2px;
  width: 0;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  transition: all 0.4s ease;
}
.nav__item:hover::after {
  width: 100%;
}

.button {
  text-decoration: none;
  font-size: 2rem;
  padding: 1rem 2rem;
  color: white;
  background-color: #191919;
  align-self: flex-start;
  transition: all 0.4s ease;
}
.button:hover {
  background-color: rgba(25, 25, 25, 0.75);
}

.content {
  max-width: 1440px;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .menu-button__wrapper {
    position: fixed;
    top: 2rem;
    right: 2rem;

  }
  .menu-overlay.open {
    width: 100%;

  }
}
/* Logo Styles */
.logo {
  position: absolute;
  top: 3%;
  left: 3%;
  padding: 1rem; 
  z-index: 3000; 
}

.logo img {
  height: auto; 
  width: 140px;
}

.nav {
  padding-left: 0px; 
}

@media (max-width: 768px) {
  .logo img {
    width: 100px; /
  }
  
  .nav {
    padding-left: 40px;
  }
  .menu-overlay {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .menu-overlay.open {
    opacity: 1;
 }
 .nav {
  padding-left: 0px;
}
}
.button {
  left: initial;
  right: 5vw;
}
/* hamburger */
/*video Section */
.vimeo-wrapper {
  position: relative; /* Ensure the parent is positioned */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh; /* Full height */
  overflow: hidden; /* Hide the overflow */
  z-index: -1;
}

.vimeo-wrapper iframe {
  position: absolute; /* Absolute positioning relative to the parent */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Center the video */
  width: 100vw; /* Viewport width */
  height: 56.25vw; /* Maintain the aspect ratio (for 16:9 aspect ratio) */
  min-height: 100vh; /* Minimum height to cover the viewport height */
  min-width: 177.78vh; /* Minimum width for a 16:9 video to cover viewport height (100vh * 16/9) */
  max-width: 100%; /* Maximum width to cover the viewport width */
}
  /*video Section */

/* Dokkan Number Box*/
.dt-container {
  width: 100%;
  max-width: 1280px;
  position: relative;
  margin: 30px auto;
  color: white;
  padding: 0 20px;
}

.dt-grid {
  margin: 0 auto;
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 310px;
  grid-template-areas: "h h h h";
  grid-auto-flow: dense;
  gap: 16px;
}

.dt-g-box {
  background: #121112;
  border: rgb(49, 48, 48) solid 1px;
  text-align: center;
  padding: 20px;
}

.dt-g-box.size-1of4 {
  grid-column-start: span 1;
  padding-top: 100px;
  padding-right: 10px;
  padding-left: 10px;
  background-color: #fff;
  color: #000;
}

.dt-g-box.size-1of2 {
  grid-column-start: span 2;
  grid-row-end: span 2;
  padding: 150px 100px 100px 100px;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
}

.dt-g-box.size-1of1 {
  grid-column-start: span 4;
}

.dt-g-box.up-2 {
  grid-row-start: span 2;
}

.dt-g-box h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 29px;
  font-weight: 900;
}

.dt-g-box p {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.75rem;
}

.number {
  font-size: 4rem;
  font-weight: 900;
  line-height: 80%;
}

/* Responsive Adjustments */
@media (max-width: 1280px) {
  .dt-container {
    width: 100%;
    padding: 0 20px;
  }
  .dt-grid {
    grid-auto-rows: 230px;
  }
}

@media (max-width: 992px) {
  .dt-container {
    width: 100%;
    padding: 0 20px;
  }

  .dt-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 16px;
  }

  .dt-g-box {
    color: #000;
    padding: 40px 20px;
  }

  .dt-g-box.size-1of4,
  .md-half,
  .md-full {
    grid-column-start: span 2 !important;
  }

  .dt-g-box.size-1of2 {
    grid-column: span 2 !important;
    padding: 80px 40px 60px 40px;
    border-radius: 20px;
  }

  .number {
    font-size: 2.75rem !important;
  }

  .dt-g-box h3 {
    font-size: 1.75rem !important;
  }

  .dt-g-box p {
    font-size: 1.2rem !important;
  }
}

@media (max-width: 800px) {
  .dt-grid {
    display: block;
  }

  .dt-g-box {
    width: 100%;
    margin-bottom: 20px;
    min-height: 120px;
    padding: 20px;
    background-color: #fff;
    color: #000;
  }

  .dt-g-box.size-1of4 {
    padding-top: 20px;
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 20px;
  }

  .dt-g-box.size-1of2 {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .number {
    font-size: 2.2rem !important;
  }

  .dt-g-box h3 {
    font-size: 1.5rem !important;
  }

  .dt-g-box p {
    font-size: 1rem !important;
  }

  .sm-quarter {
    grid-column-start: span 1 !important;
  }

  .sm-half {
    grid-column-start: span 2 !important;
  }

  .sm-full {
    grid-column-start: span 4 !important;
  }

  .xs-falf {
    grid-column-start: span 2 !important;
  }

  .xs-full {
    grid-column-start: span 4 !important;
  }
}

@media (max-width: 768px) {
  .dt-g-box {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}

.gbox-flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: stretch;
}
.gbox-flex > div {
  border: 1px solid white;
  color: #fff;
  flex: 1 0 100%;
}

.header {
  text-align: center;
  color: white;
  font-size: 50px;
  margin-top: 20px;
}

/* Responsive styles */
@media only screen and (max-width: 600px) {
  .header {
    font-size: 30px;
  }
}

/* SectionHeader */
/* Base styles for .aboutSection */
.aboutSection {
  width: 90%;
  color: white;
  margin: 0 auto 100px; /* Centering and spacing */
  font-size: 1rem; /* Base font size */
}

.aboutSection h2 {
  font-size: clamp(2rem, 5vw, 50px); /* Responsive font size */
  font-weight: bolder;
  margin-bottom: 20px;
}

.aboutSection p {
  font-size: clamp(1rem, 2.5vw, 25px); /* Responsive font size */
}

.aboutText {
  width: 100%;
}

/* Media queries for different screen sizes */
@media (max-width: 768px) {
  .aboutSection {
      width: 90%; /* More width for smaller screens */
      margin-bottom: 50px; /* Less bottom margin */
  }

  .aboutSection h2 {
      font-size: clamp(1.5rem, 8vw, 30px); /* Smaller font size for smaller screens */
  }

  .aboutSection p {
      font-size: clamp(0.875rem, 4vw, 18px); /* Smaller font size for smaller screens */
  }
}

/* SectionHeader */
/*Card Project */
.card-containerproject {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: auto;
  margin-top: 100px;
  margin-bottom: 100px;

}

.cardproject {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.cardproject img {
  width: 100%;
  display: block;
}

.text-card {
  display: none;
}

.cardproject:hover {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .card-containerproject {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .card-containerproject {
      grid-template-columns: repeat(1, 1fr);
  }
}

/* Modal Styles */
.modal {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0);
}

.modal-content {
position: relative;
top: 20%;
margin: auto;
padding: 20px;
max-width: 1100px;
display: flex;

border: 1px solid white;
background-color: #000;
border-radius: 8px;
}

.modal-image-container {
flex: 1;
max-width: 40%;
}

.modal-image-container img {
width: 100%;
height: auto;
}

.modal-text {
flex: 2;
color: white;
padding-left: 10px;
overflow-y: auto;
max-height: 80vh;
}

.close {
position: absolute;
top: 10px;
right: 25px;
color: #fff;
font-size: 35px;
font-weight: bold;
cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
.modal-content {
flex-direction: column;
align-items: center;
}

.modal-image-container,
.modal-text {
max-width: 100%;
}

.modal-text {
padding: 10px 0;
}
}
/*Card Project */


/* ---------------------------------------------Services Section-------------------------------------------------------------------- */

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch; /* This will make sure all items stretch to the same height */
  gap: 20px;
  padding: 20px;
  width: 66%;
  margin: auto;
  color: #fff;
  margin-top: 100px;
}

.service {
  flex: 1 1 calc(33.33% - 40px); /* 3 cards per row with gaps */
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  padding: 40px;
  margin: 10px;
  border: 2px solid #353434;
  box-sizing: border-box;
  height: 600px;
}

.service h2 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.service img {
  width: 100%; /* make image responsive */
  height: auto; /* maintain aspect ratio */
  object-fit: cover; /* cover the figure area without distorting the image */
}

.service ul {
  list-style: none;
  padding: 0;
  flex-grow: 1; /* Make ul grow to fill the space */
}

.service ul p {
  font-size: 1.1rem;
  margin-bottom: 15px; /* Adds space between list items */
}

/* Media Queries */
@media (max-width: 600px) {
  .services-container {
    width: 100%; /* Full width on smaller screens */
    padding: 10px;
  }
  .service {
    flex: 1 1 100%; /* 1 card per row */
    padding: 10px;
  }
  .service h2 {
    font-size: 1.5em; /* Smaller font size for smaller screens */
  }
}

/* ---------------------------------------------Services Section-------------------------------------------------------------------- */

    /* FOOTER */
    .footer {
      background-color: #121112;
      color: #fff;
      text-align: center;
      padding: 50px 0;
      border-top: 1px solid #fff;
    }
  .footer a {
      color: #fff;
      margin: 0 10px;
      text-decoration: none;
      font-size: 24px;
  }
  .footer a:hover {
      color: #ddd;
  }
  .footer .copyright {
      margin-top: 10px;
      font-size: 14px;
  }
  .footer p{
margin-top: 10px;
}
.social-icons{
  margin-top: 20px;
}
        .contact-info {
  margin-top: 20px;
  text-align: center;
}

.contact-info p {
  margin: 5px 0;
  font-size: 20px;
}

/*FOOTER */
/* ABOUT PAGE */
/* Basic styling for the container */
.containeradv{
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box; /* Ensures padding is included in width calculations */
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}

/* Styling for text content */
.text-content {
  flex: 1 1 100%; /* Allows this div to initially take 100% of the flex container's width */
  max-width: 800px; /* Maximum width of the text block */
  
  font-size: 1rem; /* Base font size */
  color: #fff;
  padding: 0 15px; /* Padding for better readability on small screens */
}

.text-content h1 {
  margin-bottom: 8px;
}

/* Styling for image content */
.image-content {
  flex: 1 1 100%; /* Allows this div to initially take 100% of the flex container's width */
  max-width: 600px; /* Maximum width of the image block */
  margin: 20px;
  text-align: center;
}

/* Responsive image styling */
img {
  max-width: 100%;
  height: auto;
}

/* Media Queries for responsiveness */
@media (min-width: 600px) {
  .containeradv {
      padding: 100px; /* Larger padding for larger screens */
  }
  .text-content, .image-content {
      flex: 1 1 50%; /* Each takes half of the container's width on larger screens */
  }
}

@media (max-width: 599px) {
  .containeradv {
      padding: 20px; /* Smaller padding for smaller screens */
  }
  .text-content, .image-content {
      margin: 10px; /* Smaller margin for smaller screens */
  }
}

@media (max-width: 400px) {
  .text-content {
      font-size: 0.9rem; /* Smaller font size for very small screens */
  }
}



/* ABOUT PAGE */
/*CARSOL */
.carousel {
  position: relative;
  z-index: 1;
  height: 80vh;
  overflow: hidden;
  pointer-events: none;
}

.carousel-item {
  --items: 10;
  --width: clamp(150px, 30vw, 300px);
  --height: clamp(200px, 40vw, 400px);
  --x: calc(var(--active) * 800%);
  --y: calc(var(--active) * 200%);
  --rot: calc(var(--active) * 120deg);
  --opacity: calc(var(--zIndex) / var(--items) * 3 - 2);
  overflow: hidden;
  position: absolute;
  z-index: var(--zIndex);
  width: var(--width);
  height: var(--height);
  margin: calc(var(--height) * -0.5) 0 0 calc(var(--width) * -0.5);
  border-radius: 10px;
  top: 50%;
  left: 50%;
  -webkit-user-select: none;
    -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transform-origin: 0% 100%;
  background: black;
  pointer-events: all;
  transform: translate(var(--x), var(--y)) rotate(var(--rot));
  transition: transform 0.8s cubic-bezier(0, 0.02, 0, 1);
}
.carousel-item .carousel-box {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
  opacity: var(--opacity);
  font-family: "Orelo-sw-db", serif;
}
.carousel-item .carousel-box:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5));
}
.carousel-item .title {
  position: absolute;
  z-index: 1;
  color: #fff;
  bottom: 20px;
  left: 20px;
  transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
  font-size: clamp(20px, 3vw, 30px);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
}
.carousel-item .num {
  position: absolute;
  z-index: 1;
  color: #fff;
  top: 10px;
  left: 20px;
  transition: opacity 0.8s cubic-bezier(0, 0.02, 0, 1);
  font-size: clamp(20px, 10vw, 80px);
}
.carousel-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
    object-fit: cover;
  pointer-events: none;
}






.cursor {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  --size: 40px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: calc(var(--size) * -0.5) 0 0 calc(var(--size) * -0.5);
  transition: transform 0.85s cubic-bezier(0, 0.02, 0, 1);
  display: none;
  pointer-events: none;
}
@media (pointer: fine) {
  .cursor {
    display: block;
  }
}

.cursor2 {
  --size: 2px;
  transition-duration: 0.7s;
}



img {
max-width: 100%;
height: auto;
}
/*CARSOL */
/* Base CSS */
.careerSection {
  position: relative;
  color: white;
  background-color: #121112;
  height: 60vh;
  width: 100%;
}

.text-block {
  position: absolute;
  top: 35%;
  left: 45%;
  transform: translate(-50%, -35%);
  width: 80%;
  font-size: 1.1rem;
  padding: 0 10px;
}

.line {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: white;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
}

/* Media queries for responsiveness */
@media (max-width: 768px) {
  .careerSection {
    height: 50vh;
  }

  .text-block {
    width: 90%;
    font-size: 1rem;
    margin-top: 50px;
    margin-left: 20px;
  }

  .line {
    bottom: -35px;
  }
}

@media (max-width: 480px) {
  .careerSection {
    height: 50vh;
  }

  .text-block {
    width: 95%;
    font-size: 0.9rem;
    margin-top: 50px;
  }

  .line {
    bottom: -25px;
  }
}



a{
  text-decoration: none;
  font-size: 20px;
  color: white;
}
.projectSection {
  position: relative;
  color: white;
}

.projectSection img {
  width: 100%;
  height: 80vh;

}

.projectSection text-block {
  position: absolute;
  top: 40%;
  left: 35%;
  transform: translateX(-50%);
  font-size: 1.1rem;
  width: 50%;
}


@media (max-width: 576px) {
  .projectSection img {
    height: 90vh; /* Adjust image height for smaller screens */
  }
}

@media (max-width: 400px) {
  .projectSection img {
    height: 85vh; /* Further adjust image height for very small screens */
  }
}

.wrapper {
  background-color: #121112;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60vh; /* Set initial height */
}

.wrapper a {
  color: white;
}

.btn-text {
  display: block;
  font-size: 3.5vw; /* Adjust font size using viewport width */
  font-family: "Hanken Grotesk", sans-serif;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px; /* Adjust padding as needed */
  color: #212121;
}

.btn-text::after {
  content: "";
  position: absolute;
  bottom: -0.2em; /* Adjust bottom position */
  left: 0;
  width: 100%;
  height: 2px; /* Adjust height as needed */
  background-repeat: no-repeat;
  background-image: linear-gradient(to right, #fff 50%, rgba(33, 33, 33, 0.3) 50%);
  background-size: 200% 100%;
  background-position: 100% 50%;
  transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-text:hover::after {
  background-position: 0% 50%;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
  .wrapper {
    height: 60vh; /* Adjust height for smaller screens */
  }
  
  .btn-text {
    font-size: 5vw; /* Adjust font size for smaller screens */
  }
  .link:link,
.link:visited {
  font-size: 1.3rem;

}
}
@media (max-width: 576px) {
  .wrapper {
    height: 50vh; /* Further adjust height for very small screens */
  }
  
  .btn-text {
    font-size: 6vw; /* Further adjust font size for very small screens */
  }
}
.trailer {
  height: 10px;
  width: 10px;
  border-radius: 50%;

  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 1000000;
  
  background: #ffffff;
  mix-blend-mode: difference;
  pointer-events: none;
}
.interactable {
  opacity: 0;
  transform: translateY(50px);
}
    /* ---------------------------------------------Logo Infinity Loop -------------------------------------------------------------------- */
    @keyframes slides {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(-100%);
      }
    }
    
    .logos {
      overflow: hidden;
      padding: 30px 0px;
      white-space: nowrap;
      position: relative;
      margin-bottom: 100px;
    }
    
    .logos:before, .logos:after {
      position: absolute;
      top: 0;
      content: '';
      width: 250px;
      height: 100%;
      z-index: 2;
    }
    .logo_items {
      display: inline-block;
      animation: 35s slides infinite linear;
    }
    

    .logo_items img{
      height: 170px;
      width: 170px;
    }
    p{
      font-size: 1.375rem;
    }
    /* ---------------------------------------------Logo Infinity Loop -------------------------------------------------------------------- */
/* ---------------------------------------------Contact us section  -------------------------------------------------------------------- */
.contact-us {
  width: 80%;
  margin: auto;
  margin-top: 100px;
  margin-bottom: 100px;
}

.enquiry-label {
  font-size: 16px;
  font-weight: lighter;
  margin-top: 20px;
  margin-bottom: 20px;
}

.enquiry-input {
  width: 100%;
  border: none;
  border-bottom: 2px solid black;
  font-size: 16px;
  margin-top: 10px;
}

.enquiry-container {
  width: 100%;
  max-width: 700px;
  margin-top: 50px;
}

.interest-label {
  font-size: 16px;
  font-weight: lighter;
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
}

.interest-select {
  width: 100%;
  padding: 10px;
  border: 2px solid black;
  font-size: 16px;
  color: grey;
  background: white url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="none" stroke="%23000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" d="M2 5l6 6 6-6"/></svg>') no-repeat right 10px center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.interest-container {
  width: 100%;
  max-width: 700px;
  margin-top: 50px;
}

.submit-button {
  margin-top: 40px;
  background-color: #333; /* Dark background */
  color: white; /* White text */
  border: none; /* No border */
  padding: 10px 20px; /* Padding for size */
  text-align: center; /* Center the text */
  text-decoration: none; /* No underline */
  display: inline-block; /* Inline-block element */
  font-size: 16px; /* Font size */
  cursor: pointer; /* Pointer cursor on hover */
}

.submit-button:hover {
  background-color: #555; /* Slightly lighter background on hover */
}

@media (max-width: 768px) {
  .enquiry-container,
  .interest-container {
      width: 100%;
      margin-top: 20px;
  }
}

/* ---------------------------------------------Contact us section  -------------------------------------------------------------------- */

/* ---------------------------------------------about us section  -------------------------------------------------------------------- */

.container3 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

/* Styling for text content */
.container3 .text-content {
  flex: 1 1 100%; /* Allows this div to initially take 100% of the flex container's width */
  max-width: 1200px; /* Maximum width of the text block */
  margin-top: 100px;
  font-size: 1rem; /* Base font size */
  color: #fff;
  margin-left: 100px;  
}

.container3 .text-content h1 {
  margin-bottom: 8px;
}

/* Media Queries for responsiveness */
@media (min-width: 600px) {
  .container3 {
    padding: 0px; /* Larger padding for larger screens */
    margin:0;
  }
  .container3 .text-content, .container3 .image-content {
    flex: 1 1 50%; /* Each takes half of the container's width on larger screens */
  }
    /* Styling for text content */
.container3 .text-content {
  padding: 0 0px; /* Padding for better readability on small screens */
}
}

@media (max-width: 599px) {
  .container3 {
    padding: 20px; /* Smaller padding for smaller screens */
    margin:0;

  }
  .container3 .text-content, .container3 .image-content {
    margin: 10px; /* Smaller margin for smaller screens */

  }
    .container3 .text-content {
  padding: 0 0px; /* Padding for better readability on small screens */
  margin-left: 10px;  

}
}

@media (max-width: 400px) {
  .container3 .text-content {
    font-size: 0.9rem; /* Smaller font size for very small screens */
  }
}

/* ---------------------------------------------about us section  -------------------------------------------------------------------- */
/* ---------------------------------------------service section  -------------------------------------------------------------------- */

/* Base styles */
.container-service {
  width: 90%;
  color: white;
  margin: 0 auto;
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap */
}

.service-text {
  width: 100%; /* Full width on small screens */
}

.service-image {
  width: 100%; /* Full width on small screens */
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-service h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.container-service .section {
  margin-bottom: 40px;
}

.container-service h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.container-service p {
  font-size: 1em;
  line-height: 1.6;
}

/* Media query for larger screens */
@media screen and (min-width: 768px) {
  .service-text {
    width: 60%; /* Adjust width for larger screens */
  }
  
  .service-image {
    width: 40%; /* Adjust width for larger screens */
  }
}


/* ---------------------------------------------service section  -------------------------------------------------------------------- */
/* ---------------------------------------------Pop Video  -------------------------------------------------------------------- */

        /* Styles for the video overlay */
        #videoOverlay {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.8);
          justify-content: center;
          align-items: center;
          z-index: 1000;
          padding: 20px;
          box-sizing: border-box;
      }

      #videoOverlay video {
          width: 100%;
          max-width: 900px;
          height: 100%;
          max-height: 80vh;
      }

      .close-btn {
          position: absolute;
          top: 10px;
          right: 20px;
          font-size: 24px;
          color: white;
          cursor: pointer;
      }

      /* Ensure the button is visible and well-styled */
      #watchBtn {
          padding: 10px 10px;
          font-size: 16px;
          cursor: pointer;
      }

/* ---------------------------------------------Pop Video  -------------------------------------------------------------------- */
/* ---------------------------------------------Overlay   -------------------------------------------------------------------- */

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  width: 80%; /* Use relative width for responsiveness */
}

.overlay-text h1 {
  font-size: 5vw; /* Use viewport width for font size */
  margin: 0;
}

.overlay-text p {
  font-size: 2.5vw; /* Use viewport width for font size */
  font-weight: bolder;
}

.overlay-text button {
  background-color: #008CBA;
  border: none;
  color: white;
  padding: 1em 2em; /* Use em units for padding */
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 0.6em;
  margin: 0.5em 0.25em; /* Use em units for margin */
  cursor: pointer;
  border-radius: 4px;
  font-weight: bolder;
}

.overlay-text-bottom {
  position: absolute;
  width: 80%; /* Use relative width for responsiveness */
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.overlay-text-bottom p {
  font-size: 1.5vw; /* Use viewport width for font size */
  font-weight: bolder;
}

.overlay-text-bottom button {
  margin-top: 1em; /* Use em units for margin */
  background-color: #0099A8;
  width: 15%; /* Use percentage for width */
  border: none;
  color: white;
  padding: 0.5em; /* Use em units for padding */
  border-radius: 5px;
  font-weight:600;  
  font-size: 16pt;
}

/* Media Queries for Smaller Screens */
@media (max-width: 768px) {
  .overlay-text h1 {
      font-size: 7vw; /* Increase font size for smaller screens */
  }

  .overlay-text p {
      font-size: 4vw; /* Increase font size for smaller screens */
  }

  .overlay-text-bottom p {
      font-size: 2.5vw; /* Increase font size for smaller screens */
  }
  .overlay-text-bottom button {
   width: 40%;
   font-size: 10px;
  }
}

@media (max-width: 480px) {
  .overlay-text h1 {
      font-size: 10vw; /* Increase font size for smaller screens */
  }

  .overlay-text p {
      font-size: 5vw; /* Increase font size for smaller screens */
  }

  .overlay-text-bottom p {
      font-size: 3vw; /* Increase font size for smaller screens */
  }

  .overlay-text button, .overlay-text-bottom button {
      padding: 0.75em 1.5em; /* Adjust padding for smaller screens */
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 90%;
  margin: auto;
}

.card {
  background-color: #121112;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 9px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  width: calc(25.333% - 20px);
  position: relative;
}

.card img {
  width: 100%;
  height: auto;
  display: block;
}

.card .text-card {
  padding: 10px;
  display: none;
  text-align: left;
}

.card-container.show-only .card {
  display: none;
}

.card-container.show-only .card.show {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 20px;
}

.card-container.show-only .card.show img {
  width: 30%;
  height: 600px;
}

.card-container.show-only .card.show .text-card {
  display: block;
  width: 70%;
  padding: 20px;
  color: #fff;
  font-size: 1.1rem;

}

@media (max-width: 1024px) {
  .card {
      width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .card {
      width: calc(100% - 20px);
  }

  .card-container.show-only .card.show {
      flex-direction: column;
      padding: 10px;
  }

  .card-container.show-only .card.show img {
      width: 100%;
      height: auto;
  }

  .card-container.show-only .card.show .text-card {
      width: 100%;
      padding: 10px;
      color: #fff;
      font-size: 1.1rem;

  }
}
@media (max-width: 700px) {
#trailer {
  display: none;
}
}

/* Hide default checkbox */
.lang-toggle input {
  display: none;
}

.lang-toggle {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
  background-color: #ccc;
  border-radius: 30px;
  cursor: pointer;
}

.slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 26px;
  height: 26px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

input:checked + .slider {
  transform: translateX(30px);
}

/* Labels */
.lang-labels {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  font-size: 12px;
  font-weight: bold;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 8px;
  color: #000;
  pointer-events: none;
}


.header-action-area {
  position: fixed;
  top: 3.6em;
  right: 8.3rem;
  z-index: 33;
  width: 3rem;
  height: 3rem;
}
.header-action-area  li{
  list-style: none;


}
@media (max-width: 768px) {
  .header-action-area  {
    position: fixed;
    top: 2.6rem;
    right: 6rem;
    font-size: 20px;

  }

}


        @media (min-width: 701px) {
            .dt-g-box.size-1of4:nth-child(5) {
                border-bottom-right-radius: 20px;
            }

            .dt-g-box.size-1of4:nth-child(3) {
                border-top-right-radius: 20px;
            }
        }

        @media (max-width: 700px) {
            .dt-g-box.size-1of4:nth-child(4) {
                border-bottom-right-radius: initial;
            }

            .dt-g-box.size-1of4:nth-child(3) {
                border-top-right-radius: initial;
            }
        }

        /* Styles for the video overlay */
        #videoOverlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            justify-content: center;
            align-items: center;
            z-index: 1000;
            padding: 10px;
            box-sizing: border-box;
            touch-action: manipulation;
            /* Enable better touch interactions */
        }

        #videoOverlay video {
            width: 100%;
            max-width: 100%;
            height: auto;
            max-height: 90vh;
            object-fit: contain;
            background: #000;
            border-radius: 8px;
            -webkit-overflow-scrolling: touch;
            /* Better scroll on iOS */
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 32px;
            color: white;
            cursor: pointer;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            z-index: 1001;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Mobile-specific styles */
        @media (max-width: 768px) {
            #videoOverlay {
                padding: 5px;
            }

            #videoOverlay video {
                max-height: 70vh;
                border-radius: 0;
            }

            .close-btn {
                top: 10px;
                right: 10px;
                font-size: 28px;
            }
        }


        /* Ensure the button is visible and well-styled */
        #watchBtn {
            padding: 10px 10px;
            font-size: 16px;
            cursor: pointer;
        }

        .logos {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .logo_items {
            display: flex;
            animation: marquee 30s linear infinite;
        }

        .logo_items img {
            margin-right: 20px;
            /* Adjust space between images */
            height: auto;
            max-height: 100px;
            /* Adjust the size of the images as needed */
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-100%);
            }
        }








/* أساسيات قسم العملاء */
.client-section {
    margin-top: 100px;
    padding: 50px;
    /* اتجاه النص حسب الصفحة */
    direction: ltr; /* افتراضياً ltr */
    text-align: left;
    unicode-bidi: embed; /* لتجنب مشاكل التداخل */
}

/* إذا الصفحة RTL */
html[dir="rtl"] .client-section {
    direction: rtl;
    text-align: right;
}

/* صفوف العملاء */
.row {
    display: flex;
    justify-content: space-around;
    opacity: 0; /* مخفي افتراضياً قبل gsap */
    flex-wrap: nowrap;
}

/* لوجو العميل */
.client-logo {
    font-size: 18px;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-logo img {
    width: 150px;
    height: auto;
    max-width: 100%;
    display: block;
}

/* --- تحريك صفوف حسب الاتجاه --- */

/* LTR - فردي من يمين لليسار, زوجي من يسار لليمين */
.row-1 { transform: translateX(100%); }
.row-2 { transform: translateX(-100%); }
.row-3 { transform: translateX(100%); }
.row-4 { transform: translateX(-100%); }
.row-5 { transform: translateX(100%); }
.row-6 { transform: translateX(-100%); }
.row-7 { transform: translateX(100%); }
.row-8 { transform: translateX(-100%); }
.row-9 { transform: translateX(100%); }
.row-10 { transform: translateX(-100%); }

/* RTL يعكس التحويل */
html[dir="rtl"] .row-1 { transform: translateX(-100%); }
html[dir="rtl"] .row-2 { transform: translateX(100%); }
html[dir="rtl"] .row-3 { transform: translateX(-100%); }
html[dir="rtl"] .row-4 { transform: translateX(100%); }
html[dir="rtl"] .row-5 { transform: translateX(-100%); }
html[dir="rtl"] .row-6 { transform: translateX(100%); }
html[dir="rtl"] .row-7 { transform: translateX(-100%); }
html[dir="rtl"] .row-8 { transform: translateX(100%); }
html[dir="rtl"] .row-9 { transform: translateX(-100%); }
html[dir="rtl"] .row-10 { transform: translateX(100%); }

/* ======== تجاوب الشاشة ======== */
@media (max-width: 800px) {
    .client-logo {
        font-size: 18px;
        padding: 10px;
        border-radius: 10px;
        flex: 1 1 30%;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .client-logo {
        flex: 1 1 33%;
        padding: 10px;
    }
    .client-logo img {
        max-width: 130px;
        width: 100%;
        height: auto;
        display: block;
    }
    .row {
        justify-content: space-evenly;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .client-logo {
        font-size: 18px;
        padding: 10px;
        border-radius: 10px;
        flex: 1 1 30%;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .client-logo {
        flex: 1 1 33%;
        padding: 10px;
    }
    .client-logo img {
        max-width: 130px;
        width: 100%;
        height: auto;
        display: block;
    }
    .row {
        justify-content: space-evenly;
        flex-wrap: wrap;
    }
}

.row {
    display: flex;
    justify-content: space-around;
    opacity: 1; /* اجعلها ظاهرة */
    flex-wrap: wrap; /* السماح بتغليف العناصر */
    overflow-x: hidden; /* منع الانزلاق الأفقي */
    width: 100%;
}

/* إزالة translateX الافتراضي على الصفوف لسهولة العرض */
.row-1, .row-2, .row-3, .row-4, .row-5, .row-6, .row-7, .row-8, .row-9, .row-10 {
    transform: none !important;
}

