@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Fustat:wght@200..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Marcellus&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Outfit:wght@100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

html.dark-preload,
html.dark-preload body {
  background: #121212 !important;
}
:root {
  --bgcolor: #ffff00;
  --primary-color: #020202;
  --primary-color1: #8b8b8b;
  --primary-color1: #333333;
  --secondary-color: #0e1d68;
  --secondary-color2: #a020f0;
  /* --background-color: #0d1628; */
  --background-color: linear-gradient(
    135deg,
    #041c3c 0%,
    #1e3f7a 30%,
    #4a4fa8 60%,
    #5a1fa6 100%
  );
  --background-color1: #e9edf2;
  --background-color2: #faf9f7;
  --secondary: #fff;

  /* --secondary-color3		: #a78e59; */
  --box-shadow-top-left: -3px -3px 7px 0px
    rgba(200.00000000000006, 42, 238.99999999999997, 0.44);
  --box-shadow-bottom-right: 3px 3px 7px 0px
    rgba(200.00000000000006, 42, 238.99999999999997, 0.44);
  --box-shadow-top-left-wide: -3px -3px 10px 0px
    rgba(200.00000000000006, 42, 238.99999999999997, 0.44);
  --box-shadow-bottom-right-wide: 3px 3px 10px 0px
    rgba(200.00000000000006, 42, 238.99999999999997, 0.44);

  /* --box-shadow-top-left: -3px -3px 7px 0px rgba(36, 19, 107, 0.44);
  --box-shadow-bottom-right: 3px 3px 7px 0px rgba(36, 19, 107, 0.44);
  --box-shadow-top-left-wide: -3px -3px 10px 0px rgba(36, 19, 107, 0.44);
  --box-shadow-bottom-right-wide: 3px 3px 10px 0px rgba(36, 19, 107, 0.44); */

  --text-color: #6b778c;
  --text-color1: #555;
  --text-color2: #c4c7d8;
  --accent-color-3: #e3caff;
  --accent-color-4: #f5f5f5;
  --arrow-color: #eadec8;
  --accent-color: #ffc107;
  --white-color: #ffffff;
  --divider-color: #eaeaea;
  --dark-divider-color: #ffffff1a;
  --default-font: "Fustat", sans-serif;
  --default-font1: "Lato", sans-serif;
  --default-font2: "Source Serif 4", serif;
  --default-font3: "Cormorant", serif;
  /* --accent-font			: "Montserrat", sans-serif; */

  --center-width: 300px;
  --side-width: 200px;
  --gap: 20px;
  --duration: 0.8s;
  --pad-top: 100px 0px;
  --pad-top1: 100px 0px 100px 0px;
  --pad-top2: 100px 0px 0px 0px;

  --accent: #a020f0;
  --border: rgba(160, 32, 240, 0.22);
}

/* --- DARK MODE OVERRIDES --- */
html.dark body {
  --body-bg: #121212; /* Dark tech background */
  --secondary-color: var(--white-color);
  --primary-color: var(--white-color);
  --primary-color1: #8b8b8b;
  --secondary: #121212;
  --text-color1: var(--white-color);
  --text-color2: #c4c7d8;
  --background-color: #121212;
  --background-color1: #121212;
  --background-color2: transparent;

  --accent-color-3: #1f1f1f;
  --accent-color-4: #0e0e0e;
  --body-text: var(--white-color);
  --card-bg: rgba(255, 255, 255, 0.05); /* Transparent glass look */
  --header-bg: #121212;
  --text-color: #c4c7d8; /* Halka ash color dark-er jonne */

  --shadow-glow: rgba(160, 32, 240, 0.3); /* Subtle purple glow */
  --divider-color: rgba(255, 255, 255, 0.1);
  --pad-top: 100px 0px;
  --pad-top1: 0px 0px 100px 0px;
  --pad-top2: 100px 0px 0px 0px;
}

/* CUSTOM CURSOR */
#cursor {
  width: 12px;
  height: 12px;
  background: var(--secondary-color2);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transition:
    transform 0.1s,
    opacity 0.2s;
  mix-blend-mode: screen;
  color: rgb(160, 32, 240);
}
#cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid var(--secondary-color2);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transition:
    transform 0.18s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.2s;
  box-shadow: var(--box-shadow-bottom-right);
}

/* CANVAS BACKGROUND */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

body {
  font-size: 20px !important;
}

html {
  font-size: 100%;
}
a {
  text-decoration: none !important;
}

p {
  line-height: 1.8em;
  margin-bottom: 0px !important;
  margin-top: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--default-font1);
  font-weight: 600;
  line-height: 1.2em;
  color: var(--primary-color);
  margin-bottom: 0px !important;
}

figure {
  margin: 0 !important;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

/* .container{
	max-width: 1320px;
} */

.image-anime {
  position: relative;
  overflow: hidden;
}
.image-anime img {
  width: 100% !important;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.image-anime:hover {
  border: 2px solid transparent;
}

.fade-i {
  opacity: 0;
  transition:
    opacity 3s ease,
    transform 3s ease;
}

.fade-i.visible {
  opacity: 1;
  transform: translateY(0);
}

.image-anime.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  /* visibility: hidden; */
  overflow: hidden;
}
.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
  transition:
    transform 1s ease-out,
    visibility 0s 0s;
  transform: translateX(-100%);
}

/* Class to trigger reveal animation */
.reveal.show img {
  transform: translateX(0); /* Move to normal position */
  visibility: visible;
}

.reveal1 {
  position: relative;
  display: inline-flex;
  overflow: hidden;
}

.reveal1 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform-origin: right;
  transform: translateX(100%);
  transition: transform 1s ease-out;
  visibility: hidden;
}

.reveal1.show img {
  transform: translateX(0);
  visibility: visible;
}

.header1 {
  width: 100%;
  height: auto;
  z-index: 999;
}

/* Smooth transition */
body {
  transition: 0.3s ease;
  background: var(--white-color);
  /* color: var(--primary-color); */
}
/* Dark mode variables */
html.dark body {
  background-color: var(--body-bg) !important;
  color: var(--white-color) !important;
}

html.dark body .nav-link {
  color: #ffffff !important;
}
html.dark body header.sticky .nav-btn-text {
  color: #ffffff !important;
}

html.dark body .nav-link:hover {
  color: #ff8a8a !important;
}

html.dark body .offcanvas {
  background-color: #1e1e1e !important;
}

html.dark body .offcanvas .btn-close {
  filter: invert(1);
}

html.dark body .card {
  background-color: #2d2d2d !important;
  color: #ffffff !important;
}

html.dark body .footer-cta-button,
html.dark body .social-button {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
}

html.dark body .fo-nt {
  color: #ff8a8a !important;
}
html.dark body .recent-post h4 {
  color: #fff !important;
}
html.dark body .blog-content blockquote {
  color: #fff !important;
}
/* html.dark body .title {
  color: var(--white-color) !important;
} */
/* html.dark body .title-white {
  color: var(--primary-color) !important;
} */
/* html.dark body .para {
  color: var(--white-color) !important;
} */
/* html.dark body .para-light {
  color: var(--white-color) !important;
} */
/* html.dark body .sub-head {
  color: var(--white-color) !important;
} */
/* html.dark body .title-32 {
  color: var(--white-color) !important;
} */
/* html.dark body .title-22 {
  color: var(--white-color) !important;
} */
/* html.dark body .para-desc-sm {
  color: var(--white-color) !important;
}
html.dark body .para-desc {
  color: var(--white-color) !important;
} */
/* html.dark body .sub-head-white {
  color: var(--primary-color) !important;
} */
/* html.dark body .back-ground {
  background: #121212;
} */

/* html.dark body #backToTop {
  background-color: #ff8a8a !important;
  color: #121212 !important;
}

html.dark body .whatsapp-float {
  background-color: #25d366 !important;
  color: #ffffff !important;
} */
html.dark body .process-card {
  background-color: transparent !important;
  color: #ffffff !important;
}
html.dark body .process-card {
  background-color: #121212 !important;
  color: #ffffff !important;
}
html.dark body .service-block {
  background-color: #121212 !important;
  color: #ffffff !important;
}
html.dark body .service-number {
  color: #ffffff !important;
}
html.dark body .card-num-bg {
  color: #ffffff !important;
}
html.dark body .mm-content {
  background: #121212;
  box-shadow: var(--box-shadow-top-left-wide);
}
html.dark body .footer {
  /* background: #121212; */
  box-shadow: var(--box-shadow-top-left-wide);
}
html.dark body header.sticky .logo-img {
  filter: unset;
  transition: filter 0.3s ease;
}
html.dark body .cta-sec {
  background-color: #121212;
}
html.dark body .adoxin-svc-wrap .svc-card {
  background-color: #121212;
}
html.dark body .adoxin-svc-wrap .svc-feat {
  border-top: 0.5px solid rgba(0, 0, 0, 0.08);
  /* color: rgb(255, 255, 255); */
}
html.dark body .contact-info-box {
  background-image: radial-gradient(at top left, #1f1f1f 0%, #0e0e0e 50%);
  /* color: rgb(255, 255, 255); */
}
html.dark body .contact-form-box {
  background-image: radial-gradient(at top left, #1f1f1f 0%, #0e0e0e 50%);
  /* color: rgb(255, 255, 255); */
}
html.dark body .icon {
  background-image: radial-gradient(at top left, #1f1f1f 0%, #0e0e0e 50%);
  /* color: rgb(255, 255, 255); */
}

.theme-toggle-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #a020f0;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #a020f0;
  box-shadow: var(--box-shadow-bottom-right-wide);
}

/* hover glow */

.theme-toggle-btn:hover {
  /* background: linear-gradient(135deg, #6a1fb0, #a020f0); */
  transform: rotate(15deg) scale(1.08);
}

/* dark mode active state */

html.dark body .theme-toggle-btn {
  background: #a020f0;
  color: #fff;
}

/* Smooth transition for dark mode */
body,
.navbar,
.card,
.offcanvas,
.nav-link,
.footer-cta-button,
.social-button {
  transition: all 0.3s ease;
}

/* .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  padding: 16px 28px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  transition: all 0.3s ease;
  font-family: var(--default-font1);
}

.button.is-white {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.button.is-white:hover {
  background-color: #fff;
  color: #000;
}

.button-block {
  position: relative;
  overflow: hidden;
}

.button-text,
.button-text-hover {
  display: block;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.button-text-hover {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(100%);
  opacity: 0;
}

.button:hover .button-text {
  transform: translateY(-100%);
  opacity: 0;
}

.button:hover .button-text-hover {
  transform: translateY(0);
  opacity: 1;
}

.button-icon-block {
  display: inline-flex;
  margin-left: 8px;
  position: relative;
  width: 18px;
  height: 18px;
}

.button-icon,
.button-icon-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.button-icon-hover {
  transform: translate(-100%, 100%);
  opacity: 0;
}

.button:hover .button-icon {
  transform: translate(100%, -100%);
  opacity: 0;
}

.button:hover .button-icon-hover {
  transform: translate(0, 0);
  opacity: 1;
} */

/* 03. btn */

.btn {
  display: flex;
  align-items: center;
  width: fit-content;
  /* background-color: var(--secondary-color); */
  border-radius: 60px;
  padding: 6px 0 6px 50px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--white-color);
  box-shadow: var(--box-shadow-top-left);
  border: 1px solid #c82aef;
}
.blac {
  color: #c82aef;
  background-color: transparent;
  /* border: 1px solid var(); */
}
.btn svg {
  width: 36px;
  height: 36px;
  background-color: #c82aef;
  border-radius: 50%;
  padding: 10px;
  opacity: 0;
  fill: #fff;
}
.btn-arro svg {
  width: 30px;
  height: 30px;
}
.btn span {
  display: block;
}
.btn:hover svg {
  opacity: 1;
  transform: translateX(-5px);
}
.btn:hover span {
  transform: translateX(-20px);
}
.btn:hover {
  background-color: #000000;
  color: #fff;
  box-shadow: var(--box-shadow-bottom-right);
}
.btn svg,
.btn,
.btn span {
  transition: 0.4s ease-in-out;
}
.get-a-quote .btn {
  width: 100%;
  justify-content: space-between;
}
.get-a-quote .btn span {
  margin: auto;
}
header .btn:after {
  width: 136%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  /* border-bottom: 1px solid #fff; */
  /* box-shadow: var(--box-shadow-bottom-right); */
}

header.sticky {
  background-size: 100% 100%;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
  /* transform: translateY(0); */
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--box-shadow-bottom-right);
}
html.dark body header.sticky {
  background-size: 100% 100%;
  background: #1e1e1e;
  box-shadow: var(--box-shadow-bottom-right);
}
header.sticky .logo-img {
  filter: brightness(0);
  transition: filter 0.3s ease;
}

