:root {
  --primary: #f58220;
  --primary-accent: #ff9a3c;
  --dark: #020617;
  --light: #fff7ed;
  --text: #111827;
  --muted: #6b7280;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

.pt-120 {
  padding-top: 126px !important;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text);
  background-color: #f4f6fb;
  background-image: radial-gradient(circle at 20% 20%,

      rgba(91, 110, 245, 0.12),

      transparent 33%),

    radial-gradient(circle at 80% 0%, rgba(122, 90, 248, 0.1), transparent 38%);
  line-height: 1.7;
  min-height: 100vh;
  scroll-padding-top: 110px;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.bg-primary-subtle {
  background-color: rgba(245, 130, 32, 0.12) !important;
}

a {
  text-decoration: none;
}

section {
  position: relative;
  z-index: 1;
}

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



.hero {
  min-height: 100vh;
  background: linear-gradient(125deg, #030303 0%, #161616 100%), url(../images/banner.webp) center / cover no-repeat;
  position: relative;
  padding-top: 6.5rem;
  padding-bottom: 3rem;
  overflow: hidden;
  display: flex;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right,
      rgba(255, 255, 255, 0.1),
      transparent 50%);
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(0);
  opacity: 0.35;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.6), transparent);
  animation: float 16s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.hero-shape-1 {
  width: 360px;
  height: 360px;
  top: -120px;
  right: 6%;
}

.hero-shape-2 {
  width: 240px;
  height: 240px;
  bottom: 80px;
  left: -60px;
  animation-duration: 20s;
}

.hero-shape-3 {
  width: 180px;
  height: 180px;
  top: 25%;
  left: 45%;
  animation-duration: 24s;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.pulse-dot {
  width: 10px;
  min-width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.8);
  animation: pulse 2s infinite;
}

.hero-list {
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.95rem;
}

.hero-list li svg,
.hero-list li i {
  color: #fed7aa;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.credibility-section {
  position: relative;
}

.metrics-banner {
  background: #000;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.metrics-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1483478550801-ceba5fe50e8e?auto=format&fit=crop&w=1600&q=80") center/cover;
  opacity: 0.15;
  pointer-events: none;
}

.metrics-banner>.container {
  position: relative;
  z-index: 2;
}

.metrics-card-wrapper {
  transform: translateY(-50%);
  margin-bottom: -3rem;
}



