/* Project Name: Kiran Industries
    Version: 1.0
    Devloped by:Lead Sure Private Limited (Mohan Chaudhary & Alok Sharma)
    Relase Date: 2026 */

:root {
  --font: "Plus Jakarta Sans", sans-serif;
  --liner: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --pri: #d83135;
  --sec: #8f9193;
  --third: #212529;
  --forth: #fce001;
  --text-color: #16222d;
  --text-light: #8c8c8c;
  --para-color: #555;
  --border-color: #d5dfe4;
  --white: #fff;
  --off-white: #eee;
  --black: #111;
  --handle-width: 4px;
  --handle-size: 44px;
  --label-bg: #fff;
  --label-color: #000;
  --bg: #f5f5f5;
  --glass-bg: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --text: #f0ede8;
  --muted: rgba(240, 237, 232, 0.5);
  --pri-light: rgba(231, 4, 27, 0.07);
  --pri-border: rgba(231, 4, 27, 0.2);
}

/* ── Global @keyframes (defined ONCE each) ─── */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.1);
    opacity: 0;
  }
}

@keyframes jumping {
  0% {
    transform: translateY(10px);
  }

  40% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(10px);
  }
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@keyframes loading-text {
  0% {
    transform: translateY(0%);
    opacity: 1;
  }

  20% {
    transform: translateY(-5%);
    opacity: 1;
  }

  40% {
    transform: translateY(-10%);
    opacity: 0;
  }

  60%,
  80% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes search-pulse {
  0%,
  100% {
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
  }

  50% {
    transform: translateY(-50%) scale(1.2);
    opacity: 0.8;
  }
}

@keyframes pb-slideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

@keyframes cni-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }
}

@keyframes borderGlowLeft {
  0%,
  100% {
    filter: drop-shadow(0 0 0px rgba(216, 49, 53, 0));
  }

  50% {
    filter: drop-shadow(-3px -3px 8px rgba(216, 49, 53, 0.4));
  }
}

@keyframes borderGlowRight {
  0%,
  100% {
    filter: drop-shadow(0 0 0px rgba(216, 49, 53, 0));
  }

  50% {
    filter: drop-shadow(3px 3px 8px rgba(216, 49, 53, 0.4));
  }
}

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

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

@keyframes fadeInScale {
  to {
    opacity: 1;
  }
}

/* ── Base ──────────────────────────────────── */
body {
  background: var(--white);
  font-family: var(--font);
  color: var(--para-color);
  font-size: 15px;
  margin: 0;
  padding: 0;
  font-weight: 400;
  line-height: 1.5;
  min-height: 100vh;
  letter-spacing: 0.5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
}

img {
  max-width: 100%;
  width: auto;
  height: auto;
}

p {
  color: var(--third);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.8;
}

a {
  display: block;
  text-decoration: none;
}

p a {
  display: inline;
}

/* ── Buttons ───────────────────────────────── */
/* Shared base for both buttons */
.main-btn,
.main-btn2 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: none;
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  text-align: center;
  line-height: 1;
  text-transform: capitalize;
  cursor: pointer;
  z-index: 1;
  padding: 12px 8px;
  border-radius: 10px;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.05),
    0 10px 25px rgba(0, 0, 0, 0.08);
  transition:
    color 0.4s ease,
    box-shadow 0.3s ease;
}

.main-btn {
  background-color: var(--black);
  color: var(--white);
  font-size: 14px;
  border: 2px solid var(--pri);
}

.main-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--pri);
  z-index: -1;
  transform: translateX(0);
  transition: transform 0.4s ease-in-out;
}

.main-btn:hover {
  border: 2px solid var(--black);
}

.main-btn:hover::after {
  transform: translateX(100%);
}

.main-btn:active {
  transform: translateY(0);
  border-radius: 0;
}

.main-btn2 {
  background-color: var(--black);
  color: var(--white);
  font-size: 16px;
  border: 2px solid var(--black);
}

.main-btn2::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--white);
  z-index: -1;
  transform: translateX(-101%);
  transition: transform 0.4s ease-in-out;
}

.main-btn2:hover::after {
  transform: translateX(0);
}

.main-btn2:hover {
  color: var(--black);
}

/* ── Social ────────────────────────────────── */
.social {
  display: flex;
  justify-content: end;
  list-style: none;
  gap: 13px;
  margin-bottom: 0;
  padding: 0;
  align-items: center;
}

.social li a {
  color: var(--off-white);
}

.social li a svg {
  width: 15px;
  height: 15px;
}

.social li a:hover {
  color: var(--sec);
}

/* ── Forms ─────────────────────────────────── */
.form-label {
  font-size: 14px;
  color: var(--text-color);
  font-family: var(--font);
  font-weight: 500;
  margin-bottom: 4px;
}

.form-group {
  position: relative;
  margin-bottom: 13px;
}

.form-control,
.form-select,
.SumoSelect > .CaptionCont {
  font-weight: 400;
  border-radius: 7px;
  font-size: 14px;
  padding: 8px 12px;
  color: var(--text-color);
  font-family: var(--font);
  border-color: #e3e3e3;
  height: 40px;
  align-content: center;
}

textarea.form-control {
  min-height: 100px;
  resize: none;
  align-content: start;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--text-light);
  box-shadow: none;
}

/* SumoSelect */
.SumoSelect {
  display: block;
  width: 100%;
}

.SumoSelect > .CaptionCont > span.placeholder {
  background-color: transparent;
  color: var(--text-color);
  opacity: 0.8;
  font-style: normal;
}

.SumoSelect.open .search-txt {
  font-weight: 400;
  border-radius: 4px;
  font-size: 15px;
  padding: 8px 12px;
  color: var(--text-color);
  font-family: var(--font);
  border-color: var(--border-color);
  height: 43px;
}

.SumoSelect.open > .CaptionCont,
.SumoSelect:focus > .CaptionCont,
.SumoSelect:hover > .CaptionCont {
  box-shadow: none;
  border-color: var(--text-light);
}

.SumoSelect.open > .optWrapper {
  top: 43px;
}

/* ── Header ────────────────────────────────── */
header {
  position: relative;
  z-index: 999;
}

header.stricky-fixed,
.menubar.stricky-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  animation: fadeInDown 0.6s both;
}

header.stricky-fixed .top-bar {
  display: none;
}

.menubar.stricky-fixed {
  animation-duration: 1s;
}

/* Top Bar */
.top-bar {
  background: #171717;
  padding: 12px 0;
}

.top-bar p {
  font-size: 13px;
  margin-bottom: 0;
  color: var(--off-white);
}

.top-bar p a {
  color: var(--white);
  font-weight: 600;
}

.top-bar p a:hover {
  color: var(--off-white);
}

.top-bar .social span {
  color: var(--white);
  font-weight: 600;
  font-size: 13px;
}

/* Logo */
.logo img {
  max-width: 140px;
  width: auto;
  max-height: 60px;
  height: auto;
}

/* Search Box (header) */
.search-bx {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  padding: 5px;
}

.search-bx select {
  width: auto;
  max-width: 125px;
  padding-left: 3px;
  outline: none;
  border: none;
  color: var(--para-color);
  font-weight: 400;
  height: 30px;
  font-size: 14px;
}

.search-bx input {
  width: 100%;
  outline: none;
  border: none;
  color: var(--black);
  font-weight: 400;
  height: 20px;
  font-size: 14px;
  border-left: 1px solid var(--off-white);
  margin-left: 10px;
  padding-left: 10px;
}

.search-bx button {
  outline: none;
  border: none;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  color: var(--para-color);
  background: transparent;
}

/* Menubar */
.menubar {
  position: relative;
  background-color: var(--bg);
  border-bottom: 1px solid var(--off-white);
}

.menubar .main-btn {
  font-size: 16px;
  border-radius: 12px;
}

.menubar .main-btn2 {
  font-size: 16px;
  border-radius: 0;
}
/* Menu Icon / Hamburger button */
.menu-btn {
  background: var(--pri);
  border: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    transform 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
}

.menu-btn:hover {
  background: #2d2b28;
  transform: scale(1.04);
}

.menu-btn:active {
  transform: scale(0.97);
}

.menu-icon line {
  stroke: #e8e4dc;
  stroke-width: 2;
  stroke-linecap: round;
}

/* hmab separator */
.hmab {
  position: relative;
  padding-left: 20px;
}

.hmab::after {
  content: "";
  position: absolute;
  background: linear-gradient(to bottom, transparent, #d83135, transparent);
  height: 83.5px;
  width: 1px;
  top: -19.5px;
  left: 0;
}

/* ── Offcanvas ──────────────────────────────── */
.offcanvas {
  width: 360px !important;
  max-width: 92vw;
  background: #1a1916 !important;
  color: #e8e4dc;
  border-left: none !important;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.35);
  height: 100vh;
}

.offcanvas::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #d83135, transparent);
  border-radius: 1px;
  z-index: 1;
}

.offcanvas-header {
  padding: 24px 28px 20px;
  border-bottom: 1px solid rgba(216, 49, 53, 0.15);
}

.offcanvas-header .logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.offcanvas-header .logo img {
  height: 36px;
  width: auto;
}

.logo-wordmark {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  color: #e8e4dc;
  letter-spacing: 0.4px;
}

.offcanvas .btn-close {
  --bs-btn-close-bg: none;
  background-color: rgba(255, 255, 255, 0.06);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e8e4dc'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  border: 1px solid rgba(216, 49, 53, 0.2);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  opacity: 1;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.3s;
  flex-shrink: 0;
}

.offcanvas .btn-close:hover {
  background-color: rgba(216, 49, 53, 0.15);
  border-color: rgba(216, 49, 53, 0.45);
  transform: rotate(90deg);
}

/* Offcanvas Body */
.offcanvas-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(216, 49, 53, 0.3) transparent;
}

.offcanvas-body::-webkit-scrollbar {
  width: 3px;
}

.offcanvas-body::-webkit-scrollbar-thumb {
  background: rgba(216, 49, 53, 0.3);
  border-radius: 2px;
}

.offcanvas-body .section {
  padding: 28px;
  border-bottom: 1px solid rgba(216, 49, 53, 0.08);
}

.offcanvas-body .section:last-child {
  border-bottom: none;
}

.offcanvas-body .tt {
  color: var(--white);
  margin-bottom: 10px;
}

.offcanvas-body .desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--white);
  font-weight: 300;
  margin: 0;
  text-align: left;
}

/* Offcanvas Contact List */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.offcanvas-body .bx {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 12px;
  border-radius: 10px;
  transition:
    background 0.2s,
    transform 0.2s;
}

.offcanvas-body .bx:hover {
  background: rgba(216, 49, 53, 0.08);
  transform: translateX(5px);
}

