/* Web Development Services - Google Ads Max CPR Landing Page */
:root {
  --primary: #1a1a2e;
  --primary-light: #16213e;
  --accent: #006eef;
  --accent-hover: #005bc9;
  --theme-blue: #006eef;
  --theme-blue-rgb: 0, 110, 239;
}

html {
  font-size: 18px;
}

@media (min-width: 992px) {
  html {
    font-size: 19px;
  }
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  background: #fff;
}

p.lead {
  font-size: 1.25rem;
}

h1,
.display-4 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

h2,
.display-5 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}

.card-title {
  font-size: 1.15rem;
}

.small,
.text-muted.small {
  font-size: 0.95rem;
}

.site-footer .small {
  font-size: 0.95rem;
}

.site-footer .footer-heading {
  font-size: 1.05rem;
}

.site-footer .footer-links a {
  font-size: 0.95rem;
}

.site-footer .footer-contact {
  font-size: 1rem;
}

.footer-achievement-num {
  font-size: 2rem;
}

@media (min-width: 768px) {
  .footer-achievement-num {
    font-size: 2.25rem;
  }
}

.hero-stat-num {
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  .hero-stat-num {
    font-size: 2rem;
  }
}

.hero-stat-label {
  font-size: 0.95rem;
}

/* All sections: use container with left/right gap (footer excluded) */
section .container {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 576px) {
  section .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 768px) {
  section .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 992px) {
  section .container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

/* Trust bar – impressive stats section */
.trust-bar {
  padding: 2.5rem 0;
  background: #fff;
}

@media (min-width: 768px) {
  .trust-bar {
    padding: 3rem 0;
  }
}

.trust-bar-item {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 110, 239, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-bar-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 110, 239, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
}

.trust-bar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 110, 239, 0.12) 0%, rgba(0, 110, 239, 0.06) 100%);
  color: #006eef;
}

.trust-bar-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

@media (min-width: 768px) {
  .trust-bar-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1rem;
  }

  .trust-bar-icon svg {
    width: 1.75rem;
    height: 1.75rem;
  }
}

.trust-bar-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: #006eef;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

@media (min-width: 768px) {
  .trust-bar-num {
    font-size: 1.85rem;
  }
}

.trust-bar-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  letter-spacing: 0.01em;
  margin: 0;
}

@media (min-width: 768px) {
  .trust-bar-label {
    font-size: 0.95rem;
  }
}

.process-step .step-num {
  font-size: 1rem;
}

.process-step h6 {
  font-size: 1rem;
}

.process-step p {
  font-size: 0.95rem;
}

.form-control {
  font-size: 1rem;
}

.btn {
  font-size: 1rem;
}

.btn-lg {
  font-size: 1.1rem;
}

/* Header */
.header-outer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .header-outer {
    padding: 0;
  }
}

.header-white {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 0.85rem !important;
  padding-bottom: 0.85rem !important;
  border-radius: 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .header-white {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
}

.header-logo {
  height: 48px;
  width: auto;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
  margin-left: 1rem;
}

@media (min-width: 768px) {
  .header-logo {
    height: 52px;
    margin-left: 1.5rem;
  }
}

.header-logo:hover {
  transform: scale(1.03);
}

.header-white .d-flex.gap-2.gap-md-3 {
  margin-right: 0.5rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .header-white .d-flex.gap-2.gap-md-3 {
    margin-right: 1rem;
  }
}

@media (max-width: 767.98px) {
  .header-outer {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    max-width: 100%;
    left: 0;
    right: 0;
    box-sizing: border-box;
  }

  .header-white {
    overflow-x: hidden;
    max-width: 100%;
    box-sizing: border-box;
  }

  .header-outer .container {
    display: flex !important;
    flex-wrap: nowrap;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    gap: 0.35rem;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
  }

  .header-logo-wrap {
    min-width: 0;
    flex: 1 1 auto;
    max-width: 45%;
  }

  .header-logo {
    height: 34px;
    max-width: 90px;
    width: auto;
    object-fit: contain;
    object-position: left;
  }

  /* Keep CTA group (icons + button) always visible on mobile */
  .header-cta-group {
    display: flex !important;
    flex: 0 0 auto;
    flex-shrink: 0;
    min-width: 0;
    margin-right: 0;
    gap: 0.2rem !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .header-icon-link {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    flex-shrink: 0;
    display: inline-flex !important;
  }

  .header-icon-svg {
    width: 1.15rem;
    height: 1.15rem;
  }

  .header-cta-btn {
    font-size: 0.7rem;
    padding: 0.3rem 0.5rem;
    min-height: 34px;
    flex-shrink: 0;
    display: inline-flex !important;
    visibility: visible !important;
  }
}

.header-cta-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: #006eef !important;
  border-color: #006eef !important;
  color: #fff !important;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 0.5rem;
  white-space: nowrap;
  line-height: 1.2;
}

.header-cta-btn:hover {
  background: #005bc9 !important;
  border-color: #005bc9 !important;
  color: #fff !important;
}

.header-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #333;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}

/* Glowing ring for icons - Starts from outer edge */
.header-icon-link::after {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 1px solid #fff; /* Thinned to 1px */
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: ring-icon 2.0s infinite;
}

.header-icon-link:hover::after {
  animation: none;
  display: none;
}

/* Glowing border on hover */
.header-icon-link::before {
  content: '';
  border-radius: 50%;
  width: calc(100% + 6px);
  height: calc(100% + 6px);
  border: 1px solid #fff; /* Thinned to 1px */
  box-shadow: 0 0 15px rgba(255, 255, 255, .4);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .3s ease-in-out;
  z-index: -1;
}

.header-icon-link:hover::before {
  opacity: 1;
}

/* Scrolled header state - Change animation to blue for visibility */
#main-header.bg-white .header-icon-link::after {
  border-color: #1a365d;
}

#main-header.bg-white .header-icon-link::before {
  border-color: #1a365d;
  box-shadow: 0 0 15px rgba(26, 54, 93, .3);
}

@keyframes ring-icon {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5); /* Controlled expansion */
    opacity: 0;
  }
}

.header-icon-svg {
  width: 1.45rem;
  height: 1.45rem;
  transition: transform 0.3s ease;
  display: block;
}

@media (min-width: 768px) {
  .header-icon-svg {
    width: 1.6rem;
    height: 1.6rem;
  }
}

.header-icon-whatsapp {
  color: #25D366;
}

.header-icon-link:hover .header-icon-whatsapp {
  color: #1da851;
}

.header-icon-email {
  color: #dc2626;
}

.header-icon-link:hover .header-icon-email {
  color: #b91c1c;
}

.header-icon-phone {
  color: #2563eb;
}

.header-icon-link:hover .header-icon-phone {
  color: #1d4ed8;
}

/* Hero */
.hero-banner-wrap {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .hero-banner-wrap {
    padding: 0;
  }
}

