 /* Project Name: Apmats
    Version: 1.0
    Devloped by:Lead Sure Private Limited 
    Relase Date: 2026 */

:root {
  --font: "Nunito", sans-serif;
  --liner: linear-gradient(180deg,
      rgba(255, 255, 255, 0.15),
      rgba(255, 255, 255, 0));
  --pri: #14569d;
  --sec: #0fd9ec;
  --third: #0a3b6e;
  --text-color: #1f1f1f;
  --text-light: #8c8c8c;
  --para-color: #707070;
  --border-color: #e3e3e3;
  --white: #fff;
  --off-white: #f6f6f6;
  --black: #212529;
  --bg: #efefef;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--sec);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #333;
}

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

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

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

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

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

p a {
  display: inline;
}

ul li {
  font-size: 16px;
}

/* ============================================
   TYPOGRAPHY & COMMON
   ============================================ */
.title {
  font-weight: 800;
  color: var(--text-color);
  margin-top: 16px;
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1.2;
}

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

.tt {
  font-size: 16px;
  color: var(--para-color);
}

.sub-ttl {
  color: var(--third);
  background: var(--off-white);
  padding: 7px 14px;
  border-radius: 8px;
  display: inline-block;
  font-weight: 650;
  font-size: 15px;
}

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

.text-pri {
  color: var(--pri) !important;
}

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

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

.bg-liner {
  background-image: url("../images/ctaImg.png");
  background-color: var(--pri);
}

.bg-liner .main-btn {
  border: 2px solid var(--white);
}

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

/* ============================================
   HEAD SECTION
   ============================================ */
.head-sec {
  text-align: center;
  max-width: 950px;
  margin: 0 auto 35px;
}

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

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

.head-sec.text-white .sub-tt::before {
  border-bottom: 1px solid var(--white);
}

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

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

/* ============================================
   BUTTONS
   ============================================ */
.main-btn,
.main-btn2 {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  cursor: pointer;
  padding: 12px 12px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  line-height: 1;
  text-align: center;
  transition:
    color 0.38s ease,
    border-color 0.38s ease,
    box-shadow 0.3s ease,
    transform 0.2s ease;
}

.main-btn svg,
.main-btn2 svg {
  height: 16px;
  width: 16px;
}

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

.main-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0fd9ec 0%, #0bbcd0 50%, #078fa3 100%);
  z-index: -1;
  clip-path: ellipse(0% 0% at 0% 100%);
  transition: clip-path 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.main-btn2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #14569d 0%, #0e3f73 100%);
  z-index: -1;
  clip-path: ellipse(0% 0% at 100% 0%);
  transition: clip-path 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.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.text-decoration:hover {
  text-decoration: underline;
}

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

.productBrochureandvideo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 1px dashed #b5b5b5;
  padding: 10px 11px;
  font-weight: 500;
  transition: 0.3s;
  font-size: 14px;
  color: var(--text-color);
  font-family: var(--font);
  background-color: transparent;
  border-radius: 8px;
}

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

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

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

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

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

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

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

.SumoSelect.open .search-txt {
  font-weight: 500;
  border-radius: 4px;
  font-size: 15px;
  padding: 8px 12px;
  color: var(--text-color);
  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;
}

/* ITI Phone */
.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;
}

/* Custom Form Row */
.custom-from-row {
  padding: 35px;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.05);
  background-color: var(--white);
  color: var(--text-color);
  border-radius: 18px;
}

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

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

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.logo {
  max-width: 150px;
  width: auto;
  height: auto;
}

.top-bar {
  background-color: #ececec;
  display: none;
}

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

.top-bar p a {
  color: var(--black);
  transition: 0.2s ease;
  font-size: 14px;
  font-weight: 600;
}

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

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

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

.top-bar .social {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  gap: 10px;
  padding: 10px 20px 10px 30px;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
  background-color: var(--pri);
}

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

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

.top-bar .social svg {
  width: 16px;
  height: 16px;
  color: var(--white);
}

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

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

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

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

  to {
    transform: 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;
  position: relative;
  z-index: 99;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}


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

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

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

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

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

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

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

.navigation .menu {
  display: block;
}

.navigation .menu ul {
  width: 100%;
  margin: 0;
  padding: 0;
  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;
  background: transparent;
  font-weight: 600;
}



.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;
  top: 100%;
  left: 0;
  text-align: left;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  background: #fff;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}

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

.navigation .menu ul li ul.ls-dropdown li:last-child a {
  border-bottom: none;
}

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

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

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

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

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

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

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

/* Search */
.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;
}

/* ============================================
   MAIN BANNER
   ============================================ */
main,
main img {
  aspect-ratio: 1920 / 780;
  overflow: hidden;
  display: block;
  width: 100%;
  position: relative;
}

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

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

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

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

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

/* ============================================
   SWIPER & SLIDERS
   ============================================ */
.swiper_wrap {
  position: relative;
}

.swiper-pagination {
  position: static;
}

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

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

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

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

.testiSlider .swiper-slide {
  height: auto;
  margin-bottom: 10px;
}

.clientSlider .swiper-wrapper {
  transition-timing-function: linear;
}

/* ============================================
   SECTIONS - COMMON
   ============================================ */
.lead-sure-section {
  padding: 45px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* Counter */
.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;
}

/* Category Box */
.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;
}

/* Testimonial Box */
.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%;
  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(--text-color);
  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 */
.star-rating-wrap {
  display: flex;
  align-items: center;
}

.rating {
  display: flex;
  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;
}

