:root {
  /* === FONT FAMILIES === */
  --font-unbound: "Outfit", sans-serif;
  --font-serif: "Poppins", sans-serif;
  --font-unbound: "Unbounded", sans-serif;
  --font-outfit: "Outfit", sans-serif;

  /* === FONT WEIGHTS === */
  --weight-light: 300;
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
}



/* FULL SCREEN LOADER */



.no-preloader #preloader {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
.resize-only img,
.resize-only video {
  width: 100%;
  height: 400px;
  border: 1px solid #000;
}
.our-portfolio {
    padding-bottom: 150px;
}
.about-title .unbound-subtitle {
  color: #000;
  font-size: 60px;
}

.office-mock img {
  width: 100% !important;
  height: 100% !important;
  padding-left:20px;
}

.team-title {
  font-size: 20px;
  padding-top: 10px;
}

.team-designation {
  font-size: 14px;
  font-weight: 400;
}
.row.space-team {
  row-gap: 10px;
}
.about-parallax .parallax-bg {
  background: url(../images/office-mock-gtv.png);
      background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}
p {
  font-family: "Outfit" !important;
}
.darkmode--activated {
  --color-bg: #000;
  --color-text: #fff;
  /* override other vars for dark mode */
}

.page-template-custom-page-home-php {
  background: #fff !important;
}

.elementor-top-section {
  background: #fff !important;
}

body {
  font-family: var(--font-unbound);
  font-weight: var(--weight-regular);
  background-color: #fff;
}

.each-suburb p {
  position: relative;
  top: 50px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-unbound);
  font-weight: var(--weight-semibold);
}

p {
  font-family: var(--font-serif);
  font-weight: var(--weight-regular);
}

.font-unbound {
  font-family: var(--font-unbound);
}
/* Font families */
.font-display {
  font-family: var(--font-unbound);
}

.font-outfit {
  font-family: var(--font-outfit);
}

.font-serif {
  font-family: var(--font-serif);
}

/* Font weights */
.fw-light {
  font-weight: var(--weight-light);
}

.fw-regular {
  font-weight: var(--weight-regular);
}

.fw-medium {
  font-weight: var(--weight-medium);
}

.fw-semibold {
  font-weight: var(--weight-semibold);
}

.fw-bold {
  font-weight: var(--weight-bold);
}

html,
body {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

/* ---------- Mega dropdown (desktop) ---------- */
.mega-dropdown {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 18px);
  min-width: 820px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  padding: 28px;
  display: none;
  z-index: 1200;
  overflow: hidden;
}

/* container layout inside mega */
.mega-dropdown .container-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 300px;
  gap: 20px;
  align-items: center;
}

/* left/right columns */
.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.services-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 6px;
}

.services-list li a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
}

/* bright green circular icon (replace inner with your icons if needed) */
.services-list .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #c7ff00;
  /* bright green */
  display: inline-block;
  box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.06);
}

/* right card */
.dropdown-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(90deg, #c7ff00, #b8f800);
  border-radius: 18px;
  padding: 22px;
  min-height: 140px;
}

