/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --font: "Heebo", sans-serif;
  --font2: "Heebo", sans-serif;
  --liner: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0)
  );
  --pri: #393185;
  --sec: #0b77b7;
  --text-color: #1f1f1f;
  --text-light: #8c8c8c;
  --para-color: #707070;
  --border-color: #e3e3e3;
  --white: #fff;
  --off-white: #f6f6f6;
  --black: #212529;
}

/* ============================================================
   BASE RESET & TYPOGRAPHY
   ============================================================ */
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;
  overflow-x: hidden;
  /* min-height: 100vh; */
}

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

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

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

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

p a {
  display: inline;
}

/* ============================================================
   UTILITY / COLOR HELPERS
   ============================================================ */
.text-pri {
  color: var(--pri) !important;
}

.text-justify {
  text-align: justify;
}

.c-pri {
  color: var(--pri);
}

.c-sec {
  color: var(--sec);
}

.bg-white {
  background: var(--white);
}

.bg-offW {
  background-color: var(--off-white);
}

.bg-light {
  background-color: var(--off-white) !important;
}

/* ============================================================
   SECTION HEADING  (.head-sec)
   ============================================================ */
.head-sec {
  text-align: center;
  max-width: 770px;
  margin: 0 auto 30px;
}

.head-sec.text-start {
  max-width: 100%;
}

.head-sec .sub-tt {
  padding: 7px 15px;
  background-color: var(--off-white);
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--pri);
  margin-bottom: 8px;
  font-family: var(--font2);
}

.head-sec .sub-tt.dark {
  background-color: var(--pri);
  color: var(--white);
}

.head-sec .tt {
  font-family: var(--font);
  color: var(--text-color);
  font-weight: 700;
  font-size: 37px;
  line-height: 1.2;
  margin-bottom: 8px;
  position: relative;
}

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

.head-sec p {
  font-size: 16px;
  color: var(--para-color);
  font-weight: 400;
  margin-bottom: 0;
}

.head-sec.text-white .tt,
.head-sec.text-white p {
  color: white;
}

.head-sec.text-white p {
  opacity: 0.8;
}

/* Standalone sub-tt (outside head-sec) */
.sub-tt {
  padding: 7px 15px;
  background-color: var(--off-white);
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--pri);
  margin-bottom: 8px;
  font-family: var(--font2);
  width: max-content;
}

.sub-ttl {
  font-size: 18px;
  font-weight: 600;
  color: var(--pri);
}

.title {
  font-size: 35px;
  font-weight: 600;
  color: var(--black);
  font-family: var(--font2);
}

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

.tt {
  font-size: 25px;
  color: black;
  font-weight: 500;
  text-transform: capitalize;
}

.main-tt {
  font-size: 24px;
  font-family: var(--font);
  font-weight: 700;
  color: var(--text-color);
  line-height: 1.1;
}

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

.cmTitle {
  text-transform: capitalize;
  color: var(--pri);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.3;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.main-btn,
.main-btn2 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.4px;
  text-transform: capitalize;
  cursor: pointer;
  padding: 11px 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  line-height: 1;
  transition:
    color 0.38s ease,
    border-color 0.38s ease,
    transform 0.18s ease;
}

.main-btn svg,
.main-btn2 svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.main-btn:active,
.main-btn2:active {
  transform: scale(0.97);
}

/* --- main-btn (white/outline) --- */
.main-btn {
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--black);
}

.main-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--sec);
  clip-path: ellipse(0% 0% at 100% 0%);
  transition: clip-path 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-btn:hover::after {
  clip-path: ellipse(170% 170% at 100% 0%);
}

.main-btn:hover {
  color: var(--white);
  border-color: var(--sec);
}

/* --- main-btn2 (primary filled) --- */
.main-btn2 {
  background: var(--pri);
  color: var(--white);
  border: 2px solid var(--pri);
}

.main-btn2::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--white);
  clip-path: ellipse(0% 0% at 100% 0%);
  transition: clip-path 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-btn2:hover::after {
  clip-path: ellipse(170% 170% at 100% 0%);
}

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

/* --- variants --- */
.main-btn.sm {
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 400;
}

.main-btn.light {
  background-color: var(--off-white);
  border-color: var(--off-white);
  color: var(--text-color);
  font-weight: 600;
}

.main-btn.light:hover {
  background-color: var(--pri);
  border-color: var(--pri);
  color: var(--white);
}

.menubar .main-btn2 {
  padding: 15px 20px;
}

/* --- WhatsApp button --- */
.w-btn {
  padding: 10px 15px;
  border-radius: 50px;
  color: white;
  border: 1px solid #00c966;
  display: inline-flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font);
  text-transform: capitalize;
  white-space: nowrap;
  background-color: #00c966;
  outline: none;
  transition: 0.2s ease-in-out;
  line-height: 1;
}

.w-btn:hover {
  background-color: #00b95d;
}

/* --- Read more link --- */
.read-mr {
  font-size: 0.9em;
  color: var(--text-color);
  font-weight: 500;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  padding: 0;
  background-color: transparent;
  border: 0;
  text-transform: capitalize;
}

.read-mr:hover {
  color: var(--pri);
}

.read-mr.text-decoration:hover {
  text-decoration: underline;
}

/* --- Product brochure link --- */
.productBrochureandvideo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 1px dashed #b5b5b5;
  padding: 7px 15px;
  font-weight: 500;
  transition: 0.3s;
  font-size: 14px;
  color: var(--text-color);
  font-family: var(--font);
  background-color: transparent;
}

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

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

.form-control,
.form-select,
.SumoSelect > .CaptionCont {
  font-weight: 500;
  border-radius: 5px;
  font-size: 14px;
  padding: 8px 12px;
  color: var(--text-color);
  font-family: var(--font2);
  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.open .search-txt {
  font-weight: 500;
  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;
}

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

/* intl-tel-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;
}

.g-recaptcha {
  transform: scale(0.8);
  transform-origin: 0 0;
}

.error {
  font-size: 15px;
  color: red;
}

/* Custom form card */
.custom-from-row {
  padding: 35px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  background-color: var(--white);
  color: var(--text-color);
  border-radius: 10px;
}

.custom-from-row .form-control {
  border-radius: 5px;
  height: 42px;
  font-size: 14px;
  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: 42px;
}

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

/* ============================================================
   HEADER & TOP-BAR
   ============================================================ */
.logo {
  max-width: 175px;
  width: auto;
  height: auto;
}

.top-bar {
  background-color: var(--off-white);
}

.top-bar p {
  margin: 0;
  color: var(--para-color);
  font-size: 14px;
  font-weight: 500;
}

.top-bar p a {
  color: var(--para-color);
  transition: 0.2s ease;
}

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

.top-bar p svg {
  color: var(--pri);
  width: 18px;
  height: 18px;
}

.top-bar p button {
  padding: 0;
  margin: 0;
  border: 0;
  color: var(--text-color);
  font-size: 14px;
  text-decoration: underline;
  background-color: transparent;
  font-weight: 500;
  transition: 0.2s ease;
}

.top-bar p button:hover {
  color: var(--pri);
}

.social {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  gap: 15px;
  background-color: #dcdcdc;
  padding: 10px 20px;
}

.social li a {
  color: #4f545a;
}

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

.social svg {
  width: 16px;
  height: 16px;
  line-height: 1;
  color: currentColor;
}

header {
  background-color: white;
  transition: 0.3s ease-in-out;
}

header.stricky-fixed {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  animation: fadeInDown 0.6s both;
}

@keyframes fadeInDown {
  from {
    transform: translate3d(0, -100%, 0);
  }

  to {
    transform: none;
  }
}

header.stricky-fixed .col-1.mobile_hide {
  display: none;
}

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

.navigation .navbar {
  display: none;
  padding: 12px 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;
  padding: 5px;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  position: relative;
  z-index: 99;
}

.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;
  display: block;
}

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