/* Industry 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);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.abt-us {
  overflow: visible;
}

.abt-us .img-bx {
  width: 100%;
  padding-left: 100px;
  margin: 60px 0 100px;
  position: relative;
  padding-right: 60px;
}

.abt-us .img-bx img {
  width: 100%;
  border: 8px solid var(--white);
  border-radius: 18px;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.15);
  position: relative;
}

.abt-us .img-bx .title {
  font-size: 25px;
  padding: 30px 35px;
  background-color: var(--sec);
  color: var(--white);
  border-radius: 18px;
  position: absolute;
  transform: rotate(270deg);
  margin: 0;
  left: -175px;
  bottom: 142px;
  border-left: 8px solid var(--pri);
  border-right: 8px solid var(--pri);
  z-index: 5;
}

.abt-us .sm-img {
  position: absolute;
  top: 10px;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.15);
  border-radius: 18px;
}

.abt-us .sm-img img,
.abt-us .sm-img2 img {
  width: 100%;
  border: 8px solid var(--white);
  border-radius: 18px;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.15);
  max-height: 230px;
  max-width: 219px;
}

.abt-us .sm-img2 {
  position: absolute;
  bottom: 0;
  right: 72px;
}

.abt-us .bx {
  display: flex;
  align-items: center;
  gap: 10px;
}

.abt-us .bx .title {
  font-size: 20px;
  margin: 0;
}

.abt-us .bx .icon-bx {
  width: 100px;
  height: 100px;
}

.abt-us .bx .icon-bx svg {
  height: 100%;
  width: 100%;
  color: var(--pri);
}

.abt-us ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 35px;
}

.abt-us ul li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

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

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

.abt-us .btns {
  display: flex;
  gap: 20px;
}

/* About Section 2 */
.abt-sec2 {
  position: relative;
}

.abt-sec2 img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

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

/* Video Play Overlay */
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
}

.video-play-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  border-radius: 18px;
  transition: background 0.3s ease;
}

.play-outer-ring {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(6, 22, 20, 0.68);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: playPulse 2.4s ease-in-out infinite;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.video-play-overlay:hover .play-outer-ring {
  transform: scale(1.06);
}

.play-yellow-btn {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--sec);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
  transition: background 0.3s ease;
}

.play-dashed-svg {
  position: absolute;
  inset: -7px;
  width: calc(100% + 14px);
  height: calc(100% + 14px);
  animation: playSpin 5s linear infinite;
  pointer-events: none;
}

.play-triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 0 11px 20px;
  border-color: transparent transparent transparent rgba(15, 25, 20, 0.82);
  margin-left: 5px;
  position: relative;
  z-index: 1;
}

@keyframes playPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(6, 22, 20, 0.4);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 14px rgba(6, 22, 20, 0.08);
  }
}

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

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

.vision-sec .video-play-overlay {
  left: -80px;
  bottom: 80px;
}

/* ============================================
   CONTENT SECTION
   ============================================ */
.content-sec h1,
.content-sec h2,
.content-sec h3,
.content-sec .tt,
.cmTitle {
  font-weight: 800;
  color: var(--text-color);
  margin-top: 16px;
  margin-bottom: 8px;
  font-size: 30px;
  line-height: 1.2;
}

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

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

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

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

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

.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' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%2314569d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

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

/* Table */
.content-sec table {
  margin-bottom: 15px;
  width: 100%;
  text-align: center;
}

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

tbody,
td,
tfoot,
th,
thead,
tr {
  border-color: #aaa;
  border-style: solid;
  border-width: 1px;
  padding: 5px 10px;
  font-size: 15px;
}

th {
  color: var(--text-color);
}

/* Table of Contents */
.table-of-con {
  padding: 20px;
  background: var(--off-white);
  margin-bottom: 20px;
  border-radius: 10px;
}

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

/* Expand Content */
.expend-content-sec {
  max-height: 460px;
  overflow: hidden;
}

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

.category {
  max-height: 479px;
}

.expend-content-sec.expanded.category {
  max-height: 14000px;
  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;
}

/* CEO Section */
.ceo-sec {
  background-color: var(--bg);
}

.ceo-sec .tt {
  text-align: justify;
}

.ceo-sec .img-bx {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 18px;
  overflow: hidden;
}

.ceo-sec .img-bx img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

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

/* ============================================
   BLOG
   ============================================ */
.blog-sec {
  background-color: var(--bg);
}

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

/* .blog-sec .tt{
  display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
} */

.blog-sec .bx {
  overflow: hidden;
  border-radius: 18px;
}

.blog-sec .cont-sec {
  padding: 20px 15px;
  background-color: var(--white);
}

.blog-sec .cont-sec .title {
  font-size: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

}

.blog-sec .img-bx {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

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

.blog-sec .bx:hover .img-bx img {
  transform: scale(1.12) rotate(1.5deg);
  filter: brightness(1.08) saturate(1.15);
}

.blog-sec .img-bx::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent 0%,
      rgba(255, 255, 255, 0.25) 50%,
      transparent 100%);
  transition: left 0.7s ease;
  z-index: 2;
  pointer-events: none;
}

.blog-sec .bx:hover .img-bx::after {
  left: 150%;
}

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

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

.blog-card__meta .prof,
.blog-card__meta .blog-card__date {
  display: flex;
  align-items: center;
  gap: 5px;
}

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

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

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

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

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

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

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

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: "";
  position: absolute;
  top: -92%;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 200%;
  background-color: var(--white);
  z-index: 2;
  border-radius: 100%;
}

