/* =====================================================
   Webteck — Web Development OP (clean rebuild)
   Bootstrap 5 + custom CSS, no Elementor.
   ===================================================== */

:root {
  /* --theme-color: #684DF4; */
  --theme-color: rgb(116 36 161);
  --theme-color-light: rgba(104, 77, 244, .1);
  --title-color: #141D38;
  --body-color: #737887;
  --smoke-color: #F5F5F5;
  --black-color: #000000;
  --gray-color: #bdbdbd;
  --white-color: #ffffff;
  --light-color: #72849B;
  --yellow-color: #FFB539;
  --border-color: #E0E0E0;
  --title-font: 'Poppins', sans-serif;
  --body-font: 'Poppins', sans-serif;
  --container-width: 1220px;
  --section-space: 120px;
  --section-space-mobile: 80px;
}

/* ---- Base ---- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body-font);
  color: var(--body-color);
  font-size: 16px;
  line-height: 1.75;
  background: var(--white-color);
  margin: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.sec-title, .hero-title {
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 700;
  line-height: 1.25;
  margin-top: 0;
}

p { margin-top: 0; }

a { color: var(--theme-color); text-decoration: none; transition: color .3s ease; }
a:hover { color: var(--title-color); }

img { max-width: 100%; height: auto; }

.container {
  max-width: var(--container-width);
}

.text-theme { color: var(--theme-color) !important; font-weight: 400; }
.bg-smoke { background-color: var(--smoke-color); }

/* ---- Section spacing ---- */
.section {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}
@media (max-width: 991.98px) {
  .section {
    padding-top: var(--section-space-mobile);
    padding-bottom: var(--section-space-mobile);
  }
}

/* ---- Sub-title + section title ---- */
.sub-title {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--theme-color);
  background: var(--theme-color-light);
  padding: 7px 18px;
  border-radius: 4px;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.sub-title img { height: 12px; width: auto; }

.sec-title {
  font-size: 44px;
  line-height: 1.18;
  margin-bottom: 22px;
}
@media (max-width: 991.98px) { .sec-title { font-size: 36px; } }
@media (max-width: 575.98px) { .sec-title { font-size: 30px; } }

/* ---- Buttons ---- */
.btn-theme {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--theme-color);
  color: #fff;
  border: 1px solid var(--theme-color);
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all .35s ease;
}
.btn-theme:hover,
.btn-theme:focus {
  background: var(--title-color);
  border-color: var(--title-color);
  color: #fff;
}
.btn-theme.btn-pill { border-radius: 999px; padding: 16px 36px; }

.link-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--title-color);
}
.link-btn i { transition: transform .3s ease; }
.link-btn:hover { color: var(--theme-color); }
.link-btn:hover i { transform: translateX(4px); }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .04);
  transition: box-shadow .3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 18px rgba(20, 29, 56, .08); }

.site-logo img { display: block; }
.brand-logo-img {
  display: block;
  height: 54px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
@media (max-width: 575.98px) {
  .brand-logo-img { height: 56px; max-width: 140px; }
}
/* Inverted version for the dark footer */
.brand-logo-img--footer {
  height: 56px;
  max-width: 220px;
  filter: brightness(0) invert(1);
}

.site-nav ul a {
  color: var(--title-color);
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 16px;
  padding: 8px 0;
  position: relative;
}
.site-nav ul a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--theme-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.site-nav ul a:hover { color: var(--theme-color); }
.site-nav ul a:hover::after { transform: scaleX(1); }

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-color);
  background: transparent;
  border-radius: 4px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--title-color);
  transition: all .3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  background: #fff;
  border-top: 1px solid var(--border-color);
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.mobile-nav.open { max-height: 500px; }
.mobile-nav ul { padding: 16px 24px; }
.mobile-nav li a:not(.btn) {
  display: block;
  padding: 10px 0;
  color: var(--title-color);
  font-family: var(--title-font);
  font-weight: 600;
  border-bottom: 1px solid var(--border-color);
}
.mobile-nav li a:not(.btn):hover { color: var(--theme-color); }
.mobile-nav li:last-child a:not(.btn) { border: 0; }
.mobile-nav .btn { display: inline-flex; }

/* ---- Hero ---- */
.hero {
  position: relative;
  background-color: #F7F8FD;
  padding: 100px 0 120px;
  overflow: hidden;
}

