/* Home page — modern redesign */

:root {
  --brand-blue: #6A82FB;
  --brand-red: #F45451;
  --brand-gradient: linear-gradient(135deg, #6A82FB 0%, #F45451 100%);
  --brand-blue-rgb: 106, 130, 251;
  --brand-red-rgb: 244, 84, 81;
}

.home-page {
  background: #f7f8fc;
  overflow-x: hidden;
}

.home-page .wrapper {
  overflow-x: hidden;
}

.home-page img {
  max-width: 100%;
  height: auto;
}

/* ── Navigation ── */
.home-page nav.navbar.bootsnav {
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.home-page nav.navbar.bootsnav.navbar-transparent {
  background: transparent !important;
  box-shadow: none !important;
}

.home-page nav.navbar.bootsnav:not(.navbar-transparent) {
  background: rgba(255, 255, 255, 0.97) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08) !important;
  backdrop-filter: blur(12px);
}

.home-page nav.navbar.bootsnav .navbar-nav > li > a {
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color 0.25s ease;
}

.home-page nav.navbar.bootsnav.navbar-transparent .navbar-nav > li > a {
  color: rgba(255, 255, 255, 0.92) !important;
  position: relative;
  padding-bottom: 4px !important;
}

.home-page nav.navbar.bootsnav.navbar-transparent .navbar-nav > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brand-gradient);
  transition: width 0.3s ease, left 0.3s ease;
}

.home-page nav.navbar.bootsnav.navbar-transparent .navbar-nav > li > a:hover::after {
  width: 100%;
  left: 0;
}

.home-page nav.navbar.bootsnav.navbar-transparent .navbar-toggle i {
  color: #fff !important;
}

.home-page nav.navbar.bootsnav:not(.navbar-transparent) .navbar-nav > li > a {
  color: #333 !important;
}

.home-page nav.navbar.bootsnav.navbar-transparent .navbar-nav > li > a:hover {
  color: #6A82FB !important;
}

.home-page nav.navbar.bootsnav:not(.navbar-transparent) .navbar-nav > li > a:hover {
  color: #6A82FB !important;
}

/* ── Hero ── */
.home-hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 110px 0 0;
  background: linear-gradient(160deg, #12121f 0%, #1a1a2e 40%, #16213e 100%);
  overflow: hidden;
}

.home-hero .container {
  position: relative;
  z-index: 2;
}

.home-hero .container > .row {
  display: flex;
  align-items: center;
  padding-bottom: 50px;
}

.home-hero-content {
  position: relative;
  z-index: 2;
}

.home-hero-label i {
  margin-right: 4px;
  font-size: 14px;
}

.home-hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(var(--brand-blue-rgb), 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(var(--brand-red-rgb), 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.home-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  animation: homeFadeUp 0.7s 0.25s ease both;
}

.home-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(var(--brand-blue-rgb), 0.35);
  padding: 8px 16px;
  border-radius: 50px;
}

.home-hero-tag i {
  color: #6A82FB;
  font-size: 15px;
}

.home-hero-glow-2 {
  left: -150px;
  right: auto;
  background: radial-gradient(circle, rgba(var(--brand-red-rgb), 0.15) 0%, transparent 70%);
}

.home-hero h1 {
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 20px;
  animation: homeFadeUp 0.7s 0.1s ease both;
}

.home-hero h1 .home-accent {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.home-hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin-bottom: 28px;
  animation: homeFadeUp 0.7s 0.2s ease both;
}

.home-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 0;
  animation: homeFadeUp 0.7s 0.3s ease both;
}

.home-hero-cta .btn-candy {
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.home-hero-cta .btn-outline-white {
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 2px solid rgba(var(--brand-blue-rgb), 0.6);
  color: #fff;
  background: transparent;
}

.home-hero-cta .btn-outline-white:hover {
  background: rgba(var(--brand-blue-rgb), 0.15);
  border-color: var(--brand-blue);
  color: #fff;
}

/* Hero orbit visual (dotted circle) */
.home-hero-visual {
  position: relative;
  z-index: 2;
  display: none;
}

@media (min-width: 992px) {
  .home-hero-visual {
    display: block;
  }
}

.home-hero-orbit {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}

.home-orbit-ring {
  position: absolute;
  inset: 30px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: homeSpin 40s linear infinite;
}

.home-orbit-ring-2 {
  inset: 55px;
  border-color: rgba(var(--brand-blue-rgb), 0.25);
  animation-direction: reverse;
  animation-duration: 55s;
}

.home-orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
}