.gallery-section::after {
  content: "";
  position: absolute;
  bottom: -89%;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 200%;
  background-color: var(--white);
  z-index: 2;
  border-radius: 100%;
}

.gallery-swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-btn-prev,
.gallery-btn-next {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  z-index: 10;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    opacity 0.25s ease !important;
  opacity: 1 !important;
  background: var(--pri) !important;
  color: var(--white);
}

.gallery-btn-prev {
  left: 12px !important;
}

.gallery-btn-next {
  right: 12px !important;
}

.gallery-btn-prev::after,
.gallery-btn-next::after {
  font-size: 16px !important;
  font-weight: 900 !important;
  color: #fff !important;
}

.gallery-btn-prev:hover,
.gallery-btn-next:hover {
  transform: scale(1.12) !important;
  background: var(--third) !important;
}

.gallery-bx {
  background: #fff;
  position: relative;
  aspect-ratio: 1/1;
  box-shadow: 0 8px 25px rgba(10, 59, 110, 0.08);
  margin-bottom: 3px;
  border-radius: 18px;
  overflow: hidden;
  transform: translateY(30px);
  opacity: 0;
  animation: galleryFadeUp 0.8s ease forwards;
}

.gallery-bx:nth-child(1) {
  animation-delay: 0.1s;
}

.gallery-bx:nth-child(2) {
  animation-delay: 0.2s;
}

.gallery-bx:nth-child(3) {
  animation-delay: 0.3s;
}

.gallery-bx:nth-child(4) {
  animation-delay: 0.4s;
}

.gallery-bx .img-bx {
  display: block;
  width: 100%;
  height: 100%;
  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;
  transition: 0.4s ease;
  z-index: 1;
}

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

.gallery-bx:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(10, 59, 110, 0.16);
}

.gallery-bx:hover img {
  transform: scale(1.12) rotate(1deg);
  filter: blur(2px);
}

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

.gallery-bx.certificate-bx img,
.gallery-bx.certificate-bx {
  aspect-ratio: 164/235;
}

.gallery-bx .link-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  width: 52px;
  background-color: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
  border-radius: 100%;
  backdrop-filter: blur(6px);
}

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

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

.gallery-bx .tt {
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 55px 18px 14px;
  pointer-events: none;
  width: 100%;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.3px;
  background: linear-gradient(to top,
      rgba(2, 20, 4, 0.78) 10%,
      rgba(0, 0, 0, 0) 72%);
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
  z-index: 2;
  transform: translateY(12px);
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-bx:hover .tt {
  transform: translateY(0);
  opacity: 1;
}

@keyframes galleryFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* ============================================
   CATEGORY & SIDEBAR
   ============================================ */
.cate-img {
  max-width: 440px;
  float: right;
  width: 100%;
  margin-left: 30px;
  /* margin-bottom: 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;
}

.cate-form {
  background-color: var(--bg);
  padding: 15px 20px;
  border-radius: 18px;
}

.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/baby.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  border-radius: 12px;
}

.cat-nav-img::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(37, 211, 102, 0.18);
  border-color: rgba(37, 211, 102, 0.45);
  transform: translateY(-2px);
  color: var(--black);
}

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

.cat-nav-img .main-btn:hover svg {
  color: var(--black);
}

@keyframes cni-pulse {

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

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

/* Call Box */
.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);
}

/* Product Box (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;
  border-radius: 10px;
  animation: pb-slideUp 0.5s ease both;
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.pb-box:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 30px rgba(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);
}

/* ============================================
   SOCIAL ICONS (shared styles)
   ============================================ */
.contact-bx .social,
.top-bar .social {
  list-style: none;
  margin: 0;
}

.contact-bx .social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-bx .social li {
  position: relative;
}

.contact-bx .social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  text-decoration: none;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-bx .social li a svg {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.contact-bx .social li a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid;
  opacity: 0.35;
  transition:
    opacity 0.3s,
    inset 0.3s;
}

.contact-bx .social li a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;

  transition: opacity 0.3s ease;
}

/* Social platform colors — shared for footer & contact-bx */
.facebook a {
  color: #1877f2;
  background: rgba(24, 119, 242, 0.08);
}

.twitter a {
  color: #e0e0e0;
  background: rgba(255, 255, 255, 0.06);
}

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

.youtube a {
  color: #ff0000;
  background: rgba(255, 0, 0, 0.08);
}

.linkedin a {
  color: #0a66c2;
  background: rgba(10, 102, 194, 0.08);
}

.facebook a::before {
  border-color: #1877f2;
}

.twitter a::before {
  border-color: #e0e0e0;
}

.instagram a::before {
  border-color: #e1306c;
}

.youtube a::before {
  border-color: #ff0000;
}

.linkedin a::before {
  border-color: #0a66c2;
}

.facebook a::after {
  background: #1877f2;
}

.twitter a::after {
  background: #111;
}

.youtube a::after {
  background: #ff0000;
}

.linkedin a::after {
  background: #0a66c2;
}