.metrics-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.metrics-card {
  background: linear-gradient(120deg, #ea580c, #f97316);
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  color: #fff;
  text-align: center;
  box-shadow: 0 20px 55px rgba(12, 21, 72, 0.35);
}

.metrics-card h3 {
  font-size: 2.75rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.counter-value {
  font-size: 2.75rem;
  font-weight: 600;
}

.metrics-card p {
  margin: 0;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.navbar {
  position: relative;
  z-index: 3;
  padding: 1.15rem 0;
}

.custom-navbar {
  transition: background 0.35s ease, box-shadow 0.35s ease,
    backdrop-filter 0.35s ease, border-color 0.35s ease;
  background: #fff;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.custom-navbar .navbar-brand,
.footer-card img {
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  max-width: 200px;
}

.custom-navbar .navbar-brand img {
  width: 100%;
}

.custom-navbar .nav-link {
  color: rgba(15, 23, 42, 0.82);
  font-weight: 500;
  position: relative;
  padding-bottom: 0.35rem;
  transition: color 0.3s ease;
}

.custom-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(120deg, var(--primary), var(--primary-accent));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link:focus {
  color: var(--primary);
}

.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link:focus::after {
  transform: scaleX(1);
}

.custom-navbar.scrolled {
  background: #fff;
  backdrop-filter: blur(14px);
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.18);
  border-color: rgba(15, 23, 42, 0.08);
}

.custom-navbar .navbar-toggler {
  border-radius: 999px;
  border-color: var(--primary);
  padding: 0.35rem 0.65rem;
  transition: background 0.3s ease, border-color 0.3s ease;
  border: 0;
}



.custom-navbar .navbar-toggler-icon {
  background-image: url("../images/navbar-toggler.svg");
}

.custom-navbar .navbar-toggler:focus {
  box-shadow: unset;
}

.custom-navbar .navbar-nav {
  gap: 0.75rem;
}


.hero-form {
  border-radius: 1.5rem;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 25px 70px rgba(10, 10, 45, 0.3);
}

.section-tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.feature-card,
.service-card {
  background: #fff;
  padding: 1.75rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(15, 19, 38, 0.05);
  box-shadow: 0 20px 60px rgba(15, 19, 38, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card {
  height: 100%;
}

.feature-card:hover,
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 70px rgba(15, 19, 38, 0.12);
}

.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
}

.icon-circle svg {
  width: 24px;
  height: 24px;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 2rem;
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  font-weight: 500;
  color: var(--text);
}

.service-list li svg,
.service-list li i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
}

.portfolio-section {
  background: radial-gradient(circle at top left,

      rgba(91, 110, 245, 0.08),

      transparent 50%),

    #f7f9ff
}

.portfolio-wrapper {
  /* background: #fff;
  border-radius: 1.5rem;
  padding: 3rem;
  border: 1px solid rgba(91, 110, 245, 0.08); */
  position: relative;
  overflow: visible;
}



.case-card {
  border-radius: 12px;
  border: 1px solid rgba(15, 19, 38, 0.08);
  background: linear-gradient(180deg, #ffffff, #f8faff);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.case-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 130, 32, 0.35);
}

.case-cover {
  overflow: hidden;
  height: 210px;
}

.case-cover img {
  width: 100%;
  height: 100%;
  aspect-ratio: 400 / 210;
  object-fit: cover;
  /* object-position: top; */
  transition: transform 0.35s ease;
}

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

.case-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.case-pill {
  display: inline-block !important;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(245, 130, 32, 0.12);
  color: var(--primary);
  width: fit-content;
}

.case-pill-shopify {
  background: rgba(16, 185, 129, 0.15);
  color: #0f9f6e;
}

.case-pill-wordpress {
  background: rgba(59, 130, 246, 0.15);
  color: #2563eb;
}

.case-title {
  margin: 0;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  flex: 1;
}

.case-tags span {
  display: inline-flex;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  background: #f1f3fb;
  color: #54607b;
}

.case-metric {
  font-weight: 600;
  color: #0f9f6e;
  background: rgba(16, 185, 129, 0.15);
}

.case-metric.info {
  color: #2563eb;
  background: rgba(37, 99, 235, 0.12);
}

.case-metric.warning {
  color: #c2410c;
  background: rgba(251, 146, 60, 0.2);
}

.case-metric.success {
  color: #15803d;
  background: rgba(34, 197, 94, 0.18);
}

.case-body p {
  margin-bottom: 0;
  color: #4b5576;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.case-meta {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding-top: 1.25rem;
  margin-top: auto;
  border-top: 1px solid rgba(15, 19, 38, 0.08);
  /* gap: 1rem; */
  flex-direction: column;
}

.case-link {
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s ease;
}

.case-link svg,
.case-link i {
  font-size: 0.85rem;
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
}

.case-link:hover {
  color: var(--primary-accent);
}

.testimonial-hero-card {

  border-radius: 1.75rem;
  overflow: hidden;

}


.testimonial-hero-left {

  position: relative;

}

.testimonial-hero-avatar {
  background: #f9fafb;
  padding: 0;
  height: 210px;
  border-radius: 20px 20px 0 0;
}

.testimonial-hero-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 1.5rem 1.5rem 0 0;
  object-fit: cover;
  background: #fff;
  object-position: top;

}

.testimonial-hero-left.col-lg-5 {
  padding: 0;
}

.testimonial-hero-rating {
  background: #a3e635;
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 1.15rem 1rem 1.2rem;
  text-align: center;
}

.rating-score {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #111827;
}

.rating-stars svg,
.rating-stars i {
  font-size: 1rem;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  color: #000;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.rating-stars svg path {
  width: 100%;
  height: 100%;
}

.testimonial-hero-card {
  margin: auto;
  position: relative;
}

#testimonials::before {
  content: "";
  position: absolute;
  background-image: url("../images/testimonital-pattern.webp");
  width: 100%;
  height: 700px;
  background-size: contain;
  right: 0;
  top: -21px;
  background-repeat: no-repeat;
  background-position: center;
}

.rating-meta {
  font-size: 0.8rem;
  font-weight: 500;
  color: #111827;
}

.testimonial-hero-right {
  position: relative;
  padding: 2.5rem 3rem 2.1rem;
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
}


.testimonial-hero-right.is-transitioning {
  opacity: 0;
  transform: translateY(10px);
}


.testimonial-hero-quote-mark {
  font-size: 3.2rem;
  color: rgba(245, 130, 32, 0.35);
  margin-bottom: 0.5rem;
}

.testimonial-hero-quote-mark svg {
  filter: invert(1) brightness(0);
}

.testimonial-hero-text {
  font-size: 0.98rem;
  color: #4b5563;
  /* max-width: 680px; */
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}


.testimonial-hero-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-hero-accent-bar {
  margin-top: 1.5rem;
  height: 4px;
  width: 80px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-accent));
}