.navigation .menu ul li a {
  padding: 25px 11px;
  display: block;
  color: var(--text-color);
  transition: all 0.2s ease;
  font-size: 16px;
  font-family: var(--font2);
  background: transparent;
  font-weight: 500;
}

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

/* Dropdown */
.navigation .menu ul li ul.ls-dropdown {
  position: absolute;
  min-width: 190px;
  width: max-content;
  max-width: 390px;
  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: #fff;
  margin: 0;
  padding: 0;
  text-align: left;
  top: 100%;
  left: 0;
}

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

.navigation .menu ul 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: var(--text-color);
  font-size: 14px;
  padding: 7px 13px;
  display: block;
  text-transform: capitalize;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-weight: 400;
}

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

/* Nested dropdowns */
.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 {
}

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

/* .navigation .menu ul li:hover ul.ls-dropdown li ul.ls-dropdown {
  display: none;
  width: max-content;
}

.navigation .menu ul li ul.ls-dropdown li:hover ul.ls-dropdown {
  display: block;
} */

.navigation .menu ul li ul.ls-dropdown li ul.ls-dropdown {
  display: block;
  opacity: 0;
  visibility: hidden;
}

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

.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);
}

/* Submenu arrow buttons */
.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 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;
}

.offcanvas-btn {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  background-color: var(--pri);
}

.menubar .dropdown-menu {
  padding: 0;
  border: 0;
  outline: 0;
  background-color: transparent;
}

.menubar .dropdown button[data-bs-toggle="dropdown"] {
  background-color: transparent;
  border: 0;
  padding: 23px 0;
}

.menubar .dropdown button[data-bs-toggle="dropdown"] svg {
  width: 22px;
  height: 22px;
  color: var(--text-color);
  display: none;
}

.menubar .dropdown button[data-bs-toggle="dropdown"]:not(.show) svg.close {
  display: block;
}

.menubar .dropdown button[data-bs-toggle="dropdown"].show svg.open {
  display: block;
}

.mobile_nav {
  display: none;
}

/* Search box */
.search-bx {
  display: flex;
  align-items: center;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  overflow: hidden;
  padding-left: 0;
  background-color: var(--off-white);
}

.search-bx input {
  width: 100%;
  outline: none;
  border: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 14px;
  min-width: 220px;
  background-color: var(--off-white);
  height: 42px;
  padding-left: 15px;
}

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

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcum-sec {
  background: linear-gradient(108deg, var(--off-white) 60%, #e8e6f8 100%);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.breadcum-sec::before {
  content: "";
  position: absolute;
  left: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(57, 49, 133, 0.07);
  pointer-events: none;
}

.breadcum-sec::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -50px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(11, 119, 183, 0.07);
  pointer-events: none;
}

.bc-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 66px 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.bc-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bc-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--pri), var(--sec));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.bc-label {
  font-size: 11px;
  font-family: var(--font2);
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--sec);
  margin-bottom: 2px;
}

.breadcrumb-trail {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 6px 16px;
  margin: 0;
  background: white;
  border: 1px solid rgba(57, 49, 133, 0.12);
  box-shadow: 0 2px 10px rgba(57, 49, 133, 0.06);
  gap: 0;
}

.breadcrumb-trail li {
  font-size: 13px;
  font-family: var(--font2);
  font-weight: 500;
  color: var(--para-color);
  display: flex;
  align-items: center;
  gap: 6px;
  position: static;
}

.breadcrumb-trail li::before {
  content: none !important;
}

.breadcrumb-trail li:last-child {
  color: var(--pri);
  font-weight: 600;
}

.breadcrumb-trail li a {
  color: var(--para-color);
  text-decoration: none;
}

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

.bc-home-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sec);
  display: inline-block;
  flex-shrink: 0;
}

/* ============================================================
   HERO / CAROUSEL
   ============================================================ */
#carouselExampleCaptionsmain img {
  aspect-ratio: 1920 / 780;
  overflow: hidden;
  display: block;
  width: 100%;
  position: relative;
  object-fit: cover;
}

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

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

.carousel-control-next {
  left: 70px;
}

.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;
}

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

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

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

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

/* ============================================================
   SWIPER / SLIDER GLOBALS
   ============================================================ */
.swiper_wrap {
  position: relative;
}

.swiper-wrapper {
  align-items: flex-start;
}

.swiper-pagination {
  position: static;
}

.swiper-pagination-bullet-active {
  background-color: var(--pri);
}

.swiper-button-next,
.swiper-button-prev {
  position: static !important;
  width: 44px !important;
  height: 44px !important;
  background: var(--black);
  border: 1px solid var(--black);
  border-radius: 50%;
  margin: 0;
  color: var(--white) !important;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
  flex-shrink: 0;
}

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

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--pri);
  border-color: var(--pri);
  color: #fff !important;
  transform: scale(1.08);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px !important;
  font-weight: 700;
}

.swiper-button-disabled {
  opacity: 0.3 !important;
}

.swiper-slide {
  transition: all 0.3s ease-in-out;
}

/* Category slider nav */
.cate-next,
.cate-prev {
  width: 45px;
  height: 45px;
  background-color: #fdfff8;
  border: 1px solid var(--border-color);
  border-radius: 100%;
  color: var(--para-color);
  align-content: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
}

.cate-prev {
  right: 50px;
}

.cate-next svg,
.cate-prev svg {
  width: 25px;
  height: 25px;
}

.cate-next:hover,
.cate-prev:hover {
  background-color: var(--pri);
  color: var(--white);
}

/* Slider nav controls row */
.controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;
  width: 100%;
  justify-content: end;
  position: relative;
  bottom: 40px;
  right: 82px;
  margin-top: -21.5px;
  z-index: -1;
}

.nav-buttons {
  display: flex;
  gap: 10px;
}

/* ============================================================
   TESTIMONIALS  (.testiSlider)
   ============================================================ */
.testiSlider .swiper-slide {
  height: auto;
  margin-bottom: 10px;
}

.texti-bx {
  padding: 25px;
  border: solid 1px #dddddd;
  border-radius: 20px;
  position: relative;
  height: 100%;
}

