/* Home Page Styles */

/* Transparent Header for Home Page */
header {
  background: rgba(26, 26, 46, 0.85) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 230, 255, 0.15);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3) !important;
}

.header-inner {
  background: transparent !important;
}

/* Hero Section */
.hero-subtitle {
  margin: 35px 0 20px 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1em;
  letter-spacing: 1px;
  text-align: center;
}

.hero-buttons {
  margin-top: 65px;
  text-align: center;
}

.hero-buttons .btn {
  margin: 0 5px;
}

.hero-buttons .hero-link {
  margin: 0 5px;
  font-size: 0.9em;
  letter-spacing: 0.5px;
}

/* Mobile hero: one clear message and one primary action. */
@media only screen and (max-width: 767px) {
  .hero-wrap-item h1 {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: 3px;
    padding-bottom: 6px;
  }

  .hero-wrap-item h3 {
    max-width: 320px;
    margin: 0 auto;
    padding-left: 0;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 3px;
  }

  .hero-location span {
    display: block;
  }

  .hero-subtitle {
    display: none;
  }

  .hero-buttons {
    margin-top: 32px;
  }

  .hero-buttons .hero-link,
  .hero-scroll-link {
    display: none;
  }

  .hero-wrap .btn.anim-button {
    min-width: 250px;
    box-sizing: border-box;
  }
}

/* Services Section */
.services-subtitle {
  text-align: right;
  color: #666;
  font-size: 16px;
  margin-top: 15px;
}

/* Project Gallery Thumbnails */
.project-thumbs-container {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  padding: 0 10px;
  overflow-x: auto;
}

.project-thumbs-container-right {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  padding: 0 10px;
  justify-content: flex-end;
  overflow-x: auto;
}

.home-project-slider-holder {
  float: left;
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}

.home-project-slider .item {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #10131c;
}

.home-project-slider .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.project-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 3px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.7;
  transition: all 0.3s;
}

.project-thumb.active {
  border-color: #00e6ff;
  opacity: 1;
}

.project-thumb:hover {
  opacity: 1;
  border-color: rgba(0, 230, 255, 0.5);
}