.testimonial-hero-nav {
  display: flex;
  gap: 0.75rem;
}

.testimonial-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: grid;
  place-items: center;
  background: #ffffff;
  color: #6b7280;
  font-size: 0.9rem;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.testimonial-nav-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

.testimonial-nav-btn.active,
.testimonial-nav-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-accent));
  border-color: transparent;
  color: #ffffff;
}


.pricing-section {
  position: relative;
  background: #ffffff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background: #ffffff;
  padding: 2rem 1.9rem 2.2rem;
  border-radius: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid #e2e2e2;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.06);
  justify-content: space-between;

}

.pricing-card::after {
  content: "";
  position: absolute;
  width: 49px;
  height: 52px;
  background: #e2e2e2;
  bottom: 0;
  right: 0;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  border-radius: 0 0 27px 0
}

.pricing-card::before {
  content: "";
  position: absolute;
  background-image: url("../images/cross-shape.webp");
  width: 72px;
  height: 72px;
  right: 44px;
  top: 9%;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.3;

}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(15, 19, 38, 0.12);
  background: #0f0f11
}

.pricing-card:hover::before,
.pricing-card-featured::before {
  opacity: 1;
}

.pricing-card:hover .plan-features li,
.pricing-card:hover .pricing-card-price .amount,
.pricing-card:hover .pricing-card-price .duration,
.pricing-card:hover .plan-features svg,
.pricing-card:hover .plan-features i,
.pricing-card:hover .pricing-card-price .currency,
.pricing-card:hover .pricing-card-price .starts-from,
.pricing-card-featured .pricing-card-price .starts-from {
  color: #fff;
}

.pricing-card-featured {
  background: #0f0f11 linear-gradient(135deg, #431407, #020617);
  border: 1px solid rgba(248, 153, 64, 0.55);
}

.pricing-card-featured:hover {
  transform: translateY(-18px);
}

.pricing-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricing-card-header::after {
  content: "";
  position: absolute;
  background: #f2f8f9;
  width: 100%;
  height: 2px;
  left: 0;
  top: 32%;

}

.plan-label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  background: aliceblue;
  color: #000;
  padding: 4px 20px;
  border-radius: 11px;
  position: absolute;
  top: -16px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}



.plan-tag.muted-tag {
  opacity: 0.7;
}

.pricing-card-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.35rem;
}

.pricing-card-price .starts-from {
  display: block;
  width: 100%;
  font-size: 18px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0;
}

.pricing-card-price .currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  align-self: start;
  position: relative;
  top: 11px;
}

.pricing-card-price .amount {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--dark);
}

.pricing-card-price .duration {
  font-size: 0.95rem;
  color: var(--muted);
}

.pricing-card-featured .pricing-card-price .currency,
.pricing-card-featured .pricing-card-price .amount,
.pricing-card-featured .pricing-card-price .duration {
  color: #f9fafb;
}

.save-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  width: fit-content;
  background: var(--primary);
  z-index: 99;
  color: #fff;
}


.plan-features {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.9rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
}

.plan-features svg,
.plan-features i {
  color: var(--primary);
  font-size: 0.9rem;
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
}

.feature-indicator {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid rgba(148, 163, 184, 0.65);
  position: relative;
}

.feature-indicator::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: rgba(148, 163, 184, 0.5);
}

.pricing-card-featured .plan-features li {
  color: #e5e7eb;
}

.pricing-card-featured .plan-features svg,
.pricing-card-featured .plan-features i {
  color: #fed7aa;
}

.pricing-card-featured .feature-indicator {
  border-color: rgba(248, 153, 64, 0.75);
}

.pricing-card-featured .feature-indicator::after {
  background: rgba(248, 153, 64, 0.9);
}

.pricing-card-footer {
  margin-top: 1.25rem;
}

.cta-section {
  position: relative;
  background: #fff7ed;
}

.cta-inner {
  position: relative;

  /* box-shadow: 0 28px 80px rgba(15, 23, 42, 0.12); */
}

.cta-inner::before {
  content: "";
  position: absolute;
  /* inset: -40%; */

  pointer-events: none;
  background: linear-gradient(135deg,
      rgba(3, 3, 3, 0.9),
      rgba(245, 130, 32, 0.7)),
    url("../images/contact-cta-bg.jpg") center/cover no-repeat;
  width: 100%;
  height: 146px;
  bottom: -8%;
  top: unset;
  border-radius: 30px;
}