@media (min-width: 992px) {
  .hero-banner-wrap {
    padding: 0;
  }
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.hero-section.hero-banner {
  border-radius: 0;
  overflow: hidden;
  align-items: flex-start;
}

.hero-section.hero-banner .hero-content-wrap {
  margin-top: 0;
}

.hero-section .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-section .hero-bg-image {
  opacity: 0.28;
}

.hero-section .hero-bg-gradient {
  background: linear-gradient(135deg, rgba(0, 110, 239, 0.12) 0%, transparent 50%);
  opacity: 1;
}

.hero-section .overlay {
  background: rgba(26, 26, 46, 0.78);
}

.hero-graphics {
  pointer-events: none;
  z-index: 0;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: float 8s ease-in-out infinite;
}

.hero-shape-1 {
  width: 280px;
  height: 280px;
  background: rgba(0, 110, 239, 0.35);
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.hero-shape-2 {
  width: 180px;
  height: 180px;
  background: rgba(0, 110, 239, 0.25);
  bottom: 25%;
  left: 10%;
  animation-delay: -2s;
}

.hero-shape-3 {
  width: 120px;
  height: 120px;
  background: rgba(0, 110, 239, 0.2);
  top: 50%;
  left: 5%;
  animation-delay: -4s;
}

@media (max-width: 991px) {
  .hero-shape {
    filter: blur(40px);
    opacity: 0.25;
  }
}

/* Hero content – larger, brighter, readable; positioned a bit higher */
.hero-content-wrap {
  padding-top: 7rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 992px) {
  .hero-content-wrap {
    padding-top: 8rem;
    padding-bottom: 5rem;
  }
}

.hero-content {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-content .hero-title {
  margin-bottom: 1.25rem !important;
}

.hero-content .hero-bullets {
  margin-bottom: 1.5rem !important;
}

.hero-title {
  font-size: clamp(1.6rem, 4.2vw, 2.75rem);
  line-height: 1.5;
  color: #fff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35), 0 4px 12px rgba(0, 0, 0, 0.25);
}

.hero-lead {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  margin-bottom: 1.5rem;
}

.hero-bullets {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  line-height: 1.7;
  color: #fff;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.hero-bullets li {
  margin-bottom: 0.25rem;
}

.hero-check {
  color: #60a5fa;
  font-weight: 700;
  margin-right: 0.35rem;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}

.hero-section .btn {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 1.25rem;
}

.hero-section .btn-lg {
  font-size: 1rem;
  padding: 0.6rem 1.5rem;
}

.hero-badge {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.02em;
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.85);
}

.hero-testimonial {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin: 0;
}

.hero-testimonial cite {
  font-style: italic;
}

/* Animations */
@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.02);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.anim-delay-1 {
  animation-delay: 0.15s;
}

.anim-delay-2 {
  animation-delay: 0.3s;
}

.anim-delay-3 {
  animation-delay: 0.45s;
}

.section-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

.section-animate.in-view .hero-stat {
  animation: fadeInUp 0.5s ease forwards;
}

.section-animate.in-view .trust-bar-item {
  animation: fadeInUp 0.5s ease forwards;
}

.trust-bar .row>div:nth-child(1) .trust-bar-item {
  animation-delay: 0.05s;
}

.trust-bar .row>div:nth-child(2) .trust-bar-item {
  animation-delay: 0.15s;
}

.trust-bar .row>div:nth-child(3) .trust-bar-item {
  animation-delay: 0.25s;
}

.trust-bar .row>div:nth-child(4) .trust-bar-item {
  animation-delay: 0.35s;
}

.text-accent {
  color: #006eef;
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.75);
}

.bg-primary-dark {
  background: #fff !important;
}

.bg-primary-dark .text-white,
.bg-primary-dark h2,
.bg-primary-dark .display-5 {
  color: #0f172a !important;
}

.bg-primary-dark .text-white-70,
.bg-primary-dark .lead,
.bg-primary-dark .process-step p,
.bg-primary-dark .process-step h6 {
  color: #475569 !important;
}

.bg-light {
  background: #fff !important;
}