/* Shared .icon-bx base (offcanvas scope) */
.offcanvas-body .icon-bx {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(216, 49, 53, 0.25);
  background: rgba(216, 49, 53, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #d83135;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.offcanvas-body .bx:hover .icon-bx {
  background: rgba(216, 49, 53, 0.18);
  border-color: rgba(216, 49, 53, 0.45);
}

.offcanvas-body .icon-bx svg {
  width: 30px !important;
  height: 30px !important;
}

.offcanvas-body .icon-bx svg circle[fill="currentColor"],
.offcanvas-body .icon-bx svg rect[fill="currentColor"] {
  display: none;
}

.offcanvas-body .bx .info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.offcanvas-body .bx .info span {
  font-family: "DM Sans", sans-serif;
  font-size: 13.5px;
  color: #e8e4dc;
  line-height: 1.5;
}

/* Nav Social */
.nav-social {
  display: flex;
  gap: 9px;
  list-style: none;
  padding: 20px 41px;
  margin: 0;
  flex-wrap: wrap;
}

.nav-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(216, 49, 53, 0.25);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    transform 0.2s;
}

.nav-social a:hover {
  background: #d83135;
  border-color: #d83135;
  color: #fff;
  transform: translateY(-3px);
}

.nav-social a svg {
  width: 15px;
  height: 15px;
}

/* ── Search box (navbar) ───────────────────── */
.search-box {
  position: relative;
  width: 208px;
  margin-left: 56px;
}

.search-box input {
  width: 100%;
  padding: 10px 40px 10px 15px;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
  outline: none;
  border-radius: 10px;
}

.search-box input:focus {
  background-color: #fff;
  border-color: #d83135;
  box-shadow: 0 0 0 3px rgba(216, 49, 53, 0.1);
}

.search-box input::placeholder {
  color: #999;
  transition: color 0.3s ease;
}

.search-box input:focus::placeholder {
  color: #d83135;
}

.search-icon {
  position: absolute;
  right: 12px;
  top: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background-color: transparent;
}

.search-icon svg {
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #666;
  pointer-events: none;
  transition: all 0.3s ease;
  position: relative;
  top: 8px;
}

.search-box input:focus ~ .search-icon svg {
  color: #d83135;
  transform: translateY(-50%) scale(1.1);
  animation: search-pulse 1.5s ease-in-out infinite;
}

.search-box:hover .search-icon svg {
  color: #d83135;
  transform: translateY(-50%) rotate(15deg);
}

/* ── Navigation ────────────────────────────── */
.navigation .nav-header {
  display: none;
  padding: 12px 20px;
}

.navigation .navbar {
  display: none;
  padding: 8px 0;
  margin: 0;
}

.navigation .navbar button {
  width: 40px;
  height: 40px;
  background: var(--pri);
  border: 0;
  outline: 0;
  color: #fff;
  font-size: 25px;
  border-radius: 0;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  position: relative;
  z-index: 99;
  padding: 5px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.navigation .navbar button span {
  display: block;
  position: absolute;
  height: 3px;
  width: 70%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 15%;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.navigation .navbar button span:nth-child(1) {
  top: 8px;
}

.navigation .navbar button span:nth-child(2),
.navigation .navbar button span:nth-child(3) {
  top: 18px;
}

.navigation .navbar button span:nth-child(4) {
  top: 28px;
}

.navigation .navbar button.open span:nth-child(1),
.navigation .navbar button.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.navigation .navbar button.open span:nth-child(2) {
  transform: rotate(45deg);
}

.navigation .navbar button.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.navigation .menu {
  display: block;
}

.navigation .menu ul {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
  display: block;
}

.navigation .menu ul li {
  display: inline-block;
  position: relative;
}

.navigation .menu ul li a {
  padding: 26px 9px;
  display: block;
  color: var(--third);
  transition: all 0.3s ease;
  font-size: 16px;
  background: transparent;
  font-weight: 600;
}

.navigation .menu ul li:last-child a {
  padding-right: 0;
}

.navigation .menu ul li.active a,
.navigation .menu ul li:hover a {
  color: var(--pri);
  background: transparent;
}

/* Dropdowns */
.navigation .menu ul > li > ul.ls-dropdown {
  top: 100%;
  left: 0;
  text-align: left;
}

.navigation .menu ul > li > ul.ls-dropdown > li > ul.ls-dropdown {
  left: 100%;
  margin-top: -36px;
}

.navigation
  .menu
  ul
  > li
  > ul.ls-dropdown
  > li
  > ul.ls-dropdown
  > li
  > ul.ls-dropdown {
  left: -100%;
  margin-top: -31px;
}

.navigation .menu ul li ul.ls-dropdown {
  position: absolute;
  width: max-content;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
  transition: all 0.3s ease;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.2);
  background: var(--bg);
  margin: 0;
  text-align: left;
}

.navigation .menu ul > li:hover > ul.ls-dropdown {
  visibility: visible;
  opacity: 1;
}

.navigation .menu ul > li > ul.ls-dropdown > li:hover > ul.ls-dropdown {
  visibility: visible;
  opacity: 1;
}

.navigation .menu ul li ul.ls-dropdown li {
  display: block;
  padding: 0;
  width: 100%;
}

.navigation .menu ul li ul.ls-dropdown li a {
  color: #333;
  font-size: 14px;
  display: block;
  font-weight: 500;
  transition: all 0.2s;
  text-transform: capitalize;
  padding: 10px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navigation .menu ul li ul.ls-dropdown li a:hover,
.navigation .menu ul li ul.ls-dropdown li:hover a {
  background-color: var(--pri);
  color: var(--white);
}

.navigation .menu ul li ul.ls-dropdown li:hover ul.ls-dropdown li a {
  background: #fff;
  color: #333;
}

.navigation .menu ul li ul.ls-dropdown li:hover ul.ls-dropdown li a:hover {
  color: #fff;
  background: var(--pri);
}

.navigation ul li.ls-submenu a button {
  border: 0;
  background: transparent;
  outline: 0;
  padding: 0;
  margin: 0 0 0 3px;
  color: var(--text-color);
}

.navigation ul li.ls-submenu a button svg {
  width: 14px;
  height: 14px;
}

.navigation ul li.ls-submenu:hover svg {
  transform: rotateZ(180deg);
  color: var(--pri);
}

.navigation ul li.ls-submenu:hover ul.ls-dropdown li.ls-submenu svg {
  color: #242424;
}

.navigation ul li.ls-submenu ul.ls-dropdown li a button {
  float: right;
  color: #333;
}

.navigation ul li.ls-submenu ul.ls-dropdown li a button svg {
  transform: rotateZ(-90deg);
}

.navigation ul li.ls-submenu ul.ls-dropdown li.ls-submenu:hover svg {
  color: #fff;
}

/* ── Hero/Slider ────────────────────────────── */
main,
main img {
  aspect-ratio: 1920/800;
  overflow: hidden;
  display: block;
  width: 100%;
}

.carousel-control-next,
.carousel-control-prev {
  position: absolute;
  top: 50%;
  display: block;
  width: 38px;
  height: 38px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: #fff;
  border: 0;
  outline: 0;
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2px);
  border-radius: 100%;
  z-index: 9;
  opacity: 1;
  line-height: 0;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  height: 16px;
  width: 16px;
}

.carousel-control-next:hover,
.carousel-control-prev:hover {
  background-color: var(--pri);
  opacity: 1;
}

.carousel-control-prev {
  left: 30px;
}

.carousel-control-next {
  right: 30px;
}

@media (max-width: 980px) {
  .carousel-control-next,
  .carousel-control-prev {
    width: 20px;
    height: 35px;
  }

  .carousel-control-next-icon,
  .carousel-control-prev-icon {
    height: 13px;
    width: 13px;
  }

  .carousel-control-prev {
    left: 0;
    border-radius: 0 3px 3px 0;
  }

  .carousel-control-next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
}

/* ── Swiper Shared ──────────────────────────── */
.swiper-button-next,
.swiper-button-prev,
.swiper-next,
.swiper-prev {
  border: 1px solid #eee;
  background-color: white;
  color: var(--text-light);
  width: 35px;
  height: 35px;
  z-index: 2;
  border-radius: 100%;
  text-align: center;
}

.swiper-next,
.swiper-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.swiper-next svg,
.swiper-prev svg {
  width: 18px;
  height: 18px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover,
.swiper-next:hover,
.swiper-prev:hover {
  color: white;
  background: var(--liner);
  background-color: var(--pri);
  border-color: var(--pri);
}

.swiper-button-next,
.swiper-next {
  right: 25px;
  left: auto;
}

.swiper-button-prev,
.swiper-prev {
  left: 25px;
  right: auto;
}

.swiper-prev {
  left: -22px;
}

.swiper-next {
  right: -22px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 13px;
  font-weight: 600;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  display: none;
}

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

.swiper-slide {
  height: auto;
}

.swiper_wrap {
  width: 100%;
  position: relative;
  display: block;
  text-align: left;
}

/* ── Title Labels ───────────────────────────── */
/* Shared properties for .title and .title2 */
.title,
.title2 {
  color: var(--pri);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-left: 95px;
  position: relative;
  display: inline-block;
}

.title::before,
.title2::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 80px;
  background-color: var(--pri);
  left: -95px;
  top: 50%;
}

/* .title2 extras */
.title2 {
  margin-right: 95px;
}

.title2::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 80px;
  background-color: var(--pri);
  right: -95px;
  top: 50%;
}

/* ── Typography helpers ─────────────────────── */
.tt {
  font-size: 23px;
  color: var(--third);
  font-weight: 700;
  margin-bottom: 10px;
}

.sub-tt {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

/* ── Head Section (single definition) ──────── */
.head-sec {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 30px;
  max-width: 770px;
}

.head-sec p {
  font-size: 16px;
}

/* ── Custom List ─────────────────────────────── */
.custom-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 35px;
}

.custom-list li {
  position: relative;
  padding-left: 42px;
  margin-bottom: 18px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--para-color);
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--pri);
   
  transition: 0.3s ease;
}

.custom-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background-color: var(--sec);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5l10 -10'/%3E%3C/svg%3E")
    no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l5 5l10 -10'/%3E%3C/svg%3E")
    no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: 0.3s ease;
}

.custom-list li:hover::before {
  opacity: 0.18;
  transform: translateY(-50%) scale(1.05);
}

.custom-list li:hover::after {
  transform: translateY(-50%) scale(1.1);
}

/* ── About Section ──────────────────────────── */
.abt-sec .float-bx {
  position: absolute;
  right: 392px;
  bottom: 60px;
  height: 300px;
  width: 300px;
  object-fit: cover;
  aspect-ratio: 1/1;
  border: 5px solid var(--white);
  animation: jumping 6s linear infinite;
  border-radius: 10px;
}

.abt-sec p {
  margin-bottom: 20px;
  text-align: justify;
}

.abt-sec .content-bx {
  margin-right: 130px;
}

.abt-sec .img-bx {
  width: 100%;
  position: relative;
  border-radius: 10px;
}

.abt-sec .img-bx img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* Abt-sec1 image frame */
.abt-sec1 .img-bx {
  max-width: 480px;
  width: 100%;
  aspect-ratio: 1/1;
  background: #fff;
  padding: 20px;
  padding-bottom: 18.5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  float: left;
  margin-right: 50px;
  border-radius: 12px;
}

.abt-sec1 .img-bx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  border-radius: 12px;
}