.card-target {
  width: 88px;
  height: 88px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-target .bullseye {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  box-shadow: inset 0 -4px 6px rgba(0, 0, 0, 0.08);
}

.card-text {
  font-size: 16px;
  font-weight: 600;
  color: #0b0b0b;
}

.card-text p {
  margin: 0;
  line-height: 1.1;
}

.card-arrow {
  display: inline-block;
  margin-top: 8px;
  font-size: 18px;
  text-decoration: none;
  color: #000;
}

/* show/hide behavior */
.has-dropdown:hover > .mega-dropdown,
.has-dropdown:focus-within > .mega-dropdown {
  display: block;
  animation: dropdown-fade 0.16s ease-out;
}

@keyframes dropdown-fade {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ensure parent li is position:relative for absolute dropdown */
.main-menu-list > li.has-dropdown {
  position: relative;
}

/* -------- Mobile dropdown (hamburger) ---------- */
.mobile-menu {
  display: none;
  /* your existing toggle will flip this */
  background: #fff;
  padding: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-item {
  margin-bottom: 8px;
}

.mobile-item a {
  display: block;
  padding: 12px 8px;
  text-decoration: none;
  color: #222;
}

/* mobile accordion for marketing solutions */
.mobile-has-dropdown .mobile-dropdown-panel {
  display: none;
  padding-left: 6px;
  border-left: 2px solid rgba(0, 0, 0, 0.04);
  margin-top: 8px;
}

.mobile-has-dropdown.open .mobile-dropdown-panel {
  display: block;
}

.mobile-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-services-list li a {
  padding: 10px 8px;
  display: block;
}

/* toggle button look */
.mobile-dropdown-toggle {
  width: 100%;
  padding: 12px 8px;
  font-size: 16px;
  background: transparent;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #222;
}

.chev {
  opacity: 0.7;
}

/* small screens tweaks */
@media (max-width: 991px) {
  .mobile-menu {
    display: block;
  }

  .menu-wrapper.d-none.d-lg-block {
    display: none !important;
  }

  .prim-btn-wrap.d-none.d-lg-block {
    display: none !important;
  }
}

/* accessibility focus styles */
.dropdown-toggle:focus + .mega-dropdown,
.dropdown-toggle:focus {
  outline: 3px solid rgba(199, 255, 0, 0.25);
  outline-offset: 3px;
}

ul.main-menu li {
  font-size: 18px;
  list-style: none;
  text-transform: uppercase;
}

.btn-wrap {
  position: relative;
  display: inline-block;
}

.main-btn {
  border-radius: 50px;
  padding: 8px 30px;
  text-transform: uppercase;
  font-size: 16px;
  background: #b2ea00;
  border-color: #b2ea00;
  color: #000;
  border-width: 2px;
}

.main-btn:hover {
  color: #fff;
  background: transparent;
  border-color: #b2ea00;
}

.section-space {
  padding-top: 5%;
  padding-bottom: 5%;
}

.section-space-hero {
  padding-top: 0%;
}

span.playfair {
  font-style: italic;
}

.meta-header {
  display: none;
}

.banner-heading {
  font-size: 54px;
}

span.img-bw {
  padding-right: 10px;
}

section.hero-banner .row {
  height: 80vh;
  align-items: center;
}

.design-banner-wrap img {
  border: 1px solid #a1d645;
  padding: 10px 50px;
  border-radius: 50px;
}

.left-img-wrapper .img-bind,
.right-img-wrapper .img-bind {
  position: relative;
  height: 600px;
}

img.laptop-tab {
  width: 100%;
  position: absolute;
  z-index: 111;
  left: 0;
  bottom: 15%;
}

img.ball {
  position: absolute;
  width: 30%;
  bottom: 0;
  right: 0;
  top: 55%;
  left: 40%;
}

img.cubic {
  position: absolute;
  left: 0;
  width: 30%;
  top: 0;
}

img.tab-laptop {
  position: absolute;
  width: 120%;
  top: 0;
  right: 0;
}

img.ring {
  position: absolute;
  width: 25%;
  right: 0;
}

img.arrow {
  position: absolute;
  width: 25%;
  top: 35%;
  left: 15%;
}

/* ===== video-expand-section (3-col) ===== */
.video-expand-section {
  position: relative;
  background: #fff;
  padding-top: 12px;
  padding-bottom: 120px;
  height: 100vh;
  overflow: visible !important;
}

/* make the row tight to hero */
.video-expand-section .row {
  margin: 0;
  overflow: visible !important;
}

/* left column */
.left-col {
  padding: 18px 48px;
}

.left-info {
  color: #000;
  font-family: var(--font-serif);
}

.left-info .dot {
  height: 8px;
  width: 8px;
  background-color: #9eff00;
  /* green or any color */
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  50%,
  100% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

/* right column */
.right-col {
  padding: 18px 48px;
}

.video-expand-section .container-fluid {
  overflow: visible !important;
  max-width: 100% !important;
  padding: 0 !important;
}

.right-buttons ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 14px;
}

.circle-btn {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #b2ea00;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

/* center / video */
.center-col {
  padding: 8px 20px;
  overflow: visible !important;
}

.middle-video-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.middle-video {
  width: 720px;
  height: 420px;
  border-radius: 999px;
  overflow: hidden;
  transform-origin: center center;
  transition: all 0.3s ease;
}

.middle-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  border-radius: 23.5px;
  overflow: hidden;
  text-decoration: none;
  background: #b2ea00;
  border: 2px solid #b2ea00 !important;
}

.button__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 45px;
  border-radius: 22.5px;
  background: #b2ea00;
}

a.button:hover .button__text {
  color: #0a0a0a;
}

.button__text {
  position: relative;
  z-index: 2;
  font-weight: 400;
  font-size: 14px;
  color: #0a0a0a;
  transition: 300ms ease;
}

.button__spotlight {
  position: absolute;
  z-index: 1;
  height: 10px;
  width: 10px;
  opacity: 1;
  border-radius: 50%;
  background: #fff;
  inset: 0;
  top: 50%;
  transform: scale(0);
}

.left-info p {
  margin: 0;
}

section.who-we-are {
  z-index: 11111111;
  position: relative;
}

/* container must be position:relative so absolute fill aligns */
.who-wrap {
  position: relative;
}

.who-heading {
  position: relative;
  display: inline-block;
  margin: 0;
  font-weight: 800;
  line-height: 0.95;
  font-size: clamp(72px, 10vw, 180px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.who-text-base,
.who-text-fill,
.who-fill-inner {
  display: block;
  white-space: pre-line;
  line-height: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.who-text-base {
  color: #000;
  z-index: 1;
  position: relative;
}

.who-text-fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  /* safe fallback */
  /* start fully hidden (clip everything on the right) */
  clip-path: inset(0% 100% 0% 0%);
  -webkit-clip-path: inset(0% 100% 0% 0%);
}

.who-fill-inner {
  color: #b2ea00;
  -webkit-font-smoothing: antialiased;
  backface-visibility: hidden;
}

/* paragraph under heading */
.who-wrap p {
  font-size: 28px;
  font-family: "Poppins", system-ui, sans-serif;
  color: #fff;
  margin-top: 28px;
}

.main-info p {
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
}

.right-heading-wraps {
  text-align: start;
}

.right-heading-wraps h3 {
  color: #b2ea00;
  font-size: 54px;
  font-weight: 600;
  margin-top: -10px;
}
.service-wrapper span.button__wrapper {
  width: 160px !important;
  height: 34px !important;
}
.right-heading-wraps h2 {
  color: #000;
  font-size: 38px;
}

/* Zig-zag section */
.zig-zag {
  /* keep your .section-space spacing, this only styles inside */
  position: relative;
}

/* Card base */
.zig-card {
  background: #0e0e0e;
  border-radius: 28px;
  padding: clamp(28px, 4vw, 64px);
  min-height: clamp(220px, 24vw, 380px);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* keeps title anchored bottom */
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  /* keep clean */
}

/* The green big 50+ top-left */
.zig-count {
  position: absolute;
  top: clamp(18px, 3.5vw, 40px);
  left: clamp(18px, 3.5vw, 40px);
  font-weight: 700;
  color: #b2ea00;
  /* neon green from your example */
  line-height: 0.9;
  /* responsive sizing */
  font-size: clamp(56px, 10vw, 160px);
  letter-spacing: -1px;
  transform-origin: left top;
  z-index: 2;
}

/* plus sign styling so it sits nicely with 50 */
.zig-count .plus {
  font-size: 0.45em;
  vertical-align: super;
  margin-left: 6px;
  display: inline-block;
}

/* Title bottom-right */
.zig-title {
  position: absolute;
  right: clamp(20px, 3.5vw, 40px);
  bottom: clamp(18px, 3.5vw, 36px);
  color: #ffffff;
  font-weight: 700;
  text-align: right;
  text-transform: uppercase;
  line-height: 1;
  font-size: clamp(18px, 2.5vw, 40px);
  z-index: 2;
}

/* Right column shift (creates the zig-zag). Increase/decrease value to match screenshot */
.zig-offset {
  margin-top: 72px;
}

span.who-text-base.industry {
  font-weight: 900;
  line-height: 0.8em;
}

.industry-wrapper p {
  font-size: 38px;
}

.each-box {
  position: relative;
  top: 0;
  margin-bottom: 80px;
  padding: 30px;
  border-radius: 22px;
  transform-origin: top center;
  will-change: transform;
  max-width: 500px !important;
  margin: 0 auto !important;
  margin-bottom: 20px;
}

.each-bottom h2 {
  font-weight: 800;
  font-size: 3em;
  color: #b2ea00 !important;
}

.each-bottom p {
  font-size: 18px;
  color: #fff !important;
}

.each-wrap {
  display: flex;
  flex-direction: column;
  min-height: 400px;
}

.industry-stack {
  position: relative;
  padding-bottom: 800px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gsap-pin-spacer {
  pointer-events: none;
  position: relative !important;
}

.gsap-pin-spacer > .each-box {
  position: relative !important;
  z-index: inherit !important;
}

.each-box.box-1 {
  background: #000;
  z-index: 1;
}

.each-box.box-2 {
  background: #1a1a1a;
  z-index: 2;
}

.each-box.box-3 {
  background: #333333;
  z-index: 3;
}

.each-box.box-4 {
  background: #4d4d4d;
  z-index: 4;
}

.each-box.box-5 {
  background: #666666;
  z-index: 5;
}

.each-box .row {
  align-items: center;
}

.each-suburb p {
  font-size: 8em;
  font-weight: 900;
}

.each-title h2 {
  font-size: 38px;
}

.each-desc p {
  font-size: 16px;
}

.each-points h3 {
  font-size: 18px;
}

.each-points p {
  font-size: 26px;
  font-weight: 700;
}

.each-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
}

.serivices-slide-text-wrap {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex: none;
  align-items: center;
  display: flex;
}

.services-slide-text-box {
  flex: none;
  padding: 0.5rem;
}

.service-slide-dot {
  background-color: #000;
  border-radius: 100%;
  flex: none;
  width: 0.5rem;
  height: 0.5rem;
}

.text-animate {
  animation: servicesslide 20s infinite linear;
}

.services-slide-text {
  font-family: var(--font-unbound);
  letter-spacing: 0.03rem;
  font-size: 10em;
  font-weight: 700;
  line-height: 0.8em;
  color: #f1f1f1;
}

.services-slide-content-block {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  display: flex;
}

section.slide-section {
  background: #000 !important;
}

.text-animatetwo {
  animation: servicesslide 20s infinite linear;
  animation-direction: reverse;
}

.laptop-tab,
.tab-laptop {
  /* Enable 3D transforms and smooth GPU acceleration */
  transform-style: preserve-3d;
  will-change: transform;
  /* Optional: smooth transition fallback */
  transition: transform 0.3s ease-out;

  /* Start the floating animation */
  animation: floatUpDown 4s ease-in-out infinite;
}

/* Keyframes for gentle up-and-down motion */
@keyframes floatUpDown {
  0% {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0)
      rotateZ(0);
  }

  50% {
    transform: translate3d(0, -10px, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0)
      rotateZ(0);
  }

  100% {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0)
      rotateZ(0);
  }
}

@keyframes servicesslide {
  0% {
    transform: translateX(calc(0% + 50px));
  }

  100% {
    transform: translateX(-100%);
  }
}

.carousel-wrapper {
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
  padding-top: 3%;
  padding-bottom: 3%;
}

.carousel {
  display: flex;
  gap: 20px;
}

.carousel img {
  height: 350px;
  object-fit: contain;
  border-radius: 8px;
}

.carousel-two {
  display: flex;
  gap: 20px;
}

.carousel-two img {
  height: 350px;
  object-fit: contain;
  border-radius: 8px;
}

/* ---------- FORM CARD (dark rounded) ---------- */
.form-card {
  max-width: 1100px;
  background: #000;
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55), 0 6px 12px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

/* left / right columns */
.left-card {
  background: transparent;
  color: #fff;
  min-height: 100%;
}

.right-card {
  background: transparent;
  color: #fff;
}

/* small badge */
.badge-small {
  display: inline-block;
  border: 1px solid rgba(90, 230, 140, 0.15);
  color: #6fe6a5;
  padding: 6px 12px;
  border-radius: 22px;
  font-size: 0.85rem;
  margin-bottom: 18px;
  font-family: var(--font-unbound);
}

/* title */
.form-title {
  font-size: 30px;
  line-height: 1.05;
  margin: 0 0 18px;
  font-family: var(--font-unbound);
  font-weight: 700;
  color: #fff;
}

.form-title .playfair.highlight {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 44px;
  color: #ffffff;
}

.at-no-cost {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  color: #f4f1ee;
  font-size: 20px;
  margin-top: 6px;
}

/* benefits */
.form-benefits li {
  opacity: 0.95;
  margin-bottom: 10px;
  font-family: var(--font-unbound);
  font-size: 15px;
}

/* profile */
.profile-img {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
}

.profile-name {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 2px;
}

.profile-role {
  font-size: 13px;
  opacity: 0.75;
}

/* contact small link */
.book-call {
  display: inline-block;
  margin-top: 6px;
  color: #afe600;
  text-decoration: none;
  font-weight: 600;
}

/* FORM fields (dark) */
.form-label {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}

.form-control.dark {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #fff;
  padding: 14px 16px;
  border-radius: 10px;
  color: #e7e7e7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.form-control.dark::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

form.contact-form {
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 20px;
}

/* budget grid */
.budget-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.budget-btn {
  background: transparent;
  border: 1px solid #fff;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s ease;
}

.budget-btn:hover {
  transform: translateY(-3px);
}

.budget-btn.active {
  background: #b2ea00;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(124, 58, 237, 0.28);
}

/* textarea */
textarea.textarea {
  resize: vertical;
  min-height: 110px;
}

/* CTA */
.btn-cta {
  background: linear-gradient(90deg, #7c3aed 0%, #8b5cf6 100%);
  border: none;
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.18);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-cta .arrow {
  font-size: 18px;
  margin-left: 6px;
}

.guranted-c-block {
  border: 0.0625rem solid gray;
  background-color: var(--success--50);
  border-radius: 4.375rem;
  margin-top: 30px;
  padding: 1rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 3rem -0.75rem #0f172a1a;
}

.guranted-text-block.g-animate {
  flex-flow: row;
}

.g-animate {
  animation: gtext 30s infinite linear;
}

.guranted-text-block {
  grid-column-gap: 0.3125rem;
  grid-row-gap: 0.3125rem;
  display: flex;
}

@keyframes gtext {
  0% {
    transform: translateX(calc(0% + 50px));
  }

  100% {
    transform: translateX(-100%);
  }
}

.guranted-text-of {
  color: #fff;
  letter-spacing: 0.03rem;
  text-transform: capitalize;
  white-space: nowrap;
  word-break: normal;
  flex: none;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 150%;
}

.g-right-shade.is-contant-cta {
  background-image: linear-gradient(90deg, #d8ff84 42%, #fbfaf600);
  max-width: 30rem;
}

.g-right-shade {
  background-image: linear-gradient(90deg, #d8ff84 18%, #fbfaf600);
  width: 100%;
  max-width: 15rem;
  height: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.g-right-shade.is-right.is-contact-cta {
  max-width: 30rem;
}

.g-right-shade.is-right {
  background-image: linear-gradient(270deg, #d8ff84 18%, #fbfaf600);
  inset: 0% 0% 0% auto;
}

.g-right-shade {
  background-image: linear-gradient(90deg, #d8ff84 18%, #fbfaf600);
  width: 100%;
  max-width: 15rem;
  height: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.cta-orgonizer-image-block.is-absulute {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.125rem;
}

.cta-orgonizer-image-block {
  max-width: 11.5625rem;
}

.cta-orgonizer-image-block.is-absulute {
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1.125rem;
}

.cta-orgonizer-image-block {
  max-width: 11.5625rem;
}

.cta-orgonizer-image-block.is-absulute IMG {
  max-width: 170px;
}

section.main-form {
  background: #fff !important;
}

/* Subscribe / follow section */
.subscribe-section {
  background: #000;
  /* light background like screenshot */
  padding: 48px 0 70px;
  font-family: var(--font-unbound, "Poppins"), system-ui, sans-serif;
  color: #fff;
  margin-top: -10px;
}

/* centered paragraph */
.subscribe-copy {
  max-width: 820px;
  margin: 0 auto 22px;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
  color: #fff;
  font-weight: 600;
}

.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}

.social-pill {
  background: #efefef;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.2s ease;
  color: #111;
}

.social-pill i {
  font-size: 18px;
}

.social-pill:hover {
  background: #e2e2e2;
  transform: translateY(-4px);
}

/* subscribe form row */
.subscribe-form {
  margin-top: 6px;
}

.input-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* input with icon */
.input-with-icon {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 10px 12px;
  border-radius: 10px;
  min-width: 360px;
  flex: 1 1 360px;
  box-shadow: none;
}

.mail-icon {
  margin-right: 10px;
  stroke: #bdbdbd;
  opacity: 0.95;
}

/* email input */
.subscribe-input {
  border: none;
  outline: none;
  font-size: 15px;
  padding: 8px 6px;
  width: 100%;
  font-family: inherit;
  color: #333;
}

/* subscribe button (purple gradient) */
.subscribe-btn {
  background: linear-gradient(90deg, #7c3aed 0%, #8b5cf6 100%);
  border: none;
  color: #fff;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 10px;
  min-width: 160px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.18);
}

.subscribe-btn .arrow {
  font-size: 18px;
  margin-left: 4px;
}

/* a11y: visually-hidden label utility */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* container & section (unchanged) */
.hoverable-items {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 60px;
  position: relative;
  z-index: 111;
}

section.hoverable-counter {
  background: url(../images/bg-hoverable.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* base: ensure flex row */
.hoverable-wrapper .row {
  display: flex;
  flex-wrap: nowrap;
  /* prevent wrapping when one grows */
  gap: 24px;
  /* optional spacing */
}

/* each column */
.hoverable-wrapper .col-lg-3 {
  box-sizing: border-box;
  flex: 0 0 25%;
  max-width: 25%;
  min-width: 0;
  /* IMPORTANT: allow content to shrink inside flex */
  transition: flex-basis 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    max-width 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: visible;
}

/* Inner content wrapper (target this to fade/hide visual content) */
.hoverable-wrapper .col-lg-3 > * {
  transition: opacity 0.28s ease, transform 0.28s ease;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  /* keep interactive */
}

/* baseline when wrapper is hovered: make all columns slightly smaller */
.hoverable-wrapper:hover .col-lg-3 {
  flex-basis: 20%;
  max-width: 20%;
}

/* hovered column grows (overrides baseline) */
.hoverable-wrapper .col-lg-3:hover {
  flex: 0 0 40%;
  max-width: 40%;
  z-index: 2;
}

/* NON-HOVERED columns while cursor is inside the wrapper:
   - visually fade & slightly shift content
   - DO NOT remove pointer events from the column itself
*/
.hoverable-wrapper:hover .col-lg-3:not(:hover) > * {
  opacity: 0;
  /* visual hide only */
  transform: translateY(6px) scale(0.995);
  /* keep pointer-events on column so you can move to another column immediately */
}

/* hovered column content fully visible */
.hoverable-wrapper .col-lg-3:hover > * {
  opacity: 1;
  transform: none;
}

/* when not hovering wrapper, reset everything */
.hoverable-wrapper:not(:hover) .col-lg-3 > * {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.hoverable-items h2 {
  font-size: 8em;
  font-weight: 900;
  color: #fff;
}

.step-content h2 {
  font-size: 22px;
}

.step-content p {
  color: #adadad;
  font-family: "Poppins";
}

.hoverable-items:before {
  content: "";
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  transition: 0.3s ease-in-out;
}

.hoverable-items:hover:before {
  opacity: 0.2;
}

.side-space {
  padding-left: 80px;
  padding-right: 80px;
}

section.our-services-sec.section-space {
  position: relative;
  padding-left: 80px;
  padding-right: 80px;
  padding-bottom: 0;
}
.services-header {
  position: relative;
  z-index: 10;
  align-items: center;
}
.service-boxes-wrapper {
  padding-top: 2%;
}

.service-stack {
  position: relative;
  padding-bottom: 40vh;
}

/* cards stay NORMAL */
.service-boxes {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  margin-bottom: 20px;
}

.service-boxes a {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 80vh;
  text-decoration: none;
  color: #000;
}

.below-handle h2 {
  font-size: 30px;
  color: #b2ea00;
}

.below-handle p {
  color: #fff;
  width: 40%;
}

::marker {
  font-size: 0;
}

/* Row 1 */

/*Footer CSS*/

/* FOOTER WITH VIDEO GLOBE */
.footer-with-globe {
  position: relative;
  color: #eee;
  font-family: var(--font-unbound, "Poppins"), system-ui, sans-serif;
  overflow: visible;
  background: #000;
}

/* video container */
.footer-video-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  /* video visible height - adjust as needed */
  z-index: 0;
  overflow: hidden;
}

.footer-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 8, 15, 0.15) 30%,
    rgba(6, 8, 15, 0.88) 70%
  );
  /* subtle darken */
  z-index: 1;
}

/* content sits on top of video */
.footer-content {
  position: relative;
  z-index: 2;
  padding-top: 300px;
  /* pushes content down so pills sit on globe */
  padding-bottom: 48px;
  color: #e7e7e7;
}

/* LOCATION PILL GRID */
.location-pills {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 28px;
}

.pills-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1040px;
  width: 100%;
  justify-items: center;
}

.pill {
  background: rgba(34, 122, 173, 0.14);
  /* blue translucent */
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px 14px;
  min-width: 180px;
  text-align: center;
  backdrop-filter: blur(4px);
  color: #dff2ff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  font-size: 13px;
  line-height: 1.3;
}

.pill strong {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.pill small {
  display: block;
  opacity: 0.95;
  color: rgba(235, 245, 255, 0.85);
}

/* hover lift */
.pill:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
}

.service-boxes:hover:before {
  opacity: 1;
}

.service-boxes:hover .upper-info-handle {
  color: #fff;
}

.upper-info-handle img {
  width: 50px;
  height: 50px;
}

.upper-info-handle {
  display: flex;
  justify-content: space-between;
}

/* footer columns */
.footer-columns {
  margin-top: 24px;
  padding-top: 28px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-columns h5 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin: 10px 0;
}

.footer-links a {
  color: rgba(230, 230, 230, 0.85);
  text-decoration: none;
  font-size: 14px;
  opacity: 0.95;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

/* partner logos row */
.footer-logos {
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 22px;
  padding-bottom: 22px;
}

.footer-logos .logo-set {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-logos img {
  height: 28px;
  opacity: 0.95;
  display: block;
}

.footer-logos img[alt="Google"] {
  height: 22px;
}

/* bottom bar */
.footer-bottom {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  position: relative;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}

/* back to top button */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 18px;
  z-index: 9999;
  background: #b2ea00;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.18);
  font-size: 14px;
}
/* responsive */

@media (max-width: 500px) {
  .client-logos .container {
    max-width: 90% !important;
  }
  .carousel-client img {
    height: 24px !important;
  }

  .grid-box-wrapper {
    margin-bottom: 20px;
  }
  .right-heading-wraps h2 {
    font-size: 20px !important;
  }

  .right-heading-wraps h3 {
    font-size: 31px !important;
  }
  .our-process .service-boxes a {
    padding: 10px !important;
  }
  .our-process .service-boxes {
    padding: 0 !important;
  }
  .our-process .service-boxes:before {
    display: none !important;
  }
  .image-parallax {
    min-height: 250px !important;
  }
  ul.points-main li {
    font-size: 20px !important;
  }
  section.page-title-main:before {
    width: 70px !important;
  }

  section.page-title-main:after {
    width: 40px !important;
  }
  .page-firsttitle {
    font-size: 24px !important;
  }

  .page-secondtitle {
    font-size: 40px !important;
  }
  .service-boxes:before {
    content: "";
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 20px;
    opacity: 0.5 !important;
    pointer-events: none;
  }

  .below-handle {
    position: relative;
  }
  .below-handle p {
    width: 100% !important;
    font-size: 14px !important;
  }
  .service-stack {
    padding-bottom: 0 !important;
  }

  /* Keep flex layout normal */
  .hoverable-wrapper .row {
    flex-wrap: wrap;
    /* optional: allows rows if you want stacking */
  }

  /* all columns behave normally */
  .hoverable-wrapper .col-lg-3 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    transition: none !important;
  }

  /* disable hover growth */
  .hoverable-wrapper .col-lg-3:hover {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    z-index: auto !important;
  }

  /* disable fading of non-hovered columns */
  .hoverable-wrapper:hover .col-lg-3 > *,
  .hoverable-wrapper .col-lg-3:hover > *,
  .hoverable-wrapper:not(:hover) .col-lg-3 > * {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  .background-embed-video.w-embed {
    height: 100%;
  }

  .counter-wrap {
    grid-template-columns: 1fr 1fr !important;
    display: grid !important;
    gap: 10px;
  }

  .badge-wrapper {
    gap: 20px !important;
    align-items: baseline;
  }

  .service-wrapper .left-info {
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .testimonial-card {
    border: 1px solid #000;
    height: 300px !important;
  }

  ul.splide__pagination.splide__pagination--ltr {
    display: none;
  }

  .counter-animated-title.color-white.title-top-text {
    margin: 0 !important;
  }

  .counter-animated-title.color-white.title-bottom {
    margin: 0 !important;
  }

  section.hoverable-counter {
    padding-top: 11em;
  }

  .hoverable-items {
    min-height: 50vh !important;
  }

  .right-img-wrapper {
    display: none;
  }

  section.hero-banner .row {
    max-height: 45vh !important;
  }

  section.video-expand-section .row {
    flex-direction: column !important;
    align-items: center !important;
  }

  .left-col,
  .right-col {
    width: 100% !important;
    justify-content: center !important;
  }

  .left-info {
    width: 100% !important;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-direction: column !important;
  }

  .banner-heading {
    font-size: 20px !important;
    line-height: 28px !important;
  }
  .pill {
    min-width: 160px !important;
  }

  .input-with-icon {
    min-width: 200px;
  }
  .middle-content-wrap img {
    width: 15% !important;
  }

  .pills-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 360px;
    padding: 0 !important;
  }
}
/* responsive: fewer columns on smaller */
@media (max-width: 1200px) {
  .pills-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 850px) {
  .pills-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 620px;
  }

  .footer-content {
    padding-top: 130px;
  }
}

@media (max-width: 500px) {
  .portfolio-tabs li {
    padding: 5px 13px !important;
    font-size: 11px !important;
  }
  section.main-form .container {
    padding: 0 !important;
    margin: 0 auto !important;
  }
  .inner-detail-content-wrap h2 {
    font-size: 34px !important;
  }
  .inner-details-wrap > div {
    padding: 30px 30px !important;
  }
  .button-inlines {
    flex-direction: column;
    align-items: baseline !important;
  }
  .right-details-wrap {
    padding-top: 20px;
  }
  .inner-page-details .left-info.main-info {
    justify-content: unset !important;
  }
  .unbound-title,
  .unbound-subtitle {
    font-size: 32px !important;
  }

  .page-title-wrap {
    min-height: 350px !important;
  }

  body:not(.elementor-editor-active)
    .vamtam-sticky-header.vamtam-sticky-header--transparent-header {
    position: relative;
    top: 0;
  }

  h2.form-title {
    color: #fff !important;
  }

  label.form-label {
    color: #fff;
  }

  /* Form Popup Styles */
  .gtv-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .gtv-popup-overlay.active {
    display: flex;
    opacity: 1;
  }

  .gtv-popup-content {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  }

  .gtv-popup-overlay.active .gtv-popup-content {
    transform: scale(1);
  }

  .gtv-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: #888;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    padding: 0;
    width: 32px;
    height: 32px;
  }

  .gtv-popup-close:hover {
    color: #cfeb00;
  }

  .gtv-popup-icon {
    margin-bottom: 20px;
  }

  .gtv-icon-success,
  .gtv-icon-error {
    display: none;
    margin: 0 auto;
  }

  .gtv-popup-overlay.success .gtv-icon-success {
    display: block;
    animation: popIn 0.4s ease;
  }

  .gtv-popup-overlay.error .gtv-icon-error {
    display: block;
    animation: shake 0.4s ease;
  }

  .gtv-popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    font-family: "Poppins", sans-serif;
  }

  .gtv-popup-message {
    font-size: 16px;
    color: #aaa;
    line-height: 1.6;
    margin: 0;
  }

  /* Budget button selection state */
  .budget-btn.selected {
    background: #cfeb00;
    color: #000;
    border-color: #cfeb00;
  }

  /* Animations */
  @keyframes popIn {
    0% {
      transform: scale(0);
      opacity: 0;
    }

    50% {
      transform: scale(1.1);
    }

    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  @keyframes shake {
    0%,
    100% {
      transform: translateX(0);
    }

    25% {
      transform: translateX(-10px);
    }

    75% {
      transform: translateX(10px);
    }
  }

  /* Loading state for buttons */
  .button.loading {
    pointer-events: none;
    opacity: 0.7;
  }

  .button.loading .button__text::after {
    content: "...";
    animation: dots 1.5s infinite;
  }

  @keyframes dots {
    0%,
    20% {
      content: ".";
    }

    40% {
      content: "..";
    }

    60%,
    100% {
      content: "...";
    }
  }

  /* small screens */
  @media (max-width: 767.98px) {
    .footer-columns .col-md-3 {
      flex: 0 0 50%;
      max-width: 50%;
      margin-bottom: 18px;
    }

    .footer-logos .logo-set {
      gap: 20px;
    }
  }

  /* responsive adjustments */
  @media (max-width: 992px) {
    .middle-video {
      width: 520px;
      /* Increased from 340px */
      height: 320px;
      /* Increased from 260px */
    }

    .left-col,
    .right-col {
      padding-left: 20px;
      padding-right: 20px;
    }
  }

  @media (max-width: 576px) {
    .zig-offset {
      margin-top: 0;
      /* remove offset on mobile */
    }

    .middle-video {
      width: 340px;
      /* Increased from 260px */
      height: 240px;
      /* Increased from 200px */
      border-radius: 999px;
    }

    .left-info,
    .right-buttons {
      font-size: 14px;
    }
  }

  /* MOBILE MENU HIDDEN BY DEFAULT */
  .mobile-menu {
    display: none;
    background: #000;
    padding: 20px;
  }

  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobile-menu ul li {
    list-style: none;
    margin: 15px 0;
  }

  .mobile-menu ul li a {
    color: #fff;
    font-size: 18px;
    text-decoration: none;
  }

  /* HAMBURGER */
  .hamburger {
    background: none;
    border: none;
    font-size: 28px;
    color: #000;
  }

  /* Desktop Menu Styling */
  .main-menu-list li a {
    text-decoration: none;
    color: #000;
  }

  /* RESPONSIVE IMAGE */
  .main-logo img {
    width: 160px;
  }

  /* Optional: Smooth dropdown */
  .mobile-menu.show {
    display: block;
    animation: fadeDown 0.2s ease-in-out;
  }

  @keyframes fadeDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .center-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* <-- fills container */
    object-position: center;
    /* optional: keeps focal point centered */
  }

  .hoverable-wrapper .row {
    flex-direction: column;
    width: 100% !important;
    flex-wrap: wrap !important;
  }

  .hoverable-wrapper .col-lg-3 {
    max-width: 100% !important;
  }

  .step-content h2 {
    font-size: 25px;
  }

  .step-content p {
    text-align: center;
  }

  .img-bind img {
    width: 100px;
  }

  img.ball {
    left: 80%;
    top: 0;
  }

  img.laptop-tab {
    top: 0;
    width: 20%;
    left: -5%;
  }

  img.cubic {
    display: none;
  }

  .img-bind {
    height: 100px !important;
  }

  .banner-heading {
    font-size: 40px;
    line-height: 55px;
  }

  .badge-wrapper img {
    width: 110px;
    object-fit: contain;
  }

  img.arrow {
    left: 0;
    width: 10%;
  }

  img.ring {
    width: 10%;
    display: none;
  }

  .section-space-hero {
    padding-left: 15px;
    padding-right: 15px;
  }

  .design-banner-wrap img {
    width: 100%;
  }

  .left-info.main-info {
    text-align: center;
  }

  .right-heading-wraps {
    text-align: center;
  }

  .section-space {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }

  .service-boxes {
    margin-bottom: 20px;
  }

  .services-slide-text {
    font-size: 5em;
  }

  .hoverable-items h2 {
    text-align: center;
  }

  .form-card .col-lg-6 {
    padding-left: 0px !important;
    padding-right: 0 !important;
  }

  section.zig-zag .row {
    gap: 50px;
  }

  .middle-video-wrapper {
    top: 10%;
  }

  .middle-video-wrapper {
    position: relative;
  }

  section.our-services-sec {
    padding-top: 10%;
  }

  .service-boxes a {
    min-height: 300px !important;
  }

  .service-boxes .below-handle h2 {
    font-size: 22px;
  }

  .each-bottom h2 {
    font-size: 1.5em;
  }

  .industry-stack {
    padding-bottom: 100px;
  }

  .contact-form .row.gx-3.mb-4 {
    flex-direction: column;
    gap: 25px;
  }

  .contact-form label {
    color: #fff;
  }

  .cta-orgonizer-image-block.is-absulute IMG {
    max-width: 100px;
  }

  .guranted-text-of {
    font-size: 16px;
  }

  .subscribe-section .input-row {
    flex-direction: column;
  }

  .input-with-icon {
    max-height: 100px;
  }

  .footer-video-wrap {
    height: 100%;
  }

  .counter-animated-title {
    font-size: 90px !important;
  }
}

.counterup {
  -webkit-text-stroke-width: 1.5px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.75vw;
  font-weight: 400;
  line-height: 105%;
}

.counter-number-block {
  color: var(--color-primary);
  border-top: 1px solid #ececec;
  align-items: center;
  padding: 1.458vw 2.083vw 2.083vw;
  display: flex;
}

.counter-item-number {
  color: #000;
  margin-bottom: 9.896vw;
}

.counter-area {
  position: relative;
  overflow: hidden;
}

.counter-area.section-padding {
  background-color: #000;
}

.counter-content {
  padding: 2.083vw;
}

.counter-animated-title {
  font-size: 200px;
  font-weight: 700;
  line-height: 100%;
  color: #fff;
}

.counter-animated-title.color-white.title-bottom-minus {
  z-index: 2;
  margin-bottom: -20px;
  position: relative;
}

.counter-animated-title.color-white.text-right.title-top-minus {
  z-index: 2;
  text-align: right;
  margin-top: -35px;
  position: relative;
}

.counter-animated-title.color-white.title-bottom {
  text-align: right;
  margin-top: -66px;
  padding-right: 16.042vw;
}

.counter-animated-title.color-white.title-top-text {
  margin-bottom: -40px;
  padding-left: 16.667vw;
}

.section-title-wrap.text-center.mb-60.width-595 {
  max-width: 595px;
  margin-left: auto;
  margin-right: auto;
}

.section-title-wrap.text-center.mb-60.width-710 {
  max-width: 710px;
  margin-left: auto;
  margin-right: auto;
}

.section-title-wrap.text-center.mb-60.width-1050 {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
}

.section-title-wrap.mb-100 {
  text-transform: uppercase;
  margin-bottom: 100px;
}

.section-title-wrap.mb-100.varient-mb {
  margin-bottom: 40px;
}

.section-title-wrap.mb-50 {
  margin-bottom: 50px;
}

.center-video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.counter-animated-title {
  position: relative;
  z-index: 11;
}

.counter-wrap {
  z-index: 15;
  grid-column-gap: 24px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.counter-suffix {
  -webkit-text-stroke-width: 1.5px;
  margin-right: 6px;
  font-size: 3.75vw;
  font-weight: 400;
  line-height: 105%;
}

.counter-single-item {
  z-index: 0;
  background-color: #fff;
  width: 100%;
  transition: all 0.2s;
  position: relative;
  border: 1px solid #fff;
}

.counter-single-item:hover {
  background: #000;
}

.counter-single-item:hover .counter-item-number,
.counter-single-item:hover .count-title,
.counter-single-item:hover .counter-number-block {
  color: #fff;
}

.title-bottom {
  color: #fff;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  position: relative;
  padding: 100px 0;
  background: url(../images/map-bg.png), #000;
  background-repeat: no-repeat;
  background-size: 80%;
  overflow: visible;
  min-height: 50vh;
  background-position: bottom;
  display: flex;
  align-items: center;
}

.testimonials-section .container {
  position: relative;
  z-index: 1;
}
div#testimonials-slider-track {
    padding-bottom: 20px;
}
.testimonials-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 60px;
  position: relative;
  top: 10%;
  left: 20%;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 40px 35px;
  margin: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-badge {
  display: inline-block;
  background: var(--primary-green);
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 30px;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 25px;
  border-top: 1px solid var(--border-color);
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-green);
}

.author-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: var(--text-dark);
}

.author-info p {
  font-size: 13px;
  color: var(--text-gray);
  margin: 3px 0 0 0;
}

/* Splide customization */
.splide__arrow {
  background: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 1;
}

.splide__arrow svg {
  fill: var(--text-dark);
}

.splide__arrow:hover {
  background: var(--primary-green);
}

.splide__arrow--prev {
  left: -20px;
}

.splide__arrow--next {
  right: -20px;
}

/* FAQ SECTION */
.faq-section {
  padding: 100px 0;
  background: white;
}

.faq-header {
  margin-bottom: 60px;
}

.faq-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 15px;
}

.faq-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}

.faq-title .highlight {
  color: var(--primary-green);
}

.faq-accordion {
  max-width: 900px;
  margin-left: auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 30px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  padding-left: 10px;
}

.faq-question {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  user-select: none;
}

.faq-toggle {
  font-size: 24px;
  color: var(--text-gray);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-green);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-top 0.3s ease;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-gray);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-top: 20px;
}