.texti-bx .img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  margin-bottom: 15px;
  background-color: white;
  border: solid 1px #dddddd;
  align-content: center;
  text-align: center;
  font-family: var(--font);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--pri);
  font-size: 30px;
}

.texti-bx .name {
  color: var(--black);
  margin-bottom: 15px;
  font-weight: 600;
}

.texti-bx .name span {
  display: block;
  color: var(--para-color);
  font-size: 0.95em;
  font-weight: 400;
}

.texti-bx p {
  color: var(--text-color);
  margin-bottom: 0;
}

.texti-bx .star-rating {
  display: flex;
  gap: 3px;
  position: absolute;
  top: 30px;
  right: 20px;
}

.texti-bx .star-rating svg {
  width: 16px;
  height: 16px;
}

/* Star rating widget */
.star-rating-wrap {
  display: flex;
  align-items: center;
  gap: 0;
}

.rating {
  display: flex;
  gap: 0;
  user-select: none;
}

.rating .star {
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: relative;
  display: inline-block;
}

.rating .star i {
  position: absolute;
  inset: 0;
  font-style: normal;
}

.rating .star i::before {
  content: "★";
  position: absolute;
  inset: 0;
  color: #d9d9d9;
  font-size: 30px;
  line-height: 30px;
}

.rating .star i::after {
  content: "★";
  position: absolute;
  inset: 0;
  color: #ffc107;
  font-size: 30px;
  line-height: 30px;
  width: var(--w, 0%);
  overflow: hidden;
}

/* Testimonial section */
.testimonial-section {
  background: url("../images/testimonial-Image.webp") no-repeat center/cover;
}

.testimonial-swiper {
  width: 100%;
}

.testimonial-slide {
  background: #ffffff;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-card {
  max-width: 400px;
  position: relative;
  overflow: hidden;
}

.t-card::before {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 0;
  width: 50px;
  height: 50px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M9 5a2 2 0 0 1 2 2v6c0 3.13 -1.65 5.193 -4.757 5.97a1 1 0 1 1 -.486 -1.94c2.227 -.557 3.243 -1.827 3.243 -4.03v-1h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 2 -2z'/%3E%3Cpath d='M18 5a2 2 0 0 1 2 2v6c0 3.13 -1.65 5.193 -4.757 5.97a1 1 0 1 1 -.486 -1.94c2.227 -.557 3.243 -1.827 3.243 -4.03v-1h-3a2 2 0 0 1 -1.995 -1.85l-.005 -.15v-3a2 2 0 0 1 2 -2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.12;
  pointer-events: none;
}

.quote-text {
  font-style: italic;
  font-size: 16px;
  padding: 0 0 24px;
  position: relative;
}

.quote-text::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.322);
  border-radius: 2px;
  bottom: 0;
  left: 0;
  margin-bottom: 10px;
}

.profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar-ring {
  position: relative;
  flex-shrink: 0;
}

.avatar-ring::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid #c9a96e;
  opacity: 0.7;
}

.avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2c3e50, #4a5568);
  border: 2px solid #c9a96e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #e8d5b0;
  letter-spacing: 0.5px;
}

.name {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  margin: 0 0 3px;
  letter-spacing: 0.01em;
}

.role {
  font-size: 12px;
  color: var(--para-color);
  margin: 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   CATEGORY BOXES
   ============================================================ */
.cate-bx {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  padding: 10px;
}

.cate-bx .img-bx {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.cate-bx .img-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);
}

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

.cate-bx .tx-bx .tt {
  font-size: 17px;
  margin-top: 12px;
  margin-bottom: 5px;
  font-weight: 700;
  font-family: var(--font2);
  line-height: 1;
  text-align: center;
}

.cate-bx .tx-bx .tt a {
  color: var(--text-color);
  font-family: var(--font);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

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

/* Category image float */
.cate-img {
  max-width: 440px;
  float: right;
  width: 100%;
  margin-left: 30px;
}

.cate-img.left {
  float: left;
  margin-right: 30px;
  margin-left: 0;
}

.cate-img img {
  aspect-ratio: 1/1;
  object-fit: contain;
  object-position: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: 12px;
}

/* Category nav CTA card */
.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("../images/abt-img.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  border-radius: 12px;
  text-align: center;
}

.cat-nav-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--text-color);
  opacity: 0.8;
  z-index: -1;
  transition: 0.3s ease-in-out;
}

.cat-nav-img .tt {
  font-family: var(--font);
  color: white;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.cat-nav-img p {
  color: var(--off-white);
  line-height: 1.3;
  margin: 0;
  text-align: center;
}

.cat-nav-img .cni-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(10, 59, 110, 0.18);
  border: 1px solid var(--third);
  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: var(--white);
}

.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;
  justify-content: center;
  gap: 8px;
}

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

.cat-nav-img .cni-btns {
  display: flex;
  justify-content: space-around;
  margin-top: 4px;
  gap: 7px;
}

