:root {
  --primary-black: #000000;
  --primary-white: #ffffff;
  --accent-orange: #ff6b00;
  --accent-orange-light: #ff8c00;
  --text-gray: #6b7280;
  --border-gray: #e5e7eb;
  --bg-light: #f9fafb;

  --orange: #ff6b00;
  --orange-dark: #d97d0e; 
  --dark: #1a1a2e;
  --mid: #2c2c44; 
  --gold-l: #e8cc7a;
  --bg: #f4f4f7;
  --bg2: #ecedf2; 
  --text: #2e2e3e;
  --muted: #6e6e88;
  --navy-dark: #111d4e;
  --off-white: #f5f6fa;
  --text-dark: #1c1c2e; 
  --border: #e2e2ea;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1); 

  --ki-accent: #e57725;
  --green: #80c041;
  --blue: #01adee;
  --crimson: #e57725;
  --crimson-d: #e57725;
  --crimson-l: #e57725;
  --navy: #162740;
  --navy-l: #1f3a5f;
  --gold: #e57725;
  --white: #ffffff;
  --offwhite: #8d8d8d;
  --text-muted: #8a96a3;
  --accent-dk: #c45e0f;
  --accent-lt: #fdf0e6;
  --green-lt: #edf7e0;
  --blue-lt: #e0f6fe;
  --grey-50: #f7f8fa;
  --grey-100: #eef0f3;
  --grey-200: #dde1e7;
  --grey-400: #a0aab5;
  --grey-700: #3d4a58;
  --grey-900: #1a222c;

  --font-head: "Lora", serif;
  --font-body: "Nunito", sans-serif;

  --radius: 12px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 14px 40px rgba(0, 0, 0, 0.13);
  --trans: 0.28s cubic-bezier(0.4, 0, 0.2, 1);

  /* Nav-specific */
  --ki-nav-bg: #ffffff;
  --ki-top-bg: #f5f5f5;
  --ki-border: #e4e4e4;
  --ki-text: #1a1a1a;
  --ki-muted: #6b7280;
  --ki-hover-bg: #f4f4f4;
  --ki-dd-bg: #ffffff;
  --ki-accent-lt: rgba(232, 67, 10, 0.08);
  --ki-dd-shadow:
    0 20px 60px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.06);
  --nav-h: 85px;
    --edm-card-bg: #ffffff;
  --ease: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  
  --edm-orange: #ff6b00;
    --edm-orange-dark: #d97d0e;
    --edm-text-dark: #1a1a2e;
    --edm-text-gray: #666666;
    --edm-bg-light: #fafafa;
    --edm-card-bg: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Work Sans", sans-serif;
  color: var(--primary-black);
  background: #fff;
  overflow-x: hidden;
}

/* Top Bar Styles */
.top-bar {
  background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
  color: var(--primary-white);
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 2px solid var(--accent-orange);
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.top-bar-item i {
  color: var(--accent-orange);
  font-size: 16px;
}

.top-bar-item:hover {
  color: var(--accent-orange);
  transform: translateX(3px);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--accent-orange);
  border-radius: 4px;
  margin-left: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 107, 0, 0.2);
}

.social-links a:hover {
  background: var(--accent-orange);
  color: var(--primary-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}
/* Main Header */
.main-header {
  background: transparent;
  /*box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);*/
    padding: 10px 0;
  position: fixed;   /* important */
  top: 0;
  left: 0;

  width: 100%;
  z-index: 999;

  transition: all 0.3s ease;
}

.main-header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  background: #fff; /* optional */
  padding: 10px 0;
  top:0;
}

.logo-container {
  padding: 10px 0;
}

.logo-container img {
  max-height: 75px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo-container:hover img {
  transform: scale(1.05);
}

.logo-container {
    position: relative;
    height: 75px;
}

.logo-container img {
    position: absolute;
    top: 0;
    left: 0;
    max-height: 75px;
    width: auto;
    transition: opacity .3s ease;
}

.logo-light {
    opacity: 1;
}

.logo-dark {
    opacity: 0;
}

.main-header.scrolled .logo-light {
    opacity: 0;
}

.main-header.scrolled .logo-dark {
    opacity: 1;
}

.main-header.scrolled .main-nav > li > a {
    color:#000;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav > li {
  position: relative;
}

.main-nav > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--accent-orange);
  transition: width 0.3s ease;
}

.main-nav > li > a:hover,
.main-nav > li.active > a {
  color: var(--accent-orange);
}

.main-nav > li > a:hover::before,
.main-nav > li.active > a::before {
  width: 80%;
}

/* Dropdown Menu */
.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--primary-white);
  min-width: 300px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  border-top: 3px solid var(--accent-orange);
  z-index: 1000;
  padding-left: 0;
}

.main-nav > li:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu-custom li {
  list-style: none;
  border-bottom: 1px solid var(--border-gray);
}

.dropdown-menu-custom li:last-child {
  border-bottom: none;
}

.dropdown-menu-custom li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 10px;
  color: var(--primary-black);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 14px;
}

.dropdown-menu-custom li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-orange) 0%, transparent 100%);
  opacity: 0.1;
  transition: width 0.3s ease;
}

.dropdown-menu-custom li a:hover {
  color: var(--accent-orange);
  padding-left: 20px;
}

.dropdown-menu-custom li a:hover::before {
  width: 100%;
}

.dropdown-menu-custom li a i {
  color: #fff;
  font-size: 12px;
  min-width: 10px;
}

.dropdown-menu-custom li a .product-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--accent-orange);
  color: var(--primary-white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: #ffffff;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1001;
  margin-left: auto;
}

.mobile-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary-black);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85%;
  height: 100%;
  background: var(--primary-white);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  padding: 20px;
  background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
  border-bottom: 3px solid var(--accent-orange);
}

.mobile-menu-header img {
  max-height: 50px;
  width: auto;
}

.mobile-menu-content {
  padding: 20px 0;
}

.mobile-menu-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-content > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  color: var(--primary-black);
  text-decoration: none;
  font-weight: 600;
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border-gray);
  transition: all 0.3s ease;
}

.mobile-menu-content > ul > li > a:hover {
  background: var(--bg-light);
  color: var(--accent-orange);
  padding-left: 30px;
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--bg-light);
}

.mobile-submenu.active {
  max-height: 800px;
}

.mobile-submenu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px 12px 20px;
  color: var(--primary-black);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  border-bottom: 1px solid var(--border-gray);
  transition: all 0.3s ease;
}

.mobile-submenu li:last-child a {
  border-bottom: none;
}

.mobile-submenu li a:hover {
  color: var(--accent-orange);
  padding-left: 50px;
}

.mobile-submenu li a i {
  color: var(--accent-orange);
  font-size: 16px;
}

.submenu-toggle {
  background: transparent;
  border: none;
  color: var(--accent-orange);
  font-size: 18px;
  cursor: pointer;
  padding: 0 5px;
  transition: transform 0.3s ease;
}