.abt-sec1 .img-bx:hover {
  padding: 15px;
  padding-bottom: 13.5px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.abt-sec1 .img-bx:hover img {
  transform: scale(1.04) rotate(1deg);
}

.abt-sec1 .img-bx::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 50%;
  border-left: 15px solid var(--pri);
  border-top: 15px solid var(--pri);
  border-bottom: 15px solid var(--pri);
  top: 1px;
  left: 1px;
  z-index: 2;
  transition: all 0.4s ease;
}

.abt-sec1 .img-bx::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 50%;
  border-top: 15px solid var(--white);
  border-right: 15px solid var(--white);
  border-bottom: 15px solid var(--white);
  bottom: -1px;
  right: 0;
  z-index: 2;
  transition: all 0.4s ease;
}

.abt-sec1 .img-bx:hover::before {
  border-color: #d83135;
  animation: borderGlowLeft 1.5s ease-in-out infinite;
}

.abt-sec1 .img-bx:hover::after {
  border-color: var(--white);
  opacity: 1;
  animation: borderGlowRight 1.5s ease-in-out infinite;
}

.abt-sec1 .expend-content-sec {
  max-height: 445px;
  padding-right: 15px;
}

.abt-sec1 .read-more-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 20px;
}

.abt-sec1 .expend-content-sec ul {
  list-style: none;
  padding-left: 0;
}

.abt-sec1 .expend-content-sec ul li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
}

.abt-sec1 .expend-content-sec ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d83135' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 7l5 5l-5 5'/%3E%3Cpath d='M13 7l5 5l-5 5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.abt-sec1 .expend-content-sec ol li {
  position: relative;
  margin-bottom: 15px;
}

/* ── Choose Us ───────────────────────────────── */
.choose-us {
  background: url("../images/chhoseus.webp");
  position: relative;
  z-index: 1;
}

.choose-us::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #00000052;
  z-index: -1;
  top: 0;
  left: 0;
}

.choose-us .tt {
  color: var(--white);
}

.choose-us .bx {
  background: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.choose-us .bx::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(216, 49, 53, 0.03),
    rgba(139, 0, 0, 0.03)
  );
  transition: left 0.5s ease;
}

.choose-us .bx:hover::before {
  left: 0;
}

.choose-us .bx:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(216, 49, 53, 0.15);
}

.choose-us .bx::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #d83135, #8b0000) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.choose-us .bx:hover::after {
  opacity: 1;
}

.choose-us .icon-box {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d83135 0%, #8b0000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: #fff;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(216, 49, 53, 0.3);
}

.choose-us .icon-box::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d83135, #8b0000);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.choose-us .bx:hover .icon-box::before {
  opacity: 1;
  animation: pulse 1.5s infinite;
}

.choose-us .icon-box svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  transition: all 0.5s ease;
}

.choose-us .bx:hover .icon-box {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 12px 30px rgba(216, 49, 53, 0.4);
}

.choose-us .bx:hover .icon-box svg {
  animation: float 2s ease-in-out infinite;
}

.choose-us .containt-sec {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.choose-us .sub-tt {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
  transition: all 0.4s ease;
  position: relative;
}

.choose-us .sub-tt::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #d83135, #8b0000);
  border-radius: 2px;
  transition: transform 0.4s ease;
}

.choose-us .bx:hover .sub-tt {
  color: #d83135;
}

.choose-us .bx:hover .sub-tt::after {
  transform: translateX(-50%) scaleX(1);
}

.choose-us p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  text-align: center;
  transition: color 0.4s ease;
  margin: 0;
}

.choose-us .bx:hover p {
  color: #555;
}

/* ── Products ────────────────────────────────── */
.products .bx {
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
  cursor: pointer;
  border-radius: 10px;
}

.products .bx::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(216, 49, 53, 0.1),
    rgba(139, 0, 0, 0.1)
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.products .bx:hover {
  transform: scale(1.02);
  box-shadow: 0 35px 80px rgba(216, 49, 53, 0.3);
}

.products .bx:hover::before {
  opacity: 1;
}

.products .bx::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 2px solid rgba(216, 49, 53, 0.5);
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.5s ease;
  pointer-events: none;
}

.products .bx:hover::after {
  opacity: 1;
  transform: scale(1.05);
}

.products .img-bx {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.products .img-bx img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 1/1;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.products .bx:hover .img-bx img {
  transform: scale(1.15) rotate(2deg);
}

.products .topOverly {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(193, 131, 132, 0.547),
    rgba(25, 25, 25, 0.92)
  );
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
  color: #fff;
}

.products .bx:hover .topOverly {
  opacity: 1;
}

.products .topOverly .icon {
  position: relative;
}

.products .topOverly svg {
  width: 56px;
  height: 56px;
  padding: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(-50px) rotate(-180deg) scale(0);
  opacity: 0;
}

.products .bx:hover .topOverly svg {
  transform: translateY(0) rotate(0deg) scale(1);
  opacity: 1;
  transition-delay: 0.1s;
}

.products .topOverly svg:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(216, 49, 53, 0.4);
}

.products .bottomOverly {
  position: absolute;
  bottom: -80px;
  left: 0;
  width: 100%;
  padding: 24px 20px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(to top, rgba(216, 49, 53, 0.95), transparent);
  backdrop-filter: blur(8px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 3;
}

.products .bottomOverly span {
  display: inline-block;
  position: relative;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.products .bottomOverly span::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.4s ease;
}

.products .bx:hover .bottomOverly {
  bottom: 0;
}

.products .bx:hover .bottomOverly span::after {
  transform: translateX(-50%) scaleX(1);
  transition-delay: 0.2s;
}

/* ── Industry We Serve ───────────────────────── */
.weServ {
  background: url("../images/Kiran-Backside-Image.webp");
  padding: 50px 0;
  position: relative;
  z-index: 1;
}

.weServ::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #200808e3;
  z-index: -1;
  top: 0;
  backdrop-filter: blur(2px);
}

.weServ .tt {
  color: var(--white);
}

.weServ .head-sec .tt {
  color: var(--white);
}

.weServ .nav-tabs {
  border: 2px solid #2c2c2c9e;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  border-radius: 12px;
}

.weServ .nav-tabs .nav-link {
  border: none;
  border-radius: 12px;
  width: 250px;
  height: 65px;
  background-color: #2c2c2c9e;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.weServ .nav-tabs .nav-link:hover {
  background-color: #3a3a3a;
}

.weServ .nav-tabs .nav-link.active {
  background: url("../images/tabimg.webp") center/cover no-repeat;
  position: relative;
  border: none;
  z-index: 1;
  border-radius: 12px;
}

.weServ .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--pri);
  opacity: 0.7;
  z-index: -1;
  border-radius: 12px;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border: none;
  box-shadow: none;
}

.weServ .img-bx {
  width: 100%;
  border-radius: 12px;
}

.weServ .img-bx img {
  width: 100%;
  border-radius: 12px;
}

.weServ p {
  color: var(--white);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.weServ ul li {
  color: var(--white);
}

.weServ .custom-list li::after {
  background-color: var(--white);
}

/* ── Location ────────────────────────────────── */
.location {
  position: relative;
  overflow: hidden;
}

.location p {
  margin-bottom: 0;
}

.location p a{
  color: var(--third);
}

.location .tt::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--pri) 0%, var(--sec, #8b5cf6) 100%);
  border-radius: 2px;
}

.location .box {
  display: flex;
  gap: 1.5rem;
  background: var(--bg);
  padding: 2rem 1.5rem;
  padding-left: 0;
  padding-top: 0;
  border-right: 2px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.location .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.03),
    transparent
  );
  transition: left 0.6s ease;
}

.location .box:hover::before {
  left: 100%;
}

.location .box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--pri);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.location .box:hover::after {
  width: 4px;
}

.location .box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.location .col:last-child .box {
  border-right: none;
}

.location .icon-bx {
  min-width: 110px;
  width: 110px;
  height: 110px;
  border-right: 2px solid rgba(0, 0, 0, 0.06);
  border-bottom: 2px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.05),
    rgba(139, 92, 246, 0.05)
  );
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.location .icon-bx::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--pri);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.location .box:hover .icon-bx {
  border-color: transparent;
  box-shadow: 0 8px 20px var(--pri);
}

.location .box:hover .icon-bx::before {
  opacity: 1;
}

.location .icon-bx svg {
  width: 48px;
  height: auto;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.location .box:hover .icon-bx svg {
  transform: rotateY(360deg) scale(1.1);
  filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3)) brightness(0)
    invert(1);
}

.location .content-bx {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.location .sub-tt {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1e293b;
  transition: color 0.3s ease;
}

.location .box:hover .sub-tt {
  color: var(--pri);
}

@media (prefers-reduced-motion: no-preference) {
  .location .box {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
  }

  .location .row .col:nth-child(1) .box {
    animation-delay: 0.1s;
  }

  .location .row .col:nth-child(2) .box {
    animation-delay: 0.2s;
  }

  .location .row .col:nth-child(3) .box {
    animation-delay: 0.3s;
  }
}

/* ── Blog Card ───────────────────────────────── */
.blog-card {
  background-color: var(--bg);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.blog-card__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  display: block;
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card__image {
  transform: scale(1.1);
}

.blog-card__content {
  padding: 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
}

.blog-card__date,
.blog-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-weight: 500;
  transition: color 0.2s ease;
}

.blog-card__date:hover,
.blog-card__tag:hover {
  color: var(--pri);
}

.blog-card__date svg,
.blog-card__tag svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--pri);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.blog-card__date:hover svg,
.blog-card__tag:hover svg {
  transform: scale(1.1);
}

.blog-card__title {
  margin: 0;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.4;
  font-weight: 600;
}

.blog-card__title a {
  color: #1e293b;
  text-decoration: none;
  display: inline;
  background-image: linear-gradient(var(--pri), var(--pri));
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition:
    background-size 0.3s ease,
    color 0.2s ease;
}

.blog-card__title a:hover,
.blog-card__title a:focus-visible {
  color: var(--pri);
  background-size: 100% 2px;
}

.blog-card__title a:focus-visible {
  outline: 2px solid var(--pri);
  outline-offset: 4px;
  border-radius: 2px;
}

.blog-card__image[loading="lazy"] {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

/* ── SEO Section ─────────────────────────────── */
.seo {
  background-image: url("../images/bg-2.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.seo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.65));
  z-index: 1;
}

.seo .title {
  color: var(--white);
}

.seo .title::before {
  background-color: var(--white);
}

.seo .content-sec {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.scroll-bx {
  max-height: 420px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s ease;
}

.scroll-bx.expanded {
  max-height: 420px;
  overflow-y: auto;
  padding-right: 10px;
}

.scroll-bx.expanded::after {
  opacity: 0;
}

.scroll-bx.expanded::-webkit-scrollbar {
  width: 6px;
}

.scroll-bx.expanded::-webkit-scrollbar-thumb {
  background: var(--pri);
  border-radius: 20px;
}

.seo h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.seo h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--pri);
}

.seo p,
.seo li {
  color: #f1f1f1;
  line-height: 1.8;
}

.seo .main-btn2 {
  color: var(--black);
}

.seo ul {
  list-style: none;
  padding-left: 0;
}

.seo ul li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.seo ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d83135' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 7l5 5l-5 5'/%3E%3Cpath d='M13 7l5 5l-5 5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Stats Section ───────────────────────────── */
.stats-section {
  position: relative;
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.stat-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59, 130, 246, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.stat-card:hover::before {
  left: 100%;
}

.stat-card:hover {
  transform: translateY(-12px);
}

.stat-card__number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.stat-card__number .odometer {
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--third);
  letter-spacing: -0.02em;
}

.stat-card__suffix {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--pri);
}