.cat-nav-img .main-btn {
  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-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

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

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

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

.cate-form {
  background-color: var(--off-white);
  padding: 15px 20px;
  border-radius: 6px;
}

/* Category nav pills */
.nav-cate-style.nav-pills .nav-link {
  background-color: var(--text-light);
  color: white;
  font-size: 15px;
  padding: 8px 18px;
  border-radius: 0;
  font-family: var(--font);
  font-weight: 500;
}

.nav-cate-style.nav-pills .nav-link.active {
  background-color: var(--pri);
  color: white;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.jsmarquee-sec {
  width: 100%;
  color: #fff;
  overflow: hidden;
  background-image: url(../images/bg/gradient-3.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.js-marquee-wrapper {
  display: flex;
  width: 100%;
}

.jsmarquee-list {
  display: flex;
  gap: 60px;
}

.jsmarquee-list a,
.jsmarquee-list span {
  font-family: var(--font);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 30px;
  color: white;
  white-space: nowrap;
  position: relative;
  line-height: 1;
}

.jsmarquee-list a:hover {
  color: var(--pri);
}

.jsmarquee-list a::before,
.jsmarquee-list span::before {
  content: "";
  width: 30px;
  height: 2px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -45px;
  background-color: var(--pri);
}

/* ============================================================
   ABOUT / COUNTER
   ============================================================ */
.abt-sec {
  position: relative;
  width: 100%;
  height: 100%;
}

.abt-sec .cou-bx {
  position: absolute;
  bottom: 0;
  left: 47%;
  transform: translateX(-50%);
  width: 75%;
  max-width: 520px;
  padding: 28px 19px;
  text-align: center;
  background: linear-gradient(
    180deg,
    #8ea7bbc2 0%,
    #6f8ea6b9 45%,
    #5e7d95cc 100%
  );
  color: #fff;
  border: 4px solid #cfd5db;
  z-index: 2;
  overflow: hidden;
  box-shadow:
    0 12px 25px rgba(0, 0, 0, 0.18),
    inset 0 2px 1px rgba(255, 255, 255, 0.6);
}

@keyframes shimmer-sweep {
  0% {
    left: -60%;
  }

  100% {
    left: 120%;
  }
}

.abt-sec .cou-bx::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.18) 40%,
    rgba(255, 255, 255, 0.32) 50%,
    rgba(255, 255, 255, 0.18) 60%,
    transparent 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  animation: shimmer-sweep 3.2s ease-in-out infinite;
}

.abt-sec .cou-bx .tt,
.counter-bx .tt {
  font-weight: 600;
  font-size: 34px;
  line-height: 40px;
}

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

.counter-bx .tt {
  color: var(--text-color);
  font-weight: 800;
  margin-bottom: 10px;
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
  font-family: var(--font);
  line-height: 40px;
}

.abt-sec .cou-bx p,
.counter-bx p {
  font-weight: 500;
  color: currentColor;
  margin-bottom: 0;
  font-size: 20px;
}

.counter-section {
  position: relative;
}

.counter-section > * {
  position: relative;
  z-index: 1;
}

.counter-section .content-sec {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.counter-section .content-sec p {
  color: var(--black);
}

.abt-sec .img-bx {
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.2);
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
}

.abt-sec .img-bx img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* About page sections */
.abt-img-bx {
  float: right;
  max-width: 540px;
  width: 100%;
  margin-left: 30px;
  margin-bottom: 30px;
  overflow: hidden;
}

.abt-sec2 {
  position: relative;
}

.abt-sec2 img {
  width: 100%;
  height: 100%;
}

.abt-sec3 img {
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
  width: 100%;
  height: 100%;
}

.about-sec {
  position: relative;
  /* background-color: var(--white); */
  /* background: url("../images/alta2webp.webp"); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.about-sec .cs-animated-text {
  top: 50%;
}

.about-sec .content-bx {
  /* background-color: var(--off-white);
  padding: 30px;
  border-radius: 6px; */
}

.ceo-sec {
  background: url("../images/ceo-bg.png") no-repeat center/cover;
}

.ceo-prof {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

.ceo-prof .img-bx {
  height: 75px;
  width: 75px;
  overflow: hidden;
  border-radius: 50%;
  border: 4px solid var(--pri);
}

.ceo-prof .img-bx img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* ============================================================
   INDUSTRIES BOX
   ============================================================ */
.indust-bx {
  background-color: var(--sec);
  overflow: hidden;
  padding: 16px;
  border-radius: 12px;
  transition: 0.3s ease-in-out;
}

.indust-bx:hover {
  transform: translateY(-5px);
}

.indust-bx img {
  border-radius: 10px;
  width: 100%;
}

.indust-bx .tt {
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 5px;
  color: var(--white);
}

.indust-bx p {
  margin-bottom: 0;
  color: var(--off-white);
}

/* CEO box */
.ceo-bx .img-bx {
  text-align: center;
}

.ceo-bx .img-bx img {
  border-radius: 10px;
  margin-bottom: 10px;
}

.ceo-bx .img-bx .tt {
  color: var(--text-color);
  font-size: 17px;
  font-weight: 600;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.timeline-container::before {
  content: "";
  position: absolute;
  width: 2px;
  top: 25px;
  left: calc(50% - 0px);
  bottom: 0;
  background-color: var(--pri);
}

.timeline-row {
  display: flex;
}

.timeline-row:nth-child(even) .timeline-img-bx {
  order: 1;
}

.timeline-row:nth-child(even) .timeline-tx-bx {
  order: 0;
}

.timeline-row .timeline-img-bx,
.timeline-row .timeline-tx-bx {
  width: 50%;
  padding: 40px 50px;
}

.timeline-row .timeline-tx-bx {
  position: relative;
  align-content: center;
}

.timeline-row .timeline-tx-bx .tt {
  font-size: 25px;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--font);
  margin-bottom: 10px;
}

.timeline-row .timeline-tx-bx p {
  margin-bottom: 0;
  text-align: justify;
}

.timeline-row .timeline-tx-bx .years {
  position: absolute;
  top: 0;
  left: 30px;
  padding: 8px 20px;
  border-radius: 20px;
  background-color: var(--pri);
  color: white;
  font-family: var(--font);
  font-weight: 600;
  font-size: 18px;
}

.timeline-row:nth-child(even) .timeline-tx-bx .years {
  right: 30px;
  left: auto;
}

.timeline-row .timeline-tx-bx .years::before {
  content: "";
  position: absolute;
  top: 21px;
  left: -30px;
  width: 100%;
  height: 2px;
  background: var(--pri);
  z-index: -1;
}

.timeline-row:nth-child(even) .timeline-tx-bx .years::before {
  right: -30px;
  left: auto;
}

.timeline-row .timeline-tx-bx .years::after {
  content: "";
  left: -38px;
  top: 13px;
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: var(--pri);
  border-radius: 100%;
}

.timeline-row:nth-child(even) .timeline-tx-bx .years::after {
  right: -38px;
  left: auto;
}

/* ============================================================
   CERTIFICATES
   ============================================================ */
.certificate-bx {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 3px;
  transition: 0.2s ease-in-out;
}

.certificate-bx:hover {
  transform: scale(1.02);
}

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

.certificate-bx .img-bx img {
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}

.certificate-bx .tt {
  background-color: var(--off-white);
  padding: 10px;
  line-height: 1;
  align-content: center;
  color: var(--text-color);
  font-family: var(--font);
  font-size: 15px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.certificate-bx .tt svg {
  margin-right: 3px;
}

/* ============================================================
   CALL / CONTACT BOXES
   ============================================================ */
.call-bx {
  background-color: var(--off-white);
  padding: 20px;
  display: flex;
  gap: 10px;
  align-items: center;
  border-radius: 10px;
}

.call-bx .icon svg {
  width: 45px;
  height: 45px;
  color: var(--pri);
}

.call-bx .tx-bx p {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--para-color);
  line-height: 1;
}

.call-bx .tx-bx .tt {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-color);
  font-family: var(--font);
}

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

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

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

.contact-bx .head-sec .tt {
  font-size: 23px;
}

.contact-bx .main-btn {
  padding: 13px 15px;
  font-size: 15px;
}

.contact-bx .con-bx {
  display: flex;
  align-items: center;
  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 0px 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(--font2);
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--text-color);
  margin-bottom: 0;
}

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

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

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

/* Contact social overrides */
.contact-bx.ft-bx ul.social li a {
  border: 1px solid rgba(0, 0, 0, 0.4);
  color: var(--sec);
}

.contact-bx.ft-bx ul.social li.facebook a {
  background: #3c5b9b;
  color: white;
  border: 0;
}

.contact-bx.ft-bx ul.social li.twitter a {
  background-color: #000;
  color: white;
  border: 0;
}

.contact-bx.ft-bx ul.social li.linkedin a {
  background: #027ba5;
  color: white;
  border: 0;
}

.contact-bx.ft-bx ul.social li.youtube a {
  background: #f70000;
  color: white;
  border: 0;
}

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

/* ============================================================
   CONTENT SECTIONS
   ============================================================ */
.content-sec h1,
.content-sec h2,
.content-sec h3,
.content-sec .tt {
  text-transform: capitalize;
  font-size: 25px;
  font-weight: 700;
  color: var(--text-color);
  text-align: left;
  margin-bottom: 7px;
  line-height: 1.3;
}

.content-sec h2,
.content-sec h3,
.content-sec .tt {
  font-size: 22px;
}

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

.content-sec p a {
  color: var(--pri);
}

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

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

.content-sec ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  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='%230b77b7' 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;
}

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