/* CTA buttons - conversion focus */
.btn-cta {
  background: #006eef;
  border-color: #006eef;
  color: #fff;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.btn-cta:hover {
  background: #005bc9;
  border-color: #005bc9;
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-cta {
  border: 2px solid #006eef;
  color: #006eef;
  font-weight: 600;
  background: transparent;
  transition: background 0.2s, color 0.2s;
}

.btn-outline-cta:hover {
  background: #006eef;
  color: #fff;
  border-color: #006eef;
}

/* Content images */
.content-img-wrap {
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.content-img-wrap img {
  object-fit: cover;
}

/* Pain point cards */
/* Revamp section badge */
.section-animate .letter-spacing {
  letter-spacing: 0.06em;
}

.pain-card {
  transition: transform 0.2s, box-shadow 0.2s;
  border-radius: 0.75rem;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.pain-icon {
  font-size: 2.5rem;
  line-height: 1;
}

/* AI strategy feature cards – images */
.ai-feature-card {
  border: 1px solid rgba(0, 110, 239, 0.08) !important;
  padding: 0 !important;
}

.ai-feature-card .ai-feature-full-wrap {
  border-radius: inherit;
}

.ai-feature-card:hover {
  border-color: rgba(0, 110, 239, 0.2) !important;
  box-shadow: 0 12px 24px rgba(0, 110, 239, 0.08);
}

.ai-feature-card:hover .ai-feature-img {
  transform: scale(1.05);
}

/* Full-card image with title overlay */
.ai-feature-full-wrap {
  position: relative;
  overflow: hidden;
  height: 100%;
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.ai-feature-full-wrap .ai-feature-img {
  position: relative;
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  display: block;
}

.ai-feature-title-overlay {
  position: relative;
  padding: 1.25rem 1rem;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-grow: 1;
}

.ai-feature-overlay-title {
  margin: 0;
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: none;
}

.ai-feature-overlay-on-color .ai-feature-overlay-title.text-dark {
  color: #0f172a !important;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.4);
}

.ai-feature-overlay-on-color .ai-feature-overlay-title.text-white {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Color blocks – crispy yellow/green (no image) */
.ai-feature-color-block {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ai-feature-color-green {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.ai-feature-color-yellow {
  background: linear-gradient(135deg, #FDE047 0%, #FACC15 50%, #EAB308 100%);
}

.ai-feature-color-amber {
  background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 50%, #D97706 100%);
}

/* Color tints over images (image + tint + title) */
.ai-feature-color-tint {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ai-feature-tint-green {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.55) 0%, rgba(18, 140, 126, 0.6) 100%);
}

.ai-feature-tint-yellow {
  background: linear-gradient(135deg, rgba(253, 224, 71, 0.5) 0%, rgba(234, 179, 8, 0.55) 100%);
}

.ai-feature-tint-amber {
  background: linear-gradient(135deg, rgba(252, 211, 77, 0.35) 0%, rgba(245, 158, 11, 0.4) 100%);
}

.ai-feature-overlay-on-color {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25) 0%, transparent 100%);
}

.ai-feature-overlay-on-color .ai-feature-overlay-title.text-white {
  color: #fff !important;
}

@media (min-width: 768px) {
  .ai-feature-full-wrap {
    min-height: 260px;
  }
}

.ai-feature-img-wrap {
  position: relative;
  overflow: hidden;
  height: 160px;
  background: linear-gradient(135deg, rgba(0, 110, 239, 0.06) 0%, rgba(0, 110, 239, 0.02) 100%);
}

.ai-feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.ai-feature-icon {
  font-size: 2.25rem;
  line-height: 1;
}

/* List with checkmarks - We Build section */
.list-check-web {
  list-style: none;
  padding-left: 0;
}

.list-check-web li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: #475569;
}

.list-check-web li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #006eef;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Pricing cards */
.pricing-card {
  border-radius: 0.75rem;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.pricing-card-featured {
  border: 2px solid #006eef !important;
  box-shadow: 0 8px 24px rgba(0, 110, 239, 0.15);
}

.pricing-card-featured:hover {
  box-shadow: 0 12px 32px rgba(0, 110, 239, 0.2);
}

.bg-accent {
  background: #006eef;
}

/* Process steps */
.process-step {
  text-align: center;
  padding: 1.5rem;
}

.process-step .step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #006eef, #005bc9);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

@media (min-width: 992px) {
  .process-step .step-num {
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
  }
}

/* 4 Steps section – redesigned with graphics */
.steps-section {
  background: #ffffff;
}

.steps-row {
  position: relative;
}

.process-step-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(0, 110, 239, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 110, 239, 0.12);
}

.process-step-graphic {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 0 auto 1rem;
}

.process-step-num {
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #006eef, #005bc9);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 110, 239, 0.35);
}

.process-step-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(0, 110, 239, 0.08) 0%, rgba(0, 91, 201, 0.05) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 110, 239, 0.12);
}

.process-step-icon {
  width: 36px;
  height: 36px;
  color: #006eef;
}

.process-step-title {
  color: #0f172a;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.process-step-desc {
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Get Started in 3 Simple Steps */
.get-started-3-section {
  background: #fff;
}

.get-started-3-section .get-started-card {
  border-color: rgba(0, 110, 239, 0.12);
}

/* Testimonial cards */
.testimonial-card {
  border-radius: 0.75rem;
  transition: box-shadow 0.2s;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Client Reviews – Clutch brand theme (#4BAAFE blue, #000 black, #FC65B3 pink) */
:root {
  --clutch-blue: #4BAAFE;
  --clutch-blue-dark: #3a8de8;
  --clutch-black: #000000;
  --clutch-pink: #FC65B3;
  --clutch-pink-soft: rgba(252, 101, 179, 0.12);
}

.reviews-section-clutch {
  background: #fff;
}

/* Clutch badge – "Reviews from Clutch" */
.reviews-clutch-badge {
  background: #fff;
  border: 2px solid var(--clutch-blue);
  color: var(--clutch-black);
}

.reviews-clutch-badge-text {
  color: #64748b;
  font-weight: 500;
}

.reviews-clutch-logo {
  color: var(--clutch-blue) !important;
  font-size: 1rem;
}

.reviews-clutch-logo:hover {
  color: var(--clutch-blue-dark) !important;
  text-decoration: underline !important;
}

.reviews-clutch-heading {
  color: var(--clutch-black);
}

.reviews-clutch-subtext {
  color: #475569;
}

.reviews-clutch-subtext strong {
  color: var(--clutch-black);
}

/* "Read more reviews" link button – Clutch blue outline */
.reviews-clutch-link-btn {
  background: transparent !important;
  border: 2px solid var(--clutch-blue) !important;
  color: var(--clutch-blue) !important;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.reviews-clutch-link-btn:hover {
  background: var(--clutch-blue) !important;
  color: #fff !important;
  border-color: var(--clutch-blue) !important;
}

/* Review cards – Clutch themed */
.review-card-clutch {
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.review-card-clutch:hover {
  box-shadow: 0 8px 24px rgba(75, 170, 254, 0.12);
  border-color: rgba(75, 170, 254, 0.3);
}

.review-card-clutch .review-stars {
  color: #f59e0b;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.review-card-clutch .review-quote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #334155;
  margin: 0;
  font-style: normal;
}

.review-card-clutch .review-author {
  padding-top: 0.75rem;
}

.review-card-clutch .review-author span:first-child {
  color: var(--clutch-black);
}

/* Country flag + name – professional badge */
.review-country {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.5rem;
  background: #f1f5f9;
  border-radius: 0.375rem;
  border: 1px solid #e2e8f0;
}

.review-flag {
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
  width: 1.5rem;
  text-align: center;
}

.review-country-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
  letter-spacing: 0.01em;
}

.review-author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clutch-black);
  margin-bottom: 0.15rem;
}

.review-company {
  display: block;
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

/* Main CTA – "View all reviews on Clutch" – Clutch blue solid */
.reviews-clutch-cta-btn {
  background: var(--clutch-blue) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.reviews-clutch-cta-btn:hover {
  background: var(--clutch-blue-dark) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

/* Fallback for generic .review-card if used elsewhere */
.review-card {
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #fff;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.review-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.review-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
}

.review-quote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
  margin: 0;
  font-style: normal;
}

.review-author {
  padding-top: 0.5rem;
}

/* Portfolio Slider */
.portfolio-slider-wrap {
  padding: 0 3rem;
}

@media (max-width: 767px) {
  .portfolio-slider-wrap {
    padding: 0 2.5rem;
  }
}

.portfolio-card {
  border-radius: 0.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12) !important;
}

.portfolio-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.portfolio-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-card-img {
  transform: scale(1.05);
}

.portfolio-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(0, 110, 239, 0.9);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.portfolio-card .card-body {
  padding: 1.25rem 1.25rem 1.5rem;
}

.portfolio-card .card-title {
  font-size: 1.05rem;
}

/* Portfolio carousel controls – bottom center */
.portfolio-slider-wrap .carousel {
  position: relative;
  padding-bottom: 3rem;
}

.portfolio-slider-wrap .portfolio-control {
  position: absolute !important;
  top: auto !important;
  bottom: 1rem !important;
  left: auto !important;
  right: auto !important;
  width: 48px;
  height: 48px;
  margin: 0 !important;
  border-radius: 50%;
  background: rgba(0, 110, 239, 0.9) !important;
  border: none;
  opacity: 1;
  transform: none !important;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-slider-wrap .portfolio-control-prev {
  left: calc(50% - 52px) !important;
}

.portfolio-slider-wrap .portfolio-control-next {
  left: calc(50% + 4px) !important;
}

.portfolio-slider-wrap .portfolio-control:hover {
  background: #005bc9 !important;
  opacity: 1;
}

@media (max-width: 767px) {
  .portfolio-slider-wrap .portfolio-control {
    width: 40px;
    height: 40px;
  }

  .portfolio-slider-wrap .portfolio-control-prev {
    left: calc(50% - 44px) !important;
  }

  .portfolio-slider-wrap .portfolio-control-next {
    left: calc(50% + 4px) !important;
  }
}

.portfolio-slider-wrap .portfolio-control .carousel-control-prev-icon,
.portfolio-slider-wrap .portfolio-control .carousel-control-next-icon {
  width: 1.25rem;
  height: 1.25rem;
}

/* Portfolio indicators – centered, clear spacing above CTA */
.portfolio-indicators {
  position: relative;
  margin-top: 1.5rem;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.portfolio-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(0, 110, 239, 0.4);
  border: none;
  margin: 0;
}

.portfolio-indicators button.active {
  background-color: #006eef;
  transform: scale(1.2);
}

/* FAQ Accordion */
.accordion-button:not(.collapsed) {
  background-color: rgba(0, 110, 239, 0.1);
  color: #1a1a2e;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 110, 239, 0.2);
}

.accordion-button:not(.collapsed)::after {
  filter: none;
}

.py-lg-6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 992px) {
  .py-lg-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

/* ========== Footer – LP style (dark blue theme like mobile-app-development) ========== */
.site-footer-lp {
  background: #0e172a !important;
  border-top: none;
  font-weight: 300;
}

.site-footer-lp .text-white-70 {
  color: rgba(255, 255, 255, 0.85);
}

/* Footer: equal left/right space (match section container padding) */
.site-footer-lp .footer-top .container,
.site-footer-lp .footer-bottom .container {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 576px) {

  .site-footer-lp .footer-top .container,
  .site-footer-lp .footer-bottom .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 768px) {

  .site-footer-lp .footer-top .container,
  .site-footer-lp .footer-bottom .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 992px) {

  .site-footer-lp .footer-top .container,
  .site-footer-lp .footer-bottom .container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

/* Footer: block centered on page, text left-aligned */
.site-footer-lp .footer-top .row {
  text-align: left;
  justify-content: center;
}

.site-footer-lp .footer-top [class*="col-"] {
  text-align: left;
}

.site-footer-lp .footer-desc {
  margin-left: 0;
  margin-right: auto;
}

.site-footer-lp .footer-contact-icons {
  justify-content: flex-start;
}

.site-footer-lp .footer-address {
  justify-content: flex-start;
  text-align: left;
}

.site-footer-lp .footer-services {
  list-style: none;
  padding-left: 0;
}

.site-footer-lp .footer-bottom-inner {
  text-align: left;
}

/* Logo in white rounded box with light blue border */
.footer-logo-wrap {
  background: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 110, 239, 0.4);
  display: inline-block;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.footer-logo-wrap:hover {
  border-color: rgba(0, 110, 239, 0.7);
  box-shadow: 0 2px 8px rgba(0, 110, 239, 0.2);
}

.footer-logo {
  height: 36px;
  width: auto;
  display: block;
}

@media (min-width: 768px) {
  .footer-logo {
    height: 40px;
  }
}

.footer-desc {
  line-height: 1.6;
  max-width: 320px;
}

.footer-heading {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

/* Get Free Quote button – medium blue */
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #2563eb !important;
  color: #fff !important;
  border: none;
  padding: 0.6rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.5);
}

.footer-cta-btn:hover {
  background: #1d4ed8 !important;
  color: #fff !important;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.6);
}

.footer-cta-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Contact icons – WhatsApp green, Phone cyan, Email orange/red */
.footer-contact-icons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-icon-circle:hover {
  transform: scale(1.08);
  opacity: 0.95;
}

.footer-icon-whatsapp {
  color: #25D366;
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.1);
}

.footer-icon-phone {
  color: #0ea5e9;
  border-color: #0ea5e9;
  background: rgba(14, 165, 233, 0.1);
}

.footer-icon-email {
  color: #f43f5e;
  border-color: #f43f5e;
  background: rgba(244, 63, 94, 0.1);
}

.footer-address-icon {
  color: #ef4444 !important;
}

/* Our Services links */
.footer-services li a.footer-link:hover {
  color: #fff !important;
  text-decoration: underline !important;
}

/* Bottom bar */
.site-footer-lp .footer-bottom {
  background: #0e172a !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Privacy Policy – red link */
.footer-privacy-link {
  color: #ef4444 !important;
  font-weight: 500;
}

.footer-privacy-link:hover {
  color: #dc2626 !important;
  text-decoration: underline !important;
}

/* ========== Enquiry Modal & Lead Form ========== */
.enquiry-modal-dialog {
  max-width: 900px;
  max-height: calc(100vh - 2rem);
  margin: 1rem auto;
}

.enquiry-modal-content {
  background: #fff !important;
  border-radius: 1rem !important;
  border: 1px solid rgba(0, 0, 0, 0.08);
  max-height: calc(100vh - 2rem);
}

.enquiry-modal-body {
  overflow: visible;
  max-height: none;
}

.enquiry-modal-padding {
  padding: 1rem 1.25rem !important;
}

@media (min-width: 992px) {
  .enquiry-modal-padding {
    padding: 1.25rem 1.5rem !important;
  }
}

.enquiry-modal-right.enquiry-modal-padding {
  padding-top: 2.75rem !important;
}

@media (min-width: 992px) {
  .enquiry-modal-right.enquiry-modal-padding {
    padding-top: 3rem !important;
  }
}

.enquiry-modal-left {
  background: #006eef !important;
  min-height: 260px;
}

@media (min-width: 992px) {
  .enquiry-modal-left {
    min-height: 320px;
  }
}

.enquiry-modal-img-mb {
  margin-bottom: 0.75rem !important;
}

.enquiry-modal-heading-mb {
  margin-bottom: 0.5rem !important;
}

.enquiry-modal-para-mb {
  margin-bottom: 1rem !important;
}

.enquiry-modal-subtext {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 0.9375rem;
  line-height: 1.45;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.enquiry-testimonial-padding {
  padding: 1rem 1.25rem !important;
}

.enquiry-form-row {
  margin-bottom: 0.65rem !important;
}

.enquiry-form-row:last-of-type {
  margin-bottom: 0 !important;
}

.enquiry-form-row-project {
  margin-bottom: 1rem !important;
}

.enquiry-trust-list {
  margin-top: 1rem !important;
}

.enquiry-trust-mb {
  margin-bottom: 0.75rem !important;
}

.enquiry-submit-py {
  padding-top: 0.6rem !important;
  padding-bottom: 0.6rem !important;
}

/* Close icon – visible X */
.enquiry-modal-close {
  background: rgba(0, 0, 0, 0.6) !important;
  border: none;
  border-radius: 50% !important;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  color: #fff !important;
  transition: background 0.2s ease, transform 0.2s ease;
}

.enquiry-modal-close:hover {
  background: rgba(0, 0, 0, 0.85) !important;
  color: #fff !important;
  transform: scale(1.05);
}

.enquiry-modal-close svg {
  flex-shrink: 0;
}

.enquiry-modal-heading {
  font-size: 1.15rem;
  line-height: 1.35;
  color: #fff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.15);
  letter-spacing: -0.01em;
}

@media (min-width: 992px) {
  .enquiry-modal-heading {
    font-size: 1.35rem;
  }
}

/* Left panel – review slider */
.enquiry-review-carousel {
  position: relative;
}

.enquiry-review-carousel .carousel-inner {
  overflow: hidden;
}

.enquiry-review-carousel .carousel-item {
  min-height: 1px;
}

/* Review card – blue box, white text (on #006eef left) */
.enquiry-modal-left .enquiry-testimonial-card {
  background: rgba(0, 0, 0, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.enquiry-modal-left .enquiry-testimonial-quote {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #fff !important;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.enquiry-modal-left .enquiry-testimonial-author {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff !important;
}

.enquiry-modal-left .enquiry-testimonial-location {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85) !important;
}

.enquiry-testimonial-avatar {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Slider dots – below card: active filled blue, inactive empty white */
.enquiry-review-indicators {
  position: static !important;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.enquiry-review-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  opacity: 1;
  transition: background-color 0.2s ease;
}

.enquiry-review-indicators [data-bs-target].active {
  background-color: #fff;
  transform: scale(1.15);
}

.enquiry-modal-email-text {
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.45;
}

.enquiry-email-link {
  color: #93c5fe !important;
  font-weight: 600;
}

.enquiry-email-link:hover {
  color: #fff !important;
  text-decoration: underline !important;
}

/* Modal form – labels */
.enquiry-form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.35rem;
}

/* Modal form – inputs: compact height, single border */
.enquiry-modal-right .enquiry-input {
  border: 1px solid #d1d5db !important;
  border-radius: 0.5rem !important;
  font-size: 0.9375rem !important;
  background: #fff !important;
  min-height: 36px;
  padding: 0.4rem 0.75rem !important;
  line-height: 1.4;
}

.enquiry-modal-right .enquiry-textarea {
  min-height: 52px;
  resize: vertical;
}

.enquiry-modal-right .enquiry-input::placeholder {
  color: #9ca3af;
}

.enquiry-modal-right .enquiry-input:focus {
  border-color: #006eef !important;
  box-shadow: 0 0 0 3px rgba(0, 110, 239, 0.15) !important;
  outline: 0;
}

/* Modal form – phone input group: one wrapper border */
.enquiry-input-group {
  display: flex;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #fff;
}

.enquiry-input-group:focus-within {
  border-color: #006eef !important;
  box-shadow: 0 0 0 3px rgba(0, 110, 239, 0.15);
}

.enquiry-country-select {
  width: auto !important;
  min-width: 4rem;
  max-width: 5rem;
  background: #f9fafb !important;
  border: none !important;
  border-right: 1px solid #e5e7eb !important;
  border-radius: 0 !important;
  color: #374151;
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 0.4rem 0.35rem;
  cursor: pointer;
}

.enquiry-input-group .enquiry-input {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  flex: 1;
  min-width: 0;
  min-height: 36px;
  padding: 0.4rem 0.75rem !important;
}

.enquiry-input-group .enquiry-input:focus {
  box-shadow: none !important;
}

/* Trust list – smaller text, check circle icons */
.enquiry-trust-list {
  font-size: 0.8rem !important;
}

.enquiry-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: #16a34a;
}

.enquiry-trust-icon svg {
  width: 100%;
  height: 100%;
}

.enquiry-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  background: #006eef !important;
  color: #fff !important;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.enquiry-submit-btn {
  background: #006eef !important;
  font-size: 1.05rem;
}

.enquiry-submit-btn:hover {
  background: #005bc9 !important;
  color: #fff !important;
}

/* Enquiry Section – revamped */
.enquiry-section {
  padding: 3rem 0 4rem;
  background: #fff;
}

@media (min-width: 992px) {
  .enquiry-section {
    padding: 4rem 0 5rem;
  }
}

.enquiry-section-head {
  text-align: center;
  margin-bottom: 2rem;
}

.enquiry-section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #006eef;
  background: rgba(0, 110, 239, 0.1);
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  margin-bottom: 0.75rem;
}

.enquiry-section-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .enquiry-section-title {
    font-size: 2.25rem;
  }
}

.enquiry-section-subtitle {
  font-size: 1rem;
  color: #64748b;
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.enquiry-section-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  max-width: 1100px;
  margin: 0 auto;
}

.enquiry-section-left {
  background: #006eef !important;
  padding: 2rem 1.75rem !important;
}

@media (min-width: 992px) {
  .enquiry-section-left {
    padding: 2.5rem 2rem !important;
  }
}

.enquiry-section-left-inner {
  position: relative;
  z-index: 1;
}

.enquiry-section-left-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 1.25rem;
}

.enquiry-section-benefit-icon {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.enquiry-section-benefits li {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.95);
}

.enquiry-section-image-wrap {
  aspect-ratio: 16/10;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.enquiry-section-img {
  object-fit: cover;
  height: 100%;
}

.enquiry-section-testimonial {
  background: rgba(0, 0, 0, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.enquiry-section-right {
  background: #fff !important;
  border-left: 1px solid #e2e8f0;
}

.enquiry-section-form-wrap {
  max-width: 100%;
}

.enquiry-section-form-title {
  font-size: 1.35rem;
  color: #0f172a;
}

.enquiry-section-submit-btn {
  background: #006eef !important;
  font-size: 1.05rem;
  transition: background 0.2s ease;
}

.enquiry-section-submit-btn:hover {
  background: #005bc9 !important;
  color: #fff !important;
}

@media (max-width: 991.98px) {
  .enquiry-section-right {
    border-left: none !important;
    border-top: 1px solid #e2e8f0;
  }

  .enquiry-section-head {
    margin-bottom: 1.5rem;
  }
}

/* Legacy lead-form (kept for any refs) */
.lead-form-section {
  background: #050810 !important;
  min-height: 520px;
  position: relative;
}

.lead-form-section-heading-wrap {
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
}

.lead-form-left {
  background: linear-gradient(180deg, #0a0e1a 0%, rgba(0, 110, 239, 0.08) 50%, #050810 100%) !important;
  position: relative;
}

.lead-form-left-inner {
  display: flex;
  flex-direction: column;
}

.lead-form-left-text {
  font-size: 1rem;
  line-height: 1.5;
}

/* Animated graphics – floating shapes & lines */
.lead-form-graphics {
  pointer-events: none;
  z-index: 0;
}

.lead-form-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.25;
  animation: leadFloat 10s ease-in-out infinite;
}

.lead-form-shape-1 {
  width: 180px;
  height: 180px;
  background: rgba(0, 110, 239, 0.4);
  top: 5%;
  right: 10%;
  animation-delay: 0s;
}

.lead-form-shape-2 {
  width: 120px;
  height: 120px;
  background: rgba(0, 110, 239, 0.3);
  bottom: 20%;
  left: 5%;
  animation-delay: -3s;
}

.lead-form-shape-3 {
  width: 80px;
  height: 80px;
  background: rgba(0, 110, 239, 0.25);
  top: 40%;
  right: 20%;
  animation-delay: -5s;
}

.lead-form-shape-4 {
  width: 100px;
  height: 100px;
  background: rgba(0, 110, 239, 0.2);
  bottom: 35%;
  right: 5%;
  animation-delay: -2s;
}

.lead-form-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(0, 110, 239, 0.15), transparent);
  height: 1px;
  width: 60%;
  animation: leadLine 8s ease-in-out infinite;
}

.lead-form-line-1 {
  top: 25%;
  left: -20%;
  animation-delay: 0s;
}

.lead-form-line-2 {
  bottom: 30%;
  right: -20%;
  width: 50%;
  animation-delay: -4s;
  animation-direction: reverse;
}

@keyframes leadFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.25;
  }

  33% {
    transform: translate(15px, -20px) scale(1.05);
    opacity: 0.35;
  }

  66% {
    transform: translate(-10px, 15px) scale(0.98);
    opacity: 0.2;
  }
}

@keyframes leadLine {

  0%,
  100% {
    opacity: 0.2;
    transform: translateX(0);
  }

  50% {
    opacity: 0.5;
    transform: translateX(20px);
  }
}

/* Left side – content first, then images below */
.lead-form-heading {
  font-size: 1.35rem;
  line-height: 1.35;
  color: #fff !important;
}

@media (min-width: 992px) {
  .lead-form-heading {
    font-size: 1.6rem;
  }
}

.lead-form-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 100%;
}

@media (min-width: 768px) {
  .lead-form-images {
    max-width: 420px;
    gap: 1.25rem;
  }
}

@media (min-width: 992px) {
  .lead-form-images {
    max-width: 480px;
    gap: 1.5rem;
  }
}

.lead-form-img-wrap {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  animation: leadImgFloat 6s ease-in-out infinite;
  aspect-ratio: 4/3;
  min-height: 120px;
}

@media (min-width: 768px) {
  .lead-form-img-wrap {
    min-height: 140px;
  }
}

.lead-form-img-main {
  animation-delay: 0s;
}

.lead-form-img-secondary {
  animation-delay: -2s;
}

.lead-form-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.lead-form-img-wrap:hover .lead-form-img {
  transform: scale(1.05);
}

.lead-form-img-wrap:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 110, 239, 0.2);
}