.pricing-section {
  background-image: url(../images/testimonital-pattern.webp);
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

}

.cta-section {
  background: #fff;
}

.cta-section p {
  max-width: 600px;
}

.cta-inner>.row {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-weight: 600;
}

.cta-info-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}


.cta-info-card {
  inset: 28px 40px 28px 40px;
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.4rem 1.6rem;
  display: flex;
  gap: 1.1rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
  margin: 16px 0 0px 0px;
  justify-content: space-around;
  max-width: 700px;
  width: 100%;
}

.cta-info-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.cta-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
}

.cta-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

.cta-info-card strong {
  display: block;
  color: var(--dark);
}

.cta-divider {
  height: 1px;
  background: linear-gradient(to right,
      rgba(148, 163, 184, 0.2),
      rgba(148, 163, 184, 0.6),
      rgba(148, 163, 184, 0.2));
}

.cta-form-card {
  position: relative;
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2.3rem 2.5rem;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.18);
  border: 1px solid rgba(15, 23, 42, 0.06);
  max-width: 550px;
  margin-left: auto;
}

.cta-input {
  background-color: #f9fafb;
  border-radius: 0.9rem;
  border-color: rgba(148, 163, 184, 0.6);
}

.cta-input:focus {
  background-color: #ffffff;
}

.cta-submit-btn {
  padding-inline: 2.6rem;
  font-size: 0.95rem;
}


footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: #fff;
}

.site-footer {
  background: #000;
  padding: 4rem 0 2rem;
}

.footer-cta {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.25rem;
  padding: 1.75rem 2rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid .footer-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(245, 130, 32, 0.2);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-contact li {
  color: #e3e3e3;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-contact svg,
.footer-contact i {
  color: var(--primary);
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: background 0.3s ease, color 0.3s ease;
}

.social-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

.social-link:hover {
  background: #fff;
  color: var(--primary);
}

.footer-newsletter .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.footer-newsletter .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.footer-links a:hover {
  color: #fff;
}

/* Animation system - Now using AOS library */

.btn {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  padding: 0.85rem 1.8rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.35), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:hover::after {
  opacity: 1;
}

.btn-lg {
  padding: 1rem 2.4rem;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary), var(--primary-accent));
  border: none;

}



.btn-glow {
  position: relative;
}

.btn-glow::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.btn-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-light::after,
.btn-outline-primary::after,
.btn-outline-success::after,
.btn-outline-dark::after {
  display: none;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: #fff;
  border-color: transparent;
}

.btn-outline-success {
  border-color: #16a34a;
  color: #16a34a;
}

.btn-outline-success:hover {
  background: #16a34a;
  color: #fff;
}

.btn-outline-dark {
  border-color: #1f1f2b;
  color: #1f1f2b;
}

.btn-outline-dark:hover {
  background: #1f1f2b;
  color: #fff;
}

.form-control,
.form-select {
  border-radius: 0.9rem;
  border: 1px solid rgba(15, 19, 38, 0.1);
  padding: 0.75rem 1rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(245, 130, 32, 0.25);
}


