@font-face {
  font-family: gilroy;
  src: url("/assets/fonts/gilroy/Gilroy-Black.ttf");
}

@font-face {
  font-family: gilroy-medium;
  src: url("/assets/fonts/gilroy/Gilroy-Medium.ttf");
}



@font-face {
  font-family: 'arcadeclassic';
  src: url('/assets/fonts/arcade_classic_2/ARCADECLASSIC.TTF') format('truetype');
}

@font-face {
  font-family: kalam;
  src: url("/assets/fonts/Kalam/Kalam-Regular.ttf");
}

@font-face {
  font-family: disposabledroid-bb;
  src: url("/assets/fonts/disposabledroid-bb/DisposableDroidBB.ttf");
}

/* * {
  border: 1px solid red;
} */

:root {
  /* ===== COLORS ===== */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-dark: #121212;
  --color-gray: #4a4a4a;
  --color-light-gray: #b9b6b6;
  --color-text-muted: #777777;

  /* BRAND COLORS */
  --color-primary: #f73400;
  --color-primary-dark: #c52900;
  --color-secondary: #36e3bf;
  --color-accent: #4dcea8;
  --color-orange: #ff4d00;
  --color-orange-light: #ff8c00;
  --ax-brand-orange: #f73400;
  --ax-dark-gradient: linear-gradient(90deg, #4a4a4a 0%, #000 100%);

  /* ===== GRADIENTS ===== */
  --gradient-primary: linear-gradient(45deg, #f73400, #36e3bf);
  --gradient-dark: linear-gradient(90deg, #4a4a4a 0%, #000 100%);
  --gradient-orange: linear-gradient(45deg, #ff4d00, #ff8c00);
  --gradient-banner: linear-gradient(36deg, #282629, #1c2227, #f73400 127%);
  --gradient-cta: linear-gradient(to right, #c52900, #000);
   --ink: #0a0a0b;
    --ink-2: #1a1a1d;
    --ink-3: #2a2a2e;
    --smoke: #f4f1eb;
    --accent: #e8572a;
    --gold: #c9a84c;
    --muted: #888480;
    --border: rgba(255,255,255,0.07);

  /* ===== FONTS ===== */
  --font-gilroy: 'gilroy', sans-serif;
  --font-gilroy-medium: 'gilroy-medium', sans-serif;
  --font-kalam: 'kalam', cursive;
  --font-arcade: 'arcadeclassic', sans-serif;
  --font-droid: 'disposabledroid-bb', sans-serif;
  --font-default: 'Arial', sans-serif;

  /* ===== FONT SIZES ===== */
  --fs-xl: 128px;
  --fs-lg: 111px;
  --fs-md: 64px;
  --fs-sm: 48px;
  --fs-xs: 28px;

  /* ===== BORDER RADIUS ===== */
  --radius-sm: 10px;
  --radius-md: 31px;
  --radius-lg: 40px;
  --radius-xl: 55px;

  /* ===== SPACING ===== */
  --padding-sm: 10px;
  --padding-md: 20px;
  --padding-lg: 40px;

  /* ===== TRANSITIONS ===== */
  --transition-fast: 0.3s;
  --transition-smooth: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  --orange: #ff4500;
  --teal: #40e0d0;
  --sphere-grad: radial-gradient(circle at 30% 30%, #dcd8d8 0%, #2a2a2a 100%);
}




body {
  color: #ffffff;
  margin: 0;
  font-family: var(--font-default);
  overflow-x: hidden;
  background: linear-gradient(to right, #4A4A4A, #121212);
}

html {
  overflow-x: hidden;
}

.custom-banner-heading {
  font-family: var(--font-gilroy-medium);
}

/* 
.navbar {
  padding: 1rem;
  color: white;
}

.navbar-brand img {
  margin-right: 10px;
}

.btn-danger {
  background-color: #e33d26;
  border: none;
}

header {
  padding-left: 5rem;
  padding-right: 5rem;
  background-color: #121212;
  
}

.nav-link {
  color: white !important;
  font-size: 25px !important;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  background-color: #121212;
  color: white;
}

.navbar li:hover {
  color: pink;
}

.contactbtn button {
  border-radius: 31px;
  background: var(--primary-CTA-Colour, #c52900);
  color: #fff;
  font-size: 19px;
  font-weight: 400;
  line-height: normal;
  padding: 12px 24px;
}

.contactbtn button:hover {
  background: linear-gradient(to right, #c52900, black);
  border: none;
} */

/* TODO : HEADER STARTS */

/* ─── NAVBAR WRAPPER ─── */
.ax-header-nav {
  /* background-color: #1a1a1a; */
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 var(--padding-lg);
  height: 95px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

.ax-header-nav .ax-header-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ─── LOGO ─── */
.ax-header-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  flex-shrink: 0;

}

.ax-logo-icon {
  position: relative;
width: 136px;
    height: 66px;
  /* background-color: var(--color-white); */
  padding: 5px;
  border-radius: 3px;
}

.ax-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ax-logo-text {
  font-family: var(--font-default);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-white);
  line-height: 1;
  margin-top: 2px;
}

.ax-logo-text span {
  color: var(--color-primary);
}

/* ─── NAV LINKS (desktop) ─── */
.ax-header-links {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.ax-header-links .ax-nav-item {}

.ax-header-links .ax-nav-link {
  /* font-family: var(--font-default); */
  font-family: var(--font-gilroy-medium);
  font-size: 18px;
  /* font-weight: 600; */
  color: var(--color-light-gray);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--transition-fast);
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-decoration: none;
  background: transparent;
}

.ax-header-links .ax-nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--transition-fast);
}

.ax-header-links .ax-nav-link:hover {
  color: var(--color-white);
}

.ax-header-links .ax-nav-link:hover::after {
  width: 60%;
}

.ax-header-links .ax-nav-link.ax-active {
  color: var(--color-primary);
}

.ax-header-links .ax-nav-link.ax-active::after {
  width: 60%;
}

/* ─── CTA BUTTON ─── */
.ax-header-cta {
  flex-shrink: 0;
}

.ax-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-default);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 12px 26px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  box-shadow: 0 4px 20px rgba(247, 52, 0, 0.35);
  white-space: nowrap;
}

.ax-cta-btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(247, 52, 0, 0.5);
  color: var(--color-white);
}

.ax-cta-btn:active {
  transform: translateY(0);
}

/* ─── HAMBURGER TOGGLE (mobile) ─── */
.ax-hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  transition: border-color var(--transition-fast);
}

.ax-hamburger-btn:hover {
  border-color: var(--color-primary);
}

.ax-hamburger-btn .ax-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ─── OFFCANVAS PANEL ─── */
.ax-offcanvas {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: #181818;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: right var(--transition-smooth);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.ax-offcanvas.ax-open {
  right: 0;
}

.ax-offcanvas-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition-fast),
    visibility var(--transition-fast);
}

.ax-offcanvas-backdrop.ax-open {
  opacity: 1;
  visibility: visible;
}

.ax-offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.ax-offcanvas-close {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-white);
  font-size: 18px;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast);
}

.ax-offcanvas-close:hover {
  background: rgba(247, 52, 0, 0.15);
  border-color: var(--color-primary);
}

.ax-offcanvas-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.ax-offcanvas-links .ax-oc-link {
  display: block;
  font-family: var(--font-default);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-light-gray);
  text-decoration: none;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  transition:
    color var(--transition-fast),
    background var(--transition-fast);
  letter-spacing: 0.02em;
}

.ax-offcanvas-links .ax-oc-link:hover,
.ax-offcanvas-links .ax-oc-link.ax-active {
  color: var(--color-primary);
  background: rgba(247, 52, 0, 0.08);
}

.ax-offcanvas-footer {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.ax-offcanvas-footer .ax-cta-btn {
  width: 100%;
  font-size: 15px;
  padding: 14px 26px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  .ax-header-nav {
    padding: 0 var(--padding-md);
  }

  .ax-header-links {
    display: none;
  }

  .ax-header-cta {
    display: none;
  }

  .ax-hamburger-btn {
    display: flex;
  }
}

@media (max-width: 480px) {
  .ax-header-nav {
    padding: 0 16px;
    height: 64px;
  }
}

/* ─── Demo spacer ─── */
.ax-demo-body {
  height: 200vh;
  background: var(--color-dark);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
}

.ax-demo-note {
  color: rgba(255, 255, 255, 0.15);
  font-size: 13px;
  font-family: var(--font-default);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* TODO : HEADER ENDS */

/* TODO : FOOTER STARTS */
/* ──────────────────────────────────────────
       FOOTER WRAPPER
    ────────────────────────────────────────── */
.ax-footer {
  /* background-color: #efefef; */
  background: linear-gradient(to bottom,#4A4A4A, #121212);
  width: 100%;
  overflow: hidden;
}

/* ──────────────────────────────────────────
       OUTER LAYOUT: left-content | divider | right-panel
    ────────────────────────────────────────── */
.ax-footer-layout {
  display: flex;
  /* min-height: 600px; */
  /* align-items: stretch; */
}

/* ── LEFT CONTENT AREA ── */
.ax-footer-left {
  flex: 1 1 0;
  padding: 20px 48px 0px 52px;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

/* ── VERTICAL DIVIDER ── */
.ax-footer-divider {
  width: 52px;
  flex-shrink: 0;
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ax-footer-divider-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-default);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-white);
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-transform: uppercase;
  user-select: none;
}

/* ── RIGHT PANEL ── */
.ax-footer-right {
  width: 340px;
  flex-shrink: 0;
  /* background-color: #efefef; */
  /* padding: 44px 44px 44px 44px; */
      padding: 20px 44px 0px 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ──────────────────────────────────────────
       TAGLINE
    ────────────────────────────────────────── */
.ax-footer-tagline {
  line-height: 1.1;
}

.ax-footer-tagline .ax-tag-upgradable {
  font-family: "Georgia", cursive;
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 52px);
  color: var(--color-primary);
  font-weight: 400;
}

.ax-footer-tagline .ax-tag-dot1 {
  font-family: "Georgia", cursive;
  font-style: italic;
  font-size: clamp(28px, 3.5vw, 52px);
  color: var(--color-primary);
}

.ax-footer-tagline .ax-tag-affordable {
  font-family: "Courier New", monospace;
  font-size: clamp(26px, 3.2vw, 48px);
  color: var(--color-secondary);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.ax-footer-tagline .ax-tag-dot2 {
  font-family: "Courier New", monospace;
  font-size: clamp(26px, 3.2vw, 48px);
  color: var(--color-secondary);
  font-weight: 700;
}

.ax-footer-tagline .ax-tag-flexible {
  font-family: var(--font-default);
  font-size: clamp(26px, 3.2vw, 48px);
  /* color: var(--color-dark); */
  font-weight: 700;
}

.ax-footer-tagline .ax-tag-dot3 {
  font-family: var(--font-default);
  /* color: var(--color-dark); */
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 48px);
}

/* ──────────────────────────────────────────
       NAV COLUMNS GRID
    ────────────────────────────────────────── */
.ax-footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px 24px;
}

.ax-footer-col-heading {
  /* font-family: var(--font-default); */
  font-family: var(--font-gilroy-medium);
  font-size: 21px;
  font-weight: lighter;
  /* color: var(--color-dark); */
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.ax-footer-col-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ax-footer-col-links li a {
  font-family: var(--font-default);
  font-size:15px;
  /* color: var(--color-gray); */
  color: white;
  text-decoration: none;
  transition: color var(--transition-fast);
  line-height: 1.4;
}

.ax-footer-col-links li a:hover {
  color: var(--color-primary);
}

.custom-sec-footer-text
{
  cursor: pointer;
  text-decoration: none;
  color: white;
}


.custom-sec-footer-text:hover{
   color: var(--color-primary);
}

/* .ax-footer-col-links * {
   color: white;
} */
/* ──────────────────────────────────────────
       RIGHT PANEL CONTENT
    ────────────────────────────────────────── */

/* Logo */
.ax-footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.ax-footer-logo-icon {
  position: relative;
  width: 150px;
  height: 80px;
  /* background-color: var(--color-white); */
  padding: 5px;
  border-radius: 3px;
}

.ax-footer-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ax-footer-logo-name {
  font-family: var(--font-default);
  font-size: 30px;
  font-weight: 800;
  /* color: var(--color-dark); */
  letter-spacing: -0.01em;
}

.ax-footer-logo-name span {
  color: var(--color-primary);
}

/* Description */
.ax-footer-desc {
  font-family: var(--font-default);
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.ax-footer-desc .ax-desc-highlight {
  color: var(--color-primary);
  font-size: 15px;
}


.ax-desc-highlight-footer-sec{
  color: var(--color-white);
   font-size: 17px;
}

.ax-footer-desc .ax-desc-normal {
  /* color: var(--color-dark); */
}

/* Info blocks */
.ax-footer-info-block {
  margin-bottom: 18px;
}

.ax-footer-info-heading {
  font-family: var(--font-default);
  font-size: 20px;
     font-weight: bold;
  /* color: var(--color-dark); */
  margin-bottom: 6px;
}

.ax-footer-info-text {
  font-family: var(--font-default);
  font-size: 15px;
  /* color: var(--color-gray); */
  line-height: 1.6;
  font-weight: lighter;
}

.ax-footer-info-text a {
  /* color: var(--color-gray); */
  color: white;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-fast);
}

.ax-footer-info-text a:hover {
  color: var(--color-primary);
}

/* Social icons */
.ax-footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ax-footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  /* color: var(--color-dark); */
  font-size: 22px;
  text-decoration: none;
  transition:
    color var(--transition-fast),
    transform var(--transition-fast);
}

.ax-footer-social-link:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* ──────────────────────────────────────────
       RESPONSIVE
    ────────────────────────────────────────── */

/* Medium screens: collapse right panel below */
@media (max-width: 1100px) {
  .ax-footer-right {
    width: 280px;
    padding: 44px 28px;
  }
}

@media (max-width: 900px) {
  .ax-footer-layout {
    flex-direction: column;
    min-height: unset;
  }

  .ax-footer-left {
    padding: 40px 28px 36px;
  }

  .ax-footer-divider {
    width: 100%;
    height: 44px;
    writing-mode: horizontal-tb;
    transform: none;
    padding: 0 28px;
  }

  .ax-footer-divider-text {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 12px;
  }

  .ax-footer-right {
    width: 100%;
    padding: 40px 28px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
  }

  .ax-footer-logo-wrap {
    width: 100%;
  }

  .ax-footer-desc {
    width: 100%;
  }

  .ax-footer-info-block {
    flex: 1 1 200px;
    margin-bottom: 0;
  }

  .ax-footer-socials {
    width: 100%;
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .ax-footer-nav-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }
}

@media (max-width: 420px) {
  .ax-footer-nav-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ax-footer-left {
    padding: 32px 20px;
  }

  .ax-footer-right {
    padding: 32px 20px;
  }
}

/* TODO : FOOTER ENDS */

.bar {
  width: 45px;
  height: 600px;
  background-color: #f73400;
  color: white;
  writing-mode: vertical-lr;
  text-align: center;
  margin-left: -2rem;
}

.upgrade-text {
  color: var(--main-brand-colour, #f73400);
  font-family: "Figma Hand";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -2.4px;
}

.affordable-text {
  color: #4dcea8;
  font-family: disposabledroid-bb;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -3.2px;
}

.flexible-text {
  font-family: gilroy-medium;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -2.4px;
  color: #121212;
}

/* Banner */
.banner {
  /* background: linear-gradient(36deg, #282629, #1c2227, #f73400 127%);
   */
  background-image: url('../images/ellipse.svg');
  height: 985px;
}

.text1 {
  color: #ececec;
  font-family: gilroy-medium;
  font-size: 111px;
  line-height: normal;
}

.rotate-g {
  right: 40px;
  display: inline-block;
  transform: rotate(324deg);
  position: relative;
  top: 0;
  font-size: 100px;
  font-family: gilroy-medium;
}

.image-i {
  position: absolute;
  left: 55%;
  bottom: 7%;
}

.magic-c {
  position: relative;
  right: 5%;
}

.text1 span {
  font-family: var(--font-arcade);
  color: #ececec;
  font-size: 110px;
}

.text2 {
  font-family: kalam;
  color: #ececec;
  font-size: 128px;
}

.magic {
  font-family: kalam;
  font-size: 72px;
  font-weight: 100;
  color: #ff4500;
  position: relative;
}

.magic-span {
  display: inline-block;
  position: relative;
}

@media (min-width: 580px) {
  .magic span {
    color: var(--white-colour);
    font-size: 90px;
    font-weight: 100;
  }
}

.magic .wand {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 80px;
  background-color: black;
  border-radius: 10px;
  vertical-align: bottom;
  margin-left: -10px;
  margin-right: 10px;
}

.magic .wand:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
}

.magic .wand:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background-color: yellow;
  border-radius: 50%;
}

.description {
  color: #b9b6b6;
  font-family: system-ui;
  font-size: 28px;
  font-weight: 300;
  text-transform: capitalize;
}

.rectangle p {
  color: rgba(255, 255, 255, 0.7);
  font-family: gilroy-medium;
  font-size: 28px;
  margin: 0px !important;
}

.rectangle-svg {
  /* right: -4rem; */
  right: 0;
  position: relative;
  top: 7rem;
}

.rectangle {
  position: relative;
  top: -12rem;
  /* right: -38%; */
  right: 0;
}

.rectangle img {
  top: 4px;
  right: 4 0%;
  position: relative;
}

.about-columns h1 {
  font-size: 35px;
}

.about-columns p {
  font-size: 20px;
}

.title span {
  color: #444444;
  background: linear-gradient(45deg,
      rgba(247, 52, 0, 0.8),
      rgba(54, 227, 191, 0.8));
  /* Initial gradient */
  background-size: 200% 100%;
  /* Double the size to allow for movement */
  background-position: left center;
  /* Start with the gradient on the left */
  -webkit-background-clip: text;
  background-clip: text;
  transition:
    background-position 0.7s cubic-bezier(0.19, 1, 0.22, 1),
    background-size 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  /* Smooth transition */
}

.title span:nth-child(1) {
  font-size: 130px;
}

.title span:not(:nth-child(1)) {
  font-size: 105px;
}

.title span {
  font-size: 10rem;
  color: black;
  /* Default text color is black */
  background: none;
  -webkit-background-clip: text;
  background-clip: text;
  transition:
    background 0.5s cubic-bezier(0.19, 1, 0.22, 1),
    color 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  /* Smooth transition */
  display: inline-block;
  position: relative;
}