/* Responsive */
@media (max-width: 991px) {
  .testimonials-section,
  .faq-section {
    padding: 60px 0;
  }

  .faq-title {
    font-size: 36px;
  }

  .faq-question {
    font-size: 18px;
  }

  .splide__arrow--prev {
    left: 0;
  }

  .splide__arrow--next {
    right: 0;
  }
}

@media (max-width: 767px) {
  .testimonial-card {
    margin: 10px 5px;
    padding: 30px 25px;
  }

  .faq-title {
    font-size: 28px;
  }

  .faq-question {
    font-size: 16px;
  }
}

span.highlight {
  color: #b2ea00 !important;
  font-weight: 900;
}

.faq-item {
  border-bottom: 2px solid #f5f5f5;
}

.faq-accordion {
  border-left: 2px solid #f5f5f5;
  padding-left: 10px;
}

section.main-form {
  background: #000 !important;
}

img.maaz-img {
  width: 60%;
  margin-bottom: 10px;
  border-radius: 20px;
}

.ctm h2 {
  font-size: 24px;
}

.ctm p {
  font-size: 16px;
}

/* ---------- Menu base ---------- */
.main-menu {
  position: relative;
  z-index: 1100;
}

.menu-wrapper {
  overflow: visible;
}

/* allow dropdown to show outside container */
.main-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