.submenu-toggle.active {
  transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 991px) {
  .top-bar {
    display: none;
  }

  .desktop-nav {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-overlay,
  .mobile-menu {
    display: block;
  }

  .logo-container img {
    max-height: 50px;
  }
}

@media (max-width: 575px) {
  .top-bar-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}

/* ── Level 1 Dropdown: anchor to RIGHT, open leftward ── */
.dropdown-menu-custom {
    left: 50px;
    right: 0;
}

/* ── Items that have a Level 2 child ── */
.has-submenu {
    position: relative;
}
.has-submenu > a {
    justify-content: space-between;
}
.has-submenu > a .item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.has-submenu > a .sub-arrow {
    color: var(--accent-orange);
    font-size: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.has-submenu:hover > a .sub-arrow {
    transform: rotate(90deg);
}

/* ── Level 2 Dropdown ── */
.dropdown-level2 {
    position: absolute;
    top: 0;
    left: auto;
    right: 100%;
    background: var(--primary-white);
    min-width: 425px;
    box-shadow: 6px 10px 30px rgba(0,0,0,0.12);
    border-top: 3px solid var(--accent-orange-light);
    border-right: 2px solid var(--border-gray);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 0;
    list-style: none;
}
.has-submenu:hover > .dropdown-level2 {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.dropdown-level2 > li {
    list-style: none;
    border-bottom: 1px solid var(--border-gray);
    position: relative;
}
.dropdown-level2 > li:last-child { border-bottom: none; }
.dropdown-level2 > li > a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    justify-content: space-between;
}
.dropdown-level2 > li > a .item-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.dropdown-level2 > li > a i { color: var(--accent-orange); font-size: 15px; }
.dropdown-level2 > li > a::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 0; height: 100%;
    background: linear-gradient(90deg, var(--accent-orange) 0%, transparent 100%);
    opacity: 0.08;
    transition: width 0.3s ease;
}
.dropdown-level2 > li > a:hover {
    color: var(--accent-orange);
    padding-left: 26px;
}
.dropdown-level2 > li > a:hover::before { width: 100%; }

/* ── Items that have a Level 3 child ── */
.has-submenu2 {
    position: relative;
}
.has-submenu2 > a .sub-arrow2 {
    color: var(--accent-orange);
    font-size: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.has-submenu2:hover > a .sub-arrow2 {
    transform: rotate(90deg);
}

/* ── Level 3 Dropdown ── */
.dropdown-level3 {
    position: absolute;
    top: 0;
    left: auto;
    right: 100%;
    background: var(--primary-white);
    min-width: 240px;
    box-shadow: 6px 10px 30px rgba(0,0,0,0.10);
    border-top: 3px solid #ffb347;
    border-right: 2px solid var(--border-gray);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
    padding: 0;
    list-style: none;
}
.has-submenu2:hover > .dropdown-level3 {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.dropdown-level3 > li {
    list-style: none;
    border-bottom: 1px solid var(--border-gray);
}
.dropdown-level3 > li:last-child { border-bottom: none; }
.dropdown-level3 > li > a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.dropdown-level3 > li > a i { color: #ffb347; font-size: 14px; }
.dropdown-level3 > li > a::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 0; height: 100%;
    background: linear-gradient(90deg, #ffb347 0%, transparent 100%);
    opacity: 0.08;
    transition: width 0.3s ease;
}
.dropdown-level3 > li > a:hover {
    color: var(--accent-orange);
    padding-left: 24px;
}
.dropdown-level3 > li > a:hover::before { width: 100%; }

/* ── Mobile Level 2 & 3 ── */
.mobile-sublevel2,
.mobile-sublevel3 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.mobile-sublevel2.active { max-height: 600px; }
.mobile-sublevel3.active { max-height: 400px; }
.mobile-sublevel2 { background: #f0f0f0; }
.mobile-sublevel3 { background: #e8e8e8; }

.mobile-sublevel2 > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 11px 20px 11px 55px;
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    border-bottom: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}
.mobile-sublevel2 > li > a:hover { color: var(--accent-orange); padding-left: 65px; }
.mobile-sublevel2 > li > a i { color: var(--accent-orange); font-size: 14px; }

.mobile-sublevel3 > li > a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px 10px 70px;
    color: #555;
    text-decoration: none;
    font-weight: 400;
    font-size: 12px;
    border-bottom: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}
.mobile-sublevel3 > li > a:hover { color: var(--accent-orange); padding-left: 78px; }
.mobile-sublevel3 > li > a i { color: #ffb347; font-size: 13px; }

.sublevel2-toggle,
.sublevel3-toggle {
    background: transparent;
    border: none;
    color: var(--accent-orange);
    font-size: 14px;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.sublevel2-toggle.active,
.sublevel3-toggle.active { transform: rotate(180deg); }

.slider {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* ─── SLIDES ─── */
.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 48% 52%;
  pointer-events: none;
  z-index: 1;
  visibility: hidden;
}

/* Leaving slide — stays ON TOP so its exit animations clear fully */
.slide.exiting {
  visibility: visible;
  z-index: 4;
  pointer-events: none;
}

/* Incoming slide — renders just below the exiting one */
.slide.active {
  visibility: visible;
  z-index: 3;
  pointer-events: all;
}

/* ─── BACKGROUND COLOUR PANEL ─── */
.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide-bg-color {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  /* Just fade — no translate so it never clips over content */
  opacity: 0;
  transition: opacity 0.85s ease;
}

.slide.active .slide-bg-color {
  opacity: 1;
  transition-delay: 0s;
}

.slide.exiting .slide-bg-color {
  opacity: 0;
  transition: opacity 0.35s ease 0s;
}

/* ─── LEFT: CONTENT ─── */
.slide-content {
  position: relative;
  z-index: 2;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5vw 0 8vw;
}

.slide-content p{
   font-size: clamp(0.82rem, 1.15vw, 0.97rem);
    font-weight: 300;
    color: #fdfdfd;
    line-height: 1.85;
    max-width: 600px;
    margin-bottom: 2.6rem;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s var(--ease-out);
}

.slide.active p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.62s;
}

.slide-eyebrow {
  font-size: clamp(0.58rem, 0.9vw, 0.74rem);
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #fdfdfd;
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.5s ease,
    transform 0.5s var(--ease-out);
}

.slide.active .slide-eyebrow {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.18s;
}

.slide.exiting .slide-eyebrow {
  opacity: 0;
  transform: translateY(-12px);
  transition:
    opacity 0.22s ease 0s,
    transform 0.22s var(--ease-in) 0s;
}

.accent-line {
  display: inline-block;
  width: 2.2rem;
  height: 1.5px;
  margin-right: 0.9rem;
  flex-shrink: 0;
}

.slide:nth-child(1) .accent-line {
  background: #9b7050;
}

.slide:nth-child(2) .accent-line {
  background: #2d8f72;
}

.slide:nth-child(3) .accent-line {
  background: #8060aa;
}

.slide:nth-child(4) .accent-line {
  background: #b08840;
}

.slide-headline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 5.5vw, 6rem);
  font-weight: 300;
  line-height: 0.93;
  color: #ffffff;
  margin-bottom: 1.8rem;
}

.slide-headline em {
  font-style: italic;
  font-weight: 600;
  display: block;
}

.headline-line {
  display: block;
  overflow: hidden;
  line-height: 1.06;
}

.headline-line-inner {
  display: block;
  transform: translateY(106%);
  transition: transform 1s var(--ease);
}

.slide.active .headline-line-inner {
  transform: translateY(0);
}

.slide.active .headline-line:nth-child(1) .headline-line-inner {
  transition-delay: 0.28s;
}

.slide.active .headline-line:nth-child(2) .headline-line-inner {
  transition-delay: 0.41s;
}

.slide.active .headline-line:nth-child(3) .headline-line-inner {
  transition-delay: 0.53s;
}

/* Exit: collapse upward fast */
.slide.exiting .headline-line-inner {
  transform: translateY(-108%) !important;
  transition: transform 0.32s var(--ease-in) 0s !important;
}

.slide-body {
  font-size: clamp(0.82rem, 1.15vw, 0.97rem);
  font-weight: 300;
  color: #fdfdfd;
  line-height: 1.85;
  max-width: 36ch;
  margin-bottom: 2.6rem;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s var(--ease-out);
}

.slide.active .slide-body {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.62s;
}

.slide.exiting .slide-body {
  opacity: 0;
  transition: opacity 0.18s ease 0s;
  transform: none;
}

.slide-actions {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.6s ease,
    transform 0.6s var(--ease-out);
}

.slide.active .slide-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.75s;
}

.slide.exiting .slide-actions {
  opacity: 0;
  transition: opacity 0.15s ease 0s;
  transform: none;
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.88rem 2rem;
  font-family: "Barlow", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #080808;
  background: #f0ede6;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: color 0.35s ease;
  white-space: nowrap;
}

.btn-fill {
  position: absolute;
  inset: 0;
  background: #080808;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  color: #f0ede6;
}

.btn-primary:hover .btn-fill {
  transform: scaleX(1);
}

.btn-secondary {
  font-family: "Barlow", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fdfdfd;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.btn-arrow {
  transition: transform 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  color: #c8c4bc;
}

.btn-secondary:hover .btn-arrow {
  transform: translateX(5px);
}

/* ─── RIGHT: VISUAL ─── */
.slide-visual {
  position: relative;
  z-index: 2;
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-frame {
  position: absolute;
  top:175px;
  width: 85%;
  aspect-ratio: 4/4;
  overflow: hidden;
  /* Enter: clipped shut from bottom */
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.9s var(--ease);
}

.slide.active .visual-frame {
  clip-path: inset(0% 0 0 0);
  transition-delay: 0.08s;
}

/* Exit: wipe up to top */
.slide.exiting .visual-frame {
  clip-path: inset(0 0 100% 0) !important;
  transition: clip-path 0.38s var(--ease-in) 0s !important;
}

.visual-img {
  position: absolute;
  inset: -5%;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  /* transform: scale(1.08); */
  /* transition: transform 8s ease-out; */
}

.slide.active .visual-img {
  transform: scale(1);
}

.slide.exiting .visual-img {
  transform: scale(1.08);
  transition: transform 0.4s ease;
}

.visual-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.52) 100%); */
}

.visual-label {
  position: absolute;
  bottom: -1.5rem;
  right: -2rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(5rem, 9vw, 8rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s var(--ease-out);
}

.slide.active .visual-label {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.55s;
}

.slide.exiting .visual-label {
  opacity: 0;
  transition: opacity 0.18s ease;
  transform: none;
}

/* Floating geometric rings */
.geo {
  position: absolute;
  border: 1px solid;
  border-radius: 50%;
  pointer-events: none;
  animation: geo-spin 24s linear infinite;
}

.geo2 {
  position: absolute;
  border: 1px solid;
  pointer-events: none;
  animation: geo-float 9s ease-in-out infinite;
}

@keyframes geo-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes geo-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-14px) rotate(4deg);
  }
}

.slide:nth-child(1) .geo,
.slide:nth-child(1) .geo2 {
  border-color: rgba(155, 112, 80, 0.22);
}

.slide:nth-child(2) .geo,
.slide:nth-child(2) .geo2 {
  border-color: rgba(45, 143, 114, 0.25);
}

.slide:nth-child(3) .geo,
.slide:nth-child(3) .geo2 {
  border-color: rgba(128, 96, 170, 0.25);
}

.slide:nth-child(4) .geo,
.slide:nth-child(4) .geo2 {
  border-color: rgba(176, 136, 64, 0.22);
}

/* Slide-specific bg colours */
.slide:nth-child(1) .slide-bg-color {
  background: #160d08;
}

.slide:nth-child(2) .slide-bg-color {
  background: #051110;
}

.slide:nth-child(3) .slide-bg-color {
  background: #0a0612;
}

.slide:nth-child(4) .slide-bg-color {
  background: #100c05;
}

/* Image tones */
.slide:nth-child(1) .visual-img {
  filter: brightness(0.82) saturate(0.88);
}

.slide:nth-child(2) .visual-img {
  filter: brightness(0.78) saturate(0.82);
}

.slide:nth-child(3) .visual-img {
  filter: brightness(0.74) saturate(0.78);
}

.slide:nth-child(4) .visual-img {
  filter: brightness(0.8) saturate(0.84);
}

/* ─── SLIDE NUMBER ─── */
.slide-number {
  position: absolute;
  top: 50%;
  left: 2.8vw;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.num-current {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #f0ede6;
  line-height: 1;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.num-sep {
  width: 0.5px;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.12);
}

.num-total {
  font-family: "Barlow", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  color: #383838;
  letter-spacing: 0.1em;
}

/* ─── PROGRESS BAR ─── */
.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 10;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: rgba(240, 237, 230, 0.55);
}

/* ─── DOT NAV ─── */
.nav {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-dot {
  height: 2px;
  width: 24px;
  background: rgba(255, 255, 255, 0.14);
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.3s ease,
    width 0.4s var(--ease-out);
}

.nav-dot.active {
  width: 48px;
  background: rgba(240, 237, 230, 0.7);
}

/* ─── ARROWS ─── */
.arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  border: 0.5px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 8, 8, 0.45);
  backdrop-filter: blur(10px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c8c4bc;
  transition:
    border-color 0.3s,
    background 0.3s,
    color 0.3s;
}