.stat-card__label {
  font-size: clamp(0.875rem, 1.2vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin: 0;
  transition: color 0.3s ease;
}

.stat-card:hover .stat-card__label {
  color: var(--pri);
}

@media (prefers-reduced-motion: no-preference) {
  .stat-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
  }

  .stat-card:nth-child(1) {
    animation-delay: 0.1s;
  }

  .stat-card:nth-child(2) {
    animation-delay: 0.2s;
  }

  .stat-card:nth-child(3) {
    animation-delay: 0.3s;
  }

  .stat-card:nth-child(4) {
    animation-delay: 0.4s;
  }
}

/* ── Testimonials / 2nd Swiper ─────────────── */
.testi-sec {
  background-color: var(--bg);
}

.testimonial-swiper {
  position: relative;
  width: 100%;
}

.swiper-second-next,
.swiper-second-prev {
  color: #000;
}

.swiper-second .bx {
  text-align: center;
}

.swiper-second .img-bx {
  position: relative;
  aspect-ratio: 1/1;
}

.swiper-second .img-bx img {
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.swiper-second .cont-bx {
  padding: 20px 22px;
}

/* ── Certification ───────────────────────────── */
.certification-section .certSwiper {
  width: 100%;
}

.certification-section .swiper-slide {
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.certification-section .img-box {
  width: 80%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: auto;
}

.certification-section .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.3s ease;
}

.certification-section .swiper-slide:hover img {
  transform: scale(1.05);
}

/* ── Enquiry Form ────────────────────────────── */
.enq-form {
  background-color: var(--bg);
}

.enq-form .profile-bx {
  display: flex;
  align-items: center;
  gap: 30px;
}

.enq-form .profile-bx img {
  height: 75px;
  width: 75px;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.enq-form .profile-bx .contbx {
  display: flex;
  flex-direction: column;
}

.enq-form .profile-bx .contbx span:first-child {
  font-size: 20px;
  color: var(--third);
  font-weight: 700;
}

.enq-form .profile-bx .contbx span:last-child {
  font-size: 12px;
  color: var(--pri);
  font-weight: 700;
}

.form {
  background: #fff;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  position: relative;
  border-radius: 10px;
}

.form .iti__selected-flag {
  margin-top: 6px;
}

.form .form-control {
  height: 52px;
  border-radius: 8px;
  border: 1px solid #e4e4e4;
  padding: 12px 15px;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: none;
}

.form textarea.form-control {
  height: 120px;
  resize: none;
  padding-top: 15px;
}

.form .form-control:focus {
  border-color: #df5f41;
  box-shadow: 0 0 0 4px rgba(223, 95, 65, 0.1);
}

.form .form-control::placeholder {
  color: #aaa;
  font-size: 13px;
}

/* ── Acuda Stroke Title ───────────────────────── */
.acuda-stroke-title-two {
  line-height: normal;
  left: 15px;
  margin: 0;
}

.acuda-stroke-title-two span {
  font-size: 100px;
  font-weight: 700;
  color: #fff;
  text-shadow:
    0 2px 5px rgba(0, 0, 0, 0.25),
    0 5px 12px rgba(0, 0, 0, 0.15);
  animation: loading-text 2s infinite ease-in-out;
  display: inline-block;
}

.acuda-stroke-title-two span:nth-child(1) {
  animation-delay: 0.9s;
}

.acuda-stroke-title-two span:nth-child(2) {
  animation-delay: 1s;
}

.acuda-stroke-title-two span:nth-child(3) {
  animation-delay: 1.1s;
}

.acuda-stroke-title-two span:nth-child(4) {
  animation-delay: 1.2s;
}

.acuda-stroke-title-two span:nth-child(5) {
  animation-delay: 1.3s;
}

.acuda-stroke-title-two span:nth-child(6) {
  animation-delay: 1.4s;
}

.acuda-stroke-title-two span:nth-child(7) {
  animation-delay: 1.5s;
}

.acuda-stroke-title-two span:nth-child(8) {
  animation-delay: 1.5s;
}

.acuda-stroke-title-two span:nth-child(9) {
  animation-delay: 1.6s;
}

/* ── Expand / Read More ──────────────────────── */
.expend-content-sec {
  max-height: 450px;
  overflow: hidden;
}

.expend-content-sec.expanded {
  overflow: unset;
  max-height: 10000px !important;
}

.read-toggle {
  display: inline-block;
  color: #000;
  cursor: pointer;
  font-weight: 600;
  margin-top: 10px;
  user-select: none;
  font-size: 0.9em;
  transition: all 0.4s ease-in-out;
}

.read-toggle:hover {
  color: var(--sec);
}

/* Form-sec scoped overrides */
.form-sec .expend-content-sec p,
.form-sec .content-sec ul li,
.form-sec .content-sec ol li {
  color: #000;
  font-family: var(--font);
  font-size: 16px;
}

/* ── Vision Section ──────────────────────────── */
.vision-section {
  background-color: var(--bg);
}

.vision-box {
  background: white;
  padding: 40px 30px 0;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  overflow: hidden;
}

.vision-box:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(227, 30, 36, 0.3);
}

.vision-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, #e31e24, #b71820);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.vision-box:hover::before {
  opacity: 1;
}

.vision-box:focus-within {
  outline: 3px solid #e31e24;
  outline-offset: 4px;
}

.card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    rgba(227, 30, 36, 0.1),
    rgba(227, 30, 36, 0.05)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #e31e24;
  transition: all 0.3s ease;
  z-index: 2;
}

.vision-box:hover .card-number {
  transform: scale(1.1);
  background: linear-gradient(135deg, #e31e24, #b71820);
  color: white;
}

.vision-icon-wrapper {
  position: relative;
  width: 75px;
  height: 75px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(227, 30, 36, 0.1),
    rgba(227, 30, 36, 0.05)
  );
  border-radius: 50%;
  transition: all 0.4s ease;
}

.vision-box:hover .icon-background {
  transform: scale(1.2);
  background: linear-gradient(
    135deg,
    rgba(227, 30, 36, 0.2),
    rgba(227, 30, 36, 0.1)
  );
}

.vision-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #e31e24, #b71820);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.vision-icon svg {
  color: white;
  transition: all 0.3s ease;
  position: relative;
  top: 14px;
  left: 2px;
}

.vision-box:hover .vision-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
}

.vision-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  text-align: center;
  transition: color 0.3s ease;
}

.vision-text {
  font-size: 15px;
  line-height: 1.7;
  color: #6c757d;
  text-align: center;
  flex-grow: 1;
}

.vision-box:hover .vision-title {
  color: #e31e24;
}

/* ── Quality ─────────────────────────────────── */
.quality {
  background-color: var(--bg);
  position: relative;
  overflow: hidden;
}

.quality .img-bx {
  aspect-ratio: 9/16;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
}

.quality .img-bx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.quality .img-bx:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.quality .img-bx:hover img {
  transform: scale(1.08);
}

.quality .inner-bx {
  background-color: var(--white);
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.quality .inner-bx::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--pri);
  transition: height 0.4s ease;
}

.quality .inner-bx:hover::before {
  height: 100%;
}

.quality .inner-bx:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(216, 49, 53, 0.15);
  border-color: var(--pri);
}

.quality .icon-wrapper {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d83135 0%, #c02a2e 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.quality .inner-bx:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(216, 49, 53, 0.3);
}

.quality .certification-note {
  background: linear-gradient(135deg, #fff, #f8f9fa);
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid var(--pri);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
}

.quality .quote-icon {
  position: absolute;
  top: 8px;
  right: 13px;
  width: 40px;
  height: 40px;
  color: var(--pri);
}

.quality .certification-note span {
  color: #555;
  line-height: 1.8;
  font-size: 15px;
  display: block;
}

.quality .certification-note strong {
  color: var(--pri);
  font-weight: 600;
  position: relative;
}

/* ── Infrastructure / Infrastes ─────────────── */
.infrastes .bx {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 20px;
  background: var(--bg);
  border-radius: 12px;
  margin-bottom: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.infrastes .bx:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.infrastes .icon-bx {
  min-width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f1f1;
  border-radius: 12px;
  color: #d83135;
  transition: 0.3s ease;
}

.infrastes .bx:hover .icon-bx {
  background: #d83135;
  color: #fff;
}

.infrastes .icon-bx svg {
  width: 30px;
  height: 30px;
}

.infrastes .bx span {
  font-size: 15px;
  font-weight: 500;
  color: #444;
  line-height: 1.6;
}

.infrastes .img-bx {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.infrastes .img-bx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: 0.4s ease;
}

.infrastes .img-bx:hover img {
  transform: scale(1.05);
}

/* ── Infras (Gallery) ────────────────────────── */
.infras {
  position: relative;
  overflow: hidden;
}

.infras::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.infras::after {
  content: "FACILITIES";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(80px, 14vw, 147px);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--pri);
  opacity: 0.1;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.tab-radio {
  display: none;
}

.tab-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
  border: 1px solid var(--pri);
  overflow: hidden;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
}

.tab-label {
  display: block;
  padding: 12px 36px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pri);
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  user-select: none;
}

.tab-label:not(:last-child) {
  border-right: 1px solid var(--border-color);
}

.tab-label::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--pri);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: -1;
}

#tab-factory-radio:checked ~ .tab-bar label[for="tab-factory-radio"],
#tab-office-radio:checked ~ .tab-bar label[for="tab-office-radio"] {
  color: var(--white);
}

#tab-factory-radio:checked ~ .tab-bar label[for="tab-factory-radio"]::after,
#tab-office-radio:checked ~ .tab-bar label[for="tab-office-radio"]::after {
  transform: scaleY(1);
}

.tab-pane {
  display: none;
}

#tab-factory-radio:checked ~ .tab-content #pane-factory,
#tab-office-radio:checked ~ .tab-content #pane-office {
  display: block;
  animation: fadeUp 0.45s ease forwards;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-bottom: 70px;
}

.gallery-grid .gallery-bx:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid .gallery-bx:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid .gallery-bx:first-child {
    grid-column: span 1;
  }
}

.gallery-bx {
  position: relative;
  overflow: hidden;
  background: #e8e0e0;
  border-radius: 12px;
}

.gallery-bx::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  z-index: 2;
  pointer-events: none;
  transition: border-color 0.3s ease;
}

.gallery-bx:hover::before {
  border-color: var(--red);
}

.gallery-img-bx {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.gallery-grid .gallery-bx:first-child .gallery-img-bx {
  min-height: 460px;
}

.gallery-img-bx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-bx:hover .gallery-img-bx img {
  transform: scale(1.06);
}

.gallery-img-bx .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 15, 15, 0.75),
    rgba(216, 49, 53, 0.5)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.gallery-bx:hover .overlay {
  opacity: 1;
}