/* ensure li is positioned for hover state */
.main-menu-list > li {
  position: relative;
}

/* ---------- Mega dropdown (desktop) ---------- */
.has-dropdown {
  position: relative;
}

/* Dropdown panel */
.mega-dropdown {
  position: absolute;
  top: 100%;
  /* sits directly under the menu item (no gap) */
  left: 50%;
  /* center under menu area */
  transform: translateX(-50%);
  min-width: 760px;
  /* adjust width as needed */
  max-width: calc(100vw - 120px);
  /* keep some side padding on small desktops */
  background: #fff;
  border-radius: 10px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  display: none;
  /* hidden by default */
  pointer-events: auto;
  /* ensure mouse works inside */
  z-index: 9999;
  /* very high so it sits above everything else */
}

/* Avoid hover gap: show when parent li is hovered or has .open class */
.has-dropdown:hover > .mega-dropdown,
.has-dropdown.open > .mega-dropdown {
  display: block;
}

/* layout inside dropdown */
.mega-row {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  justify-content: center;
}

/* two columns */
.mega-col {
  flex: 1 1 40%;
  min-width: 220px;
}

/* link styles (no icons) */
.mega-link {
  display: block;
  padding: 12px 10px;
  color: #111;
  text-decoration: none;
  border-radius: 6px;
  font-size: 15px;
}