/* Table (unified – covers both .content-sec table and global table) */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: #fff;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: #aaa;
  border-style: solid;
  border-width: 1px;
}

th,
td {
  padding: 10px 14px;
  font-size: 15px;
  text-align: left;
}

th {
  color: var(--text-color);
  background: #f5f5f5;
  font-weight: 600;
}

td {
  color: #555;
}

tbody tr {
  background: #fafafa;
}

tbody tr:nth-child(even) {
  background: #fafafa;
}

tbody tr:hover {
  background: #f1f1f1;
  transition: 0.3s ease;
}

table strong,
table b {
  font-weight: 600;
}

/* .content-sec table overrides (glassmorphism style) */
.content-sec table {
  background: rgba(255, 255, 255, 0.35);
  overflow: hidden;
}

.content-sec th {
  background: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(200, 185, 160, 0.35);
  padding: 10px 14px;
}

.content-sec td {
  padding: 9px 14px;
}

/* ============================================================
   TABLE OF CONTENTS
   ============================================================ */
.table-of-con {
  padding: 20px;
  background: var(--off-white);
  margin-bottom: 20px;
}

.table-of-con .title {
  font-weight: 600;
  font-size: 20px;
  color: var(--text-color);
  margin-bottom: 10px;
  font-family: var(--font);
}

.table-of-con ul {
  padding-left: 20px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.table-of-con ul li {
  padding: 2px 0;
  color: var(--para-color);
  font-weight: 400;
  cursor: pointer;
}

.table-of-con ul li:hover {
  text-decoration: underline;
}

/* ============================================================
   ACCORDION & FAQ
   ============================================================ */
.accordion-item,
.accordion-item:first-of-type,
.accordion-item:last-of-type,
.accordion-item:not(:first-of-type) {
  margin-bottom: 15px;
  background: var(--off-white);
  border: 0;
  padding: 16px 17px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.07);
  border-radius: 0;
}

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

.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: 0;
}

.accordion-button:not(.collapsed) {
  box-shadow: none !important;
  background: transparent;
  border: 0;
  color: var(--black);
  border-radius: 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);
  border-radius: 0;
}

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

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

/* FAQ nav pills */
.faq-sec .nav-pills .nav-link {
  background-color: var(--off-white);
  color: var(--text-color);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.07);
  padding: 10px 16px;
  text-align: left;
  font-family: var(--font);
  font-weight: 500;
  font-size: 16px;
  border-radius: 0;
}

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

.faq-sec .nav-pills .nav-link.active,
.faq-sec .nav-pills .show > .nav-link {
  color: var(--white);
  background-color: var(--pri);
}

/* Infrastructure nav pills */
.infras .nav-pills .nav-link {
  background-color: var(--text-light);
  color: white;
  font-size: 15px;
  padding: 8px 18px;
  border-radius: 0;
  font-family: var(--font);
  font-weight: 500;
}

.infras .nav-pills .nav-link.active {
  background-color: var(--pri);
  color: white;
}

.sec-head {
  position: relative;
  /* overflow: hidden; */
  padding-block: 6px 10px;
}

.sec-head .sub-tt {
  position: relative;
  z-index: 2;
}

.sec-head .title {
  position: relative;
  margin-bottom: 0;
}

/* ---- Animated watermark text ---- */
.cs-animated-text {
  /* positioning */
  position: absolute;
  z-index: 1;
  top: 18%;
  left: 50%;
  transform: translate(-50%, -50%);

  /* appearance */
  font-size: clamp(44px, 7.5vw, 108px);
  font-weight: 800;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  pointer-events: none;
  user-select: none;

  /* shimmer gradient */
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.04) 20%,
    rgba(0, 0, 0, 0.11) 50%,
    rgba(0, 0, 0, 0.04) 80%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: cs-sweep 5s linear infinite;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes cs-sweep {
  0% {
    background-position: 200% center;
  }

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

/* ---- Left-aligned variant ---- */
.cs-animated-text.cs-animated-text2 {
  left: 0;
  transform: translateY(-50%);
}

/* ---- Light / dark-bg sections (e.g. seo-sec) ---- */
.cs-animated-text.cs-text-light {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.05) 20%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.05) 80%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: cs-sweep 5s linear infinite;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---- Vision section background ---- */
.vision {
  background-color: var(--off-white);
}

/* ============================================================
   PRODUCTS GRID
   ============================================================ */
.products {
  background-color: var(--off-white);
}

.products .bx {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(235, 234, 234);
  box-shadow: 0 .5px 4px rgba(0,0,0,.3);
}

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

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

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

.products .bx .desp {
  font-size: 20px;
  color: var(--black);
  padding: 10px;
  background-color: var(--white);
  transition:
    background 0.35s ease,
    color 0.35s ease;
}

.products .bx .desp span {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.products .bx:hover .desp {
  background: var(--black);
  color: var(--white);
}

.products .bx .desp .icon-bx {
  transition:
    transform 0.35s cubic-bezier(0.3, 1.5, 0.4, 1),
    color 0.3s ease;
}

.products .bx:hover .desp .icon-bx {
  transform: rotate(45deg);
  color: var(--sec);
}

.products .bx .overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 57px;
  top: 0;
  pointer-events: none;
  z-index: 2;
  text-align: end;
}

.products .bx .overlay .ovly-dedp {
  position: absolute;
  top: 67%;
  right: 0;
  transform: translateY(-50%) translateX(105%);
  width: 78%;
  font-size: 14px;
  color: var(--black);
  background: var(--white);
  padding: 12px 14px;
  line-height: 1.6;
  border-left: 3px solid var(--sec);
  margin: 0;
  pointer-events: auto;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.products .bx:hover .overlay .ovly-dedp {
  transform: translateY(-50%) translateX(-5%);
}

.products .bx .overlay .main-btn2 {
  position: absolute;
  bottom: 14px;
  right: 14px;
  pointer-events: auto;
  transform: translateY(60px);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.08s,
    opacity 0.35s ease 0.08s;
}

.products .bx:hover .overlay .main-btn2 {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================================
   MATRIX / BACKGROUND SECTION
   ============================================================ */
.matrix {
  position: relative;
  z-index: 1;
  /* background-image: url("../images/ceo-bg.webp"); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.matrix::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  opacity: 0.5;
  z-index: 0;
}

.matrix > * {
  position: relative;
  z-index: 2;
}

.matrix .bx {
  padding: 18px;
  background: var(--off-white);
  position: relative;
  box-shadow: 8px 8px 0 rgba(11, 119, 183, 0.35);
  transition: all 0.3s ease;
}

.matrix .bx:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 rgba(11, 119, 183, 0.35);
}

/* ============================================================
   PROJECTS / SHOWCASE
   ============================================================ */
.projects {
  background-color: var(--off-white);
}

.showcase {
  width: 100%;
}

.showcase .swiper-wrapper .swiper-slide {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  aspect-ratio: 1/1;
}

.card-inner {
  position: absolute;
  inset: 0;
}

.card-front {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82);
  transition: transform 0.5s ease;
}

.swiper-slide:hover .card-front img {
  transform: scale(1.05);
}

.card-back {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fff;
  z-index: 4;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  transform-origin: bottom center;

  opacity: 1;
  border-radius: 6px;
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.25s ease;
}

.swiper-slide:hover .card-back {
  transform: rotateX(0deg);
  opacity: 1;
}

.back-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.back-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.07;
  filter: grayscale(1);
}

.back-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 100%;
}