.instagram a::after {
  background: radial-gradient(circle at 30% 110%,
      #fdf497,
      #fd5949,
      #d6249f,
      #285aeb);
  opacity: 0 !important;
}

.facebook a:hover,
.twitter a:hover,
.instagram a:hover,
.youtube a:hover,
.linkedin a:hover {
  color: #fff;
}

.instagram a:hover::after {
  opacity: 0.25 !important;
}

/* Tooltip */
.contact-bx .social li::after {
  content: attr(data-label);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #1e1e1e;
  color: #ccc;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s,
    transform 0.25s;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-bx .social li:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

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

footer ul.social li.twitter a {
  background: #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;
}

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

/* ============================================
   FOOTER
   ============================================ */
footer {
  overflow: hidden;
  padding: 60px 0 15px;
  position: relative;
  z-index: 1;
  background-color: var(--text-color);
}

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

.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.social {
  display: flex;
  gap: 5px;
  justify-content: start;
  background-color: transparent;
}

footer {
  overflow: hidden;
}

footer .social li {
  height: unset;
  width: unset;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  justify-content: center;
  align-self: center;
}

footer .social li a {
  display: flex;
  align-items: center;
}

footer .social svg {
  width: 20px;
  height: 20px;
}

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

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

ul.footer-menu-list li a {
  margin-right: 15px;
  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;
}

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

/* ============================================
   CONTACT
   ============================================ */
.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::before {
  top: 40px;
}

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

.contactBx-container {
  background-color: var(--off-white);
  padding: 30px;
  border: 1px solid var(--off-white);
  height: 100%;
  border-radius: 18px;
}

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

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

/* ============================================
   MODAL
   ============================================ */
.modal-content {
  border-radius: 10px;
  overflow: hidden;
  border: 0;
}

.modal-header {
  padding: 0 20px 0;
  padding-top: 18px;
  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-body {
  padding: 13px 18px 20px;
  background: var(--off-white);
}

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

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

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

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

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

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

/* ============================================
   ACCORDION
   ============================================ */
.accordion-item,
.accordion-item:first-of-type,
.accordion-item:not(:first-of-type) {
  margin-bottom: 12px;
  background: #fff;
  border: 1.5px solid var(--border-color) !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: border-radius 0.3s ease;
}

.accordion-item:has(.accordion-button:not(.collapsed)) {
  border-radius: 8px !important;
}

.accordion-item:last-of-type {
  margin-bottom: 0;
}

.accordion-button {
  border-radius: 0 !important;
  background: #fff;
  font-weight: 600;
  outline: 0 !important;
  color: var(--text-color);
  font-size: 16px;
  padding: 16px 50px 16px 20px;
  position: relative;
  transition: all 0.3s ease;
  width: 100%;
}

.accordion-button:not(.collapsed) {
  background: var(--pri);
  color: #fff !important;
  box-shadow: none !important;
}

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

.accordion-button::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231a1a1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E");
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  transform: translateY(-50%) rotate(0deg);
}

.accordion-body {
  padding: 18px 20px 20px;
  color: var(--para-color);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================
   FAQ & NAV PILLS
   ============================================ */
.nav-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(145, 139, 139, 0.555);
}

.nav-pills .nav-link {
  color: var(--black);
  padding: 12px 30px;
  border-radius: 8px;
  border: 1px dotted var(--third);
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background-color: var(--third);
  border: none;
}

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

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

.faq-sec .nav-pills {
  border: none;
  padding-bottom: 0;
}

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

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

/* ============================================
   PROGRESS RINGS
   ============================================ */
.progress-group {
  display: flex;
  align-items: center;

  margin-top: 10px;
}

.progress-item {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.progress-ring-wrap {
  position: relative;
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}

.progress-ring {
  transform: rotate(-90deg);
}

.ring-bg {
  fill: none;
  stroke: #e0e0e0;
  stroke-width: 5;
}

.ring-fill {
  fill: none;
  stroke: var(--pri);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 238.76;
  stroke-dashoffset: 238.76;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ring-percent {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
}

.progress-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.progress-label strong {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
}

.progress-label span {
  font-size: 15px;
  font-weight: 400;
  color: #1a1a2e;
  line-height: 1.3;
}

/* ============================================
   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 & CLIENTS
   ============================================ */
.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%;
}

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

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

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

/* ============================================
   BREADCRUMB
   ============================================ */
.img-breadcum {
  padding: 80px 0 70px;
  text-align: left;
  position: relative;
  z-index: 1;
}

.img-breadcum .head-sec {
  margin-bottom: 0;
}

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

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

.img-breadcum .sub-ttl {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 5px;
  background-color: var(--third);
  border-radius: 18px;
  padding: 8px 16px;
  display: inline-block;
}

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

.breadcum-sec ul {
  display: flex;
  gap: 0 18px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.breadcum-sec ul li {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding-right: 25px;
}

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

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

.breadcum-sec ul li:last-child::after {
  display: none;
}

/* ============================================
   FIXED WIDGETS
   ============================================ */
.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;
  transition: 0.2s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  font-weight: 400;
}

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

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

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

.whatapp_btn {
  background: #01e675;
  width: 40px;
  height: 40px;
  color: var(--white);
  position: fixed;
  right: 20px;
  bottom: 130px;
  cursor: pointer;
  z-index: 9;
  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 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;
}

/* ============================================
   REVIEW SWIPER
   ============================================ */
.review-swiper-wrap {
  position: relative;
  padding-right: 20px;
}

.review-swiper {
  width: 100%;
}

.review-slide {
  position: relative;
  border-radius: 18px;
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  background-color: var(--white);
  padding: 20px;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.05);
}

.review-slide::after {
  position: absolute;
  content: "";
  bottom: 20px;
  right: 15px;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='currentColor'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%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");
}

.review-pagination {
  margin-top: 20px;
  text-align: center;
  bottom: 0 !important;
}

.review-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ccc;
  opacity: 1;
}

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

.review-swiper .tt {
  padding-bottom: 20px;
  border-bottom: 1px dotted #0a3a6e6c;
}

.review-slide .img-bx {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  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;
}

.review-slide .profile-bx {
  display: flex;
  padding: 15px 0;
  align-items: center;
  gap: 20px;
}

.review-slide .profile-bx .tt {
  border: none;
}

.review-slide .profile-bx .sub-ttl {
  background-color: unset;
  color: var(--third);
  padding: 0;
  font-size: 18px;
  font-weight: 750;
}

/* ============================================
   PRODUCT SWIPER
   ============================================ */
.product {
  background-color: var(--bg);
}

.product-swiper {
  margin: auto;
  padding-bottom: 80px;
}

.product-swiper .swiper-slide {
  background-image: url("../images/product.webp");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  animation: slideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.product-swiper .bx {
  padding: 13px 50px;
  text-align: center;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-swiper .bx .icon-bx {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  /* background: var(--pri); */
  border: 2px dashed var(--pri);
  margin-bottom: 20px;
  position: relative;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.product-swiper .bx:hover .icon-bx {
  transform: rotateY(360deg) scale(1.1);
}

.product-swiper .bx .icon-bx svg {
  stroke: #fff;
}

.product-swiper .title {
  font-size: 24px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.product-swiper .bx .tt {
  text-align: center;
  transform: translateY(6px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.product-swiper .swiper-button-next,
.product-swiper .swiper-button-prev {
  color: #fff;
  top: auto;
  bottom: 10px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pri), #0077b6);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.product-swiper .swiper-button-prev {
  left: 45.5%;
}

.product-swiper .swiper-button-next {
  right: 45.5%;
}

.product-swiper .swiper-button-next:hover,
.product-swiper .swiper-button-prev:hover {
  transform: scale(1.15);
  background: linear-gradient(135deg, #0077b6, #023e8a);
}

.product-swiper .swiper-button-next:active,
.product-swiper .swiper-button-prev:active {
  transform: scale(0.93);
}

/* ============================================
   VISION SECTION
   ============================================ */
.vision-sec .img-bx {
  width: 100%;
  margin-bottom: 80px;
  padding-right: 80px;
}

.vision-sec .img-bx img {
  border-radius: 18px;
  aspect-ratio: 1/1;
  object-fit: cover;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.15);
  border: 8px solid var(--white);
}

.vision-sec .sm-img2 {
  position: absolute;
  bottom: 0;
  right: 20px;
}

.vision-sec .sm-img2 img {
  border: 8px solid var(--white);
  border-radius: 18px;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.15);
  max-height: 230px;
  max-width: 219px;
}

.vision-sec .tab-content ul {
  list-style: none;
  padding: 0;
}

.vision-sec .tab-content ul li {
  position: relative;
  padding-left: 30px;
}

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

/* ============================================
   MATRIX SECTION
   ============================================ */
.matrix-sec {
  /* background-color: var(--bg); */
}

.matrix-sec .bx {
  position: relative;
  padding: 40px 20px 70px 30px;
}

.matrix-sec .bx::before {
  content: "";
  position: absolute;
  height: 175px;
  width: 175px;
  border: 1px solid var(--black);
  background-color: var(--pri);
  top: 0;
  left: 10px;
  z-index: -1;
  border-radius: 18px;
}

.matrix-sec .bx .sm-img {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  z-index: -1;
}

.matrix-sec .bx .sm-img img {
  opacity: 0.4;
}

.matrix-sec .bx .title {
  position: absolute;
  font-size: 20px;
  background-color: var(--sec);
  padding: 30px 35px;
  transform: rotate(270deg);
  border-radius: 18px;
  border-left: 8px solid var(--pri);
  border-right: 8px solid var(--pri);
  left: -250px;
  bottom: 200px;
}

.matrix-sec .content-bx {
  padding: 25px 30px;
  position: absolute;
  border: 2px solid var(--black);
  border-radius: 18px;
  background-color: var(--white);
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.matrix-sec .content-bx .tt {
  color: var(--black);
}

.matrix-sec .content-bx span {
  font-size: 30px;
  font-weight: 750;
  color: var(--black);
}

.matrix-sec .content-bx .plus-sign {
  color: var(--pri);
}

.matrix-sec .right-side-bx {
  display: flex;
  flex-direction: column;
  width: 70%;
  margin: auto;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 18px;
  position: relative;
}

.matrix-sec .right-side-bx .upper-bx {
  z-index: 2;
  margin-bottom: -150px;
  position: relative;
}

.matrix-sec .right-side-bx .upper-bx img {
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
      max-width: 161px;
}

.matrix-sec .right-side-bx .upper-bx::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
  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='%2314569d'%3E%3Cpath d='M12 .587l3.668 7.568L24 9.75l-6 5.845L19.335 24 12 20.202 4.665 24 6 15.595 0 9.75l8.332-1.595z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 3;
}

.matrix-sec .right-side-bx .bottom-bx {
  background-color: var(--off-white);
  width: 100%;
  padding-top: 150px;
  padding-bottom: 60px;
  border-radius: 18px;
  clip-path: polygon(0 41%, 100% 0, 100% 100%, 0% 100%);
}

.matrix-sec .right-side-bx .title {
  font-size: 32px;
  font-weight: 800;
  color: #111;
}

.matrix-sec .right-side-bx .tt {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-top: 4px;
}

.matrix-sec .right-side-bx::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background-color: var(--pri);
  position: relative;
  bottom: 3px;
  border-radius: 2px;
}

.step-list .title {
  font-size: 20px;
}

.step-icon {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.step-icon.teal {
  color: #00715d;
}

.step-icon.red {
  color: #e03030;
}

/* ============================================
   SEO SECTION
   ============================================ */
.seo-sec {
  position: relative;
  background-image: url("../images/sco.avif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.seo-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(255 255 255 / 86%);
  z-index: 1;
}

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

.seo-sec .form {
  background: var(--bg);
  padding: 40px;
  position: relative;
  border-radius: 20px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08),
    0 4px 10px rgba(0, 0, 0, 0.05);
}

.seo-sec .expend-content-sec {
  max-height: 400px;
}

.seo-sec .expend-content-sec::-webkit-scrollbar {
  width: 8px;
}

.seo-sec .expend-content-sec::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.seo-sec .expend-content-sec::-webkit-scrollbar-thumb {
  background: var(--third);
  border-radius: 10px;
}

/* ============================================
   BABY CARE / CARD STACK
   ============================================ */
.babyCare {
  padding: 45px 0;
  background-color: var(--bg);
}

.ls-cardstack-section {
  height: 300vh;
}

.ls-cardstack-wrap {
  position: sticky;
  top: 160px;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ls-cardstack-item {
  position: absolute;
  width: 100%;
  height: 500px;
  background: #fff;
  border-radius: 36px;
  padding: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  transform: translateY(120vh);
  will-change: transform;
}

.ls-cardstack-item:first-child {
  transform: translateY(0);
  z-index: 20;
}

.ls-cardstack-item img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  will-change: transform;
}

.ls-cardstack-item h2 {
  font-size: 42px;
  color: #1f2d5c;
}

.ls-cardstack-item p {
  font-size: 18px;
  color: #4f5f8f;
  line-height: 1.6;
}

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

.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;
  transition: 0.3s ease;
}

.youtube-player:hover .play {
  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;
}

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

.abt-vid-bx iframe,
.reels-vid iframe {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  display: block;
  overflow: hidden;
  pointer-events: none;
  transform: scale(1.02);
  transform-origin: 50% 50%;
}

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

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

.logo-sec .img-bx {
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
}

.logo-sec .img-bx img {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.main-img-bx {
  aspect-ratio: 16/9;
  object-fit: cover;
  overflow: hidden;
}

.left-bx {
  border-radius: 18px;
  overflow: hidden;
}

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

/* Market Section */
.market-sec {
  padding: 60px 0;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@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: 0;
    border-radius: 0 3px 3px 0;
  }

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

@media (max-width: 991px) {
  .ls-cardstack-section {
    height: auto;
  }

  .ls-cardstack-wrap {
    position: relative;
    top: auto;
    height: auto;
    flex-direction: column;
    gap: 30px;
  }

  .ls-cardstack-item {
    position: relative;
    transform: none !important;
    height: auto;
    grid-template-columns: 1fr;
    padding: 40px;
    gap: 25px;
  }

  .ls-cardstack-item img {
    height: 350px;
    object-fit: cover;
  }
}

@media (max-width: 767px) {
  .babyCare {
    padding: 35px 0;
  }

  .ls-cardstack-item {
    padding: 25px;
    border-radius: 20px;
  }

  .ls-cardstack-item img {
    height: 260px;
    border-radius: 15px;
  }

  .ls-cardstack-item .title {
    font-size: 26px;
  }

  .ls-cardstack-item .tt {
    font-size: 15px;
    line-height: 1.6;
  }

  .gallery-bx .tt {
    font-size: 15px;
    padding: 45px 12px 10px;
  }

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

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

@media (max-width: 480px) {
  .ls-cardstack-item {
    padding: 20px;
  }

  .ls-cardstack-item img {
    height: 220px;
  }
}

.review-slide.texti-bx::after {
  bottom: unset;
  top: 12px;
}

.btn-bx .main-btn,
.btn-bx .main-btn2 {
  font-size: 13px;
}

.testi-bx .sub-ttl {
  background: unset;
  padding: 0;
  border: 0;
  display: unset;
}

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

.product-swiper .bx .tt p {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-swiper .bx .icon-bx img {
  padding: 10px;
}

.main-btn3 {
  background-color: var(--pri);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  cursor: pointer;
  padding: 13px 13px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  line-height: 1;
  text-align: center;
  transition:
    color 0.38s ease,
    border-color 0.38s ease,
    box-shadow 0.3s ease,
    transform 0.2s ease;
  background-color: var(--pri);
  color: var(--white);
  border: none;
}

.main-btn3::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent 0%,
      rgba(255, 255, 255, 0.6) 50%,
      transparent 100%);
  animation: shimmer 1.5s infinite;
}
.main-btn4 {
  background-color: var(--sec);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  cursor: pointer;
  padding: 13px 13px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  line-height: 1;
  text-align: center;
  transition:
    color 0.38s ease,
    border-color 0.38s ease,
    box-shadow 0.3s ease,
    transform 0.2s ease;
  background-color: var(--pri);
  color: var(--white);
  border: none;
}

.main-btn4::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent 0%,
      rgba(255, 255, 255, 0.6) 50%,
      transparent 100%);
  animation: shimmer 1.5s infinite;
}

.nav-btn-bx .main-btn2 svg{
  color: var(--pri);
}

.nav-btn-bx .main-btn2{
  border-color: var(--pri);
}

.nav-btn-bx .main-btn2:hover svg{
   color: var(--white);
}


@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 150%;
  }
}

.brands-logo-swiper {
  width: 100%;
  /* padding: 40px 0; */
  overflow: hidden;
}

.brands-logo-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.brands-logo-swiper .swiper-slide {
  /* height: 120px; */
}

.brands-logo-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16/9;
  border-radius: 12px;
}