.mega-link:hover {
  background: #b2ea00;
  text-decoration: none;
}

/* top-level anchor style (menu label) */
.main-menu-list > li > a {
  color: #111;
  text-decoration: none;
  padding: 6px 8px;
  display: inline-block;
}

.main-menu-list > li > a:hover {
  color: #000;
}

/* small visual tweak to remove accidental pointer gap:
   ensure header height and dropdown top align cleanly */
.container.py-3 {
  position: relative;
  z-index: 1100;
}

/* ---------- Mobile styles (collapse) ---------- */
@media (max-width: 991px) {
  .menu-wrapper {
    display: none !important;
  }

  /* desktop menu not shown on mobile */
  .mega-dropdown {
    display: none !important;
  }

  /* mega hidden on mobile */

  /* mobile submenu */
  .mobile-submenu {
    display: none;
    margin: 0;
    padding-left: 0;
    list-style: none;
  }

  .mobile-has-submenu .mobile-submenu-toggle {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 12px 0;
    font: inherit;
    cursor: pointer;
  }

  .mobile-has-submenu.open .mobile-submenu {
    display: block;
  }

  .mobile-submenu li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .chev {
    float: right;
  }
}

/* ---------- Accessibility & fine-tuning ---------- */
/* Make sure dropdown is keyboard reachable when .open is toggled via JS */
.has-dropdown .mega-dropdown[role="menu"] a:focus {
  outline: 2px solid rgba(0, 150, 0, 0.12);
}