/* Circuit / tech pattern (left side, behind the title) */
.hero-shape1 {
  position: absolute;
  top: 14%;
  left: 3%;
  max-width: 720px;
  width: 55%;
  z-index: 0;
  pointer-events: none;
  opacity: .9;
  animation: heroJump 4s ease-in-out infinite;
  will-change: transform;
}
@media (max-width: 1199.98px) { .hero-shape1 { max-width: 520px; opacity: .6; } }
@media (max-width: 991.98px)  { .hero-shape1 { max-width: 380px; top: auto; bottom: 0; right: 0; left: auto; opacity: .35; } }
@media (max-width: 767.98px)  { .hero-shape1 { display: none; } }

@keyframes heroJump {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-30px); }
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 60px 0;
}

.hero-subtitle {
  display: inline-block;
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--theme-color);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 74px;
  font-weight: 700;
  line-height: 1.13;
  margin: 0 0 4px;
  color: var(--title-color);
}
.hero-title:last-of-type { margin-bottom: 22px; }
@media (max-width: 1199.98px) { .hero-title { font-size: 60px; } }
@media (max-width: 991.98px)  { .hero-title { font-size: 50px; } }
@media (max-width: 575.98px)  { .hero-title { font-size: 38px; } }

.hero-text {
  font-size: 16px;
  margin: 0 0 32px;
  max-width: 540px;
  color: var(--body-color);
}

/* Hero image — absolutely positioned, breaks out of the container so it sits
   flush to the right edge of the viewport. The girl PNG is transparent so the
   diagonal-cut purple circle behind it is visible around her body. */
.hero-img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 50%;
  max-width: 820px;
  z-index: 2;
  pointer-events: none;
}

/* Solid purple circle with a diagonal cut (upper-right transparent) */
.hero-img::before {
  content: "";
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  bottom: 4%;
  left: 4%;
  background: linear-gradient(
    45deg,
    var(--theme-color) 0%,
    var(--theme-color) 64%,
    transparent 64.1%,
    transparent 100%
  );
  border-radius: 50%;
  z-index: 1;
  animation: heroCirclePulse 8s ease-in-out infinite;
}
@keyframes heroCirclePulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.02); }
}

/* The girl (transparent PNG) — sits on top of the circle, flush to the right */
.hero-img img {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: auto;
  max-width: none;
  z-index: 2;
  display: block;
}