/* Hover on the current span */
.title span:hover {
  color: transparent;
  /* Make the text color transparent on hover */
  background: linear-gradient(45deg,
      #f73400,
      #36e3bf);
  /* Apply gradient on hover */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Ensure gradient fills the text */
  text-fill-color: transparent;
}

/* Also apply hover effect to the next sibling (n+1) */
.title span:hover+span {
  color: transparent;
  background: linear-gradient(45deg,
      #f73400,
      #36e3bf);
  /* Same gradient on n+1 */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.title {
  text-align-last: center;
}




/* ─── SECTION WRAPPER ─────────────────────────────── */

.help-content {
  flex: 1;
  padding: 6rem 3rem 4rem 2rem;
  position: relative;
}

/* ─── HEADING ────────────────────────────────────── */
.help-heading {
  font-family: var(--font-gilroy, "Segoe UI", sans-serif);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--color-light-gray);
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

.help-heading .how-box {
  display: inline-flex;
  align-items: center;
  gap: 0.15em;
  color: var(--color-light-gray);
}

/* The "O" replaced by a small icon/box */
.how-box .letter-o {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(28px, 4vw, 46px);
  height: clamp(28px, 4vw, 46px);
  border: 3px solid var(--color-light-gray);
  border-radius: 6px;
  font-size: 0;
  position: relative;
  margin: 0 2px;
}

.how-box .letter-o::before,
.how-box .letter-o::after {
  content: "";
  position: absolute;
  background: var(--color-light-gray);
}

.how-box .letter-o::before {
  width: 2px;
  height: 55%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.how-box .letter-o::after {
  height: 2px;
  width: 55%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.help-heading .italic-help {
  font-style: italic;
  font-weight: 400;
  color: var(--color-white);
  font-family: Georgia, serif;
}

/* ─── CARDS + ILLUSTRATION ROW ──────────────────── */
.help-row {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.cards-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex: 0 0 auto;
  width: 100%;
  max-width: 440px;
}

/* ─── INFO CARDS ─────────────────────────────────── */
.info-card {
  border-radius: var(--radius-md);
  padding: 1.4rem 1.6rem;
  color: var(--color-white);
  font-size: 0.92rem;
  line-height: 1.6;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.card-ecommerce {
  /* background: linear-gradient(135deg, #c0552a 0%, #a0432a 100%); */
  background: linear-gradient(to right,
      rgba(34, 34, 34, 0),
      rgba(255, 106, 61, 1));
}

.card-cost {
  background: linear-gradient(135deg, #2a7a6b 0%, #226b5e 100%);
  margin-left: 2rem;
  /* slight offset like the design */
}

.info-card .card-title {
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-gilroy, "Segoe UI", sans-serif);
}

.info-card p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.88);
}

/* ─── ILLUSTRATION ───────────────────────────────── */
.illustration-col {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 260px;
}

.illustration-wrapper {
  position: relative;
  width: 100%;
  max-width: 340px;
}

/* SVG-based isometric tech illustration */
.iso-illustration {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* ─── KNOW MORE BUTTON ───────────────────────────── */
.know-more-wrap {
  display: flex;
  justify-content: flex-end;
  padding: 0.5rem 0 1.5rem;
}

.know-more-wrap a {
  text-decoration: none;
  background-color: var(--color-dark);
  color: var(--color-white);
  border: 2px solid var(--ax-brand-orange);
}

.btn-know-more {
  border: 2px solid var(--color-primary);
  color: var(--color-white);
  background: transparent;
  border-radius: var(--radius-xl);
  padding: 0.55rem 1.8rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-default);
}

.btn-know-more:hover {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 0 18px rgba(247, 52, 0, 0.5);
  transform: scale(1.04);
}









/*how -we can-help -you-section*/

.custom-ow-text {
  font-family: var(--font-arcade);
}

.ax-how-we-can-help-u-sec-container {
  padding: 4rem 1rem;
  color: #fff;
  overflow: hidden;
}


.ax-how-we-can-help-u-sec-heading {
  font-size: clamp(1.8rem, 4vw, 5rem);
  text-align: center;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-family: var(--font-gilroy);
}

.ax-how-we-can-help-u-sec-how-box {
  color: white;
  padding: 0 10px;
  border-radius: 4px;
  letter-spacing: 3px;
}

.ax-how-we-can-help-u-sec-italic {
  font-family: var(--font-kalam);
}


.ax-how-we-can-help-u-sec-main-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.ax-how-we-can-help-u-sec-cards-col {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ax-how-we-can-help-u-sec-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: 30px;
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.ax-how-we-can-help-u-sec-card:hover {
  transform: scale(1.02);
}


.ax-how-we-can-help-u-sec-card-ecommerce {
  background: linear-gradient(135deg, rgba(192, 85, 42, 0.3) 0%, rgba(26, 26, 26, 0.8) 100%);
}

.ax-how-we-can-help-u-sec-card-cost {
  background: linear-gradient(135deg, rgba(42, 122, 107, 0.3) 0%, rgba(26, 26, 26, 0.8) 100%);
  margin-left: 2rem;
}


.ax-how-we-can-help-u-sec-icon-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
}

.ax-how-we-can-help-u-sec-icon-box img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.ax-how-we-can-help-u-sec-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.ax-how-we-can-help-u-sec-card-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}


.ax-how-we-can-help-u-sec-illustration-col {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.ax-how-we-can-help-u-sec-iso-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

.ax-how-we-can-help-u-sec-btn-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 3rem;
}

.ax-how-we-can-help-u-sec-btn {
  border: 2px solid var(--color-primary);
  color: #fff;
  text-decoration: none;
  padding: 10px 35px;
  border-radius: 10px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

/* .ax-how-we-can-help-u-sec-btn:hover {
  background: var(--ax-brand-orange);
  box-shadow: 0 0 20px rgba(255, 106, 61, 0.4);
} */


@media (max-width: 992px) {
  .ax-how-we-can-help-u-sec-card-cost {
    margin-left: 0;
  }

  .ax-how-we-can-help-u-sec-main-row {
    flex-direction: column;
  }

  .ax-how-we-can-help-u-sec-illustration-col {
    order: -1;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {

  .ax-how-we-can-help-u-sec-heading {
    font-size: clamp(1.7rem, 4vw, 5rem);

  }

  .ax-how-we-can-help-u-sec-card {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
  }

  .ax-how-we-can-help-u-sec-icon-box {
    min-width: auto;
  }

  .ax-how-we-can-help-u-sec-heading {
    flex-direction: row;
    gap: 5px;
  }

  .ax-how-we-can-help-u-sec-btn-wrap {
    justify-content: center;
  }

  .ax-how-we-can-help-u-sec-how-box {
    color: white;
    padding: 0 0px;
    border-radius: 4px;
    letter-spacing: 3px;
  }
}



















/* ─── BOTTOM BANNER ──────────────────────────────── */
.bottom-banner {
  background: var(--color-white);
  position: relative;
  text-align: center;
  padding: 1.2rem 2rem;
}

/* Torn/wavy top edge */
.bottom-banner::before {
  content: "";
  position: absolute;
  top: -28px;
  left: 0;
  width: 100%;
  height: 30px;
  background: var(--color-white);
  clip-path: polygon(0% 100%,
      0% 60%,
      2% 40%,
      4% 60%,
      6% 30%,
      8% 55%,
      10% 25%,
      12% 50%,
      14% 20%,
      16% 48%,
      18% 15%,
      20% 45%,
      22% 18%,
      24% 50%,
      26% 22%,
      28% 52%,
      30% 18%,
      32% 48%,
      34% 20%,
      36% 50%,
      38% 16%,
      40% 46%,
      42% 18%,
      44% 50%,
      46% 20%,
      48% 52%,
      50% 18%,
      52% 48%,
      54% 20%,
      56% 50%,
      58% 16%,
      60% 46%,
      62% 18%,
      64% 50%,
      66% 22%,
      68% 52%,
      70% 18%,
      72% 48%,
      74% 20%,
      76% 50%,
      78% 16%,
      80% 46%,
      82% 18%,
      84% 50%,
      86% 22%,
      88% 52%,
      90% 18%,
      92% 48%,
      94% 20%,
      96% 50%,
      98% 25%,
      100% 55%,
      100% 100%);
}

.bottom-banner p {
  font-family: var(--font-kalam, cursive);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--color-dark);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.01em;
  margin: 0;
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 991px) {
  .help-content {
    padding: 2.5rem 2rem 1.5rem;
  }

  .help-row {
    flex-direction: column;
    align-items: center;
  }

  .cards-col {
    max-width: 100%;
    width: 100%;
  }

  .card-cost {
    margin-left: 1rem;
  }

  .illustration-col {
    width: 100%;
    min-height: 200px;
  }

  .know-more-wrap {
    justify-content: flex-end;
    padding-right: 0;
  }
}

@media (max-width: 576px) {
  .help-content {
    padding: 2rem 1.2rem 1rem;
  }

  .card-cost {
    margin-left: 0;
  }

  .know-more-wrap {
    justify-content: center;
  }

  .bottom-banner::before {
    top: -20px;
    height: 22px;
  }
}

/* Media Queries */
@media (max-width: 1200px) {
  .navbar {
    padding: 15px 30px;
  }

  .navbar-brand {
    font-size: 20px;
  }

  .nav-link {
    margin-right: 10px;
  }

  .contact-btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  .text1 {
    font-size: 90px;
  }

  .text1 span {
    font-size: 90px;
  }

  .text2 {
    font-size: 100px;
  }

  .magic {
    font-size: 60px;
  }

  .description {
    font-size: 24px;
  }

  .rectangle p {
    font-size: 24px;
  }
}

@media (max-width: 992px) {
  .navbar {
    padding: 10px 20px;
  }

  .navbar-brand {
    font-size: 18px;
  }

  .nav-link {
    margin-right: 8px;
  }

  .contact-btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  .text1 {
    font-size: 70px;
  }

  .text1 span {
    font-size: 70px;
  }

  .text2 {
    font-size: 80px;
  }

  .magic {
    font-size: 50px;
  }

  .description {
    font-size: 20px;
  }

  .rectangle p {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 10px 15px;
  }

  .navbar-brand {
    font-size: 16px;
  }

  .nav-link {
    margin-right: 5px;
  }

  .contact-btn {
    padding: 5px 10px;
    font-size: 10px;
  }

  .text1 {
    font-size: 50px;
  }

  .text1 span {
    font-size: 50px;
  }

  .text2 {
    font-size: 60px;
  }

  .magic {
    font-size: 40px;
  }

  .description {
    font-size: 18px;
  }

  .rectangle p {
    font-size: 18px;
  }

  /* .image-i {
    left: 50%;
  } */
}

@media (max-width: 576px) {
  .navbar {
    padding: 5px 10px;
  }

  .navbar-brand {
    font-size: 14px;
  }

  .nav-link {
    margin-right: 3px;
  }

  .contact-btn {
    padding: 4px 8px;
    font-size: 8px;
  }

  .text1 {
    font-size: 30px;
  }

  .text1 span {
    font-size: 30px;
  }

  .text2 {
    font-size: 40px;
  }

  .magic {
    font-size: 30px;
  }

  .description {
    font-size: 16px;
  }

  .rectangle p {
    font-size: 16px;
  }

  .rotate-g {
    right: 20px;
  }

  /* .image-i {
    left: 40%;
  } */
}

@media (max-width: 376px) {
  .image-i {
    left: 53%;
  }

  .rotate-g {
    right: 20px;
  }

  .magic-span span {
    font-size: 80px;
  }
}

@media (max-width: 325px) {
  .image-i {
    left: 53%;
  }

  .rotate-g {
    right: 20px;
  }

  .magic-span span {
    font-size: 80px;
  }
}

.rectangle-star {
  position: absolute;
}

.rectangle p {
  text-align-last: left;
}


.custom-ax-sec {
  border: 2px solid red;
  border-radius: 23px;
  padding: 10px;
}




.about-para {
  font-size: 15px;
  /* color: black; */
  color: white;
  text-align: center;
}

.about-columns h1 {
  /* color: #000; */
  color: white;
  font-weight: bold;
}

.about-columns p {
  /* color: #777777; */
  color: white;
}

.about-columns {
  /* border-left: 2px solid grey; */
  margin: 20px 0px 20px 0px;
}

.custom-border-left {
  border-left: 2px solid red;
}



@media(max-width:576px) {
  .custom-border-left {
    border-left: 2px solid transparent;
  }

  .custom-border-left {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  }

  .custom-border-bottom-left {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  }

  .custom-ax-sec {
    border: none;
  }

  .about-columns h1 {
    font-size: 25px;
  }

  .custom-img-growth-icon {
    height: 32px !important;
    width: 35px !important;
  }

  .about-columns {
    /* border-left: 2px solid grey; */
    margin: 0px 0px 15px 0px;
  }

  .align-items-center {
    align-items: start !important;
  }

  .about-columns p {
    font-size: 13px;
  }

  .about-para {
    font-size: 13px;
  }
}


.round-image {
  top: 19%;
  position: absolute;
  left: 80%;
}

.round-image img {
  width: 84%;
}

.round-part {
  top: 45%;
  position: absolute;
  left: 63%;
  overflow: hidden;
  width: 30%;
}

.outline-text {
  font-family: var(--font-gilroy);
  font-size: 80px;
  color: transparent;
  -webkit-text-stroke: 1px #ffffff;
  /* font-weight: bold; */
}

.custom-img-growth-icon {
  height: 45px;
  width: 55px;
}

.custom-img-icon-ax {
  height: 100%;
  width: 100%;
}



.main-heading {
  /* font-family: 'Gilroy-Bold'; */
  color: #F73400;
  line-height: 1.2;
}

/* Responsive font using clamp */
.main-heading {
  font-size: clamp(32px, 5vw, 96px);
}

.script-text {
  font-family: 'Kalam';
}

.highlight-text {
  font-family: 'ArcadeClassic';
  font-size: clamp(36px, 7vw, 110px);
}

.outline-text {
  -webkit-text-stroke: 1px #ffffff;
  color: transparent;
}

.custom-seell {
  font-family: var(--font-gilroy);
  font-weight: 300;
}

/* section14 starts */

.fourteensec {
  background-image: url(./images/img14x1.png);
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  background-size: cover;
}

.fourteensec img {
  position: absolute;
  bottom: 24rem;
  left: 72rem;
  width: 20%;
  top: 99rem;
}

.fourteensec p {
  color: var(--white-colour, #ececec);
  font-family: "Kalam";
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -3.2px;
}

.fourteensec p span {
  color: var(--secondary-brand-colour, #36e3bf);
  font-family: "kalam";
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -3.2px;
}

.fourteensec label {
  color: #fff;
  font-size: 40px;
  font-style: normal;
  line-height: 6rem;
}

.fourteensec input {
  padding: 16px 194px 16px 10px;
  align-items: center;
  gap: 10px;
  border: none;
  color: #b9b6b6;
  /* align-self: stretch; */
}

.fourteensec input::placeholder {
  color: #b9b6b6;
  opacity: 1;
}

.fourteensec textarea::placeholder {
  color: #b9b6b6;
  opacity: 1;
}

.fourteensec textarea {
  align-items: center;
  gap: 10px;
  border: none;
  color: #b9b6b6;
  border: none;
}

.submit button {
  display: inline-flex;
  padding: 20px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 55px;
  border: 2px solid var(--Secondary-CTA-stroke, #f73400);
  background: var(--black-gradient-Gradient,
      linear-gradient(90deg, #4a4a4a 0%, #000 100%));
  color: #fff;
  font-family: Gilroy-Medium;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* section14 ends */

/* connect form */
/* Container positioning */
.position-relative {
  position: relative;
  z-index: 1;
}

/* Flower Animation (Form ke piche) */
.flower-animation {
  position: absolute;
  /* top: -50px;
  right: 10px;
  width: 250px; */
  top: -50px;
  right: -59px;
  width: 200px;
  z-index: -1;
  /* Form ke piche bhejne ke liye */
  animation: floatingMagic 6s ease-in-out infinite;
  opacity: 0.8;
}

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

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

/* Form UI Styling */
.connectform {
  background: rgba(255, 255, 255, 0.05);
  /* background: #109a80; */
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  margin-top: 50px;
}

.form-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.form-title span {
  color: #ff4d00;
  /* Orange highlight */
}

/* Input Fields */
.form-control-custom {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #979696;
  color: white;
  padding: 6px 0;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.form-control-custom:focus {
  border-bottom: 1px solid #ff4d00;
}

/* Submit Button */
.btn-submit {
  background: linear-gradient(45deg, #ff4d00, #ff8c00);
  color: white;
  border: none;
  padding: 10px 40px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}

.btn-submit:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 77, 0, 0.4);
}

label {
  font-size: 14px;
  color: #ccc;
  /* margin-bottom: 5px; */
  display: block;
}

/* Sabhi inputs aur textarea ke placeholder ko white karne ke liye */

.form-control-custom::placeholder {
  color: white !important;
  opacity: 0.8;
  /* Thoda sa transparency taaki ekdum chubhe nahi, aap 1 bhi kar sakte hain */
}

/* Firefox ke liye */
.form-control-custom::-moz-placeholder {
  color: white !important;
  opacity: 0.8;
}

/* Internet Explorer 10-11 ke liye */
.form-control-custom:-ms-input-placeholder {
  color: white !important;
}

/* Microsoft Edge ke liye */
.form-control-custom::-ms-input-placeholder {
  color: rgb(203, 202, 202) !important;
  font-size: 10px;
}

@media (max-width: 580px) {
  .flower-animation {
    right: 5%;
    width: 150px;
    overflow: hidden;
  }
}

/* TODO : WHAT IS THE PROCESS */
.process-card {
  background: var(--color-white);
  border-radius: 24px;
  width: 100%;
  /* max-width: 420px; */
  padding: 40px 32px 48px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ===== HEADING ===== */
.process-heading {
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.15;
}

.process-heading .what {
  font-family: var(--font-default);
  font-size: 28px;
  font-weight: 900;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.process-heading .is-the {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: var(--color-dark);
  margin: 0 6px;
}

.process-heading .process {
  font-family: var(--font-default);
  font-size: 28px;
  font-weight: 900;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== STEPS CONTAINER ===== */
.steps-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Vertical line */
.steps-container::before {
  content: "";
  position: absolute;
  left: 92px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: #e0e0e0;
  z-index: 0;
}

/* ===== STEP ROW ===== */
.step-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  padding-bottom: 32px;
}

.step-row:last-child {
  padding-bottom: 0;
}

/* Step label */
.step-label {
  width: 56px;
  flex-shrink: 0;
  text-align: right;
  padding-right: 0;
  padding-top: 10px;
}

.step-label span {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-gray);
  white-space: nowrap;
}

/* Dot column */
.step-dot-col {
  width: 34px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8px;
  z-index: 1;
  position: relative;
}

.step-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-red {
  background: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(247, 52, 0, 0.18);
}

.dot-teal {
  background: var(--color-secondary);
  box-shadow: 0 0 0 4px rgba(54, 227, 191, 0.22);
}

/* Content */
.step-content {
  flex: 1;
  padding-left: 18px;
  padding-top: 2px;
}

.step-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1.5px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  background: #fff;
}

.step-icon svg {
  width: 22px;
  height: 22px;
}

.step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.step-desc {
  font-size: 11.5px;
  color: var(--color-text-muted);
  line-height: 1.55;
  max-width: 400px;
}

@media (min-width: 580px) {
  .process-card {
    padding: 40px 10px 48px;
  }
}

@media (max-width: 580px) {
  .steps-container::before {
    left: 72px;
  }

  .step-row {
    gap: 0px;
  }
}

/* TODO : PICK FROM COLLECTION */
/* ========== SECTION ========== */
.collection-section {
  background: #1a1a1c;
  padding: 70px 0 0;
  overflow: hidden;
}

/* ========== HEADING ========== */
.collection-section-heading {
  font-size: clamp(28px, 4.5vw, 58px);
  font-weight: 800;
  color: var(--color-white);
  text-align: center;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.collection-section-heading .italic-pick {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
  color: var(--color-white);
  margin-right: 6px;
}

/* Glitchy/stencil style for COLLECTION */
.collection-section-heading .stencil-word {
  font-family: var(--font-droid), "Courier New", monospace;
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: 4px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  /* Outline / stencil effect */
  -webkit-text-stroke: 1.5px var(--color-white);
  padding: 0 4px;
}

.section-subtitle {
  text-align: center;
  color: var(--color-light-gray);
  font-size: clamp(13px, 1.6vw, 16px);
  margin-bottom: 32px;
  letter-spacing: 0.2px;
}

/* ========== CTA BUTTON ========== */
.btn-view-templates {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid var(--color-primary);
  border-radius: 50px;
  color: var(--color-white);
  font-size: 15px;
  font-weight: 700;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    box-shadow var(--transition-fast);
  letter-spacing: 0.3px;
  position: relative;
  /* Glow ring like image */
  box-shadow: 0 0 0 4px rgba(247, 52, 0, 0.18);
}

.btn-view-templates:hover {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow:
    0 0 0 6px rgba(247, 52, 0, 0.28),
    0 8px 32px rgba(247, 52, 0, 0.35);
}

/* ========== TEMPLATE GRID ========== */
/* ========== TEMPLATE GRID ========== */
.templates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 columns desktop */
  gap: 18px;
  margin-top: 52px;
  padding: 0 24px;
}

/* Tablet — 2 columns */
@media (max-width: 991px) {
  .templates-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile — 1 column */
@media (max-width: 575px) {
  .templates-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
}

/* ========== CARD ========== */
.template-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #2a2a2d;
  /* fallback if image missing */
  aspect-ratio: 16 / 9;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.template-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

/* ========== IMAGE ========== */
.template-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.35s ease;
}

.template-card:hover .template-img {
  transform: scale(1.04);
}

/* ========== HOVER OVERLAY ========== */
.template-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.1) 50%,
      transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 14px 16px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.template-card:hover .template-overlay {
  opacity: 1;
}

.template-label {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.template-visit {
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 3px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  white-space: nowrap;
  transition: background 0.2s ease;
}

.template-card:hover .template-visit {
  background: rgba(255, 255, 255, 0.3);
}

/* ========== CATEGORY TABS ========== */
.marquee-wrapper {
  background: #111113;
  border-top: 1px solid #2a2a2d;
  margin-top: 48px;
  overflow: hidden;
}

/* MAIN MARQUEE */
.marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* CONTENT */
.marquee-content {
  display: flex;
  width: max-content;
  animation: scrollMarquee 18s linear infinite;
}

/* TEXT STYLE */
.marquee-content span {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--color-light-gray);
  padding: 18px 40px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

/* ANIMATION */
@keyframes scrollMarquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* HOVER PE PAUSE (PRO FEATURE 😎) */
.marquee:hover .marquee-content {
  animation-play-state: paused;
}

/* MOBILE SPEED ADJUST */
@media (max-width: 768px) {
  .marquee-content {
    animation-duration: 25s;
  }
}

/* ========== ROW GAP ========== */
.template-row {
  /* gap: 18px; */
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
  .templates-grid {
    padding: 0 16px;
  }

  .cat-tab {
    padding: 18px 18px;
  }
}

@media (max-width: 767px) {
  .collection-section {
    padding: 48px 0 0;
  }

  .templates-grid {
    padding: 0 12px;
    margin-top: 36px;
  }

  .template-row {
    /* gap: 12px; */
  }

  .template-card {
    border-radius: 10px;
  }

  .category-tabs {
    justify-content: flex-start;
    padding: 0 8px;
  }

  .cat-tab {
    padding: 16px 14px;
    font-size: 13px;
  }

  .category-tabs-wrapper {
    margin-top: 32px;
  }

  .mock-fashion-text {
    font-size: 11px;
  }

  .mock-story-text {
    font-size: 7px;
  }
}

@media (max-width: 480px) {
  .section-heading {
    font-size: 24px;
  }

  .btn-view-templates {
    padding: 12px 28px;
    font-size: 13px;
  }

  .cat-tab {
    padding: 14px 12px;
    font-size: 12px;
  }
}

/* TODO : WHY US */
/* =============================================
     SECTION 1 — WHY ARE WE THE BEST
  ============================================= */
.best-section {
  background: radial-gradient(ellipse at 20% 10%,
      #2e2e34 0%,
      #1c1c20 55%,
      #141416 100%);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Gear deco */
.gear-deco {
  position: absolute;
  top: -30px;
  right: -40px;
  width: clamp(200px, 30vw, 360px);
  height: clamp(200px, 30vw, 360px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.88;
}

/* Heading */
.best-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.best-heading .line {
  display: block;
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -1px;
}

.pixel-word {
  font-family: var(--font-droid), "Courier New", monospace;
  letter-spacing: 2px;
  -webkit-text-stroke: 1px var(--color-white);
}

.italic-best {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 700;
  color: var(--color-primary);
}

/* ---- TABS ---- */
.feat-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.feat-tab-btn {
  padding: 9px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.4px;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.feat-tab-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.85);
}

.feat-tab-btn.active {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #0a2e26;
  font-weight: 700;
}

/* ---- TABLE CARD ---- */
.compare-card {
  background: rgba(48, 48, 56, 0.88);
  border: 1.5px solid rgba(100, 160, 255, 0.28);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
}

/* Category label row */
.compare-table tr.cat-label-row td {
  background: rgba(54, 227, 191, 0.1);
  padding: 10px 32px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-table thead tr th {
  padding: 18px 24px 14px;
  font-size: clamp(12px, 1.6vw, 15px);
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-white);
  background: rgba(30, 30, 36, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.compare-table thead th.col-feature {
  text-align: left;
  width: 34%;
  padding-left: 32px;
}

.compare-table thead th.col-axesell,
.compare-table thead th.col-others {
  text-align: center;
  width: 33%;
}

.compare-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  transition: background var(--transition-fast);
}

.compare-table tbody tr:last-child {
  border-bottom: none;
}

.compare-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

.compare-table tbody td {
  padding: 12px 24px;
  vertical-align: middle;
}

.compare-table tbody td.td-feature {
  font-size: clamp(12px, 1.5vw, 14px);
  color: rgba(255, 255, 255, 0.8);
  padding-left: 32px;
  line-height: 1.4;
}

.compare-table tbody td.td-check {
  text-align: start;
  font-size: clamp(12px, 1.5vw, 14px);
  color: rgba(255, 255, 255, 0.8);
  padding-left: 32px;
  line-height: 1.4;
}


/* Tab panels */
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* Icons */
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}

.icon-check {
  background: var(--color-secondary);
}

.icon-cross {
  background: var(--color-primary);
}

.icon-badge svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  stroke-width: 2.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* TODO : SECTION 2 — WHY CHOOSE US */
.why-section {
  /* background: #141416; */
  padding: 40px 0 88px;
  position: relative;
  overflow: hidden;
}

/* Subtle bg gradient blob */
.why-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle,
      rgba(247, 52, 0, 0.07) 0%,
      transparent 70%);
  pointer-events: none;
}

.why-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle,
      rgba(54, 227, 191, 0.06) 0%,
      transparent 70%);
  pointer-events: none;
}

.why-heading {
  text-align: center;
  margin-bottom: 56px;
}

.why-heading .line1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: -0.5px;
  font-family: var(--font-gilroy-medium);
}

.why-heading .line1 em {
  font-family: var(--font-kalam);
  /* font-style: italic; */
  color: var(--color-primary);
}

.why-heading .sub {
  font-size: clamp(13px, 1.5vw, 15px);
  /* color: rgba(255, 255, 255, 0.42); */
  color: white;
  margin-top: 10px;
  letter-spacing: 0.3px;
}

/* Why card */
.why-card {
  background: rgba(38, 38, 44, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.why-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--color-white);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-icon.teal {
  background: rgba(54, 227, 191, 0.15);
}

.why-icon.red {
  background: rgba(247, 52, 0, 0.15);
}

.why-icon.purple {
  background: rgba(130, 90, 220, 0.15);
}

.why-icon.amber {
  background: rgba(255, 180, 0, 0.15);
}

.why-icon.blue {
  background: rgba(60, 130, 255, 0.15);
}

.why-icon.green {
  background: rgba(40, 200, 120, 0.15);
}

.why-card-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 10px;
  letter-spacing: 0.1px;
}

.why-card-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* Number badge */
.why-num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 48px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  user-select: none;
  font-family: Georgia, serif;
}

/* =============================================
     RESPONSIVE
  ============================================= */
@media (max-width: 991px) {
  .best-section {
    padding: 56px 0 64px;
  }

  .compare-table thead th.col-feature {
    padding-left: 20px;
  }

  .compare-table tbody td.td-feature {
    padding-left: 20px;
  }

  .compare-table tbody td {
    padding: 11px 14px;
  }

  .compare-table tr.cat-label-row td {
    padding: 9px 20px;
  }
}

@media (max-width: 767px) {
  .best-section {
    padding: 40px 0 48px;
  }

  .best-heading {
    margin-bottom: 24px;
    text-align: center;
  }

  .gear-deco {
    width: 140px;
    height: 140px;
    top: -10px;
    right: -16px;
    opacity: 0.5;
  }

  .feat-tabs {
    justify-content: center;
  }

  .compare-card {
    border-radius: 12px;
  }

  .compare-table thead th.col-feature {
    padding-left: 14px;
  }

  .compare-table tbody td.td-feature {
    padding-left: 14px;
    font-size: 12px;
  }

  .compare-table thead tr th {
    padding: 13px 8px 11px;
    font-size: 11px;
  }

  .compare-table tbody td {
    padding: 10px 8px;
  }

  .compare-table tr.cat-label-row td {
    padding: 8px 14px;
    font-size: 10px;
  }

  .icon-badge {
    width: 24px;
    height: 24px;
  }

  .icon-badge svg {
    width: 12px;
    height: 12px;
  }

  .why-section {
    padding: 56px 0 64px;
  }

  .why-heading {
    margin-bottom: 36px;
  }

  .why-card {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .gear-deco {
    width: 110px;
    height: 110px;
  }

  .why-card-title {
    font-size: 15px;
  }

  .why-card-text {
    font-size: 13px;
  }
}

/* TODO : WITH YOU SECTION */
.with-you-section {
  background: #fce8e0;
  /* exact peachy-pink from image */
  position: relative;
  overflow: hidden;
  padding: 64px 0 0;
}

/* ---- decorative corner dots (top-right) ---- */
.deco-dots {
  position: absolute;
  top: 18px;
  right: 20px;
  display: grid;
  grid-template-columns: repeat(4, 8px);
  grid-template-rows: repeat(4, 8px);
  gap: 6px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.deco-dots span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

/* ---- left blue accent bar ---- */
.blue-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: #2563eb;
  border-radius: 0 3px 3px 0;
}

/* =============================================
     LEFT CONTENT
  ============================================= */
.left-content {
  padding: 0 0 64px 0;
  position: relative;
  z-index: 1;
}

/* Heading */

.section-heading {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.15;
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

.section-heading .italic-you {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
  color: var(--color-primary);
}

/* Services list */
.services-list {
  /* list-style: none; */
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  position: relative;
  transition: padding-left var(--transition-smooth);
  list-style: disc !important;
}

.service-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Hover slide-right */
.service-item:hover {
  padding-left: 10px;
}

.service-item:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

.service-item.active {
  padding-left: 10px;
}

.service-item.active .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

.service-item.active .service-name {
  color: var(--color-primary);
}

.service-name {
  font-size: clamp(12px, 1.5vw, 14px);
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: color var(--transition-fast);
  flex: 1;
  line-height: 1.3;
}

.service-arrow {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity var(--transition-fast),
    transform var(--transition-smooth);
  color: var(--color-primary);
}

.service-arrow svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =============================================
     RIGHT — IMAGE PANEL
  ============================================= */
.right-image-panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
}

/* Angled diamond/rhombus frame behind image */
.img-frame-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
}

/* The rhombus/diamond BG shape */
.img-diamond-bg {
  position: absolute;
  inset: -16px -10px -0px -10px;
  background: #d4a89a;
  clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
  border-radius: 4px;
  z-index: 0;
  opacity: 0.55;
}

/* Actual image container */
.img-container {
  position: relative;
  bottom: 50px;
  z-index: 1;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  height: 300px;
  width: 100%;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SVG illustration fallback — team of 3 people working */
.team-illustration {
  width: 100%;
  height: 100%;
  display: block;
}

/* =============================================
     RESPONSIVE
  ============================================= */
@media (max-width: 991px) {
  .with-you-section {
    padding: 52px 0 0;
  }

  .left-content {
    padding-bottom: 48px;
  }

  .section-heading {
    margin-bottom: 36px;
  }
}

@media (max-width: 767px) {
  .with-you-section {
    padding: 40px 0 0;
  }

  .left-content {
    padding-bottom: 36px;
  }

  .section-heading {
    font-size: 32px;
    margin-bottom: 28px;
  }

  .service-name {
    font-size: 12px;
    letter-spacing: 1.4px;
  }

  .service-item {
    padding: 15px 0;
  }

  .right-image-panel {
    margin-top: 8px;
  }

  .img-frame-wrap {
    max-width: 100%;
  }

  .deco-dots {
    top: 10px;
    right: 12px;
  }
}

@media (max-width: 480px) {
  .section-heading {
    font-size: 28px;
  }

  .service-name {
    font-size: 11.5px;
    letter-spacing: 1.2px;
  }
}

/* TODO : WITH YOU SECTIONS ENDS */

/* TODO : TESTIMONIALS SECTION STARTS */
.testimonials-section {
  display: flex;
  min-height: 520px;
  width: 100%;
  overflow: hidden;
}

/* ===== LEFT PANEL — DARK ===== */
.left-panel {
  background: #1e1e1e;
  flex: 0 0 45%;
  display: flex;
  align-items: center;
  padding: 60px 48px;
}

.heading-block {}

.heading-block .line {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.12;
  display: block;
}

.heading-block .highlight {
  color: var(--color-primary);
  font-family: var(--font-droid), "Courier New", monospace;
  font-weight: 900;
  letter-spacing: 2px;
}

.heading-block .italic-word {
  font-style: italic;
  font-weight: 700;
  color: var(--color-white);
  font-family: Georgia, serif;
}

/* ===== RIGHT PANEL — ORANGE ===== */
.right-panel {
  background: var(--color-primary);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 36px 36px;
  overflow: hidden;
  position: relative;
}

/* Cards track */
.cards-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.cards-track {
  display: flex;
  gap: 20px;
  transition: transform var(--transition-smooth);
}

/* ===== TESTIMONIAL CARD ===== */
.tcard {
  background: #ff6633;
  border-radius: 20px;
  padding: 24px 22px;
  flex: 0 0 calc(50% - 10px);
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition-fast);
}

.tcard:hover {
  transform: translateY(-4px);
}

/* Card header */
.tcard-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tcard-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  overflow: hidden;
}

.tcard-avatar svg {
  width: 100%;
  height: 100%;
}

.tcard-meta {}

.tcard-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
}

.tcard-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
}

/* Card body */
.tcard-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
  flex: 1;
}

/* ===== SLIDER DOTS / PROGRESS ===== */
.slider-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 0 4px;
}

.progress-track {
  flex: 1;
  height: 5px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 99px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 99px;
  background: #1e1e1e;
  transition: width var(--transition-smooth);
}

.nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.18);
  color: var(--color-white);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
  flex-shrink: 0;
}

