.g700-video-section {
  height: 100vh;
  min-height: 600px;
  position: relative;
  color: white;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.g700-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* .g700-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
  z-index: -1;
} */
.g700-title {
  font-family: "Orbitron", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.g700-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: white;
}

.g700-stats-container {
  position: absolute;
  bottom: 50px;
  width: 100%;
  z-index: 1;
}

.g700-stats-flex {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.g700-stat-item {
  text-align: center;
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0 10px;
}

.g700-stat-item:last-child {
  border-right: none;
}

.g700-stat-value {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.2;
}

.g700-stat-label {
  font-size: 0.85rem;
  opacity: 0.8;
}

.g700-control-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid white;
  background: transparent;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: auto;
}

.g700-control-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .g700-title {
    font-size: 4rem;
  }

  .g700-stat-value {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .g700-title {
    font-size: 3rem;
  }

  .g700-title img {
    width: 70%
  }

  .g700-subtitle {
    font-size: 1rem;
  }

  .g700-stats-flex {
    flex-wrap: wrap;
  }

  .g700-stat-item {
    flex: 0 0 50%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .g700-stat-item:nth-child(even) {
    border-right: none !important;
  }

  .g700-stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }

  .g700-stat-item:nth-last-child(-n + 2) {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .g700-stats-container {
    bottom: 30px;
  }

  .g700-control-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
  }

  .g700-control-btn {
    margin-left: 0;
  }
}

/* Feature Section */
.g700-feature-section {
  height: 100vh;
  min-height: 600px;
  position: relative;
  background-color: #000;
  overflow: hidden;
}

.g700-feature-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.g700-feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.g700-feature-title {
  position: absolute;
  top: 15%;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 3.5rem;
  font-weight: bold;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.g700-feature-subtitle {
  position: absolute;
  bottom: 10%;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 1.5rem;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

@media (max-width: 767px) {
  .g700-feature-title {
    font-size: 2rem;
    top: 10%;
  }

  .g700-feature-subtitle {
    font-size: 1rem;
    bottom: 5%;
  }
}

/* Performance Section */
.g700-performance-section {
  height: 100vh;
  min-height: 700px;
  position: relative;
  background-color: #000;
  overflow: hidden;
}

.g700-perf-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.g700-perf-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.g700-perf-img-wrapper.active {
  opacity: 1;
  z-index: 1;
}

.g700-perf-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.g700-perf-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.g700-perf-title {
  position: absolute;
  top: 15%;
  width: 100%;
  font-size: 3.5rem;
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
  margin-top: 0;
}

.g700-perf-tabs {
  position: absolute;
  bottom: 5%;
  width: 100%;
  pointer-events: auto;
}

.g700-perf-tab {
  cursor: pointer;
  padding: 15px 0;
  color: #fff;
  transition: all 0.3s ease;
}

.g700-perf-tab:hover .g700-perf-tab-line {
  background-color: rgba(255, 255, 255, 0.6);
}

.g700-perf-tab.active {
  color: #fff;
}

.g700-perf-tab-line {
  height: 2px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  margin-bottom: 15px;
  transition: background-color 0.3s ease;
}

.g700-perf-tab.active .g700-perf-tab-line {
  background-color: #fff;
  height: 3px;
}

.g700-perf-tab-text {
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
  color: white;
}

@media (max-width: 767px) {
  .g700-perf-title {
    font-size: 2rem;
    top: 10%;
  }

  .g700-perf-tabs {
    bottom: 3%;
  }

  .g700-perf-tab {
    padding: 10px 0;
  }

  .g700-perf-tab-text {
    font-size: 0.85rem;
  }
}

/* Intelligent Technology Section */
.g700-tech-section {
  background-color: #a8a8a8;
  padding: 60px 0;
}

.g700-tech-card {
  height: 300px;
  border-radius: 0;
}

.g700-tech-card img {
  object-fit: cover;
  transition: transform 0.5s ease;
}

.g700-tech-card:hover img {
  transform: scale(1.05);
}

.g700-tech-overlay {
  top: 0;
  left: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0) 50%);
}

.g700-tech-text {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

@media (max-width: 767px) {
  .g700-tech-card {
    height: 250px;
  }
}

.topNav_hotline_icon:last-of-type {
  margin-inline-start: 0.75rem !important;
}

.topNav_switch {
  font-size: 1.1rem !important;
}

header .topNav_search {
  display: none !important;
}

@media (max-width: 768px) {
  .stickyNavbar_buttons_button {
    flex: 0 0 calc(100% / 3);
    width: calc(100% / 3);
    padding: 0.35rem 0;
    border: 1px solid white;
    color: white;

    text-align: center;
  }

  .stickyNavbar_buttons_button_link {
    padding: 0;
    border: none;
    color: white;
    width: 100%;
    text-align: center;
  }
}

.mainForm .form-group label {
  top: -13px;
}