header.sticky .navbar-light .navbar-nav .nav-link {
  color: var(--primary-color) !important;
}
/* header.sticky .logo-img {
  filter: invert(1) brightness(0.1) contrast(2);
} */
header.sticky #primary li a:before {
  background: var(--primary-color);
}
header.sticky .nav-btn-text {
  color: var(--primary-color) !important;
}
header.sticky .dropdown-toggle::after {
  color: var(--primary-color) !important;
}
html.dark body header.sticky .btn {
  color: var(--white-color) !important;
}
header.sticky .btn {
  color: var(--primary-color) !important;
}
header.sticky .btn:hover {
  color: var(--white-color) !important;
}
.dropdown-toggle::after {
  color: var(--white-color) !important;
  position: absolute;
  right: 2px;
}
/* .dropdown-toggle::after {
  color: var(--primary-color) !important;
  position: absolute;
  right: 2px;
} */
/* Dark Mode */
.dark-mode .dropdown-toggle::after {
  color: var(--white-color) !important;
  position: absolute;
  right: 2px;
}

.navbar-expand-lg .navbar-collapse {
  justify-content: center !important;
}
.logo {
  color: #fff;
}

.logo-img {
  width: 240px;
  height: auto;
}

.navbar-light .navbar-nav .nav-link {
  font-size: 80% !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  color: var(--white-color) !important;
  margin-right: 0.2rem !important;
  margin-left: 0.2rem !important;
  font-family: var(--default-font) !important;
  position: relative;
  z-index: 10;
  width: auto;
}
nav.navbar.navbar-expand-lg.navbar-light {
  padding: 6px 0px;
}
.navbar-light .navbar-nav .nav-link:hover {
  /* background-color: var(--white-color) !important; */
  color: var(--primary-color);
}
.navbar-expand-lg .navbar-nav {
  justify-content: center !important;
}

.navbar-light .navbar-nav .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  height: 100%;
  border-radius: 50px;
  overflow: hidden;
  color: var(--white-color);
  text-decoration: none;
}

/* INVISIBLE WIDTH HOLDER */
.nav-btn-spacer {
  visibility: hidden;
  white-space: nowrap;
  font-size: inherit;
  font-weight: inherit;
}

/* ANIMATED TEXT */
.nav-btn-text,
.nav-btn-text-hover {
  position: absolute;
  white-space: nowrap;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.nav-btn-text {
  transform: translateY(0);
  opacity: 1;
}

.nav-btn-text-hover {
  transform: translateY(120%);
  opacity: 0;
}

.nav-link:hover .nav-btn-text {
  transform: translateY(-120%);
  opacity: 0;
}

.nav-link:hover .nav-btn-text-hover {
  transform: translateY(0);
  opacity: 1;
}

.nav-btn-text,
.nav-btn-text-hover {
  position: absolute;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  color: #000 !important;
}

.nav-btn-text {
  transform: translateY(0);
  opacity: 1;
  color: var(--white-color) !important;
}
.dropdown-toggle:hover::after {
  color: #000 !important;
}

.nav-btn-text-hover {
  transform: translateY(100%);
  opacity: 0;
}

.nav-link:hover {
  background-color: #fff;
  color: var(--primary-color) !important;
  border-color: var(--primary-color);
}

.nav-link:hover .nav-btn-text {
  transform: translateY(-100%);
  opacity: 0;
  color: var(--primary-color) !important;
}

.nav-link:hover .nav-btn-text-hover {
  transform: translateY(0);
  opacity: 1;
}
/* =========================
========================= */
.dropdown-menu {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  border: none;
  padding: 10px 0;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.dropdown-item {
  color: #000;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 8px;
  transition: 0.3s ease;
}

.dropdown-item:hover {
  background: #f0f0f0;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.mega-dropdown {
  position: relative;
}

.mega-dropdown > .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  left: 50%;
  top: 100%;
  transition: 0.25s ease;
}

.mega-dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-panel {
  width: 96vw;
  max-width: 1300px;
  left: 50% !important;
  transform: translateX(-50%);
  background: #f3f4f6;
  padding: 28px;
  border-radius: 22px;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* .mega-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 25px;
  bottom: -25px;
} */

.mm-wrap {
  background: var(--background-color1);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  gap: 40px;
  border: 1px solid var(--secondary-color2);
  box-shadow: var(--box-shadow-bottom-right-wide);
}

.mm-tabs {
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mm-tab {
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
  border: none;
  background: transparent;
  transition: 0.2s ease;
  text-align: left;
  cursor: pointer;
}

.mm-tab:hover,
.mm-tab.active {
  /* background: #dfe3e8; */
  background: var(--secondary-color2);
  color: var(--white-color);
}

.mm-content {
  flex: 1;
  display: none;
  background: #f6f7f9;
  border-radius: 16px;
  padding: 32px;
  gap: 40px;
}

.mm-content.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mm-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mm-list li {
  border-bottom: 1px solid #e4e7ec;
}

.mm-list a {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: none;
  text-align: left;
}

.mm-list a:hover {
  color: var(--secondary-color2);
}
.mm-list svg {
  color: var(--secondary-color2) !important;
}

.mm-img-card {
  width: 100%;
  height: 500px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.mm-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}

.mm-img-card:hover img {
  transform: scale(1.05);
}

.mm-img-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 28px;
  background: linear-gradient(0deg, rgba(10, 20, 50, 0.9), transparent);
  text-align: left;
}

.mm-img-title {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  margin: 0;
  text-align: left;
}

.mm-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  text-align: left;
}

.mm-heading em {
  font-size: 14px;
  color: #666;
  font-style: normal;
}
/* =========================
MOBILE MEGA MENU DESIGN
========================= */

@media (max-width: 991px) {
  /* hide dropdown by default */

  .mega-dropdown .dropdown-menu {
    display: none !important;

    opacity: 1 !important;

    visibility: visible !important;

    transform: none !important;

    position: static !important;

    width: 100% !important;
  }

  /* show when active */

  .mega-dropdown.show .dropdown-menu {
    display: block !important;
  }

  /* remove desktop animation conflict */

  .mega-dropdown > .dropdown-menu {
    opacity: 1 !important;

    visibility: visible !important;

    transform: none !important;
  }
  .mm-wrap {
    display: block;
    padding: 15px;
  }
  .mm-content.active {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
  .mm-content {
    padding: 15px;
  }
  .mm-img-card {
    display: none;
  }
  @media (max-width: 991px) {
    .mm-wrap {
      display: block;
    }

    /* tab button style */

    .mm-tab {
      display: block;
      width: 100%;
      background: #eef1f5;
      border-radius: 12px;
      padding: 14px 16px;
      margin-bottom: 8px;
      font-weight: 500;
    }

    /* active tab */

    .mm-tab.active {
      background: #dde3ea;
    }

    /* content hidden by default */

    .mm-content {
      display: none;
      padding: 12px 10px;
      background: var(--white-color);
      border-radius: 12px;
      margin-bottom: 10px;
    }

    /* show active content */

    .mm-content.active {
      display: block;
    }

    .mm-img-card {
      display: none; /* mobile clean look */
    }
  }
}

/* banner */

/* .ban {
  width: 100%;
  min-height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.ban-sec {
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
  z-index: 2;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.bg-zoom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  animation: zoomEffect 15s ease-in-out infinite alternate;
  will-change: transform;
  background-image: url(../img/Dynamicviewwithpodium_1.webp);
}

.ban-sec::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.4) 30%,
    rgba(0, 0, 0, 0.15) 55%,
    rgba(0, 0, 0, 0) 75%
  );
  z-index: 2;
}
.bg-zoom::before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  background: url(../img/banner-bg-shape-1.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 116px;
  z-index: 9;
}

.ban-sec > *:not(.bg-zoom) {
  position: relative;
  z-index: 3;
}

.ban-cont {
  padding-top: 30px;
  padding-bottom: 50px;
}
.ban-btn {
  display: flex;
  gap: 20px;
  justify-content: center;
} */

.title {
  font-size: 45px !important;
  color: var(--secondary-color);
  font-family: var(--default-font);
  /* text-transform: capitalize; */
  white-space: normal;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  /* letter-spacing: -2px; */
}
.title-white {
  font-size: 45px !important;
  color: var(--white-color);
  font-family: var(--default-font);
  /* text-transform: capitalize; */
  white-space: normal;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  letter-spacing: -2px;
}
.title-sm {
  font-size: 32px !important;
  color: var(--white-color);
  font-family: var(--default-font);
  /* text-transform: capitalize; */
  white-space: normal;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
}
.title-white span {
  font-weight: 400;
  color: #7b8fd4;
}
.title span {
  /* background: var(--secondary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; */
  font-weight: 400;
  color: #7b8fd4;
}

.sub-head {
  /* font-size: 18px;
  color: var(--secondary-color);
  font-family: var(--default-font2);
  font-weight: 500;
  font-style: italic;
  position: relative;
  display: inline-block;
  width: 100%;
  width: fit-content;
  border-radius: 100px;
  margin-bottom: 10px !important; */
  display: inline-block;
  background: transparent;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 22px;
  border-radius: 999px;
  margin-bottom: 32px !important;
  letter-spacing: 0.05em;
  font-family: var(--default-font2);
  font-weight: 500;
  font-style: italic;
  box-shadow: var(--box-shadow-bottom-right-wide);
}
.sub-head-white {
  /* font-size: 18px;
  color: var(--secondary-color);
  font-family: var(--default-font2);
  font-weight: 500;
  font-style: italic;
  position: relative;
  display: inline-block;
  width: 100%;
  width: fit-content;
  border-radius: 100px;
  margin-bottom: 10px !important; */
  display: inline-block;
  background: #1a2b45;
  color: #8baabb;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 22px;
  border-radius: 999px;
  margin-bottom: 32px !important;
  letter-spacing: 0.05em;
  box-shadow: var(--box-shadow-bottom-right-wide);
}
.cen {
  display: block;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.para {
  font-size: 80%;
  color: var(--primary-color1);
  font-weight: 500;
  font-family: var(--default-font);
  text-align: left;
  padding-top: 10px;
  line-height: normal;
  line-height: 26px;
  margin-top: 0px !important;
}
.para-light {
  font-size: 80%;
  color: var(--text-color2);
  font-weight: 500;
  font-family: var(--default-font);
  text-align: left;
  padding-top: 10px;
  line-height: normal;
  line-height: 26px;
  margin-top: 0px !important;
}

/* .hero-h1 {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
  line-height: 54px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  color: var(--primary-color);
  text-align: left;
  font-family: var(--default-font);
}

.hero-subheading {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  color: var(--primary-color);
  text-align: left;
  font-family: var(--accent-font);
} */

/* ***************** whatsapp icon *****************  */

.whatsapp-float {
  position: fixed;
  right: 20px;
  /* left side */
  bottom: 20px;
  /* distance from bottom */
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #25d366, #128c7e, #075e54, #34b7f1);
  background-size: 300% 300%;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  z-index: 1000;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  animation: gradientMove 5s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  text-decoration: none;
  color: #fff;
  box-shadow: 3px 3px 15px rgba(18, 140, 126, 0.5);
}

/* Bounce animation */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  /* bounce up 10px */
}

#backToTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: none;
  background: var(--primary);
  color: #fff;
  padding: 5px 16px;
  border-radius: 50%;
  font-size: 24px;
  text-align: center;
  cursor: pointer;
  z-index: 9999;
  transition:
    background 0.3s,
    transform 0.3s;
  border: 3px solid #fff;
  animation: bounce 2s infinite;
  /* apply animation */
}

/* ****************** */