.nav-btn:hover {
  background: rgba(0, 0, 0, 0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .testimonials-section {
    flex-direction: column;
    min-height: auto;
  }

  .left-panel {
    flex: none;
    padding: 48px 32px;
    justify-content: center;
    text-align: center;
  }

  .right-panel {
    padding: 36px 24px 28px;
  }

  .tcard {
    flex: 0 0 80vw;
    max-width: 320px;
  }
}

@media (max-width: 520px) {
  .left-panel {
    padding: 40px 20px;
  }

  .heading-block .line {
    font-size: 36px;
  }

  .tcard {
    flex: 0 0 85vw;
  }

  .right-panel {
    padding: 28px 16px 24px;
  }
}

/* TODO : TESTIMONIALS SECTIONS ENDS */

/* TODO : BLOGS SECTION */

.ax-blog-section {
  background-color: var(--color-white);
  overflow: hidden;
}

.red-strip {
  background: var(--color-primary);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 clamp(16px, 5vw, 48px);
  position: relative;
  z-index: 1;
}

.btn-view-blogs {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0f0f0f;
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  padding: 11px 26px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition:
    background var(--transition-fast),
    box-shadow var(--transition-fast);
  white-space: nowrap;
}

.btn-view-blogs:hover {
  background: #222;
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.btn-arrow {
  font-size: 16px;
  line-height: 1;
}

.ax-blog-main-container {
  position: relative;
  z-index: 100;
}

/* Red Header Bar */
.ax-header-bar {
  background-color: var(--color-orange);
  height: 120px;
  margin: 0 -15px;
  /* Pull to edges */
  padding: 20px 40px;
  border-radius: 0 0 0 40px;
}

.ax-btn-view {
  height: fit-content;
  background: #1e1e1e;
  /* Dark Grey (Not pure black) */
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s transform ease;
}

.ax-btn-view:hover {
  transform: scale(1.05);
  color: var(--color-orange);
}

/* Typography */
.ax-main-title {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--color-dark);
  margin-top: -40px;
  text-align: center;
}

.ax-orange {
  color: var(--color-orange);
}

/* Card Image Mechanics */
.ax-img-container {
  position: relative;
  display: inline-block;
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Accent Borders (Shadow effect in image) */
.ax-img-container::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: -15px;
  bottom: -15px;
  background-color: var(--accent-color);
  z-index: -1;
  transition: 0.4s ease;
}

.ax-blog-card:hover .ax-img-container {
  transform: translate(-10px, -10px);
}

/* Specific Heights as per Image */
.img-large {
  height: 355px;
  width: 100%;
  object-fit: cover;
}

.img-medium {
  height: 500px;
  width: 100%;
  object-fit: cover;
}

.img-small {
  height: 300px;
  width: 450px;
  object-fit: cover;
}

/* Content Styling */
.ax-content {
  padding-top: 35px;
}

.ax-tag {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 8px;
}

.tag-peach {
  background-color: var(--color-white);
  color: #e67e5f;
}

.tag-teal {
  background-color: var(--color-white);
  color: #38b293;
}

.ax-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 15px 0;
  color: var(--color-dark);
  line-height: 1.3;
}