.matrix-sec .bx .img-bx {
  border-radius: 18px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.15);
  border: 8px solid var(--white);
  overflow: hidden;
}

.content-sec table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

 
.content-sec table th,
.content-sec table td {
    padding: 10px 12px;
    border: 1px solid #eee;
    text-align: left;
    font-size: 14px;
}

 .content-sec table th{
    color: var(--black);
    font-weight: 500; 
  }

 
.content-sec table tr:first-child {
    background: #f8f9fb;
    font-weight: 600;
}

 
.content-sec table tr:nth-child(even) {
    background: #fafafa;
}

 
.content-sec table tr:hover {
    background: #f1f5ff;
}

 
.content-sec table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}

.oem-cap{
  background-color: var(--bg);
}

.features-section {
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.features-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 10% 20%, color-mix(in srgb, var(--pri) 8%, transparent) 0%, transparent 70%),
    radial-gradient(ellipse 50% 35% at 90% 80%, color-mix(in srgb, var(--sec) 8%, transparent) 0%, transparent 70%);
  pointer-events: none;
}
 
/* ── Section heading ── */
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--pri), var(--sec));
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}
.section-title span {
  background: linear-gradient(135deg, var(--pri), var(--sec));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  color: #555;
  max-width: 520px;
  margin: 12px auto 0;
  font-size: .97rem;
  line-height: 1.7;
}
 