.sticky-top::after {
  width: 100%;
  height: 3px;
  background: linear-gradient(332deg, #901007, #113391, #901007);
  background-size: 300% 300%;
  animation: gradientMove 3s ease infinite;
  content: "";
  left: 0;
  right: 0;

  bottom: 0;
  z-index: 5;
  position: absolute;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Custom Cursor */
/* .cursor {
  width: 100px;
  height: 100px;
  border: 2px solid white;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.2s;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(2px);
} */

.social-buttons {
  position: absolute;
  z-index: 2;
  left: 100px;
  right: initial;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  color: var(--secondary-color);
}
.social-buttons a {
  color: var(--secondary-color);
  text-decoration: none;
}
.social-buttons a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}
.social-buttons .social-button {
  font-size: 18px;
  line-height: 1.6667em;
  margin: 0 20px;
}
.mid-tx {
  font-size: 218px;
  letter-spacing: -0.03em;
  order: 1;
  color: #ffffff;
}

/* banner */

.mid-ban {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #000;
  padding: 120px 0px;
}

.flowmap-deformation-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.flowmap-deformation-wrapper canvas {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.body-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: 40px 0px 00px 0px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ── Left ── */
.hero-title {
  /* font-size: clamp(32px, 5.5vw, 72px); */
  font-size: 90px;
  font-weight: 900;
  line-height: 1.08;
  color: rgba(255, 255, 255, 0.18);
  animation: fadeUp 1s ease forwards;
  position: relative;
  z-index: 2;
  font-family: var(--default-font);
  padding-top: 50px;
  width: 100%;
  display: inline-block;
  -webkit-background-clip: text;
  background-color: transparent;
  background-image: linear-gradient(340deg, #00000000 15%, #d1d1d1 100%);
  -webkit-text-fill-color: transparent;
  -webkit-tap-highlight-color: transparent;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    color: rgba(255, 255, 255, 0.85);
  }
}

.video-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
}

.video-btn {
  width: 70px;
  height: 70px;
  background: #000;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* triangle icon */

.play-icon {
  width: 0;
  height: 0;
  border-left: 18px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

/* animated ring */

.video-btn::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #a020f0;
  animation: ripple 1.8s infinite;
}

/* second ring delay */

.video-btn::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #a020f0;
  animation: ripple 1.8s infinite;
  animation-delay: 0.9s;
}

/* keyframes */

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* .play-icon {
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid #a855f7;
  margin-left: 5px;
} */

.video-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  max-width: 230px;
}

/* ── Right ── */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* Get Started button */
.btn-get {
  display: flex;
  align-items: center;
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  border: none;
  background: none;
}

.btn-label {
  background: #12101e;
  color: #fff;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-right: none;
  border-radius: 50px 0 0 50px;
  white-space: nowrap;
}

.btn-arrow {
  background: #a855f7;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 50px 50px 0;
  transition: background 0.2s;
  font-size: 20px;
  color: #fff;
}
.btn-get:hover .btn-arrow {
  background: #9333ea;
}
.btn-right {
  float: inline-end;
}

/* Reviews */
.reviews {
  display: flex;
  align-items: center;
  gap: 4px;
}

.avatars {
  display: flex;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2.5px solid #a855f7;
  margin-right: -12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #d8b4fe;
  background: #1e1030;
}
.avatar:nth-child(2) {
  background: #0f1e30;
  color: #93c5fd;
  border-color: #7c3aed;
}
.avatar:nth-child(3) {
  background: #1a102e;
  color: #c4b5fd;
  border-color: #6d28d9;
}

.review-info {
  margin-left: 22px;
}
.review-count {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.review-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 40px;
  }
  .hero-title {
    font-size: clamp(28px, 8vw, 48px);
  }
}

/* video start */

/* MAIN SECTION — tall scroll area (200vh) for smooth effect */
.rt-video-wrapper {
  position: relative;
  width: 100%;
  height: 180vh;
  padding: var(--pad-top2);
}

/* Sticky container: video area stays fixed during scroll */
.sticky-video-container {
  position: sticky;
  top: 0;
  width: 100%;
  /* height: 100vh; */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

/* VIDEO WRAP — responsive base, expands on scroll */
.rt-video-wrap {
  position: relative;
  width: 68%;
  height: 500px;
  /* border-radius: 48px; */
  overflow: hidden;
  transition: all 0.03s linear;
  will-change: width, height, border-radius;
  transform-origin: center center;
  box-shadow: var(--box-shadow-bottom-right-wide) !important;
}

/* Video element */
.w-background-video {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: var(--box-shadow-bottom-right);
}

.w-background-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* Dark overlay for text readability */
.rt-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );

  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  transition: background 0.1s linear;
}

/* Play/Pause Button — elegant glassmorphism, responsive */
.rt-video-button {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  background: rgba(20, 20, 28, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 60px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: var(--box-shadow-bottom-right);
}
.rt-video-button:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.6);
}
.rt-video-button img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}
[hidden] {
  display: none !important;
}

/* HEADING WRAPPER — starts at TOP and moves to CENTER on scroll */
.rt-video-heading-wrapper {
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  z-index: 20;
  pointer-events: none;
  transition: all 0.03s linear;
  will-change: top, transform;
  transform: translateY(0);
}

.rt-container-small {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.rt-video-heading {
  text-align: center;
  will-change: transform;
}

.rt-video-heading h2 {
  /* font-size: clamp(1.8rem, 6vw, 3.8rem); */
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #e8ecf5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.08s linear,
    letter-spacing 0.05s linear;
  padding: 0 10px;
  font-family: var(--default-font);
}

/* scroll hint indicator - responsive */
.scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  letter-spacing: 1.5px;
  background: rgba(0, 0, 0, 0.55);
  padding: 8px 20px;
  border-radius: 40px;
  backdrop-filter: blur(5px);
  z-index: 25;
  font-weight: 400;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.4s;
  font-family: monospace;
}

/* ========== FULLY RESPONSIVE STYLES ========== */
@media (max-width: 1024px) {
  .rt-video-wrap {
    width: 75%;
    height: 450px;
    border-radius: 40px;
  }
  .rt-video-heading-wrapper {
    top: 10%;
  }
  .rt-video-button {
    width: 48px;
    height: 48px;
    bottom: 20px;
    right: 20px;
  }
  .rt-video-button img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 768px) {
  .rt-video-wrap {
    width: 85%;
    height: 380px;
    border-radius: 32px;
  }
  .rt-video-heading-wrapper {
    top: 8%;
  }
  .rt-video-heading h2 {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem);
    line-height: 1.25;
  }
  .rt-container-small {
    padding: 0 20px;
  }
  .scroll-hint {
    font-size: 10px;
    padding: 6px 16px;
    bottom: 15px;
    white-space: nowrap;
  }
  .rt-video-button {
    width: 44px;
    height: 44px;
    bottom: 16px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .rt-video-wrap {
    width: 92%;
    height: 280px;
    border-radius: 24px;
  }
  .rt-video-heading-wrapper {
    top: 6%;
  }
  .rt-video-heading h2 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    letter-spacing: -0.01em;
  }
  .rt-container-small {
    padding: 0 16px;
  }
  .scroll-hint {
    font-size: 8px;
    padding: 5px 12px;
    bottom: 12px;
    white-space: nowrap;
    letter-spacing: 1px;
  }
  .rt-video-button {
    width: 40px;
    height: 40px;
    bottom: 12px;
    right: 12px;
  }
  .rt-video-button img {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 380px) {
  .rt-video-heading h2 {
    font-size: clamp(1.2rem, 4.8vw, 1.5rem);
  }
  .scroll-hint {
    font-size: 7px;
    padding: 4px 10px;
  }
}

/* landscape mode adjustments */
@media (max-height: 600px) and (orientation: landscape) {
  .rt-video-wrap {
    height: 260px;
  }
  .rt-video-heading-wrapper {
    top: 5%;
  }
  /* .rt-video-heading h2 {
    font-size: 1.4rem;
  } */
  .scroll-hint {
    bottom: 8px;
  }
}

/* service */

.mid-sec {
  width: 100%;
  height: auto;
  /* background: linear-gradient(135deg, #e1e8ee, #f0f4f8); */
  padding: var(--pad-top);
  /* margin-top: 100px; */
}

.mt-04 {
  margin-top: 40px;
}

.stc {
  position: -webkit-sticky;
  position: sticky;
  top: 140px;
  transition: top 0.3s ease;
  z-index: 10;
}

/* .service-block {
  position: sticky;
  top: 150px;
  z-index: 1;
  background: #fff;
    padding: 50px 30px;
    height: auto;
    margin-bottom: 20px;
} */

.service-block {
  position: sticky;
  top: 150px;
  z-index: 1;
  height: auto;
  margin-bottom: 20px;
  border-radius: 16px;
  background-color: #f2f3f7;
  background-color: #f2f3f7;
  border-radius: 1rem;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden; /* keeps overlay inside */
  box-shadow: var(--box-shadow-bottom-right);
}
/* .service-block::after{
  position: relative;
} */

/* Light overlay */
.service-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.2); */
  z-index: 0;
}

/* Keep inner content above overlay */
.service-block > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 767px) {
  .service-block {
    height: auto;
  }
}
.service-content {
  padding: 50px 20px;
}

.serv-mg {
  width: 100%;
  height: 500px;
  object-fit: cover;
  /* border-radius: 0px 16px 16px 0px; */
}

.service-block:first-child {
  border-top: none;
}

.service-block:nth-child(2) {
  z-index: 2;
}

.service-block:nth-child(3) {
  z-index: 3;
}

.service-block:nth-child(4) {
  z-index: 4;
}

.service-block:nth-child(5) {
  z-index: 5;
}

.service-block:nth-child(6) {
  z-index: 6;
}

.service-block:nth-child(7) {
  z-index: 8;
  position: sticky;
  top: 3000px !important;
}

.service-inner {
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  flex-direction: column;
}
@media (min-width: 767px) {
  .service-inner {
    flex-direction: row;
  }
}

.service-image {
  flex: 1;
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  -o-object-fit: cover;
  object-fit: cover;
}

.service-content {
  flex: 1;
  position: relative;
}

.service-number {
  position: unset;
  top: -75px;
  background: #0000000d;
  border-radius: 50%;
  font-weight: bold;
  color: var(--secondary-color);
  width: 55px;
  height: 55px;
  line-height: 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 21px;
  box-shadow: var(--box-shadow-top-left-wide);
}

.title-32 {
  font-weight: 600;
  font-family: var(--default-font);
  color: var(--secondary-color);
  font-size: 26px;
}
.mt-02 {
  margin-top: 20px;
}
.para-desc {
  color: var(--primary-color1);
  font-size: 16px;
  font-family: var(--default-font);
}
@media (max-width: 767.78px) {
  .title-32 {
    margin-top: 3rem;
  }
}

/* counter */

/* Section background */
.who-we-are-section {
  /* background: #f5f7fb; */
  padding: var(--pad-top1);
}
.back-ground {
  background: var(--background-color);
}

/* Left content box */
.who-box {
  /* background: #ffffff; */
  border-radius: 18px;
  padding: 60px 50px;
  box-shadow: var(--box-shadow-top-left-wide);
  background-color: #ffffff0d;
  background-clip: border-box;
  border: 1px solid #a020f0;
}

/* Stats box */
.stats-box {
  /* background: #ffffff; */
  background-color: #ffffff0d;
  background-clip: border-box;
  border: 1px solid #a020f0;
  border-radius: 18px;
  padding: 60px 40px;
  /* box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05); */
  box-shadow: var(--box-shadow-bottom-right-wide);
}

/* Counter number */
.counter {
  font-size: 48px;
  font-weight: 700;
  color: var(--white-color);
  font-family: var(--default-font);
}

/* Counter text */
.stats-box p {
  font-size: 14px;
  color: #c4c7d8;
  margin-top: 5px;
}

/* ─── Section ─── */
.partners-section {
  min-height: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
}

/* ─── Badge ─── */

.title .accent {
  color: #7b8fd4;
}

/* ─── Corner Portraits ─── */
.portrait {
  position: absolute;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #1a2b45;
  background: #162235;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* top-left large */
.portrait-1 {
  width: 70px !important;
  height: 70px;
  top: 40px !important;
  left: 8%;
}

/* top-right large */
.portrait-2 {
  width: 70px !important;
  height: 70px;
  top: 40px;
  right: 8%;
}

/* mid-left */
.portrait-3 {
  width: 70px !important;
  height: 70px;
  top: 140px;
  left: 3%;
}

/* mid-right */
.portrait-4 {
  width: 70px !important;
  height: 70px;
  top: 140px;
  right: 3%;
}

/* ─── Logo Marquee ─── */
.marquee-section {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--white-color);
  padding: 32px 0px 0px 0px;
  position: relative;
  margin-top: auto;
  margin-top: 60px;
}

.marquee-fade-left,
.marquee-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

/* .marquee-fade-left {
  left: 0;
  background: linear-gradient(to right, #0d1628 0%, transparent 100%);
}

.marquee-fade-right {
  right: 0;
  background: linear-gradient(to left, #0d1628 0%, transparent 100%);
} */

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 26s linear infinite;
}

.marquee-set {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 0 28px;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #2c3e58;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
}