.view-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transform: scale(0.7) rotate(-15deg);
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.3s ease;
  opacity: 0;
}

.gallery-bx:hover .view-icon {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}

.gallery-img-bx .img-num {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.5);
  z-index: 2;
  transform: translateY(6px);
  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.gallery-bx:hover .img-num {
  transform: translateY(0);
  color: var(--red-light);
}

/* ── Abt Video ────────────────────────────────── */
.abt-vid-bx {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.05) 0 1px 2px 0;
  margin-right: 12px;
}

.abt-sec iframe {
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
  width: 100%;
  display: block;
  overflow: hidden;
  pointer-events: none;
  transform: scale(1.02);
  transform-origin: 50% 50%;
  border-radius: 12px;
}

/* ── FAQ ─────────────────────────────────────── */
.faq-page {
  background: var(--bg);
}

.faq-page .tab-content,
.faq-container {
  width: 100%;
}

#v-pills-tab .nav-link {
  background-color: #fff5f59e;
  color: #d83135;
  border: 1.5px solid #f5c0c1;
  padding: 8px 15px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
  border-radius: 10px;
}

#v-pills-tab .nav-link:hover {
  background-color: #fde8e8;
  border-color: #d83135;
  color: #b02528;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(216, 49, 53, 0.2);
}

#v-pills-tab .nav-link.active {
  background: #d83135;
  color: #fff;
  border-color: #d83135;
}

/* ── Misc helpers ─────────────────────────────── */
.bg-sec {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.95)
  ) !important;
  background-color: var(--pri) !important;
}

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

.bg-light {
  background-color: #f8f8f8 !important;
}

.abt-content {
  padding: 30px 40px;
  background-color: #f8f8f8;
  height: 100%;
  align-content: center;
}

/* ── Product Box ─────────────────────────────── */
.pro-bx {
  border: 1px solid var(--off-white);
  border-radius: 4px;
  overflow: hidden;
  background-color: #fff;
  height: 100%;
}

.pro-bx:hover {
  border: 1px solid var(--border-color);
}

.pro-bx .img {
  overflow: hidden;
}

.pro-bx img {
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.pro-bx:hover img {
  transform: scale(1.05);
}

.pro-bx .tx-bx {
  padding: 13px;
}

.pro-bx .tx-bx .tt {
  margin-bottom: 4px;
}

.pro-bx .tx-bx .tt a,
.pro-bx .tx-bx .tt {
  color: var(--text-color);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-transform: capitalize;
}

.pro-bx:hover .tx-bx .tt a {
  color: var(--pri);
}

.pro-bx .tx-bx p {
  font-size: 13px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 5px;
}

.pro-bx .btn-bx {
  margin-top: 7px;
  display: flex;
  gap: 5px;
  align-items: center;
  flex-wrap: wrap;
}

.pro-bx .tx-bx .main-btn,
.pro-bx .tx-bx .w-btn {
  font-size: 13px;
  padding: 8px 12px;
}

/* ── Rating Card ─────────────────────────────── */
.rating-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: 4px;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  width: fit-content;
}

.rating-card img {
  width: 60px;
  height: 60px;
}

.rating-info {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.rating-info .label {
  font-size: 14px;
  font-weight: bold;
  color: var(--para-color);
}

.rating-info .rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  font-weight: bold;
  color: var(--black);
}

.stars {
  display: flex;
  gap: 2px;
  color: #fbbc04;
  font-size: 18px;
}

/* ── Review Item ─────────────────────────────── */
.review_item {
  padding: 25px;
  border-radius: 20px;
  background: #fff;
  direction: ltr;
  position: relative;
  z-index: 1;
  min-height: 230px;
  border: 1px solid var(--off-white);
}

.review_item .clint-info-wrapper {
  display: flex;
  align-items: center;
}

.review_item .clint-info-wrapper .thumb {
  position: relative;
  z-index: 1;
  display: inline-block;
  height: 50px;
  width: 50px;
  background: #fff;
  border-radius: 100%;
  overflow: hidden;
  min-width: 50px;
}

.review_item .clint-info-wrapper .client-info {
  padding-left: 12px;
}

.review_item .clint-info-wrapper .client-info .title {
  color: var(--text-color);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.4;
  margin-top: 3px;
}

.review_item .clint-info-wrapper .client-info span {
  color: #6b7385;
  font-weight: 500;
  font-size: 15px;
}

.review_item::before {
  position: absolute;
  content: "";
  right: 35px;
  top: 28px;
  z-index: -1;
  background-repeat: no-repeat;
  width: 52px;
  height: 44px;
}

.review_item .description {
  margin-top: 15px;
}

.review_item .description p {
  margin-bottom: 0;
  color: var(--para-color);
  font-size: 14px;
  line-height: 1.5;
}

.morecontent span {
  display: none;
}

.morelink {
  display: block;
  font-size: 14px;
  color: #0a58ca;
  margin-top: 5px;
}

/* ── Counter ─────────────────────────────────── */

/* ── Blog Box ─────────────────────────────────── */
.blog-bx {
  overflow: hidden;
  position: relative;
  height: 100%;
  background: #fff;
  border-radius: 4px;
  border: 1px solid var(--off-white);
  padding: 15px;
}

.blog-bx .img-bx {
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--off-white);
}

.blog-bx:hover,
.blog-bx:hover .img-bx {
  border: 1px solid var(--border-color);
}

.blog-bx .img-bx img {
  aspect-ratio: 3/2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-bx:hover .img-bx img {
  transform: scale(1.05);
}

.blog-bx .tx-bx {
  padding: 8px 5px 0;
}

.blog-bx .tx-bx .tt a {
  font-size: 16px;
  color: var(--text-color);
  font-weight: 500;
  margin-top: 8px;
  margin-bottom: 0;
  text-transform: capitalize;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.blog-bx .tx-bx .tt:hover a {
  color: var(--pri);
}

.blog-bx .tx-bx p {
  margin-bottom: 8px;
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.blog-sec .main-tt {
  padding-left: 13px;
  padding-block: 3px;
  font-weight: 600;
  border-left: 5px solid var(--pri);
  font-size: 24px;
  color: var(--text-color);
  margin-bottom: 25px;
}

.blog-sec .img-bx {
  margin-bottom: 20px;
}

.blog-sec .img-bx img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  object-position: center;
  border-radius: 4px;
  border: 1px solid var(--off-white);
}

.mini-blogs,
.qut-bx {
  background-color: #f8f8f8;
  padding: 18px;
  border: 1px solid var(--off-white);
  border-radius: 12px;
}

.qut-bx {
  text-align: center;
}

.qut-bx .tt {
  font-size: 22px;
  color: var(--text-color);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 5px;
}

.mini-blogs .blog-bx.blog-card {
  display: flex;
  height: auto;
  box-shadow: none;
  border-radius: 0;
  background-color: transparent;
  align-items: start;
  gap: 10px;
  margin-bottom: 18px;
  border: 0;
  padding: 0;
  flex-direction: row;
  justify-content: center;
}

.mini-blogs .tt {
  margin-bottom: 0;
}

.blog-bx.blog-card .img-bx {
  border-radius: 4px;
  min-width: 95px;
  width: 95px;
}

.mini-blogs .blog-bx.blog-card:last-child {
  margin-bottom: 0;
}

.blog-bx.blog-card .tx-bx {
  padding: 0;
}

.blog-bx.blog-card .tx-bx .tt a {
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 3px;
  -webkit-line-clamp: 1;
}

.blog-bx.blog-card .tx-bx p {
  line-height: 1.4;
  font-size: 13px;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 2;
}

.blog-bx.blog-card .img-bx img {
  border-radius: 4px;
}

.blog-bx.emp-bx {
  padding: 10px;
  height: 100%;
}

.blog-bx.emp-bx .img-bx,
.blog-bx.emp-bx .img-bx img {
  aspect-ratio: 257/310;
}

.blog-bx.emp-bx:hover .img-bx img {
  transform: none;
}

.blog-bx.emp-bx .tx-bx .tt {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 2px;
}

.blog-bx.emp-bx .tx-bx p {
  margin-bottom: 0;
  line-height: 1.3;
  font-size: 13px;
}

/* ── Contact ─────────────────────────────────── */

.contact-page {
  background-color: var(--bg);
}

.contact-container {
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
  border-radius: 3px;
  overflow: hidden;
  padding: 30px 25px;
}

.contact-bx .head-sec {
  margin-bottom: 30px;
}

.contact-bx .head-sec .tt {
  font-size: 20px;
  line-height: 28px;
}

.contact-bx .con-bx {
  display: flex;
  margin-bottom: 10px;
  gap: 10px;
}

.contact-bx .con-bx .ic-bx {
  min-width: 35px;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.05);
}

.contact-bx .con-bx .ic-bx svg {
  min-width: 15px;
  width: 15px;
  height: 15px;
  color: var(--pri);
}

.contact-bx .con-bx a,
.contact-bx .con-bx p {
  font-family: var(--font);
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--black);
  margin-bottom: 0;
}

.contact-bx .con-bx a {
  font-weight: 600;
}

.contact-bx .con-bx a:hover {
  color: var(--pri);
}

.map-bx {
  width: 100%;
  display: block;
}

/* Contact Bx Container (glassmorphism) */
.contactBx-container {
  position: relative;
  z-index: 2;
  padding: 32px 28px;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.07),
    0 2px 8px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}

.contactBx-container .head-sec .tt span {
  color: var(--pri);
}

.contactBx-container .head-sec p {
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
}

.contactBx-container .form-control {
  background: rgba(0, 0, 0, 0.025) !important;
  border: 1.5px solid rgba(0, 0, 0, 0.09) !important;
  border-radius: 11px !important;
  color: var(--third) !important;
  font-size: 13.5px;
  padding: 11px 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 1px 4px rgba(0, 0, 0, 0.04);
}

.contactBx-container .form-control::placeholder {
  color: var(--third) !important;
  opacity: 1;
}

/* Standalone .con-bx (contactBx-container) */
.con-bx {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 13px;
  border-radius: 12px;
  margin-bottom: 8px;
  background: rgba(0, 0, 0, 0.025);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.con-bx:last-of-type {
  margin-bottom: 0;
}

.ic-bx {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(228, 93, 58, 0.1);
  border: 1px solid rgba(228, 93, 58, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pri);
  transition: background 0.2s;
}

.con-bx:hover .ic-bx {
  background: rgba(228, 93, 58, 0.18);
}

.con-bx a {
  font-size: 13.5px;
  color: var(--text);
  text-decoration: none;
  line-height: 1.5;
  padding-top: 7px;
  transition: color 0.2s;
}

.con-bx a:hover {
  color: var(--pri);
}

.con-bx p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  padding-top: 7px;
}

.con-bx p strong {
  color: var(--black);
  font-weight: 600;
}

/* Contact social */
.contact-bx .social {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: start;
}

.contact-bx .social li a {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    filter 0.2s;
}

.contact-bx .social li a:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-bx .social .facebook a {
  background: #3c5b9b;
  color: #fff;
}