/* ── Feature card ── */
.feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 28px 36px;
  text-align: center;
  border: 1.5px solid color-mix(in srgb, var(--pri) 10%, transparent);
  box-shadow: 0 4px 24px color-mix(in srgb, var(--pri) 6%, transparent);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1),
              box-shadow .35s ease,
              border-color .35s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pri), var(--sec));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 48px color-mix(in srgb, var(--pri) 16%, transparent);
  border-color: color-mix(in srgb, var(--pri) 30%, transparent);
}
.feature-card:hover::after {
  transform: scaleX(1);
}
 
/* ── Icon bubble ── */
.icon-bubble {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pri), var(--sec));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--pri) 35%, transparent);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1),
              box-shadow .35s ease;
}
.feature-card:hover .icon-bubble {
  transform: scale(1.12) rotate(-6deg);
  box-shadow: 0 14px 36px color-mix(in srgb, var(--sec) 45%, transparent);
}
.icon-bubble svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
 
  
.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}
.feature-desc {
  margin: 0;
}
 
 
.feature-col {
  opacity: 1;
  animation: fadeUp .6s ease forwards;
} 

/* ─── APP CONTAINER ─── */
.app-container {
  display: flex;
  width: 100%;
  height: 65vh;
}

/* ─── LEFT SIDEBAR ─── */
.sidebar {
  position: relative;
  width: 38%;
  flex-shrink: 0;
  overflow: hidden;
}