.back-text {
  padding: 12px 18px;
}

.back-title {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 7px;
}

.back-line {
  width: 28px;
  height: 2px;
  background: var(--pri);
  margin-bottom: 7px;
}

.back-sub {
  font-size: 15px;
  color: #888;
  letter-spacing: 0.02em;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-bx {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  border-radius: 1px solid rgba(0,0,0,0.20);
  transform: translateY(0);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.gallery-bx .img-bx {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-bx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  transition:
    transform 0.6s ease,
    filter 0.4s ease;
}

.gallery-bx .img-bx{
  position: relative;
}

 .gallery-bx .img-bx::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 59, 110, 0.55), rgba(10, 59, 110, 0.08));
  opacity: 0;
  z-index: 1;
  transition: opacity 0.4s ease;
}

.gallery-bx .img-bx::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 2;
  transition: left 0.55s ease;
  pointer-events: none;
}

.gallery-bx .img-bx:hover::before {
  opacity: 1;
}

.gallery-bx .img-bx:hover::after {
  left: 140%;
}

.gallery-bx .link-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  z-index: 3;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  opacity: 0;
  transition: 0.4s ease;
}

.gallery-bx .link-wrap svg {
  width: 22px;
  height: 22px;
}

.gallery-bx .tt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 60px 20px 14px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 10%,
    rgba(0, 0, 0, 0) 70%
  );
  z-index: 2;
  transform: translateY(20px);
  opacity: 0.9;
  transition: 0.45s ease;
}

.gallery-bx:hover {
  
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}

.gallery-bx:hover img {
  transform: scale(1.08);
  filter: blur(1.5px);
}


.gallery-bx .content-bx{
  padding: 10px 15px;
  border-top: 1px solid rgba(0,0,0,0.15);
    transition: all .4s ease;
      color: var(--pri);
      transition: all .4s ease;
}

 

.gallery-bx .content-bx .ttl{
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  transition: all .4s ease;
}

.gallery-bx:hover .link-wrap {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

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

.gallery-bx::before,
.gallery-bx::after,
.gallery-bx .link-wrap,
.gallery-bx .tt {
  pointer-events: none;
}

/* ============================================================
   VISION / MISSION
   ============================================================ */
.vision .vision-bx {
}

.vision .bx {
  width: 100%;
  background: #fff;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.vision .bx:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.vision .bx .img-bx {
  width: 100%;
  overflow: hidden;
}

.vision .bx .img-bx img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition:
    transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.5s ease;
}

.vision .bx:hover .img-bx img {
  transform: scale(1.06);
  filter: brightness(0.8);
}

.vision .bx .title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark, #1a1a2e);
  padding: 22px 24px 0;
  position: relative;
  display: inline-block;
}

.vision .bx .title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 24px;
  width: 30px;
  height: 2.5px;
  border-radius: 2px;
  transition: width 0.4s ease;
}

.vision .vis-bx .title::after {
  background-color: var(--pri);
}

.vision .miss-bx .title::after {
  background: var(--secondary, #1a1a2e);
}

.vision .bx:hover .title::after {
  width: 50px;
}

.vision .bx p {
  padding: 18px 24px 28px;
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #555;
}

.vision .bx::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0 0 14px 14px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.vision .vis-bx::after {
  background: linear-gradient(90deg, #393185, rgba(57, 49, 133, 0.15));
}

.vision .miss-bx::after {
  background: linear-gradient(
    90deg,
    var(--secondary, #1a1a2e),
    rgba(26, 26, 46, 0.15)
  );
}

.vision .bx:hover::after {
  transform: scaleX(1);
}

/* ============================================================
   PRODUCT BLOCKS (.pb-box)
   ============================================================ */
.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;
  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(10, 59, 110, 0.14),
    0 4px 10px rgba(0, 0, 0, 0.07);
}

.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);
}

.pb-box .pb-product {
  color: var(--black);
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-sec h1,
.blog-sec h2,
.blog-sec h3,
.blog-sec h4,
.blog-sec h5,
.blog-sec h6 {
  scroll-margin-top: 90px;
}

.blog-card {
  background-color: var(--off-white);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  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;
}

/* Mini blog sidebar */
.mini-blogs,
.qut-bx {
  background-color: var(--off-white);
  padding: 18px;
  border: 1px solid var(--off-white);
}

.mini-blogs .blog-bx.blog-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  transition: opacity 0.25s ease;
}

.mini-blogs .blog-bx.blog-card:last-child {
  border-bottom: none;
}

.mini-blogs .tt {
  color: var(--pri);
}

.blog-bx.blog-card .img-bx {
  flex-shrink: 0;
  width: 80px;
  min-width: 80px;
  height: 60px;
  overflow: hidden;
}

.blog-bx .img-bx img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.mini-blogs .blog-bx.blog-card:hover .img-bx img {
  transform: scale(1.08);
}

.blog-bx.blog-card .tx-bx .tt a {
  font-size: 13px;
  font-weight: 500;
  color: #1a1a2e;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  line-height: 1.45;
  margin-bottom: 4px;
}

.blog-bx.blog-card .tx-bx p {
  font-size: 12px;
  color: #999;
  line-height: 1.4;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   CLIENTS
   ============================================================ */
.clientSlider .swiper-wrapper {
  transition-timing-function: linear;
}

.clients-bx img {
  aspect-ratio: 25/14;
  object-fit: contain;
  border-radius: 1px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  margin-block: 3px;
}

/* ============================================================
   SEO / PLANNING SECTION
   ============================================================ */
.seo-sec {
  position: relative;
  z-index: 1;
  background-image: url("../images/sco-bg-2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
 
.seo-sec::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--pri) 40%, transparent),
    color-mix(in srgb, var(--sec) 45%, transparent)
  );
  z-index: -1;
}

.seo-sec > * {
  position: relative;
  z-index: 2;
}

.seo-sec .cs-animated-text {
  top: 50%;
}