/* Soft theme-color glow inside the circle */
.hero-img .shape-blur {
  position: absolute;
  bottom: 18%;
  left: 12%;
  width: 55%;
  aspect-ratio: 1;
  background: var(--theme-color);
  opacity: .35;
  filter: blur(180px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* Reserve enough vertical space for the absolute image */
.hero { min-height: 760px; }

@media (max-width: 1399.98px) {
  .hero-img { width: 50%; max-width: 720px; }
}
@media (max-width: 1199.98px) {
  .hero { min-height: 660px; padding: 80px 0 100px; }
  .hero-img { width: 46%; }
  .hero-content { padding: 30px 0; }
}
@media (max-width: 991.98px) {
  .hero {
    min-height: 0;
    padding: 60px 0 40px;
    text-align: center;
  }
  .hero-content { padding: 0; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-img-phone { margin-top: 40px; }
  .hero-img-phone img { max-width: 70%; }
}
@media (max-width: 575.98px) {
  .hero { padding: 40px 0 20px; }
  .hero-subtitle { font-size: 14px; letter-spacing: 1.5px; }
  .hero-actions { gap: 16px !important; }
}

.hero-social {
  position: absolute;
  bottom: 130px;
  left: 30px;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  z-index: 3;
  transform: rotate(-90deg);
  transform-origin: left top;
}
.hero-social a {
  font-family: var(--title-font);
  font-weight: 500;
  font-size: 14px;
  color: var(--title-color);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-social a:hover { color: var(--theme-color); }

.play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--theme-color);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  text-decoration: none;
  position: relative;
  cursor: pointer;
}
.play-btn:hover { background: var(--title-color); color: #fff; }
.play-btn::before,
.play-btn::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--theme-color);
  opacity: .3;
  animation: ripple 2s linear infinite;
}
.play-btn::after { animation-delay: 1s; }
@keyframes ripple {
  from { transform: scale(.9); opacity: .6; }
  to   { transform: scale(1.4); opacity: 0; }
}
.play-btn-lg {
  width: 80px;
  height: 80px;
  font-size: 22px;
}

.call-btn .btn-text { display: block; font-size: 13px; }

/* ---- About ---- */
.about-section { background: #fff; }

.about-img-box {
  position: relative;
  padding: 0 0 60px 60px;
  min-height: 520px;
}
.about-img-1 { width: 78%; border-radius: 8px; box-shadow: 0 20px 40px rgba(20,29,56,.08); }
.about-img-2 {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 50%;
  border-radius: 8px;
  border: 8px solid #fff;
  box-shadow: 0 12px 30px rgba(20,29,56,.12);
}
.about-img-3 {
  position: absolute;
  bottom: 0;
  right: 60px;
  width: 32%;
  border-radius: 8px;
  border: 6px solid #fff;
  box-shadow: 0 12px 30px rgba(20,29,56,.12);
}
.about-img-shape {
  position: absolute;
  top: -20px;
  right: 0;
  width: 70%;
  z-index: -1;
  opacity: .8;
}
@media (max-width: 767.98px) {
  .about-img-box { padding: 0; min-height: 0; }
  .about-img-1 { width: 100%; }
  .about-img-2, .about-img-3, .about-img-shape { display: none; }
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  color: var(--title-color);
  font-family: var(--title-font);
  font-weight: 500;
}
.checklist li i {
  color: var(--theme-color);
  font-size: 18px;
  margin-top: 4px;
}
.checklist li.unavailable { color: var(--gray-color); }
.checklist li.unavailable i { color: var(--gray-color); }

/* ---- Counter ---- */
.counter-section {
  padding-top: 0;
  padding-bottom: var(--section-space);
}
.counter-card {
  display: flex;
  align-items: center;
  gap: 16px;
}
.counter-icon {
  width: 64px;
  height: 64px;
  background: var(--theme-color-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.counter-icon img { width: 32px; height: 32px; }
.counter-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--title-color);
  margin: 0;
  line-height: 1;
}
@media (max-width: 575.98px) {
  .counter-card { flex-direction: column; text-align: center; gap: 8px; }
  .counter-number { font-size: 36px; }
}

/* ---- Skills + Video ---- */
.skill-feature { margin-bottom: 22px; }
.skill-feature h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--title-color);
}
.skills-section .progress {
  height: 6px;
  background: var(--smoke-color);
  border-radius: 99px;
  overflow: visible;
}
.skills-section .progress-bar {
  background: var(--theme-color);
  border-radius: 99px;
  position: relative;
  overflow: visible;
}
.skills-section .progress-bar span {
  position: absolute;
  right: 0;
  top: -28px;
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 14px;
  color: var(--title-color);
}