.home-orbit-logo {
  max-height: 48px;
  width: auto;
  display: block;
  margin-bottom: 4px;
}

.home-orbit-center span {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.home-orbit-card {
  position: absolute;
  width: 158px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  animation: homePulse 4s ease-in-out infinite;
  animation-delay: calc(var(--i) * 1s);
}

.home-orbit-card:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(var(--brand-blue-rgb), 0.45);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.home-orbit-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--brand-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.home-orbit-card-icon i {
  font-size: 20px;
  color: #fff;
}

.home-orbit-card h4 {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 5px;
  color: #fff;
}

.home-orbit-card p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  line-height: 1.45;
}

.home-orbit-item:nth-child(4) { top: 0; left: 50%; transform: translateX(-50%); }
.home-orbit-item:nth-child(5) { top: 50%; right: 0; transform: translateY(-50%); }
.home-orbit-item:nth-child(6) { bottom: 0; left: 50%; transform: translateX(-50%); }
.home-orbit-item:nth-child(7) { top: 50%; left: 0; transform: translateY(-50%); }

.home-orbit-item:nth-child(4):hover { transform: translateX(-50%) translateY(-4px) scale(1.03); }
.home-orbit-item:nth-child(5):hover { transform: translateY(calc(-50% - 4px)) scale(1.03); }
.home-orbit-item:nth-child(6):hover { transform: translateX(-50%) translateY(4px) scale(1.03); }
.home-orbit-item:nth-child(7):hover { transform: translateY(calc(-50% - 4px)) scale(1.03); }

/* Hero stats bar */
.home-hero-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 28px 20px;
  background: rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.home-stat-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 8px 16px;
}

.home-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

.home-hero-stats-bar .home-stat-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-hero-stats-bar .home-stat-num sup {
  font-size: 1.1rem;
  font-weight: 700;
  -webkit-text-fill-color: transparent;
}

.home-hero-stats-bar .home-stat-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
}

/* Client marquee */
.home-marquee {
  background: #12121f;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.home-marquee-label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}

.home-marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.home-marquee-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: homeMarquee 40s linear infinite;
}

.home-marquee-track span {
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  padding: 6px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.03);
}

.home-marquee-track span:hover {
  color: #F45451;
  border-color: rgba(var(--brand-red-rgb), 0.3);
}

/* About split layout */
.home-about-grid {
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.home-about-highlights {
  margin-top: 28px;
}

.home-about-highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.home-about-highlight i {
  font-size: 28px;
  color: #6A82FB;
  flex-shrink: 0;
  margin-top: 2px;
}

.home-about-highlight strong {
  display: block;
  font-size: 15px;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.home-about-highlight span {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

.home-facts-panel {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 20px;
  padding: 36px 32px;
  color: #fff;
  box-shadow: 0 20px 60px rgba(26, 26, 46, 0.25);
}

.home-facts-panel h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 24px;
  color: #fff;
}

.home-facts-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.home-facts-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-facts-list li:last-child {
  border-bottom: none;
}

.home-facts-list i {
  font-size: 22px;
  color: #F45451;
  flex-shrink: 0;
  margin-top: 2px;
}

.home-facts-list strong {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 3px;
}

.home-facts-list span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.home-facts-list a {
  color: #F45451;
}

.home-facts-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.home-facts-stats div {
  flex: 1;
  text-align: center;
}

.home-facts-stats strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

.home-facts-stats span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.home-feature-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.35;
}

/* Services */
.home-services {
  background: #f7f8fc;
}

.home-services .home-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 10px;
}

.home-services .home-section-label {
  display: inline-block;
}

.home-services .home-section-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.home-services .home-section-desc {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.home-services .home-divider {
  margin-left: auto;
  margin-right: auto;
}

.home-service-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.home-service-grid > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

.home-service-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid #eef0f6;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.home-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.home-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(var(--brand-blue-rgb), 0.12);
}

.home-service-card:hover::before {
  opacity: 1;
}

.home-service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
  color: #fff;
}