@keyframes float {

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

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.8);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(74, 222, 128, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

.theme-container {
  max-width: 1440px;
  width: 100%;
  margin: auto;
}

.hero .display-5 {
  font-size: 2.9rem;
}

.footer-grid img {
  filter: brightness(0) invert(1);
}

.portfolio-slider-wrapper {
  position: relative;
  padding: 0 50px;
  width: 100%;
  overflow: visible;
}

.portfolio-slider.swiper {
  position: relative;
  margin: 0;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.portfolio-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.portfolio-slide {
  height: auto;
  display: flex;
  padding: 0;
  box-sizing: border-box;
  flex-shrink: 0;
}

.portfolio-slide .case-card {
  height: 100%;
  width: 100%;
}

/* Swiper Navigation Buttons */
.portfolio-slider-wrapper .swiper-button-next,
.portfolio-slider-wrapper .swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  width: 36px;
  height: 36px;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  color: white !important;
  font-size: 15px;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 1 !important;
  visibility: visible !important;
  margin-top: 0;
}

.portfolio-slider-wrapper .swiper-button-next:after,
.portfolio-slider-wrapper .swiper-button-prev:after {
  display: none;
}

.portfolio-slider-wrapper .swiper-button-next svg,
.portfolio-slider-wrapper .swiper-button-next i,
.portfolio-slider-wrapper .swiper-button-prev svg,
.portfolio-slider-wrapper .swiper-button-prev i {
  color: white !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-size: 15px;
  width: 15px;
  height: 15px;
}

.portfolio-slider-wrapper .swiper-button-prev {
  left: 0px;
  position: absolute;
}

.portfolio-slider-wrapper .swiper-button-next {
  right: 0px;
  position: absolute;
}

.portfolio-slider-wrapper .swiper-button-next:hover,
.portfolio-slider-wrapper .swiper-button-prev:hover,
.portfolio-slider-wrapper .swiper-button-next:focus,
.portfolio-slider-wrapper .swiper-button-prev:focus {
  background: var(--primary-accent);
  opacity: 1 !important;
  visibility: visible !important;
  color: white !important;
  outline-offset: 2px;
}

.portfolio-slider-wrapper .swiper-button-next:hover svg,
.portfolio-slider-wrapper .swiper-button-next:hover i,
.portfolio-slider-wrapper .swiper-button-prev:hover svg,
.portfolio-slider-wrapper .swiper-button-prev:hover i,
.portfolio-slider-wrapper .swiper-button-next:focus svg,
.portfolio-slider-wrapper .swiper-button-next:focus i,
.portfolio-slider-wrapper .swiper-button-prev:focus svg,
.portfolio-slider-wrapper .swiper-button-prev:focus i {
  color: white !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Swiper Pagination */
.portfolio-slider-wrapper .swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 30px;
  text-align: center;
}

.portfolio-slider-wrapper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  opacity: 1;
  margin: 0 2px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.portfolio-slider-wrapper .swiper-pagination-bullet:hover,
.portfolio-slider-wrapper .swiper-pagination-bullet-active {
  background: var(--primary);
  border-radius: 6px;
}

.portfolio-wrapper .portfolio-slider {
  margin-bottom: 0px;
}

.thank-u-page .icon-circle svg {
  width: 50px;
  height: 50px;
}

/* Thank You Page Styles */
.thank-you-hero {
  min-height: 100vh;
}

.thank-you-content-row {
  min-height: 80vh;
}

.thank-you-icon-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(245, 130, 32, 0.3);
}

.thank-you-lead-text {
  font-size: 1.25rem;
  line-height: 1.8;
}

.thank-you-feature-icon {
  color: #fed7aa;
}

.thank-you-check-icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
  color: #f58220;
}

.thank-you-btn-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.thank-you-footer-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
}

.thank-you-footer-icon-inline {
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 1540px) {
  .theme-container {
    max-width: 1320px;
  }

  .pricing-card-header::after {
    display: none;
  }

  .case-cover {
    height: 185px;
  }

  .pricing-card {
    gap: 0;
  }
}

@media (max-width: 1399px) {
  .theme-container {
    max-width: 1199px;
  }

  .hero .display-5 {
    font-size: 2.6rem;
  }

  .hero {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .cta-inner::before {
    height: 130px;
    bottom: -5%;
  }

  .case-cover {
    height: 166px;
  }

  .thank-you-icon-circle {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 1200px) and (min-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 960px;
  }
}

@media (max-width: 1200px) {
  .hero-shape-1 {
    width: 260px;
    height: 260px;
    top: -80px;
    right: -10%;
  }

  .hero-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 40px;
    left: -80px;
  }

  .hero-shape-3 {
    display: none;
  }

  .hero .display-5 {
    font-size: 2.4rem;
  }

  .theme-container {
    max-width: 1000px;
  }

  .custom-navbar .navbar-brand,
  .footer-card img {
    max-width: 150px;
  }
}