.contact-bx .social .twitter a {
  background: #000;
  color: #fff;
}

.contact-bx .social .instagram a {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  color: #fff;
}

.contact-bx .social .youtube a {
  background: #f70000;
  color: #fff;
}

.contact-bx .social .linkedin a {
  background: #027ba5;
  color: #fff;
}

/* ── Leaders ─────────────────────────────────── */
.leaders {
  position: relative;
  overflow: hidden;
  p {
    text-align: justify;
  }
}

.leaders::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(216, 49, 53, 0.05),
      transparent 50%
    ),
    radial-gradient(circle at 90% 80%, rgba(216, 49, 53, 0.03), transparent 50%);
  pointer-events: none;
}

.leaders .img-bx {
  width: 100%;
  position: relative;
  transition: transform 0.4s ease;
}

.leaders .img-bx:hover {
  transform: translateY(-10px);
}

.leaders .image-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.leaders .image-wrapper img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.leaders .img-bx:hover .image-wrapper img {
  transform: scale(1.1);
}

.leaders .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.leaders .img-bx:hover .overlay {
  opacity: 1;
}

.leaders .content {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 25px 25px;
  width: 85%;
  margin: -60px auto 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
  border-top: 4px solid var(--pri);
  border-radius: 12px;
}

.leaders .img-bx:hover .content {
  box-shadow: 0 20px 50px rgba(216, 49, 53, 0.25);
  transform: translateY(-5px);
}

.leaders .content .designation {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #d83135, #c02a2e);
  padding: 6px 20px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5 px;
  margin-top: 5 px;
  box-shadow: 0 5px 15px rgba(216, 49, 53, 0.3);
  transition: all 0.3s ease;
}

.leaders .img-bx:hover .content .designation {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(216, 49, 53, 0.4);
}

.leaders .content .sub-tt {
  font-size: 22px;
  font-weight: 700;
  color: var(--third);
  margin-bottom: 12px;
  text-align: center;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.leaders .img-bx:hover .content .sub-tt {
  color: var(--pri);
}

.leaders .content .leader-desc {
  text-align: center;
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  max-height: 25px;
  transition: all 0.4s ease;
}

.leaders .content .leader-desc.expanded {
  -webkit-line-clamp: unset;
  max-height: 500px;
  margin-bottom: 20px;
}

.leaders .read-more-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.leaders .read-more-btn:hover {
  background: var(--pri);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(216, 49, 53, 0.3);
}

.leaders .read-more-btn.active {
  background: var(--pri);
  color: white;
}

.leaders .content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: var(--pri);
  transition: width 0.4s ease;
}

.leaders .img-bx:hover .content::before {
  width: 80%;
}

/* ── PB Box (Product Brief) ──────────────────── */
.pb-box {
  display: flex;
  align-items: center;
  background: #fff;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  position: relative;
  text-decoration: none;
  border-radius: 10px;
  animation: pb-slideUp 0.5s ease both;
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.pb-box:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 30px rgba(228, 93, 58, 0.14),
    0 4px 10px rgba(0, 0, 0, 0.07);
  border-color: rgba(228, 93, 58, 0.28);
}

.pb-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--pri);
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.3s ease;
  border-radius: 0 2px 2px 0;
  z-index: 1;
}

.pb-box:hover::before {
  transform: scaleY(1);
}

.pb-img {
  height: 70px;
  width: 70px;
  min-width: 80px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.pb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.42s ease;
}

.pb-box:hover .pb-img img {
  transform: scale(1.09);
}

.pb-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(228, 93, 58, 0);
  transition: background 0.32s ease;
}

.pb-box:hover .pb-img::after {
  background: rgba(228, 93, 58, 0.07);
}

.pb-cont {
  flex: 1;
  padding: 12px 14px;
  background: var(--bg);
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: background 0.25s;
  height: 70px;
  justify-content: space-between;
}

.pb-box:hover .pb-cont {
  background: #fdf9f7;
}

.pb-cont p {
  margin: 0;
  font-size: 13.5px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.35;
  transition: color 0.22s;
}

.pb-box:hover .pb-cont p {
  color: var(--pri);
}

.pb-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  color: #9ca3af;
  text-decoration: none;
  transition:
    color 0.22s,
    gap 0.22s;
}

.pb-box:hover .pb-link {
  color: var(--pri);
  gap: 8px;
}

.pb-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}

.pb-box:hover .pb-link svg {
  transform: translateX(3px);
}

/* ── Cat Nav Image ───────────────────────────── */
.cat-nav-img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 32px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  background-image: url("https://tfhtml.themepul.com/vektor/demo/assets/img/home-one/service-tab-img-four.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  border-radius: 12px;
}

.cat-nav-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 14, 13, 0.55),
    rgba(15, 14, 13, 0.82) 60%,
    rgba(15, 14, 13, 0.95)
  );
  z-index: -1;
  transition: opacity 0.35s ease;
}

.cat-nav-img .cni-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(228, 93, 58, 0.18);
  border: 1px solid rgba(228, 93, 58, 0.4);
  border-radius: 20px;
  padding: 4px 12px;
  width: fit-content;
  margin-bottom: 4px;
}

.cat-nav-img .cni-tag span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f4a07a;
}

.cat-nav-img .cni-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pri);
  animation: cni-pulse 1.8s ease infinite;
  flex-shrink: 0;
}

.cat-nav-img .cni-phone {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cat-nav-img .cni-phone svg {
  color: var(--pri);
  flex-shrink: 0;
}

.cat-nav-img .cni-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--white);
  margin: 0;
  text-align: center;
}

.cni-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 4px 0;
}

.cat-nav-img .cni-btns {
  display: flex;
  gap: 9px;
  margin-top: 4px;
}

.cat-nav-img .main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 9px;
  border-radius: 10px;
  background: var(--pri);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  border: none;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 18px rgba(228, 93, 58, 0.4);
  transition:
    background 0.22s,
    transform 0.18s,
    box-shadow 0.22s;
}

.cat-nav-img .main-btn:hover {
  background: #cf4d2a;
  box-shadow: 0 10px 24px rgba(228, 93, 58, 0.5);
}

.cat-nav-img .main-btn2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 7px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.3px;
  backdrop-filter: blur(6px);
  transition:
    background 0.22s,
    border-color 0.22s,
    transform 0.18s;
}

.cat-nav-img .main-btn2:hover {
  background: rgba(37, 211, 102, 0.18);
  border-color: rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
  color: var(--black);
}

.cat-nav-img .main-btn2 svg {
  color: #25d366;
}

/* ── Cate Sec ─────────────────────────────────── */
.cate-sec .bx {
  float: left;
  max-width: 400px;
  width: 100%;
  margin-right: 30px;
  margin-bottom: 20px;
}

.cate-sec span {
  color: var(--pri);
}

.cate-sec .bx .img-bx img {
  width: 100%;
  border: 2px solid var(--border-color);
  border-radius: 12px;
}

.cat-btn {
  display: inline-block;
  vertical-align: middle;
  border: 2px solid var(--sec);
  outline: none !important;
  background-color: var(--sec);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 8px 7px;
  transition: all 0.4s ease-in-out;
  letter-spacing: 0;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  text-align: center;
  line-height: 1;
  z-index: 9;
  text-transform: capitalize;
}

.cat-btn:hover {
  border-color: var(--pri);
  background-color: var(--pri);
}

.cate-sec .bx .btn-bx {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.cate-sec .bx .btn-bx .main-btn,
.cate-sec .bx .btn-bx .main-btn2 {
  font-size: 12px;
  font-weight: 700;
  padding: 6px;
}

.cate-sec .bx .btn-bx .catelog-btn {
  display: inline-block;
  border: 2px dashed #cdcdcd;
  border-radius: 10px;
  background-color: var(--white);
  color: var(--black);
  font-size: 12px;
  padding: 6px 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  text-align: center;
  line-height: 1;
  text-transform: capitalize;
  cursor: pointer;
  z-index: 1;
  transition:
    color 0.4s ease,
    box-shadow 0.3s ease;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.05),
    0 10px 25px rgba(0, 0, 0, 0.08);
}

.cate-sec .expend-content-sec {
  max-height: 448px;
}

.cate-sec2 {
  background-color: var(--bg);
}

.cate-sec2 p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 15px;
}

.cate-sec2 .bx {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.cate-sec2 .img-bx {
  width: 100%;
}

.cate-sec2 .img-bx img {
  aspect-ratio: 1/1;
}

.cate-sec2 .cont-bx {
  padding: 10px 15px 20px;
  background-color: var(--white);
}

.cate-sec2 .cont-bx .btn-bx {
  display: flex;
  gap: 6px;
  justify-content: space-between;
}

.cate-sec2 .cont-bx .btn-bx .cat-btn,
.cate-sec2 .cont-bx .btn-bx .rd-mr {
  width: 50%;
}

/* Cate Form */
.cate-form {
  background-color: #f4f3f3;
  padding: 20px 18px;
  border-radius: 12px;
}

.cate-form .sub-tt {
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--black);
}

.cate-form .iti__selected-flag {
  margin-top: 3px;
}

.cate-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cate-form input,
.cate-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  background: #fff;
  color: var(--black);
  transition: all 0.3s ease;
  height: 45px;
}

.cate-form textarea {
  min-height: 120px;
  resize: none;
  height: auto;
}

.cate-form input::placeholder,
.cate-form textarea::placeholder {
  color: #888;
  font-size: 14px;
}

.cate-form input:focus,
.cate-form textarea:focus {
  border-color: var(--pri);
  box-shadow: 0 0 0 3px rgba(216, 49, 53, 0.15);
  outline: none;
}

.cate-form .form-control {
  background: white;
  color: var(--black) !important;
}