.planinmg {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.planinmg .bx {
  height: 100%;
  text-align: center;
  padding: 28px 20px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.planinmg .bx::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
}

.planinmg .bx:hover {
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.planinmg .bx .num-bx {
  width: 75px;
  height: 75px;
  margin: 0 auto 10px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.05);
}

.planinmg .bx .num-bx .num {
  font-size: 60px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.planinmg .bx p {
  margin: 0;
  color: var(--white);
}

/* ============================================================
   BACKGROUND HELPERS
   ============================================================ */
.bg-sec {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.95) 100%
  ) !important;
  background-color: var(--pri) !important;
}

.bg-pri {
  background-color: var(--sec) !important;
  align-content: center;
  color: var(--off-white);
}

.bg-pri .content-sec h1,
.bg-pri .content-sec h2,
.bg-pri .content-sec h3,
.bg-pri .content-sec h4,
.bg-pri .content-sec h5,
.bg-pri .content-sec h6 {
  color: var(--white);
}

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

.bg-gradiant {
  background-image: url(../images/bg/bg-gradient-2.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.bg-liner {
  background:
    linear-gradient(
      135deg,
      rgba(57, 49, 133, 0.45) 0%,
      rgba(11, 119, 183, 0.45) 100%
    ),
    url("../images/footer-top.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
}

/* ============================================================
   LEAD / COUNTER SECTION
   ============================================================ */
.lead-sure-section {
  padding: 50px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.inner-bx {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 35px;
}

/* ============================================================
   MARKET SECTION
   ============================================================ */
.market-sec {
  padding: 60px 0;
  font-family: var(--font2);
}

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

.market-sec h2,
.market-sec h3 {
  font-size: 20px;
}

.market-sec .market-bx {
  padding: 10px 12px;
  background-color: var(--off-white);
  color: var(--text-color);
  font-size: 15px;
  transition: 0.2s ease-in-out;
  border-radius: 10px;
}

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

/* ============================================================
   ANIMATED HERO TEXT
   ============================================================ */
.acuda-stroke-title-two {
  line-height: normal;
  left: 15px;
  margin: 0;
}

.acuda-stroke-title-two span {
  font-size: 65px;
  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;
}

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

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

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

  100% {
    opacity: 1;
  }
}

.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 TOGGLE
   ============================================================ */
.expend-content-sec {
  max-height: 460px;
  overflow: hidden;
}

.expend-content-sec.expanded {
  overflow-y: auto;
  padding-right: 10px;
}

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

.expend-content-sec.expanded::-webkit-scrollbar {
  width: 5px;
}

.expend-content-sec.expanded::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

.read-toggle {
  display: inline-block;
  color: currentColor;
  cursor: pointer;
  font-weight: 600;
  margin-top: 10px;
  user-select: none;
  font-size: 0.9em;
}

.read-toggle:hover {
  opacity: 0.8;
}

/* ============================================================
   VIDEO PLAYERS
   ============================================================ */
.abt-vid-bx,
.reels-vid {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.abt-vid-bx iframe,
.reels-vid 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%;
}

.reels-vid iframe {
  aspect-ratio: 35/62;
}

.youtube-player .youtube-thumbnail {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  background: transparent;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 3px 0px;
}

.youtube-player img,
.youtube-player iframe {
  aspect-ratio: 16/9 !important;
  object-fit: cover;
  object-position: center;
  width: 100%;
  display: block;
  transform: scale(1.01);
}

.youtube-player .play {
  height: 60px;
  width: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  position: absolute;
  background: url(../images/icon/play-1.png) no-repeat center/contain;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  transition: 0.3s ease;
}

.youtube-player:hover .play {
  animation: none;
  transform: translate(-50%, -50%) scale(1.1);
}

.youtube-player .tt {
  font-size: 16px;
  margin-top: 10px;
  color: var(--text-color);
  text-align: center;
  font-family: var(--font);
  font-weight: 600;
}

/* ============================================================
   FLOATING / STICKY UI
   ============================================================ */
/* .business-enq {
  position: fixed;
  bottom: 75px;
  right: 20px;
  z-index: 9;
  border: 0;
  outline: 0;
  background-color: var(--pri);
  color: var(--white);
  font-size: 14px;
  padding: 5px 15px 5px 5px;
  border-radius: 24px;
  font-weight: 400;
  transition: 0.2s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 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;
} */

.business-enq {
  position: fixed;
  bottom: 75px;
  right: 20px;
  z-index: 999;
  border: none;
  outline: none;
  background: linear-gradient(135deg, var(--pri), var(--sec));
  color: #fff;
  font-size: 14px;
  padding: 10px 22px 10px 14px;
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Icon */
.business-enq .icon {
  display: flex;
  transition: transform 0.3s ease;
}

/* Hover Effect */
.business-enq:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 25px rgba(57, 49, 133, 0.4);
}

/* Icon hover animation */
.business-enq:hover .icon {
  transform: rotate(-8deg) scale(1.2);
}

/* Click effect */
.business-enq:active {
  transform: scale(0.95);
}

/* Pulse Animation using your primary color */
@keyframes pulsePri {
  0% {
    box-shadow: 0 0 0 0 rgba(57, 49, 133, 0.6);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(57, 49, 133, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(57, 49, 133, 0);
  }
}

.business-enq {
  animation: pulsePri 2s infinite;
}

.whatapp_btn {
  background: #01e675;
  width: 40px;
  height: 40px;
  color: var(--white);
  position: fixed;
  right: 20px;
  bottom: 130px;
  cursor: pointer;
  z-index: 9999;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out;
  box-shadow: 0px 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);
}

/* Scroll-to-top */
.scroll-top-wrapper {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.scroll-top-wrapper.show {
  opacity: 1;
  pointer-events: auto;
}

.scroll-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 14px;
  font-weight: 800;
  color: var(--text-color);
  text-shadow: 1px 1px 3px white;
  font-family: var(--font);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.scroll-line {
  width: 2px;
  height: 80px;
  background: #ccc;
  position: relative;
  overflow: hidden;
}

.scroll-progress {
  width: 100%;
  height: 0%;
  background: var(--pri);
  position: absolute;
  bottom: 0;
  transition: height 0.2s ease;
}

/* ============================================================
   MODALS
   ============================================================ */
.modal-header {
  padding: 18px 20px 0;
  border-radius: 0;
  border: 0;
  background: var(--off-white);
}

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

.modal-header.modal-header2 .main-tt {
  color: white;
}

.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");
}

.modal-content {
  border-radius: 10px;
  overflow: hidden;
  border: 0;
}

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

.modal-body {
  padding: 13px 18px 20px;
  background: var(--off-white);
}

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

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

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

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

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

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  overflow: hidden;
  padding: 60px 0 15px;
  position: relative;
  z-index: 1;
  /*background-image: url("../images/footer-2.webp");*/
  background-color: black;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

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;
  font-weight: 300;
  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(--sec);
  opacity: 1;
}

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

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

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

.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-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.offcanvas-body .ft-bx .con-bx a,
.offcanvas-body .ft-bx .con-bx p {
  color: var(--para-color);
}

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

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

.ft-bx p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
}

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

.ft-bx ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  padding: 3px 0;
  transition: 0.1s;
  display: inline-block;
  font-weight: 500;
}

