/* HERO SECTION STYLES */
.hero-section {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero-swiper .swiper-slide {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-swiper .swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000080;
  z-index: 1;
}

.carousel-caption {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.swiper-slide-active .carousel-caption {
  opacity: 1;
  transform: translateY(0);
}

.carousel-caption h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.carousel-caption p {
  font-size: 1.2rem;
}

/* Pagination container */
.hero-pagination {
  position: absolute;
  gap: 0px;
  width: 100%;
  display: flex;
  padding-right: 30px;
  padding-bottom: 30px;
  justify-content: flex-end;
  z-index: 5;
}

.hero-pagination .swiper-pagination-bullet:first-child:before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-104%);
  left: 0;
  width: 50px;
  height: 2px;
  background: #ffffff75;
  z-index: -1;
}

.hero-pagination .swiper-pagination-bullet:last-child:before {
  content: '';
  position: absolute;
  top: 0;
  transform: translateY(-104%) translateX(-50%);
  left: 50%;
  width: 2px;
  height: 50px;
  background: #ffffff75;
  z-index: -1;
}

/* Pagination bullet wrapper */
.hero-pagination .swiper-pagination-bullet {
  position: relative;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  opacity: 1 !important;
  background: transparent !important;
  font-size: 18px;
  cursor: pointer;
}

/* Number in pagination */
.hero-pagination .number {
  position: absolute;
  z-index: 3;
}

/* Circular progress */
.progress-circle {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.progress-circle circle {
  fill: none;
  stroke: white;
  stroke-width: 2px;
  stroke-dasharray: 100.53;
  stroke-dashoffset: 100.53;
  opacity: 0.5;
}

/* Active circle animation */
@keyframes progressAnim {
  from {
    stroke-dashoffset: 100.53;
  }

  to {
    stroke-dashoffset: 0;
  }
}


/* ------------------------------------------------------- */
/* ------------------------- MVG ------------------------- */
/* ------------------------------------------------------- */

.card-custom {
  background: #1a1a1a;
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card-custom:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-icon i {
  color: #0d6efd;
}

.card-title {
  color: #fff;
}

.card-text {
  color: #ccc;
}

@media (max-width: 768px) {
  .card-custom {
    margin-bottom: 20px;
  }
}

/* ------------------------------------------------------- */
/* ---------------------- ABOUT US ----------------------- */
/* ------------------------------------------------------- */
.mini-title {
  font-size: 0.9rem;
  letter-spacing: 1.2px;
  color: #0d6efd;
  /* Bootstrap blue accent */
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
}

.section-desc {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .section-title {
    font-size: 1.6rem;
  }

  .section-desc {
    font-size: 1rem;
  }
}

/* ------------------------------------------------------- */
/* ----------------------- STRIP ------------------------- */
/* ------------------------------------------------------- */
.animated-skew {
  background-color: #111;
  color: #0d6efd;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  transform: skewY(-2deg);
}

.strip-wrapper {
  display: inline-block;
  width: 100%;
}

.strip-content {
  display: inline-block;
  padding: 10px 0;
  animation: scrollStrip 20s linear infinite;
  cursor: default;
}

.strip-content span {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 4px;
  word-spacing: 20px;
  display: inline-block;
  margin-right: 8px;
  cursor: default;
  transition: transform 0.3s ease;
}


/* Move content from right to left continuously */
@keyframes scrollStrip {
  0% {
    transform: translateX(0) skew(30px 30px);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive font size */
@media (max-width: 768px) {
  .strip-content {
    font-size: 0.9rem;
  }
}

/* ------------------------------------------------------- */
/* ---------------------- PRODUCTS ----------------------- */
/* ------------------------------------------------------- */
.btn-viewall {
  display: inline-block;
  padding: 10px 30px;
  font-weight: 600;
  color: #fff;
  border: 2px solid #0d6efd;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  animation: glow 2s linear infinite;
}

.btn-viewall:hover {
  background-color: #0d6efd;
  color: #fff;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 2px #0d6efd, 0 0 4px #0d6efd, 0 0 8px #0d6efd;
  }

  50% {
    box-shadow: 0 0 8px #0d6efd, 0 0 12px #0d6efd, 0 0 20px #0d6efd;
  }

  100% {
    box-shadow: 0 0 2px #0d6efd, 0 0 4px #0d6efd, 0 0 8px #0d6efd;
  }
}

/* Product Card */
.product-card {
  background: #1a1a1a;
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 15px !important;
}

.product-title {
  font-size: 0.95rem;
  color: #ccc;
  margin: 5px 0 15px 0;
}

.btn-buy {
  display: inline-block;
  padding: 8px 20px;
  background-color: #0d6efd;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-buy:hover {
  background-color: #0a58ca;
}

/* Swiper Navigation Arrows */
.products-swiper .swiper-button-next,
.products-swiper .swiper-button-prev {
  width: 45px;
  height: 45px;
  background-color: #0d6efd;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.products-swiper .swiper-button-next::after,
.products-swiper .swiper-button-prev::after {
  font-size: 20px;
  color: #fff;
}

.products-swiper .swiper-button-next {
  right: 10px;
}

.products-swiper .swiper-button-prev {
  left: 10px;
}

/* Optional: Hover effect */
.products-swiper .swiper-button-next:hover,
.products-swiper .swiper-button-prev:hover {
  background-color: #0a58ca;
}


/* ------------------------------------------------------- */
/* ---------------------- SERVICES ----------------------- */
/* ------------------------------------------------------- */
.mini-title {
  font-size: 0.9rem;
  letter-spacing: 1.2px;
  color: #0d6efd;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
}

/* Service Card Styles */
.service-card {
  background: #1a1a1a;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.service-icon i {
  color: #0d6efd;
}

.service-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

.service-desc {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }

  .service-desc {
    font-size: 0.9rem;
  }
}

/* ------------------------------------------------------- */
/* ---------------------- CONTACT ----------------------- */
/* ------------------------------------------------------- */
.mini-title {
  font-size: 0.9rem;
  letter-spacing: 1.2px;
  color: #0d6efd;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.contact-desc {
  margin-top: 1rem;
  padding-left: 20px;
  border-left: 1px solid #fff;
}

/* Form Styles */
.contact-form input,
.contact-form textarea {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 10px;
  color: #fff;
  padding: 12px 15px;
  width: 100%;
  transition: all 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #ffffff75;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 10px rgba(13, 110, 253, 0.5);
  outline: none;
}

.btn-submit {
  background-color: #0d6efd;
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-submit:hover {
  background-color: #0a58ca;
  box-shadow: 0 0 15px rgba(13, 110, 253, 0.6);
}

/* Contact Info */
.contact-info h5 {
  color: #fff;
  font-weight: 600;
}

.contact-info p {
  color: #ccc;
  font-size: 0.95rem;
}

.map-placeholder img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  height: 275px;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 992px) {
  .section-title {
    font-size: 1.6rem;
  }

  .hero-section {
    height: 100%;
    overflow: hidden;
  }

  .hero-swiper .swiper-slide {
    height: 500px;
  }

  .carousel-caption h1 {
    font-size: 1.5rem;
  }
  
  .hero-pagination {
    padding-right: 0;
    padding-bottom: 0;
  }

}