.cate-form .submit-btn {
  background-color: var(--pri);
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cate-form .submit-btn:hover {
  background-color: #b72629;
}

/* ── PR List ─────────────────────────────────── */
.pr-li {
  border: 1px solid var(--off-white);
  transition: 0.2s;
  background: white;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.pr-li:hover {
  border: 1px solid var(--border-color);
}

.pr-li .img_bx {
  padding: 0;
  border-right: 1px solid var(--off-white);
  height: 100%;
}

.pr-li:hover .img_bx {
  border-color: var(--border-color);
}

.pr-li .img_bx img {
  aspect-ratio: 1/1;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.pr-li .tx-bx {
  padding: 15px 20px;
}

.grid.pr_view .pr-li .tx-bx {
  padding-top: 0;
}

.pr-li .tx-bx .title {
  color: var(--pri);
  padding: 0;
  text-align: left;
  border-bottom: 1px solid var(--off-white);
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 20px;
}

.pr-li:hover .tx-bx .title {
  border-color: var(--border-color);
}

.grid.pr_view .pr-li .tx-bx .title {
  text-align: center;
  border: none;
  margin: 0;
}

.grid.pr_view .pr-li .tx-bx .bt_bx {
  text-align: center;
}

.pr-li .tx-bx .title a {
  font-size: 20px;
  color: var(--black);
  transition: 0.4s;
}

.pr-li:hover .tx-bx .title a {
  color: var(--pri);
}

.pr-li .tx-bx .info {
  max-height: 280px;
  overflow-y: auto;
  padding-right: 10px;
  margin-bottom: 0;
}

.pr-li .tx-bx .info table {
  width: 100%;
  overflow: hidden;
}

.pr-li .tx-bx .info table thead {
  background-color: var(--pri);
  color: white;
  text-align: center;
}

.grid.pr_view .pr-li .tx-bx .info {
  display: none;
}

.pr-li .tx-bx .info::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

.pr-li .bt_bx {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 15px;
}

.pr-li .tx-bx .info::-webkit-scrollbar {
  width: 7px;
  background-color: #f5f5f5;
}

.pr-li .tx-bx .info::-webkit-scrollbar-thumb {
  background-color: #c5c5c5;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}

/* Multi Images */
.multi-imgs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.multi-imgs .imgs {
  border: 1px solid #e3e3e3;
  width: 55px;
  height: 55px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
}

.multi-imgs .imgs.youTube a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #f70000;
}

.multi-imgs .imgs.youTube a svg {
  width: 30px;
  height: 30px;
  color: white;
}

.multi-imgs .imgs.active {
  border: 1px solid var(--pri);
}

.multi-imgs .imgs img {
  object-fit: contain;
  object-position: center;
}

.productBrochureandvideo a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px dashed #cdcdcd;
  padding: 5px 8px;
  font-weight: 500;
  transition: 0.3s;
  font-size: 14px;
  color: var(--text-color);
}

.productBrochureandvideo a svg {
  color: #b90000;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.productBrochureandvideo a:hover {
  color: #444;
  border: 1px dashed #444;
}

.v-btn svg {
  width: 42px;
}

/* Table */
tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: var(--off-white);
  border-style: solid;
  border-width: 1px;
  padding: 5px 10px;
  font-size: 14px;
}

/* ── Custom Form Row ─────────────────────────── */
.custom-from-row {
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  background-color: var(--white);
  border-radius: 4px;
}

.custom-from-row .form-control {
  border-radius: 4px;
  height: 45px;
  font-size: 15px;
  color: var(--black);
  font-weight: 400;
  box-shadow: none !important;
}

.custom-from-row textarea {
  padding: 12px 15px;
}

.custom-from-row .iti--allow-dropdown .iti__flag-container,
.custom-from-row .iti--separate-dial-code .iti__flag-container {
  height: 45px;
}

.custom-from-row .main-btn {
  padding-block: 14px;
  font-size: 15px;
}

/* ── Breadcrumb ──────────────────────────────── */
.img-breadcum {
  padding: 120px 0 110px;
  text-align: left;
  position: relative;
  z-index: 1;
}

.img-breadcum img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.img-breadcum::before {
  background: linear-gradient(180deg, rgba(22, 29, 37, 0.5), rgb(22, 29, 37));
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.9;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
  pointer-events: none;
}

.img-breadcum .sub-tt {
  color: var(--white);
  font-size: 25px;
  margin-bottom: 10px;
  background-color: var(--pri);
  border-radius: 10px;
  padding: 12px 24px;
  display: inline-block;
}

.img-breadcum .tt {
  font-weight: 500;
  font-size: 25px;
  line-height: 1.3;
  margin-bottom: 0;
  color: var(--white);
  max-width: 650px;
  margin: 0 auto;
  text-transform: capitalize;
  text-shadow: 1px 1px 4px rgb(0 0 0);
}

.img-breadcum p {
  color: var(--white);
  margin-top: 12px;
  font-size: 17px;
  margin-bottom: 0;
}

.img-breadcum.img-breadcum2 {
  text-align: left;
  padding: 60px 0;
}

.breadcum-sec {
  padding: 7px 0;
}

.breadcum-sec ul {
  display: flex;
  gap: 0 18px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcum-sec ul li {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  position: relative;
}

.breadcum-sec ul li a {
  color: var(--pri);
  font-size: 18px;
  font-weight: 600;
}

.breadcum-sec ul li a:hover {
  color: var(--white);
  margin-left: 5px;
}

.breadcum-sec ul li::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -19px;
  width: 22px;
  height: 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d83135' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 7l5 5l-5 5'/%3E%3Cpath d='M13 7l5 5l-5 5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.breadcum-sec ul li:last-child::after {
  content: none;
}
/* ── Misc Images ─────────────────────────────── */
.abt-img-bx {
  float: right;
  max-width: 450px;
  width: 100%;
  margin-left: 30px;
  margin-bottom: 30px;
  border-radius: 4px;
  overflow: hidden;
}

.cate-img {
  max-width: 420px;
  float: right;
  width: 100%;
  margin-left: 30px;
  margin-bottom: 30px;
}

.cate-img img {
  aspect-ratio: 1/1;
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.03);
}

/* ── Accordion ───────────────────────────────── */
.accordion-item,
.accordion-item:first-of-type,
.accordion-item:last-of-type,
.accordion-item:not(:first-of-type) {
  margin-bottom: 15px;
  background: #f9f9f9;
  border: 0;
  padding: 16px 17px;
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.07);
}

.accordion-button {
  background: transparent;
  font-weight: 550;
  letter-spacing: 0.3px;
  outline: 0 !important;
  color: var(--text-color);
  font-size: 16px;
  padding: 5px 0;
}

.accordion-body {
  line-height: 1.5;
  font-size: 14px;
  color: var(--para-color);
  padding: 11px 15px;
  background-color: var(--white);
  border-radius: 12px;
  margin-top: 10px;
}

.accordion-button::after {
  background-size: 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 5v14'/%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
  width: 32px;
  height: 32px;
  background-color: var(--pri);
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 10px;
}

.accordion-button:not(.collapsed) {
  box-shadow: none !important;
  background: transparent;
  border: 0;
  color: var(--black);
}

.accordion-button:focus {
  box-shadow: none !important;
  border: 0;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
  transform: rotate(-180deg);
  background-color: var(--black);
}

/* ── Phone Input ─────────────────────────────── */
.iti {
  width: 100%;
}

.iti--allow-dropdown .iti__flag-container,
.iti--separate-dial-code .iti__flag-container {
  height: 40px;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag,
.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
}

/* ── reCAPTCHA ───────────────────────────────── */
.g-recaptcha {
  transform: scale(0.8);
  transform-origin: 0 0;
  margin-bottom: 12px;
}

/* ── Floating Buttons ────────────────────────── */
.business-enq {
  position: fixed;
  bottom: 32px;
  right: 20px;
  z-index: 9;
  border: 0;
  outline: 0;
  background-color: var(--pri);
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.2px;
  padding: 5px 15px 5px 5px;
  border-radius: 24px;
  transition: 0.2s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.16) 0 1px 4px;
}

.business-enq:hover {
  transform: scale(1.03);
}

.business-enq .icon {
  height: 32px;
  width: 32px;
  border-radius: 100%;
  line-height: 32px;
  text-align: center;
  display: inline-block;
  background: var(--white);
  color: var(--pri);
}

.business-enq .icon svg {
  height: 18px;
  width: 18px;
}

.whatapp_btn {
  background: #01e675;
  width: 40px;
  height: 40px;
  color: var(--white);
  position: fixed;
  right: 20px;
  bottom: 85px;
  cursor: pointer;
  z-index: 9;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.15);
  border: 0;
}

.whatapp_btn svg {
  width: 19px;
  height: 19px;
}

.whatapp_btn:hover {
  transform: scale(1.1);
}

.whatapp_btn:focus,
.whatapp_btn:hover {
  background: #01e675;
  color: var(--white);
}

/* ── Validation ──────────────────────────────── */
.error {
  font-size: 14px;
  color: red;
}

/* ── Modal ───────────────────────────────────── */
.modal-header {
  padding: 0;
  padding-inline: 20px;
  padding-top: 18px;
  border: 0;
}

.modal-header.modal-header2 {
  background: var(--liner);
  background-color: var(--pri);
  color: white;
  padding-block: 12px;
}

.modal-content {
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
}

.modal-header.modal-header2 .btn-close {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}

@media (min-width: 576px) {
  .modal-sm {
    max-width: 300px;
  }
}

.modal-body {
  padding: 13px 22px 20px;
}

.modal-content .main-tt {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 15px;
}

.btn-close {
  float: right;
  box-shadow: none;
}

.btn-close:hover,
.btn-close:focus {
  box-shadow: none;
}

.pop-img {
  aspect-ratio: 1/1;
}

.pop-img img {
  aspect-ratio: 1/1;
  object-fit: contain;
  object-position: center;
  width: 100%;
  border-radius: 4px;
}

/* ── Content Sections ────────────────────────── */
.content-sec h1,
.content-sec h2,
.content-sec h3,
.content-sec .tt,
.cmTitle {
  text-transform: capitalize;
  font-size: 23px;
  color: var(--third);
  font-weight: 700;
  text-align: left;
  margin-bottom: 7px;
  line-height: 1.3;
}

.seo .content-sec h1,
.seo .content-sec h2,
.seo .content-sec h3,
.seo .content-sec .tt,
.seo .cmTitle {
  color: var(--pri);
}

.seo .content-sec p,
.content-sec ul li {
  color: var(--white);
}

.seo .content-sec ul li {
  color: var(--white);
}

.cmTitle {
  color: var(--pri);
  font-size: 18px;
  margin-bottom: 5px;
}

.content-sec ul {
  margin: 0 0 10px;
  padding-left: 0;
  list-style: none;
}

.content-sec ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
}

.content-sec ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d83135' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 7l5 5l-5 5'/%3E%3Cpath d='M13 7l5 5l-5 5'/%3E%3C/svg%3E");
}

.content-sec p {
  margin-bottom: 10px;
}

.content-sec p,
.content-sec ul li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--para-color);
  text-align: justify;
  font-family: var(--font);
  font-weight: 400;
}

.content-sec ul li {
  margin-bottom: 3px;
  display: flow-root;
}

.content-sec ul li a {
  display: inline;
  color: var(--text-color);
}

/* ── Footer Menu ─────────────────────────────── */
ul.footer-menu-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 18px;
  list-style: none;
}

ul.footer-menu-list li a {
  margin-right: 15px;
  display: inline-block;
  line-height: 1.3;
  position: relative;
  text-transform: capitalize;
  color: var(--off-white);
}

ul.footer-menu-list li a:hover {
  color: var(--pri);
}

ul.footer-menu-list li a::before {
  content: "|";
  padding: 0;
  font-size: 13px;
  position: absolute;
  right: -9px;
  top: 1px;
  color: var(--text-light);
}

ul.footer-menu-list li:last-child a::before {
  content: none;
}

/* ── Footer Banner ───────────────────────────── */
.footer-banner {
  position: relative;
}

.footer-banner img {
  width: 100%;
  aspect-ratio: 200/39;
}

.footer-banner .tx-bx {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 650px;
  width: 100%;
}

.footer-banner .tx-bx .tt {
  font-size: 27px;
  font-weight: 700;
  color: var(--text-color);
  text-transform: capitalize;
  margin-bottom: 7px;
  line-height: 1.3;
}

.footer-banner .tx-bx .tt span {
  color: var(--pri);
}