.home-service-card--web .home-service-icon,
.home-service-card--android .home-service-icon,
.home-service-card--ios .home-service-icon,
.home-service-card--desktop .home-service-icon,
.home-service-card--cms .home-service-icon,
.home-service-card--support .home-service-icon {
  background: var(--brand-gradient);
}

.home-service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 12px;
}

.home-service-card > p {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  margin: 0 0 16px;
}

.home-service-examples {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-size: 13px;
  color: #F45451;
  font-weight: 600;
}

.home-service-examples li {
  padding: 4px 0;
}

.home-tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.home-tech-pills span {
  background: #f0f2f8;
  color: #555;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 500;
}

/* Industries */
.home-industries {
  background: #fff;
}

.home-industry-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #f7f8fc;
  border: 1px solid #eef0f6;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

.home-industry-chip:hover {
  background: linear-gradient(135deg, rgba(var(--brand-blue-rgb), 0.08), rgba(var(--brand-red-rgb), 0.06));
  border-color: rgba(var(--brand-blue-rgb), 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(var(--brand-blue-rgb), 0.1);
}

.home-industry-chip i {
  font-size: 24px;
  color: #6A82FB;
  flex-shrink: 0;
}

.home-industry-chip span {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* Process */
.home-process {
  background: linear-gradient(180deg, #f7f8fc 0%, #fff 100%);
}

.home-process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.home-process-timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--brand-gradient);
  opacity: 0.25;
  z-index: 0;
}

.home-process-step {
  text-align: center;
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  padding: 28px 20px;
  border: 1px solid #eef0f6;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.home-process-step:hover {
  transform: translateY(-6px);
}

.home-process-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 25px rgba(var(--brand-blue-rgb), 0.35);
}

.home-process-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 10px;
}

.home-process-step p {
  font-size: 13px;
  color: #777;
  line-height: 1.65;
  margin: 0;
}

/* Portfolio counts */
.home-portfolio-counts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.home-portfolio-counts span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 18px;
  border-radius: 50px;
}

.home-portfolio-counts strong {
  color: #F45451;
  margin-right: 4px;
}

/* ── Contact ── */
.home-contact {
  background: linear-gradient(180deg, #f7f8fc 0%, #fff 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

.home-contact .shapes-wrap {
  pointer-events: none;
}

.home-contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.home-contact-info {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 40px;
}

.home-contact-info > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

.home-info-card {
  text-align: center;
  background: #fff;
  border: 1px solid #eef0f6;
  border-radius: 16px;
  padding: 28px 22px;
  height: 100%;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.home-info-card-body {
  flex: 1;
  min-width: 0;
}

.home-info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--brand-blue-rgb), 0.25);
  box-shadow: 0 12px 35px rgba(var(--brand-blue-rgb), 0.1);
}

.home-info-card i {
  width: 52px;
  height: 52px;
  line-height: 52px;
  font-size: 26px;
  color: #fff;
  background: var(--brand-gradient);
  border-radius: 14px;
  display: inline-block;
  margin: 0 auto 16px;
}

.home-info-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 10px;
}

.home-info-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

.home-info-card a {
  color: #6A82FB;
  font-weight: 600;
}

.home-info-note {
  font-size: 13px !important;
  color: #999 !important;
  margin-top: 8px !important;
}

.home-info-note a {
  color: var(--brand-blue);
  font-weight: 600;
  text-decoration: none;
}

.home-info-note a:hover {
  color: var(--brand-red);
  text-decoration: underline;
}

.home-contact-layout {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.home-contact-layout > [class*="col-"] {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

/* Form panel */
.home-contact-form-wrap {
  background: #fff;
  border: 1px solid #eef0f6;
  border-radius: 20px;
  padding: 36px 32px 32px;
  height: 100%;
  box-shadow: 0 10px 45px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.home-contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand-gradient);
}

.home-contact-form-head {
  margin-bottom: 28px;
}

.home-contact-form-head h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 8px;
}

.home-contact-form-head p {
  font-size: 14px;
  color: #777;
  line-height: 1.65;
  margin: 0;
}

.home-form-field {
  margin-bottom: 22px;
}

.home-form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.home-input-wrap {
  position: relative;
}

.home-input-wrap > i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #6A82FB;
  pointer-events: none;
  z-index: 2;
}