.ax-meta {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.ax-meta span {
  opacity: 0.7;
  font-size: 0.85rem;
}

/* Reveal Animation */
.ax-reveal {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

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

.custom-sec-section {
  padding-top: 100px;
}

/* ... (Aapki purani root variables same rahengi) ... */

/* Responsive Image Heights */
.ax-blog-img {
  width: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

/* Desktop Heights */
@media (min-width: 992px) {
  .img-large {
    height: 400px;
  }

  .img-medium {
    height: 550px;
  }

  .img-small {
    height: 320px;
  }

  .custom-sec-section {
    padding-top: 150px;
  }

  /* Masonry Offset */
}

/* Tablet Heights */
@media (max-width: 991px) and (min-width: 768px) {
  .img-large {
    height: 300px;
  }

  .img-medium {
    height: 400px;
  }

  .img-small {
    height: 250px;
  }

  .custom-sec-section {
    padding-top: 80px;
  }
}

/* Mobile Adjustments (Full Width) */
@media (max-width: 767px) {
  .ax-main-title {
    font-size: 2.5rem;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .ax-blog-card {
    margin-bottom: 40px;
    /* Space between stacked cards */
  }

  .img-large,
  .img-medium,
  .img-small {
    height: 250px;
    /* Consistent height for mobile readability */
    width: 100% !important;
  }

  .custom-sec-section {
    padding-top: 0 !important;
    /* Remove offset on mobile */
  }

  /* Padding so shadow doesn't touch screen edge */
  .ax-img-container {
    width: calc(100% - 15px);
  }
}

/* Accent Borders Fix for Mobile */
.ax-img-container::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  background-color: var(--accent-color);
  z-index: -1;
}



















/*Solution-Page*/

/* Main Section */
.ax-solution-first-sec-main {
  position: relative;
  background-image: url('/assets/images/img1x1.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 5%;
}

/* Circle Styling */
.ax-solution-first-sec-circle {
  position: absolute;
  top: 10%;
  left: 4%;
  width: 15vw;
  max-width: 173px;
  min-width: 80px;
  z-index: 1;
}

/* Container for the words */
.ax-solution-first-sec-jumble-container {
  position: relative;
  z-index: 5;
  text-align: left;
  width: 100%;
  margin-top: 250px;
}

@media(max-width:320px) {
  .ax-solution-first-sec-jumble-container {
    margin-top: 100px;
  }
}

/* Base Typography */
.ax-solution-first-sec-text,
.ax-solution-first-sec-words {
  font-family: var(--font-kalam);
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 400;
  margin: 0;
  line-height: 1.1;
  background: var(--ax-dark-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.ax-solution-first-sec-word-your {
  -webkit-text-fill-color: #000;
  margin-right: 15px;
}

.ax-solution-first-sec-us {
  color: var(--ax-brand-orange);
  -webkit-text-fill-color: var(--ax-brand-orange);
  font-weight: 700;
}

/* Jumbled Letters */
.ax-solution-first-sec-letter {
  display: inline-block;
  color: var(--ax-brand-orange) !important;
  -webkit-text-fill-color: var(--ax-brand-orange) !important;
  width: auto;
  padding: 0 2px;
}

/* Individual Rotations preserved exactly */
.ax-solution-first-sec-letter:nth-child(2) {
  transform: rotate(-5.5deg);
}

.ax-solution-first-sec-letter:nth-child(3) {
  transform: rotate(23.5deg);
}

.ax-solution-first-sec-letter:nth-child(4) {
  transform: rotate(0deg);
}

.ax-solution-first-sec-letter:nth-child(5) {
  transform: rotate(-19.9deg);
}

.ax-solution-first-sec-letter:nth-child(6) {
  transform: rotate(-1.4deg);
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
  .ax-solution-first-sec-main {
    height: 70vh;
  }

  .ax-solution-first-sec-text,
  .ax-solution-first-sec-words {
    line-height: 1.3;
  }

  .ax-solution-first-sec-circle {
    top: 5%;
    left: 5%;
  }
}

@media (max-width: 480px) {
  .ax-solution-first-sec-word-your {
    display: block;
    margin-bottom: 5px;
  }
}







/*second section*/

:root {
  --primary-orange: #FF4500;
  --soft-white: #f8f9fa;
}

/* Main Section Container */
.ax-solut-seond-sec-main {
  position: relative;
  min-height: 600px;
  background: url('/assets/images/img2x1.png') no-repeat center center;
  background-size: cover;
  overflow: hidden;
  display: flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
}

/* The Orange Overlay Shape */
.ax-solut-seond-sec-bg-shape-orange {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
  z-index: 1;
  opacity: 0.9;
  /* background property commented as per original */
}

/* Subtle Overlay */
.ax-solut-seond-sec-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* background property commented as per original */
}

.ax-solut-seond-sec-container {
  position: relative;
  z-index: 10;
}

.ax-solut-seond-sec-main-heading {
  font-family: var(--font-gilroy-medium);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ax-brand-orange);
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.custom-end-to-end {
  font-family: var(--font-arcade);
  color: var(--color-primary);
  letter-spacing: 3px;
}

.ax-solut-seond-sec-cursive-text {
  font-family: var(--font-kalam);
  color: #40E0D0;
  font-size: 4.5rem;
  display: block;
  margin: -5px 0;
  /* text-decoration: underline; */
}

/* Premium Glass Card */
.ax-solut-seond-sec-content-card {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 25px;
  padding: 35px;
  max-width: 450px;
  color: white;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  animation: ax-solut-se-slideInRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


.custom-e-commerce-text {
  font-family: var(--font-gilroy-medium);
}


.custom-templt-sec {
  font-family: var(--font-gilroy-medium);
}


/* Floating Star */
.ax-solut-seond-sec-star-element {
  position: absolute;
  right: 8%;
  top: 10%;
  width: 180px;
  z-index: 15;
  animation: ax-solut-se-floatUpDown 5s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
}

@keyframes ax-solut-se-floatUpDown {

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

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

@keyframes ax-solut-se-slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

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

/* Responsive Adjustments */
@media (max-width: 991px) {
  .ax-solut-seond-sec-bg-shape-orange {
    width: 100%;
    clip-path: none;
    height: 50%;
    opacity: 0.85;
  }

  .ax-solut-seond-sec-cursive-text {
    font-size: 3.5rem;
  }

  .ax-solut-seond-sec-content-card {
    margin-top: 30px;
  }

  .ax-solut-seond-sec-star-element {
    width: 120px;
  }
}





















/*thiord section  */
.thirdsec {
  background-image: url(/assets/images/img3x1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.thirdsec .row:first-child {
  padding-top: 4rem;
  display: flex;
  justify-content: center;
}

.thirdsec .row:last-child {
  padding-top: 4rem;
  padding-left: 4rem;
  align-items: center;
}

.thirdsec .row:nth-child(2) {
  padding-top: 4rem;
  padding-left: 4rem;
  align-items: center;
}

.thirdsec .row:nth-child(3) {
  padding-top: 4rem;
  padding-right: 4rem;
  align-items: center;
}

/* section3 starts */

.navtwo {
  display: flex;
  width: 1008px !important;
  height: 83px;
  padding: 12px 95px;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #FFF;
  background: linear-gradient(138deg, rgba(255, 255, 255, 0.80) 0%, rgba(255, 255, 255, 0.60) 100%);
  backdrop-filter: blur(90px);
}

.navtwo {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: space-around;
}

.navtwo a {
  text-decoration: none;
}

.navtwo li:hover {
  border-bottom: 2px solid #F73400;
}

.navtwo li:nth-child(1) {
  background: var(--Primary-CTA-Gradient, linear-gradient(90deg, #F73400 0%, #121212 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 32px;
  font-weight: 400;
  line-height: normal;
}

.navtwo li:nth-child(2) {
  font-size: 32px;
  font-weight: 400;
  line-height: normal;
  background: var(--black-gradient-Gradient, linear-gradient(90deg, #4A4A4A 0%, #000 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navtwo li:nth-child(3) {
  font-size: 32px;
  font-weight: 400;
  line-height: normal;
  background: var(--black-gradient-Gradient, linear-gradient(90deg, #4A4A4A 0%, #000 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navtwo li:nth-child(4) {
  /* fixed solutions nav text */
  font-size: 32px;
  font-weight: 400;
  line-height: normal;
  background: var(--black-gradient-Gradient, linear-gradient(90deg, #4A4A4A 0%, #000 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* Marquee start */

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #f0f0f0;
  /* Background color */
}

.marquee-content {
  display: flex;
  width: calc(200% + 1px);
  white-space: nowrap;
  animation: marquee 12s linear infinite;
  animation-play-state: running;
  margin-left: 0;
  padding-left: 0;
  transition: animation-play-state 0.5s;
}

.marquee-content:hover {
  animation-play-state: paused;
  /* Pause animation on hover */
}

.marquee-content img {
  height: 20rem;
  /* Adjust height as needed */
  margin-right: 20px;
  /* Space between images */
  /* Optional: Make sure images fit within their container */
  width: auto;
}


/* Keyframes for scrolling */

@keyframes marquee {
  0% {
    transform: translateX(0);
    /* Start from the beginning */
  }

  100% {
    transform: translateX(-100%);
    /* End at the middle for seamless loop */
  }
}


/* section11 starts */

.unique-video-container {
  display: flex;
  justify-content: end;
  align-items: start;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

.unique-video-container video {
  width: 100%;
  height: auto;
}

.uniquee-video-container {
  display: flex;
  justify-content: center;
  align-items: start;
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

.uniquee-video-container video {
  width: 100%;
  height: auto;
}

.management h4 {
  font-size: 25px;
  font-style: normal;
  font-weight: 550;
  line-height: normal;
  background: var(--black-gradient-Gradient, linear-gradient(90deg, #4A4A4A 0%, #000 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.management p {
  color: var(--label-text-colour-for-white-bg, #5C5C5C);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.management {
  padding-left: 3rem;
  padding-right: 2rem;
}



















/*third-sec-Container Base */
.ax-solution-third-sect-main {
  background-image: url(/assets/images/img3x1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 2rem 0;
  overflow-x: hidden;
}

/* Glassmorphic Nav - Now Fluid */
.ax-solution-third-sect-nav-wrapper {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}

.ax-solution-third-sect-nav {
  display: flex;
  width: 100%;
  max-width: 1008px;
  /* Maximum limit */
  min-height: 80px;
  padding: 10px 20px;
  justify-content: space-around;
  align-items: center;
  border-radius: 50px;
  border: 1px solid #FFF;
  background: linear-gradient(138deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(90px);
  list-style: none;
  flex-wrap: wrap;
  /* Allows wrapping on small screens */
}

.ax-solution-third-sect-nav li a {
  text-decoration: none;
  font-size: clamp(16px, 2.5vw, 32px);
  /* Responsive font size */
  font-weight: 400;
  color: #000;
  transition: 0.3s;
}

/* Row & Column Logic */
.ax-solution-third-sect-row {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem 5%;
  align-items: center;
}

.ax-solution-third-sect-col {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 1rem;
}

/* Desktop Switch */
@media (min-width: 768px) {
  .ax-solution-third-sect-col {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .ax-solution-third-sect-row-reverse {
    flex-direction: row-reverse;
  }
}

/* Responsive Marquee */
.ax-solution-third-sect-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* border-radius: 15px; */
}

.ax-solution-third-sect-marquee-content {
  display: flex;
  width: 200%;
  animation: ax-marquee-scroll 15s linear infinite;
}

.ax-solution-third-sect-marquee-content img {
  height: clamp(150px, 45vh, 320px);
  width: auto;
  margin-right: 20px;
}

@keyframes ax-marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Video Container */
.ax-solution-third-sect-video-box {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ax-solution-third-sect-video-box video {
  width: 100%;
  display: block;
}

/* Container to center the nav */
.ax-solution-third-sect-row {
  display: flex;
  justify-content: center;
  padding: 20px 10px;
  width: 100%;
}

/* The Responsive Glassmorphic Nav */
.ax-solution-third-sect-nav {
  display: flex;
  width: 95%;
  /* Fluid on mobile */
  max-width: 1008px;
  /* Fixed on desktop */
  min-height: 83px;
  padding: 10px 20px;
  justify-content: space-around;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #FFF;
  background: linear-gradient(138deg, rgba(255, 255, 255, 0.80) 0%, rgba(255, 255, 255, 0.60) 100%);
  backdrop-filter: blur(90px);
  list-style: none;
  flex-wrap: wrap;
  /* Allows items to wrap on small screens */
  margin: 0 auto;
}

/* Navigation Items */
.ax-solution-third-sect-nav li {
  padding: 5px 15px;
  transition: all 0.3s ease;
}

.ax-solution-third-sect-nav li a {
  text-decoration: none;
  font-size: clamp(16px, 3vw, 32px);
  /* Scales font between 16px and 32px */
  font-weight: 400;
  color: #333;
  display: block;
}

/* Gradient Text for first item (Design) */
.ax-solution-third-sect-nav li:first-child a {
  background: linear-gradient(90deg, #F73400 0%, #121212 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Hover Effect */
.ax-solution-third-sect-nav li:hover {
  border-bottom: 2px solid #F73400;
  transform: translateY(-2px);
  /* Subtle animation */
}

/* Mobile Specific Adjustment */
@media (max-width: 600px) {
  .ax-solution-third-sect-nav {
    border-radius: 25px;
    /* Square off slightly for better mobile look */
    padding: 15px 5px;
  }

  .ax-solution-third-sect-nav li {
    flex: 1 0 40%;
    /* Each item takes 40-50% width on mobile */
    text-align: center;
  }
}






















/* Section third - Development Container */
.ax-solution-fourth-sec-main {
  background: var(--Primary-CTA-Gradient, linear-gradient(90deg, #F73400 0%, #121212 100%));
  width: 100%;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0;
}

/* The Code Display Box */
.ax-solution-fourth-sec-overflow {
  background: var(--bg-gradient--home, linear-gradient(297deg, #4A4A4A 11.17%, #121212 100%));
  color: white;
  padding: 15px;
  width: 90%;
  /* Fluid width for mobile */
  max-width: 1100px;
  /* Limits width on large screens */
  overflow-y: scroll;
  overflow-x: hidden;
  height: 70vh;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Responsive Margin and Padding for Desktop */
@media (min-width: 992px) {
  .ax-solution-fourth-sec-overflow {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Custom Scrollbar */
.ax-solution-fourth-sec-overflow::-webkit-scrollbar {
  width: 10px;
}

.ax-solution-fourth-sec-overflow::-webkit-scrollbar-track {
  background: #121212;
  border-radius: 10px;
}

.ax-solution-fourth-sec-overflow::-webkit-scrollbar-thumb {
  background: var(--secondary-brand-colour, #36E3BF);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

/* Typography for the code */
.ax-solution-fourth-sec-text {
  color: var(--white-colour, #ECECEC);
  font-family: 'Courier New', Courier, monospace;
  /* Better for code */
  font-size: 18px;
  /* Base size for mobile */
  font-weight: 400;
  line-height: 1.6;
  padding: 1rem;
  word-wrap: break-word;
  white-space: pre-wrap;
  /* Keeps code structure while wrapping */
}

/* Desktop Font Size */
@media (min-width: 768px) {
  .ax-solution-fourth-sec-text {
    font-size: 24px;
    padding-left: 4rem;
  }
}

@media (min-width: 1200px) {
  .ax-solution-fourth-sec-text {
    font-size: 32px;
  }
}
















/* Fifth  Section */
.ax-solution-fifth-sec-main {
  background-color: white;
  width: 100%;
  min-height: 30vh;
  display: flex;
  align-items: center;
  padding-bottom: 2rem;
}

/* The Responsive Card */
.ax-solution-fifth-sec-rectangle {
  border-radius: 50px;
  background: #FFD6CB;
  position: relative;
  top: -2rem;
  /* Replaces bottom: 5rem for better flow control */
  padding: 40px;
  /* Base padding for all screens */
  width: 100%;
  transition: all 0.3s ease;
}

/* Heading Typography */
.ax-solution-fifth-sec-title {
  font-size: clamp(32px, 5vw, 64px);
  /* Scales between 32px and 64px */
  font-style: normal;
  font-family: var(--font-gilroy-medium);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  background: var(--black-gradient-Gradient, linear-gradient(90deg, #4A4A4A 0%, #000 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paragraph Typography */
.ax-solution-fifth-sec-text {
  color: var(--label-text-colour-for-white-bg, #5C5C5C);
  font-size: clamp(18px, 2vw, 28px);
  /* Scales between 18px and 28px */
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

/* Large Screen Specifics (Re-applying your original design) */
@media (min-width: 992px) {
  .ax-solution-fifth-sec-rectangle {
    height: 19rem;
    padding: 27px 137px 58px 50px;
  }
}

/* Tablet and Mobile Specifics */
@media (max-width: 991px) {
  .ax-solution-fifth-sec-rectangle {
    border-radius: 30px;
    /* Slightly smaller radius for mobile */
    top: -1rem;
    padding: 30px;
  }
}
















/* six scetion */
/* Container Section */
.ax-six-solution-six-sec-main {
  background: linear-gradient(297deg, #4A4A4A 20%, #3A3A3A 50%, #121212 100%);
  /* width: 100%; */
  min-height: 50vh;
  display: flex;
  align-items: center;
  /* Changed overflow to visible so the image can pop out above the section */
  overflow: visible;
  position: relative;
  z-index: 1;
  /* Base layer */
  padding: 2rem 0;
}

/* Text Content Column */
.ax-six-solution-six-sec-con {
  padding: 1rem 2rem;
}

/* Image Styling */
.ax-six-solution-six-sec-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 0 auto;
  /* High z-index ensures it stays on top of neighboring sections */
  z-index: 10;
}

/* Typography */
.ax-six-solution-six-sec-title {
  color: #ECECEC;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-family: var(--font-gilroy-medium);
}

.ax-six-solution-six-sec-text {
  color: #B9B6B6;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.5;
}

/* Desktop Specific Adjustments */
@media (min-width: 768px) {
  .ax-six-solution-six-sec-con {
    padding-left: 5rem;
  }

  .ax-six-solution-six-sec-img {
    position: relative;
    /* bottom: 12rem; */
  }
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .ax-six-solution-six-sec-main {
    text-align: center;
    /* Prevent horizontal scroll on mobile while still allowing vertical overflow */
    overflow-x: hidden;
  }

  .ax-six-solution-six-sec-img {
    bottom: 0;
    margin-top: 2rem;
    /* Keep it slightly elevated even on mobile if needed, or set to 0 */
    position: relative;
  }
}













/* Section  ten Container */
.ax-solution-ten-sec-main {
  padding: 60px 0;
}

/* Card Styling */
.ax-solution-ten-sec-card {
  border: none;

  height: 100%;
  /* Makes all cards in a row equal height */
  transition: transform 0.3s ease;
}

.ax-solution-ten-sec-card:hover {
  transform: translateY(-5px);
}

.ax-solution-ten-sec-card img {
  border: 1px solid black;
  border-radius: 0px;
  width: 100%;
  height: auto;
}

/* Card Body */
.ax-solution-ten-sec-body {
  background-color: #121212;
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 55%;
}

/* Title Styling */
.ax-solution-ten-sec-title {
  color: var(--white-colour, #ECECEC);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  min-height: 4rem;
  /* Keeps titles aligned on desktop */
}

/* Text Styling */
.ax-solution-ten-sec-text {
  color: var(--label-text, #B9B6B6);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .ax-solution-ten-sec-title {
    font-size: 26px;
    min-height: auto;
  }

  .ax-solution-ten-sec-text {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .ax-solution-ten-sec-title {
    font-size: 24px;
  }

  .ax-solution-ten-sec-text {
    font-size: 18px;
  }

  .ax-solution-ten-sec-body {
    padding: 20px;
  }
}














/* eleven section */
.ax-solution-eleven-sec-main {
  background-color: #f8f9fa;
  /* Light gray background to match image padding */
  padding: 0;
  width: 100%;
}

/* Header Section */
.ax-solution-eleven-sec-headings {
  /* padding: 40px 0; */
  padding-top: 40px;
  text-align: left;
  font-family: var(--font-gilroy-medium);
}

.ax-solution-eleven-sec-headings h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  color: #121212;
  margin-bottom: 0;
}

/* Video Container - Same as Image in Reference */
.ax-solution-eleven-sec-video-wrap {
  width: 100%;
  height: 100vh;
  /* max-height: 100vh ; */
  overflow: hidden;
  display: flex;
  justify-content: center;
  /* background: #000; */
}

.ax-solution-eleven-sec-video-wrap video {
  width: 100%;
  height: 100vh;
  display: block;
}

/* Features Row */
.ax-solution-eleven-sec-feature-row {
  padding: 0px 5%;
  /* background-color: #fff; */
  display: flex;
  flex-wrap: wrap;
}

.ax-solution-eleven-sec-col {
  padding: 20px;
}

.ax-solution-eleven-sec-col h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  /* Gradient Effect */
  background: linear-gradient(90deg, #4A4A4A 0%, #000 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ax-solution-eleven-sec-col p {
  color: #5C5C5C;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .ax-solution-eleven-sec-headings {
    padding: 20px 15px;
  }

  .ax-solution-eleven-sec-feature-row {
    padding: 30px 15px;
  }

  .ax-solution-eleven-sec-col {
    text-align: left;
    margin-bottom: 20px;
  }
}









/* feature -Section */
.ax-solution-featur-sec-headings h1 {
  font-size: clamp(32px, 5vw, 64px);
  /* Responsive font size */
  font-weight: 450;
  line-height: 1.2;
  padding: 2rem 0;
  color: black;
  font-family: var(--font-gilroy-medium)
}

/* Main Section Container */
.ax-solution-featur-sec-main {
  background: var(--black-gradient-Gradient, linear-gradient(90deg, #4A4A4A 0%, #000 100%));
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  overflow-x: hidden;
}

/* Video Container */
.ax-solution-featur-sec-video-box {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.ax-solution-featur-sec-video-box video {
  width: 100%;
  max-width: 880px;
  /* Equivalent to your ~55rem */
  height: auto;
  box-shadow: 16px 22px 0px 0px #36E3BF;
  border-radius: 8px;
}

/* Text Content Styling */
.ax-solution-featur-sec-info-col {
  padding: 2rem;
}

.ax-solution-featur-sec-info-col h4 {
  color: var(--white-colour, #ECECEC);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  margin-bottom: 1rem;
}

.ax-solution-featur-sec-info-col p {
  color: var(--label-text, #B9B6B6);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.5;
}

/* Desktop Adjustments */
@media (min-width: 768px) {
  .ax-solution-featur-sec-video-box video {
    position: relative;
    top: -2rem;
  }

  .ax-solution-featur-sec-info-col {
    padding-right: 4rem;
  }
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .ax-solution-featur-sec-main {
    text-align: center;
  }

  .ax-solution-featur-sec-video-box video {
    box-shadow: 8px 12px 0px 0px #36E3BF;
    /* Smaller shadow for mobile */
    margin-bottom: 3rem;
  }
}












/* Container Base */
.ax-solution-service-sec-main {
  background-color: #f5f5f5;
  /* Light gray background from image */
  padding: 60px 5%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: var(--font-gilroy-medium);
}

/* Heading Typography */
.ax-solution-service-sec-title-wrap {
  /* margin-bottom: 50px; */
  line-height: 1.5;
}

.ax-solution-service-sec-title-top {
  font-size: clamp(40px, 8vw, 75px);
  font-weight: 500;
  color: #333;
  display: block;
  font-family: var(--font-gilroy-medium);
}

.ax-solution-service-sec-title-mid {
  font-family: 'Kalam', cursive;
  /* Handwritten font */
  font-size: clamp(35px, 6vw, 65px);
  color: #444;
  font-style: italic;
  display: block;
}

.ax-solution-service-sec-title-bottom {
  /* font-family: 'Courier New', Courier, monospace;  */
  font-family: var(--font-arcade);
  font-size: clamp(40px, 8vw, 85px);
  font-weight: 900;
  color: #F73400;
  /* Orange-red from image */
  text-transform: uppercase;
  letter-spacing: 5px;
}




/* .ax-solution-service-sec-title-wrap {
    margin-bottom: 50px;
    line-height: 0.8; 
} */

.ax-solution-service-sec-title-top {
  font-size: clamp(40px, 8vw, 75px);
  font-weight: 500;
  color: #333;
  display: block;
  /* margin-bottom: -10px; */
}

/* Specific 's' rotation code */
.rotate-s {
  display: inline-block;
  /* Rotate karne ke liye zaroori hai */
  transform: rotate(-15deg);
  /* Aap isko -15deg ya 90deg bhi kar sakte hain */
  transform-origin: center;
  /* Apni hi jagah par ghoomega */
  margin-left: 2px;
}

.ax-solution-service-sec-title-mid {
  font-family: 'Kalam', cursive;
  font-size: clamp(35px, 6vw, 65px);
  color: #444;
  font-style: italic;
  display: block;
  margin-top: -5px;
  margin-bottom: -15px;
  line-height: 0.7;
}

.ax-solution-service-sec-title-bottom {
  font-family: var(--font-arcade);
  font-size: clamp(40px, 8vw, 85px);
  font-weight: 900;
  color: #F73400;
  text-transform: uppercase;
  letter-spacing: 5px;
  display: block;
  margin-top: -10px;
}

/* Service List Styling */
.ax-solution-service-sec-list {
  max-width: 1100px;
  width: 100%;
}

.ax-solution-service-sec-item {
  border-bottom: 1px solid #ccc;
  padding: 25px 0;
}

.ax-solution-service-sec-summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 500;
  color: #1a1a1a;
  text-transform: uppercase;
  outline: none;
}

/* Custom Arrow Icon */
.ax-solution-service-sec-arrow {
  width: 15px;
  height: 15px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
  transition: 0.3s;
}

details[open] .ax-solution-service-sec-arrow {
  transform: rotate(-135deg);
}

.ax-solution-service-sec-content {
  padding: 15px 0;
  color: #666;
  font-size: 18px;
  line-height: 1.6;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .ax-solution-service-sec-main {
    padding: 40px 20px;
  }

  .ax-solution-service-sec-item {
    padding: 15px 0;
  }
}




/* Initial State: Text invisible aur thoda neeche */
/* .ax-solution-first-sec-row {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out; 
} */

/* Jab JS ye class add karega tab animation chalegi */
.ax-solution-first-sec-row.reveal {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Effect: Har row thoda ruk ke aayegi */
.ax-solution-first-sec-row:nth-child(1) {
  transition-delay: 0.1s;
}

.ax-solution-first-sec-row:nth-child(2) {
  transition-delay: 0.3s;
}

.ax-solution-first-sec-row:nth-child(3) {
  transition-delay: 0.5s;
}

/* Letter spacing aur styling (Optional adjustments) */
.ax-solution-first-sec-letter {
  display: inline-block;
  transition: transform 0.5s ease;
}

.ax-solution-first-sec-row.reveal:hover .ax-solution-first-sec-letter {
  letter-spacing: 5px;
  /* Hover par premium feel ke liye */
}






/* Initial State: Elements hidden and shifted */
/* .ax-solut-seond-sec-main-heading {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
} */

/* .ax-solut-seond-sec-content-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.3s; 
}

.ax-solut-seond-sec-star-element {
    opacity: 0;
    transform: scale(0.5) rotate(-45deg);
    transition: all 0.8s ease;
    transition-delay: 0.5s;
} */

/* Reveal State: Jab JS class add karega */
.ax-solut-seond-sec-main.active .ax-solut-seond-sec-main-heading,
.ax-solut-seond-sec-main.active .ax-solut-seond-sec-content-card,
.ax-solut-seond-sec-main.active .ax-solut-seond-sec-star-element {
  opacity: 1;
  transform: translate(0) scale(1) rotate(0);
}












































/*feature-Page*/
.ax-feature-sec-wrapper {
  /* background: radial-gradient(ellipse at 10% 10%, #2e2e34 0%, #1c1c20 55%, #141416 100%); */
  background: linear-gradient(135deg, #fde8e0 0%, #f5fffe 50%, #e0faf5 100%);
  padding: 80px 0;
  overflow: hidden;
}

/* Heading Design */
.ax-feature-sec-heading {
  margin-bottom: 20px;
}

.ax-feature-sec-line {
  /* display: block; */
  font-size: clamp(36px, 4vw, 72px);
  font-family: var(--font-gilroy-medium);
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.1;
  letter-spacing: -1px;
  text-transform: capitalize;
}

.ax-feature-sec-pixel {
  font-family: var(--font-droid);
  letter-spacing: 2px;
  -webkit-text-stroke: 1px var(--color-white);
}

.ax-feature-sec-italic {
  /* font-family: Georgia, serif;  */
  font-family: var(--font-kalam);
  font-style: italic;
  color: var(--color-primary);
}

/* Main Card Container - Exact glassy look from image */
.ax-feature-sec-compare-card {
  background: rgba(48, 48, 56, 0.88);
  border: 1px solid rgba(100, 160, 255, 0.2);
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 30px 60px rgba(0,0,0,0.5); */
  padding: 20px;
  backdrop-filter: blur(15px);
}

/* Category Header Design - Image inspired */
.ax-feature-sec-cat-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 30px;
  margin-top: 10px;
  margin-bottom: 25px;
  background: rgba(54, 227, 191, 0.05);
  /* Soft turquoise tint from image */
  border-radius: 8px;
  border-left: 3px solid var(--color-secondary);
}

.ax-feature-sec-cat-header h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: var(--color-secondary);
  /* Text color matching secondary */
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Table Styling - Dark theme consistency */
.ax-feature-sec-table {
  width: 100%;
  border-collapse: collapse;
}

.ax-feature-sec-table thead th {
  padding: 20px 30px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  vertical-align: middle;
}

.ax-feature-sec-table tbody tr {
  border-bottom: 1px solid var(--border-color-soft);
  transition: all 0.3s ease;
}

.ax-feature-sec-table tbody tr:last-child {
  border-bottom: none;
}

.ax-feature-sec-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
  transform: scale(1.01);
  /* Subtle scaling effect */
}

.ax-feature-sec-table td {
  padding: 18px 30px;
  vertical-align: middle;
}

.ax-td-feat {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  width: 54%;
}

.ax-td-check {
  text-align: center;
  width: 23%;
}

/* Badges & Icons - Look exactly like the image */
.ax-badge {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-size: 14px;
  transition: var(--transition-smooth);
}

.ax-badge:hover {
  transform: rotate(360deg) scale(1.2);
}

.ax-check {
  background: var(--color-secondary);
  /* Image exact turquoise checkmark */
  box-shadow: 0 4px 15px rgba(54, 227, 191, 0.4);
}

.ax-cross {
  background: var(--color-primary);
  /* Image exact red/orange cross */
  box-shadow: 0 4px 15px rgba(247, 52, 0, 0.3);
}

/* Alignment helpers */
.ax-col-feat {
  text-align: left;
}

.ax-col-brand {
  text-align: center;
}

.ax-col-others {
  text-align: center;
}

.ax-feature-ele-1 {
  position: absolute;
  top: 1%;
  right: 0%;
  width: clamp(200px, 25vw, 260px);
  height: clamp(200px, 25vw, 260px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.88;
}

.ax-feature-ele-2 {
  position: absolute;
  top: 150%;
  left: 0%;
  width: clamp(200px, 25vw, 280px);
  height: clamp(200px, 25vw, 280px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.88;
}

.ax-feature-ele-3 {
  position: absolute;
  top: 350%;
  right: 0%;
  width: clamp(200px, 25vw, 280px);
  height: clamp(200px, 25vw, 280px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.88;
}

.ax-feature-ele-4 {
  position: absolute;
  top: 500%;
  left: 0%;
  width: clamp(200px, 25vw, 260px);
  height: clamp(200px, 25vw, 260px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.88;
}

.ax-feature-ele-5 {
  position: absolute;
  top: 700%;
  right: 0%;
  width: clamp(200px, 25vw, 260px);
  height: clamp(200px, 25vw, 260px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.88;
}

.ax-feature-ele-6 {
  position: absolute;
  top: 900%;
  left: 0%;
  width: clamp(200px, 25vw, 260px);
  height: clamp(200px, 25vw, 260px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.88;
}

.gear-decor {
  /* position: absolute;
  top: -30px;
  right: -40px;
  width: clamp(200px, 30vw, 360px);
  height: clamp(200px, 30vw, 360px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.88; */
  width: 100%;
  /* height: 100%; */
  object-fit: contain;
}

@media (max-width: 768px) {
  .ax-feature-sec-table thead th {
    padding: 12px 15px;
    font-size: 11px;
  }

  .ax-feature-sec-table td {
    padding: 12px 15px;
  }

  .ax-td-feat {
    font-size: 13px;
  }

}

/* Force widths to match between the empty header table and the body table */
.ax-col-feat,
.ax-td-feat {
  width: 50%;
  text-align: left;
}

.ax-col-brand,
.ax-col-others,
.ax-td-check {
  width: 25%;
  text-align: center !important;
  /* Forces center alignment for both text and badges */
}
















/*Pricing Page*/
.hero {
  background: linear-gradient(135deg, #fde8e0 0%, #f5fffe 50%, #e0faf5 100%);
  padding: 90px 60px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(247, 52, 0, 0.12), transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle,
      rgba(54, 227, 191, 0.15),
      transparent 70%);
  border-radius: 50%;
}

.hero-subtitle {
  font-size: 14px;
  color: var(--color-text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-title {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-tagline {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 100;
  line-height: 1.1;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tagline .word-upgradable {
  font-family: var(--font-kalam);
  color: var(--color-primary);
  font-style: italic;
}

.hero-tagline .word-affordable {
  font-family: var(--font-arcade);
  color: var(--color-secondary);
  letter-spacing: -2px;
}

.hero-tagline .word-flexible {
  color: var(--color-dark);
  /* font-weight: 800; */
}

.hero-tagline .dot {
  color: var(--color-dark);
}

.hero-plans-text {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.btn-book {
  display: inline-block;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 16px 40px;
  border-radius: var(--radius-xl);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
  box-shadow: 0 0 0 3px var(--color-primary);
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(247, 52, 0, 0.35);
  color: var(--color-white);
}

.hero-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.hero-confetti {
  font-size: 48px;
  margin: 24px 0 0;
  display: block;
  animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }

  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

/* ==================== PRICING CARDS ==================== */
.pricing-section {
  /* background: #f5f5f5; */
  padding: 0 40px 60px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  top: -30px;
}

.pricing-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  position: relative;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
  border: 2px solid transparent;
  background: var(--color-white);
  box-shadow: 0 12px 48px rgba(247, 52, 0, 0.15);
  z-index: 2;
}

.most-popular-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 8px 28px;
  border-radius: var(--radius-xl);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.plan-name {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.plan-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 52px;
}

.plan-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.plan-price span {
  font-size: 16px;
  font-weight: 500;
}

.plan-billing {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.plan-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--color-gray);
  line-height: 1.5;
  margin-top: 12px;
}

.plan-check::before {
  content: "✓";
  color: var(--color-secondary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-contact-plan {
  display: inline-block;
  background: var(--color-dark);
  color: var(--color-white);
  padding: 12px 28px;
  border-radius: var(--radius-xl);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 8px;
  cursor: pointer;
  border: none;
  transition: background var(--transition-fast);
}

.btn-contact-plan:hover {
  background: var(--color-primary);
}

.plan-call {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 6px;
}

.pricing-note {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 14px;
  color: var(--color-text-muted);
  text-align: center;
  padding: 20px 0 40px;
  font-style: italic;
}

/* ==================== ALL PLANS INCLUDE ==================== */
.plans-include {
  background: var(--gradient-banner);
  padding: 60px 60px 80px;
  position: relative;
  overflow: hidden;
}

.plans-include::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle,
      rgba(54, 227, 191, 0.08),
      transparent 60%);
  border-radius: 50%;
}

.plans-include-title {
  color: var(--color-white);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.plans-include-title em {
  font-family: var(--font-kalam);
  font-style: italic;
  font-weight: 400;
  color: var(--color-white);
}

.plans-include-title span {
  font-family: var(--font-arcade);
  color: var(--color-secondary);
  letter-spacing: 2px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast);
  backdrop-filter: blur(8px);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--color-white);
  fill: none;
  stroke-width: 1.5;
}

.feature-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 12px;
  /* color: rgba(255,255,255,0.6); */
  line-height: 1.6;
}

.btn-know-more {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background: transparent;
  color: var(--color-white);
  padding: 14px 48px;
  border-radius: var(--radius-xl);
  border: 2px solid var(--color-secondary);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-know-more:hover {
  background: var(--color-secondary);
  color: var(--color-dark);
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  background: #f0f0f0;
  padding: 80px 60px;
}

.testimonials-heading {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.testimonials-heading .italic {
  font-family: var(--font-kalam);
  font-weight: 400;
  font-style: italic;
}

.testimonials-sub {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 48px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
  max-width: 1100px;
  align-items: start;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card.featured-testimonial {
  padding: 40px 32px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0e0e0, #c0c0c0);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
}

.author-avatar.av1 {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.author-avatar.av2 {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.author-avatar.av3 {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.author-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-dark);
}

.author-title {
  font-size: 13px;
  color: var(--color-text-muted);
}

.testimonial-text {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.7;
}

.featured-testimonial .testimonial-text {
  font-size: 16px;
}

/* TODO : FAQ SECTION */
.ax-faq-sec-section {
  padding: 30px 5% 120px;
  background-color: #fdfdfd;
}

.ax-faq-sec-container {
  max-width: 1000px;
  margin: 0 auto;
}

.ax-faq-sec-title {
  font-size: 64px;
  font-family: var(--font-default);
  margin-bottom: 50px;
  color: var(--color-dark);
}

.ax-faq-sec-orange {
  color: var(--color-primary);
}

.ax-faq-sec-list {
  display: flex;
  flex-direction: column;
}

/* ===== ITEM ===== */
.ax-faq-sec-item {
  border-bottom: 1px solid var(--color-light-gray);
  padding: 20px 0;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-gilroy-medium);
}

.ax-faq-sec-item[open] {
  padding-bottom: 30px;
}

/* ===== QUESTION ===== */
.ax-faq-sec-question {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 500;
  color: var(--color-black);
  outline: none;
}

.ax-faq-sec-question::-webkit-details-marker {
  display: none;
}

/* ===== ICON ===== */
.ax-faq-sec-icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--color-black);
  border-bottom: 2px solid var(--color-black);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-right: 10px;
}

.ax-faq-sec-item[open] .ax-faq-sec-icon {
  transform: rotate(-135deg);
  margin-top: 8px;
}

/* ===== ANSWER ===== */
.ax-faq-sec-answer {
  padding-top: 15px;
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 850px;
  animation: axFaqSlideDown 0.4s ease-out;
}

/* ===== ANIMATION ===== */
@keyframes axFaqSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .ax-faq-sec-title {
    font-size: 48px;
  }

  .ax-faq-sec-item {
    padding: 15px 0;
  }

  .ax-faq-sec-section {
    padding-bottom: 80px;
  }
}

/* ==================== CONTACT FORM ==================== */
.contact-section {
  background: linear-gradient(135deg, #0d7a62, #1a9e80, #36e3bf 120%);
  padding: 40px 60px 80px;
  position: relative;
  /* overflow: hidden; */
}

.contact-gem {
  position: absolute;
  right: 0;
  top: 5%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
}

.contact-gem svg {
  width: 100%;
  height: 100%;
}

.contact-title {
  font-size: 56px;
  font-weight: 700;
  color: var(--color-white);
  font-family: var(--font-kalam);
  margin-bottom: 48px;
  line-height: 1.1;
}

.contact-title span {
  color: var(--color-secondary);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 90px;
  /* max-width: 760px; */
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  color: var(--color-white);
  font-size: 15px;
  font-weight: 500;
}

.form-input,
.form-textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--color-white);
  font-family: var(--font-gilroy);
  outline: none;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast);
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-secondary);
  background: rgba(255, 255, 255, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form-wrapper {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.btn-submit {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 16px 56px;
  border-radius: var(--radius-xl);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: var(--font-gilroy);
  min-width: 150px;
  max-width: 250px;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.btn-submit:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .footer-body {
    grid-template-columns: 1fr 1fr;
  }

  .footer-divider {
    display: none;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .plans-include,
  .testimonials,
  .faqs,
  .contact-section,
  footer {
    padding: 60px 24px;
  }

  .pricing-section {
    padding: 0 24px 40px;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    top: 0;
  }

  .contact-gem {
    top: 3%;
    width: 180px;
    height: 200px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form {
    grid-template-columns: repeat(2, 40%);
  }

  .footer-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {
  .contact-form {
    grid-template-columns: 85%;
  }

  .contact-gem {
    width: 180px;
    height: 180px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    top: 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

}


/* faq section */

.ax-faq-sec-section {
  padding: 30px 5%;
  background-color: #fdfdfd;
}

.ax-faq-sec-container {
  max-width: 1000px;
  margin: 0 auto;
}

.ax-faq-sec-title {
  font-size: 64px;
  font-family: var(--font-default);
  margin-bottom: 50px;
  color: var(--color-dark);
}

.ax-faq-sec-orange {
  color: var(--color-primary);
}

.ax-faq-sec-list {
  display: flex;
  flex-direction: column;
}

/* ===== ITEM ===== */
.ax-faq-sec-item {
  border-bottom: 1px solid var(--color-light-gray);
  padding: 20px 0;
  cursor: pointer;
  transition: var(--transition-fast);
}

.ax-faq-sec-item[open] {
  padding-bottom: 30px;
}

/* ===== QUESTION ===== */
.ax-faq-sec-question {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 500;
  color: var(--color-black);
  outline: none;
}

.ax-faq-sec-question::-webkit-details-marker {
  display: none;
}

/* ===== ICON ===== */
.ax-faq-sec-icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--color-black);
  border-bottom: 2px solid var(--color-black);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-right: 10px;
}

.ax-faq-sec-item[open] .ax-faq-sec-icon {
  transform: rotate(-135deg);
  margin-top: 8px;
}

/* ===== ANSWER ===== */
.ax-faq-sec-answer {
  padding-top: 15px;
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 850px;
  animation: axFaqSlideDown 0.4s ease-out;
}

/* ===== ANIMATION ===== */
@keyframes axFaqSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .ax-faq-sec-title {
    font-size: 48px;
  }

  .ax-faq-sec-item {
    padding: 15px 0;
  }
}















/* Contact-0se ction */

/* ===== SECTION ===== */
.ax-contactact-section-main {
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* HEADING */
.ax-contactact-section-pixel-heading {
  font-family: var(--font-droid);
  font-weight: 900;
  font-size: clamp(40px, 8vw, 85px);
  color: var(--color-primary);
  line-height: 0.8;
  letter-spacing: -2px;
  display: block;
}

.ax-contactact-section-team-heading {
  font-size: clamp(35px, 6vw, 75px);
  font-weight: 500;
  /* color: #333; */
  margin-bottom: 2rem;
}

.ax-contactact-section-team-heading span {
  font-family: var(--font-kalam);
  font-style: italic;
  font-weight: 300;
}

.ax-contactact-section-sub-text {
  /* color: var(--color-text-muted); */
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

/* RIGHT SIDE */
.ax-contactact-section-address-title {
  font-size: 3rem;
  /* color: #333; */
  margin-bottom: 2rem;
  font-weight: 400;
}

.ax-contactact-section-info-label {
  font-weight: 800;
  font-size: 1.1rem;
  display: block;
  margin-top: 1.5rem;
  /* color: #000; */
}

.ax-contactact-section-info-detail {
  /* color: var(--color-gray); */
  font-size: 1.1rem;
  margin-bottom: 0;
}

/* SOCIAL */
.ax-contactact-section-social-link {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-right: 1.5rem;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.ax-contactact-section-social-link:hover {
  transform: translateY(-5px);
  color: #000;
}

/* BG SHAPE */
.ax-contactact-section-bg-shape {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: #9d8db5;
  transform: rotate(45deg);
  z-index: 0;
}










/* ==================== CONTACT FORM ==================== */
.ax-contact-form-sec-section {
  background: linear-gradient(135deg, #0d7a62, #1a9e80, #36e3bf 120%);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.ax-contact-form-sec-section::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 500px;
  height: 500px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='100,10 190,55 190,145 100,190 10,145 10,55' fill='none' stroke='rgba(0,0,0,0.12)' stroke-width='2'/%3E%3Cpolygon points='100,30 170,65 170,135 100,170 30,135 30,65' fill='none' stroke='rgba(0,0,0,0.08)' stroke-width='2'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0.4;
}

/* GEM */
.ax-contact-form-sec-gem {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  opacity: 0.25;
}

.ax-contact-form-sec-gem svg {
  width: 100%;
  height: 100%;
}

/* TITLE */
.ax-contact-form-sec-title {
  font-size: 56px;
  font-weight: 700;
  color: var(--color-white);
  font-family: var(--font-kalam);
  margin-bottom: 48px;
}

.ax-contact-form-sec-title span {
  color: var(--color-secondary);
}

/* FORM GRID */
.ax-contact-form-sec-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  max-width: 760px;
}

/* GROUP */
.ax-contact-form-sec-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ax-contact-form-sec-group.full-width {
  grid-column: 1 / -1;
}

/* LABEL */
.ax-contact-form-sec-label {
  color: var(--color-white);
  font-size: 15px;
}

/* INPUT */
.ax-contact-form-sec-input,
.ax-contact-form-sec-textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--color-white);
  outline: none;
  width: 100%;
}

.ax-contact-form-sec-input::placeholder,
.ax-contact-form-sec-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.ax-contact-form-sec-input:focus,
.ax-contact-form-sec-textarea:focus {
  border-color: var(--color-secondary);
  background: rgba(255, 255, 255, 0.12);
}

.ax-contact-form-sec-textarea {
  resize: vertical;
  min-height: 120px;
}

/* BUTTON */
.ax-contact-form-sec-wrapper {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.ax-contact-form-sec-btn {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 16px 56px;
  border-radius: var(--radius-xl);
  font-size: 15px;
  border: none;
  cursor: pointer;
}

.ax-contact-form-sec-btn:hover {
  background: #f73400;
}

/* ==================== RESPONSIVE ==================== */

/* Tablet */
@media (max-width: 992px) {
  .ax-contact-form-sec-section {
    padding: 60px 30px;
  }

  .ax-contact-form-sec-title {
    font-size: 42px;
  }
}

/* Mobile */
@media (max-width: 768px) {

  .ax-contact-form-sec-form {
    grid-template-columns: 1fr;
  }

  .ax-contact-form-sec-gem {
    display: none;
  }

  .ax-contact-form-sec-title {
    font-size: 34px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {

  .ax-contact-form-sec-section {
    padding: 40px 20px;
  }

  .ax-contact-form-sec-title {
    font-size: 28px;
  }

  .ax-contact-form-sec-btn {
    padding: 12px 30px;
  }
}


.testimonials-heading .highlight {
  font-family: var(--font-arcade);
  color: var(--color-primary);
  letter-spacing: 2px;
}

.hero-tagline .word-affordable {

  font-family: var(--font-arcade);
  color: var(--color-secondary);
  letter-spacing: 4px;
  font-weight: 100;
}



.hero-tagline .word-flexible {
  color: var(--color-dark);
  font-weight: 100 !important;
}


/*contact -image*/
.ax-image-wrapper {
  padding: 40px;
  background: #f2f2f2;
}

.ax-image-box {
  max-width: 1100px;
  margin: auto;
  /* border: 3px solid  */
}

.ax-image-box img {
  width: 100%;
  display: block;
}



















/*About - Page*/
/* Wrapper */
.ax-hero-wrapper {
  position: relative;
  width: 100%;
  min-height: 75vh;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  overflow: hidden;
}



@media(max-width:1024px) {
  .ax-hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 50vh;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    overflow: hidden;
  }
}

/* Content */
.ax-hero-content {
  text-align: center;
  z-index: 10;
  max-width: 700px;
  padding: 20px;
}

.ax-hero-content h1 {
  font-size: clamp(1.2rem, 3vw, 2.5rem);
  color: #333;
}

.ax-highlight {
  color: var(--orange);
  font-weight: bold;
}

.ax-hero-content h2 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-style: italic;
  padding: 0px;
  margin: 0px;
}

.ax-hero-content p {
  font-size: clamp(0.9rem, 1.2vw, 1.1rem);
  color: #666;
}

.ax-btn {
  background: linear-gradient(to bottom, #444, #000);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
}

/* Sphere */
.ax-sphere {
  position: absolute;
  width: clamp(70px, 10vw, 170px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sphere-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

.band {
  width: 160%;
  padding: 6px 0;
  transform: rotate(-25deg);
  text-align: center;
  font-weight: bold;
  font-size: clamp(0.6rem, 1vw, 0.9rem);
}

.black {
  background: #1a1a1a;
  color: #fff;
}

.teal {
  background: var(--teal);
  color: #000;
}

.orange {
  /* background: var(--orange); */
  color: #fff;
}

.white {
  background: #fff;
  color: #000;
}

/* ===== DESKTOP POSITIONS ===== */
.s-analytics {
  top: 15%;
  left: 5%;
}

.s-templates {
  top: 40%;
  left: 15%;
}

.s-seo {
  bottom: 15%;
  left: 5%;
}

.s-payments {
  bottom: 5%;
  left: 25%;
}

.s-graphics {
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
}

.s-dashboard {
  top: 38%;
  right: 18%;
}

.s-php {
  bottom: 5%;
  right: 15%;
}

.s-secure {
  bottom: 23%;
  right: 0%;
}

.s-store {
  top: 18%;
  right: 5%;
}

/* Animation */
@keyframes float {

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

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

/* ===== TABLET (1024px) ===== */
@media (max-width: 1024px) {

  .ax-sphere {
    width: clamp(60px, 9vw, 120px);
  }

  /* adjust spacing */
  /* .s-dashboard { right: 10%; } */
  /* .s-store { right: 2%; } */
}

/* ===== MOBILE (768px) ===== */
@media (max-width: 768px) {

  .ax-hero-wrapper {
    min-height: 50vh;
  }

  .ax-hero-content {
    padding: 10px;
  }

  .ax-sphere {
    width: 55px;
  }

  /* reposition instead of stacking */
  .s-analytics {
    top: 10%;
    left: 2%;
  }

  .s-templates {
    top: 30%;
    left: 5%;
  }

  .s-seo {
    bottom: 25%;
    left: 2%;
  }

  .s-payments {
    bottom: 10%;
    left: 20%;
  }

  .s-graphics {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
  }

  .s-dashboard {
    top: 35%;
    right: 10%;
  }

  .s-php {
    bottom: 10%;
    right: 12%;
  }

  .s-secure {
    bottom: 20%;
    right: 2%;
  }

  .s-store {
    top: 20%;
    right: 3%;
  }
}

/* ===== SMALL MOBILE (480px) ===== */
@media (max-width: 480px) {

  .ax-hero-content h1 {
    font-size: 1.1rem;
  }

  .ax-hero-content h2 {
    font-size: 2rem;
  }

  .ax-hero-content p {
    font-size: 0.75rem;
  }

  .ax-btn {
    padding: 8px 18px;
    font-size: 0.8rem;
  }

  .ax-sphere {
    width: 45px;
  }

  /* tighter layout */
  .s-analytics {
    top: 8%;
    left: 1%;
  }

  .s-store {
    top: 15%;
    right: 1%;
  }

  .s-dashboard {
    top: 30%;
    right: 5%;
  }
}


/* ===== EXTRA SMALL DEVICES (320px) ===== */
@media (max-width: 360px) {

  .ax-hero-wrapper {
    min-height: 60vh;
    padding: 10px;
  }

  .ax-hero-content h1 {
    font-size: 1rem;
  }

  .ax-hero-content h2 {
    font-size: 1.6rem;
  }

  .ax-hero-content p {
    font-size: 0.7rem;
  }

  .ax-btn {
    padding: 6px 14px;
    font-size: 0.7rem;
  }

  .ax-sphere {
    width: 60px;
    /* smaller spheres */
  }

  /* ===== TIGHT POSITIONS (NO OVERLAP) ===== */

  .s-analytics {
    top: 5%;
    left: 1%;
  }

  .s-templates {
    top: 27%;
    left: 2%;
  }

  .s-seo {
    bottom: 30%;
    left: 1%;
  }

  .s-payments {
    bottom: 12%;
    left: 15%;
  }

  .s-graphics {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
  }

  .s-dashboard {
    top: 36%;
    right: 6%;
  }

  .s-php {
    bottom: 12%;
    right: 10%;
  }

  .s-secure {
    bottom: 27%;
    right: -2%;
  }

  .s-store {
    top: 12%;
    right: 1%;
  }

}








/* Container Styling */
.ax-who-we-are {
  background-color: var(--color-dark);
  position: relative;
  padding: var(--padding-lg) 5%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

/* Subtle Grid Background */
.ax-grid-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 40%;
  background-image:
    linear-gradient(var(--color-gray) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-gray) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.8;
  z-index: 1;
}

.ax-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  width: 100%;
  gap: 50px;
  z-index: 2;
}

/* Text Section */
.ax-text-box {
  flex: 1;
}

.ax-title {
  font-size: clamp(40px, 6vw, var(--fs-md));
  margin-bottom: 20px;
  color: var(--color-white);
}

.font-kalam {
  font-family: var(--font-kalam);
  font-weight: normal;
}

.font-arcade {
  /* font-family: var(--font-arc  ade); */
  letter-spacing: 2px;
  color: var(--color-secondary);
}

.text-secondary {
  color: var(--color-secondary);
}

.ax-description {
  color: var(--color-light-gray);
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.8;
  max-width: 550px;
}

/* Video Shape Styling */
.ax-image-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin-right: -10%;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

/* .ax-shape-outline {
    background: var(--color-primary);
    padding: 8px;
    clip-path: polygon(50% 0%, 100% 30%, 100% 100%, 0% 100%, 0% 30%);
    width: 100%;
    max-width: 500px;
    transition: var(--transition-smooth);
}

.ax-main-shape {
    clip-path: polygon(50% 0%, 100% 30%, 100% 100%, 0% 100%, 0% 30%);
    background: var(--color-black);
    width: 100%;
    aspect-ratio: 1 / 1.1;
    overflow: hidden;
} */

.ax-shape-outline {
  background: var(--color-primary);
  padding: 8px 0 0 8px;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  max-width: none;
  width: 400px;
  transition: var(--transition-smooth);
  /* position: absolute;
    top: 0;
    right: 0; */
}

.ax-main-shape {
  /* clip-path: polygon(50% 0%, 100% 30%, 100% 100%, 0% 100%, 0% 30%); */
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  -webkit-clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  background: var(--color-black);
  width: 100%;
  aspect-ratio: 1 / 1;
  /* Video container balance */
  overflow: hidden;
}

/* Specific Video Styling */
.ax-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures video fills the shape */
  display: block;
  transition: transform var(--transition-smooth);
}

.ax-shape-outline:hover .ax-video-element {
  transform: scale(1.05);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .ax-content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .ax-description {
    margin: 0 auto;
  }

  .ax-image-container {
    justify-content: center;
    margin-top: 40px;
  }

  .ax-grid-bg {
    width: 100%;
    top: auto;
    bottom: 0;
  }
}

@media (max-width: 480px) {
  .ax-who-we-are {
    padding: var(--padding-md) 20px;
  }

  .ax-shape-outline {
    max-width: 100%;
  }
}













/* Container Styling */
.ax-mission-section {
  background-color: #fddbd0;
  /* Matches the peach tone in your image */
  padding: 59px 20px;
  /* Space control using padding */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.ax-mission-container {
  max-width: 900px;
  text-align: center;
  animation: fadeInMission 1s ease-out;
}

/* Heading Styling */
.ax-mission-title {
  font-family: var(--font-default);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 20px;
  letter-spacing: -1px;
  margin: 0px;
}

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

.italic {
  font-style: italic;
}

/* Quote Styling */
.ax-mission-quote {
  font-family: var(--font-default);
  font-size: clamp(18px, 3vw, 28px);
  font-style: italic;
  color: var(--color-gray);
  margin: 0;
  line-height: 1.4;
  font-weight: 500;
}

/* Subtle Animation */
@keyframes fadeInMission {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* Responsive Adjustments */
@media (max-width: 768px) {
  .ax-mission-section {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
  .ax-mission-section {
    padding: 40px 10px;
  }

  .ax-mission-title {
    margin-bottom: 15px;
  }
}





/* Parent Section  leader section */
.ax-leaders-parent {
  width: 100%;
  background: var(--color-white);
}

.ax-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Titles */
.ax-main-title {
  font-size: clamp(32px, 5vw, 48px);
  text-align: left;
  margin-top: 25px;
  margin-bottom: 50px;
  color: var(--color-dark);
}

.ax-bold {
  font-weight: 800;
}

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

/* Team Grid */
.ax-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 100px;
}

.ax-leader-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid #eee;
  padding: 10px;
}

.ax-leader-img {
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.ax-leader-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slanted Labels */
.ax-leader-info {
  position: relative;
  background: var(--color-primary);
  color: white;
  padding: 20px 10px;
  text-align: center;
  margin-top: -30px;
  /* Overlap effect */
}

.ax-leader-info::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 31px;
  background: var(--color-secondary);
  clip-path: polygon(0 80%, 100% 20%, 100% 100%, 0% 100%);
}

.ax-leader-info h4 {
  margin: 0;
  font-size: 18px;
}

.ax-leader-info p {
  margin: 5px 0 0;
  font-size: 13px;
  opacity: 0.9;
}

/* Stories Section (The Dark Slant) */
.ax-stories-wrapper {
  background: linear-gradient(135deg, #2d2d2d 0%, #121212 100%);
  clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
  padding: 150px 0 80px;
  margin-top: -100px;
  color: white;
}

/* Testimonial Card */
.ax-testimonial-card {
  background: white;
  color: #333;
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ax-test-img {
  width: 40%;
}

.ax-test-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ax-test-body {
  width: 60%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ax-quote {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-gray);
  margin-bottom: 30px;
}

.ax-test-footer {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.ax-footer-item strong {
  color: var(--color-black);
}

.ax-footer-item span {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* Bottom Labels */
.ax-stories-label {
  text-align: center;
  margin-top: 50px;
}

.font-arcade {
  font-size: 60px;
  color: var(--color-secondary);
  letter-spacing: 5px;
  margin: 20px 0;
}

.ax-success-text {
  font-size: 48px;
  font-family: var(--font-default);
}

/* Responsive Logic */
@media (max-width: 992px) {
  .ax-testimonial-card {
    flex-direction: column;
  }

  .ax-test-img,
  .ax-test-body {
    width: 100%;
  }

  .ax-test-img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .ax-stories-wrapper {
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
  }

  .font-arcade {
    font-size: 40px;
  }
}


/*faq section */


.ax-faq-section {
  padding: 30px 5%;
  background-color: #fdfdfd;
  /* Light background like image */
}


.ax-faq-title {
  font-size: 64px;
  font-family: var(--font-default);
  margin-bottom: 50px;
  color: var(--color-dark);
}

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

.ax-faq-list {
  display: flex;
  flex-direction: column;
}

/* FAQ Item Styling */
.ax-faq-item {
  border-bottom: 1px solid var(--color-light-gray);
  padding: 20px 0;
  cursor: pointer;
  transition: var(--transition-fast);
}

.ax-faq-item[open] {
  padding-bottom: 30px;
}

/* Question / Summary Styles */
.ax-faq-question {
  list-style: none;
  /* Default arrow remove */
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 500;
  color: var(--color-black);
  outline: none;
}

/* Chrome/Safari fix for summary arrow */
.ax-faq-question::-webkit-details-marker {
  display: none;
}

/* Custom Icon (The Down Arrow) */
.ax-icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--color-black);
  border-bottom: 2px solid var(--color-black);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-right: 10px;
}

/* Rotate icon when open */
.ax-faq-item[open] .ax-icon {
  transform: rotate(-135deg);
  margin-top: 8px;
}

/* Answer Styles */
.ax-faq-answer {
  padding-top: 15px;
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 850px;
  animation: slideDown 0.4s ease-out;
}

/* Animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

/* Responsive */
@media (max-width: 768px) {
  .ax-faq-title {
    font-size: 48px;
  }

  .ax-faq-item {
    padding: 15px 0;
  }
}





.custom-svg-background-color {
  background-color: #3f3f3f;
}


















/* vision-section */
/* --- VISION & MISSION SECTION --- */
.ax-vision-mission-sec {
  /* background: var(--ax-dark-gradient); */
  /* padding: var(--padding-lg) 0; */
  color: var(--color-white);
  overflow: hidden;
}

.ax-vm-card {
  padding: var(--padding-md);
  transition: var(--transition-smooth);
  /* background-color: #0d0d0d; */

  /* background-image: radial-gradient(ellipse 30% 50% at center,
      rgba(247, 52, 0, 0.8) 0%,
      rgba(255, 106, 61, 0.4) 30%,
      rgba(255, 106, 61, 0.1) 50%,
      transparent 80%); */
  background-image: radial-gradient(ellipse 26% 50% at center,
      rgba(160, 28, 0, 0.2) 0%,
      rgba(255, 106, 61, 0.1) 30%,
      rgba(255, 106, 61, 0.1) 50%,
      transparent 80%)
}


.ax-vm-card-to {
  padding: var(--padding-md);
  transition: var(--transition-smooth);
  /* background-color: #0d0d0d; */

  background-image: radial-gradient(ellipse 30% 50% at center,
      rgba(42, 174, 146, 0.1) 0%,
      rgba(146, 214, 204, 0.1) 30%,
      rgba(255, 106, 61, 0.1) 50%,
      transparent 80%)
}



.ax-vm-header {
  flex-wrap: wrap;
}

/* Icon Box with Blue Border from Image */
.ax-vm-icon-box {
  width: 210px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ax-vm-icon-box.vision-border {
  /* border: 3px solid #1a73e8;  */
  padding: 10px;
}

.ax-vm-icon-box img {
  max-width: 100%;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

/* Typography */
.ax-vm-title {
  font-family: var(--font-kalam);
  font-size: 50px;
  font-weight: 600;
  margin: 0;
}

.ax-arcade-text {
  font-family: var(--font-arcade);
  color: var(--ax-brand-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 58px;
  font-weight: 400;
}

/* Styled Divider with Star */
.ax-vm-divider {
  position: relative;
  width: 200px;
  height: 1px;
  background: var(--color-gray);
  margin: 15px auto;
}

.ax-vm-divider::before,
.ax-vm-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--color-light-gray);
}

.ax-vm-divider::before {
  left: 0;
}

.ax-vm-divider::after {
  right: 0;
}

.ax-star {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffcc00;
  font-size: 14px;
}

.ax-vm-desc {
  font-family: var(--font-gilroy-medium);
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--color-light-gray);
  /* max-width: 700px;
    margin: 0 auto; */
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .ax-vm-header {
    flex-direction: column;
    gap: 15px !important;
  }

  .ax-vm-desc {
    font-size: 1rem;
    padding: 0 15px;
  }

  .ax-vm-icon-box {
    width: 100px;
    height: 100px;
  }
}





















/*Testimonial-section*/
.ax-testi-section {
  /* background: var(--gradient-banner);
  min-height: 100vh;
  display: flex; */
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
  width: 100%;
}


.ax-testi-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--color-light-gray);
  border-radius: 50px;
  padding: 6px 18px;
  color: var(--color-light-gray);
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-family: var(--font-default);
  margin-bottom: 28px;
  width: fit-content;
}

.ax-testi-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  display: inline-block;
  flex-shrink: 0;
}


.ax-testi-heading {
  font-size: clamp(34px, 4.5vw, 64px);
  color: var(--color-white);
  line-height: 1.12;
  font-family: var(--font-gilroy-medium);
  margin-bottom: 22px;
}

.ax-testi-heading-red {
  color: var(--color-primary);
  /* font-family: var(--font-droid); */
}

.ax-testi-heading-cursive {
  font-family: var(--font-kalam);
  color: var(--color-white);
}


.ax-testi-subtext {
  color: white;
  font-sie: 15px;
  font-family: var(--font-default);
  line-height: 1.7;
  margin-bottom: 30px;
}


.ax-testi-divider {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ax-testi-star {
  font-size: 22px;
  color: #f5c518;
  line-height: 1;
}

.ax-testi-divider-line {
  width: 110px;
  height: 1.5px;
  background: var(--color-light-gray);
  opacity: 0.45;
}


.ax-testi-track-outer {
  position: relative;
  overflow: hidden;
}

.ax-testi-track-outer::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 100%;
  background: linear-gradient(to left, #1a1c1f, transparent);
  pointer-events: none;
  z-index: 2;
}

.ax-testi-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  /* padding-bottom: 6px; */
      padding: 10px;
  scrollbar-width: none;
}

.ax-testi-track::-webkit-scrollbar {
  display: none;
}


.ax-testi-card {
  background: var(--color-primary);
  border-radius: var(--radius-md);
  padding: 26px 22px 22px;
  min-width: 272px;
  max-width: 288px;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
}

/* .ax-testi-card:hover {

  box-shadow: 0 22px 52px rgba(247, 52, 0, 0.38);
} */


.ax-testi-card-header {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
}

.ax-testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--sphere-grad);
  border: 2px solid rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ax-testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ax-testi-avatar-initials {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-default);
}

.ax-testi-card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  font-family: var(--font-default);
  margin-bottom: 3px;
}

.ax-testi-card-role {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-default);
}


.ax-testi-card-body {
  background: rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-sm);
  padding: 16px 15px;
}

.ax-testi-card-text {
  font-size: 13px;
  color: var(--color-white);
  line-height: 1.68;
  font-family: var(--font-default);
}


@media (max-width: 991.98px) {
  .ax-testi-section {
    padding: 60px 0;
  }

  .ax-testi-left-col {
    text-align: center;
    margin-bottom: 44px;
  }

  .ax-testi-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .ax-testi-subtext {
    max-width: 100%;
  }

  .ax-testi-divider {
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .ax-testi-heading {
    font-size: clamp(28px, 9vw, 40px);
  }

  .ax-testi-card {
    min-width: 250px;
    padding: 20px 16px 18px;
  }
}

















.pricing-header {
  position: relative;
  padding: 30px 0;
  /* background: radial-gradient(circle at top right, #2c2c2c, #0e0e0e); */
  overflow: hidden;
}

/* subtle gradient glow effect */
.pricing-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(120deg, rgba(255, 69, 0, 0.15), transparent); */
  z-index: 1;
}

/* TITLE */
.pricing-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

/* ORANGE PIXEL STYLE */
.pricing-highlight {
  color: #ff3c00;
  font-family: var(--font-arcade);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* NORMAL TEXT */
.pricing-normal {
  font-weight: 300;
  color: #eaeaea;
  font-family: var(--font-gilroy);
}

/* SUBTITLE */
.pricing-subtitle {
  color: #cfcfcf;
  font-size: 16px;
  margin-bottom: 30px;
}

/* DIVIDER */
.pricing-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.pricing-divider .line {
  width: 100px;
  height: 1px;
  background: #888;
  opacity: 0.5;
}

.pricing-divider .star {
  color: #f5c518;
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .pricing-header {
    padding: 70px 0;
  }

  .pricing-divider .line {
    width: 60px;
  }
}












/*logo -section*/

/* 
.custom-built-heading {
  font-family: var(--font-arcade);
}

.ax-custom-logo-sec-container {
  padding: 80px 20px;
  color: white;
  font-family: 'Inter', sans-serif;
  text-align: center;
  overflow: hidden;
}

.ax-custom-logo-sec-header h1 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ax-custom-logo-sec-header h1 span.ax-custom-logo-sec {
  font-family: var(--font-kalam);
  font-style: italic;
  text-transform: none;
  font-weight: 300;
}

.ax-custom-logo-sec-header h1 span.ax-custom-logo-sec-highlight {
  color: #ff4500;
  font-family: var(--font-gilroy-medium);
}

.ax-custom-logo-sec-sub-text {
  color: #ccc;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.ax-custom-logo-sec-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.ax-custom-logo-sec-line {
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, #555, transparent);
}

.ax-custom-logo-sec-star {
  color: #ffd700;
  margin: 0 15px;
  font-size: 1.2rem;
}

/* Marquee Styles */
.ax-custom-logo-sec-marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.ax-custom-logo-sec-marquee-row {
  display: flex;
  white-space: nowrap;
  width: 100%;
}

.ax-custom-logo-sec-marquee-content {
  display: flex;
  gap: 20px;
  animation: ax-logo-scroll 25s linear infinite;
}

.ax-custom-logo-sec-reverse .ax-custom-logo-sec-marquee-content {
  animation: ax-logo-scroll-reverse 25s linear infinite;
}

@keyframes ax-logo-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes ax-logo-scroll-reverse {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.ax-custom-logo-sec-card {
  min-width: 220px;
  height: 110px;
  /* background: rgba(255, 255, 255, 0.05);
  background: linear-gradient(135deg, rgba(34, 34, 34, 0), rgba(42, 174, 146, 1));
  border: 1px solid rgba(255, 255, 255, 0.1); */
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.4rem;
  color: #a0a0a0;
  /* box-shadow: inset 0 0 15px rgba(255, 69, 0, 0.1); */
  transition: transform 0.3s ease;
}

.ax-custom-logo-sec-card:hover {
  border-color: #ff4500;
  color: white;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .ax-custom-logo-sec-header h1 {
    font-size: 2.2rem;
  }

  .ax-custom-logo-sec-card {
    min-width: 160px;
    height: 80px;
    font-size: 1rem;
  }
}



.ax-testi-card {
  background: var(--color-primary);
  border-radius: 24px;
  min-width: clamp(250px, 30vw, 290px);
  max-width: 290px;
  flex-shrink: 0;
  scroll-snap-align: start;
  overflow: hidden;
  transition: 0.3s;
  cursor: pointer;
  position: relative;
}

.ax-testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(247, 52, 0, 0.35);
}


.ax-testi-card-top {
  background: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 20px;

}


.ax-testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #000;
  font-size: 14px;
}


.ax-testi-card-name {
  font-size: 14px;
  font-weight: 700;
  color: #ff4d00;
}

.ax-testi-card-role {
  font-size: 11px;
  color: #777;
}


.ax-testi-card-body {
  padding: 16px;
}

.ax-testi-card-text {
  font-size: clamp(12px, 2vw, 13px);
  line-height: 1.6;
  color: #fff;
}











/*brand-section*/

.ax-custom-logo-sec-container {
  padding: clamp(40px, 8vw, 40px) 20px;
  /* // background-color: #ffffff; */
  overflow: hidden;
  width: 100%;
}

.ax-custom-logo-sec-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(30px, 6vw, 50px);
}

.ax-custom-logo-sec-header h1 {
  font-size: clamp(28px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #121212;
  text-transform: uppercase;
}

.custom-built-heading {
  color: #f73400;
  font-family: var(--font-arcade);
}

.ax-custom-logo-sec-highlight {
  color: #f73400;
  font-family: var(--font-gilroy-medium);

}

.ax-custom-logo-sec-sub-text {
  font-size: clamp(14px, 2vw, 18px);
  color: white;
  line-height: 1.6;
  margin-bottom: 20px;
}

.ax-custom-logo-sec-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.ax-custom-logo-sec-line {
  height: 1px;
  width: clamp(50px, 10vw, 100px);
  background-color: #ddd;
}

.ax-custom-logo-sec-star {
  color: #f73400;
  font-size: 20px;
}

/* Marquee Styles */
.ax-custom-logo-sec-marquee-wrapper {
      display: flex;
    flex-direction: column;
    gap: clamp(20px, 4vw, 40px);
    width: 100%;
    background: white;
    padding: 43px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.4);
}

.ax-custom-logo-sec-marquee-row {
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 30px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.ax-custom-logo-sec-marquee-content {
  display: flex;
  flex-shrink: 0;
  gap: clamp(30px, 6vw, 60px);
  min-width: 100%;
  animation: scroll-left 30s linear infinite;
  align-items: center;
}

.ax-custom-logo-sec-reverse .ax-custom-logo-sec-marquee-content {
  animation: scroll-right 30s linear infinite;
}

.ax-custom-logo-sec-card {
  width: clamp(120px, 15vw, 200px);
  height: clamp(60px, 8vw, 85px);
  object-fit: contain;
  /* // filter: grayscale(100%);
            // opacity: 0.7; */
  transition: all 0.3s ease;
}

.ax-custom-logo-sec-card:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - clamp(30px, 6vw, 60px)));
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(calc(-100% - clamp(30px, 6vw, 60px)));
  }

  to {
    transform: translateX(0);
  }
}

/* Mobile Tweaks */
@media (max-width: 600px) {
  .ax-custom-logo-sec-marquee-content {
    animation-duration: 20s;
    /* Faster scroll on mobile */
  }
}


.ax-custom-logo-sec {
  color: white;
  font-family: var(--font-kalam);
}























/*contact-section*/
/* === Base Styles & Variables === */
.ax-main-container * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.ax-main-container {
  font-family:var(--font-default);
  /* background: radial-gradient(circle at top, #2C2C2C 0%, #121212 100%); */
  color: #FFFFFF;
  padding: 40px 50px;
  position: relative;
  overflow: hidden;
  /* min-height: 100vh; */
}

/* === Geometric Graphic === */
.ax-diamond-graphic {
  position: absolute;
  top: 50px;
  right: 0;
  width: 350px;
  height: 350px;
  opacity: 0.9;
  z-index: 1;
}

/* === Layout Grid === */
.ax-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
}

/* === Left Side (Text & Icons) === */
.ax-text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ax-main-title {
  font-size: 5rem;
  font-weight: 300;
  line-height: 1.1;
}

.ax-main-title span.ax-cursive {
  font-family: var(--font-kalam);
  color: white;
  /* font-weight: 400; */
}

.custom-to-write {
  color: white;
  font-family: var(--font-kalam);
}

.ax-main-title span.ax-highlight {
  color: #FF4D00;
  font-family: var(--font-kalam);
  /* font-weight: 600; */
}

.ax-sub-title {
  font-size: 1.1rem;
  color: #CCCCCC;
  max-width: 500px;
  margin-top: 10px;
  line-height: 1.6;
}

.ax-divider {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.ax-line {
  height: 1px;
  width: 60px;
  background-color: #555555;
}

.ax-star {
  color: #FFD700;
  margin: 0 10px;
  font-size: 1.2rem;
}

.ax-info-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

.ax-info-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ax-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 77, 0, 0.1);
  border: 1px solid rgba(255, 77, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FF4D00;
  font-size: 1.5rem;
}

.ax-info-text h4 {
  font-size: 1.2rem;
  font-weight: 600;
}

.ax-info-text p {
  font-size: 0.95rem;
  color: #BBBBBB;
}

/* === Right Side (Contact Form) === */
.ax-form-wrapper {
  background-color: rgba(30, 30, 30, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.ax-form-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.ax-form-header-icon {
  font-size: 1.8rem;
  color: #FF4D00;
}

.ax-form-header-text h3 {
  font-size: 1.5rem;
}

.ax-form-header-text p {
  color: #CCCCCC;
  font-size: 0.9rem;
}

.ax-contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.ax-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ax-input-group.ax-full-width {
  grid-column: span 2;
}

.ax-label {
  color: #CCCCCC;
  font-size: 0.9rem;
  font-weight: 500;
}

.ax-input-wrapper {
  position: relative;
  width: 100%;
}

.ax-input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666666;
  font-size: 1.1rem;
}

.ax-form-input {
  width: 100%;
  padding: 15px 15px 15px 45px;
  background-color: #1A1A1A;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 0.95rem;
  transition: border-color 0.3s;
}

.ax-form-input:focus {
  outline: none;
  border-color: #FF4D00;
}

.ax-form-textarea {
  grid-column: span 2;
  width: 100%;
  padding: 15px;
  background-color: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 0.95rem;
  resize: none;
  min-height: 150px;
  margin-top: 10px;
}

.ax-form-textarea:focus {
  outline: none;
  border-color: #FF4D00;
}

.ax-send-btn {
  grid-column: span 2;
  background-color: #FF4D00;
  color: #FFFFFF;
  border: none;
  padding: 18px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 15px;
  transition: background-color 0.3s;
}

.ax-send-btn:hover {
  background-color: #E64500;
}

/* === Media Queries (Responsiveness) === */
@media (max-width: 1024px) {
  .ax-content-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .ax-diamond-graphic {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .ax-main-container {
    padding: 80px 25px;
  }

  .ax-main-title {
    font-size: 3.5rem;
  }

  .ax-diamond-graphic {
    width: 200px;
    height: 200px;
    top: 20px;
  }

  .ax-form-wrapper {
    padding: 30px 20px;
  }

  .ax-contact-form {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ax-input-group.ax-full-width {
    grid-column: span 1;
  }

  .ax-form-textarea {
    grid-column: span 1;
  }

  .ax-send-btn {
    grid-column: span 1;
  }
}




























/*BLog-section*/
/* ── SECTION ── */
.ax-insights-sec {

  padding: 70px 0 80px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.ax-insights-sec::before {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 52, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.ax-insights-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── HEADER ── */
.ax-insights-header {
  margin-bottom: 44px;
}

.ax-insights-title-line1 {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2px;
}

.ax-insights-title-plain {
  font-family: var(--font-gilroy-medium);
  font-size: clamp(32px, 5vw, 56px);
  /* font-weight: 800; */
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.ax-insights-title-bold-tag {
  /* font-family: var(--font-display); */
  font-size: clamp(30px, 5vw, 52px);
  /* font-weight: 800; */
  color: var(--color-white);
  /* background: var(--color-white); */
  color: white;
  padding: 2px 12px 4px;
  border-radius: 6px;
  line-height: 1.1;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ax-insights-title-line2 {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.ax-insights-title-cursive {
  font-family: var(--font-kalam);
  font-size: clamp(34px, 5.5vw, 60px);
  /* font-weight: 700; */
  color: var(--color-primary);
  line-height: 1.1;
  font-style: italic;
}

.ax-insights-title-growth {
  font-family: var(--font-kalam);
  font-size: clamp(32px, 5vw, 56px);
  /* font-weight: 800; */
  color: var(--color-white);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

/* .ax-insights-title-dot {
    color: var(--color-primary);
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 800;
    font-family: var(--font-display);
  } */

.ax-insights-subtext {
  font-family: var(--font-default);
  font-size: 14px;
  color: var(--color-white);
  line-height: 1.65;
  max-width: 340px;
  margin-bottom: 22px;
}

.ax-insights-star-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ax-insights-star {
  color: #f5c518;
  font-size: 20px;
  line-height: 1;
}

.ax-insights-star-line {
  width: 100px;
  height: 1.5px;
  background: var(--color-light-gray);
  opacity: 0.35;
}

/* ── TIMELINE LINE ── */
.ax-insights-layout {
  display: flex;
  gap: 0;
  position: relative;
}

.ax-insights-timeline {
  width: 32px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8px;
}

.ax-insights-timeline-line {
  width: 1.5px;
  flex: 1;
  background: linear-gradient(to bottom, rgba(54, 227, 191, 0.6), rgba(54, 227, 191, 0.1));
  border-radius: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* ── GRID ── */
.ax-insights-grid-wrap {
  flex: 1;
  padding-left: 12px;
}

.ax-insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

/* ── CARD ── */
.ax-insights-card {
  /* background: #1c1f23; */
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  cursor: pointer;
  position: relative;
}

.ax-insights-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
  border-color: rgba(247, 52, 0, 0.25);
}

.ax-insights-card-img-wrap {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.ax-insights-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
  display: block;
}

.ax-insights-card:hover .ax-insights-card-img-wrap img {
  transform: scale(1.06);
}

.ax-insights-card-body {
  padding: 16px 15px 14px;
}

.ax-insights-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 11px;
}

.ax-insights-tag {
  font-family: var(--font-default);
  font-size: 10.5px;
  font-weight: 600;
  border-radius: 50px;
  padding: 7px 11px;
  letter-spacing: 0.3px;
}

.ax-insights-tag-primary {
  /* background: var(--color-primary); */
  background: linear-gradient(to right, #F73400, #911F00);
  color: var(--color-white);
}

.ax-insights-tag-secondary {
  /* background: #2e2e2e; */
  background: #4A4A4A;
  color: var(--color-light-gray);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ax-insights-tag-design {
  background: linear-gradient(to right, #F73400, #911F00);
  color: white;
}

.ax-insights-tag-education {
  background: linear-gradient(to right, #F73400, #911F00);
  color: white;
}

.ax-insights-card-title {
  font-family: var(--font-display);
  font-size: clamp(13px, 2vw, 20px);
  font-weight: 700;
  color: var(--color-white);
  /* color: var(--color-primary); */
  line-height: 1.32;
  margin-bottom: 9px;
  letter-spacing: -0.2px;
}

.ax-insights-card-desc {
  font-family: var(--font-default);
  font-size: 17px;
  /* color: var(--color-text-muted); */
  color: var(--color-white);
  line-height: 1.62;
  margin-bottom: 30px;
  opacity: 0.8;
}

.ax-insights-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.ax-insights-author {
  font-family: var(--font-default);
  font-size: 11.5px;
  /* color: var(--color-light-gray); */
  color: var(--color-orange);
  line-height: 1.4;
}

.ax-insights-author-name {
  font-weight: 600;
  /* color: var(--color-white); */
  color: var(--color-orange);
  font-size: 12px;
}

.ax-insights-arrow-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition-fast), border-color var(--transition-fast);
  cursor: pointer;
}

.ax-insights-card:hover .ax-insights-arrow-btn {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.ax-insights-arrow-btn svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--ax-brand-orange);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke var(--transition-fast);
}

.ax-insights-card:hover .ax-insights-arrow-btn svg {
  stroke: var(--color-white);
}

/* ── TALL CARD (left col) ── */
.ax-insights-card-tall .ax-insights-card-img-wrap {
  aspect-ratio: 4/3;
}

/* ── VIEW ALL BUTTON ── */
.ax-insights-cta-wrap {
  margin-top: 200px;
  display: flex;
  justify-content: center;
  justify-content: center;
  padding-left: 0px;
}

.ax-insights-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  /* background: transparent; */
  /* background: linear-gradient(to right, #4A4A4A, #000000); */
  background: var(--gradient-cta);
  /* border: 1.5px solid var(--color-primary); */
  border-radius: 10px;
  padding: 18px 72px;
  color: var(--color-white);
  font-family: var(--font-default);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
  letter-spacing: 0.2px;
  text-decoration: none;
  margin-left: 90px;
}



@media(max-width:375px) {
  .ax-insights-cta-btn {

    padding: 5px 15px !important;
  }

  .ax-insights-cta-wrap {
    margin-top: 0px;
  }
}

.ax-insights-cta-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

.ax-insights-cta-icon {
  font-size: 16px;
  line-height: 1;
  transform: rotate(-45deg);
  display: inline-block;
  transition: transform var(--transition-fast);
}

.ax-insights-cta-btn:hover .ax-insights-cta-icon {
  transform: rotate(0deg);
}

/* ── RESPONSIVE ── */
@media (max-width: 767px) {
  .ax-insights-sec {
    padding: 50px 0 60px;
  }

  .ax-insights-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ax-insights-card-tall .ax-insights-card-img-wrap {
    aspect-ratio: 16/9;
  }

  .ax-insights-timeline {
    display: none;
  }

  .ax-insights-grid-wrap {
    padding-left: 0;
  }

  .ax-insights-cta-wrap {
    padding-left: 0;
    justify-content: center;
    margin-top: 10px;
  }



  .ax-insights-cta-btn {

    padding: 5px 15px !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .ax-insights-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

@media (min-width: 1024px) {
  .ax-insights-grid {
    grid-template-columns: 1fr 1fr;
  }
}




























/*Founders section */
.ax-founders-sec-container {
  /* background-color: #121212;
            background: radial-gradient(circle at center, #2c2c2c 0%, #121212 100%); */
  padding: 80px 20px;
  color: white;
  font-family: 'Inter', sans-serif;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 800px;
}

/* --- Header Section --- */
/* .ax-founders-header {
  margin-bottom: 40px;
} */

.ax-founders-title {
  font-size: 3rem;
  display: inline-block;
  position: relative;
}

.ax-founders-our {
  font-family: var(--font-kalam);
  font-weight: 700;
  margin-right: 10px;
}

.ax-founders-main {
  font-family: var(--font-arcade);
  font-weight: 900;
  color: #FF4500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ax-founders-underline {
  height: 3px;
  /* background-color: #007bff; */
  width: 100%;
  display: block;
  margin-top: -5px;
}

/* --- Arc Graphic Section --- */
.ax-arc-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 50px auto;
  padding: 40px 0;
}

.ax-arc-svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 250px;
  z-index: 1;
  opacity: 0.3;
}

.ax-arc-text {
  position: relative;
  z-index: 2;
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  line-height: 1.4;
}

/* --- Founder Cards --- */
.ax-founders-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
}

.ax-founder-card {
  width: 280px;
  border-radius: 25px;
  overflow: hidden;
  /* border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05); */
  transition: transform 0.3s ease;
  /* height: 380px; */
}

.ax-founder-card:hover {
  transform: translateY(-10px);
  /* border-color: #FF4500; */
}

.ax-founder-image {
  width: 100%;
  /* height: 350px; */
  object-fit: cover;
  display: block;
  height: 100%;
}



.custom-ab-founder
{
  height: 405px;
}

/* --- Responsiveness --- */
@media (max-width: 768px) {
  .ax-founders-title {
    font-size: 2rem;
  }

  .ax-arc-text {
    font-size: 1.8rem;
  }

  .ax-arc-svg {
    display: none;
  }

  /* Hide complex arcs on mobile for clarity */
  .ax-founder-card {
    width: 100%;
    max-width: 320px;
  }
}
























/*service-section*/
.ax-step-sec-container {
  /* background-color: #121212; */
  padding: 80px 5%;
  color: #fff;
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.ax-step-sec-wrapper {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* --- Left Side Content --- */
.ax-step-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 30px;
  font-weight: 700;
  font-family: var(--font-gilroy-medium);
}

.ax-step-header h2 span.highlight {
  color: #ff4500;
  /* font-style: italic; */
  font-family: var(--font-kalam);
  /* font-family: serif; */
}

.ax-step-divider {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.ax-step-line {
  height: 1px;
  width: 60px;
  background: white;
}

.ax-step-star {
  color: #ffd700;
  font-size: 1.2rem;
}

/* --- Service List --- */
.ax-service-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ax-service-card {
  display: flex;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ax-service-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(10px);
}

.ax-service-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 20px;
  border: 1px solid currentColor;
}

.ax-service-info {
  flex-grow: 1;
}

.ax-service-info h4 {
  margin: 0 0 5px 0;
  font-size: 1.1rem;
}

.ax-service-info p {
  margin: 0;
  font-size: 0.85rem;
  color: #aaa;
}

.ax-service-arrow {
  color: #666;
  font-size: 1.2rem;
}

/* --- Right Side Image --- */
.ax-image-container {
  position: relative;
  padding: 20px;
}

.ax-main-image-frame {
  position: relative;
  width: 100%;
  /* border-radius: 40px 100px 40px 100px; */
  overflow: hidden;
  /* border: 3px solid #007bff;
            box-shadow: 0 0 30px rgba(0, 123, 255, 0.3); */
}

.ax-main-image-frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.9);
}

.ax-floating-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #ff4500;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(255, 69, 0, 0.4);
  z-index: 2;
}

/* --- Responsive Logic --- */
@media (max-width: 992px) {
  .ax-step-sec-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ax-step-divider {
    justify-content: center;
  }

  .ax-service-card:hover {
    transform: translateY(-5px);
  }

  .ax-image-container {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
}





































/*banner-section */
.ax-custom-banner-sec-wrapper {
  /* background: var(--gradient-banner); */
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--padding-lg);
  font-family: var(--font-gilroy);
  color: var(--color-white);
  text-align: center;
}

/* Background Blur Glow */
.ax-custom-banner-sec-glow-left {
  position: absolute;
  left: -10%;
  top: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(247, 52, 0, 0.2) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
}

.ax-custom-banner-sec-container {
  max-width: 1200px;
  width: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Badge Styling */
.ax-custom-banner-sec-badge {
  border: 1px solid var(--color-light-gray);
  border-radius: var(--radius-md);
  padding: 8px 25px;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.05);
}

.ax-custom-banner-sec-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  margin-right: 10px;
}

.ax-custom-banner-sec-badge .highlight {
  color: var(--color-primary);
  font-weight: bold;
}

/* Headings */
.ax-custom-banner-sec-heading-main {
  font-size: var(--fs-md);
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.font-arcade {
  /* font-family: var(--font-arcade); */
  font-family: var(--font-gilroy-medium);
  font-weight: 700;
  margin-left: 10px;
}

.ax-custom-banner-sec-heading-sub {
  font-family: var(--font-kalam);
  font-size: var(--fs-sm);
  margin: 0 0 20px 0;
}

.magic-text {
  color: var(--color-primary);
  position: relative;
}

.wand::after {
  /* content: '✨'; */
  position: absolute;
  top: -10px;
  right: -20px;
  font-size: 20px;
}

/* Description */
.ax-custom-banner-sec-desc {
  color: var(--color-light-gray);
  font-size: 18px;
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: 40px;
}





/* Floating Flower Shape */
.ax-custom-banner-sec-floating-shape {
  position: absolute;
  right: -5%;
  top: 15%;
  z-index: 1;
}

.custom-image-banner-sec {
  width: 340px;
  height: 340px;
}

.flower-shape {
  width: 100%;
  height: 100%;
  background-image: url('../images/Component 36.png');
  background-repeat: no-repeat;
  background-size: contain;
}


/* ===== RESPONSIVE STYLES ===== */

/* For Tablets (Max 992px) */
@media (max-width: 992px) {
  .ax-custom-banner-sec-heading-main {
    font-size: 50px;
    /* Reducing size for tablet */
  }

  .ax-custom-banner-sec-heading-sub {
    font-size: 40px;
  }

  .custom-image-banner-sec {
    width: 350px;
    height: 350px;
    right: 0;
  }
}

/* For Large Mobile (Max 768px) */
@media (max-width: 768px) {
  .ax-custom-banner-sec-wrapper {
    padding: 60px 20px;
    min-height: auto;
  }

  .ax-custom-banner-sec-heading-main {
    font-size: 40px;
  }

  .ax-custom-banner-sec-heading-sub {
    font-size: 32px;
  }

  .ax-custom-banner-sec-desc {
    font-size: 16px;
    padding: 0 10px;
  }

  .ax-custom-banner-sec-btn {
    padding: 12px 35px;
    font-size: 16px;
  }

  /* Moving floating shape slightly so it doesn't cover text */
  .ax-custom-banner-sec-floating-shape {
    top: 5%;
    right: 2%;
    opacity: 0.5;
    /* Keeping it subtle on mobile */
  }

  .custom-image-banner-sec {
    width: 100px;
    height: 100px;
  }
}

/* For Small Mobile (Max 480px) */
@media (max-width: 480px) {
  .ax-custom-banner-sec-badge {
    font-size: 11px;
    padding: 6px 15px;
  }

  .ax-custom-banner-sec-heading-main {
    font-size: 32px;
  }

  .ax-custom-banner-sec-heading-sub {
    font-size: 26px;
  }

  .ax-custom-banner-sec-desc br {
    display: none;
    /* Removing line breaks for better text flow on small screens */
  }

  .ax-custom-banner-sec-floating-shape {
    display: none;
    /* Optional: Hide floating shape on very small screens to keep it clean */
  }
}


















/* 
.fixed-btn {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 999;

}


.ax-custom-banner-sec-btn {
  background: var(--gradient-cta);
  border: 1px solid var(--color-primary);
  color: white;
  padding: 15px 45px;
  border-radius: var(--radius-xl);
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.fixed-btn {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 999;
}



.ax-custom-banner-sec-btn {
  position: relative;
  background: #121212;
  color: white;
  padding: 15px 45px;
  border-radius: 60px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  overflow: hidden;
  border: none;
  z-index: 1;
}



.ax-custom-banner-sec-btn::before {
  content: "";
  position: absolute;
  inset: -2px;

  background: linear-gradient(
    90deg,
    #ff4d00,
    #ffaa00,
    #36e3bf,
    #6646cc,
    #ff4d00
  );

  background-size: 300% 300%;
  border-radius: inherit;

  animation: borderMove 5s linear infinite;

  z-index: -2;
}



.ax-custom-banner-sec-btn::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #121212;
  border-radius: inherit;
  z-index: -1;
}



@keyframes borderMove {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 300% center;
  }
} */





/* #f73400, #36e3bf */

/* Wrapper div — button ke around lagao */
.btn-wrapper {
  position: relative;
  /* border-radius: var(--radius-xl); */
  border-radius: 20px;
  padding: 0.8px;
  background: transparent;
}

/* Rotating gradient border */
.btn-wrapper::before {
  content: '';
  position: absolute;
  inset: -1px;
  /* border-radius: calc(var(--radius-xl) + 2px); */
  border-radius: 22px;
  background: conic-gradient(from var(--angle),
      #f73400,
      #36e3bf,
      #f73400);
  animation: spin-border 3s linear infinite;
  z-index: 0;
}

/* Inner mask to hide the gradient behind button */
.btn-wrapper::after {
  content: '';
  position: absolute;
  inset: 2px;
  /* border-radius: calc(var(--radius-xl) - 1px); */
  border-radius: 19px;
  background: #1a1a2e;
  /* apna page background colour yahan dalo */
  z-index: 1;
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes spin-border {
  to {
    --angle: 360deg;
  }
}

/* Button ka border remove karo, z-index add karo */
.ax-custom-banner-sec-btn {
  background: var(--gradient-cta);
  /* border: 1px solid var(--color-primary); */
  color: white;
  padding: 15px 45px;
  /* border-radius: var(--radius-xl); */
  border-radius: 25px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  z-index: 2;
  border: none;
  transition: var(--transition-smooth);
}

.fixed-btn {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 999;

}
























/*responisve design home-page-section*/

.axs-premium-container {
  /* // font-family: 'Plus Jakarta Sans', sans-serif;
            // background: #080808; */
  color: #fff;
  /* min-height: 100vh; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 5%;
  overflow: hidden;
}

.axs-premium-nav {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px;
  border-radius: 100px;
  display: flex;
  gap: 5px;
  margin-bottom: 60px;
  z-index: 10;
}

.axs-nav-btn {
  padding: 12px 28px;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: #888;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.axs-nav-btn.active {
  color: #fff;
}

.axs-active-bg {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(90deg, #F73400 0%, #ff6a45 100%); */
  background: var(--gradient-primary);
  border-radius: 100px;
  z-index: -1;
}

.axs-display-card {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 500px;
}

.axs-text-side h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-family: var(--font-kalam);
  line-height: 1;
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: -2px;
}

.axs-text-side p {
  font-size: 20px;
  color: #a0a0a0;
  line-height: 1.6;
  margin-bottom: 30px;
  font-family: var(--font-gilroy-medium);
}

.axs-media-side {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 450px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.axs-visual-marquee {
  display: flex;
  gap: 20px;
  animation: axs-slide 15s linear infinite;
}

.axs-mock-mobile {
  width: 615px;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
  border: 4px solid #222;
}

.axs-floating-small-screen {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 279px;
  height: 279px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  z-index: 5;
  background: #000;
}

.axs-floating-small-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes axs-slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.axs-visual-code {
  font-family: 'Courier New', monospace;
  color: #36E3BF;
  font-size: 18px;
  padding: 40px;
  text-align: left;
  width: 100%;
}

.axs-features-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  padding: 20px 40px;
  overflow-y: auto;
}

.axs-feature-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 18px 24px;
  border-radius: 15px;
  border-left: 4px solid #F73400;
  text-align: left;
}

.axs-feature-title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.axs-feature-desc {
  display: block;
  font-size: 14px;
  color: #a0a0a0;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .axs-display-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .axs-media-side {
    height: auto;
    min-height: 350px;
    padding: 20px 0;
  }

  .axs-premium-nav {
    flex-wrap: wrap;
    border-radius: 20px;
    justify-content: center;
  }

  .axs-floating-small-screen {
    width: 120px;
    height: 120px;
    bottom: 10px;
    right: 10px;
  }

  .axs-features-list {
    padding: 20px;
  }
}









































/*feature-section*/
.root-template {
  /* // background:#05050a;
        //  min-height:100vh;  */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  padding-bottom: 100px;

  font-family: 'Arial', sans-serif;
  overflow: hidden;
  position: relative;
  color: #fff;
}


.bg-glow {
  position: absolute;
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 52, 0, 0.045) 0%, transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.013) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.013) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* Scaling Wrapper */
.scaler-wrap {
  transition: transform 0.3s ease;
  transform-origin: top center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

  to {
    transform: rotate(360deg)
  }
}

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

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

@keyframes orbGlow {

  0%,
  100% {
    box-shadow: 0 0 50px rgba(247, 52, 0, 0.35), 0 0 110px rgba(247, 52, 0, 0.1)
  }

  50% {
    box-shadow: 0 0 100px rgba(247, 52, 0, 0.6), 0 0 200px rgba(247, 52, 0, 0.18)
  }
}

@keyframes shimmer {
  0% {
    background-position: 200% center
  }

  100% {
    background-position: -200% center
  }
}

@keyframes nodePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(247, 52, 0, 0.6)
  }

  50% {
    box-shadow: 0 0 0 6px rgba(247, 52, 0, 0)
  }
}

@keyframes nodePulseT {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(54, 227, 191, 0.6)
  }

  50% {
    box-shadow: 0 0 0 6px rgba(54, 227, 191, 0)
  }
}

@keyframes dotFlow {
  0% {
    stroke-dashoffset: 120
  }

  100% {
    stroke-dashoffset: 0
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.2
  }
}

.htitle {
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 12px;
  text-align: center;
  font-family: var(--font-gilroy);
}

.shim {
  background: linear-gradient(90deg, #ff4d00, #ffaa00, #36e3bf, #ff4d00);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  /* font-family: var(--font-droid); */
}

.hsub {
  font-size: 13.5px;
  /* color:#5a5a5a; */
  max-width: 440px;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 20px;
  color: white;
}

.radial-stage {
  position: relative;
  width: 760px;
  height: 760px;
}

.svg-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.rg1 {
  width: 380px;
  height: 380px;
  border: 1px solid rgba(247, 52, 0, 0.08);
  animation: spin1 24s linear infinite;
}

.rg2 {
  width: 310px;
  height: 310px;
  border: 1px dashed rgba(54, 227, 191, 0.1);
  animation: spin2 38s linear infinite;
}

.rg3 {
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 30%, #1a1a22, #05050a);
  border: 1.5px solid rgba(247, 52, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: orbGlow 3s ease-in-out infinite;
}

.oprice {
  font-size: 30px;
  font-weight: 900;
  background: linear-gradient(135deg, #ff4d00, #ff8c00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.node-card {
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.nc-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  z-index: 15;
}

.nc-dot.orange {
  background: #f73400;
  animation: nodePulse 2.2s ease-in-out infinite;
}

.nc-dot.teal {
  background: #36e3bf;
  animation: nodePulseT 2.2s ease-in-out infinite;
}

.nc-box {
  background: rgba(255, 255, 255, 0.032);
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 14px;
  padding: 14px 16px;
  width: 213px;
  position: relative;
  overflow: hidden;
}

.nc-title {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
}

.nc-desc {
  font-size: 14.5px;
  /* color:#5e5e5e;  */
  color: #ffffffc4;
  line-height: 1.65;
  margin-bottom: 8px;
}

.nc-pill {
  display: inline-flex;
  padding: 2px 9px;
  border-radius: 100px;
  font-size: 9.5px;
  font-weight: 700;
  background: rgba(54, 227, 191, 0.08);
  color: #36e3bf;
  border: 1px solid rgba(54, 227, 191, 0.2);
}





















/*demo-form*/

.ax-demo-cont-form-section {
  width: 100%;
  /* // min-height: 100vh; */
  /* display: flex;
  align-items: center;
  justify-content: center; */
  /* padding: var(--padding-lg) var(--padding-md); */
  font-family: var(--font-default);
  background-color: var(--color-black);
   display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.ax-demo-cont-form-split {
  /* display: flex; */
  width: 100%;
  /* max-width: 1362px; */
  /* background: var(--color-dark); */
  /* border-radius: var(--radius-md); */
  /* overflow: hidden; */
  /* border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); */
}

/* LEFT SIDE: FEATURES INSTEAD OF IMAGE */
.ax-demo-cont-form-image {
  flex: 1;
  /* // background: linear-gradient(135deg, #1a1a1a 0%, #000 100%); */
  padding: var(--padding-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.ax-demo-cont-form-img-text h3 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
  background: linear-gradient(90deg, #ff4d00, #ffaa00, #36e3bf, #ff4d00);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* animation: shimmer 4s linear infinite; */
}

@keyframes shimmer {
  0% {
    background-position: 200% center
  }

  100% {
    background-position: -200% center
  }
}

.ax-demo-cont-form-img-text h3 span {
  color: var(--color-primary);
}

.ax-demo-cont-form-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}

.ax-feat-card {
  /* // background: rgba(255,255,255,0.03); */
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 20px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  border-color: var(--color-primary);
}

.ax-feat-card:hover {
  border-color: var(--color-primary);
  background: rgba(247, 52, 0, 0.05);
}

.ax-feat-card i {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-bottom: 12px;
  display: block;
}

.ax-feat-card h4 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 5px;
}

.ax-feat-card p {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

/* RIGHT SIDE: FORM */
.ax-demo-cont-form-content {
  flex: 1;
  padding: var(--padding-lg);
  /* background-color: #161616; */
}

.ax-demo-cont-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ax-demo-cont-form-group {
  display: flex;
  flex-direction: column;
  /* gap: 8px;   */
}

.ax-demo-cont-form-full-width {
  grid-column: span 2;
}

.ax-demo-cont-form-label {
  color: var(--color-light-gray);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  /* letter-spacing: 1px; */
}

.ax-demo-cont-form-input-wrapper {
  position: relative;
  width: 100%;
}

.ax-demo-cont-form-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  /* transform: translateY(-50%); */
  color: white;
  font-size: 2rem;
}

.ax-demo-cont-form-input {
  width: 100%;
  padding: 9px 15px 9px 15px;
  background-color: var(--color-black);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.ax-demo-cont-form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: #000;
}

.ax-demo-cont-form-btn {
  grid-column: span 2;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 16px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
}

.ax-demo-cont-form-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(247, 52, 0, 0.3);
}

/* RADIO STYLES */
.ax-radio-group-container {
  display: flex;
  gap: 30px;
  margin-top: 10px;
}

.ax-radio-item {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.ax-radio-hidden {
  position: absolute;
  opacity: 0;
}

.ax-radio-circle {
  height: 18px;
  width: 18px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ax-radio-circle::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  transform: scale(0);
  transition: 0.2s ease;
}

.ax-radio-hidden:checked~.ax-radio-circle {
  border-color: var(--color-primary);
}

.ax-radio-hidden:checked~.ax-radio-circle::after {
  transform: scale(1);
}

.ax-radio-text {
  color: var(--color-light-gray);
  font-size: 0.9rem;
}

.ax-radio-hidden:checked~.ax-radio-text {
  color: var(--color-white);
}



.demo-title-form-heading {
  font-size: clamp(50px, 5vw, 90px);
  font-family: var(--font-gilroy-medium);
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.1;
}

.demo-title-form-heading span {
  color: var(--color-orange);
  font-family: var(--font-kalam);
}

.demo-subtitle-form-heading {
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  max-width: 1100px;
  margin: 0 auto;
  line-height: 1.6;
  font-family: var(--font-default);
}





/* RESPONSIVE */
@media (max-width: 992px) {
  .ax-demo-cont-form-split {
    flex-direction: column;
  }

  .ax-demo-cont-form-grid {
    grid-template-columns: 1fr;
  }

  .ax-demo-cont-form-full-width,
  .ax-demo-cont-form-group {
    grid-column: span 1;
  }

  .ax-demo-cont-form-image {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {

  /* // .ax-demo-cont-form-feat-grid { grid-template-columns: 1fr; } */
  .ax-radio-group-container {
    flex-direction: column;
    gap: 15px;
  }
}

/* Unique Entry Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

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

.animate-entry {
  animation: fadeInUp 0.5s ease-out forwards;
}

.animate-entry-delayed {
  animation: fadeInUp 0.5s ease-out 0.2s forwards;
  opacity: 0;
  /* Starts invisible until animation kicks in */
}

/* Styled Select Dropdown */
.ax-select-container {
  position: relative;
  width: 100%;
  margin-top: 8px;
}

.ax-custom-select {
  width: 100%;
  padding: 8px 15px 14px 20px;
  font-size: 0.95rem;
  color: var(--color-white);
  background: var(--color-black);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-sm);
  appearance: none;
  /* Hides default arrow */
  cursor: pointer;
  transition: var(--transition-fast);

}



.ax-custom-select:hover {
  /* // background: #fff; */
  border-color: var(--color-primary);
}

.ax-custom-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
}

/* Custom Arrow Positioning */
.ax-select-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Update only this media query in your CSS */
@media (max-width: 600px) {
  .ax-demo-cont-form-section {
    padding: 10px;
  }

  /* This ensures every group takes full width, one below the other */
  .ax-demo-cont-form-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .ax-demo-cont-form-full-width {
    grid-column: span 1;
  }

  .ax-demo-cont-form-img-text h3 {
    font-size: 1.6rem;
  }

  .ax-demo-cont-form-split+div[style*="display: flex"] {
    flex-direction: column;
  }
}

@media(max-width:375px) {
  .ax-feat-card {
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px;
    border-color: var(--color-primary);
  }

  .ax-demo-cont-form-btn {
    grid-column: span 2;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
  }

}


/* FORM RESPONSIVE */
.form-row-custom{
  width: 50%;
}

@media (max-width: 991px){
  .form-row-custom{
    width: 80%;
  }

  .demo-title-form-heading{
    font-size: 52px;
  }

  .demo-subtitle-form-heading{
    font-size: 15px;
    padding: 0 20px;
  }
}

@media (max-width: 767px){
  .form-row-custom{
    width: 95%;
  }

  .ax-demo-cont-form-content{
    padding: 20px 10px;
  }

  .demo-title-form-heading{
    font-size: 38px;
    line-height: 1.2;
  }

  .demo-subtitle-form-heading{
    font-size: 14px;
    line-height: 1.7;
  }

  .ax-demo-cont-form-input,
  .ax-custom-select{
    font-size: 14px;
    padding: 12px 14px;
  }

  .ax-demo-cont-form-btn{
    padding: 13px;
    font-size: 14px;
  }

  .ax-radio-group-container{
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 480px){
  .demo-title-form-heading{
    font-size: 30px;
  }

  .demo-subtitle-form-heading{
    font-size: 13px;
  }

  .ax-demo-cont-form-content{
    padding: 15px 5px;
  }

  .ax-demo-cont-form-input,
  .ax-custom-select{
    height: 48px;
  }
}



.custom-about-sec-axe{
  text-align: center;
  font-family: var(--font-default);
}


.custom-form-image {
  height: 170px;
  width: 123px;
  position: relative;

}

.custom-form-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  right: 37%;
  bottom: 24%;
  animation: bounceDoll 2.5s ease-in-out infinite;
}

/* Bounce Animation */
@keyframes bounceDoll {

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

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




@media(max-width:427px) {
  .ax-custom-banner-sec-btn {
    padding: 7px 20px;
  }
}



.ax-nav-link {
  cursor: pointer;
}













@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }

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

/* .anim-word {
  display: inline-block;
  background: linear-gradient(
    90deg,
    #000000 0%,
    #f73400 30%,
    #000000 60%,
    #f73400 100%
  );
  background-size: 250% 250%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  
  animation:
    slideInLeft 0.6s ease forwards calc(var(--i) * 0.15s),
    gradientShift 3s ease infinite calc(var(--i) * 0.3s);

  opacity: 0; 
} */






.anim-word {
  display: inline-block;

  background: linear-gradient(90deg,
      #000000 0%,
      #f73400 30%,
      #000000 60%,
      #f73400 100%);

  background-size: 250% 250%;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  /* Premium Glow Shadow */
  filter: drop-shadow(0 0 8px rgba(247, 52, 0, 0.35)) drop-shadow(0 0 18px rgba(54, 227, 191, 0.18));

  animation:
    slideInLeft 0.6s ease forwards calc(var(--i) * 0.15s),
    gradientShift 3s ease infinite calc(var(--i) * 0.3s);

  opacity: 0;
}































.gradient-flow-text {
  background: linear-gradient(90deg,
      #f73400,
      #ffaa00,
      #36e3bf,
      #f73400);

  background-size: 300% auto;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  animation: textFlow 4s linear infinite;
}


@keyframes textFlow {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 300% center;
  }
}

















.ax-how-we-can-help-u-sec-heading {
  font-size: 60px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  display: inline-block;
}


/* Gradient Hover Animation */
/* .ax-how-we-can-help-u-sec-heading:hover {
  background: linear-gradient(90deg,
      #f73400,
      #ffaa00,
      #36e3bf,
      #f73400);

  background-size: 300% auto;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  animation: axHelpGradientMove 3s linear infinite;
} */


/* Optional Special Style */
.ax-how-we-can-help-u-sec-how-box,
.ax-how-we-can-help-u-sec-italic {
  transition: 0.4s ease;
}


/* Scale Effect */
/* .ax-how-we-can-help-u-sec-heading:hover .ax-how-we-can-help-u-sec-how-box,
.ax-how-we-can-help-u-sec-heading:hover .ax-how-we-can-help-u-sec-italic {
  transform: scale(1.08);
  display: inline-block;
} */


/* Gradient Flow */
@keyframes axHelpGradientMove {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 300% center;
  }
}


























/*Process step-section*/
.process-section {
  padding: clamp(40px, 6vw, 60px) 10px;
  overflow-x: hidden;
}

.process-inner {
  max-width: 800px;
  margin: auto;
}

.step-row {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 30px);
  margin-bottom: 25px;
  width: 100%;
}

.row-right {
  flex-direction: row;
}

.row-left {
  flex-direction: row-reverse;
}

.meta-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.dots-container {
  display: flex;
  gap: 4px;
}

.dot-item {
  width: clamp(6px, 1vw, 10px);
  height: clamp(6px, 1vw, 10px);
  border-radius: 50%;
  background: #ccc;
}

.step-badge {
  width: clamp(35px, 5vw, 50px);
  height: clamp(35px, 5vw, 50px);
  border-radius: 50%;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(10px, 1.2vw, 13px);
  font-weight: 700;
  background: #fff;
  cursor: pointer;
}

.step-card {
  flex-grow: 1;
  max-width: 500px;
}

.card-content {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  padding: clamp(15px, 4vw, 30px);
  display: flex;
  align-items: center;
  gap: clamp(10px, 3vw, 20px);
  min-height: clamp(120px, 15vw, 150px);
}

.card-right .card-content {
  flex-direction: row;
}

.card-left .card-content {
  flex-direction: row-reverse;
  text-align: right;
}

.icon-wrapper {
  width: clamp(45px, 9vw, 75px);
  height: clamp(45px, 9vw, 75px);
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.text-wrapper {
  flex-grow: 1;
}

.card-title {
  font-size: clamp(13px, 2vw, 18px);
  font-weight: 600;
  margin-bottom: 4px;
  color: white;
}

.card-desc {
  font-size: clamp(11px, 1.6vw, 14px);
  line-height: 1.4;
  color: white;
}

@media (max-width: 600px) {
  .step-row {
    gap: 5px;
  }

  .meta-group {
    gap: 4px;
  }

  .dots-container {
    display: none;
  }

  .card-content {
    padding: 10px 15px;
  }
}

.ax-process-title-container {
  padding: 30px 20px;
  text-align: center;
}

.ax-process-title-wrapper {
  display: inline-block;
  position: relative;
}

.ax-process-main-text {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.ax-font-arcade {
  font-family: var(--font-arcade);
  color: var(--color-white);
  font-size: clamp(40px, 8vw, 80px);
  text-transform: uppercase;
}

.ax-font-kalam {
  font-family: var(--font-kalam);
  color: var(--color-white);
  font-size: clamp(35px, 7vw, 75px);
  font-weight: normal;
  margin-left: 5px;
}

.ax-font-process {
  font-family: var(--font-gilroy-medium);
  color: var(--color-primary);
  font-size: clamp(45px, 7vw, 90px);
  font-weight: lighter;

  display: inline-block;
}

.ax-process-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  position: relative;
  width: 100%;
}

.ax-process-divider::before,
.ax-process-divider::after {
  content: "";
  height: 1px;
  width: clamp(60px, 15vw, 150px);
  background: white;
  margin: 0 15px;
}

.ax-star {
  color: #ffcc00;
  font-size: 18px;
  filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.6));
}


.ax-process-rotate-p {
  display: inline-block;
  /* transform: rotate(-6deg); */
  /* animation: axRotateP 4s linear infinite; */
  transform-origin: center;
  padding-top: 20px;
}


@media(min-width:1024px){
.row-right{
  position: relative;
left: 30%;
/* border: 2px solid red; */
}


.row-left{
  position: relative;
  right: 30%;
  /* border: 2px solid red; */
}
}



































/* ✅ Replace your existing .ax-feat-card block with this */

.ax-feat-card {
  background: #111;
  /* border: 1px solid #1e1e1e; */
  border: 1px solid rgba(255, 255, 255,0.8);
  padding: 20px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* .ax-feat-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  background: rgba(247, 52, 0, 0.05);
} */

/* Icon Badge */
.ax-feat-card-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  transition: transform 0.25s ease;
}

/* .ax-feat-card:hover .ax-feat-card-icon-wrap {
  transform: scale(1.1);
} */

.ax-feat-card-icon-wrap i {
  font-size: 1.1rem;
  margin: 0;
  display: block;
  color: inherit;
}

/* Per-card accent colors */
.ax-feat-icon-growth {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
}

.ax-feat-icon-secure {
  background: rgba(59, 130, 246, 0.12);
  color: #3b82f6;
}

.ax-feat-icon-support {
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
}

.ax-feat-icon-analytics {
  background: rgba(168, 85, 247, 0.12);
  color: #a855f7;
}

.ax-feat-card h4 {
  color: var(--color-white);
  font-size: 0.95rem;
  margin: 0;
  font-weight: 600;
}

.ax-feat-card p {
  color: var(--color-text-muted);
  font-size: 0.78rem;
  line-height: 1.5;
  margin: 0;
}

/* Arrow — hidden by default, shows on hover */
.ax-feat-card-arrow {
  font-size: 0.75rem;
  margin-top: 4px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  color: var(--color-primary);
  font-weight: 500;
}

/* .ax-feat-card:hover .ax-feat-card-arrow {
  opacity: 1;
  transform: translateX(0);
} */

/* Keep your existing media queries untouched — no changes needed there */













.custom-image-detail{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

 .axe-post-card {
    background: var(--ink-2);
    /* border: 1px solid var(--border); */
        border: 1px solid var(--color-orange);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s, border-color 0.25s;
    text-decoration: none;
    display: block;
  }
  .axe-post-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.12); }
























































  /*blog-detail-page*/
  

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  .axe-fadeup-1 { animation: fadeUp 0.8s ease both 0.1s; }

  .axe-fadeup-2 {
    animation: fadeUp 0.8s ease both 0.2s;
    font-family: var(--font-gilroy-medium);
    font-size:clamp(2.5rem, 6vw, 5rem) ;
    font-weight:100 ;
    line-height:1.0 ;
    letter-spacing:-0.03em ;
    color: var(--smoke);
    margin-bottom: 1.75rem;
     }

     .custom-actually-text{
      font-family: var(--font-kalam);
      color: var(--accent);
     }

  .axe-fadeup-3 { 
    animation: fadeUp 0.8s ease both 0.3s;
   font-size: 1.1rem;
   color:rgba(244,241,235,0.65);
   max-width:640px ;
   line-height:1.75;
   margin-bottom: 2.5rem;
   font-family: var(--font-default);
  
  }


  .axe-fadeup-4 { animation: fadeUp 0.8s ease both 0.4s; }
  .axe-fadeup-6 { animation: fadeUp 0.8s ease both 0.6s; }

  .axe-scroll-indicator::after {
    content: '';
    display: block; width: 1px; height: 40px;
    background: linear-gradient(to bottom, #888480, transparent);
    animation: scrollPulse 2s ease-in-out infinite;
    margin-top: 8px;
  }

  .axe-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .axe-reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .axe-toc-item a {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    color: var(--muted);
    text-decoration: none;
    border-left: 2px solid transparent;
    border-radius: 0 4px 4px 0;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    line-height: 1.4;
    font-family: var(--sans);
  }
  .axe-toc-item a:hover {
    color: var(--smoke);
    background: rgba(255,255,255,0.03);
    border-left-color: var(--accent);
  }
  .axe-toc-item.active a {
    color: var(--smoke);
    border-left-color: var(--accent);
    background: rgba(232,87,42,0.06);
  }

  .axe-tag {
    background: var(--ink-2);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.78rem;
    font-family: var(--mono);
    padding: 0.35rem 0.9rem;
    border-radius: 100px;
    transition: color 0.2s, border-color 0.2s;
    cursor: pointer;
  }
  .axe-tag:hover { color: var(--smoke); border-color: rgba(255,255,255,0.2); }

  .axe-share-btn {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--ink-2);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    color: var(--muted);
  }
  .axe-share-btn:hover {
    background: var(--ink-3);
    border-color: rgba(255,255,255,0.15);
    color: var(--smoke);
  }
  .axe-share-btn svg { width: 15px; height: 15px; fill: currentColor; }

  .axe-related-post {
    display: flex; gap: 12px;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: opacity 0.2s;
    cursor: pointer;
  }
  .axe-related-post:last-child { border-bottom: none; }
  .axe-related-post:hover { opacity: 0.7; }

  .axe-nav-link {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
    font-family: var(--sans);
  }
  .axe-nav-link:hover { color: var(--smoke); }

  .axe-tmpl-card {
    aspect-ratio: 3/4;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.07);
    transition: transform 0.25s, border-color 0.25s;
  }
  .axe-tmpl-card:hover { transform: translateY(-4px); border-color: rgba(232,87,42,0.4); }

  .axe-post-card {
    background: var(--ink-2);
    border: 1px solid var(--color-orange)  !important;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s, border-color 0.25s;
    text-decoration: none;
    display: block;
  }
  .axe-post-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.12); }

  .axe-see-all {
    display: flex; align-items: center; gap: 6px;
    color: var(--accent);
    font-size: 0.85rem;
    text-decoration: none;
    transition: gap 0.2s;
    font-family: var(--sans);
  }
  .axe-see-all:hover { gap: 10px; }

  .axe-btn-browse {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--accent);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    text-decoration: none;
    transition: opacity 0.2s;
    white-space: nowrap;
    font-family: var(--sans);
  }
  .axe-btn-browse:hover { opacity: 0.85; }

  .axe-nl-input {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--smoke);
    font-family: var(--sans);
    font-size: 0.82rem;
    padding: 0.55rem 0.9rem;
    border-radius: 100px;
    outline: none;
  }
  .axe-nl-input::placeholder { color: var(--muted); }
  .axe-nl-input:focus { border-color: rgba(232,87,42,0.5); }

  .axe-nl-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 0.55rem 1rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
    font-family: var(--sans);
  }
  .axe-nl-btn:hover { opacity: 0.85; }

  @media (max-width: 900px) {
    .axe-nav-links { display: none !important; }
    .axe-hero-scroll { display: none !important; }
    .axe-page-grid { grid-template-columns: 1fr !important; }
    .axe-article-body { padding: 3rem 0 !important; border-right: none !important; max-width: 100% !important; }
    .axe-sidebar { padding: 2rem 0 !important; position: static !important; top: auto !important; }
    .axe-more-section { padding: 3rem 1.5rem !important; }
    .axe-more-grid { grid-template-columns: 1fr !important; }
    .axe-footer { flex-direction: column !important; gap: 1rem !important; text-align: center !important; padding: 2rem 1.5rem !important; }
    .axe-stat-row { grid-template-columns: 1fr !important; }
    .axe-hero { padding: 5rem 1.5rem 3rem !important; }
    .axe-nav { padding: 1rem 1.5rem !important; }
  }


  .custom-article-para-sec{
    font-family: var(--font-kalam);
    font-size:1.3rem ;
    line-height: 1.7 ;
    color: rgba(244,241,235,0.8);
    margin-bottom: 2.5rem;
    padding-bottom:2.5rem ;
    border-bottom:1px solid var(--border) ;
  }


  .custom-article-second-text{
    font-size:1.05rem ;
    color: rgba(244,241,235,0.72);
    line-height:1.85 ;
    margin-bottom: 1.5rem;
    font-family: var(--font-default);
  }

  .custom-stru-heading-sec
  {
    font-family: var(--font-gilroy-medium);
    font-size:1.75rem ;
    font-weight: 700;
    color:var(--smoke) ;
    margin:3rem 0 1.25rem ;
    letter-spacing:-0.02em ;
    line-height: 1.25;
  }


  .axe-article-body{
    padding: 5rem 5rem 0rem 0;
    border-right:1px solid var(--border) ;
    max-width: 720px;
  }











  .btn{
    border: none !important;
  }



  .btn:focus{
    box-shadow:none !important;
  }

































  /*blog-detail-section*/
  /* =========================================
   BLOG DETAIL PAGE
========================================= */

.custom-ax-blog-detail-page-sec-wrapper{
  width: 100%;
  min-height: 100vh;
  background: #0b0b0f;
  padding: 120px 20px 80px;
  overflow: hidden;
  position: relative;
}

.custom-ax-blog-detail-page-sec-main{
  width: 100%;
  max-width: 1450px;
  margin: auto;
}

.custom-ax-blog-detail-page-sec-layout{
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

/* =========================================
   LEFT CONTENT
========================================= */

.custom-ax-blog-detail-page-sec-left{
  width: 100%;
}

.custom-ax-blog-detail-page-sec-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: 14px;
  margin-bottom: 25px;
  backdrop-filter: blur(12px);
}

.custom-ax-blog-detail-page-sec-title{
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 1.1;
  /* font-weight: 700; */
  color: #fff;
  margin-bottom: 30px;
  font-family: var(--font-gilroy-medium);
}

.custom-ax-blog-detail-page-sec-meta{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 35px;
}

.custom-ax-blog-detail-page-sec-meta-item{
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
}

.custom-ax-blog-detail-page-sec-image{
  width: 100%;
  height: 600px;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 45px;
  position: relative;
}

.custom-ax-blog-detail-page-sec-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.custom-ax-blog-detail-page-sec-image:hover img{
  transform: scale(1.05);
}

/* =========================================
   CONTENT
========================================= */

.custom-ax-blog-detail-page-sec-content{
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  line-height: 1.9;
}

.custom-ax-blog-detail-page-sec-content h1,
.custom-ax-blog-detail-page-sec-content h2,
.custom-ax-blog-detail-page-sec-content h3,
.custom-ax-blog-detail-page-sec-content h4,
.custom-ax-blog-detail-page-sec-content h5,
.custom-ax-blog-detail-page-sec-content h6{
  color: #fff;
  margin-top: 35px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.custom-ax-blog-detail-page-sec-content p{
  margin-bottom: 20px;
}

.custom-ax-blog-detail-page-sec-content img{
  width: 100%;
  border-radius: 20px;
  margin: 30px 0;
}

.custom-ax-blog-detail-page-sec-content ul{
  padding-left: 20px;
  margin-bottom: 25px;
}

.custom-ax-blog-detail-page-sec-content li{
  margin-bottom: 12px;
}

/* =========================================
   SIDEBAR
========================================= */

.custom-ax-blog-detail-page-sec-sidebar{
  width: 100%;
  position: sticky;
  top: 100px;
}

.custom-ax-blog-detail-page-sec-sidebar-card{
  width: 100%;
  padding: 30px;
  border-radius: 30px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}

.custom-ax-blog-detail-page-sec-sidebar-title{
  color: #fff;
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 600;
}

.custom-ax-blog-detail-page-sec-related-wrap{
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* =========================================
   BLOG CARD
========================================= */

.custom-ax-blog-detail-page-sec-blog-card{
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.4s ease;
}

.custom-ax-blog-detail-page-sec-blog-card:hover{
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.15);
}

.custom-ax-blog-detail-page-sec-blog-card-image{
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.custom-ax-blog-detail-page-sec-blog-card-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.custom-ax-blog-detail-page-sec-blog-card:hover
.custom-ax-blog-detail-page-sec-blog-card-image img{
  transform: scale(1.08);
}

.custom-ax-blog-detail-page-sec-blog-card-body{
  padding: 22px;
}

.custom-ax-blog-detail-page-sec-blog-meta{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.custom-ax-blog-detail-page-sec-blog-meta span{
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}

.custom-ax-blog-detail-page-sec-blog-title{
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 15px;
  text-decoration: none;
  transition: 0.3s ease;
}

.custom-ax-blog-detail-page-sec-blog-title:hover{
  color: #f3b562;
}

.custom-ax-blog-detail-page-sec-blog-desc{
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.custom-ax-blog-detail-page-sec-blog-btn{
  color: #f3b562;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.custom-ax-blog-detail-page-sec-blog-btn:hover{
  letter-spacing: 1px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width: 1200px){

  .custom-ax-blog-detail-page-sec-layout{
    grid-template-columns: 1fr;
  }

  .custom-ax-blog-detail-page-sec-sidebar{
    position: relative;
    top: 0;
  }

}

@media(max-width: 992px){

  .custom-ax-blog-detail-page-sec-image{
    height: 500px;
  }

}

@media(max-width: 768px){

  .custom-ax-blog-detail-page-sec-wrapper{
    padding: 100px 15px 70px;
  }

  .custom-ax-blog-detail-page-sec-title{
    font-size: 2.3rem;
  }

  .custom-ax-blog-detail-page-sec-image{
    height: 350px;
    border-radius: 20px;
  }

  .custom-ax-blog-detail-page-sec-sidebar-card{
    padding: 22px;
    border-radius: 22px;
  }

  .custom-ax-blog-detail-page-sec-blog-card-image{
    height: 220px;
  }

}

@media(max-width: 576px){

  .custom-ax-blog-detail-page-sec-title{
    font-size: 1.9rem;
  }

  .custom-ax-blog-detail-page-sec-meta{
    gap: 14px;
  }

  .custom-ax-blog-detail-page-sec-image{
    height: 260px;
  }

  .custom-ax-blog-detail-page-sec-content{
    font-size: 15px;
    line-height: 1.8;
  }

  .custom-ax-blog-detail-page-sec-blog-title{
    font-size: 19px;
  }

}

.custom-blog-link-ax-b{
  text-decoration: none;
}





.custom-photo-web{
  height: 100%;
  width: 100%;
  object-fit: contain;
}


.custom-name-founder-axe{
  font-size: 23px;
  font-family: var(--font-default);
}

.custom-fonder-desination{
  font-size: 18px;
  font-family: var(--font-default);
}





.ax-custom-logo-sec-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.ax-custom-logo-sec-marquee-track {
  display: flex;
  width: max-content;
}

.ax-custom-logo-sec-marquee-content {
  display: flex;
  align-items: center;
  gap: clamp(30px, 6vw, 60px);
  flex-shrink: 0;
  animation: scroll-left 20s linear infinite;
}

.ax-custom-logo-sec-reverse .ax-custom-logo-sec-marquee-content {
  animation: scroll-right 20s linear infinite;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}



.ax-nav-link {
  background: transparent;
  border: none;
  outline: none;
  color: var(--color-white);
 text-align: start;
}
















/* 

.react-datepicker-wrapper{
  width: 100% !important;
}

.react-datepicker__input-container{
  width: 100% !important;
}


.ax-custom-time-picker{
  width: 100% !important;
  height: 70px !important;

  padding: 0 24px !important;

  background: #0f0f10 !important;
  color: #fff !important;

  border: 1px solid #5b5b5b !important;
  border-radius: 22px !important;

  outline: none !important;
  font-size: 20px !important;
  font-weight: 500;
}


.ax-custom-time-picker::placeholder{
  color: #9ca3af;
}


.react-datepicker{
  background: #111 !important;
  border: 1px solid #2f2f2f !important;
  border-radius: 20px !important;
  overflow: hidden;
  padding: 0 !important;
}


.react-datepicker__triangle{
  display: none !important;
}


.react-datepicker__header{
  background: #181818 !important;
  border-bottom: 1px solid #2b2b2b !important;
  padding: 14px 0 !important;
}


.react-datepicker-time__header{
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 600;
}


.react-datepicker__time-container{
  width: 220px !important;
  border-left: none !important;
}


.react-datepicker__time{
  background: #111 !important;
}

.react-datepicker__time-box{
  width: 220px !important;
}


.react-datepicker__time-list-item{
  height: 52px !important;
  line-height: 52px !important;

  color: #fff !important;
  font-size: 18px !important;

  transition: 0.3s ease;
}


.react-datepicker__time-list-item:hover{
  background: #ff4d00 !important;
  color: #fff !important;
}

.react-datepicker__time-list-item--selected{
  background: #ff4d00 !important;
  color: #fff !important;
  font-weight: 600;
}


.react-datepicker__time-list::-webkit-scrollbar{
  width: 6px;
}

.react-datepicker__time-list::-webkit-scrollbar-thumb{
  background: #444;
  border-radius: 10px;
} 
 */












 .react-datepicker-wrapper{
  width: 100% !important;
}

.react-datepicker__input-container{
  width: 100% !important;
  position: relative;
}

/* INPUT FIELD */
.ax-custom-time-picker{
  width: 100% !important;
  height: 70px !important;

  padding: 0 60px 0 24px !important;

  background: #111827 !important;
  color: #fff !important;

  border: 1px solid #2c2c2c !important;
  border-radius: 22px !important;

  outline: none !important;

  font-size: 18px !important;
  font-weight: 500;

  transition: 0.3s ease;
}

.ax-custom-time-picker:focus{
  border-color: #00d084 !important;
  box-shadow: 0 0 0 4px rgba(0,208,132,0.12);
}

.ax-custom-time-picker::placeholder{
  color: #9ca3af;
}

/* CLOCK ICON */
.ax-custom-clock-icon{
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);

  color: #9ca3af;
  pointer-events: none;
  z-index: 5;
}

/* DATEPICKER POPUP */
.react-datepicker{
  border: none !important;
  border-radius: 28px !important;

  overflow: hidden !important;

  background: #ffffff !important;

  display: flex !important;

  box-shadow: 0 25px 80px rgba(0,0,0,0.18) !important;

  padding: 25px !important;
}

/* REMOVE TRIANGLE */
.react-datepicker__triangle{
  display: none !important;
}

/* HEADER */
.react-datepicker__header{
  background: transparent !important;
  border-bottom: none !important;

  padding-top: 10px !important;
}

/* MONTH */
.react-datepicker__current-month{
  font-size: 28px !important;
  font-weight: 700 !important;

  color: #0f172a !important;

  margin-bottom: 20px !important;
}

/* DAY NAMES */
.react-datepicker__day-name{
  width: 48px !important;
  line-height: 48px !important;

  color: #94a3b8 !important;
  font-size: 14px !important;
}

/* DAYS */
.react-datepicker__day{
  width: 48px !important;
  height: 48px !important;

  line-height: 48px !important;

  border-radius: 50% !important;

  margin: 3px !important;

  font-size: 15px !important;

  transition: 0.3s ease !important;
}

.react-datepicker__day:hover{
  background: #0f172a !important;
  color: #fff !important;
}

.react-datepicker__day--selected{
  background: #0f172a !important;
  color: #fff !important;
}

/* TIME CONTAINER */
.react-datepicker__time-container{
  width: 280px !important;

  border-left: 1px solid #e5e7eb !important;

  margin-left: 20px !important;
  padding-left: 20px !important;
}

/* TIME TITLE */
.react-datepicker-time__header{
  font-size: 28px !important;
  font-weight: 700 !important;

  color: #0f172a !important;

  padding: 15px 0 25px !important;
}

/* TIME BOX */
.react-datepicker__time-box{
  width: 100% !important;
}

/* TIME LIST */
.react-datepicker__time-list{
  height: 420px !important;

  padding-right: 10px !important;
}

/* TIME ITEM */
.react-datepicker__time-list-item{
  height: 56px !important;
  line-height: 56px !important;

  margin-bottom: 10px !important;

  border-radius: 14px !important;

  font-size: 16px !important;
  font-weight: 500 !important;

  transition: 0.3s ease !important;
}

/* HOVER */
.react-datepicker__time-list-item:hover{
  background: #0f172a !important;
  color: #fff !important;
}

/* SELECTED */
.react-datepicker__time-list-item--selected{
  background: #0f172a !important;
  color: #fff !important;
}

/* SCROLLBAR */
.react-datepicker__time-list::-webkit-scrollbar{
  width: 6px;
}

.react-datepicker__time-list::-webkit-scrollbar-thumb{
  background: #d1d5db;
  border-radius: 10px;
}

/* RESPONSIVE */
@media(max-width:768px){

  .react-datepicker{
    flex-direction: column !important;
    width: 100% !important;
  }

  .react-datepicker__time-container{
    width: 100% !important;

    border-left: none !important;
    border-top: 1px solid #e5e7eb !important;

    margin-left: 0 !important;
    padding-left: 0 !important;
    margin-top: 20px !important;
    padding-top: 20px !important;
  }

}



/* MAIN DATEPICKER */
.react-datepicker{
  transform: scale(0.82);   /* size smaller */
  transform-origin: top left;

  padding: 18px !important;
  border-radius: 22px !important;
}

/* MONTH TITLE */
.react-datepicker__current-month{
  font-size: 22px !important;
}

/* DAYS */
.react-datepicker__day{
  width: 38px !important;
  height: 38px !important;
  line-height: 38px !important;

  font-size: 14px !important;
}

/* DAY NAMES */
.react-datepicker__day-name{
  width: 38px !important;
  line-height: 38px !important;

  font-size: 13px !important;
}

/* TIME CONTAINER */
.react-datepicker__time-container{
  width: 220px !important;
}

/* TIME TITLE */
.react-datepicker-time__header{
  font-size: 22px !important;
}

/* TIME ITEMS */
.react-datepicker__time-list-item{
  height: 46px !important;
  line-height: 46px !important;

  font-size: 14px !important;
}

/* TIME LIST HEIGHT */
.react-datepicker__time-list{
  height: 320px !important;
}






/* Success Icon Circle */
.ax-success-check{
  width: 170px;
  height: 170px;

  margin: 0 auto 35px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;

  background: radial-gradient(circle at top, #1f2937, #0f172a);

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 0 0 10px rgba(255,255,255,0.02),
    0 0 40px rgba(249,115,22,0.25),
    inset 0 0 25px rgba(255,255,255,0.03);

  animation:
    successPop 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    pulseGlow 3s ease-in-out infinite;
}

/* Animated Ring */
.ax-success-check::before{
  content: "";

  position: absolute;
  inset: -12px;

  border-radius: 50%;

  border: 2px solid rgba(249,115,22,0.35);

  animation: ringRotate 8s linear infinite;
}

/* Second Ring */
.ax-success-check::after{
  content: "";

  position: absolute;
  inset: -24px;

  border-radius: 50%;

  border: 1px dashed rgba(255,255,255,0.08);

  animation: ringRotateReverse 14s linear infinite;
}

/* Check Icon */
.custom-check-color-axe{
  color: #f97316;

  filter: drop-shadow(0 0 18px rgba(249,115,22,0.65));

  animation: checkBounce 1.2s ease;
}

/* Pop Animation */
@keyframes successPop{
  0%{
    transform: scale(0.4);
    opacity: 0;
  }

  70%{
    transform: scale(1.08);
    opacity: 1;
  }

  100%{
    transform: scale(1);
  }
}

/* Glow Pulse */
@keyframes pulseGlow{
  0%,100%{
    box-shadow:
      0 0 0 10px rgba(255,255,255,0.02),
      0 0 40px rgba(249,115,22,0.18),
      inset 0 0 25px rgba(255,255,255,0.03);
  }

  50%{
    box-shadow:
      0 0 0 16px rgba(255,255,255,0.03),
      0 0 70px rgba(249,115,22,0.4),
      inset 0 0 30px rgba(255,255,255,0.05);
  }
}

/* Check Bounce */
@keyframes checkBounce{
  0%{
    transform: scale(0) rotate(-20deg);
    opacity: 0;
  }

  60%{
    transform: scale(1.2) rotate(8deg);
    opacity: 1;
  }

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

/* Rotating Rings */
@keyframes ringRotate{
  from{
    transform: rotate(0deg);
  }

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

@keyframes ringRotateReverse{
  from{
    transform: rotate(360deg);
  }

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




.custom-p-why-us{
  font-size: 22px;
  color: var(--color-orange);
  font-family: var(--font-display);
}















.custom-price-logo{
  height: 50px;
  width: 105px;
}


.custom-img-logo-cde{
  height: 100%;
  width: 100%;
  object-fit: cover;
}


.custom-blog-footer-dec{
  text-decoration: none;
}



.custom-blog-footer-dec:hover{
  color: white;
}







/* .why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
} */



.compare-card:hover {
  transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}



.compare-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-fast);
}


.compare-card:hover::before {
  opacity: 1;
}