.video-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.video-box img { width: 100%; display: block; border-radius: 12px; }
.video-box .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ---- Services ---- */
.service-box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 30px rgba(20, 29, 56, .06);
  transition: transform .35s ease, box-shadow .35s ease;
}
.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(20, 29, 56, .12);
}
.service-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.service-content {
  padding: 28px 24px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.service-icon {
  width: 64px;
  height: 64px;
  background: var(--theme-color-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -56px 0 16px;
  border: 4px solid #fff;
}
.service-icon img { width: 32px; height: 32px; }
.service-content h3 {
  font-size: 22px;
  margin: 0 0 10px;
}
.service-content h3 a { color: var(--title-color); }
.service-content h3 a:hover { color: var(--theme-color); }
.service-content p { flex: 1; }

/* ---- Team ---- */
.team-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 6px 30px rgba(20,29,56,.06);
  transition: transform .35s ease;
}
.team-card:hover { transform: translateY(-6px); }

.team-img {
  position: relative;
  overflow: hidden;
}
.team-img img {
  width: 100%;
  display: block;
  transition: transform .5s ease;
}
.team-card:hover .team-img img { transform: scale(1.05); }

.team-social {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.team-social .play-btn {
  width: 44px;
  height: 44px;
  font-size: 14px;
}
.team-social .play-btn::before,
.team-social .play-btn::after { content: none; }
.th-social {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.team-card:hover .th-social { max-height: 240px; }
.th-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--theme-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.1);
  font-size: 14px;
}
.th-social a:hover { background: var(--theme-color); color: #fff; }

.team-content {
  padding: 22px 16px 26px;
}
.team-content h3 {
  font-size: 22px;
  margin-bottom: 4px;
}
.team-content h3 a { color: var(--title-color); }
.team-content h3 a:hover { color: var(--theme-color); }
.team-desig {
  display: block;
  color: var(--theme-color);
  font-family: var(--title-font);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- Testimonials ---- */
.testimonial-section { background: var(--smoke-color); }

/* Slider wrapper — adds room for the side arrows on desktop */
.testi-slider {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 8px 56px;
}

/* Make every slide the same height (Swiper trick) */
.testi-swiper {
  padding: 8px 4px 4px; /* leaves room for hover-lift shadow */
}
.testi-swiper .swiper-slide {
  height: auto;
  display: flex;
}
.testi-swiper .swiper-slide > .testi-card { width: 100%; }

/* Card — flex column so the author block sticks to the bottom */
.testi-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 36px 30px 30px;
  box-shadow: 0 8px 24px rgba(20, 29, 56, .06);
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
  height: 100%;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(20, 29, 56, .12);
}
.testi-card .testi-mark {
  position: absolute;
  top: 24px;
  right: 26px;
  font-size: 28px;
  color: var(--theme-color);
  opacity: .15;
}

.testi-text {
  flex: 1 1 auto;
  font-size: 15px;
  line-height: 1.7;
  color: var(--title-color);
  margin: 0 0 18px;
  font-weight: 400;
}

.testi-stars {
  color: var(--yellow-color);
  font-size: 13px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(20, 29, 56, .06);
}
.testi-author h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: var(--title-color);
}

/* Initial-circle default avatar */
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--theme-color), #5a1c80);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 17px;
  text-transform: uppercase;
  flex: 0 0 auto;
  user-select: none;
}

/* Custom prev/next arrows — sit outside the swiper on desktop */
.testi-slider .testi-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  color: var(--theme-color);
  border: 1px solid rgba(20, 29, 56, .08);
  box-shadow: 0 6px 18px rgba(20, 29, 56, .08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background .25s ease, color .25s ease;
}
.testi-slider .testi-arrow:hover {
  background: var(--theme-color);
  color: #fff;
}
.testi-slider .testi-arrow.swiper-button-disabled { opacity: .35; cursor: default; }
.testi-slider .testi-prev { left: -22px; }
.testi-slider .testi-next { right: -22px; }
.testi-slider .testi-arrow i { font-size: 13px; }

/* Custom pagination dots */
.testi-slider .swiper-pagination {
  position: static;
  margin-top: 32px;
}
.testi-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(20, 29, 56, .18);
  opacity: 1;
  margin: 0 5px !important;
  border-radius: 50%;
  transition: width .25s ease, background .25s ease;
}
.testi-slider .swiper-pagination-bullet-active {
  width: 26px;
  background: var(--theme-color);
  border-radius: 999px;
}

@media (max-width: 1199.98px) {
  .testi-slider .testi-prev { left: 4px; }
  .testi-slider .testi-next { right: 4px; }
}
@media (max-width: 767.98px) {
  .testi-slider { padding: 0 8px 50px; }
  .testi-card { padding: 30px 24px 24px; }
  .testi-text { font-size: 14.5px; line-height: 1.65; }
  .testi-slider .testi-arrow { width: 36px; height: 36px; }
  .testi-slider .testi-prev { left: -4px; }
  .testi-slider .testi-next { right: -4px; }
}