.home-input-wrap--textarea > i {
  top: 18px;
  transform: none;
}

.home-page .home-contact-form .form-control {
  border: 2px solid #eef0f6;
  border-radius: 12px;
  padding: 14px 18px 14px 48px;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  background: #fafbfe;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  height: auto;
  width: 100%;
  box-shadow: none;
}

.home-page .home-contact-form textarea.form-control {
  min-height: 150px;
  resize: vertical;
  padding-top: 14px;
}

.home-page .home-contact-form .form-control::placeholder {
  color: #aab;
}

.home-page .home-contact-form .form-control:focus {
  border-color: #6A82FB;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(var(--brand-blue-rgb), 0.12);
  outline: none;
}

.home-page .home-contact-form .form-group.has-error .form-control,
.home-page .home-contact-form .form-group.has-danger .form-control {
  border-color: #F45451;
  box-shadow: 0 0 0 4px rgba(var(--brand-red-rgb), 0.1);
}

.home-page .home-contact-form .help-block.with-errors {
  font-size: 12px;
  color: #F45451;
  margin: 6px 0 0;
}

.home-contact-submit {
  width: 100%;
  padding: 15px 28px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px;
  border: none !important;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(var(--brand-blue-rgb), 0.35);
}

.home-page .home-contact-form .messages {
  margin-bottom: 18px;
}

.home-page .home-contact-form .messages .alert {
  border-radius: 12px;
  border: none;
  padding: 14px 18px;
  font-size: 14px;
  margin: 0;
}

.home-page .home-contact-form .messages .alert-success {
  background: rgba(76, 175, 80, 0.12);
  color: #2e7d32;
}

.home-page .home-contact-form .messages .alert-danger {
  background: rgba(var(--brand-red-rgb), 0.1);
  color: #c62828;
}

/* Map panel */
.home-contact-map-wrap {
  background: #fff;
  border: 1px solid #eef0f6;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 45px rgba(0, 0, 0, 0.06);
}

.home-map-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 20px;
  background: #fafbfe;
  border-bottom: 1px solid #eef0f6;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

.home-map-label i {
  font-size: 20px;
  color: #6A82FB;
  flex-shrink: 0;
  margin-top: 1px;
}

.home-contact-map-wrap iframe {
  flex: 1;
  width: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

/* Contact — responsive */
@media (max-width: 991px) {
  .home-contact-layout {
    display: block;
  }

  .home-contact-layout > [class*="col-"] {
    width: 100%;
    float: none;
    margin-bottom: 24px;
  }

  .home-contact-map-col {
    margin-bottom: 0 !important;
  }

  .home-contact-map-wrap {
    min-height: 340px;
  }

  .home-contact-map-wrap iframe {
    min-height: 300px;
  }
}

@media (max-width: 767px) {
  .home-contact {
    padding: 56px 0 48px;
  }

  .home-contact-header {
    margin-bottom: 28px;
  }

  .home-contact-header .home-section-title {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
  }

  .home-contact-header .home-section-desc {
    font-size: 15px;
    padding: 0 2px;
  }

  .home-contact-info {
    display: block;
    margin-bottom: 28px;
  }

  .home-contact-info > [class*="col-"] {
    width: 100% !important;
    float: none !important;
    margin-bottom: 14px;
  }

  .home-contact-info > [class*="col-"]:last-child {
    margin-bottom: 0;
  }

  .home-info-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    padding: 20px 18px;
  }

  .home-info-card i {
    margin: 0;
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    line-height: 46px;
    font-size: 22px;
    border-radius: 12px;
  }

  .home-info-card h4 {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .home-info-card p {
    font-size: 13px;
    line-height: 1.55;
  }

  .home-contact-form-wrap {
    border-radius: 16px;
    padding: 22px 16px 20px;
  }

  .home-contact-form-head {
    margin-bottom: 22px;
  }

  .home-contact-form-head h3 {
    font-size: 1.1rem;
  }

  .home-contact-form-head p {
    font-size: 13px;
  }

  .home-contact-form-row {
    margin-left: 0;
    margin-right: 0;
  }

  .home-page .home-contact-form .row > [class*="col-"],
  .home-contact-form-row > [class*="col-"] {
    width: 100% !important;
    float: none !important;
    padding-left: 0;
    padding-right: 0;
  }

  .home-form-field {
    margin-bottom: 18px;
  }

  .home-page .home-contact-form .form-control {
    font-size: 16px;
    padding: 13px 16px 13px 44px;
  }

  .home-page .home-contact-form textarea.form-control {
    min-height: 130px;
  }

  .home-input-wrap > i {
    left: 14px;
    font-size: 18px;
  }

  .home-contact-submit {
    padding: 14px 20px !important;
    min-height: 48px;
  }

  .home-contact-map-wrap {
    min-height: auto;
    border-radius: 16px;
  }

  .home-contact-map-wrap iframe {
    min-height: 260px;
    height: 260px;
  }

  .home-map-label {
    font-size: 12px;
    padding: 12px 14px;
    gap: 8px;
  }

  .home-map-label i {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .home-contact {
    padding: 48px 0 40px;
  }

  .home-info-card {
    gap: 12px;
    padding: 16px 14px;
  }

  .home-info-card i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
  }

  .home-contact-map-wrap iframe {
    min-height: 220px;
    height: 220px;
  }
}

/* Footer links */
.home-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-footer-links li {
  margin-bottom: 10px;
}

.home-footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  transition: color 0.25s ease;
}