.logo-item img {
  width: 200px !important;
  height: auto;
  fill: var(--white-color);
  flex-shrink: 0;
  border-radius: 15px;
  /* filter: brightness(0) invert(1) opacity(0.9); */
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .portrait-1,
  .portrait-2,
  .portrait-3,
  .portrait-4 {
    display: none;
  }
  .partners-section {
    padding: 60px 0px 0;
  }
}

/* footer */

.footer {
  background: var(--background-color);
  color: #fff;
  padding: 80px 0px 20px;
}

/* GRID CONTAINER */

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

/* LOGO */

.logo {
  font-size: 32px;
  font-weight: bold;
  color: #c300ff;
}

/* HEADINGS */

.footer-col h4 {
  margin-bottom: 20px !important;
  font-size: 18px;
  color: var(--default-font);
  font-family: var(--default-font);
}

/* TEXT */

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #bbb;
}

/* LIST */

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li a {
  margin-bottom: 10px;
  color: #aaa;
  cursor: pointer;
  transition: 0.3s;
  font-family: var(--default-font);
  font-size: 18px;
}

.footer-col ul li a:hover {
  color: var(--secondary-color2);
}

/* SOCIAL ICONS */

.social-icons {
  margin-top: 20px;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #140021;
  border: 1px solid var(--secondary-color2);
  color: white;
  font-size: 16px;
  transition: 0.3s ease;
  text-decoration: none;
  box-shadow: var(--box-shadow-bottom-right);
}

.social-icons a:hover {
  background: #c300ff;
  transform: translateY(-4px);
}

/* BOTTOM BAR */

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #ffffff22;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
  color: #aaa;
}

.footer-links span {
  margin-left: 20px;
  cursor: pointer;
}

.footer-links span:hover {
  color: #c300ff;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

/* process start */

/* ── HERO ── */
.preocess {
  width: 100%;
  padding: var(--pad-top1);
  overflow: hidden;
}
.mt-04 {
  margin-top: 40px;
}
.scroll-hint {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #bbb;
  font-size: 13px;
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.cards-wrapper {
  position: relative;
  width: 100%;
  height: 320px;
}

.process-card {
  position: absolute;
  top: 0;
  border-radius: 24px;
  padding: 30px 20px 30px;
  overflow: hidden;
  transform-origin: bottom center;
  background: #edecea;
  box-shadow: var(--box-shadow-bottom-right);
  height: auto;
  /* height: 290px; */
  /* NO CSS transition — JS drives every frame */
}
.pro-sec {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.pro-sec-mg {
  width: 53px;
  height: auto;
}

#c1 {
  z-index: 1;
}
#c2 {
  z-index: 2;
}
#c3 {
  z-index: 3;
}
#c4 {
  z-index: 4;
}

.title-22 {
  font-size: 22px;
  color: var(--secondary-color);
  line-height: 1.2;
  margin-bottom: 14px;
  font-weight: 500;
}
.para-desc-sm {
  font-size: 13.5px;
  color: var(--primary-color1);
  line-height: 1.72;
  font-family: var(--default-font);
}
.card-num-wrap {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
}
.card-num-bg {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  /* background: rgba(255, 255, 255, 0.55); */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  box-shadow: var(--box-shadow-bottom-right);
}

.footer-space {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 15px;
}

/*  */

/* ── HERO ── */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  background: #f9f9f7;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 900;
  color: #111;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-align: center;
  padding: 0 20px;
}
.hero p {
  font-size: 15px;
  color: #999;
}
.scroll-hint {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #bbb;
  font-size: 13px;
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* cta */
.cta-sec {
  padding: var(--pad-top1);
  position: relative;
  background: #f0f0ee;
}

.cta-section {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cta-new-part {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.ticker-bg {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-bg.top {
  top: 0;
}
.ticker-bg.bottom {
  bottom: 0;
}
.ticker-track {
  display: inline-flex;
  gap: 40px;
  animation: tickerLeft 48s linear infinite;
}
.ticker-bg.bottom .ticker-track {
  animation: tickerRight 48s linear infinite;
}

.ticker-word {
  font-size: 280px;
  font-weight: 900;
  letter-spacing: -3px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px #c0bdb5;
  user-select: none;
  line-height: 1;
}
.ticker-word.filled {
  color: #c0bdb5;
  -webkit-text-stroke: 0;
}

@keyframes tickerLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes tickerRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.cta-card {
  background: #1a1a1a;
  border-radius: 24px;
  padding: 48px 48px 40px;
  width: 90%;
  max-width: 680px;
  position: relative;
  z-index: 2;
  /* margin: 110px 0; */
  position: absolute;
  box-shadow: var(--box-shadow-bottom-right);
  border: 1px solid var(--secondary-color2);
  top: 20%;
}

.cta-subtitle {
  font-size: 16px;
  color: #999;
  margin-bottom: 8px;
}

.cta-title {
  font-size: 58px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 32px;
}

.cta-divider {
  height: 1px;
  background: #333;
  margin-bottom: 28px;
  margin-top: 28px;
}

.cta-content-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 36px;
}

.cta-image-box {
  width: 90px;
  height: 110px;
  border-radius: 10px;
  background: #2a2a2a;
  flex-shrink: 0;
  overflow: hidden;
}
.cta-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-description {
  font-size: 15px;
  color: #aaa;
  line-height: 1.6;
  text-align: right;
  flex: 1;
}

/* BUTTON WRAPPER */
.btn-wrapper {
  position: relative;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  color: var(--white-color);
  border: none;
  border-radius: 10px;
  padding: 14px 20px;
  font-size: 22px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
  position: relative;
  z-index: 2;
  transition:
    background 0.2s,
    border-radius 0.3s;
  border: 1px solid var(--secondary-color2);
  font-family: var(--default-font);
  box-shadow: var(--box-shadow-bottom-right);
}
/* .cta-btn:hover {
  background: #a93226;
} */
.cta-btn.open {
  border-radius: 0 0 10px 10px;
  box-shadow: var(--box-shadow-top-left);
}

.btn-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.cta-btn.open .btn-arrow {
  transform: rotate(-90deg);
}

/* FORM PANEL — grows upward from button */
.form-panel {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  background: var(--secondary-color2);
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.form-panel.open {
  max-height: 600px;
}

.form-inner {
  padding: 2px 28px 20px;
  background: #1f1f1f;
  border-radius: 10px 10px 0 0;
  transform: translateY(20px);
  opacity: 0;
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
    opacity 0.4s ease 0.1s;
  box-shadow: var(--box-shadow-top-left);
  border: 1px solid var(--secondary-color2);
}
.form-panel.open .form-inner {
  transform: translateY(0);
  opacity: 1;
  z-index: 999;
  position: relative;
}

.form-panel-title {
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 3px;
  font-family: var(--default-font);
}
.form-panel-sub {
  font-size: 12px;
  color: #666;
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}
.form-group.half {
  margin-bottom: 0;
}
.form-group label {
  font-size: 10px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: #2a2a2a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px 12px;
  color: #fff;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  transition: border 0.2s;
  resize: none;
  box-shadow: var(--box-shadow-bottom-right);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--secondary-color2);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555;
}
.form-group select option {
  background: #2a2a2a;
}

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  margin-top: 20px;
  transition: background 0.2s;
  font-family: inherit;
  border: 1px solid var(--secondary-color2);
  box-shadow: var(--box-shadow-bottom-right);
}
.submit-btn:hover {
  background: var(--secondary-color2);
  box-shadow: var(--box-shadow-top-left);
}

.submit-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

/* SUCCESS */
.success-msg {
  display: none;
  text-align: center;
  padding: 16px 0 8px;
}
.success-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1e3a1e;
  color: #4caf50;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 20px;
}
.success-msg h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.success-msg p {
  color: #666;
  font-size: 12px;
  line-height: 1.6;
}

/* blog start */
.blog {
  padding: var(--pad-top1);
}
.section {
  padding: 0px 30px 0px 120px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

/* Slider */
.slider-container {
  position: relative;
}

.slider-track-wrap {
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Card */
.card1 {
  flex: 0 0 calc(25% - 18px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
  cursor: pointer;
}

.card-meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  min-height: 130px;
}

.card-title {
  font-size: 20px !important;
  height: 70px;
}

.card-date-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.card-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary-color2);
  flex-shrink: 0;
}

.card1:hover .card-title,
.card1:hover .card-date-row {
  color: var(--secondary-color2) !important;
}
.card1:hover .tag {
  background-color: var(--white-color);
  color: var(--secondary-color2) !important;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}
.tag {
  display: inline-flex;
  align-items: center;
  background: var(--secondary-color2);
  color: #fff;
  border-radius: 6px;
  padding: 5px 11px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  box-shadow: var(--box-shadow-bottom-right);
}
span.tag {
  color: var(--accent);
}

.card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background: #edecea;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.card:hover .card-image img {
  transform: scale(1.04);
}

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #aaa;
}