/* ---- CTA ---- */
.cta-section {
  background: linear-gradient(135deg, var(--theme-color) 0%, #4d35d8 100%);
  padding: 80px 0;
}
.cta-section .sub-title {
  background: rgba(255,255,255,.15);
  color: #fff;
}
.cta-section .sec-title { color: #fff; }
.cta-section .sec-title .text-theme { color: #FFB539 !important; }
.cta-section .btn-theme {
  background: #fff;
  color: var(--theme-color);
  border-color: #fff;
}
.cta-section .btn-theme:hover {
  background: var(--title-color);
  color: #fff;
  border-color: var(--title-color);
}

/* ---- Pricing ---- */
.price-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(20,29,56,.12); }

.price-card-top { padding-bottom: 18px; border-bottom: 1px dashed var(--border-color); margin-bottom: 22px; }
.price-card-top h3 { font-size: 22px; margin: 0 0 6px; }
.price-card-top p { margin: 0 0 14px; font-size: 14px; }
.price-amount {
  font-size: 32px;
  font-weight: 800;
  color: var(--theme-color);
  margin: 0;
}
.price-amount span { font-size: 14px; color: var(--body-color); font-weight: 400; }

.price-checklist { text-align: left; flex: 1; margin-bottom: 24px; }
.price-checklist li { padding: 6px 0; }

.price-card-featured {
  background: var(--title-color);
  border-color: var(--title-color);
  color: #fff;
}
.price-card-featured h3,
.price-card-featured .price-amount { color: #fff; }
.price-card-featured .price-amount span { color: rgba(255,255,255,.7); }
.price-card-featured p { color: rgba(255,255,255,.7); }
.price-card-featured .checklist li { color: #fff; }
.price-card-featured .checklist li i { color: var(--theme-color); }
.price-card-featured .checklist li.unavailable { color: rgba(255,255,255,.4); }

/* ---- Brand logos ---- */
.brand-section { background: #fff; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.brand-logo {
  max-width: 100%;
  height: 50px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .7;
  transition: all .3s ease;
}
.brand-logo:hover { filter: grayscale(0); opacity: 1; }

/* ---- FAQ ---- */
.faq-section .accordion { margin-top: 28px; }
.faq-section .accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 14px;
  overflow: hidden;
  background: #fff;
}
.faq-section .accordion-button {
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 16px;
  color: var(--title-color);
  background: #fff;
  padding: 16px 22px;
  box-shadow: none;
}
.faq-section .accordion-button:not(.collapsed) {
  background: var(--theme-color-light);
  color: var(--theme-color);
}
.faq-section .accordion-button:focus { box-shadow: none; border-color: transparent; }
.faq-section .accordion-body { padding: 8px 22px 22px; color: var(--body-color); }

/* ---- Blog ---- */
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(20,29,56,.06);
  transition: transform .35s ease, box-shadow .35s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(20,29,56,.12); }

.blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.blog-content { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-meta a {
  font-size: 13px;
  color: var(--body-color);
}
.blog-meta a i { color: var(--theme-color); margin-right: 4px; }
.blog-content h3 {
  font-size: 20px;
  margin: 12px 0 10px;
}
.blog-content h3 a { color: var(--title-color); }
.blog-content h3 a:hover { color: var(--theme-color); }
.blog-content > p { flex: 1; }
.blog-bottom {
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
}
.blog-bottom .author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--title-color);
  font-family: var(--title-font);
  font-weight: 500;
  font-size: 14px;
}
.blog-bottom .author img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--title-color);
  color: rgba(255,255,255,.7);
}
.site-footer p { color: rgba(255,255,255,.7); }
.footer-title {
  color: #fff;
  font-size: 22px;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}
.footer-title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 40px; height: 2px;
  background: var(--theme-color);
}

.site-footer .th-social { flex-direction: row; }
.site-footer .th-social a {
  background: rgba(255,255,255,.08);
  color: #fff;
}
.site-footer .th-social a:hover { background: var(--theme-color); color: #fff; }

.footer-menu li a {
  display: block;
  padding: 6px 0;
  color: rgba(255,255,255,.7);
  position: relative;
  padding-left: 16px;
  transition: padding .25s ease, color .25s ease;
}
.footer-menu li a::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--theme-color);
  transition: transform .25s ease;
}
.footer-menu li a:hover { color: #fff; padding-left: 22px; }

.footer-contact { margin: 0; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 8px 0;
}
.footer-contact li i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--theme-color);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin-top: 2px;
}
.footer-contact small {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-contact a {
  color: #fff;
  font-family: var(--title-font);
  font-weight: 500;
}
.footer-contact a:hover { color: var(--theme-color); }

.newsletter-form {
  position: relative;
  margin-top: 16px;
}
.newsletter-form .form-control {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  height: 52px;
  padding: 0 60px 0 18px;
  border-radius: 6px;
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,.55); }
.newsletter-form .form-control:focus {
  background: rgba(255,255,255,.12);
  border-color: var(--theme-color);
  box-shadow: none;
  color: #fff;
}
.newsletter-form button {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: var(--theme-color);
  color: #fff;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.newsletter-form button:hover { background: #fff; color: var(--theme-color); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 14px;
}
.footer-bottom a { color: var(--theme-color); }