.home-footer-links a:hover {
  color: #F45451;
}

.home-page .footer-contact li a:not([href]) {
  cursor: default;
}

.home-page .footer-about p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  font-size: 14px;
}

/* Scroll reveal */
.home-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.home-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 20px;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(var(--brand-blue-rgb), 0.12);
  border: 1px solid rgba(var(--brand-blue-rgb), 0.25);
  animation: homeFadeUp 0.7s ease both;
}

.home-hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--brand-blue-rgb), 0.25) 0%, transparent 70%);
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  pointer-events: none;
}

/* ── Section shared ── */
.home-section {
  padding: 90px 0;
  position: relative;
}

.home-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.home-section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 16px;
  line-height: 1.25;
}

.home-section-desc {
  font-size: 17px;
  line-height: 1.75;
  color: #666;
  max-width: 680px;
  margin: 0 auto 20px;
}

.home-divider {
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: var(--brand-gradient);
  margin: 20px auto 30px;
}

/* ── About ── */
.home-about {
  background: #fff;
}

.home-about .hexagon-big-green {
  opacity: 0.06 !important;
}

.home-features {
  margin-top: 50px;
}

.home-feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  border: 1px solid #eef0f6;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(var(--brand-blue-rgb), 0.12);
}

.home-feature-card .big-icon {
  margin-bottom: 20px;
  transition: transform 0.35s ease;
}

.home-feature-card:hover .big-icon {
  transform: scale(1.1);
}

.home-feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.home-feature-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.65;
  margin: 0;
}