.arrow-btn:hover {
  border-color: rgba(255, 255, 255, 0.32);
  color: #f0ede6;
  background: rgba(255, 255, 255, 0.07);
}

.arrow-btn svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.arrow-prev {
  left: 2.5vw;
}

.arrow-next {
  right: 2.5vw;
}

/* ─── CHROME ─── */
.corner-mark {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
  z-index: 9;
  opacity: 0.18;
}

.corner-mark::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.5px;
  top: 0;
  left: 0;
  background: #f0ede6;
}

.corner-mark::after {
  content: "";
  position: absolute;
  width: 0.5px;
  height: 100%;
  top: 0;
  left: 0;
  background: #f0ede6;
}

.corner-tl {
  top: 1.4rem;
  left: 1.4rem;
}

.corner-tr {
  top: 1.4rem;
  right: 1.4rem;
  transform: rotate(90deg);
}

.corner-bl {
  bottom: 1.4rem;
  left: 1.4rem;
  transform: rotate(-90deg);
}

.corner-br {
  bottom: 1.4rem;
  right: 1.4rem;
  transform: rotate(180deg);
}

.meta-tag {
  position: absolute;
  top: 2.2rem;
  right: 2.8rem;
  z-index: 10;
  font-family: "Barlow", sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.16);
}

.vignette {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    transparent 38%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.center-line {
  position: absolute;
  top: 0;
  left: 48%;
  width: 0.5px;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  z-index: 6;
  pointer-events: none;
}

.ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3.4rem;
  z-index: 9;
  overflow: hidden;
  height: 1.1rem;
  display: flex;
  align-items: center;
  opacity: 0.09;
  pointer-events: none;
}

.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 35s linear infinite;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: #f0ede6;
  gap: 4rem;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── TABLET (≤ 900px) ── */
@media (max-width: 900px) {
  .slide {
    grid-template-columns: 55% 45%;
  }

  .slide-content {
    padding: 0 3vw 0 6vw;
  }

  .arrow-prev {
    left: 2vw;
  }

  .arrow-next {
    right: 2vw;
  }

  .slide-number {
    left: 1.2vw;
  }
}

/* ── MOBILE (≤ 640px) ── */
@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  .slider {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 580px;
  }

  .slide {
    grid-template-columns: 1fr;
    grid-template-rows: 42% 58%;
  }

  .slide-visual {
    grid-column: 1;
    grid-row: 1;
    height: 100%;
    align-items: flex-start;
  }

  .slide-bg-color {
    width: 100%;
    top: 42%;
    height: 58%;
  }

  .slide-content {
    grid-column: 1;
    grid-row: 2;
    padding: 1.4rem 6vw 4rem;
    justify-content: flex-start;
    z-index: 2;
  }

  .visual-frame {
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    clip-path: inset(100% 0 0 0);
  }

  .slide.active .visual-frame {
    clip-path: inset(0% 0 0 0);
  }

  .slide.exiting .visual-frame {
    clip-path: inset(0 0 100% 0) !important;
  }

  .visual-img {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .visual-label {
    display: none;
  }

  .geo,
  .geo2 {
    display: none;
  }

  .slide-headline {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
    margin-bottom: 0.8rem;
  }

  .slide-body {
    font-size: 0.82rem;
    margin-bottom: 1.2rem;
    max-width: 100%;
  }

  .slide-eyebrow {
    margin-bottom: 0.8rem;
  }

  .slide-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .slide-number {
    display: none;
  }

  .meta-tag {
    display: none;
  }

  .center-line {
    display: none;
  }

  .ticker {
    display: none;
  }

  .corner-mark {
    display: none;
  }

  .arrow-prev {
    left: 1rem;
    top: 21%;
    transform: none;
  }

  .arrow-next {
    right: 1rem;
    top: 21%;
    transform: none;
  }

  .arrow-btn {
    width: 38px;
    height: 38px;
  }

  .nav {
    bottom: 1rem;
  }

  .nav-dot {
    width: 16px;
  }

  .nav-dot.active {
    width: 32px;
  }
}

/* ── VERY SMALL (≤ 380px) ── */
@media (max-width: 380px) {
  .slide-headline {
    font-size: 2.1rem;
  }

  .btn-primary {
    padding: 0.75rem 1.4rem;
    font-size: 0.68rem;
  }
}

.about-section-two {
    background: var(--bg);
    padding: 80px 0;
    overflow: hidden;
  }

  .about-section-two__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }

  .about-section-two__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 48px;
  }

  /* LEFT MEDIA */
  .about-section-two__col-media {
    flex: 0 0 calc(50% - 24px);
    max-width: calc(50% - 24px);
  }

  .about-section-two__media-wrapper {
    position: relative;
    padding-bottom: 30px;
  }

  .about-section-two__media {
    position: relative;
    z-index: 1;
  }

  .about-section-two__media::after {
    background-color: var(--orange);
    z-index: -1;
    content: "";
    width: 80px;
    bottom: 0px;
    height: 414px;
    top: 93px;
    left: -30px;
    position: absolute;
    /*transform: skewX(-5deg);*/
  }

  .about-section-two__media-pic {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 3px;
    /*border: 1px solid var(--border);*/
    
    /*transform: skewX(-5deg);*/
  }

  .about-section-two__media-pic img {
    width: 100%;
    height: 600px;
    object-fit: contain; 
    display: block;
    opacity: 0;
    animation: about-section-two-fade-in-left 0.85s ease 0.1s forwards; 
  }

 

  .about-section-two__dot-pic {
    position: absolute;
    bottom: -10px;
    right: -18px;
    z-index: 0;
    animation: about-section-two-fade-in 1.2s ease 0.3s forwards;
    opacity: 0;
  }

  .about-section-two__dot-pic img {
    width: 140px;
    height: auto;
    filter: invert(1) brightness(0.3);
  }

  /* RIGHT CONTENT */
  .about-section-two__col-content {
    flex: 0 0 calc(50% - 24px);
    max-width: calc(50% - 24px);
  }

  .about-section-two__sm-title {
    font-family: var(--font-body);
    color: var(--orange);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: about-section-two-fade-in-up 0.5s ease 0.15s forwards;
  }

  .about-section-two__sm-title::before,
  .about-section-two__sm-title::after {
    content: "_";
    color: var(--gold);
  }

  .about-section-two__heading {
    font-family: var(--font-head);
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
    opacity: 0;
    animation: about-section-two-fade-in-up 0.55s ease 0.25s forwards;
  }

  .about-section-two__desc {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 32px;
    opacity: 0;
    animation: about-section-two-fade-in-up 0.55s ease 0.35s forwards;
  }

  /* SOLUTIONS + SKILLS */
  .about-section-two__info-block {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 36px;
    opacity: 0;
    animation: about-section-two-fade-in-up 0.55s ease 0.45s forwards;
  }

  .about-section-two__stat-box {
    background: var(--navy);
    min-width: 114px;
    height: 114px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
  }

  .about-section-two__stat-box::before {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--orange);
  }

  .about-section-two__stat-box span {
    font-family: var(--font-head);
    font-size: 38px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
  }

  .about-section-two__stat-box span i {
    font-size: 18px;
    font-style: normal;
    color: var(--gold);
  }

  .about-section-two__stat-box p {
    font-family: var(--font-body);
    color: var(--gold-l);
    font-size: 11px;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

  .about-section-two__skills-wrap { flex: 1; }

  .about-section-two__skill-item { margin-bottom: 16px; }

  .about-section-two__skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 7px;
  }

  .about-section-two__skill-header .about-section-two__skill-label i {
    color: var(--orange);
    font-size: 7px;
    margin-right: 7px;
    vertical-align: middle;
  }

  .about-section-two__skill-header .about-section-two__skill-pct {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
  }

  .about-section-two__progress-wrap .about-section-two__progress-track {
    background: var(--bg2);
    border-radius: 0;
    height: 5px;
    overflow: hidden;
    border: 1px solid var(--border);
  }

  .about-section-two__progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--navy) 0%, var(--orange) 100%);
    border-radius: 0;
    width: 0;
    animation: about-section-two-progress-grow 1.8s cubic-bezier(0.4,0,0.2,1) 0.6s forwards;
    position: relative;
  }

  .about-section-two__progress-fill--90 { --target-width: 90%; }
  .about-section-two__progress-fill--75 { --target-width: 75%; }
  .about-section-two__progress-fill--80 { --target-width: 80%; }

  @keyframes about-section-two-progress-grow {
    from { width: 0; }
    to { width: var(--target-width); }
  }

  /* ICON BOXES */
  .about-section-two__icon-boxes {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: about-section-two-fade-in-up 0.55s ease 0.65s forwards;
  }

  .about-section-two__icon-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex: 1;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 18px 16px;
    transition: box-shadow var(--transition), border-color var(--transition);
  }

  .about-section-two__icon-card:hover {
    border-color: var(--orange);
    box-shadow: 0 4px 20px rgba(255,107,0,0.1);
  }

  .about-section-two__icon-thumb {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg2);
    border-radius: 4px;
    color: var(--orange);
    font-size: 20px;
    transition: background var(--transition), color var(--transition);
  }

  .about-section-two__icon-card:hover .about-section-two__icon-thumb {
    background: var(--orange);
    color: var(--white);
  }

  .about-section-two__icon-body h3 {
    font-family: var(--font-head);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
    letter-spacing: 0.3px;
  }
  
  .about-section-two__bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-section-two__bullet-list li {
  font-size: 16px;
  font-weight: 500;
  color: #232728;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-section-two__bullet-list li i {
  color: #CA4445;
  font-size: 14px;
  flex-shrink: 0;
}

  .about-section-two__icon-body p {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* ANIMATIONS */
  @keyframes about-section-two-fade-in-left {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
  }

  @keyframes about-section-two-fade-in-up {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes about-section-two-fade-in {
    from { opacity: 0; }
    to { opacity: 0.35; }
  }

  @media (max-width: 768px) {
    .about-section-two__col-media,
    .about-section-two__col-content { flex: 0 0 100%; max-width: 100%; }
    .about-section-two__heading { font-size: 30px; }
    .about-section-two__icon-boxes { flex-direction: column; }
  }

/* ══════════════════════════════════════════════════════
   ABOUT SECTION WRAPPER
══════════════════════════════════════════════════════ */
.abt-section {
  padding: 100px 0 80px;
  background: #fff;
  position: relative;
  overflow: hidden;
  font-size:0;
}


 
 
/* Dot grid texture */
.abt-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,107,0,0.07) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 0;
  pointer-events: none;
}
 