.ft-bx ul li a:hover {
  color: var(--pri);
  opacity: 1;
}

.ft-bx ul.social {
  display: flex;
  gap: 5px;
  justify-content: start;
  background-color: transparent;
  padding: 0;
}

.ft-bx ul.social li a {
  background-color: var(--white);
  width: 38px;
  height: 38px;
  color: var(--pri);
  border-radius: 100%;
  align-content: center;
  text-align: center;
  line-height: 1;
  opacity: 1;
}

.ft-bx ul.social li a:hover,
.offcanvas-body .ft-bx ul.social li a {
  background-color: var(--pri);
  color: white;
}

footer ul.social li a {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer ul.social li.facebook a {
  background: #3c5b9b;
  color: white;
  border: 0;
}

footer ul.social li.twitter a {
  background-color: #000;
  color: white;
  border: 0;
}

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

footer ul.social li.youtube a {
  background: #f70000;
  color: white;
  border: 0;
}

footer ul.social li.linkedin a {
  background: #027ba5;
  color: white;
  border: 0;
}

.copyright {
  padding-top: 15px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

.copyright p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
  font-weight: 500;
  font-size: 13px;
}

.copyright p a {
  color: rgba(255, 255, 255, 0.6);
  display: inline;
  font-weight: 600;
}

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

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: 15px;
  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(--font2);
  color: var(--text-color);
  font-weight: 400;
}

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

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

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

/* ============================================================
   GLOW ANIMATION (highlight effect)
   ============================================================ */
.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(255, 255, 0, 0.3);
    box-shadow: 0 0 10px rgba(255, 255, 0, 0.3);
  }

  100% {
    background-color: rgba(255, 255, 0, 0);
    box-shadow: 0 0 0 rgba(255, 255, 0, 0);
  }
}

/* ============================================================
   CONTACT BX CONTAINER
   ============================================================ */
.contactBx-container {
  background-color: var(--off-white);
  padding: 30px;
  border: 1px solid var(--off-white);
  height: 100%;
  border-radius: 6px;
}

/* ============================================================
   FORM SECTION
   ============================================================ */
.form-sec .form {
  padding: 30px;
  background-color: var(--off-white);
      border: 1px solid rgb(235, 234, 234);
      box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

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

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

.offcanvas {
  width: 360px !important;
  max-width: 92vw;
  background: var(--white);
  color: #e8e6f4;
  border-left: none !important;
  box-shadow: -8px 0 40px rgba(57, 49, 133, 0.25);
  height: 100vh;
}

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

.offcanvas-header {
  padding: 22px 26px 18px;
  border-bottom: 1px solid rgba(57, 49, 133, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(
    135deg,
    rgba(57, 49, 133, 0.14),
    rgba(11, 119, 183, 0.07)
  );
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 6px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #393185, #0b77b7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

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

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

.logo-sub {
  font-size: 11px;
  color: #9e9bbf;
  margin-top: 2px;
  font-weight: 400;
}

.offcanvas .btn-close {
  --bs-btn-close-bg: none;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(57, 49, 133, 0.25);
  background: rgba(57, 49, 133, 0.1);
  display: flex;
  border-radius: 0;
  align-items: center;
  justify-content: center;
  /* color: #9e9bbf; */
  opacity: 1;
  flex-shrink: 0;
  transition:
    background 0.22s,
    border-color 0.22s,
    color 0.22s,
    transform 0.28s;
}

.offcanvas .btn-close svg {
  width: 13px;
  height: 13px;
  pointer-events: none;
}

.offcanvas .btn-close:hover {
  background: rgba(57, 49, 133, 0.2);
  border-color: rgba(57, 49, 133, 0.55);
  /* color: #e8e6f4; */
  transform: rotate(90deg);
}

.offcanvas-body {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(57, 49, 133, 0.25) transparent;
  background: var(--white);
}

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

.offcanvas-body::-webkit-scrollbar-thumb {
  background: rgba(57, 49, 133, 0.25);
  border-radius: 2px;
}

.offcanvas-body .section {
  padding: 26px 26px;
  border-bottom: 1px solid rgba(57, 49, 133, 0.12);
}

.sec-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #0b77b7;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sec-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(11, 119, 183, 0.12), transparent);
}

.offcanvas-body .desc {
  color: var(--black);
  font-weight: 300;
  margin: 0;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offcanvas-body .bx {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 11px 12px;
  transition:
    background 0.22s,
    transform 0.22s;
  cursor: default;
}

.offcanvas-body .bx:hover {
  background: rgba(57, 49, 133, 0.1);
  transform: translateX(4px);
}

.offcanvas-body .bx:hover .icon-bx {
  background: rgba(57, 49, 133, 0.2);
  border-color: rgba(57, 49, 133, 0.55);
}

.offcanvas-body .icon-bx {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(57, 49, 133, 0.25);
  background: rgba(57, 49, 133, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.22s,
    border-color 0.22s;
}

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

.icon-bx.icon-pri {
  color: #393185;
}

.icon-bx.icon-sec {
  color: #0b77b7;
}

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

.offcanvas-body .bx .info strong {
  font-weight: 500;
  color: var(--pri);
  display: block;
}

.offcanvas-body .bx .info span {
  color: var(--black);
  line-height: 1.55;
}

.social-section {
  padding: 22px 26px 24px;
}

.nav-social {
  display: flex;
  gap: 9px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.nav-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(57, 49, 133, 0.25);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pri);
  text-decoration: none;
  transition:
    background 0.22s,
    color 0.22s,
    border-color 0.22s,
    transform 0.22s;
}

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

.nav-social a:hover {
  background: linear-gradient(135deg, #393185, #0b77b7);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
}

.offcanvas-footer {
  padding: 13px 26px;
  background: rgba(57, 49, 133, 0.07);
  border-top: 1px solid rgba(57, 49, 133, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.offcanvas-footer span {
  font-size: 12px;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 6px;
}

.offcanvas-footer .footer-time {
  font-size: 11.5px;
}

.online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0b77b7;
  box-shadow: 0 0 0 2px rgba(11, 119, 183, 0.25);
  display: inline-block;
  flex-shrink: 0;
}

.menu-btn {
  background: var(--pri);
  border: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  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);
}

.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: -5px;
  width: 150px;
  height: 150px;
  background-image: url("../images/svgs/baby-svgrepo-com.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
  bottom: 10px;
}

.ls-thankyou-modal .ls-thankyou-modal-content::after {
  content: "";
  position: absolute;
  top: 38px;
  right: 5px;
  width: 90px;
  height: 90px;
  background-image: url("../images/svgs/baby-cartoon-child-svgrepo-com\ \(1\).svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.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;
}

.matrix .main-bx {
  padding-bottom: 8px;
  padding-right: 8px;
}

.fs-25 {
  font-size: 25px;
}

.swiper {
  overflow: visible;
}

.pb-box .pb-product {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.ft-bx .con-bx .ic-bx{
  background: var(--off-white);
    min-height: 30px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 1px 4px;
}

.text-justify p {
  text-align: justify;
}