/* hero banner */
:root {
  --ws-primary: #1163fb;
  --ws-dark: #0b1739;
  --ws-muted: #7b88a8;
  --ws-soft: #eef4ff;
  --ws-gradient: linear-gradient(135deg, #0e82fd 0%, #5b9dff 50%, #90b8ff 100%);
}

/* ------- Hero ------- */
.ws-hero-banner {
  background: radial-gradient(
      1200px 600px at 15% -10%,
      rgba(14, 130, 253, 0.25),
      transparent
    ),
    radial-gradient(
      900px 500px at 110% 10%,
      rgba(144, 184, 255, 0.25),
      transparent
    ),
    var(--ws-dark);
  color: #fff;
  padding: 3rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.ws-hero-badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.ws-hero-title {
  font-weight: 600;
  line-height: 1.15;
  font-size: 2.5rem;
}

.ws-hero-title .ws-accent {
  background: var(--ws-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ws-hero-subtitle {
  color: #cfd6ff;
  font-size: 16px;
  max-width: 640px;
}

.ws-hero-cta .btn {
  border-radius: 12px;
  padding: 10px 18px;
}

.ws-hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  backdrop-filter: blur(6px);
}

.ws-hero-stat strong {
  font-size: 28px;
  display: block;
}

.ws-hero-stat span {
  font-size: 12px;
  color: #cfd6ff;
}

.ws-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.35;
  background: var(--ws-primary);
}

.ws-shape-1 {
  width: 180px;
  height: 180px;
  left: -60px;
  top: -40px;
}

.ws-shape-2 {
  width: 140px;
  height: 140px;
  right: 10%;
  top: 20%;
}

.ws-shape-3 {
  width: 220px;
  height: 220px;
  right: -80px;
  bottom: -80px;
}

/* ------- Cards ------- */
.ws-contact-cards {
  padding: 40px 0;
  background: #fff;
}

.ws-card {
  border: 1px solid #eef1f7;
  border-radius: 16px;
  padding: 22px;
  transition: 0.5s ease-in-out;
  background: #1163fb1c;
}

.ws-card:hover {
  background-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(14, 130, 253, 0.08);
}

.ws-card-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ws-soft);
  color: var(--ws-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.ws-link {
  color: var(--ws-primary);
  font-weight: 600;
}

.ws-link:hover {
  text-decoration: none;
  filter: brightness(0.9);
}

/* ------- Form ------- */
.ws-contact-form {
  padding: 30px 0 10px;
  background: #f8fbff;
}

.ws-panel {
  background: #fff;
  border: 1px solid #eef1f7;
  border-radius: 16px;
  padding: 24px;
}

.ws-panel-alt {
  background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.ws-section-title {
  font-weight: 700;
  color: #0b1b3a;
}

.ws-label {
  font-weight: 600;
  font-size: 13px;
  color: #3b4861;
}

.ws-input {
  border-radius: 12px;
  border-color: #dfe6f2;
  padding: 10px 12px;
}

.ws-input:focus {
  border-color: var(--ws-primary);
  box-shadow: 0 0 0 0.2rem rgba(14, 130, 253, 0.15);
}

/* ------- Testimonials (left) ------- */
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card img {
  object-fit: cover;
}

.stars {
  font-size: 18px;
  letter-spacing: 2px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #0e82fd;
  border-radius: 50%;
  padding: 10px;
}

/* ------- Utilities ------- */
.btn-primary {
  background: var(--ws-primary);
  border-color: var(--ws-primary);
}

.btn-primary:hover {
  filter: brightness(0.95);
}

.btn-outline-light {
  border-color: #fff;
  color: #fff;
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--ws-dark);
}

/* ---------- Global rhythm ---------- */
#websorbit-contact .container {
  max-width: 1140px;
}

@media (max-width: 575.98px) {
  section {
    padding-left: 14px;
    padding-right: 14px;
  }
}

/* ---------- HERO ---------- */
@media (max-width: 1199.98px) {
  .ws-hero-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 991.98px) {
  .ws-hero-banner {
    padding: 6rem 0 3rem;
    margin-top: -4.5rem;
  }

  .ws-hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .ws-hero-subtitle {
    font-size: 15px;
  }

  .ws-hero-cta .btn {
    padding: 10px 16px;
  }

  .ws-hero-card {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

@media (max-width: 575.98px) {
  .ws-hero-banner {
    padding: 5.5rem 0 2rem;
    margin-top: -4.4rem;
  }

  .ws-hero-badge {
    font-size: 11px;
    padding: 5px 9px;
  }

  .ws-hero-title {
    font-size: 1.7rem;
  }

  .ws-hero-subtitle {
    font-size: 14px;
  }

  .ws-hero-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
  }

  .ws-hero-stat strong {
    font-size: 24px;
  }
}

@media (max-width: 575.98px) {
  .ws-shape-1 {
    width: 140px;
    height: 140px;
    left: -50px;
    top: -50px;
  }

  .ws-shape-2 {
    width: 110px;
    height: 110px;
    right: 6%;
    top: 18%;
  }

  .ws-shape-3 {
    width: 160px;
    height: 160px;
    right: -60px;
    bottom: -60px;
  }
}

/* ---------- CONTACT CARDS ---------- */
@media (min-width: 768px) and (max-width: 991.98px) {
  .ws-contact-cards {
    padding: 36px 0;
  }

  .ws-card {
    padding: 20px;
  }
}

@media (max-width: 575.98px) {
  .ws-contact-cards {
    padding: 28px 0;
  }

  .ws-card {
    padding: 18px;
    border-radius: 14px;
  }

  .ws-card-ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .ws-link {
    word-break: break-word;
    display: inline-block;
  }
}

/* ---------- FORM + TESTIMONIALS ---------- */
@media (max-width: 991.98px) {
  .ws-contact-form {
    padding: 24px 0 6px;
  }

  .ws-contact-form .col-lg-5 {
    margin-bottom: 18px;
  }

  .ws-panel {
    padding: 20px;
    border-radius: 14px;
  }

  .ws-section-title {
    font-size: 1.35rem;
  }

  .ws-label {
    font-size: 12.5px;
  }

  .ws-input {
    padding: 9px 12px;
    border-radius: 10px;
  }
}

@media (max-width: 575.98px) {
  .ws-panel {
    padding: 16px;
    border-radius: 12px;
  }

  .ws-section-title {
    font-size: 1.22rem;
  }

  .ws-input {
    padding: 9px 11px;
  }

  .btn.btn-lg {
    padding: 10px 16px;
    font-size: 1rem;
  }

  .d-flex.align-items-center > small {
    display: none;
  }
}

/* ---------- Testimonial card & carousel tweaks ---------- */
.testimonial-card {
  min-height: 100%;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
}

@media (max-width: 991.98px) {
  .testimonial-card {
    padding: 20px !important;
  }

  .testimonial-card h5 {
    font-size: 1.05rem;
    margin-bottom: 2px;
  }

  .testimonial-card p {
    font-size: 0.95rem;
  }

  .stars {
    font-size: 16px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 575.98px) {
  .testimonial-card {
    padding: 16px !important;
    border-radius: 12px;
  }

  .testimonial-card img {
    width: 72px;
    height: 72px;
  }

  .stars {
    font-size: 15px;
  }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 40px;
  height: 40px;
  background-size: 60% 60%;
}

@media (max-width: 991.98px) {
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 575.98px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 32px;
    height: 32px;
    padding: 8px;
  }
}
/* hero banner */
#testimonialCarousel h3 {
  text-align: center;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: 000;
  font-size: 1.5rem;
}
.testimonial-card img {
  width: 80px!important;
  height: 80px!important;
}
/* ========== Technologies (Marquee) ========== */
.ws-tech-marquee {
  background: #f6f9ff;
  padding: 28px 0 34px;
  border-top: 1px solid #eef1f7;
  border-bottom: 1px solid #eef1f7;
}

.ws-tech-title {
  font-weight: 600;
  text-align: center;
  color: #0b1b3a;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.ws-tech-lane {
  margin-bottom: 1.5rem;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.ws-tech-track {
  display: inline-flex;
  gap: 40px;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
}

/* tech item */
.ws-tech {
  min-width: 70px;
  text-align: center;
  margin: 0;
}

.ws-tech img {
  width: 44px;
  height: 44px;
  display: block;
  margin: 0 auto 8px;
}

.ws-tech figcaption {
  font-size: 14px;
  color: #33425b;
}

/* Animation: slow, continuous */
@keyframes marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }

  /* half because we duplicated items */
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.ws-left .ws-tech-track {
  animation: marquee-left 40s linear infinite;
}

.ws-right .ws-tech-track {
  animation: marquee-right 40s linear infinite;
}

/* Hover to pause (optional, feels premium) */
.ws-tech-lane:hover .ws-tech-track {
  animation-play-state: paused;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .ws-tech {
    min-width: 110px;
  }

  .ws-tech img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 575.98px) {
  .ws-tech-track {
    gap: 0;
  }

  .ws-tech {
    min-width: 90px;
  }

  .ws-tech img {
    width: 36px;
    height: 36px;
  }

  .ws-tech figcaption {
    font-size: 13px;
  }

  .ws-tech-marquee {
    padding-bottom: 0;
  }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ws-left .ws-tech-track,
  .ws-right .ws-tech-track {
    animation: none;
  }
}
