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


  .services-container .service h2 img {
    margin-left: 10px;
    width: 25px;
    height: 25px;
  }

  /* 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,
  .loader  img{
    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-top: 30px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    color: white;

    .dt-g-box {
      background:black;
      /* border: rgb(49, 48, 48) solid 1px; */
      border: rgb(232 232 232) solid 1px;
      text-align: center;
    }

    @media (max-width: 1280px) {
      .dt-g-box {
      }
      width: 960px;
    }
    @media (max-width: 992px) {
      .dt-g-box {
      }
      width: 720px;
    }
    @media (max-width: 768px) {
      .dt-g-box {
      }
      width: 560px;
    }

    @media (max-width: 576px) {
      .dt-g-box {
      }
      width: 95%;
    }
  }

  .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;
    @media (max-width: 1280px) {
      grid-auto-rows: 230px;
    }
    @media (max-width: 992px) {
      grid-auto-rows: 168px;
    }
    @media (max-width: 800px) {
      grid-auto-rows: 128px;
    }
    @media (max-width: 800px) {
      grid-auto-rows: 2fr;
      display: block;

      .dt-g-box {
        min-height: 120px;
      }
    }

    .dt-g-box {

      &.size-1of4 {
        grid-column-start: span 1;
        padding-top: 100px;
        padding-right: 10px;
        padding-left: 10px;
        background-color: #fff;
        color: #000;

      }
      &.size-1of2 {
        grid-column-start: span 2;
      grid-row-end: span 2;
      padding: 150px 100px  100px 100px;
      border-bottom-right-radius: 20px;  /* Adjust the value as needed */
      border-top-right-radius	:20px;

      }
      &.size-1of1 {
        grid-column-start: span 4;
      }
      &.up-2 {
        grid-row-start: span 2;
      }
    }

    @media (max-width: 992px) {
      .md-half {
        grid-column-start: span 2  !important;
        background-color: white;
        color: #000;

      }
      .md-full {
        grid-column-start: span 4 !important;
        background-color: white;
        color: #000;


      }
    }
      @media (max-width: 800px) {
        .sm-quarter {
        grid-column-start: span 1 !important;
        background-color: white;
        color: #000;

      }
      .sm-half {
        grid-column-start: span 2 !important;
        background-color: white;
        color: #000;

      }
      .sm-full {
        grid-column-start: span 4 !important;
        background-color: white;
        color: #000;

      }
    }
    @media (max-width: 800px) {
      .xs-falf {
        grid-column-start: span 2 !important;
        background-color: white;
        color: #000;

      }
      .xs-full {
        grid-column-start: span 4 !important;
        background-color: white;
        color: #000;

      }

        .dt-g-box.size-1of4 {
          grid-column-start: span 1;
          padding-top: 20px;
          padding-right: 0px;
          padding-left: 0px;
          padding-bottom: 20px;


      }
      .dt-g-box.size-1of2  {
        padding-top: 20px;
        padding-bottom: 20px;

    }
    .number{
      line-height: 80%;
    }

    }
  }
  @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;
    > div {
      border: 1px solid white;
      color: #fff;
      flex: 1 0 100%;
    }
  }
  .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;
  }
  .number{
    font-size: 40px;
    font-weight: 900;
  }

  /*End Dokkan Number Boxs */
  .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 rgb(232 232 232);
    box-sizing: border-box;
    height: 600px;
  }

  .service h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .service img {
    width: 100%; /* make image responsive */
    height: 250px; /* maintain aspect ratio */
    object-fit: contain; /* 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:black;
        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;
  }
  /*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:black;
    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:black;
    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(-100%);
        }
        to {
          transform: translateX(300%);
        }
      }

      .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: 20s 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 iframe {
            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: white;
    width: 15%; /* Use percentage for width */
    border: none;
    color: black;
    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:black;
    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;
  }
}