@keyframes leadImgFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.lead-form-testimonial {
  background: rgba(0, 110, 239, 0.25) !important;
  border: 1px solid rgba(0, 110, 239, 0.35);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.lead-form-cta {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #006eef 0%, rgba(255, 255, 255, 0.95) 100%) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 992px) {
  .lead-form-cta {
    font-size: 3rem;
  }
}

.lead-form-country-tabs .lead-country-tab {
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.2s, opacity 0.2s;
}

.lead-form-country-tabs .lead-country-tab:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
}

.lead-form-country-tabs .lead-country-tab.active {
  background: rgba(0, 110, 239, 0.4) !important;
  border: 2px solid #006eef !important;
  opacity: 1;
}

.lead-form-right {
  background: #f1f5f9;
}

.lead-form-panel {
  background: #fff !important;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.lead-form-panel-title {
  font-size: 1.5rem;
}

/* Page form labels */
.lead-form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.35rem;
}

/* Page form – underline-style inputs */
.lead-form-input {
  background: transparent !important;
  font-size: 1rem;
  border: none !important;
  border-bottom: 1px solid #cbd5e1 !important;
  border-radius: 0 !important;
  padding: 0.5rem 0 !important;
}

.lead-form-input::placeholder {
  color: #94a3b8;
}

.lead-form-input:focus {
  border-bottom-color: #006eef !important;
  box-shadow: none !important;
  outline: 0;
}