/* ── Skills / What We Do ── */
.home-skills {
  padding: 0;
  background: linear-gradient(180deg, #fff 0%, #f7f8fc 100%);
  overflow: hidden;
}

.home-skills-row {
  min-height: 520px;
}

.home-skills-content {
  padding: 70px 50px 60px !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-skills-header {
  margin-bottom: 36px;
}

.home-divider--left {
  margin-left: 0;
  margin-right: auto;
}

.home-section-desc--left {
  text-align: left;
  max-width: 520px;
  margin-left: 0;
  margin-right: 0;
}

.home-skill-bars {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.home-skill-item {
  position: relative;
}

.home-skill-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.home-skill-name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}

.home-skill-name i {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #6A82FB;
  background: rgba(var(--brand-blue-rgb), 0.1);
  border-radius: 10px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.home-skill-item:hover .home-skill-name i {
  background: var(--brand-gradient);
  color: #fff;
  transform: scale(1.05);
}

.home-skill-pct {
  font-size: 15px;
  font-weight: 800;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  flex-shrink: 0;
}

.home-skills .progress {
  height: 12px;
  border-radius: 50px;
  background: #e8ebf4;
  margin-bottom: 0;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.06);
  overflow: visible;
  position: relative;
}

.home-skills .progress-bar {
  width: 0;
  height: 100%;
  border-radius: 50px;
  background: var(--brand-gradient) !important;
  box-shadow: 0 4px 18px rgba(var(--brand-blue-rgb), 0.4);
  position: relative;
  overflow: visible;
}

.home-skills .progress-bar.animated {
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-skill-item:nth-child(1) .progress-bar.animated { transition-delay: 0.05s; }
.home-skill-item:nth-child(2) .progress-bar.animated { transition-delay: 0.15s; }
.home-skill-item:nth-child(3) .progress-bar.animated { transition-delay: 0.25s; }
.home-skill-item:nth-child(4) .progress-bar.animated { transition-delay: 0.35s; }
.home-skill-item:nth-child(5) .progress-bar.animated { transition-delay: 0.45s; }

.home-skills .progress-bar::before {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #F45451;
  box-shadow: 0 0 14px rgba(var(--brand-red-rgb), 0.55);
  z-index: 2;
}

.home-skills .progress-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 40%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0.15) 60%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: home-bar-shine 2.8s ease-in-out infinite;
}

.home-skills .progress-bar.animated::after {
  animation-delay: 1.2s;
}

@keyframes home-bar-shine {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Skills image panel */
.home-skills-visual {
  padding: 0;
  display: flex;
}

.home-skills-image-wrap {
  position: relative;
  width: 100%;
  min-height: 480px;
  overflow: hidden;
}

.home-skills-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 480px;
}

.home-skills-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(var(--brand-blue-rgb), 0.35) 0%,
    rgba(var(--brand-red-rgb), 0.25) 100%
  );
  pointer-events: none;
}

.home-skills-image-badge {
  position: absolute;
  bottom: 36px;
  left: 36px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 18px 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
  min-width: 120px;
}

.home-skills-image-badge strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-skills-image-badge span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 6px;
}

/* ── Portfolio ── */
.home-page #work {
  padding: 90px 0 60px;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
}

.home-page #work:before,
.home-page #work:after {
  display: none;
}

.home-portfolio-header .home-section-label {
  color: #F45451;
}

.home-portfolio-header .home-section-title {
  color: #fff;
}

.home-page #chaos-gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  background: transparent;
  padding: 0;
}

.home-page #chaos-gallery-filter .cbp-filter-item {
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 10px 26px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
}

.home-page #chaos-gallery-filter .cbp-filter-item:hover {
  border-color: #6A82FB !important;
  color: #fff !important;
  background: rgba(var(--brand-blue-rgb), 0.2) !important;
}

.home-page #chaos-gallery-filter .cbp-filter-item-active {
  background: var(--brand-gradient) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 8px 25px rgba(var(--brand-blue-rgb), 0.4);
}