.abt-section > .container {
  position: relative;
  z-index: 1;
}
 
/* ── Eyebrow ── */
.abt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--orange);
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  margin-bottom: 16px;
  opacity: 0;
  animation: abt-fade-up 0.6s ease 0.1s forwards;
}
 
.abt-eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}
 
.abt-eyebrow i { font-size: 12px; }
 
/* ── H1 ── */
.about__title,
.abt-h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.1;
  color: #111;
  margin-bottom: 0;
  max-width: 820px;
  opacity: 0;
  animation: abt-fade-up 0.65s ease 0.2s forwards;
}
 
/* ── Heading bar ── */
.abt-heading-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 44px;
  opacity: 0;
  animation: abt-fade-up 0.6s ease 0.3s forwards;
}
 
.abt-heading-bar .bar-solid {
  width: 54px;
  height: 4px;
  background: var(--orange);
  border-radius: 4px;
  transform-origin: left;
  animation: abt-bar-grow 0.7s ease 0.5s both;
}
 
.abt-heading-bar .bar-thin {
  width: 120px;
  height: 2px;
  background: rgba(255,107,0,0.15);
  border-radius: 2px;
}
 
/* ── Clearfix zone — float preserved ── */
.abt-clearfix {
  /* keep the float layout exactly as original */
}
 
.abt-clearfix::after {
  content: "";
  display: table;
  clear: both;
}
 
/* ── Float image — redesigned ── */
.abt-float-img {
  float: left;
  margin: 4px 200px 24px 25px;
  position: relative;
  /*opacity: 0;*/
  /*animation: abt-fade-right 0.8s ease 0.35s forwards;*/
  /*background: linear-gradient(135deg, #FFA726, #FF7043);*/
}
 
 
 
.abt-float-img .img-frame {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  border: none;
  background: none;
  /*box-shadow: 0 20px 60px rgba(0,0,0,0.14);*/
  z-index: 1;
}
 

.abt-float-img .img-frame img {
  display: block;
  /*width: 400px;*/
  height: 425px;
  object-fit: contain;
  border-radius: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.6s ease;
}
 
.abt-float-img:hover .img-frame img {
  transform: scale(1.05);
}
 
/* Image label */
.abt-float-img .img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  color: #fff;
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 28px 14px 12px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
  z-index: 2;
  border-radius: 0;
  backdrop-filter: none;
  background-color: transparent;
}
 
.abt-float-img .img-label i {
  font-size: 11px;
  color: var(--orange);
}
 
/* ── Body text ── */
.abt-body-text {
  font-family: var(--font-body);
  font-size: 0.97rem;
  line-height: 1.9;
  color: #484848;
  /*opacity: 0;*/
  /*animation: abt-fade-up 0.7s ease 0.5s forwards;*/
}
 
.abt-body-text p { margin-bottom: 18px; }
.abt-body-text p:last-child { margin-bottom: 0; }
.abt-body-text strong { color: #111; font-weight: 700; }
 
/* ── CTA row ── */
.abt-cta {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: abt-fade-up 0.6s ease 0.65s forwards;
}
 
/* Primary button — sweep fill */
.btn-abt-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 0;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
  box-shadow: 4px 4px 0 #111;
}
 
.btn-abt-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #111;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.38s cubic-bezier(0.77,0,0.18,1);
  z-index: -1;
}
 
.btn-abt-primary i,
.btn-abt-primary span {
  position: relative;
  z-index: 1;
}
 
.btn-abt-primary:hover { color: #fff !important; box-shadow: 4px 4px 0 var(--orange); }
.btn-abt-primary:hover::before { transform: scaleX(1); transform-origin: left; }
 
/* Outline button */
.btn-abt-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #111;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 2px solid #111;
  border-radius: 0;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
}
 
.btn-abt-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #111;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.77,0,0.18,1);
  z-index: -1;
}
 
.btn-abt-outline i { position: relative; z-index: 1; }
.btn-abt-outline span { position: relative; z-index: 1; }
.btn-abt-outline:hover { color: #fff; }
.btn-abt-outline:hover::before { transform: scaleY(1); transform-origin: top; }
 
/* ══════════════════════════════════════════════════════
   KEYFRAME ANIMATIONS
══════════════════════════════════════════════════════ */
@keyframes abt-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
@keyframes abt-fade-right {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
 
@keyframes abt-bar-grow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
 
/* ── Responsive ── */
@media (max-width: 767px) {
  .abt-section { padding: 60px 0; }
  .abt-section::before { display: none; }
 
  .abt-float-img {
    float: none;
    margin: 0 0 28px 0;
  }
 
  .abt-float-img .img-frame img {
    width: 100%;
    /*height: 220px;*/
  }
 
  .abt-float-img::after { display: none; }
 
  .abt-cta { flex-direction: column; align-items: flex-start; }
}
 
@media (max-width: 480px) {
  .btn-abt-primary,
  .btn-abt-outline { width: 100%; justify-content: center; }
}

.mv-section {
    padding: 50px  0 80px 0;
    background: var(--primary-white);
}

.mv-section.alt-bg {
    background: var(--bg-light);
}

.mv-header {
    text-align: center;
    margin-bottom: 60px;
}

.mv-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-black);
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.mv-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.mv-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.mv-card {
    background: var(--primary-white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-orange-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.mv-card:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.mv-card:hover::before {
    transform: scaleX(1);
}

.mv-icon {
    font-size: 48px;
    color: var(--accent-orange);
    margin-bottom: 20px;
    display: block;
}

.mv-card-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.mv-card-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    font-weight: 400;
}

.mv-accent-line {
    width: 40px;
    height: 3px;
    background: var(--accent-orange);
    margin: 0 auto 24px;
    border-radius: 2px;
}

/* Three column layout variant */
.mv-cards-wrapper.three-col {
    grid-template-columns: repeat(3, 1fr);
}

/* Responsive */
@media (max-width: 1024px) {
    .mv-cards-wrapper.three-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mv-section {
        padding: 60px 0;
    }

    .mv-title {
        font-size: 36px;
    }

    .mv-cards-wrapper,
    .mv-cards-wrapper.three-col {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mv-card {
        padding: 30px 20px;
    }

    .mv-icon {
        font-size: 40px;
    }

    .mv-card-title {
        font-size: 20px;
    }

    .mv-card-text {
        font-size: 14px;
    }
}

.edm-stats-section {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            gap: 60px;
            align-items: center;
        }
 
        .edm-stats-header {
            flex: 0 0 45%;
            max-width: 500px;
        }
 
        .edm-stats-label {
            color: var(--edm-orange);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }
 
        .edm-stats-title {
            color: var(--edm-text-dark);
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            max-width: 600px;
        }
 
        .edm-stats-description {
            color: var(--edm-text-gray);
            font-size: 16px;
            line-height: 1.8;
            max-width: 550px;
            margin-bottom: 30px;
        }
 
        .edm-view-projects-link {
            display: inline-flex;
            align-items: center;
            color: var(--edm-orange);
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }
 
        .edm-view-projects-link:hover {
            color: var(--edm-orange-dark);
            transform: translateX(5px);
        }
 
        .edm-view-projects-link::after {
            content: '→';
            margin-left: 8px;
            font-size: 18px;
        }
 
        .edm-stats-grid {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
 
        .edm-stat-card {
            background: var(--edm-card-bg);
            border-radius: 8px;
            padding: 35px 28px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            animation: edmFadeInUp 0.6s ease forwards;
            opacity: 0;
            display: flex;
            align-items: center;
            gap: 20px;
        }
 
        .edm-stat-card:nth-child(1) { animation-delay: 0.1s; }
        .edm-stat-card:nth-child(2) { animation-delay: 0.2s; }
        .edm-stat-card:nth-child(3) { animation-delay: 0.3s; }
        .edm-stat-card:nth-child(4) { animation-delay: 0.4s; }
 
        .edm-stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(255, 107, 0, 0.15);
        }
 
        .edm-stat-icon-wrapper {
            width: 55px;
            height: 55px;
            background: #fff5ed;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
 
        .edm-stat-icon {
            font-size: 26px;
            color: var(--edm-orange);
        }
 
        .edm-stat-content {
            flex: 1;
        }
 
        .edm-stat-number {
            font-size: 44px;
            font-weight: 700;
            color: var(--edm-text-dark);
            margin-bottom: 5px;
            line-height: 1;
        }
 
        .edm-stat-label-text {
            font-size: 15px;
            color: var(--edm-text-gray);
            font-weight: 400;
            line-height: 1.4;
        }
 
        @keyframes edmFadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
 
        @media (max-width: 968px) {
            .edm-stats-section {
                flex-direction: column;
                gap: 40px;
            }
 
            .edm-stats-header {
                flex: none;
                max-width: 100%;
            }
 
            .edm-stats-title {
                font-size: 36px;
            }
 
            .edm-stats-grid {
                width: 100%;
            }
        }
 
        @media (max-width: 768px) {
            .edm-stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
 
            .edm-stat-card {
                padding: 30px 25px;
            }
        }

/* ════════════════════════════════
       SHARED SECTION STYLES
    ════════════════════════════════ */
.prod-section {
  padding: 88px 0 96px;
  background: #fff;
}

.prod-section.alt-bg {
  background: var(--bg2);
}

/* Section header */
.sec-head {
  margin-bottom: 52px;
}

.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.sec-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.sec-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #000;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.sec-title em {
  font-style: normal;
  color: var(--orange);
}

.sec-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.72;
  max-width: 480px;
  margin-top: 10px;
}

.sec-view-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  border: 1.5px solid var(--orange);
  border-radius: 6px;
  padding: 9px 20px;
  transition:
    background 0.2s,
    color 0.2s;
  white-space: nowrap;
}

.sec-view-all:hover {
  background: var(--orange);
  color: var(--white);
}

.sec-view-all i {
  font-size: 0.7rem;
  transition: transform 0.2s;
}

.sec-view-all:hover i {
  transform: translateX(3px);
}

/* ════════════════════════════════
       PRODUCT CARD  (shared by both)
    ════════════════════════════════ */
.prod-card {
  background:linear-gradient(135deg, #FFA726, #FF7043);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition:
    box-shadow 0.28s,
    transform 0.28s,
    border-color 0.28s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Product Card */
.prod-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px; 
  isolation: isolate;
}

/* Continuous mirror reflection sweep */
.prod-card::before {
  content: "";
  position: absolute;
  top: -150%;
  left: -60%;
  width: 70%;
  height: 400%;

  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 35%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0.03) 65%,
    transparent 100%
  );

  transform: rotate(18deg);
  animation: mirrorReflection 3s linear infinite;

  pointer-events: none;
  mix-blend-mode: screen;
}