/* optional: slightly animate dropdown appearance (opacity + translate) */
.has-dropdown .mega-dropdown {
  transition: opacity 180ms ease, transform 180ms ease;
  opacity: 0;
  transform: translateY(6px) translateX(-50%);
  pointer-events: none;
  /* hidden state not interactable */
}

.has-dropdown:hover > .mega-dropdown,
.has-dropdown.open > .mega-dropdown {
  opacity: 1;
  transform: translateY(0) translateX(-50%);
  pointer-events: auto;
}

.mobile-has-submenu .mobile-submenu-toggle {
  color: #fff !important;
}

div#mobileMenu .button__wrapper {
  background: #b2ea00;
}

/* preloader + layout */
#preloader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  color: white;
  transition: opacity 0.35s ease;
}

.preloader-content {
  text-align: center;
  width: 340px;
  max-width: calc(100% - 40px);
}

/* logo sizing */
#logo-container {
  width: 220px;
  height: auto;
  margin: 10px auto;
}

#logo-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* top outline: force paths to be stroked (override fill) */
#logo-top path {
  fill: none !important;
  stroke: #ffffff;
  stroke-width: 6;
  stroke-linejoin: round;
  stroke-linecap: round;
  paint-order: stroke fill markers;
  vector-effect: non-scaling-stroke;
}