.home-page .gallery-style-two .portfolio {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-page .gallery-style-two .portfolio:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.home-page .gallery-style-two .portfolio img {
  border-radius: 12px;
}

.home-portfolio-cta {
  margin-top: 40px;
}

.home-portfolio-cta .btn-candy {
  padding: 12px 36px;
  font-size: 15px;
}

/* ── Counters ── */
.home-counters {
  background: #fff;
  padding: 80px 0;
}

.home-page .counter-style-two .counter-wrap {
  background: #f7f8fc;
  border-radius: 16px;
  padding: 30px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  border: 1px solid #eef0f6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-page .counter-style-two .counter-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.home-page .counter-style-two .counter-wrap .pull-left,
.home-page .counter-style-two .counter-wrap .pull-right {
  float: none !important;
}

.home-page .counter-style-two .counter-wrap i {
  font-size: 36px;
  opacity: 0.9;
}

.home-page .counter-style-two .counter-wrap h2 {
  font-size: 2rem;
  margin: 0 0 4px;
}

.home-page .counter-style-two .counter-wrap h3 {
  font-size: 14px;
  color: #888;
  margin: 0;
  font-weight: 600;
}

/* ── CTA ── */
.home-cta {
  position: relative;
  padding: 100px 0;
  background: var(--brand-gradient);
  overflow: hidden;
}

.home-cta .parallax-overlay {
  display: none;
}

.home-cta .cta h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.35;
}

.home-cta .btn-candy {
  background: #fff !important;
  color: #6A82FB !important;
  border-color: #fff !important;
  padding: 14px 40px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.home-cta .btn-candy:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* ── Testimonials ── */
.home-testimonials {
  background: #f7f8fc;
  padding: 90px 0;
}

.home-testimonials .heading-style-one h6 {
  color: #F45451;
  letter-spacing: 3px;
}

.home-testimonials .heading-style-one h2 {
  color: #1a1a2e;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}

.home-page .testimonial-three .testimonial-item .testimonial-content-in {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #eef0f6;
  padding: 30px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-page .testimonial-three .testimonial-item .testimonial-content-in:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(var(--brand-blue-rgb), 0.1);
}

.home-page .testimonial-three .testimonial-item .img {
  border: 3px solid #6A82FB;
}

.home-page .testimonial-three .testimonial-item h5 {
  color: #1a1a2e;
  font-weight: 700;
}

.home-page .testimonial-three .testimonial-item h6 {
  color: #F45451;
}

.home-page .testimonial-three .testimonial-item p {
  color: #666;
  font-style: italic;
  line-height: 1.7;
}

/* ── Footer ── */
.home-page .footer {
  background: #1a1a2e;
  margin-top: 0;
}

.home-page .footer-main {
  padding: 60px 0 40px;
}

.home-page .footer .red-color {
  color: #F45451 !important;
}

.home-page .footer .widget-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}

.home-page .footer .footer-about h5,
.home-page .footer .widget-links h5 {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  line-height: 1.7;
}

.home-page .footer-contact li a {
  color: rgba(255, 255, 255, 0.7);
}

.home-page .footer-contact li i.blue-color {
  color: #6A82FB !important;
}

.home-page .footer-copyright {
  background: #12121f;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.home-page .footer-copyright .copy-right {
  color: rgba(255, 255, 255, 0.5);
}

.home-page .footer-copyright .blue-color {
  color: #F45451 !important;
}

/* ── Animations ── */
@keyframes homeFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes homeMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes homeSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes homePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 rgba(var(--brand-blue-rgb), 0); }
  50% { opacity: 0.92; box-shadow: 0 0 20px rgba(var(--brand-blue-rgb), 0.2); }
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .home-hero {
    padding: 90px 0 0;
    text-align: center;
  }

  .home-hero .container > .row {
    padding-bottom: 30px;
  }

  .home-hero-visual {
    display: none !important;
  }

  .home-hero-sub {
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
  }

  .home-hero-tags {
    justify-content: center;
  }

  .home-hero-cta {
    justify-content: center;
  }

  .home-hero-stats-bar {
    gap: 8px;
    padding: 24px 12px;
  }

  .home-stat-divider {
    display: none;
  }

  .home-stat-item {
    min-width: calc(50% - 16px);
    padding: 12px 8px;
  }

  .home-section {
    padding: 70px 0;
  }

  .home-section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .home-section-desc {
    font-size: 15px;
  }

  .home-about .home-section-title,
  .home-about .home-section-desc,
  .home-about .home-divider,
  .home-about-grid .home-section-title,
  .home-about-grid .home-section-desc,
  .home-about-grid .home-divider {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .home-about-highlights {
    text-align: left;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .home-facts-panel {
    margin-top: 30px;
    padding: 28px 24px;
  }

  .home-features {
    margin-top: 30px;
  }

  .home-service-card {
    padding: 26px 22px;
  }

  .home-industry-chip {
    padding: 14px 16px;
  }

  .home-process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-process-timeline::before {
    display: none;
  }

  .home-skills-row {
    min-height: auto;
  }

  .home-skills-content {
    padding: 50px 30px 40px !important;
  }

  .home-skills-header .home-section-title,
  .home-skills-header .home-section-desc,
  .home-skills-header .home-divider {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .home-divider--left {
    margin-left: auto;
    margin-right: auto;
  }

  .home-section-desc--left {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .home-skills-image-wrap,
  .home-skills-image-wrap img {
    min-height: 320px;
  }

  .home-skills-image-badge {
    bottom: 24px;
    left: 24px;
    padding: 14px 18px;
  }

  .home-counters {
    padding: 60px 0;
  }

  .home-cta {
    padding: 70px 0;
  }

  .home-testimonials {
    padding: 70px 0;
  }

  .home-contact {
    padding: 70px 0 60px;
  }

  .home-page .shapes-wrap,
  .home-page .shapes,
  .home-page .polygon-box,
  .home-page .circle-box {
    display: none;
  }
}

@media (max-width: 767px) {
  .home-page .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .home-hero {
    padding: 82px 0 0;
  }

  .home-hero h1 {
    font-size: clamp(1.65rem, 7vw, 2rem);
    line-height: 1.25;
  }

  .home-hero-label {
    font-size: 12px;
  }

  .home-hero-tag {
    font-size: 12px;
    padding: 7px 12px;
  }

  .home-hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .home-hero-cta .btn {
    width: 100%;
    white-space: normal;
    padding: 14px 20px;
  }

  .home-hero-stats-bar .home-stat-num {
    font-size: 1.8rem;
  }

  .home-hero-stats-bar .home-stat-label {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .home-stat-item {
    min-width: calc(50% - 8px);
  }

  .home-section {
    padding: 56px 0;
  }

  .home-marquee-track span {
    font-size: 13px;
    padding: 5px 14px;
  }

  .home-marquee-track {
    gap: 24px;
  }

  .home-feature-card {
    padding: 28px 22px;
    margin-bottom: 16px;
  }

  .home-feature-num {
    font-size: 2rem;
  }

  .home-industry-chip span {
    font-size: 13px;
  }

  .home-industry-chip i {
    font-size: 20px;
  }

  .home-process-timeline {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-process-step {
    padding: 22px 18px;
  }

  .home-skills-content {
    padding: 40px 20px 32px !important;
  }

  .home-skill-bars {
    gap: 20px;
  }

  .home-skill-name {
    font-size: 13px;
    gap: 8px;
  }

  .home-skill-name i {
    width: 30px;
    height: 30px;
    font-size: 16px;
    border-radius: 8px;
  }

  .home-skill-pct {
    font-size: 14px;
  }

  .home-skills-image-wrap,
  .home-skills-image-wrap img {
    min-height: 260px;
  }

  .home-skills-image-badge {
    bottom: 16px;
    left: 16px;
    right: 16px;
    min-width: 0;
  }

  .home-skills-image-badge strong {
    font-size: 1.6rem;
  }

  .home-facts-stats {
    flex-direction: column;
    gap: 16px;
  }

  .home-page #chaos-gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .home-page #chaos-gallery-filter .cbp-filter-item {
    padding: 8px 14px;
    font-size: 12px;
    margin: 0 !important;
  }

  .home-page .counter-style-two .counter-wrap {
    padding: 20px 18px;
    margin-bottom: 16px;
  }

  .home-page .counter-style-two .counter-wrap h2 {
    font-size: 1.6rem;
  }

  .home-cta .cta h1 {
    font-size: 1.45rem;
    margin-bottom: 20px;
  }

  .home-cta .btn-candy {
    width: 100%;
    max-width: 320px;
    display: inline-block;
  }

  .home-page .testimonial-three .testimonial-item .testimonial-content-in {
    padding: 24px 18px;
  }

  .home-page .footer-main {
    padding: 48px 0 32px;
  }

  .home-page .footer .widget {
    margin-bottom: 28px;
    text-align: center;
  }

  .home-footer-links {
    text-align: center;
  }

  .home-page nav.navbar.bootsnav .navbar-collapse {
    background: rgba(26, 26, 46, 0.97);
    margin: 8px 0 12px;
    border-radius: 12px;
    padding: 8px 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .home-page nav.navbar.bootsnav:not(.navbar-transparent) .navbar-collapse {
    background: #fff;
    border-color: #eef0f6;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  }

  .home-page nav.navbar.bootsnav .navbar-nav > li > a {
    padding: 12px 20px !important;
  }
}

@media (max-width: 480px) {
  .home-hero-stats-bar {
    padding: 20px 8px;
  }

  .home-stat-item {
    min-width: calc(50% - 4px);
    padding: 10px 4px;
  }

  .home-hero-stats-bar .home-stat-num {
    font-size: 1.5rem;
  }

  .home-skill-head {
    flex-wrap: wrap;
    gap: 6px;
  }

  .home-skill-name {
    flex: 1 1 100%;
  }

  .home-skill-pct {
    margin-left: 40px;
  }

  .home-industry-chip {
    padding: 12px 14px;
    gap: 10px;
  }

  .home-service-card h3 {
    font-size: 1.05rem;
  }
}