/* Optional subtle glass glow */
.prod-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.08),
      transparent 35%
    );
  pointer-events: none;
}

@keyframes mirrorReflection {
  0% {
    transform: translateX(-220%) rotate(18deg);
  }

  100% {
    transform: translateX(320%) rotate(18deg);
  }
}

.prod-card:hover {
  box-shadow: 0 12px 40px rgba(26, 26, 46, 0.12);
  transform: translateY(-5px);
  border-color: rgba(200, 40, 30, 0.2);
}

/* Image wrapper */
.prod-img-wrap {
  display: block;
  overflow: hidden;
  position: relative;
  /*background: #fc7b02;*/
  aspect-ratio: 4 / 4;
  height: 280px;
}

.prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.45s ease;
}

.prod-card:hover .prod-img-wrap img {
  transform: scale(1.06);
}

/* Image overlay on hover */
.prod-img-wrap .img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 46, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.prod-img-wrap .img-overlay span {
  background: var(--white);
  color: var(--orange);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}

.prod-card:hover .prod-img-wrap .img-overlay {
  background: rgba(26, 26, 46, 0.28);
}

.prod-card:hover .prod-img-wrap .img-overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* Category badge */
.prod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  z-index: 2;
}

/* Card body */
.prod-body {
  padding: 5px 15px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
      /*background: #fc7b02;*/
}

/* Title link */
.prod-title-link {
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.25;
  letter-spacing: 0.01em;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.prod-title-link:hover {
  color: #fff;
}

/* Short divider */
.prod-line {
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 10px;
  opacity: 0.7;
}

/* Description */
.prod-desc {
  font-size: 0.85rem;
  line-height: 1.72;
  color: #000;
  flex: 1;
  font-weight:600;
}

/* Card footer link */
.prod-footer {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.prod-enquire {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    gap 0.2s,
    color 0.2s;
}

.prod-enquire:hover {
  gap: 10px;
  color: #fff;
}

.prod-enquire i {
  font-size: 0.65rem;
}

.prod-share {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.72rem;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.prod-share:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* ════════════════════════════════
       SECTION 1 – GRID
    ════════════════════════════════ */
/* Nothing extra needed — Bootstrap g-4 handles it */

/* ════════════════════════════════
       SECTION 2 – OWL CAROUSEL
    ════════════════════════════════ */
.owl-carousel .prod-card {
  margin: 6px 4px 16px;
  /*height: 445px;*/
}

/* Custom nav buttons */
.owl-nav-custom {
  display: flex;
  align-items: center;
  gap: 10px;
}

.owl-btn {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--dark);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    transform 0.2s;
}

.owl-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: scale(1.05);
}

/* Custom dots */
.owl-theme .owl-dots {
  margin-top: 28px !important;
}

.owl-theme .owl-dots .owl-dot span {
  width: 8px !important;
  height: 8px !important;
  background: var(--border) !important;
  margin: 0 4px !important;
  border-radius: 4px !important;
  transition:
    width 0.3s,
    background 0.3s !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  width: 24px !important;
  background: var(--orange) !important;
}

/* Hide default owl nav */
.owl-theme .owl-nav {
  display: none !important;
}

/* Carousel wrapper — give it overflow visible so card hover shadows show */
.owl-carousel.owl-loaded {
  overflow: visible;
}

.owl-stage-outer {
  overflow: hidden !important;
}

/* ════════════════════════════════
       RESPONSIVE
    ════════════════════════════════ */
@media (max-width: 575px) {
  .prod-section {
    padding: 60px 0 68px;
  }

  .sec-head .d-flex {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 14px !important;
  }
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--accent-orange);
  top: -100px;
  right: -100px;
  animation: float 20s infinite ease-in-out;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--primary-black);
  bottom: -50px;
  left: 10%;
  animation: float 15s infinite ease-in-out reverse;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: var(--accent-orange);
  top: 50%;
  right: 20%;
  animation: float 18s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

.why-choose-us .container {
  position: relative;
  z-index: 1;
}

.why-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.why-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.why-image-wrapper:hover .why-image {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--primary-white);
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 4px solid var(--accent-orange);
}

.badge-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--accent-orange) 0%,
    var(--accent-orange-light) 100%
  );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-white);
  font-size: 24px;
}

.badge-content {
  display: flex;
  flex-direction: column;
}

.badge-number {
  font-size: 32px;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  color: var(--primary-black);
  line-height: 1;
}

.badge-text {
  font-size: 12px;
  color: var(--text-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-content {
  padding-left: 30px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 0, 0.1) 0%,
    rgba(255, 107, 0, 0.05) 100%
  );
  padding: 10px 20px;
  border-radius: 30px;
  color: var(--accent-orange);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 107, 0, 0.2);
  margin-bottom: 20px;
}

.section-badge i {
  font-size: 18px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  color: var(--primary-black);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-description {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.feature-card {
  display: flex;
  gap: 15px;
  padding: 25px;
  background: var(--primary-white);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid var(--border-gray);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--accent-orange) 0%,
    var(--accent-orange-light) 100%
  );
  opacity: 0.05;
  transition: width 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-orange);
}

.feature-card:hover::before {
  width: 100%;
}

.feature-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(
    135deg,
    var(--accent-orange) 0%,
    var(--accent-orange-light) 100%
  );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-white);
  font-size: 26px;
  position: relative;
  z-index: 1;
}

.feature-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  color: var(--primary-black);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-text {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}

.stats-row {
  display: flex;
  gap: 30px;
  padding: 30px;
  background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
  border-radius: 15px;
  border-top: 3px solid var(--accent-orange);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 107, 0, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  font-size: 24px;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  color: var(--primary-white);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 991px) {
  .why-content {
    padding-left: 0;
    margin-top: 30px;
  }

  .section-title {
    font-size: 32px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .why-choose-us {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .experience-badge {
    bottom: 15px;
    right: 15px;
    padding: 15px 20px;
  }

  .badge-number {
    font-size: 24px;
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
  }

  .feature-icon {
    margin: 0 auto;
  }
}

/* ══════════════════════════════════════════════════════════
   SHARED UTILITIES (used across all 4 sections)
══════════════════════════════════════════════════════════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ki-accent);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  display: inline-block;
  flex-shrink: 0;
}

.eyebrow--white {
  color: rgba(255, 255, 255, 0.65);
}

.eyebrow--white::before {
  background: var(--ki-accent);
}

.eyebrow--blue {
  color: var(--blue);
}

.sec-display {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  font-weight: 600;
  color: var(--grey-900);
  line-height: 1.17;
  margin-bottom: 1.1rem;
}

.sec-display .ital {
  font-style: italic;
}

.sec-display .accent {
  color: var(--ki-accent);
}

.sec-display .gold {
  color: var(--gold);
  font-style: italic;
}

.sec-display--white {
  color: var(--white);
}

.sec-lead {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--ki-muted);
  line-height: 1.85;
}

.sec-lead--white {
  color: rgba(255, 255, 255, 0.68);
}

/* ══════════════════════════════════════════════════════════
   1. TESTIMONIALS
══════════════════════════════════════════════════════════ */
.testimonials {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  background: var(--grey-50);
  position: relative;
  overflow: hidden;
}

/* Giant decorative quote — CSS only, no img */
.testimonials::before {
  content: "\201C";
  font-family: var(--font-head);
  font-size: clamp(16rem, 30vw, 28rem);
  color: var(--ki-accent);
  opacity: 0.045;
  position: absolute;
  top: -5rem;
  left: -1.5rem;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* ── Header row ───────────────────────────────────────── */
.tst__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
}

.tst__aggregate {
  text-align: right;
  flex-shrink: 0;
}

.tst__agg-num {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--grey-900);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  justify-content: flex-end;
}

.tst__agg-num .denom {
  font-size: 0.42em;
  color: var(--grey-400);
  font-weight: 400;
}

.tst__agg-stars {
  display: flex;
  gap: 3px;
  justify-content: flex-end;
  margin: 6px 0 3px;
}

.tst__agg-stars i {
  color: #f5a623;
  font-size: 14px;
}

.tst__agg-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--grey-400);
}

/* ── Cards grid: 3 col, centre card inverted ──────────── */
.tst__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  position: relative;
  z-index: 1;
}

/* Base card */
.tst-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-100);
  padding: clamp(0.5rem, 3vw, 1.2rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--trans),
    box-shadow var(--trans);
}

.tst-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Accent top borders */
.tst-card--orange {
  border-top: 3px solid var(--ki-accent);
}

.tst-card--navy {
  border-top: 3px solid var(--ki-accent);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
}

.tst-card--blue {
  border-top: 3px solid var(--blue);
}

/* Decorative large quote icon (CSS, no extra element) */
.tst-card::before {
  content: "\201C";
  font-family: var(--font-head);
  font-size: 7rem;
  position: absolute;
  top: -1.5rem;
  right: 1.2rem;
  line-height: 1;
  pointer-events: none;
  color: var(--ki-accent);
  opacity: 0.07;
}

.tst-card--navy::before {
  color: var(--white);
  opacity: 0.06;
}

/* Stars */
.tst-card__stars {
  display: flex;
  gap: 3px;
}