/* Nav arrows */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f0f0ee;
  border: 1px solid var(--secondary-color2);
  color: var(--secondary-color2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
  box-shadow: var(--box-shadow-top-left);
}
.nav-btn:hover {
  background: var(--secondary-color2);
  border-color: var(--secondary-color2);
  color: #fff;
  box-shadow: var(--box-shadow-bottom-right);
}
.nav-btn svg {
  width: 18px;
  height: 18px;
}
.nav-btn.prev {
  left: -23px;
}
.nav-btn.next {
  right: -23px;
}
.blog .nav-btn.prev {
  left: -23px;
  top: 73%;
}
.blog .nav-btn.next {
  right: -23px;
  top: 73%;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

/* normal dots */
.dot {
  width: 30px;
  height: 6px;
  border-radius: 50px;
  background: #444;
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* active dot */
.dot.active {
  width: 80px;
  background: var(--secondary-color2);
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .card {
    flex: 0 0 calc(33.33% - 16px);
  }
  .section {
    padding: 48px 32px 64px;
  }
}
@media (max-width: 768px) {
  .card {
    flex: 0 0 calc(50% - 12px);
  }
  .section {
    padding: 40px 24px 56px;
  }
  .nav-btn.prev {
    left: -12px;
  }
  .nav-btn.next {
    right: -12px;
  }
}
@media (max-width: 480px) {
  .card {
    flex: 0 0 100%;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.slider-track-wrap {
  overflow: hidden;
  padding-right: 80px;
}

/* service strat */

.service {
  width: 100%;
  border-radius: 20px;
  padding: var(--pad-top2);

  overflow: hidden;
  box-sizing: border-box;
}

/* .adoxin-svc-wrap .svc-progress-track {
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.07);
  border-radius: 2px;
  margin-bottom: 1.4rem;
  overflow: hidden;
}
.adoxin-svc-wrap .svc-progress-fill {
  height: 100%;
  width: 0%;
  background: #1a1916;
  border-radius: 2px;
  transition: width 0.1s linear;
} */

.adoxin-svc-wrap .svc-viewport {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.adoxin-svc-wrap .svc-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adoxin-svc-wrap .svc-card {
  position: absolute;
  background: var(--background-color2);
  border-radius: 20px;
  border: 0.5px solid var(--secondary-color2);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition:
    transform 0.48s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.48s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.48s ease;
  will-change: transform, opacity;
  box-sizing: border-box;
  box-shadow: var(--box-shadow-top-left);
}

.adoxin-svc-wrap .svc-card.svc-pos-center {
  z-index: 10;
  opacity: 1;
  cursor: default;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.adoxin-svc-wrap .svc-card.svc-pos-l1 {
  z-index: 7;
  opacity: 0.8;
}
.adoxin-svc-wrap .svc-card.svc-pos-r1 {
  z-index: 7;
  opacity: 0.8;
}
.adoxin-svc-wrap .svc-card.svc-pos-l2 {
  z-index: 4;
  opacity: 0.4;
}
.adoxin-svc-wrap .svc-card.svc-pos-r2 {
  z-index: 4;
  opacity: 0.4;
}
.adoxin-svc-wrap .svc-card.svc-pos-l3 {
  z-index: 2;
  opacity: 0.14;
}
.adoxin-svc-wrap .svc-card.svc-pos-r3 {
  z-index: 2;
  opacity: 0.14;
}
.adoxin-svc-wrap .svc-card.svc-pos-hidden {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.adoxin-svc-wrap .svc-card-title {
  font-weight: 500;
  color: var(--primary-color);
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.adoxin-svc-wrap .svc-card-desc {
  color: var(--text-color1);
  line-height: 1.65;
}
.adoxin-svc-wrap .svc-read-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.adoxin-svc-wrap .svc-read-pill {
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  color: var(--primary-color);
  font-family: inherit;
  background: transparent;
  cursor: pointer;
  transition: background 0.18s;
  white-space: nowrap;
}
.adoxin-svc-wrap .svc-read-pill:hover {
  background: rgba(0, 0, 0, 0.05);
}
.adoxin-svc-wrap .svc-arr {
  border-radius: 50%;
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1916;
  flex-shrink: 0;
}
.adoxin-svc-wrap .svc-divider {
  border: none;
  border-top: 0.5px solid rgba(0, 0, 0, 0.08);
  margin: 0;
}
.adoxin-svc-wrap .svc-feat {
  color: var(--text-color1);
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
}
.adoxin-svc-wrap .svc-feat:last-child {
  border-bottom: none;
}

/* NAV */
.adoxin-svc-wrap .svc-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 1.4rem;
}
.adoxin-svc-wrap .svc-nav .svc-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0.5px solid rgba(0, 0, 0, 0.15);
  background: var(--white-color);
  color: #000;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.18s,
    transform 0.1s;
  font-family: inherit;
  line-height: 1;
  box-shadow: var(--box-shadow-top-left);
}
.adoxin-svc-wrap .svc-nav .svc-nav-btn:hover {
  background: var(--secondary-color2);
  box-shadow: var(--box-shadow-bottom-right);
  color: var(--white-color);
}
.adoxin-svc-wrap .svc-nav .svc-nav-btn:active {
  transform: scale(0.93);
}

.adoxin-svc-wrap .svc-nav .svc-dots {
  display: flex;
  gap: 7px;
  align-items: center;
}
.adoxin-svc-wrap .svc-nav .svc-dots .svc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #444;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  padding: 0;
  display: block;
}
.adoxin-svc-wrap .svc-nav .svc-dots .svc-dot.svc-dot-active {
  width: 24px;
  border-radius: 4px;
  background: var(--secondary-color2);
}

.adoxin-svc-wrap .svc-view-all-row {
  display: flex;
  justify-content: center;
  margin-top: 1.8rem;
}
.adoxin-svc-wrap .svc-view-all-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1a1916;
  color: #faf9f7;
  border: none;
  border-radius: 999px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.18s;
}
.adoxin-svc-wrap .svc-view-all-btn:hover {
  opacity: 0.82;
}

/* techno start */

.section-container {
  /* max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 2rem 8rem 2rem; */
  padding: var(--pad-top2);
  position: relative;
}

/* animated gradient orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}
.orb-1 {
  width: 400px;
  height: 400px;
  background: #5f3bff;
  top: -100px;
  left: -150px;
}
.orb-2 {
  width: 500px;
  height: 500px;
  background: #ff3b7c;
  bottom: -150px;
  right: -100px;
  opacity: 0.2;
}
.orb-3 {
  width: 300px;
  height: 300px;
  background: #00d4ff;
  top: 40%;
  left: 40%;
  opacity: 0.15;
}

/* header style */
.tech-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
/* .badge {
  display: inline-block;
  background: rgba(59, 75, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1.2rem;
  border-radius: 60px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border: 1px solid rgba(59, 75, 255, 0.4);
  margin-bottom: 1.5rem;
  color: #b9c8ff;
}
.tech-header h1 {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, #b0c4ff, #7c8eff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
} */
.tech-header .sub {
  font-size: 1.2rem;
  color: #9aa9c7;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.5;
  font-weight: 400;
}

/* GRID LAYOUT — extraordinary mosaic */
.stack-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.8rem;
  position: relative;
  z-index: 3;
}

/* universal card style */
.tech-card {
  background: transparent;
  backdrop-filter: blur(12px);
  border-radius: 2rem;
  border: 1px solid var(--secondary-color2);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  overflow: hidden;
  position: relative;
  /* box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.5); */
  box-shadow: var(--box-shadow-bottom-right-wide);
}
.tech-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: var(--secondary-color2);
  box-shadow: var(--box-shadow-top-left-wide);
  /* background: rgba(20, 28, 45, 0.75); */
}

.card-inner {
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* icon wrapper with glow */
.icon-wrap {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.icon-glow {
  filter: drop-shadow(0 0 6px rgba(90, 150, 255, 0.6));
}
.tech-name {
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  background: linear-gradient(120deg, #fff, #cbd5ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.tech-desc {
  /* color: #b9c3e0;
  font-size: 0.95rem;
  line-height: 1.5; */
  margin-bottom: 1.6rem;
  /* flex: 1; */
}
.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.tag {
  background: var(--secondary-color2);
  padding: 0.25rem 0.9rem;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 500;
  border: 0.5px solid rgba(100, 140, 255, 0.5);
  backdrop-filter: blur(4px);
  color: #ccdbff;
}
.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--secondary-color2);
  text-decoration: none;
  transition: 0.2s;
  margin-top: 0.5rem;
  letter-spacing: 0.3px;
}
.learn-more i {
  transition: transform 0.2s;
}
.learn-more:hover {
  color: white;
  gap: 12px;
}
.learn-more:hover i {
  transform: translateX(5px);
}

/* specific grid placements */
.card-react {
  grid-column: span 4;
}
.card-htmlcss {
  grid-column: span 4;
}
.card-flutter {
  grid-column: span 4;
}
.card-wp {
  grid-column: span 6;
}
.card-extra {
  grid-column: span 6;
}

/* extra special card: additional tools */
.extra-tools {
  background: linear-gradient(
    135deg,
    rgba(30, 40, 70, 0.7),
    rgba(10, 15, 30, 0.8)
  );
  border-left: 3px solid #4c6eff;
}
.tools-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.8rem;
}
.tool-item {
  background: var(--background-color2);
  border-radius: 40px;
  padding: 0.4rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid #2a3655;
}
.tool-item i {
  font-size: 1.1rem;
  color: var(--secondary-color2);
}

/* floating glow effect */
.tech-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(100, 140, 255, 0.1),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.tech-card:hover::before {
  opacity: 1;
}

/* responsive magic */
@media (max-width: 1100px) {
  .stack-mosaic {
    gap: 1.2rem;
  }
  .tech-name {
    font-size: 1.6rem;
  }
}
@media (max-width: 860px) {
  .stack-mosaic {
    grid-template-columns: repeat(6, 1fr);
  }
  .card-react,
  .card-htmlcss,
  .card-flutter,
  .card-wp,
  .card-extra {
    grid-column: span 6;
  }
  .tech-header h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 560px) {
  .section-container {
    padding: 3rem 1.2rem;
  }
  .card-inner {
    padding: 1.5rem;
  }
  .icon-wrap {
    font-size: 2.4rem;
  }
}

/* bottom decorative wave */
.wave-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  opacity: 0.15;
  pointer-events: none;
}
.wave-decoration svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 90px;
}

/* contact page*/

.ban-title {
  display: inline-block;
  -webkit-background-clip: text;
  background-color: transparent;
  /* background-image: linear-gradient(
    284deg,
    var(--primary-color) 100%,
    var(--primary-color) 100%
  ); */
  background-image: linear-gradient(284deg, #00000000 3%, #d1d1d1 100%);
  -webkit-text-fill-color: transparent;
  -webkit-tap-highlight-color: transparent;
  font-size: 70px;
  font-family: var(--default-font);
  font-weight: 800;
}
html.dark body .ban-title {
  display: inline-block;
  -webkit-background-clip: text;
  background-color: transparent;
  background-image: linear-gradient(284deg, #00000000 3%, #d1d1d1 100%);
  -webkit-text-fill-color: transparent;
  -webkit-tap-highlight-color: transparent;
}
.breadcrumb p {
  margin-top: 0px !important;
  color: var(--white-color);
}
span.separator-link {
  color: var(--white-color);
}
.banner-layout-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 120px 0px;
  /* border: 1px solid #e3caff; */
  background-color: transparent;
  /* background-image: radial-gradient(at top left, #e3caff 0%, #f5f5f5 50%); */
  /* background-image:
    radial-gradient(
      at top left,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.15) 25%,
      transparent 45%
    ),
    radial-gradient(at top left, #e3caff 0%, #f5f5f5 50%); */
  /* background-image:
    radial-gradient(
      at top left,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.15) 25%,
      transparent 45%
    ),
    radial-gradient(at top left, #e3caff 0%, #f5f5f5 50%); */
  /* background-image:
    radial-gradient(
      at top left,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.15) 30%,
      transparent 55%
    ),
    radial-gradient(
      at top right,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.12) 28%,
      transparent 55%
    ),
    radial-gradient(at top left, #e3caff 0%, #f5f5f5 60%); */

  background-image: radial-gradient(at top left, #1f1f1f 0%, #0e0e0e 50%);

  padding: 0px 0px 0px 0px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
html.dark body .banner-layout-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 120px 0px;
  border: 1px solid #1f1f1f;
  background-color: transparent;
  background-image: radial-gradient(at top left, #1f1f1f 0%, #0e0e0e 50%);
  padding: 0px 0px 0px 0px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.banner-layout::before {
  content: "";
  position: absolute;
  background-color: transparent;
  background-image: radial-gradient(
    at bottom center,
    var(--secondary-color2) 0%,
    #00000000 50%
  );
  width: 100%;
  height: 100%;
  opacity: 0.2;
  top: 0;
  left: 0;
  z-index: -1;
}

.banner-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 120px 0px;
  width: 100%;
  height: 100%;
  padding: 120px 20px 0px 20px;
  color: var(--primary-color);
  position: relative;
  z-index: 1;
}
html.dark body .banner-layout-wrapper::before {
  background-image: url(../img/regular-square-grids-4AL3FJ8.webp);
}
.banner-layout-wrapper::before {
  content: "";
  position: absolute;
  background-image: url(../img/regular-square-grids-4AL3FJ8-light.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  top: 0;
  left: 0;
  z-index: -1;
}
.animated {
  animation-duration: var(--animation-normal);
}

.breadcrumb {
  display: flex;
  flex-direction: row;
  gap: 5px 5px;
  align-items: center;
  font-size: 16px;
}
.breadcrumb a {
  font-weight: normal;
  color: var(--secondary-color2);
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.breadcrumb p {
  margin-top: 0px !important;
}

/* cont-sec */

.contact-section {
  padding: var(--pad-top);
}

/* .contact-container1 {
  margin: auto;
  display: flex;
  gap: 40px;
} */

/* LEFT BOX */

.contact-info-box {
  padding: 50px;
  border-radius: 25px;
  border: 1px solid var(--secondary-color2);
  background-color: transparent;
  background-image: radial-gradient(at top left, #e3caff 0%, #f5f5f5 50%);
  /* display: flex;
  flex-direction: column; */
  gap: 20px 20px;
  border: 1px solid var(--secondary-color2);
  color: var(--primary-color);
  padding: 31px 30px 30px 30px;
  box-shadow: var(--box-shadow-bottom-right);
}

.mini-title {
  width: fit-content !important;
  margin-bottom: 20px !important;
}

.contact-info-box p {
  color: #aaa;
  margin-bottom: 40px !important;
}

/* ICON ITEM */

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background-image: radial-gradient(at top left, #e3caff 0%, #f5f5f5 50%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--secondary-color2);
  box-shadow: 0 0 18px #a020f055;
}

.info-item small {
  color: var(--text-color2);
  font-family: var(--default-font);
}

.info-item h4 {
  color: var(--secondary-color);
  font-family: var(--default-font);
  font-size: 20px;
}

/* RIGHT FORM */

.contact-form-box {
  /* flex: 1.4; */
  /* background: #0a0a0a; */
  padding: 50px;
  border-radius: 25px;
  border: 1px solid #a020f0;
  background-color: transparent;
  background-image: radial-gradient(at top left, #e3caff 0%, #f5f5f5 50%);
  display: flex;
  flex-direction: column;
  gap: 20px 20px;
  color: var(--primary-color);
  padding: 31px 30px 30px 30px;
  box-shadow: var(--box-shadow-bottom-right);
}

.contact-form-box h2 {
  margin-bottom: 20px !important;
  font-size: 36px !important;
}

.contact-section .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-section input,
textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-radius: 30px;
  padding: 15px;
  color: var(--white-color);
  border: 1px solid var(--secondary-color2);
  box-shadow: var(--box-shadow-bottom-right);
  font-family: 13px;
}

.contact-section textarea {
  border-radius: 20px;
  height: 140px;
  resize: none;
  margin-bottom: 20px;
}

/* BUTTON */

/* .submit-btn {
  background: linear-gradient(90deg, #a020f0, #ff00ff);
  border: none;
  padding: 16px 40px;
  color: white;
  font-weight: bold;
  border-radius: 40px;
  cursor: pointer;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  transition: 0.3s;
} */

/* .submit-btn:hover {
  transform: scale(1.05);
} */

/* RESPONSIVE */

@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }
}

/* map start */

.map-section {
  padding: var(--pad-top1);
  background: var(--background-color2);
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08); */
}

/* iframe full responsive */

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Tablet */

@media (max-width: 992px) {
  .map-wrapper {
    height: 420px;
  }
}

/* Mobile */

@media (max-width: 576px) {
  .map-wrapper {
    height: 300px;
    border-radius: 16px;
  }
}

/* about page */
.about {
  padding: var(--pad-top);
  position: relative;
}
.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 40px;
  margin-top: 40px;
}

.check-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-color1);
  font-family: var(--default-font);
}