/* ---- Decorative shape mockups ---- */
.shape-mockup {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: .8;
}
.shape-top-left     { top: 0; left: 0; max-width: 320px; }
.shape-top-right    { top: 0; right: 0; max-width: 320px; }
.shape-bottom-left  { bottom: 0; left: 0; max-width: 380px; }
.shape-bottom-right { bottom: 0; right: 0; max-width: 380px; }

/* ---- Scroll-to-top ---- */
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--theme-color);
  color: #fff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
  z-index: 998;
  box-shadow: 0 6px 20px rgba(104, 77, 244, .35);
  cursor: pointer;
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover { background: var(--title-color); }

/* ---- Technology cards ---- */
.tech-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.tech-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(20, 29, 56, .1);
  border-color: transparent;
}
.tech-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--theme-color-light);
  color: var(--theme-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex: 0 0 auto;
}
.tech-card h3 {
  font-size: 22px;
  margin: 6px 0 4px;
  color: var(--title-color);
}
.tech-card p { margin: 0; }

/* ---- Brand eyebrow line ---- */
.brand-eyebrow {
  font-family: var(--title-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light-color);
}

/* ---- Contact section ---- */
.contact-section .contact-info {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 6px 24px rgba(20, 29, 56, .06);
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border-color);
}
.contact-card:last-child { border-bottom: 0; }
.contact-card i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--theme-color);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex: 0 0 auto;
}
.contact-card small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  color: var(--light-color);
  margin-bottom: 4px;
}
.contact-card p,
.contact-card a {
  color: var(--title-color);
  font-family: var(--title-font);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
}
.contact-card a:hover { color: var(--theme-color); }

.contact-form {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 6px 24px rgba(20, 29, 56, .06);
}
.contact-form .form-label {
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 14px;
  color: var(--title-color);
  margin-bottom: 6px;
}
.contact-form .form-control,
.contact-form .form-select {
  background: var(--smoke-color);
  border: 1px solid transparent;
  border-radius: 8px;
  height: 50px;
  padding: 0 16px;
  font-size: 15px;
}
.contact-form textarea.form-control {
  height: auto;
  padding: 12px 16px;
  resize: vertical;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--theme-color);
  box-shadow: 0 0 0 3px rgba(104, 77, 244, .15);
  background: #fff;
}
.contact-form button[type="submit"] { margin-top: 6px; }

/* Validation states */
.contact-form .form-control.is-invalid,
.contact-form .form-select.is-invalid {
  border-color: #dc3545;
  background: #fff;
}
.contact-form .form-control.is-valid,
.contact-form .form-select.is-valid {
  border-color: #28a745;
}
.contact-form .invalid-feedback {
  display: block;
  font-size: 13px;
  color: #dc3545;
  margin-top: 6px;
}
.contact-form .form-counter {
  display: block;
  text-align: right;
  font-size: 12px;
  margin-top: 4px;
}
.contact-form .form-status {
  display: block;
  margin-top: 14px;
  margin-left: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  opacity: 1;
  transition: opacity .55s ease;
}
.contact-form .form-status:empty { display: none; }
.contact-form .form-status.fading { opacity: 0; }
.contact-form .form-status.text-success { color: #28a745 !important; }
.contact-form .form-status.text-danger  { color: #dc3545 !important; }
.contact-form .form-diag {
  margin-top: 12px;
  padding: 10px 14px;
  background: #fff5f5;
  border: 1px solid #f4c7c7;
  border-radius: 6px;
  color: #8a1f1f;
  font-size: 12px;
  white-space: pre-wrap;
  word-break: break-word;
}

@media (max-width: 991.98px) {
  .contact-section .contact-info { margin-bottom: 12px; }
}

/* ---- Trust strip (text-based "trusted by" replacement) ---- */
.trust-strip .col {
  padding: 24px 18px;
  border-radius: 12px;
  transition: background .3s ease, transform .3s ease;
}
.trust-strip .col:hover {
  background: var(--theme-color-light);
  transform: translateY(-4px);
}
.trust-strip i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--theme-color-light);
  color: var(--theme-color);
  font-size: 22px;
  margin-bottom: 14px;
}
.trust-strip h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--title-color);
  margin: 0 0 8px;
}
.trust-strip p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  color: var(--body-color);
}