.tst-card__stars i {
  color: #f5a623;
  font-size: 12px;
}

.tst-card--navy .tst-card__stars i {
  color: #f5a623;
}

/* Quote text */
.tst-card__quote {
  font-family: var(--font-head);
  font-size: clamp(0.88rem, 1.25vw, 1rem);
  font-style: italic;
  font-weight: 400;
  color: var(--grey-700);
  line-height: 1.78;
  flex: 1;
}

.tst-card--navy .tst-card__quote {
  color: rgba(255, 255, 255, 0.72);
}

/* Divider */
.tst-card__rule {
  border: none;
  border-top: 1px solid var(--grey-100);
}

.tst-card--navy .tst-card__rule {
  border-color: rgba(255, 255, 255, 0.1);
}

/* Author row */
.tst-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.tst-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--grey-100);
}

.tst-card--navy .tst-card__avatar {
  border-color: rgba(255, 255, 255, 0.15);
}

.tst-card__name {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--grey-900);
  line-height: 1.2;
}

.tst-card--navy .tst-card__name {
  color: var(--white);
}

.tst-card__role {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--grey-400);
  margin-top: 2px;
}

.tst-card--navy .tst-card__role {
  color: rgba(255, 255, 255, 0.45);
}

.tst-card__company {
  color: var(--ki-accent);
  font-weight: 700;
}

/* ── Bottom trust strip ──────────────────────────────── */
.tst__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--grey-200);
  position: relative;
  z-index: 1;
}

.tst-trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--grey-700);
}

.tst-trust-item i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.tst-trust-item:nth-child(1) i {
  background: var(--accent-lt);
  color: var(--ki-accent);
}

.tst-trust-item:nth-child(2) i {
  background: var(--green-lt);
  color: var(--green);
}

.tst-trust-item:nth-child(3) i {
  background: var(--blue-lt);
  color: var(--blue);
}

.tst-trust-item:nth-child(4) i {
  background: rgba(22, 39, 64, 0.07);
  color: var(--navy);
}

/* Responsive */
@media (max-width: 900px) {
  .tst__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .tst__grid {
    grid-template-columns: 1fr;
  }

  .tst__aggregate {
    display: none;
  }
}

/* ══════════════════════════════════════════════════════════
   2. FAQ
══════════════════════════════════════════════════════════ */
.faq {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  background: var(--white);
  overflow-x: hidden;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(3rem, 6vw, 6.5rem);
  align-items: start;
}

/* ── Left: sticky intro ──────────────────────────────── */
.faq__intro {
  position: sticky;
  top: 100px;
}

.faq__lead {
  margin-bottom: 2rem;
}

/* Mini stats row */
.faq__stats {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 1.4rem;
  background: var(--grey-50);
  border-radius: var(--radius);
  border: 1px solid var(--grey-100);
}

.faq-stat {
}

.faq-stat__num {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--grey-900);
  line-height: 1;
}

.faq-stat__num .unit {
  color: var(--ki-accent);
}

.faq-stat__lbl {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--grey-400);
  margin-top: 3px;
}

/* Support CTA */
.faq__support {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--accent-lt);
  border-radius: var(--radius);
  border-left: 3px solid var(--ki-accent);
  text-decoration: none;
  transition:
    box-shadow var(--trans),
    transform var(--trans);
}

.faq__support:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.faq__support-ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--ki-accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.faq__support-text {
}

.faq__support-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ki-accent);
  opacity: 0.7;
}

.faq__support-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--grey-900);
  margin-top: 1px;
}

/* ── Right: accordion ────────────────────────────────── */
.faq__list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--grey-100);
}

.faq-item:first-child {
  border-top: 1px solid var(--grey-100);
}

/* Trigger button */
.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.2rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
  transition: background var(--trans);
}

/* FA icon badge */
.faq-item__icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--grey-50);
  border: 1px solid var(--grey-100);
  color: var(--grey-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition:
    background var(--trans),
    color var(--trans),
    border-color var(--trans);
}

.faq-item.is-open .faq-item__icon {
  background: var(--ki-accent);
  border-color: var(--ki-accent);
  color: var(--white);
}

/* Question text */
.faq-item__q {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--grey-900);
  transition: color var(--trans);
}

.faq-item.is-open .faq-item__q {
  color: var(--ki-accent);
}

/* Chevron */
.faq-item__chevron {
  font-size: 11px;
  color: var(--grey-400);
  flex-shrink: 0;
  transition:
    transform var(--trans),
    color var(--trans);
}

.faq-item.is-open .faq-item__chevron {
  transform: rotate(180deg);
  color: var(--ki-accent);
}

/* Answer body */
.faq-item__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-item__body {
  max-height: 400px;
}

.faq-item__ans {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--ki-muted);
  line-height: 1.82;
  padding: 0 0 1.3rem 50px;
}

/* Responsive */
@media (max-width: 960px) {
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .faq__intro {
    position: static;
  }
}

/* ══════════════════════════════════════════════════════════
   3. CTA + FORM
══════════════════════════════════════════════════════════ */
.cta-form {
  position: relative;
  overflow: hidden;
}

.cta-form__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

/* ── Left panel — image + overlay ─────────────────────── */
.ctf__left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(2rem, 5vw, 4.5rem);
  overflow: hidden;
}

.ctf__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.ctf__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(22, 39, 64, 0.96) 0%,
    rgba(22, 39, 64, 0.8) 55%,
    rgba(229, 119, 37, 0.72) 100%
  );
  z-index: 1;
}

/* Decorative circles */
.ctf__deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
  z-index: 1;
}

.ctf__deco-ring--lg {
  width: 500px;
  height: 500px;
  bottom: -180px;
  left: -180px;
}

.ctf__deco-ring--sm {
  width: 260px;
  height: 260px;
  top: -80px;
  right: -80px;
  border-color: rgba(229, 119, 37, 0.12);
}

.ctf__left-body {
  position: relative;
  z-index: 2;
}

.ctf__display {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.ctf__display .gold {
  color: var(--gold);
  font-style: italic;
}

.ctf__sublead {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 400px;
}

/* Benefit checklist */
.ctf__benefits {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ctf-benefit {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.ctf-benefit a{
  text-decoration: none;
  color: #fff;
}

.ctf-benefit__ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--white);
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

/* ── Right panel — form ────────────────────────────────── */
.ctf__right {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 4vw, 3.5rem);
}

.ctf__form-wrap {
  width: 100%;
  max-width: 100%;
}

.ctf__form-title {
  font-family: var(--font-head);
  font-size: clamp(1.45rem, 2.5vw, 1.95rem);
  font-weight: 600;
  color: var(--grey-900);
  line-height: 1.22;
  margin-bottom: 1.8rem;
}

.ctf__form-title .accent {
  color: var(--ki-accent);
  font-style: italic;
}

/* Form */
.ctf__form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.ctf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

/* Field wrapper */
.ctf-field {
  position: relative;
}

.ctf-field i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--grey-400);
  font-size: 13px;
  pointer-events: none;
  transition: color var(--trans);
  z-index: 1;
}

.ctf-field--ta i {
  top: 15px;
  transform: none;
}

/* Focus-within: icon turns accent */
.ctf-field:focus-within i {
  color: var(--ki-accent);
}

/* Inputs, select, textarea */
.ctf-field input,
.ctf-field select,
.ctf-field textarea {
  width: 100%;
  padding: 11px 14px 11px 40px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--grey-900);
  background: var(--grey-50);
  border: 1.5px solid var(--grey-200);
  border-radius: 8px;
  outline: none;
  transition:
    border-color var(--trans),
    background var(--trans),
    box-shadow var(--trans);
  appearance: none;
}

.ctf-field textarea {
  resize: vertical;
  min-height: 108px;
  padding-top: 12px;
}

.ctf-field input:focus,
.ctf-field select:focus,
.ctf-field textarea:focus {
  border-color: var(--ki-accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(229, 119, 37, 0.1);
}

/* Select arrow */
.ctf-field--select::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: var(--grey-400);
  pointer-events: none;
}

/* Submit */
.ctf__submit {
  width: 100%;
  padding: 0.95rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ki-accent);
  border: 2px solid var(--ki-accent);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.3rem;
  transition:
    background var(--trans),
    color var(--trans),
    transform var(--trans);
}

.ctf__submit:hover {
  background: transparent;
  color: var(--ki-accent);
  transform: translateY(-2px);
}

.ctf__submit i {
  font-size: 13px;
  transition: transform var(--trans);
}

.ctf__submit:hover i {
  transform: translateX(4px);
}

/* Privacy note */
.ctf__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--grey-400);
  margin-top: 0.8rem;
}

.ctf__privacy i {
  color: var(--green);
  font-size: 11px;
}

/* Responsive */
@media (max-width: 960px) {
  .cta-form__inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .ctf__left {
    min-height: 400px;
  }

  .ctf__right {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 560px) {
  .ctf-row {
    grid-template-columns: 1fr;
  }

  .ctf__left {
    min-height: 320px;
    padding: 2.5rem 1.5rem;
  }
}

/* ══════════════════════════════════════════════════════════
   4. FOOTER
══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.55);
}

/* ── Main grid ─────────────────────────────────────────── */
.ftr__main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem);
}

/* Brand column */
.ftr__logo {
  height: 72px;
  width: auto;
  display: block;
  margin-bottom: 1.2rem;
  /* filter: brightness(0) invert(1); */
  opacity: 0.85;
}

.ftr__tagline {
  font-size: 0.88rem;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.5);
  max-width: 325px;
  margin-bottom: 1.6rem;
}

/* Social icons */
.ftr__socials {
  display: flex;
  gap: 0.55rem;
  margin-bottom: 1.8rem;
}

.ftr__social {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition:
    background var(--trans),
    border-color var(--trans),
    color var(--trans);
}

.ftr__social:hover {
  background: var(--ki-accent);
  border-color: var(--ki-accent);
  color: var(--white);
}

/* Newsletter */
.ftr__nl-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.6rem;
}