.check-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--secondary-color2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  color: var(--white-color);
  font-size: 14px;
  transition: 0.3s ease;
}

.check-item:hover .check-icon {
  background: #7c3aed;
  color: #fff;
}

.about-layout {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
}

.card-about {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 425px;
  height: 100%;
  gap: 20px;
  padding: 20px 20px 20px 20px;
  background-color: transparent;
  background-image: radial-gradient(
    at top left,
    var(--accent-color-3) 0%,
    var(--accent-color-4) 50%
  );
  color: var(--primary-color);
  box-shadow: var(--box-shadow-top-left);
  transition: all 0.6s;
  border-radius: 25px;
}

.card-about-wrapper {
  padding: 0px 20px 20px 0px;
  background-color: var(--secondary);
  border-radius: 0px 0px 30px 0px;
}
.image-container img {
  border-radius: 25px;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-img-layout {
  width: 50%;
  max-width: 100%;
  position: relative;
}

.image-container {
  display: flex;
  max-width: 100%;
  max-height: 100%;
  position: relative;
}
.about-img {
  max-width: 100%;
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center;
}
.card-about .counter {
  font-size: 80px;
  font-weight: 700;
  color: #00000000;
  -webkit-text-stroke-width: 2px;
  stroke-width: 2px;
  -webkit-text-stroke-color: var(--secondary-color2);
  stroke: var(--secondary-color2);
  font-family: var(--default-font1);
}

/* testimonials */

.section-wrapper {
  padding: var(--pad-top1);
}

/* ── TOP ROW ── */
.top-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 24px;
  margin-bottom: 40px;
}

/* Stats Card */
.stats-card {
  background-image: radial-gradient(
    at top left,
    var(--accent-color-3) 0%,
    var(--accent-color-4) 50%
  );
  border: 1.5px solid var(--secondary-color2);
  border-radius: 20px;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: var(--box-shadow-bottom-right-wide);
}

.avatars-row {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: space-between;
}
.avatars-sec {
  display: flex;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2.5px solid var(--white);
  margin-right: -12px;
  overflow: hidden;
  background: var(--purple-light);
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviews-label {
  margin-left: 24px;
  font-family: var(--default-font);
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-color1);
  line-height: 1.3;
}
.reviews-label span {
  display: block;
  font-size: 15px;
  color: var(--body);
  font-weight: 500;
}

.stats-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stat-box {
  background: var(--background-color2);
  /* border: 1px solid var(--secondary-color2); */
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--box-shadow-bottom-right-wide);
  margin-bottom: 10px;
}
.stat-box .num {
  font-family: var(--default-font);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
}
.stat-box .lbl {
  font-size: 13px;
  color: var(--primary-color1);
  margin-top: 2px;
}

.tag-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tag {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--card-bg);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.tag-icon {
  width: 20px;
  height: 20px;
  background: var(--secondary-color2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white-color);
}
.tag-icon svg {
  width: 11px;
  height: 11px;
}

/* Headline Card */
.headline-card {
  background-image: radial-gradient(
    at top left,
    var(--accent-color-3) 0%,
    var(--accent-color-4) 50%
  );
  border: 1.5px solid var(--secondary-color2);
  border-radius: 20px;
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  box-shadow: var(--box-shadow-bottom-right-wide);
}
/* .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Syne", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary-color2);
}
.section-label .dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--secondary-color2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-label .dot::after {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--secondary-color2);
  border-radius: 50%;
} */

/* .headline-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--body);
} */

/* ── OWL CAROUSEL ── */
.carousel-wrapper {
  position: relative;
}

.owl-carousel .owl-stage-outer {
  padding: 10px 0 20px;
}

/* Testimonial card */
.testi-card {
  background-image: radial-gradient(
    at top left,
    var(--accent-color-3) 0%,
    var(--accent-color-4) 50%
  );
  /* border: 1.5px solid var(--secondary-color2); */
  border-radius: 20px;
  padding: 30px 28px 28px;
  margin: 0 10px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  box-shadow: var(--box-shadow-bottom-right-wide);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--box-shadow-top-left-wide);
}

.stars {
  display: flex;
  gap: 3px;
}
.stars svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-color);
}

.author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.author-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--secondary-color2);
  flex-shrink: 0;
  box-sizing: var(--box-shadow-top-left-wide);
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-name {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 700;
  /* color: var(--ink); */
}
.author-role {
  font-size: 13px;
  color: var(--text-color1);
  margin-top: 2px;
  font-family: var(--default-font);
}

.quote-icon {
  color: var(--purple);
  opacity: 0.85;
}
.quote-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--secondary-color2);
}

.testi-text {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--primary-color1);
}

/* Owl nav dots */
.owl-dots {
  text-align: center;
  margin-top: 10px;
}
.owl-dot span {
  width: 8px !important;
  height: 8px !important;
  background: #d8b4fe !important;
  border-radius: 50% !important;
  margin: 0 4px !important;
  transition: all 0.2s !important;
}
.owl-dot.active span {
  background: var(--secondary-color2) !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* Hide default nav buttons */
.owl-nav {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .top-row {
    grid-template-columns: 1fr;
  }
}

/* why chosse us */

/* PROCESS / TIMELINE */
.why-cho {
  padding: var(--pad-top1);
  position: relative;
  z-index: 2;
  background: var(--background-color2);
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  border-left: 1px solid var(--border);
  position: relative;
  cursor: none;
  transition: all 0.3s;
}
.process-step.active {
  border-left-color: var(--accent);
  /* background: rgba(0, 245, 212, 0.03); */
  background: rgb(160, 32, 240, 0.05);
}
.step-num {
  font-family: var(--default-font);
  font-size: 12px;
  color: var(--text-color);
  min-width: 24px;
  padding-top: 3px;
}

.step-title {
  font-family: var(--default-font);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}
.process-step.active .step-title {
  color: var(--secondary-color2);
}
.step-desc {
  font-size: 15px;
  color: var(--primary-color1);
  line-height: 1.7;
  font-family: var(--default-font);
}
.step-indicator {
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent var(--secondary-color2);
  opacity: 0;
  transition: opacity 0.3s;
}
.process-step.active .step-indicator {
  opacity: 1;
}

/* VISUAL PANEL */
.process-visual {
  height: 400px;
  background: var(--background-color2);
  border: 1px solid var(--secondary-color2);
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--box-shadow-bottom-right-wide);
}
.process-visual canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* misiion start */

.mv {
  /* background: var(--background-color); */
  padding: var(--pad-top);
  position: relative;
  overflow: hidden;
}

html.dark body .mv::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 10% 40%,
      rgba(160, 32, 240, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 70%,
      rgba(14, 29, 104, 0.45) 0%,
      transparent 50%
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 64px,
      rgba(255, 255, 255, 0.02) 64px,
      rgba(255, 255, 255, 0.02) 65px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 64px,
      rgba(255, 255, 255, 0.02) 64px,
      rgba(255, 255, 255, 0.02) 65px
    );
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
}
.orb1 {
  width: 350px;
  height: 350px;
  background: rgba(160, 32, 240, 0.25);
  top: -100px;
  right: -80px;
  animation: d1 10s ease-in-out infinite;
}
.orb2 {
  width: 260px;
  height: 260px;
  background: rgba(14, 29, 104, 0.4);
  bottom: 40px;
  left: -60px;
  animation: d2 13s ease-in-out infinite;
}
@keyframes d1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-30px, 40px);
  }
}
@keyframes d2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -30px);
  }
}

/* MAIN CARDS */
.mv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}
@media (max-width: 640px) {
  .mv-cards {
    grid-template-columns: 1fr;
  }
}

.mv-card {
  padding: 44px 38px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--secondary-color2);
  background-color: transparent;
  background-image: radial-gradient(
    at top left,
    var(--accent-color-3) 0%,
    var(--accent-color-4) 50%
  );
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 40px;
  border-radius: 30px;
}
.mv-card:hover {
  /* background: rgba(2, 2, 2, 0.52); */
  border-color: var(--secondary-color2);
  box-shadow:
    var(--box-shadow-top-left-wide), var(--box-shadow-bottom-right-wide);
  transform: translateY(-5px);
}
.mv-card::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border-top: 1.5px solid var(--secondary-color2);
  border-left: 1.5px solid var(--secondary-color2);
  top: 20px;
  left: 20px;
  opacity: 0.3;
  transition: all 0.35s;
}
.mv-card::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  border-bottom: 1.5px solid var(--secondary-color2);
  border-right: 1.5px solid var(--secondary-color2);
  bottom: 20px;
  right: 20px;
  opacity: 0.15;
  transition: all 0.35s;
}
.mv-card:hover::before {
  opacity: 1;
  width: 65px;
  height: 65px;
}
.mv-card:hover::after {
  opacity: 0.6;
}

.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 0% 0%,
    rgba(160, 32, 240, 0.14) 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.mv-card:hover .card-glow {
  opacity: 1;
}

.c-num {
  font-family: var(--default-font);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--secondary-color2);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.c-num::after {
  content: "";
  flex: 0 0 22px;
  height: 1px;
  background: var(--secondary-color2);
  opacity: 0.35;
}

.c-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: var(--box-shadow-top-left);
  transition:
    box-shadow 0.3s,
    border-color 0.3s;
  border-radius: 12px;
}
.mv-card:hover .c-icon {
  border-color: rgba(160, 32, 240, 0.55);
  box-shadow: var(--box-shadow-bottom-right-wide);
}

/* .c-lbl {
  font-family: "Cormorant Garamond", serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--secondary-color2);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.c-lbl.blue {
  color: #7eb8ff;
}

.c-hdg {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -0.015em;
  position: relative;
  z-index: 1;
} */
/* .c-hdg em {
  font-style: italic;
  color: var(--secondary-color2);
}
.c-hdg em.blue {
  color: #7eb8ff;
} */

/* .c-txt {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.88;
  font-weight: 300;
  position: relative;
  z-index: 1;
} */

/* VALUES */
.mv-vals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}
@media (max-width: 640px) {
  .mv-vals {
    grid-template-columns: 1fr;
  }
}

.mv-val {
  /* background: rgba(2, 2, 2, 0.28); */
  background-color: transparent;
  background-image: radial-gradient(
    at top left,
    var(--accent-color-3) 0%,
    var(--accent-color-4) 50%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  cursor: default;
  border-radius: 0px 30px 30px 0px;
}
.mv-val::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2.5px;
  background: linear-gradient(180deg, var(--secondary-color2), #0e1d68);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.mv-val:hover {
  border-color: rgba(160, 32, 240, 0.3);
  /* background: rgba(2, 2, 2, 0.48); */
  box-shadow: var(--box-shadow-top-left), var(--box-shadow-bottom-right);
  transform: translateY(-3px);
}
.mv-val:hover::before {
  transform: scaleY(1);
}

.v-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  box-shadow: var(--box-shadow-bottom-right);
  border-radius: 12px;
}
.mv-val:hover .v-icon {
  border-color: rgba(160, 32, 240, 0.5);
  box-shadow: var(--box-shadow-top-left);
}

.v-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
}
.v-desc {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.33);
  line-height: 1.78;
  font-weight: 300;
}