.sidebar .img-bx {
  width: 100%;
  height: 100%;
}
.sidebar .img-bx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.sidebar:hover .img-bx img {
  transform: scale(1.08);
}

.sidebar::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 60%, #060c14 100%),
    linear-gradient(to bottom, rgba(6,12,20,.3) 0%, transparent 40%, rgba(6,12,20,.5) 100%);
  pointer-events: none;
}

.sidebar-label {
  position: absolute;
  bottom: 40px;
  left: 32px;
  z-index: 2;
  color: #fff;
}
.sidebar-label .tag {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sec);
  font-weight: 500;
  margin-bottom: 8px;
}
.sidebar-label .name {
 
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  max-width: 200px;
}

.sidebar-line {
  position: absolute;
  top: 0; bottom: 0;
  right: 0;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent,
    color-mix(in srgb, var(--sec) 40%, transparent) 30%,
    color-mix(in srgb, var(--pri) 40%, transparent) 70%,
    transparent);
  z-index: 3;
}

/* ─── RIGHT SWIPER AREA ─── */
.main-slider {
  flex: 1;
  height: 65vh;
  position: relative;
  overflow: hidden;
}

.main-slider .swiper {
  width: 100%;
  height: 100%;
}

/* ─── SLIDE BASE ─── */
.swiper-slide.slide {
  position: relative;
  display: flex;
  /* align-items: flex-end; */
  padding: 56px 52px;
  overflow: hidden;
}

