@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;700&display=swap");

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  scroll-behavior: smooth;

}

::-webkit-scrollbar {
  width: 6px;
  background: none;
}

::-webkit-scrollbar-thumb {
  background-color: var(--dark-text-color);
}

::-webkit-scrollbar-track {
  background-color: var(--second-color);
}

:root {
  --main-color: #F37021;
  --second-color: #ffffffb7;
  --dark-text-color: #000000;
  --light-text-color: #ffffff;
  --hover-color: #f5b300;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: Inter, sans-serif;
}

#custom-loader {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background: black;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 1s;
}

.loader-logo {
  width: 180px;
  animation: 2s infinite pulse;
  margin-bottom: 30px;
}

@keyframes pulse {
  0% {
    opacity: 0.4;
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0.4;
    transform: scale(0.95);
  }
}

#unity-loading-bar {
  width: 100%;
  height: 1vw;
  background: var(--dark-text-color);
  position: absolute;
  bottom: 0px;
  left: 0px;
}

#unity-progress-bar-empty {
  width: 100%;
  height: 100%;
}

#unity-progress-bar-full {
  width: 0%;
  height: 100%;
  background: var(--light-text-color);
}

.landing-background {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}

#unity-container {
  width: 100%;
  height: 100%;
}

#unity-canvas {
  width: 100%;
  height: 100%;
  background: rgb(35, 31, 32);
  display: block;
}

.overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 200px;
  pointer-events: auto;
}

.text-content {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  text-align: left;
  color: var(--light-text-color);
  max-width: 400px;
  pointer-events: auto;
  transition: opacity 0.3s;
}

.text-content.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.text-content h1 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);

}

.text-content p {
  font-size: 22px;
  font-weight: 100;
  line-height: 1.6;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);

}

.scroll-btn {
  padding: 16px 24px;
  font-size: 18px;
  background-color: var(--main-color);
  color: var(--light-text-color);
  border: medium;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-decoration: none;
}

.scroll-btn:hover {
  background-color: var(--hover-color);
}

@media (max-width: 1024px) {
  .text-content {
    right: 5%;
    max-width: 350px;
  }

  .text-content h1 {
    font-size: 36px;
  }

  .text-content p {
    font-size: 24px;
  }

  .logo {
    width: 160px;
    top: 15px;
    left: 15px;
  }

  .scroll-btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .text-content {
    top: auto;
    bottom: 80px;
    right: 50%;
    transform: translateX(50%);
    text-align: center;
    max-width: 90%;
  }

  .text-content h1 {
    font-size: 36px;
  }

  .text-content p {
    font-size: 24px;
    margin-bottom: 50px;
  }

  .scroll-btn {
    font-size: 24px;
    padding: 12px 24px;
  }

  .logo {
    width: 150px;
  }
}

.content-wrapper {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 50vw;
  max-width: 768px;
  height: 100vh;
  overflow-y: auto;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.1) -3px 0px 10px;
  transition: transform 0.3s, opacity 0.3s;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
}

.intro-section {
  background-color: var(--second-color);
  padding: 60px 40px;
  text-align: left;
}

.sidebar-close-btn {
  position: absolute;
  top: 28px;
  left: 40px;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;

}

.sidebar-close-btn i {
  color: var(--dark-text-color);
  transition: color 0.2s;
}

.sidebar-close-btn i:hover {
  color: var(--main-color);
}

.map-button {
  position: absolute;
  top: 20px;
  right: 40px;
  z-index: 10;
}

.map-button a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border: 2px solid var(--main-color);
  border-radius: 8px;
  color: var(--main-color);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: 0.2s;
}

.map-button a:hover {
  background-color: var(--main-color);
  color: var(--light-text-color);
}

.intro-text h2 {
  font-size: 42px;
  color: var(--dark-text-color);
  margin-top: 50px;
  padding: 24px 0px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);

}

.intro-text p {
  font-size: 20px;
  line-height: 1.5;
  color: var(--dark-text-color);
  max-width: 700px;
  font-weight: 100;
  padding: 24px 0px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);

}

.intro-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: var(--main-color);
  color: var(--light-text-color);
  border: medium;
  padding: 16px 24px;
  font-size: 18px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: var(--hover-color);
}

.btn-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  color: var(--main-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.btn-link:hover {
  color: var(--hover-color);
}

.custom-slider {
  position: relative;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  margin: 40px auto;
  overflow: hidden;
  border-radius: 16px;

}

.slider-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease-in-out;

}

.slide {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
  overflow: hidden;

}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: medium;
  padding: 0px;
  cursor: pointer;
  z-index: 2;
}

