body {
    padding: 0;
    margin: 0;
  }
  
  #loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
  }
  
  #unity-container {
    position: absolute;
  }
  #unity-container.unity-desktop {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  #unity-container.unity-mobile {
    position: fixed;
    width: 100%;
    height: 100%;
  }
  #image-overlay {
    /* border: 4px solid blue; */
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    /* Initially hidden */
    visibility: hidden;
    /* Prevent rendering */
    animation: showProgressBar 0s linear 4s forwards;
    /* Render after 4s */
  }
  
  #image-overlay-container-1 {
    /* border: 1px solid wheat; */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .slider-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  
  #unity-canvas {
    background-color: #000 !important;
    /* background: url("./splash_screen_desktop.png") no-repeat center; */
    transition: background-image 0.8s ease-in-out;
  }
  
  #unity-canvas.desktop {
    background: url("../TemplateData/slider_screen_desktop.webp") no-repeat center
      center;
      background-size: cover;
  }
  
  #unity-canvas.mobile {
    background: url("../TemplateData/slider_screen_mobile.webp") no-repeat center
      center;
      background-size: cover;
  }
  
  .unity-mobile #unity-canvas {
    width: 100%;
    height: 100%;
  }
  
  #unity-loading-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
    /* border:1px solid cornflowerblue;  */
  }
  
  #unity-loading-bar-2 {
    position: absolute;
    left: 50%;
    bottom: 5%;
    transform: translate(-50%, -50%);
    display: none;
    /* border: 1px solid yellow; */
  }
  
  #unity-logo {
    /* margin:0 auto; */
    /* padding:0 3rem; */
    padding-left: 4rem;
    width: 150px;
    height: 150px;
    background: url("GTT_LOGO.png") no-repeat center;
    /* border: 1px solid silver; */
    display: flex;
    justify-content: center;
    opacity: 0;
    animation: fadeInOut 4s ease-in-out;
  }
  @keyframes fadeInOut {
    0% {
      opacity: 0;
    }
  
    25% {
      opacity: 0.5;
    }
  
    50% {
      opacity: 1;
    }
  
    75% {
      opacity: 0.5;
    }
  
    100% {
      opacity: 0;
    }
  }
  
  #unity-progress-bar-empty {
    /* border: 1px solid silver; */
    border-radius: 15px;
    width: 260px;
    height: 14px;
    padding-top: 2px;
    padding-bottom: 4px;
    background: url("latest_empty_loading.png") no-repeat center;
    opacity: 0;
    /* Initially hidden */
    visibility: hidden;
    /* Prevent rendering */
    animation: showProgressBar 0s linear 4s forwards;
    /* Render after 4s */
  }
  
  @keyframes showProgressBar {
    0% {
      opacity: 0;
      visibility: hidden;
    }
  
    100% {
      opacity: 1;
      visibility: visible;
    }
  }
  
  #unity-progress-bar-full {
    /* border: 1px solid gold; */
    width: 0%;
    height: 14px;
    margin-left: 2.5px;
    background-size: 100% 100%;
    transition: width 0.2s ease-in-out;
    border-radius: 10px;
    background: url("latest_full_loading.png") no-repeat center;
  }
  
  #unity-progress-bar-full-msg {
    color: #fff;
    text-align: center;
    padding: 5px 0;
  }
  
  /* #unity-progress-bar-empty { width: 304px; height: 26px; margin-top: 50px; margin-left: 50.5px; border-radius: 10px;background: url('empty1.png') no-repeat center }
  #unity-progress-bar-full { width: 0%; height: 26px; margin-top: 10px; margin-left: 3.0px ;border-radius: 10px;background: url('fill1.png') no-repeat center } */
  #unity-footer {
    position: relative;
  }
  .unity-mobile #unity-footer {
    display: none;
  }
  #unity-webgl-logo {
    float: left;
    width: 204px;
    height: 38px;
    background: url("webgl-logo.png") no-repeat center;
  }
  #unity-build-title {
    float: right;
    margin-right: 10px;
    line-height: 38px;
    font-family: arial;
    font-size: 18px;
  }
  #unity-fullscreen-button {
    cursor: pointer;
    float: right;
    width: 38px;
    height: 38px;
    background: url("fullscreen-button.png") no-repeat center;
  }
  #unity-warning {
    position: absolute;
    left: 50%;
    top: 5%;
    transform: translate(-50%);
    background: white;
    padding: 10px;
    display: none;
  }
  
  /* Swiper CSS  */
  .swiper-pagination {
    /* border:1px solid blue !important; */
    position: absolute !important;
    bottom: 22% !important;
  }
  
  /* Change the color of the pagination bullets */
  .swiper-pagination-bullet {
    border: 4px solid #244b20;
    background-color: #ffffff !important;
    /* Default color */
    opacity: 0.8 !important;
    /* Adjust opacity */
    width: 30px !important;
    height: 30px !important;
  }
  
  /* Change the color of the active pagination bullet */
  .swiper-pagination-bullet-active {
    border: 4px solid #244b20;
    background-color: #ffedb6 !important;
    /* Active bullet color */
    opacity: 1 !important;
    width: 30px !important;
    height: 30px !important;
  }
  
  /* Optional: Add hover effect */
  .swiper-pagination-bullet:hover {
    background-color: #000;
    /* Change color on hover */
    opacity: 0.8;
  }
  
  @media screen and (max-width: 1200px) {
    .slider-image {
      height: 720px;
      width: 100%;
      /* border:4px solid red !important; */
    }
  
    .swiper-pagination {
      /* border:1px solid red !important; */
      position: absolute !important;
      bottom: 19.5% !important;
    }
  }
  
  @media screen and (max-width: 900px) {
    .slider-image {
      height: 620px;
      width: 100%;
      /* border:1px solid blue; */
    }
  
    .swiper-pagination {
      /* border:1px solid red; */
      position: absolute !important;
      bottom: 18% !important;
    }
  }
  
  @media screen and (max-width: 768px) {
    #unity-canvas {
      /* background: url("./splash_screen_mobile.png"); */
      background-size: cover;
    }
  
    .slider-image {
      height: 600px;
      width: 100%;
      /* border:1px solid black; */
    }
  
    .swiper-pagination {
      /* border:1px solid red; */
      position: absolute !important;
      bottom: 18% !important;
    }
  
    #unity-loading-bar-2 {
      bottom: 8%;
    }
  }
  
  @media screen and (max-width: 600px) {
    #unity-canvas {
      /* background: url("./splash_screen_mobile.png"); */
      background-size: cover;
    }
  
    .slider-image {
      height: 580px;
      width: 100%;
      /* border:1px solid darkmagenta; */
    }
  
    .swiper-pagination {
      /* border:1px solid red; */
      position: absolute !important;
      bottom: 17% !important;
    }
  
    #unity-loading-bar-2 {
      bottom: 7%;
    }
  }
  
  @media screen and (max-width: 480px) {
    #unity-canvas {
      /* background: url("./splash_screen_mobile.png"); */
      background-size: cover;
    }
  
    .slider-image {
      height: 550px;
      width: 100%;
      /* border:1px solid white; */
    }
  
    .swiper-pagination {
      /* border:1px solid red; */
      position: absolute !important;
      bottom: 12% !important;
    }
  
    #unity-loading-bar-2 {
      bottom: 10%;
    }
  }
  