@media (max-width: 991px) {
  .theme-container {
    max-width: 100%;
    padding: 0 30px;
  }

  .hero {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero .hero-list {
    align-items: center;
  }

  .hero .d-flex {
    justify-content: center;
  }

  .hero-form {
    margin-top: 0;
  }

  .metrics-card-wrapper {
    transform: none;
    margin-bottom: 2rem;
  }

  .cta-inner {
    padding: 0;
  }

  .cta-info-wrapper {
    margin-top: 1.75rem;
  }

  .cta-info-card {
    margin: 32px 0 0 0;
  }

  .cta-form-card {
    margin-left: 0;
    max-width: 100%;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .testimonial-hero-card {
    flex-direction: column;
    align-items: stretch;
  }

  .testimonial-hero-left,
  .testimonial-hero-right {
    max-width: 100%;
  }

  .testimonial-hero-left {
    display: block;
  }

  .custom-navbar .navbar-collapse {
    background: rgba(255, 247, 237, 0.98);
    border-radius: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 1.25rem;
    margin-top: 1rem;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.18);
  }

  .custom-navbar .navbar-nav {
    width: 100%;
  }

  .custom-navbar .nav-link {
    width: 100%;
  }

  .custom-navbar .btn {
    width: 100%;
  }

  .custom-navbar .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .site-footer .footer-cta {
    text-align: center;
  }

  .site-footer .footer-cta .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .cta-inner::before {
    display: none;
  }

  .hero-form form {
    text-align: left;
  }

  .testimonial-hero-card {
    gap: 20px;
  }

  .hero-list li {
    text-align: left;
  }

  .portfolio-slider-wrapper {
    max-width: 80%;
    margin: auto;
  }

  .case-cover {
    height: 210px;
  }

  .iti--allow-dropdown.iti--show-flags {
    width: 100%;
  }
}

@media (max-width: 768px) {
  section.py-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .testimonial-hero-right {
    padding: 2rem 1.5rem 1.8rem;
  }

  .portfolio-wrapper {
    padding: 1rem;
  }

  .hero .display-5 {
    font-size: 2.05rem;
  }

  .hero-pill {
    font-size: 0.78rem;
  }



  .cta-info-wrapper {
    max-width: 100%;
  }

  .cta-info-card {
    margin: 10px 0 0 0;
    flex-direction: column;
  }

  .cta-form-card {
    padding: 1.8rem 1.5rem;
  }

  #testimonials::before {
    height: 500px;
  }

  .portfolio-slider,
  .portfolio-slide {
    padding: 0 0px;
  }

  .portfolio-wrapper {
    padding-bottom: 0;
  }

  .portfolio-slider-wrapper .swiper-button-next,
  .portfolio-slider-wrapper .swiper-button-prev {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .case-title {
    display: block;
  }

  .hero-shape {
    animation: none;
  }

  .pulse-dot {
    animation: none;
  }

  .metrics-card h3 {
    font-size: 2rem;
  }

  .portfolio-slider-wrapper {
    max-width: 100%;
  }

}

@media (max-width: 576px) {
  .hero {
    padding-bottom: 2rem;
  }

  .hero .display-5 {
    font-size: 2.25rem;
  }

  .feature-card,
  .service-card,
  .pricing-card {
    padding: 1.5rem;
  }

  .hero .display-5 {
    font-size: 1.9rem;
  }

  .hero .lead {
    font-size: 0.98rem;
  }

  .hero .d-flex {
    flex-direction: column;
  }



  .cta-form-card {
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
  }

  .site-footer {
    padding-top: 3rem;
  }

  .footer-cta {
    padding-inline: 1.25rem;
  }

  .theme-container {
    padding: 0 15px;
  }

  .portfolio-slider-wrapper {
    padding: 0 0px;
  }

  .portfolio-slider .swiper-wrapper {
    align-items: flex-start;
  }

  .portfolio-slide .case-card {
    height: auto !important;
  }

  .case-body {
    flex: unset;
    height: auto;
  }

  .case-meta {
    align-items: self-start;
    flex-direction: column;
    gap: 0;
  }

  .thank-you-btn a {
    width: 90%;
    margin: auto;
  }

}

@media(max-width: 480px) {
  .case-cover img {
    object-fit: contain;
  }
}

.error {
  color: rgb(170, 45, 45);
}

/* .form:has( .error+span.text-danger) .error+span.text-danger
{
  display: none;
} */
.error:has(+span.text-danger) {
  display: none;
}

.loader {
  position: relative;
}

.loader::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 3px dashed orange;
  right: 8px;
  top: 50%;
  translate: 0 -50%;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}



.btn-load {
  position: relative;
}

.btn-load::before {
  content: "";
  height: 20px;
  width: 20px;
  border: 2px dashed white;
  border-radius: 50%;
  position: absolute;
  right: 20px;
  top: 50%;
  translate: 0 -50%;
  animation: spin 2s linear infinite;

}


.phone-input-wrap .iti--allow-dropdown .iti__flag-container {
  height: 50px;
}

.col-md-6:has(.text-danger) div.error {
  display: none;
}

.iti--show-selected-dial-code.iti--show-flags .iti__selected-dial-code {
  color: #000000bd;
}
.iti--show-selected-dial-code .iti__selected-flag {
  border-radius: 10px 0 0 10px;
}