.slider-btn img {
  width: 50px;
  height: auto;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.slider-btn:hover img {
  opacity: 1;
}

.slider-btn.prev {
  left: 24px;
}

.slider-btn.next {
  right: 24px;
}

.intro-description {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.intro-description h3 {
  font-size: 32px;
  color: var(--dark-text-color);
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);

}

.intro-description p {
  font-size: 20px;
  line-height: 1.5;
  color: var(--dark-text-color);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .content-wrapper {
    width: 100vw;
    position: relative;
    box-shadow: none;
  }

  .slider-btn img {
    width: 35px;
  }

  .intro-text h2 {
    font-size: 36px;
  }

  .intro-text p {
    font-size: 24px;
  }

  .intro-description h3 {
    font-size: 32px;
  }

  .intro-description p {
    font-size: 24px;
  }

  .btn-primary {
    margin-bottom: 12px;
  }
}

.about-section {
  background-color: var(--second-color);
  padding: 60px 20px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: left;
  max-width: 100%;
  margin: 0px auto;
  border-radius: 16px;
  padding: 30px;
  gap: 30px;
  flex-wrap: initial;
}

.about-image img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

.about-text {
  flex: 1 1 0%;
  min-width: 250px;
}

.about-text h3 {
  font-size: 40px;
  color: var(--dark-text-color);
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.about-text p {
  font-size: 18px;
  color: var(--dark-text-color);
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1320px){
  .about-container {
    flex-direction: column;
    text-align: center;
    padding: 12px;
  }
}
@media (max-width: 1024px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    padding: 12px;
  }

  .about-image img {
    width: 100%;
    height: auto;
  }

  .about-text h3 {
    font-size: 36px;
  }

  .about-text p {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 6px;
  }

  .about-container {
    padding: 6px;
    text-align: center;
  }

  .about-image img {
    max-width: 100%;
    padding: 6px;
  }

  .about-text h3 {
    font-size: 36px;
    padding: 6px;
  }

  .about-text p {
    font-size: 24px;
    padding: 6px;
  }
}

.values-section {
  background-color: var(--second-color);
  padding: 60px 40px;
  text-align: left;
}

.values-header {
  max-width: 800px;
  margin: 0px auto 40px;
}

.values-header h2 {
  font-size: 38px;
  color: var(--dark-text-color);
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.values-header p {
  font-size: 18px;
  color: var(--dark-text-color);
  line-height: 1.5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 50px;
  max-width: 1000px;
  margin: 0px auto;
}

.value-box {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 6px 20px;
  transition: 0.4s;
  transform: scale(1);
  text-align: center;
}

.value-box i {
  font-size: 36px;
  color: var(--main-color);
  margin-bottom: 15px;
  display: inline-block;
  transition: transform 0.4s, color 0.3s;
}

.value-box h4 {
  font-size: 22px;
  color: var(--dark-text-color);
  margin-bottom: 10px;
  transition: color 0.3s;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.value-box p {
  font-size: 18px;
  color: var(--dark-text-color);
  transition: color 0.3s;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.value-box:hover {
  background-color: var(--main-color);
  color: white;
  transform: scale(1.05);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 12px 25px;
}

.value-box:hover i {
  transform: rotate(360deg);
  color: white;
}

.value-box:hover h4,
.value-box:hover p {
  color: white;
}

@media (max-width: 768px) {
  .values-header h2 {
    font-size: 36px;
  }

  .values-header p {
    font-size: 24px;
  }

  .value-box h4 {
    font-size: 24px;
  }

  .value-box p {
    font-size: 24px;
  }
}

.experience-section {
  background-color: var(--second-color);
  padding: 60px 40px;
  text-align: center;
}

.experience-header h2 {
  font-size: 42px;
  color: var(--dark-text-color);
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.experience-header p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--dark-text-color);
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.experience-stats {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  max-width: 900px;
  margin: 0px auto 50px;
}

.stat-box {
  border-radius: 12px;
  padding: 25px 15px;
  transition: 0.4s;
}

.stat-box i {
  font-size: 32px;
  color: var(--main-color);
  margin-bottom: 10px;
  transition: transform 0.4s, color 0.3s;
}

.stat-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-text-color);
  margin: 10px 0px 5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.stat-box p {
  font-size: 18px;
  min-height: 40px;
  color: var(--dark-text-color);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.stat-box:hover i {
  transform: rotate(360deg);
}

.testimonial-carousel {
  position: relative;
  width: 100%;
  height: 300px;
  margin: 0px auto;
  overflow: hidden;

}

.testimonial-card {
  position: absolute;
  text-align: left;
  top: 0px;
  left: 100%;
  width: 100%;
  opacity: 0;
  background: var(--light-text-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px;
  transition: transform 0.6s, opacity 0.6s;
  transform: translateX(100%);
}

.testimonial-card.active {
  left: 0px;
  opacity: 1;
  transform: translateX(0px);
  z-index: 3;
}

.quote-icon {
  width: 20px;
  height: 20px;
  margin-bottom: 10px;
  left: 20px;
}

.testimonial-card p {
  font-size: 18px;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.testimonial-card h4 {
  font-weight: bold;
  font-size: 24px;
  margin: 0px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.testimonial-card span {
  color: rgb(153, 153, 153);
}

@media (max-width: 768px) {
  .experience-header h2 {
    font-size: 36px;
  }

  .experience-header p {
    font-size: 24px;
  }

  .quote-icon {
    width: 10px;
    height: 10px;
  }

  .testimonial-card p {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .testimonial-card h4 {
    font-weight: bold;
    font-size: 24px;
  }
}
@media (max-width: 425px){
.testimonial-card p {
    font-size: 16px;
  }

  .testimonial-card h4 {
    font-size: 18px;
  }
}
.footer {
  background-color: var(--dark-text-color);
  color: var(--light-text-color);
  padding: 50px 20px 20px;
  font-family: var(--font-family);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.footer-left {
  max-width: 300px;
}

.footer-logo {
  width: 300px;
  padding-left: 25px;
}

.contact-info {
  list-style: none;
  padding: 12px;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  margin: 12px 0px;
  font-size: 16px;
  transition: 0.3s;
  cursor: pointer;
}

.contact-info li a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--light-text-color);
  transition: 1s ease-in-out;
}

.contact-info li a:hover i {
  color: var(--hover-color);
  transform: scale(1.2);
}

.contact-info li a:hover span {
  color: var(--hover-color);
}

.footer-right iframe {
  width: 300px;
  height: 300px;
  border: 0px;
}

.footer-bottom {
  text-align: center;
  font-size: 16px;
  margin-top: 40px;
  border-top: 1px solid var(--second-color);
  padding-top: 15px;
}

@media (max-width: 768px) {
  .footer-container {
    justify-content: center;
    align-items: center;
  }
}

.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s ease-out;
}

.slide-up.active {
  opacity: 1;
  transform: translateY(0px);
}