/* color fill rect uses this id */
#fill-rect {
  transition: y 0.15s linear, height 0.15s linear;
}

/* percentage text */
#loading-percentage {
  margin-top: 12px;
  font-size: 18px;
  font-weight: bold;
}

@media (max-width: 1360px) {
  .section-space-hero {
    padding-top: 0;
  }

  .step-content h2 {
    font-size: 18px;
  }

  .hoverable-items h2 {
    font-size: 140px;
  }

  .hoverable-items {
    min-height: 70vh;
  }

  .below-handle h2 {
    font-size: 32px;
  }

  .services-slide-text {
    font-size: 5em;
  }

  .banner-heading {
    font-size: 60px;
  }

  section.hero-banner .row {
    max-height: 70vh;
  }

  .step-content h2 {
    font-size: 18px;
  }

  .service-boxes a {
    min-height: 360px;
  }
}

.main-info p {
  font-weight: 600;
}

.right-heading-wraps h2 {
  font-weight: 400;
}

.top-heading {
  font-weight: 400;
}

.page-title-wrap {
  position: relative;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  text-align: center;
  padding-bottom: 40px;
}

.page-firsttitle {
  font-weight: 400;
  font-size: 38px;
}

.page-secondtitle {
  font-weight: 400;
  font-size: 64px;
}

section.page-title-main:before {
  content: "";
  background: url(../images/left-page-title-group.png);
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 11111;
  top: 55%;
  width: 150px;
  height: 130px;
}

section.page-title-main:after {
  content: "";
  background: url(../images/right-page-title-group.png);
  position: absolute;
  right: 0;
  width: 100px;
  height: 130px;
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  z-index: 11111;
  transform: translateY(-30%);
}

.page-title-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.page-title-wrap h1,
.page-title-wrap h2 {
  color: #000;
}
.inner-page-details img {
  border-radius: 15px;
}
section.page-title {
  position: relative;
  overflow: hidden;
  margin-top: -80px;
}

section.points {
  padding-bottom: 80px;
  padding-top: 50px;
}
.page-title-details {
  padding-bottom: 100px;
}
section.page-title-main {
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
  top: -85px;
}