.lead-form-input-text {
  padding-left: 0 !important;
}

/* Page form – phone row (country code + input), single bottom border */
.lead-form-phone-wrap {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #cbd5e1;
  gap: 0.35rem;
}

.lead-form-phone-wrap:focus-within {
  border-bottom-color: #006eef;
}

.lead-form-country-select {
  width: auto !important;
  min-width: 4rem;
  max-width: 5rem;
  font-size: 0.875rem;
  color: #64748b;
  flex-shrink: 0;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0.5rem 0.2rem 0.5rem 0 !important;
  cursor: pointer;
}

.lead-form-country-select:focus {
  box-shadow: none !important;
  outline: 0;
}

.lead-form-input-phone {
  border: none !important;
  flex: 1;
  min-width: 0;
  box-shadow: none !important;
}

/* Page form – select */
.lead-form-select {
  cursor: pointer;
  padding-right: 2rem !important;
  appearance: auto;
}

.lead-form-submit-btn {
  background: #006eef !important;
  font-size: 1.05rem;
}

.lead-form-submit-btn:hover {
  background: #005bc9 !important;
  color: #fff !important;
}

/* ========== Responsive – all devices ========== */
html {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

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

/* Small phones (≤575px) */
@media (max-width: 575.98px) {
  html {
    font-size: 16px;
  }

  .header-white {
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
  }

  .header-logo-wrap {
    max-width: 40%;
  }

  .header-logo {
    height: 30px;
    max-width: 80px;
  }

  .header-icon-link {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
  }

  .header-icon-svg {
    width: 1.05rem;
    height: 1.05rem;
  }

  .header-cta-btn {
    font-size: 0.65rem;
    padding: 0.25rem 0.4rem;
    min-height: 32px;
  }

  .header-cta-group {
    gap: 0.15rem !important;
  }

  .hero-banner-wrap {
    padding-top: 4.5rem;
    padding-bottom: 0.5rem;
    margin-top: 0.5rem;
  }

  .hero-section.hero-banner {
    min-height: auto;
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .hero-content-wrap {
    padding-top: 5rem;
    padding-bottom: 3.5rem;
  }

  .hero-title {
    font-size: clamp(1.35rem, 6vw, 1.75rem);
    margin-top: 6rem;
  }

  .hero-lead {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }

  .hero-bullets {
    font-size: 0.85rem;
    gap: 0.5rem 0.75rem !important;
  }

  .hero-section .btn-lg {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .lead-form-country-select,
  .enquiry-country-select {
    min-width: 3.5rem;
    max-width: 4.25rem;
    font-size: 0.8125rem;
    padding-left: 0.15rem !important;
    padding-right: 0.15rem !important;
  }
}

/* Tablets and below (≤991px) – enquiry modal */
@media (max-width: 991.98px) {
  .enquiry-modal-dialog {
    max-width: 100%;
    margin: 0.5rem;
    max-height: calc(100vh - 1rem);
  }

  .enquiry-modal-content {
    max-height: calc(100vh - 1rem);
  }

  .enquiry-modal-padding {
    padding: 0.875rem 1rem !important;
  }

  .enquiry-modal-right.enquiry-modal-padding {
    padding-top: 2.5rem !important;
  }

  .enquiry-modal-left {
    min-height: auto;
  }

  .enquiry-modal-heading {
    font-size: 1.05rem;
  }

  .enquiry-modal-subtext {
    font-size: 0.875rem;
  }

  .enquiry-modal-left .enquiry-testimonial-quote {
    font-size: 0.85rem;
  }

  .enquiry-modal-email-text {
    font-size: 0.8rem;
  }

  .enquiry-modal-close {
    width: 2.25rem;
    height: 2.25rem;
    margin: 0.5rem !important;
  }

  .lead-form-section {
    min-height: auto;
  }

  .lead-form-section-heading-wrap {
    padding-top: 1.75rem;
    padding-bottom: 1rem;
  }

  .lead-form-section-title {
    font-size: 1.5rem;
  }

  .lead-form-section-subtitle {
    font-size: 0.9375rem;
  }

  .lead-form-left {
    padding: 1.5rem 1rem !important;
  }

  .lead-form-right {
    padding: 1.5rem 1rem !important;
  }

  .enquiry-section {
    padding: 2rem 0 3rem;
  }

  .enquiry-section-title {
    font-size: 1.5rem;
  }

  .enquiry-section-subtitle {
    font-size: 0.9375rem;
  }

  .enquiry-section-left {
    padding: 1.5rem 1.25rem !important;
  }

  .enquiry-section-right {
    padding: 1.5rem 1.25rem !important;
  }

  .lead-form-panel {
    padding: 1.25rem 1rem !important;
  }

  .lead-form-heading {
    font-size: 1.25rem;
  }

  .lead-form-images {
    max-width: 100%;
  }
}

/* Phones (≤767px) */
@media (max-width: 767.98px) {
  .hero-banner-wrap {
    padding: 0;
    margin: 0;
  }

  .hero-section.hero-banner {
    min-height: auto;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .hero-content-wrap {
    padding-top: 6.5rem;
    padding-bottom: 1.5rem;
  }

  .hero-content .hero-title {
    margin-bottom: 0.75rem !important;
  }

  .hero-content .hero-bullets {
    margin-bottom: 1rem !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  .hero-lead {
    margin-bottom: 1rem;
  }

  .lead-form-left {
    padding: 1.25rem 1rem !important;
  }

  .lead-form-right {
    padding: 1.25rem 1rem !important;
  }

  .lead-form-panel {
    padding: 1rem !important;
  }

  .lead-form-panel-title {
    font-size: 1.25rem;
  }

  .lead-form-img-wrap {
    min-height: 80px;
  }

  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-lg-6 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .display-5 {
    font-size: clamp(1.35rem, 4vw, 1.75rem);
  }

  .reviews-clutch-heading {
    font-size: 1.5rem;
  }

  .footer-top .row {
    text-align: center;
  }

  .footer-top .footer-contact-icons {
    justify-content: center;
  }

  .footer-address {
    justify-content: center;
    text-align: center;
  }
}

/* Extra small (≤375px) */
@media (max-width: 375px) {
  .header-logo {
    height: 36px;
  }

  .hero-title {
    font-size: 1.3rem;
  }

  .hero-section .btn {
    padding: 0.5rem 0.875rem;
    font-size: 0.9rem;
  }

  .enquiry-modal-padding {
    padding: 0.75rem !important;
  }

  .enquiry-form-label {
    font-size: 0.8125rem;
  }

  .enquiry-trust-list {
    font-size: 0.75rem !important;
  }
}

/* Modal scroll on small height viewports */
@media (max-height: 500px) {
  .enquiry-modal-dialog {
    max-height: 95vh;
    margin: 0.25rem;
  }

  .enquiry-modal-content {
    max-height: 95vh;
    overflow-y: auto;
  }

  .enquiry-modal-body {
    overflow-y: auto;
  }
}

/* Prevent horizontal scroll from wide content */
html,
body {
  overflow-x: hidden;
}

.container,
.container-fluid {
  max-width: 100%;
  box-sizing: border-box;
}

.header-outer,
.hero-banner-wrap,
section {
  max-width: 100%;
  box-sizing: border-box;
}

.modal-body {
  overflow-x: hidden;
}

/* Merged Header & Hero Classes */
.header-transparent {
  background-color: transparent !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.header-transparent .header-icon-link {
  color: #fff !important;
}

.header-transparent .header-icon-link:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

.header-transparent .header-icon-whatsapp,
.header-transparent .header-icon-phone {
  color: #fff !important;
}

.transition-all {
  transition: all 0.3s ease;
}

.hero-banner-wrap.merged-hero {
  padding-top: 0 !important;
}

@media (min-width: 768px) {
  .hero-banner-wrap.merged-hero {
    padding-top: 0 !important;
  }
}

@media (max-width: 767.98px) {
  .hero-banner-wrap.merged-hero {
    padding-top: 0 !important;
  }
}

/* Technology Section - White Theme */
.tech-stack-section {
  background: #ffffff;
}

.tech-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.tech-card:hover {
  background: #f8fafc;
  transform: translateY(-5px);
  border-color: #006eef;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.tech-logo-wrap {
  width: 64px;
  height: 64px;
  background: #f1f5f9;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  transition: background 0.3s ease;
}

.tech-card:hover .tech-logo-wrap {
  background: #e2e8f0;
}

.tech-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.tech-name {
  color: #0f172a;
  font-weight: 600;
  font-size: 0.875rem;
  margin: 0;
}

.text-gradient-custom {
  background: linear-gradient(to right, #006eef, #003a8c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.tech-filter-btn-custom {
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #e2e8f0;
  padding: 0.6rem 1.5rem;
  border-radius: 50rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tech-filter-btn-custom:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.tech-filter-btn-custom.active {
  background: #006eef;
  color: #fff;
  border-color: #006eef;
  box-shadow: 0 4px 12px rgba(0, 110, 239, 0.3);
}

.tech-cta-box-custom {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
}

.tech-item {
  transition: opacity 0.3s ease;
}

/* New Portfolio Swiper Styles */
.portfolio-swiper {
  padding-bottom: 50px;
}

.portfolio-item-card {
  transition: transform 0.3s ease;
  min-height: 480px;
  display: flex;
}

.portfolio-card-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.portfolio-card-mockup img {
  max-height: 400px;
  width: auto;
  object-fit: contain;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #cbd5e1;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #006eef;
  width: 24px;
  border-radius: 6px;
}

@media (max-width: 991.98px) {
  .portfolio-item-card {
    min-height: auto;
  }

  .portfolio-card-mockup img {
    max-height: 300px;
  }
}


/* Platform icons visibility fix for white theme */
/* Platform icons styling */
.store-icons i {
  transition: transform 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.store-icons i:hover {
  transform: translateY(-3px);
  color: #003a8c !important;
}

/* Custom Portfolio CTA (Outline) */
.portfolio-cta-custom {
  display: inline-block;
  height: 48px;
  line-height: 46px;
  padding: 0 30px;
  overflow: hidden;
  position: relative;
  text-align: center;
  background-color: transparent;
  color: white !important;
  border-radius: 30px;
  transition: all .3s ease;
  border: 1px solid #fff;
  box-shadow: none;
  font-weight: 400 !important;
  font-size: 16px;
  text-decoration: none;
  z-index: 1;
}

.portfolio-cta-custom:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: -2;
}

.portfolio-cta-custom:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #fff; /* High visibility white fill */
  transition: all .3s;
  z-index: -1;
  border-radius: 30px;
}

.portfolio-cta-custom:hover {
  color: #1a365d !important; /* Dark text on white background */
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.portfolio-cta-custom:hover:before {
  width: 100%;
}

/* Custom Primary CTA (Brand Blue) */
.cta-custom-green {
  display: inline-block;
  height: 48px;
  line-height: 46px;
  padding: 0 35px;
  overflow: hidden;
  position: relative;
  text-align: center;
  background-color: transparent; /* Changed to use pseudo-elements for fill */
  color: white !important;
  border-radius: 30px;
  transition: all .3s ease;
  border: 1px solid #1a365d;
  box-shadow: 0 4px 15px rgba(26, 54, 93, 0.3);
  font-weight: 400 !important;
  font-size: 16px;
  text-decoration: none;
  z-index: 1;
}

.cta-custom-green:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1a365d;
  z-index: -2;
}

.cta-custom-green:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #0f172a;
  transition: all .3s;
  z-index: -1;
  border-radius: 30px;
}

.cta-custom-green:hover {
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.4);
}

.cta-custom-green:hover:before {
  width: 100%;
}

/* Global Heading Font Weight Update */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500 !important;
}

/* High-Visibility Header/Hero CTA (White Outline) */
.cta-header-hero {
  display: inline-block;
  height: 48px;
  line-height: 46px;
  padding: 0 35px;
  overflow: hidden;
  position: relative;
  text-align: center;
  background-color: transparent;
  color: white !important;
  border-radius: 30px;
  transition: all .3s ease;
  border: 1px solid #fff;
  box-shadow: none;
  font-weight: 500 !important;
  font-size: 16px;
  text-decoration: none;
  z-index: 10;
  animation: pulse-soft 3s infinite, buttonFloat 3s ease-in-out infinite;
}

.cta-header-hero:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #fff; /* Match Call Us button fill */
  transition: all .3s;
  z-index: -1;
  border-radius: 30px;
}

.hero-content .cta-header-hero {
  animation: buttonFloat 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.hero-content .cta-header-hero:hover {
  transform: translateY(-4px) scale(1.02);
}

.cta-header-hero:hover {
  color: #1a365d !important; /* Match Call Us button hover text color */
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.cta-header-hero:hover:before {
  width: 100%;
}

/* Header Scrolled State for Buttons */
#main-header.bg-white .cta-header-hero {
  border-color: #1a365d;
  color: #1a365d !important;
}

#main-header.bg-white .cta-header-hero:hover {
  color: #fff !important;
  border-color: #1a365d;
}

#main-header.bg-white .cta-header-hero:hover:before {
  width: 100%;
  background-color: #1a365d; /* Dark fill for white background header */
}

/* SVG Line Animation Button (Hero Primary) */
.cta-svg-btn {
  background: none;
  padding: 0;
  border: none;
  display: inline-block;
  width: 240px;
  height: 52px;
  position: relative;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  transition: transform 300ms, color 300ms;
  cursor: pointer;
  text-decoration: none;
  vertical-align: middle;
  outline: none;
  animation: buttonFloat 4s ease-in-out infinite;
}

.cta-svg-btn:hover,
.cta-svg-btn:focus {
  color: #fff;
  transform: scale(1.05);
}

.cta-svg-btn:hover .cta-btn-line {
  animation-play-state: paused;
}

.cta-btn-svg {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}

@keyframes outer-dashoffset {
  0% {
    stroke-dashoffset: 0;
    stroke-dasharray: 270px 270px;
  }
  50% {
    stroke-dasharray: 180px 360px;
  }
  100% {
    stroke-dashoffset: 540px;
    stroke-dasharray: 270px 270px;
  }
}

.cta-btn-line--outer {
  stroke-dasharray: 270px 270px;
  stroke-dashoffset: 0;
  animation: outer-dashoffset 6s infinite linear;
}

@keyframes inner-dashoffset {
  0% {
    stroke-dashoffset: 0;
    stroke-dasharray: 270px 270px;
  }
  50% {
    stroke-dasharray: 180px 360px;
  }
  100% {
    stroke-dashoffset: -540px;
    stroke-dasharray: 270px 270px;
  }
}

.cta-btn-line--inner {
  stroke-dashoffset: 0;
  stroke-dasharray: 270px 270px;
  animation: inner-dashoffset 5s infinite linear;
}

.cta-btn-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Solutions Section Styling */
.solutions-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

.solutions-logo-bar {
  margin-bottom: 60px;
}

.solutions-logo-bar p {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 30px;
  text-align: center;
}

.solutions-logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px 60px;
  opacity: 0.6;
}

.solutions-logo-grid img {
  height: 30px;
  width: auto;
  filter: grayscale(100%);
  transition: opacity 0.3s ease;
}

.solutions-logo-grid img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.solutions-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.solutions-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.solutions-icon-wrap {
  width: 50px;
  height: 50px;
  background: rgba(0, 110, 239, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: #006eef;
  font-size: 20px;
}

.solutions-card h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #0f172a;
}

.solutions-card p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.solutions-link {
  color: #006eef;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}

.solutions-link:hover {
  gap: 12px;
  color: #0056b3;
}

/* Global White Background Force */
body,
section,
.bg-light,
.solutions-section {
  background-color: #ffffff !important;
}

.solutions-card {
  border: 1px solid #e2e8f0 !important;
  /* Adding subtle border since background is now same as page */
}
/* Smooth Dropping Texts Animation (Hero Heading) */
.dropping-texts {
  display: block;
  position: relative;
  height: 1.2em;
  vertical-align: -0.25em;
  width: 100%;
  margin: 10px auto 0;
  overflow: hidden;
  text-align: center;
}

.dropping-texts > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  font-weight: 700;
  white-space: nowrap;
  background: linear-gradient(90deg, #fff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateY(-100%);
  filter: blur(8px);
}

.dropping-texts > div:nth-child(1) { animation: smoothRoll 8s infinite 0s; }
.dropping-texts > div:nth-child(2) { animation: smoothRoll 8s infinite 2s; }
.dropping-texts > div:nth-child(3) { animation: smoothRoll 8s infinite 4s; }
.dropping-texts > div:nth-child(4) { animation: smoothRoll 8s infinite 6s; }

@keyframes smoothRoll {
  0% { transform: translateY(-100%); opacity: 0; filter: blur(8px); }
  3% { transform: translateY(0); opacity: 1; filter: blur(0); }
  22% { transform: translateY(0); opacity: 1; filter: blur(0); }
  25% { transform: translateY(100%); opacity: 0; filter: blur(8px); }
  100% { transform: translateY(100%); opacity: 0; }
}

@media (max-width: 991px) {
  .dropping-texts {
    display: block;
    width: 100%;
    margin: 10px auto 0;
    text-align: center;
    height: 1.5em;
  }
}



/* 3D Marquee Animation (Enquiry Section) */
.marquee-box {
  display: flex;
  overflow: hidden;
  height: 100px;
  background: rgba(0, 110, 239, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-inner {
  flex: 1;
  height: 100px;
  line-height: 100px;
  font-size: 1.5rem;
  font-weight: 700;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.marquee-inner:first-child {
  background-color: #1a365d;
  color: #fff;
  transform-origin: right;
  transform: perspective(200px) rotateY(-15deg);
}

.marquee-inner:last-child {
  background-color: #006eef;
  color: #fff;
  transform-origin: left;
  transform: perspective(200px) rotateY(15deg);
}

.marquee-inner span {
  position: absolute;
  display: inline-block;
  animation: marquee-scroll 12s linear infinite;
  padding-left: 100%;
}

.marquee-inner:first-child span {
  animation-delay: 6s;
  left: -100%;
}

@keyframes marquee-scroll {
  from { left: 100%; }
  to { left: -100%; }
}

@media (max-width: 768px) {
  .marquee-inner {
    font-size: 1.1rem;
    height: 80px;
    line-height: 80px;
  }
  .marquee-box {
    height: 80px;
  }
}

/* How We Work Section Styles (Premium Dark Mode) */
.awards-recognition {
  background-color: #0b0f19 !important; /* Deep midnight black */
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.awards-recognition::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 110, 239, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.awards-recognition .container {
  position: relative;
  z-index: 2;
}

.uae-sol-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(56, 189, 248, 0.1);
  color: #38bdf8;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  border-radius: 50px;
  margin-bottom: 20px;
  text-transform: uppercase;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.uae-exp-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.uae-exp-lead-text {
  font-size: 1.15rem;
  color: #94a3b8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.work-process-img {
  max-width: 100%;
  height: auto;
  margin-top: 30px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 30px rgba(0, 110, 239, 0.15));
}

.work-process-img:hover {
  transform: scale(1.01);
}

@media (max-width: 768px) {
  .uae-exp-heading {
    font-size: 1.75rem;
  }
  .uae-exp-lead-text {
    font-size: 1rem;
  }
}

/* 3D Flip Cards (Solutions Section) */
.flip-card {
  background-color: transparent;
  width: 100%;
  height: 280px;
  perspective: 1200px;
  cursor: pointer;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.flip-card-front {
  background-color: #fff;
  border: 1px solid #f1f5f9;
  z-index: 2;
}

.flip-card-back {
  background: linear-gradient(135deg, #1a365d 0%, #006eef 100%);
  color: white;
  transform: rotateY(180deg);
  z-index: 1;
}

.flip-card-back p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

.flip-card-front h4 {
  font-weight: 700;
  color: #1a365d;
  margin-top: 15px;
}

.solutions-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(0, 110, 239, 0.1);
  color: #006eef;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

/* Wave Animation (Stats Bar) */
.wave-item {
    display: inline-block;
    animation: wave 2s ease-in-out infinite;
}

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

/* Scroll Reveal Animation (AI Section) */
.reveal-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.reveal-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Portfolio Heading Responsive Control */
@media (min-width: 992px) {
  .desktop-single-line {
    white-space: nowrap;
    max-width: none !important;
  }
}

@media (max-width: 991px) {
  .desktop-single-line {
    white-space: normal;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* AI Lead Text Desktop 3-Line Control */
@media (min-width: 1200px) {
  .desktop-three-lines {
    max-width: 950px !important;
    line-height: 1.6;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .desktop-three-lines {
    max-width: 850px !important;
  }
}

@media (max-width: 991px) {
  .desktop-three-lines {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Featured Review Card (Matching Flip Card Colors) */
.featured-review-card {
  background: linear-gradient(135deg, #1a365d 0%, #006eef 100%) !important;
  color: white !important;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 110, 239, 0.2) !important;
}

.featured-review-card .review-quote {
  color: rgba(255, 255, 255, 0.95) !important;
}

.featured-review-card .review-author-name {
  color: #ffffff !important;
}

.featured-review-card .review-company {
  color: rgba(255, 255, 255, 0.7) !important;
}

.featured-review-card .review-stars {
  color: #fbbf24 !important; /* Vibrant gold for contrast */
}

.featured-review-card img[alt="Clutch"] {
  filter: brightness(0) invert(1); /* Make Clutch logo white */
}

/* Featured Get Started Card (Blue Gradient) */
.featured-get-started-card {
  background: linear-gradient(135deg, #1a365d 0%, #006eef 100%) !important;
  color: white !important;
  border: none !important;
  box-shadow: 0 20px 40px rgba(0, 110, 239, 0.2) !important;
  transform: translateY(-10px);
  transition: all 0.3s ease !important;
}

.featured-get-started-card .process-step-title {
  color: #ffffff !important;
  font-size: 1.25rem;
}

.featured-get-started-card .process-step-desc {
  color: rgba(255, 255, 255, 0.85) !important;
}

.featured-get-started-card .process-step-num {
  background: #ffffff !important;
  color: #006eef !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.featured-get-started-card .process-step-icon-wrap {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.featured-get-started-card .process-step-icon {
  stroke: #ffffff !important;
}

/* AI Gallery Flip Cards */
.ai-flip-card {
  height: 260px;
  perspective: 1000px;
  cursor: pointer;
}

.ai-flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.ai-flip-card:hover .ai-flip-card-inner {
  transform: rotateY(180deg);
}

.ai-flip-card-front, .ai-flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 1.25rem;
  overflow: hidden;
}

.ai-flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ai-flip-card:hover .ai-flip-card-front img {
  transform: scale(1.1);
}

.ai-flip-card-back {
  transform: rotateY(180deg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  text-align: center;
  box-shadow: inset 0 0 100px rgba(0,0,0,0.5);
}

.ai-flip-title {
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.4;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Default Flipped State (First Solutions Card) */
.flip-card-default-back .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-default-back:hover .flip-card-inner {
  transform: rotateY(0deg);
}