/* QUOTE */
.mv-quote {
  background-color: transparent;
  background-image: radial-gradient(
    at top left,
    var(--accent-color-3) 0%,
    var(--accent-color-4) 50%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(160, 32, 240, 0.22);
  box-shadow:
    var(--box-shadow-top-left-wide), var(--box-shadow-bottom-right-wide);
  padding: 40px 44px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  border-radius: 30px;
}
.q-mark {
  font-family: var(--default-font);
  font-size: 90px;
  line-height: 0.75;
  color: var(--secondary-color2);
  opacity: 0.25;
  flex-shrink: 0;
  align-self: flex-start;
}
.q-txt {
  font-family: var(--default-font);
  font-size: clamp(17px, 2.2vw, 22px);
  font-style: italic;
  color: var(--primary-color);
  line-height: 1.68;
  flex: 1;
  min-width: 220px;
}
.q-txt b {
  color: var(--secondary-color2);
  font-style: normal;
  font-weight: 600;
}
.q-sig {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--primary-color1);
  text-transform: uppercase;
  flex-shrink: 0;
  padding-top: 6px;
  border-top: 1px solid var(--secondary-color2);
}

/* service page */

.serv-title {
  /* font-size: clamp(32px, 5.5vw, 72px); */
  font-size: 50px;
  font-weight: 900;
  line-height: 1.08;
  animation: fadeUp 1s ease forwards;
  position: relative;
  z-index: 2;
  font-family: var(--default-font);
  padding-top: 50px;
  width: 100%;
  text-align: start;
  padding-bottom: 40px;
  background-image: linear-gradient(
    284deg,
    #00000000 3%,
    #d1d1d1 100%
  ) !important;
}

.banner-layout.serv-ban {
  display: unset;
  padding: 120px 20px 100px 20px;
}

.services-banner-video {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  box-shadow: var(--box-shadow-bottom-right);
  border-radius: 12px;
}

.services-banner-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* BUTTON */

.video-control-btn {
  position: absolute;
  bottom: 40px;
  right: 40px;

  width: 60px;
  height: 60px;

  border: none;
  background: transparent;
  cursor: pointer;

  z-index: 5;
}

.video-control-btn img {
  width: 100%;
}

/* pointer start */

/* =========================
   SOLUTIONS SECTION
========================= */

.solutions-section {
  /* padding: var(--pad-top1); */
  /* background: #0f1115; */
  position: relative;
}

/* CONTAINER */

.solutions-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

/* =========================
   LEFT SIDE
========================= */

.solutions-left {
  width: 45%;

  position: sticky;
  top: 120px;

  flex-shrink: 0;
}

/* =========================
   RIGHT SIDE GRID
========================= */

.solutions-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

/* CARD */

/* .solution-card {
  background: #171a20;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px;
  border-radius: 26px;
  transition: 0.4s ease;
  box-shadow: var(--box-shadow-bottom-right);
}

.solution-card:hover {
  transform: translateY(-8px);

  border-color: var(--accent);

  background: #1b1f26;
  box-shadow: var(--box-shadow-top-left);
} */

.solution-card {
  background-image: radial-gradient(
    at top left,
    var(--accent-color-3) 0%,
    var(--accent-color-4) 50%
  );
  /* border: 1.5px solid var(--secondary-color2); */
  border-radius: 20px;
  padding: 30px 25px 25px;
  margin: 0 10px;
  /* display: flex;
  flex-direction: column;
  gap: 18px; */
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  box-shadow: var(--box-shadow-bottom-right-wide);
}
.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--box-shadow-top-left-wide);
}

/* CARD TITLE */

.solution-card h4 {
  font-size: 32px !important;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199px) {
  .solutions-wrapper {
    gap: 50px;
  }

  .solutions-left {
    width: 360px;
  }
}

@media (max-width: 991px) {
  .solutions-wrapper {
    flex-direction: column;
  }

  .solutions-left {
    width: 100%;
    position: relative;
    top: 0;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
  }
}

/* benefits sections */

.benfits {
  padding: var(--pad-top2);
  position: relative;
}

/* ── Grid ── */
.services-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 28px;
  align-items: end;
  position: relative;
  margin-top: 40px;
}

/* ── Card ── */
.services-values-card {
  background: transparent;
  position: relative;
  /* overflow: hidden; */
  /* border-left: 1px dashed #aaa; */
  border-left: 1px dashed var(--accent);
  border-bottom-left-radius: 40px;
  position: relative;
  /* box-shadow: var(--box-shadow-bottom-right); */
}

.services-values-card-circle {
  background-color: var(--accent);
  border-radius: 50%;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0;
  left: -6.5px;
  z-index: 9;
}

.services-values-card-typography {
  padding: 28px 24px 36px 30px;
}

.services-values-card-icon-wrap {
  background-color: var(--white);
  border: 1px solid var(--accent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin-bottom: 22px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  box-shadow: var(--box-shadow-bottom-right);
}

.services-values-card-icon {
  max-width: 38px;
  max-height: 38px;
}

.services-values-card-title-description {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services-values-card-title {
  font-family: var(--default-font);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.2px;
  color: var(--almost-black);
}

.services-values-card-image-wrap {
  border-radius: 20px 20px 20px 38px;
  overflow: hidden;
}

.services-values-card-image {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

/* Card 1 — sabse chota */
.services-values-card.one .services-values-card-image {
  height: 180px;
}

/* Card 2 — medium */
.services-values-card.two .services-values-card-image {
  height: 230px;
}

/* Card 3 — sabse bada */
.services-values-card.three .services-values-card-image {
  height: 280px;
}

/* case study start */

.case-study {
  padding: var(--pad-top);
}

/* ── Carousel wrapper ── */
.carousel-section {
  position: relative;
  margin-top: 40px;
}

/* ── CARD — full bg image ── */
.carousel-card {
  border-radius: 20px;
  overflow: hidden;
  height: 415px;
  position: relative;
  display: block;
}

/* full background image */
.card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 0;
}

/* dark gradient overlay so text is readable */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20, 35, 18, 0.88) 0%,
    rgba(20, 35, 18, 0.65) 55%,
    rgba(20, 35, 18, 0.18) 100%
  );
  z-index: 1;
}

/* content on top */
.card-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 30px 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* max-width: 560px; */
  max-width: 100%;
}

.card-tag {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-family: var(--default-font2);
}

.card-headline {
  font-family: var(--default-font);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 400;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 6px;
}

.card-subheadline {
  font-family: var(--default-font);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 24px;
}

.card-body-second {
  font-size: 15px;
  line-height: 1.72;
  color: var(--primary-color1);
  margin-bottom: 32px;
}

.card-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font-size: 14px;
}

/* ── Owl nav ── */
.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 16px;
  margin: 0 !important;
}

.case-study .owl-prev,
.owl-next {
  pointer-events: all;
  margin: 0 !important;
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  border: 0.5px solid rgba(0, 0, 0, 0.15);
  background: var(--white-color) !important;
  color: #000 !important;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.18s,
    transform 0.1s;
  font-family: inherit;
  line-height: 1;
  box-shadow: var(--box-shadow-top-left);
}

.owl-prev:hover,
.owl-next:hover {
  background: var(--accent) !important;
  transform: scale(1.08) !important;
}

.owl-prev span,
.owl-next span {
  display: none;
}
.owl-prev::after {
  content: "‹";
  font-size: 28px;
  line-height: 1;
}
.owl-next::after {
  content: "›";
  font-size: 28px;
  line-height: 1;
}

.owl-dots {
  display: none;
}

/* partial peek - dim inactive */
.owl-item:not(.active) .carousel-card {
  opacity: 0.5;
  transform: scale(0.96);
  transition:
    opacity 0.4s,
    transform 0.4s;
}
.owl-item.active .carousel-card {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 0.4s,
    transform 0.4s;
}

/* faq start */

.faq {
  padding: var(--pad-top1);
}

/* ── Body: left accordion + right image ── */
.faq-body {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 40px;
}

/* ── LEFT: Accordion ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  /* background: #f2f2f2;
  border-radius: 10px;
  overflow: hidden;
  transition: background 0.2s; */

  background-image: radial-gradient(
    at top left,
    var(--accent-color-3) 0%,
    var(--accent-color-4) 50%
  );
  /* border: 1.5px solid var(--secondary-color2); */
  border-radius: 20px;
  padding: 10px;
  margin: 0 10px;
  /* display: flex;
  flex-direction: column;
  gap: 18px; */
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  box-shadow: var(--box-shadow-bottom-right-wide);
}

.faq-item.open {
  background: var(--accent);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  text-align: left;
}

/* + icon circle */
.faq-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  transition:
    border-color 0.2s,
    color 0.2s,
    transform 0.35s;
}

.faq-item.open .faq-icon {
  border-color: var(--white-color);
  color: var(--white-color);
  transform: rotate(45deg);
}

.faq-question-text {
  font-size: 18px !important;
}

/* answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.28s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 22px 20px 64px;
  font-size: 14px;
  line-height: 1.72;
  color: var(--white-color);
}

/* ── RIGHT: Image Card ── */
.faq-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  height: 100%;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

/* dark overlay bottom */
.faq-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.45) 50%,
    rgba(10, 10, 10, 0.05) 100%
  );
  z-index: 1;
}

.faq-card-content {
  position: relative;
  z-index: 2;
  padding: 28px 26px;
}

.faq-card-title {
  font-size: 60px !important;
  color: var(--white-color);
}
.serv-cont-txt .title {
  color: var(--white-color) !important;
}

/* .faq-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e8341a;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 11px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}

.faq-card-btn:hover {
  background: #c9290f;
} */

/* service-Cta */

.serv-cta {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: #091433;
  background-image: url("../img/footer-cta.png");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* OVERLAY */

.serv-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(9, 20, 51, 0.62);
  z-index: -1;
}

/* OPTIONAL */

.serv-cta > * {
  position: relative;
  z-index: 2;
}
.serv-cont-txt {
  padding: 140px 0px 0px 0px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  font-family: "DM Sans", sans-serif;
}

.feature-list li.highlighted {
  color: var(--accent);
  font-weight: 500;
}
.dot1 {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}
.highlighted .dot {
  background: var(--accent);
}

/* testimonial page */

.testi-mo {
  padding: var(--pad-top) !important;
}
.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-top: 40px;
}

/* blog page */
.new-blog {
  padding: var(--pad-top) !important;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  margin-top: 40px;
}
.blog-item-card {
  background-image: radial-gradient(
    at top left,
    var(--accent-color-3) 0%,
    var(--accent-color-4) 50%
  );
  /* border: 1.5px solid var(--secondary-color2); */
  border-radius: 20px;
  padding: 30px 28px 28px;
  margin: 0 10px;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  box-shadow: var(--box-shadow-bottom-right-wide);
}

/* blog details */

/* =========================
           HERO
        ========================= */

.blog-hero {
  position: relative;
  height: 620px;
  overflow: hidden;
}

.blog-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
}

.hero-content {
  position: absolute;
  left: 0;
  bottom: 70px;
  width: 100%;
  z-index: 2;
  color: #fff;
}

.blog-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  margin-bottom: 20px;
  box-shadow: var(--box-shadow-bottom-right);
}

.hero-content h1 {
  font-size: 62px;
  line-height: 1.15;
  max-width: 900px;
  margin-bottom: 22px;
  font-family: var(--default-font);
  color: var(--white-color);
}

.blog-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 15px;
}

/* =========================
           BLOG CONTENT
        ========================= */

.blog-details-wrap {
  padding: 100px 0;
}

.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.blog-content {
  /* background: #fff;
  padding: 50px;
  border-radius: 24px; */

  /* background-image: radial-gradient(
    at top left,
    var(--accent-color-3) 0%,
    var(--accent-color-4) 50%
  ); */
  /* border: 1.5px solid var(--secondary-color2); */
  /* border-radius: 20px; */
  /* padding: 30px 28px 28px; */
  margin: 0 10px;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  /* box-shadow: var(--box-shadow-bottom-right-wide); */
}

.blog-content h2 {
  font-size: 34px;
  margin-bottom: 20px;
  margin-top: 40px;
}

.blog-content p {
  margin-bottom: 24px;
  color: #555;
  font-size: 17px;
}

.blog-content blockquote {
  padding: 30px;
  background: #faf6e9;
  border-left: 5px solid var(--accent);
  border-radius: 12px;
  margin: 35px 0;
  font-size: 20px;
  font-weight: 600;
  color: #111;
  font-family: var(--default-font);

  background-image: radial-gradient(
    at top left,
    var(--accent-color-3) 0%,
    var(--accent-color-4) 50%
  );
  /* border: 1.5px solid var(--secondary-color2); */
  border-radius: 20px;
  padding: 30px 28px 28px;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  box-shadow: var(--box-shadow-bottom-right-wide);
}

.blog-inner-image {
  margin: 40px 0;
  border-radius: 20px;
  overflow: hidden;
}
.blog-inner-image img {
  width: 100%;
}