.image-parallax {
  position: relative;
  min-height: 800px;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: -20%;
  background: url(../images/services/ui-ux.webp) center / cover no-repeat;
  will-change: transform;
}

.app-dev .parallax-bg {
  background: url(../images/services/app-dev-software-sol.webp) center / cover
    no-repeat;
}

.digital-mark .parallax-bg {
  background: url(../images/services/digital-marketing.webp) center / cover
    no-repeat;
}
.container {
  max-width: 90% !important;
}
.page-title-container {
  z-index: 999;
  position: relative;
  padding-bottom: 20px;
}
.unbound-subtitle {
  color: #b2ea00;
}

span.badge.rounded-pill {
  background: #b2ea00;
  font-family: "Outfit";
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

span.task-pill {
  font-family: "Outfit";
  background: #ededed;
  border-radius: 50px;
  padding: 5px 10px;
}

.our-process .service-icon-wrapper {
  text-align: center;
}

.our-process .service-boxes a {
  min-height: 60vh !important;
  background: #fafafa;
  border-radius: 30px;
  padding: 40px;
  display: flex !important;
  justify-content: center;
  box-shadow: 0 1px 4px 0 #0f172a0f !important;
}

.our-process .service-boxes {
  background: none !important;
}
.unbound-title,
.unbound-subtitle {
  font-size: 54px;
  font-weight: 400;
}

section.grid-blocks {
  background-color: #000;
  padding-top: 50px;
  padding-bottom: 50px;
}

.grid-box-wrapper {
  position: relative;
  padding: 36px;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;

  /* Dark glass base – toned highlight */
  background: radial-gradient(
    120% 120% at 20% 0%,
    rgba(255, 255, 255, 0.08),
    rgba(0, 0, 0, 0.94)
  );

  /* Soft white edge + depth (reduced) */
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22),
    0 22px 60px rgba(255, 255, 255, 0.12),
    inset 0 0 22px rgba(255, 255, 255, 0.04);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.grid-box-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5),
    0 40px 110px rgba(255, 255, 255, 0.3),
    inset 0 0 55px rgba(255, 255, 255, 0.14);
}

.grid-blocks .row.services-header {
  padding-bottom: 50px;
}

.row.grid-wrapper {
  padding-bottom: 30px;
}

.grid-box-wrapper h2 {
  font-size: 20px;
}

section.slide-section {
  margin-top: -5px;
}

.client-logos {
  overflow: hidden;
  padding-top: 0;
}

/* CENTERED WIDTH (like screenshot) */
.logos-container {
  max-width: 1100px; /* 👈 key */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

.client-logos .carousel-wrapper {
  position: relative;
  overflow: hidden;

  /* EDGE FADE MASK */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100% say
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.carousel-client {
  display: flex;
  align-items: center;
  gap: 70px;
  white-space: nowrap;
  will-change: transform;
}

/* small logos */
.carousel-client img {
  height: 34px;
  width: auto;
  flex-shrink: 0;
  opacity: 0.85;
  filter: invert(1);
}
.client-logos .container {
  max-width: 60% !important;
}
/* .page-title-wrap:after {
    content: '';
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.4;
    border-radius: 10px;
} */
.inner-page-details p.font-unbound {
  font-weight: 400;
  font-size: 16px;
}
.right-details-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  height: 100%;
}

.button-inlines a {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  transition: 0.3s ease-in-out;
}

.button-inlines {
  gap: 20px;
  align-items: center;
}

.button-inlines a:hover {
  scale: 1.1;
}
.text-green {
  color: #b2ea00;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
}

ul.points-main {
  padding: 0;
  margin: 0;
}

ul.points-main li {
  font-family: "Outfit";
  font-size: 30px;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 15px;
  padding-top: 20px;
  position: relative;
  transition: 0.3s ease-in-out;
}

ul.points-main li:hover {
  cursor: pointer;
}

ul.points-main li:hover:after {
  opacity: 1;
}

ul.points-main li:after {
  content: "";
  background: url(../images/arrows.png);
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  right: 0;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.feature-list li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: #9dff00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #000;
}
.inner-details-wrap > div {
  background: #000;
  border-radius: 40px;
  padding: 80px 60px;
}
.paragraph-wrap p {
  line-height: 32px;
}
.inner-detail-content-wrap h2 {
  color: #fff;
  font-size: 44px;
}

.inner-detail-content-wrap p {
  color: #fff;
}

.screen {
  border-radius: 20px;
  display: block;
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
  border-radius: 1px;
  margin: 0 auto;
  margin-bottom: 20px;
  /* border: 1px solid #e6e6e6; */
}
.screen a {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.screen img {
  width: 100%;
  height: auto;
  bottom: -700;
  /* position: absolute; */
  z-index: 0;
  margin: 0;
  padding: 0;
  /* -webkit-transition: top 11s; */
  -moz-transition: top 11s;
  -ms-transition: top 11s;
  -o-transition: top 11s;
  /* transition: bottom 11s; */
}
.screen img {
  width: 100%;
  position: relative;
  top: 0;
  transition: 2s all;
}
.screen a:hover img {
  top: -100%;
}
ul#portfolioTabs {
  justify-content: center;
}
/* Tabs */
.portfolio-tabs li {
  padding: 10px 22px;
  border-radius: 30px;
  background: #111;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  transition: 0.3s ease;
}

.portfolio-tabs li.active,
.portfolio-tabs li:hover {
  background: #c5ef40;
  color: #000;
}

/* Portfolio items */
.portfolio-item {
  transition: 0.4s ease;
}

.portfolio-item img,
.portfolio-item video {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* Hide animation */
.portfolio-item.hide {
  opacity: 0;
  transform: scale(0.85);
  pointer-events: none;
  position: absolute;
}
.website-preview {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
}

.website-preview img {
  width: 100%;
  display: block;
  transition: transform 4s linear;
}

@media (min-width: 1000px) {
  .row.services-header .col-lg-6:nth-child(2) {
    padding-left: 10vw;
  }
}

.contact-page-form {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-top: -5%;
  padding-bottom: 3%;
}
.contact-page-form .form-card {
  max-width: 100%;
  background: none;
  box-shadow: none;
}
.contact-page-form label.form-label {
  color: #000;
}

.contact-page-form form.contact-form {
  border: 1px solid #000;
  background: #fff;
}

.contact-page-form input.form-control.dark {
  border: 1px solid #000;
  color: #000 !important;
  background: #fff;
}
.contact-page-form .form-control.dark::placeholder {
  color: #000;
}
.contact-page-form button.budget-btn {
  border: 1px solid #000;
  color: #000;
}

.contact-page-form textarea.form-control {
  border: 1px solid #000 !important;
}
.contact-info {
  max-width: 360px;
}

.contact-block {
  margin-bottom: 32px;
}

.contact-heading {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 6px;
  color: #b2ea00;
}

.contact-desc {
  font-size: 16px;
  color: #666;
  margin-bottom: 12px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #111;
  text-decoration: none;
  margin-bottom: 10px;
}

.contact-link i {
  font-size: 20px;
  color: #000;
  min-width: 16px;
}

.contact-link:hover {
  text-decoration: underline;
}