.footer-banner .tx-bx p {
  color: #333;
  line-height: 1.7;
  font-size: 16px;
}

.footer-banner .tx-bx p a {
  color: var(--pri);
  font-weight: 600;
}

/* ── Footer ──────────────────────────────────── */
footer {
  background: #171717;
  overflow: hidden;
  padding: 60px 0 10px;
  position: relative;
  z-index: 1;
}

footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/footer-shape-1.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.ft-bx {
  position: relative;
  z-index: 1;
}

.ft-bx .logo img {
  max-width: 140px;
}

.ft-bx .con-bx {
  display: flex;
  align-items: start;
  margin-bottom: 10px;
  gap: 10px;
}

.ft-bx .con-bx .ic-bx svg {
  min-width: 17px;
  width: 17px;
  height: 17px;
  color: var(--pri);
}

.ft-bx .con-bx a,
.ft-bx .con-bx p {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 0;
}

.ft-bx .con-bx p strong {
  font-weight: 500;
  color: #eeeeee82;
}

.ft-bx .con-bx a {
  font-weight: 600;
  color: var(--white);
  font-size: 16px;
}

.ft-bx .con-bx a:hover {
  color: var(--pri);
}

.ft-bx .ft-tt {
  font-family: var(--font);
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 27px;
  position: relative;
}

.ft-bx .ft-tt::before {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 2px;
  width: 45px;
  height: 2px;
  background: var(--pri);
}

.ft-bx .ft-tt span {
  color: var(--pri);
}

.ft-bx p {
  color: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

.ft-bx ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.ft-bx ul li {
  position: relative;
  padding-left: 28px;
}

.ft-bx ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 7l5 5l-5 5'/%3E%3Cpath d='M13 7l5 5l-5 5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.ft-bx ul li a {
  font-size: 16px;
  color: var(--white);
  padding: 4px 0;
  transition: 0.1s;
  display: inline-block;
}

.ft-bx ul li a:hover {
  color: var(--pri);
  transform: translateX(3px);
}

.ft-bx .social {
  display: flex;
  gap: 7px;
  justify-content: start;
}

.ft-bx .social div a {
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: 35px;
  height: 35px;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 100%;
  align-content: center;
  text-align: center;
  line-height: 1;
}

.ft-bx .social div a:hover {
  border-color: var(--pri);
  background-color: var(--pri);
  color: white;
}

/* ── Blog Details ────────────────────────────── */
.blog-details-faq {
  background-color: unset;
}

.blog-det-form {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  border: 1px solid #e3e3e3;
  margin-top: 20px;
}

.blog-det-form .sub-tt {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  position: relative;
  padding-bottom: 12px;
}

.blog-det-form .form-control {
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
  background: #f9f9f9;
}

.blog-det-form .form-control:focus {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(216, 49, 53, 0.12);
  outline: none;
}

.blog-det-form .form-control::placeholder {
  color: var(--black);
  font-size: 13px;
}

.blog-det-form textarea.form-control {
  resize: none;
}

.blog-det-form .btn-primary {
  background: var(--pri);
  border: none;
  border-radius: 6px;
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.blog-det-form .btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.related-category .pb-cont {
  background-color: var(--white);
}

/* ── Copyright ───────────────────────────────── */
.copyright {
  padding-top: 13px;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright svg {
  color: var(--pri);
}

.copyright p {
  color: rgba(255, 255, 255, 0.57);
  margin-bottom: 0;
  font-weight: 300;
  font-size: 11px;
  text-align: center;
}

.copyright p a {
  color: rgba(255, 255, 255, 0.57);
  display: inline;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.copyright p a:hover {
  color: var(--pri);
}

/* Footer content overrides */
footer .content-sec h1,
footer .content-sec h2,
footer .content-sec h3,
footer .content-sec .tt {
  color: var(--white);
  font-size: 18px;
  text-transform: capitalize;
}

footer .content-sec p,
footer .content-sec ul li {
  color: var(--off-white);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
}

/* ── Sitemap ─────────────────────────────────── */
.sitemap {
  border-left: 1px solid #666;
  padding: 0;
}

.sitemap li {
  list-style: none !important;
  background: transparent url(../images/sitemap_hr.png) no-repeat scroll 0px 9px;
  padding: 0 0 0 15px;
  margin-bottom: 5px;
  font-family: var(--font);
  color: var(--text-color);
  font-weight: 500;
}

.sitemap li ul {
  border-left: 1px solid #666;
  padding: 0;
}

.sitemap li a {
  color: var(--text-color);
  font-size: 14px;
  padding-bottom: 5px;
  display: inline-block;
}

.sitemap li a:hover {
  color: var(--pri);
}

/* ── Market Sec ──────────────────────────────── */
.market-sec {
  padding: 60px 0;
  font-family: var(--font);
}

.market-sec h1,
.market-sec .main-tt,
.market-sec h2,
.market-sec h3 {
  font-size: 20px;
  color: var(--text-color);
  line-height: 26px;
  margin: 20px 0 15px;
  font-weight: 700;
}

.market-sec h2,
.market-sec h3 {
  font-weight: 600;
}

.market-sec .market-bx {
  padding: 10px 12px;
  background-color: #e8e8e8;
  color: var(--text-color);
  font-size: 14px;
  transition: 0.2s ease-in-out;
}

.market-sec .market-bx:hover {
  background-color: var(--pri);
  color: white;
}

/* ── Certificates ────────────────────────────── */
.certificates {
  background-color: var(--bg);
}

.certificates .box {
  background: #fff;
  font-size: 16px;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
}

.certificates .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.certificates .img-bx {
  overflow: hidden;
}

.certificates .img-bx img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
  /* aspect-ratio: 1/1; */
  object-fit: cover;
}

.certificates .box:hover .img-bx img {
  transform: scale(1.1);
}

.certificates .sub-tt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  font-weight: 600;
  background-color: var(--bg);
  margin-bottom: 0;
  font-size: 16px;
}

.certificates .sub-tt svg {
  width: 22px;
  height: 22px;
}

/* ── You May Also Like ───────────────────────── */
.you_may {
  font-family: var(--font);
  font-weight: 600;
  font-size: 20px;
  color: var(--text-color);
  text-transform: capitalize;
  margin-bottom: 27px;
  position: relative;
}

.you_may span {
  color: var(--pri);
}

.you_may::before {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 45px;
  height: 2px;
  background: var(--pri);
}

/* ── Lead Sure ───────────────────────────────── */
.lead-sure-section {
  padding: 60px 0;
  overflow: hidden;
}

.rightbx {
  padding: 0 40px;
}

/* ── Nav link base ───────────────────────────── */
.nav-link {
  color: var(--pri);
  padding: unset;
}

.nav-link:hover {
  color: var(--pri);
}

/* ── Main Btn SVG ────────────────────────────── */
.main-btn svg {
  transition: 0.3s ease;
}

/* ---------------------- */
.pb-cont .pb-product {
  color: var(--third);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
  margin: 10px 0;
}

thead tr {
  background: #1a1a1a;
}

thead th {
  padding: 14px 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  text-align: left;
  border-top: 4px solid var(--pri);
}

thead th:first-child {
  width: 36%;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
}

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

tbody tr:nth-child(even) {
  background: #fafafa;
}

tbody tr:hover,
tbody tr:nth-child(even):hover {
  background: var(--pri-light);
}

tbody td {
  padding: 14px 28px;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  vertical-align: top;
}

tbody td:first-child {
  border-right: 2px solid var(--pri-border);
  width: 36%;
}

tbody td strong {
  font-weight: 600;
  color: #111;
  font-size: 13px;
}

tbody tr:hover td:first-child {
  border-right-color: var(--pri);
}

.table-of-con {
  border-radius: 10px;
  background-color: var(--off-white);
  padding: 25px;
  box-shadow:
    rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
    rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  margin-block: 30px;
}

.table-of-con li {
  cursor: pointer;
}

.glow {
  transform-origin: center;
  animation: glowEffect 1s ease-in-out;
  animation-delay: 600ms;
}

@keyframes glowEffect {
  0% {
    background-color: rgba(255, 255, 0, 0);
    box-shadow: 0 0 0 rgba(255, 255, 0, 0);
  }

  50% {
    background-color: rgba(216, 49, 53, 0.3);
    box-shadow: 0 0 10px rgba(216, 49, 53, 0.3);
  }

  100% {
    background-color: rgba(255, 255, 0, 0);
    box-shadow: 0 0 0 rgba(255, 255, 0, 0);
  }
}

.nav-cate-style.nav-pills .nav-link {
  background-color: var(--text-light);
  color: white;
  font-size: 14px;
  padding: 8px 12px;
}

.nav-cate-style.nav-pills .nav-link.active {
  background-color: var(--pri);
  color: white;
}

.blog-sec h1,
.blog-sec h2,
.blog-sec h3,
.blog-sec h4,
.blog-sec h5,
.blog-sec h6 {
  scroll-margin-top: 90px;
}

/* --------------brand--logo--swiper-------------- */

.brandLogoSwiper {
  width: 100%;
  padding: 20px 0;
}

.brandLogoSwiper .swiper-slide {
  display: flex;
  align-items: center;
  border-radius: 50%;
}

.brandLogoSwiper img {
  max-width: 80%;
  object-fit: contain;
  border-radius: 50%;
}


 

.ls-thankyou-modal .ls-thankyou-modal-content {
  background-color: var(--pri);
  border: none;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.ls-thankyou-modal .ls-thankyou-modal-header {
  border-bottom: none;
  padding: 16px 16px 0;
  justify-content: flex-end;
  background:unset;
}

.ls-thankyou-modal .ls-thankyou-modal-header .btn-close {
  filter: invert(1);
  opacity: 0.6;
  box-shadow: none;
}

.ls-thankyou-modal .ls-thankyou-modal-header .btn-close:hover {
  opacity: 1;
}

.ls-thankyou-modal .ls-thankyou-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 40px 16px;
  position: relative;
  z-index: 1;
  background-color: unset;
}

.ls-thankyou-modal .ls-thankyou-modal-footer {
  border-top: none;
  justify-content: center;
  padding: 8px 40px 40px;
  position: relative;
  z-index: 1;
}

.ls-thankyou-modal .ls-thankyou-modal-content::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 180px;
  height: 180px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M22 2L11 13M22 2L15 22l-4-9-9-4 20-7z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.18;
}

.ls-thankyou-modal .ls-thankyou-modal-content::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 30px;
  width: 90px;
  height: 90px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M22 2L11 13M22 2L15 22l-4-9-9-4 20-7z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.1;
}

.ls-thankyou-modal .ls-thankyou-title {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.ls-thankyou-modal .ls-thankyou-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  max-width: 300px;
  margin: 0 auto;
}

.ls-thankyou-modal .ls-thankyou-btn-home {
  padding: 11px 36px;
  background-color: #ffffff;
  color: var(--pri);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}

.ls-thankyou-modal .ls-thankyou-btn-home:hover {
  opacity: 0.88;
  color: var(--pri);
}

.modal .tt{
  color: var(--white);
 
  font-size: 19px;
}