/* =========================
           SIDEBAR
        ========================= */

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-box {
  /* background: #fff;
  border-radius: 24px;
  padding: 30px; */

  background-image: radial-gradient(
    at top left,
    var(--accent-color-3) 0%,
    var(--accent-color-4) 50%
  );
  /* border: 1.5px solid var(--secondary-color2); */
  border-radius: 20px;
  padding: 30px 28px 28px;
  margin: 0 10px;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
  box-shadow: var(--box-shadow-bottom-right-wide);
}

.sidebar-box h3 {
  font-size: 24px !important;
  margin-bottom: 25px !important;
}

.recent-post {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.recent-post:last-child {
  margin-bottom: 0;
}

.recent-post img {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  object-fit: cover;
}

.recent-post h4 {
  font-size: 16px;
  line-height: 1.4;
  color: #111;
  margin-bottom: 8px;
}

.recent-post span {
  font-size: 13px;
  color: #777;
}

.cat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cat-list a {
  padding: 10px 18px;
  border-radius: 100px;
  background: #f1f1f1;
  color: #111;
  font-size: 14px;
  transition: 0.3s;
  border: 1px solid var(--accent);
}

.cat-list a:hover {
  background: var(--accent);
  color: #fff;
}

/* =========================
           RESPONSIVE
        ========================= */

@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 46px;
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .blog-hero {
    height: 500px;
  }

  .hero-content {
    bottom: 40px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .blog-content {
    padding: 30px 22px;
  }

  .blog-content h2 {
    font-size: 28px;
  }

  .blog-content p {
    font-size: 15px;
  }
}

.terms {
  padding: var(--pad-top);
}
.trm-txt {
  font-size: 32px !important;
}
.career-page {
  padding: var(--pad-top2);
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }
}
.open {
  margin-top: 60px;
}

.openings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 767px) {
  .openings-grid {
    grid-template-columns: 1fr;
  }
}
.p-new {
  font-size: 18px;
  font-family: var(--default-font1);
  margin-bottom: 20px !important;
}
.contact-section input,
.contact-section textarea,
.contact-section .form-select {
  width: 100%;
  background-color: transparent !important;
  border: 1px solid var(--secondary-color2) !important;
  border-radius: 30px !important;
  padding: 15px 18px !important;
  color: var(--white-color) !important;
  box-shadow: var(--box-shadow-bottom-right);
  font-size: 13px;
  outline: none;
  margin-top: 15px;
}

.contact-section .form-select {
  height: 56px;
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #fff 50%),
    linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 24px,
    calc(100% - 16px) 24px;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

.contact-section .form-select option {
  background: #111 !important;
  color: #fff !important;
}

.contact-section input::placeholder,
.contact-section textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.contact-section textarea {
  min-height: 150px;
  resize: none;
}
.contact-section input[type="file"].form-control {
  width: 100%;
  height: 56px;
  line-height: 38px;
  background: transparent !important;
  border: 1px solid var(--secondary-color2) !important;
  border-radius: 30px !important;
  padding: 8px 18px 8px 8px !important;
  color: var(--white-color) !important;
  box-shadow: var(--box-shadow-bottom-right);
  font-size: 13px;
  cursor: pointer;
}

.contact-section input[type="file"].form-control::file-selector-button {
  height: 40px;
  line-height: 40px;
  margin-left: 5px !important;
  border: none;
  border-radius: 22px;
  padding: 0 22px;
  background: var(--secondary-color2);
  color: #fff;
  cursor: pointer;
}

.contact-section input,
.contact-section textarea,
.contact-section .form-select,
.custom-file-box,
.file-name {
  color: #020202 !important;
}

.contact-section input::placeholder,
.contact-section textarea::placeholder {
  color: rgba(0, 0, 0, 0.55) !important;
}

.contact-section .form-select {
  color: #020202 !important;
}

.contact-section .form-select option {
  color: #020202;
  background: #ffffff;
}

/* Dark Mode */
html.dark body .contact-section input,
html.dark body .contact-section textarea,
html.dark body .contact-section .form-select,
html.dark body .custom-file-box,
html.dark body .file-name,
.dark-mode .contact-section input,
.dark-mode .contact-section textarea,
.dark-mode .contact-section .form-select,
.dark-mode .custom-file-box,
.dark-mode .file-name {
  color: #ffffff !important;
}

html.dark body .contact-section input::placeholder,
html.dark body .contact-section textarea::placeholder,
.dark-mode .contact-section input::placeholder,
.dark-mode .contact-section textarea::placeholder {
  color: rgba(255, 255, 255, 0.65) !important;
}

html.dark body .contact-section .form-select option,
.dark-mode .contact-section .form-select option {
  color: #ffffff;
  background: #111111;
}
.contact-section .form-select {
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent !important;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='black' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 22px center !important;
  background-size: 12px !important;

  padding-right: 50px !important;
}

/* Dark mode select icon white */
html.dark body .contact-section .form-select,
html.dark body .contact-section .form-select,
.dark-mode .contact-section .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E") !important;
}

.pb-m-5 {
  margin-bottom: 40px !important;
}
.pb-m-4 {
  margin-bottom: 40px !important;
}
.cunt-t {
  font-size: 41px !important;
}

/* image scroll */

.right.scroll-on-hover {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: clamp(290px, 55vw, 350px);
}

.image-wrap .top-svg {
  position: absolute;
  top: -14px;
  left: -14px;
  z-index: 3;
  pointer-events: none;
  width: clamp(48px, 10vw, 83px);
  height: auto;
}

.image-wrap .bottom-svg {
  position: absolute;
  bottom: -14px;
  right: -14px;
  z-index: 3;
  pointer-events: none;
  width: clamp(24px, 6vw, 39px);
  height: auto;
}

.image-wrap .image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-wrap .image img {
  width: 100%;
  height: auto;
  display: block;
  transform: translateY(0);
  will-change: transform;
}

/* Desktop hover only */
@media (hover: hover) {
  .image-wrap .image img {
    transition: transform 4s linear;
  }
  .image-wrap:hover .image img {
    transform: translateY(var(--img-offset, -45%));
  }
}

.why-need {
  padding: var(--pad-top2);
}

/* shopify process */

.process {
  padding: var(--pad-top2);
}

.wrapper {
  width: 100%;
}
.hg-t {
  height: 80px;
}

/* ── Grid row ── */
.gd {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  position: relative;
}

/* ── Connector lines ── */
.connector {
  position: absolute;
  top: 33px;
  height: 2px;
  z-index: 0;
}
.connector-arrow {
  position: absolute;
  top: 27px;
  width: 0;
  height: 0;
  z-index: 2;
}

/* Row 1 connectors — purple */
.r1 .connector-1,
.r1 .connector-2 {
  position: absolute;
  height: 0;
  /* border-top: 3px dotted #a020f0;  */
}

.r1 .connector-1 {
  left: calc(33.33% + 4px);
  width: calc(33.34% - 8px);
}

.r1 .connector-2 {
  left: calc(66.66% + 4px);
  width: calc(33.34% - 8px);
}
.r1 .arrow-1 {
  left: calc(66.66% - 4px);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid var(--accent);
}
.r1 .arrow-2 {
  left: calc(33.33% - 4px);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid var(--accent);
}

/* Row 2 connectors — teal (pointing left) */
.r2 .connector-1,
.r2 .connector-2 {
  position: absolute;
  height: 0;
  /* border-top: 3px dotted #a020f0;  */
}

.r2 .connector-1 {
  left: calc(0% + 4px);
  width: calc(33.34% - 8px);
}

.r2 .connector-2 {
  left: calc(33.33% + 4px);
  width: calc(33.34% - 8px);
}
.r2 .arrow-1 {
  right: calc(33.33% - 4px);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 8px solid var(--accent);
}
.r2 .arrow-2 {
  right: calc(66.66% - 4px);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 8px solid var(--accent);
}

/* ── Down arrow between rows ── */
.down-arrow {
  display: flex;
  justify-content: flex-end;
  padding-right: 2px;
  margin: 4px 0;
}
.down-arrow-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.down-arrow-line {
  width: 0;
  height: 22px;
  border-left: 2px dotted var(--accent);
  opacity: 0.4;
}
.down-arrow-head {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--accent);
}

/* ── Card ── */
.sc {
  animation: fadeUp 0.5s ease both;
  position: relative;
  z-index: 1;
}
.sc:nth-child(1) {
  animation-delay: 0s;
}
.sc:nth-child(2) {
  animation-delay: 0.08s;
}
.sc:nth-child(3) {
  animation-delay: 0.16s;
}

.card {
  border: 0.5px solid #ddd;
  border-radius: 14px;
  background-image: radial-gradient(
    at top left,
    var(--accent-color-3) 0%,
    var(--accent-color-4) 50%
  );
  padding: 1.15rem 1.1rem 1.25rem;
  transition:
    border-color 0.22s,
    transform 0.22s,
    box-shadow 0.22s;
  height: 100%;
}
.card:hover {
  border-color: #378add;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(55, 138, 221, 0.1);
}
.card:hover .iw {
  transform: scale(1.1);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.iw {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.22s;
}
.iw i {
  font-size: 22px;
}

.step-badge {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 99px;
}

/* .card-title {
  font-size: 13.5px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 6px;
  line-height: 1.35;
}

.card-desc {
  font-size: 12px;
  color: #666;
  line-height: 1.65;
} */

/* Step 6 special */
.card-live {
  border: 1.5px solid #378add !important;
  background: #e6f1fb !important;
  animation: pulse 2.4s ease-in-out infinite;
}

/* ── Phase legend ── */
.legend {
  display: flex;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #888;
}
.legend-line {
  width: 22px;
  height: 3px;
  border-radius: 2px;
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(55, 138, 221, 0.25);
  }
  60% {
    box-shadow: 0 0 0 8px rgba(55, 138, 221, 0);
  }
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .gd {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .connector,
  .connector-arrow,
  .down-arrow {
    display: none;
  }
  .sc[style*="order"] {
    order: unset !important;
  }
}

.mobile-frm {
  display: none;
}

.form-inner1 {
  padding: 20px 28px 30px;
  background: #1f1f1f;
  border-radius: 10px 10px 0 0;
  transform: translateY(20px);
  transition:
    transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
    opacity 0.4s ease 0.1s;
  box-shadow: var(--box-shadow-top-left);
  border: 1px solid var(--secondary-color2);
  margin-top: 40px;
}

.step-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff, #f8f8ff);
  border: 2px solid rgba(164, 45, 49, 0.15);
  color: var(--accent);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  box-shadow: var(--box-shadow-bottom-right);
  transition: all 0.35s ease;
  z-index: 2;
}

.show-more-btn {
  display: none;
}

@media (max-width: 767px) {
  .mobile-content .para {
    max-height: 0;
    overflow: hidden;
    transition: 0.35s ease;
    margin-top: 0;
  }

  .mobile-content.active .para {
    max-height: 200px;
    margin-top: 12px;
  }

  .show-more-btn {
    display: inline-flex;
    margin-top: 10px;
    background: none;
    border: none;
    color: var(--accent);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-size: 14px;
  }
}

.dd {
  display: flex;
  gap: 10px;
}
.tag i {
  font-size: 22px;
}
.f-df {
  margin-top: 10px;
}

.footer-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-heading i {
  color: #bbb;
  font-size: 18px;
}

.footer-heading strong {
  font-size: 18px;
  font-weight: 600;
}

.f-df p {
  margin: 0;
  padding-left: 28px;
  line-height: 1.7;
}

.img-opoi {
  width: 200px;
  height: auto;
  margin-top: 40px;
  border-radius: 12px;
}

/*.expertise{*/
/*    margin-top:35px;*/
/*}*/

.expertise h5{
    color:#fff;
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
}

.expertise-tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.expertise-tags span{
    padding:10px 18px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    color:#fff;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter:blur(15px);
    transition:.35s;
}

.expertise-tags span:hover{
    transform:translateY(-5px);
    color:#fff;
}

.expertise-tags span:nth-child(1){
    border-color:#00C2FF;
    color:#00C2FF;
}

.expertise-tags span:nth-child(2){
    border-color:#ff4ecd;
    color:#ff4ecd;
}

.expertise-tags span:nth-child(3){
    border-color:#8B5CF6;
    color:#8B5CF6;
}

.expertise-tags span:nth-child(4){
    border-color:#00E5A8;
    color:#00E5A8;
}

.expertise-tags span:nth-child(5){
    border-color:#FFB300;
    color:#FFB300;
}

.expertise-tags span:nth-child(6){
    border-color:#FF6B6B;
    color:#FF6B6B;
}