.swiper-slide.slide:nth-child(1) { background: linear-gradient(145deg, #0a1628 0%, #0d2240 100%); }
.swiper-slide.slide:nth-child(2) { background: linear-gradient(145deg, #060f1c 0%, #0b1e35 100%); }
.swiper-slide.slide:nth-child(3) { background: linear-gradient(145deg, #071520 0%, #0e2238 100%); }
.swiper-slide.slide:nth-child(4) { background: linear-gradient(145deg, #050e1a 0%, #0c1f36 100%); }
.swiper-slide.slide:nth-child(5) { background: linear-gradient(145deg, #080f1e 0%, #0d2140 100%); }
.swiper-slide.slide:nth-child(6) { background: linear-gradient(145deg, #060c16 0%, #0b1c32 100%); }

.slide::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--pri) 18%, transparent), transparent 70%);
  pointer-events: none;
}
.slide::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 30%;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--sec) 10%, transparent), transparent 70%);
  pointer-events: none;
}

/* ─── SLIDE NUMBER ─── */
.slide-num {
  position: absolute;
  top: 40px;
  right: 52px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
  color: color-mix(in srgb, var(--pri) 12%, transparent);
  user-select: none;
  pointer-events: none;
}

/* ─── SLIDE CONTENT ─── */
.slide-content {
  position: relative;
  z-index: 2;
}
.slide-content .chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sec);
  font-weight: 500;
  margin-bottom: 14px;
}
.slide-content .chip::before {
  content: '';
  display: block;
  width: 20px; height: 1.5px;
  background: var(--sec);
}
.slide-content .ttl {
 
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}
.slide-content p {
  font-size: 17px;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  max-width: 380px;
}

/* ─── PROGRESS BAR ─── */
.slide-progress {
  position: absolute;
  left: 0; top: 0;
  width: 3px;
  height: 0%;
  background: linear-gradient(to bottom, var(--pri), var(--sec));
  transition: height .8s ease;
  z-index: 10;
}

/* ─── PAGINATION ─── */
.swiper-pagination {
  right: 20px !important;
  left: auto !important;
  width: auto !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.swiper-pagination-bullet {
  width: 6px !important;
  height: 6px !important;
  background: rgba(255,255,255,.25) !important;
  opacity: 1 !important;
  border-radius: 50% !important;
  transition: all .3s ease !important;
}
.swiper-pagination-bullet-active {
  background: var(--sec) !important;
  transform: scale(1.5) !important;
  box-shadow: 0 0 8px var(--sec) !important;
}

/* ─── SCROLL HINT ─── */
.scroll-hint {
  position: absolute;
  bottom: 28px;
  right: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  z-index: 10;
  pointer-events: none;
}
.scroll-hint .wheel {
  width: 20px; height: 32px;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 10px;
  position: relative;
}
.scroll-hint .wheel::after {
  content: '';
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 6px;
  border-radius: 2px;
  background: var(--sec);
  animation: wheelScroll 1.6s ease infinite;
}
@keyframes wheelScroll {
  0%   { opacity: 1; top: 5px; }
  100% { opacity: 0; top: 18px; }
}

/* ─── SWIPER EASING ─── */
.swiper-wrapper {
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
}

/* ─── ACTIVE SLIDE ANIMATION ─── */
.swiper-slide-active .slide-content {
  animation: slideIn .7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.slide-content ul li{
      position: relative;
    padding-left: 30px;
    font-size: 16px;
    /* line-height: 1.7; */
    margin-bottom: 6px;
    display: flex;
    align-items: center;
         color: rgba(255, 255, 255, .55);
}

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

 .slide-content ul li::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);

  width: 14px;
  height: 14px;

  background: 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 12l5 5l10 -10'/%3E%3C/svg%3E") no-repeat center;

  background-size: contain;
}
 
/* default */
.swiper-pagination {
  position: absolute;
  z-index: 10;
}

/* desktop → right side (vertical slider) */
@media (min-width: 769px) {
  .swiper-pagination {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  .swiper-pagination-bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

/* mobile → bottom (horizontal slider) */
@media (max-width: 768px) {
  .swiper-pagination {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
  }

  .swiper-pagination-bullets {
    display: flex;
    flex-direction: row;
    gap: 8px;
  }
}

/* bullet style */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #fff;
  opacity: 0.5;
  transition: 0.3s;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.3);
}
.swiper-pagination-bullet-active {
  background: var(--pri);  
  width: 10px;
  height: 10px;
}


/* Modern Modal Container */
.modern-modal {
  border: none;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 80%;
  margin: auto;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.95);
  }

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

/* Modern Header */
.modern-header {
  background: var(--pri);
  color: white;
  padding-bottom: 20px;
  border-bottom: none;
  position: relative;
  text-align: center;
}

.modern-close {
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.3s ease;
  z-index: 10;
  color: var(--pri);
}

.modern-close:hover {
  /* transform: rotate(90deg); */
  color: var(--white);
}

.modern-close:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Header Content */
.header-content {
  position: relative;
  z-index: 2;
}

.badge-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.badge-icon svg {
  color: white;
}

.modern-header .logo img {
  max-width: 140px;
  width: auto;
  max-height: 50px;
  height: auto;
  transition: transform 0.3s ease;
}

.modern-header .logo img:hover {
  transform: scale(1.05);
}

.modal-title {
  font-size: 28px;
  font-weight: 800;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.modal-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 400;
}

.modern-body {
  background: #ffffff;
}

/* Benefits Bar */
.benefits-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #495057;
}

.benefit-item svg {
  color: #28a745;
  flex-shrink: 0;
}

/* Modern Form */
.modern-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.modern-input-group {
  position: relative;
}

.modern-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #495057;
  margin-bottom: 10px;
}

.modern-label svg {
  color: #667eea;
  flex-shrink: 0;
}

.modern-input {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
}

.modern-input:focus {
  outline: none;
  border-color: #667eea;
  background-color: white;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
  transform: translateY(-1px);
}

.modern-input::placeholder {
  color: #adb5bd;
}

/* Phone Wrapper */
.phone-wrapper {
  position: relative;
}

/* Modern Submit Button */
.modern-submit-btn {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  color: white;
  background-color: var(--pri);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.modern-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.modern-submit-btn:active {
  transform: translateY(0);
}

.modern-submit-btn svg {
  transition: transform 0.3s ease;
}

.modern-submit-btn:hover svg {
  transform: translateX(5px);
}

.modal-header .logo{
  max-width: unset;
}

 /* ============================================
    01000001 01101100 01101111 01101011 00100000 01010011 01101000 01100001 01110010 01101101 01100001 00100000
   ============================================ */

  