.ftr__nl-form {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ftr__nl-input {
  flex: 1;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: var(--white);
  min-width: 0;
}

.ftr__nl-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.ftr__nl-btn {
  padding: 10px 14px;
  background: var(--ki-accent);
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 14px;
  flex-shrink: 0;
  transition: background var(--trans);
}

.ftr__nl-btn:hover {
  background: var(--accent-dk);
}

/* ── Column label — NOT a heading tag ─────────────────── */
.ftr__col-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ftr__col-label::before {
  content: "";
  width: 14px;
  height: 2px;
  background: var(--ki-accent);
  border-radius: 2px;
  display: inline-block;
  flex-shrink: 0;
}

/* Link lists */
.ftr__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-left: 0;
}

.ftr__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  transition:
    color var(--trans),
    gap var(--trans);
}

.ftr__links a i {
  font-size: 9px;
  color: var(--ki-accent);
  transition: transform var(--trans);
}

.ftr__links a:hover {
  color: var(--white);
  gap: 0.8rem;
}

.ftr__links a:hover i {
  transform: translateX(2px);
}

/* ── Contact items ─────────────────────────────────────── */
.ftr__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ftr-ci {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.ftr-ci__ico {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--ki-accent);
  flex-shrink: 0;
  margin-top: 1px;
}

.ftr-ci__wrap {
}

.ftr-ci__meta {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 2px;
}

.ftr-ci__val {
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
}

.ftr-ci__val a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  transition: color var(--trans);
}

.ftr-ci__val a:hover {
  color: var(--white);
}

/* ── Certifications ────────────────────────────────────── */
.ftr__certs {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.ftr__cert {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
  padding: 0.32rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 4px;
}

.ftr__cert i {
  color: var(--green);
  font-size: 10px;
}

/* ── Divider + Bottom bar ──────────────────────────────── */
.ftr__rule {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.ftr__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.9rem;
  padding: 1.4rem 0;
}

.ftr__copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.32);
}

.ftr__copy a {
  color: var(--ki-accent);
  text-decoration: none;
}

.ftr__legal {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.ftr__legal a {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color var(--trans);
}

.ftr__legal a:hover {
  color: var(--white);
}

/* ── Footer responsive ────────────────────────────────── */
@media (max-width: 1100px) {
  .ftr__main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .ftr__main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ftr__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ftr__legal {
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════
       WHATSAPP — LEFT BOTTOM
    ══════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  left: 24px;
  bottom: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* Tooltip bubble above the button */
.wa-tooltip {
  background: #fff;
  border-radius: 14px 14px 14px 4px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.14),
    0 1px 4px rgba(0, 0, 0, 0.08);
  padding: 10px 14px;
  margin-bottom: 10px;
  max-width: 210px;
  position: relative;
  transform: translateY(6px) scale(0.94);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: bottom left;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-tip-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: #111;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 3px;
}

.wa-tip-name::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  flex-shrink: 0;
  animation: pulse-dot 1.8s ease infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  50% {
    box-shadow: 0 0 0 5px rgba(37, 211, 102, 0);
  }
}

.wa-tip-msg {
  font-size: 0.68rem;
  color: #555;
  line-height: 1.5;
}

/* Tiny tail on tooltip */
.wa-tooltip::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 18px;
  border: 5px solid transparent;
  border-top-color: #fff;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.06));
}

/* Main WA button */
.wa-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  text-decoration: none;
}

/* Outer animated ring */
.wa-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: wa-spin-ring 6s linear infinite;
  pointer-events: none;
}

.wa-ring::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 6px #25d366;
}

@keyframes wa-spin-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Second pulse ring */
.wa-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  animation: wa-pulse 2.4s ease-out infinite;
  pointer-events: none;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

/* Circle core */
.wa-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 24px rgba(37, 211, 102, 0.5),
    0 2px 8px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s;
  position: relative;
  z-index: 2;
}

.wa-btn:hover .wa-circle {
  transform: scale(1.1) rotate(-8deg);
  box-shadow:
    0 10px 36px rgba(37, 211, 102, 0.65),
    0 4px 12px rgba(0, 0, 0, 0.2);
}

.wa-circle i {
  font-size: 1.55rem;
  color: #fff;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

/* "Chat" label pill that slides out on hover */
.wa-label-pill {
  background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0 0 0 0;
  border-radius: 0 50px 50px 0;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  margin-left: -10px;
  height: 40px;
  display: flex;
  align-items: center;
  transition:
    max-width 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s,
    padding 0.28s,
    margin 0.28s;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}

.wa-btn:hover .wa-label-pill {
  max-width: 130px;
  opacity: 1;
  padding: 0 16px 0 14px;
  margin-left: -8px;
}

/* Notification badge */
.wa-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--crimson);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  z-index: 3;
  animation: badge-bounce 0.6s 0.5s ease both;
}

@keyframes badge-bounce {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.25);
  }
}

/* ══════════════════════════════════════════════
       GO TO TOP — RIGHT BOTTOM
    ══════════════════════════════════════════════ */
.gtt-float {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition:
    opacity 0.35s,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.gtt-float.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Circular progress track */
.gtt-btn {
  position: relative;
  width: 54px;
  height: 54px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SVG progress ring */
.gtt-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.gtt-track {
  fill: none;
  stroke: rgba(22, 39, 64, 0.1);
  stroke-width: 2.5;
}

.gtt-progress {
  fill: none;
  stroke: var(--crimson);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 150.8;
  stroke-dashoffset: 150.8;
  transition: stroke-dashoffset 0.1s linear;
}

/* Inner circle */
.gtt-inner {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.82rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 18px rgba(22, 39, 64, 0.35);
  transition:
    background 0.25s,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.gtt-btn:hover .gtt-inner {
  background: var(--crimson);
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(139, 26, 46, 0.45);
}

.gtt-btn:hover .gtt-inner i {
  animation: arrow-up 0.4s ease both;
}

@keyframes arrow-up {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  45% {
    transform: translateY(-6px);
    opacity: 0;
  }

  46% {
    transform: translateY(6px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Tiny % label below */
.gtt-pct {
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--muted, #6b7a8d);
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1;
}

/* ── Responsive tweak ── */
@media (max-width: 480px) {
  .wa-float {
    left: 16px;
    bottom: 20px;
  }

  .gtt-float {
    right: 16px;
    bottom: 20px;
  }

  .wa-circle {
    width: 52px;
    height: 52px;
  }

  .wa-circle i {
    font-size: 1.35rem;
  }
}


.phero-wrap {
  --phero-blue: #3b82f6;
  --phero-blue-light: rgba(59,130,246,0.18);
  --phero-white: #ffffff;
  --phero-muted: rgba(255,255,255,0.65);
  --phero-sep: rgba(255,255,255,0.4);

  font-family: 'DM Sans', sans-serif;
  position: relative;
  width: 100%;
  min-height: 725px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image */
.phero-bg {
  position: absolute;
  inset: 0; 
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.phero-bg video{
    height:750px;
}

/* Dark + blue overlay */
.phero-overlay {
  position: absolute;
  inset: 0;
  background:linear-gradient(135deg, rgb(18 18 18 / 69%) 0%, rgb(0 0 0 / 45%) 100%);
  z-index: 1;
}

/* Blue accent line at bottom */
.phero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6b00, #ff6b00, #ff6b00);
  z-index: 3;
}

/* Content */
.phero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 52px 24px 48px;
}

.phero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  color: var(--phero-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

/* Breadcrumb nav */
.phero-nav {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 7px 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.phero-item {
  display: flex;
  align-items: center;
  gap: 2px;
}

.phero-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--phero-muted);
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.phero-link:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-home {
  display: flex;
  align-items: center;
  color: var(--phero-muted);
  padding: 3px 8px;
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}
.phero-home:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-sep {
  color: var(--phero-sep);
  font-size: 0.78rem;
  user-select: none;
  padding: 0 1px;
}

.phero-active {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--phero-white);
  background: #ff6b00;
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 15px;
}

.sitemap-title {
    color: #2b2a28;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.sitemap-card {
    background-color: white;
    border: 2px solid var(--orange);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: #2b2a28;
}

.sitemap-card:hover {
    background-color: var(--orange);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(213, 158, 6, 0.3);
    text-decoration: none;
}

.card-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.card-description {
    font-size: 0.9rem;
    opacity: 0.8;
}

.sitemap-card:hover .card-description {
    opacity: 1;
}

.category-section {
    margin-bottom: 40px;
}

.category-header {
    color: var(--orange);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--orange);
}

.main-links {
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .sitemap-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .category-header {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .sitemap-card {
        padding: 15px;
    }
    
    .card-label {
        font-size: 1rem;
    }
    
}

.video-showcase{
    position:relative;
    overflow:hidden;
    min-height:650px;
    display:flex;
    align-items:center;
    font-family:var(--font-body);
}

.video-showcase__bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

.video-showcase__overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(135deg, rgb(17 29 78 / 38%), rgb(26 26 46 / 54%));
    z-index:2;
}

.video-showcase .container{
    position:relative;
    z-index:3;
}

.video-showcase__badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 24px;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);
    color:var(--gold-l);
    backdrop-filter:blur(10px);
    margin-bottom:25px;
    font-weight:600;
}

.video-showcase__badge i{
    color:var(--orange);
}

.video-showcase__title{
    font-family:var(--font-head);
    font-size:clamp(2.5rem,3vw,4.8rem);
    line-height:1.05;
    font-weight:700;
    color:var(--white);
    text-transform:uppercase;
    margin-bottom:25px;
}

.video-showcase__text{
    color:rgba(255,255,255,.85);
    font-size:1.1rem;
    line-height:1.9;
    max-width:750px;
    margin:0 auto 35px;
}

.video-showcase__features{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
    margin-bottom:40px;
}

.video-showcase__feature{
    display:flex;
    align-items:center;
    gap:10px;
    padding:14px 22px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.12);
    border-radius:60px;
    color:var(--white);
    backdrop-filter:blur(10px);
}

.video-showcase__feature i{
    color:var(--orange);
}

.video-showcase__btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:16px 38px;
    background:var(--orange);
    color:var(--white);
    text-decoration:none;
    border-radius:60px;
    font-weight:700;
    transition:var(--transition);
}

.video-showcase__btn:hover{
    background:var(--gold);
    color:var(--white);
    transform:translateY(-3px);
}

@media(max-width:767px){

    .video-showcase{
        min-height:550px;
        padding:80px 0;
    }

    .video-showcase__features{
        flex-direction:column;
        align-items:center;
    }

    .video-showcase__feature{
        width:100%;
        max-width:300px;
        justify-content:center;
    }
}


 a {
      text-decoration: none;
      color: inherit;
    }
     
    p{color:#1e2d3d;}
    strong{color:#fc7a00 !important; font-weight:700 !important;}
    
    
    h1{
        font-size:35px !important;
        font-weight:700; 
    }
    h2, h3, h4, h5, h6 {
        font-size:24px !important;
        font-weight:700;
        margin-top:25px;
    }
    
    img {
      max-width: 100%;
      display: block;
    }

    ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

.abt-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background: #fff;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.abt-section table thead {
    background: #111827;
}

.abt-section table thead th {
    color: #fff;
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: left !important;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.abt-section table thead th:last-child {
    border-right: none;
}

.abt-section table tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.abt-section table tbody tr:last-child {
    border-bottom: none;
}

.abt-section table tbody tr:hover {
    background: #f9fafb;
}

.abt-section table tbody td {
    padding: 16px 20px;
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    vertical-align: top;
}

.abt-section table tbody td strong {
    color: #111827;
}

.abt-section table tbody td a {
    color: #2563eb;
    text-decoration: none;
    transition: 0.3s ease;
}

.abt-section table tbody td a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Zebra Effect */
.abt-section table tbody tr:nth-child(even) {
    background: #ffdede;
}

/* Responsive Table */
@media (max-width: 768px) {

    .abt-section table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .abt-section table thead th,
    .abt-section table tbody td {
        padding: 14px 16px;
        font-size: 14px;
    }
}

/* =========================
   Global UL LI Styling
   Parent: .abt-section
========================= */

/* UL */
.abt-section ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

/* LI */
.abt-section ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 3px;
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}

/* Custom Bullet */
.abt-section ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--crimson);
    font-size: 15px;
}

/* Nested UL */
.abt-section ul ul {
    margin-top: 12px;
    margin-bottom: 0;
    padding-left: 20px;
}

/* Nested LI */
.abt-section ul ul li {
    font-size: 14px;
    color: #555;
}

/* Hover Effect */
.abt-section ul li:hover {
    color: #111;
    transition: 0.3s ease;
}

/* Links Inside LI */
.abt-section ul li a {
    color: var(--crimson);
    text-decoration: none;
}

.abt-section ul li a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {

    .abt-section ul li {
        font-size: 14px;
        line-height: 1.7;
        padding-left: 24px;
    }

    .abt-section ul li::before {
        font-size: 13px;
        top: 3px;
    }
    
    .phero-bg video {
        height: 420px;
    }
    .phero-wrap{
        min-height: 320px;
    }
}


.one-content h2 {
    font-size:0 !important;
}
.one-content h3 {
    font-size:0 !important;
}

.one-content h4 {
    font-size:0 !important;
}

.one-content h5 {
    font-size:0 !important;
}

.one-content ul li {
    font-size:0 !important;
}
.abt-section .one-content ul li::before {
    content: none;
}


.one-content p {
    font-size:0 !important;
}
 
.one-content {
    height:0;
} 

.category-container{
    max-width:900px;
    margin:auto;
    padding: 50px 0;
}

.category-container .abt-float-img .img-frame img{
    height:350px;
}

.category-container h1{
    font-size:25px !important;
    color:#000;
    
}

.category-container p{
    color:#000;
    font-size:15px;
}
 

.category-container .abt-body-text {
    padding: 50px 10px;
}

 
.category-container .abt-float-img{
    background:Transparent;
}

.category-container .abt-float-img::after {
    display: none;
}

.category-container .abt-float-img .img-frame::before{
    display: none;
}

.new-cls p{
    color:#fff;
}

.new-cls ul li{
    color:#fff;
}


/* Additional Features Section */
.cms-features-section {
    padding: 60px 0;
    background-color: var(--off-white);
}

.cms-section-title {
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-style: italic;
    letter-spacing: -0.5px;
}

.owl-carousel {
    padding: 20px 0;
}

.cms-feature-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex !important;
    flex-direction: column;
    height: 100%;
    margin: 0 15px;
}

.cms-feature-card:hover {
    /*transform: translateY(-8px);*/
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.cms-feature-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--bg2) 0%, var(--border) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.cms-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cms-feature-image-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--orange);
}

.cms-feature-label {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cms-feature-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Owl Carousel Controls */
.owl-dots {
    text-align: center;
    margin-top: 30px;
}

.owl-dot {
    background-color: var(--border) !important;
    width: 10px !important;
    height: 10px !important;
    margin: 0 5px !important;
    border-radius: 50% !important;
    transition: all var(--transition);
}

.owl-dot.active {
    background-color: var(--orange) !important;
    transform: scale(1.2);
}

/* Machine Specs Section */
.cms-specs-section {
    padding: 60px 0;
    background-color: white;
}

.cms-model-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 20px;
}

.cms-model-tab {
    padding: 10px 18px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cms-model-tab:hover {
    color: var(--text-dark);
}

.cms-model-tab.active {
    color: var(--orange);
    border-bottom-color: var(--orange);
}

.cms-specs-content {
    display: none;
    animation: fadeIn var(--transition);
}

.cms-specs-content.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 768px) {
    .cms-specs-content.active {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cms-specs-image {
    width: 100%;
    background: linear-gradient(103deg, #fff 0%, #fff 100%);
    border-radius: 8px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.cms-specs-image-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(#fff);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--orange);
}

.cms-specs-list {
    list-style: none;
}

.cms-spec-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    align-items: center;
}

.cms-spec-item:last-child {
    border-bottom: none;
}

.cms-spec-icon {
    color: var(--orange);
    font-size: 1.1rem;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cms-spec-content {
    display: flex;
    flex-direction: column;
}

.cms-spec-label {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    margin-bottom: 3px;
}

.cms-spec-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.cms-cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 32px;
    background-color: var(--orange);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cms-cta-button:hover {
    background-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 0, 0.3);
    color: white;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .cms-section-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }

    .cms-model-tabs {
        gap: 8px;
        padding-bottom: 15px;
    }

    .cms-model-tab {
        padding: 8px 12px;
        font-size: 0.75rem;
    }

    .cms-feature-card {
        margin: 0 10px;
    }
}














/* Specs Table - No Classes, Pure Structural CSS */

.cms-specs-content > div > table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cms-specs-content > div > table tr {
    border-bottom: 1px solid var(--border);
    transition: background-color var(--transition);
}

.cms-specs-content > div > table tr:last-child {
    border-bottom: none;
}

.cms-specs-content > div > table tr:hover {
    background-color: var(--off-white);
}

/* First column - Label */
.cms-specs-content > div > table tr td:first-child {
    padding: 12px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    width: 60%;
    vertical-align: middle;
}

/* Second column - Value */
.cms-specs-content > div > table tr td:last-child {
    padding: 12px 0;
    padding-left: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--orange);
    text-align: right;
    vertical-align: middle;
}

/* Alternating row colors */
.cms-specs-content > div > table tr:nth-child(even) {
    background-color: rgba(255, 107, 0, 0.02);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cms-specs-content > div > table tr {
        display: block;
        border-bottom: 1px solid var(--border);
        padding: 12px 0;
        margin-bottom: 8px;
    }

    .cms-specs-content > div > table tr td {
        display: block;
        padding: 6px 0;
    }

    .cms-specs-content > div > table tr td:first-child {
        width: 100%;
        padding: 6px 0;
        font-size: 0.9rem;
    }

    .cms-specs-content > div > table tr td:last-child {
        width: 100%;
        text-align: left;
        padding: 6px 0;
        padding-left: 0;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cms-specs-content > div > table tr {
        padding: 10px 0;
        margin-bottom: 6px;
    }

    .cms-specs-content > div > table tr td {
        padding: 5px 0;
    }

    .cms-specs-content > div > table tr td:first-child {
        font-size: 0.85rem;
        font-weight: 600;
    }

    .cms-specs-content > div > table tr td:last-child {
        font-size: 0.85rem;
        margin-top: 2px;
    }
}

.phero-wrap {
  width: 100%;
  height: 100vh; /* Full viewport height */
  position: relative;
  overflow: hidden;
}

.phero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.phero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fills entire space, crops if needed */
  display: block;
}

.phero-content {
  position: relative;
  z-index: 10;
  max-width:800px;
  width: 100%;
  height: 100%;
  margin:auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.phero-content p{
    font-size:16px;
    color:#fff;
}

.phero-title {
  font-size: clamp(2rem, 8vw, 4rem);
  color: white;
  text-align: center;
}

.phero-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: white;
  font-size: 0.95rem;
}

/* ===== MINIMAL SCROLL ANIMATIONS CSS ===== */
/* All animations handled by JavaScript directly */

.scroll-animate {
    opacity: 0;
    will-change: opacity, transform;
}

.scroll-animate.fade-in,
.scroll-animate.slide-left,
.scroll-animate.slide-right,
.scroll-animate.slide-up,
.scroll-animate.slide-down {
    /* All styling done by JS - nothing here needed */
}

.abt-section {
    position: relative;
    overflow: hidden;
    z-index: 1;
    /*height:700px;*/
}

.abt-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.abt-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.abt-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* adjust darkness to your palette */
    z-index: -1;
}

.abt-section .abt-eyebrow,
.abt-section .abt-h1,
.abt-section .abt-body-text,
.abt-section .abt-body-text * {
    color: #000; /* text needs to be light now it's over video */
}


@media screen and (max-width: 767px) {
    .visual-frame { 
        top: 125px; 
    }
    .slide-content p{
        display:none;
    }
    .slide-content .slide-actions{
        display:none;
    }
    
    .slide-content {
        padding: 10rem 6vw 4rem;
    }
    .arrow-prev { 
        top: 50%; 
    }
    .arrow-next { 
        top: 50%; 
    }
    .about-section-two__info-block {
        display: block;
    }
}





