.about { padding: 34px 0 18px; }
h2 {
  font-size: clamp(1.9rem, 3vw, 2.72rem);
  line-height: 1.08;
  font-weight: 900;
  margin-bottom: 1rem;
}



.pill { padding: .65rem 1.3rem; background: #061016; }
.pill span { color: var(--lime); margin-left: .4rem; }

.part-card {
  position: relative;
  padding: 1.3rem;
  min-height: 215px;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(234, 239, 199, .72), rgba(245, 247, 232, .92));
  overflow: hidden;
}

.part-card::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px dashed rgba(140, 168, 0, .55);
  background-image: radial-gradient(rgba(140,168,0,.55) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .65;
}

.part-card img {
  position: relative;
  z-index: 1;
  margin: auto;
  width: 88%;
  border-radius: 12px;
  mix-blend-mode: multiply;
}

.value-list {
  display: grid;
  gap: 1.1rem;
}

.value-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: .85rem;
  align-items: center;
}

.value-list svg {
  width: 54px;
  height: 54px;
  padding: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 28px rgba(5, 20, 24, .1);
}

:root,
[data-bs-theme=light] {
  --bs-body-bg: #ffffff;
  --bs-body-color: #494B5B;
  --bs-primary: #d2e825;
  --bs-primary-rgb: 33, 92, 92;
  --bs-primary-hover: #144B4B;
  --bs-primary-hover-rgb: 20, 75, 75;
  --bs-secondary: #CCE8C9;
  --bs-secondary-rgb: 204, 232, 201;
  --bs-heading-color: #16181B;
  --inverse-color: #494B5B;
  --inverse-color-rgb: 73, 75, 91;
  --bs-link-color: var(--bs-primary);
  --nav-bg: #ffffff;
  --nav-color: #fff;
  --nav-hover-color: #1f6bff;
  --dropdown-bg: #ffffff;
  --dropdown-color: #1f6bff;
  --dropdown-hover-bg: #f7f7f7;
  --nav-inverse: #000000;
  --nav-inverse-alt: #ffffff;
}
h3.stat-value {
    color: #fff;
}
@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');
body {
  font: 1rem/1.7 "Inter", sans-serif;
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
p{
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
}
.site-wrap {
  position: relative;
}

::-moz-selection {
  background-color: var(--bs-black);
  color: var(--bs-white);
}

::selection {
  background-color: var(--bs-black);
  color: var(--bs-white);
}

a {
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  color: var(--bs-primary);
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--bs-heading-color);
}



.section {
  padding: 70px 0 40px;
  scroll-margin-top: 60px;
}
@media (max-width: 767.98px) {
  .section {
    padding: 40px 0;
  }
}
.section.first-section {
  padding-top: 100px;
}
@media (min-width: 992px) {
  .section.first-section {
    padding-top: 130px;
  }
}

.text-heading-color {
  color: var(--bs-heading-color);
}

.shadow-sm {
  -webkit-box-shadow: 0 0.125rem 0.25rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
          box-shadow: 0 0.125rem 0.25rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
}

.shadow {
  -webkit-box-shadow: 0 0.5rem 1rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
          box-shadow: 0 0.5rem 1rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
}

.shadow-lg {
  -webkit-box-shadow: 0 1rem 3rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
          box-shadow: 0 1rem 3rem 0 rgba(var(--bs-black-rgb), 0.05) !important;
}

.list-checked {
  padding: 0;
  margin: 0;
  color: var(--bs-body-color);
}
.list-checked li {
  position: relative;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 10px;
}
.list-checked li i {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  display: inline-block;
  background-color: rgba(var(--bs-primary-rgb), 0.1);
  border-radius: 50%;
  color: var(--bs-primary);
  font-size: 20px;
}
.list-checked li:before {
  position: absolute;
  display: inline-block;
  left: 0;
  content: "";
  vertical-align: -0.125em;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 1.5625rem 1.5625rem;
  width: 1.5625rem;
  height: 1.5625rem;
}

.btn {
  padding: 12px 20px;
  background-color: var(--bs-primary);
  color: var(--bs-white);
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 600;
  position: relative;
}
.btn:hover, .btn:active, .btn:focus {
  color: var(--bs-white);
  background-color: var(--bs-primary-hover) !important;
  border: 1px solid var(--bs-primary-hover) !important;
}
.btn.btn-white.hover-outline {
  background-color: var(--bs-white) !important;
  color: var(--bs-black) !important;
  border: 1px solid transparent !important;
}
.btn.btn-white.hover-outline:hover {
  color: var(--bs-white) !important;
  background-color: transparent !important;
  border: 1px solid var(--bs-white) !important;
}
.btn.btn-white-outline {
  border: 1px solid rgba(var(--inverse-color-rgb), 0.2) !important;
  color: var(--inverse-color) !important;
  background-color: transparent;
}
.btn.btn-white-outline:hover, .btn.btn-white-outline:focus, .btn.btn-white-outline:active {
  background-color: transparent !important;
  border: 1px solid rgba(var(--inverse-color-rgb), 0.5) !important;
}

.block-squares {
  position: absolute;
  bottom: -12px;
  right: 0;
  z-index: 1;
  width: auto;
}

.form-control {
  padding-top: 10px;
  padding-bottom: 10px;
  border-width: 1px;
  font-size: 16px;
  background-color: transparent;
  border-color: rgba(var(--inverse-color-rgb), 0.1);
}

.form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: var(--bs-primary);
}

.a-link i {
  font-size: 26px;
  margin-left: 10px;
  -webkit-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}
.a-link:hover i {
  margin-left: 15px;
}

.page-title {
  padding-top: 100px !important;
  padding-bottom: 50px !important;
  background-color: rgba(var(--inverse-color-rgb), 0.03);
}

.special-link .icons {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 38px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
}

.special-link .icons i {
  font-size: 25px;
  position: relative;
  display: inline-block;
  position: absolute;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.special-link .icons i.icon-1 {
  opacity: 1;
  visibility: visible;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.special-link .icons i.icon-2 {
  opacity: 0;
  visibility: hidden;
  top: 80%;
  left: 20%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.special-link:hover .icons .icon-1 {
  opacity: 0;
  visibility: hidden;
  top: 20%;
  left: 80%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.special-link:hover .icons .icon-2 {
  opacity: 1;
  visibility: visible;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.fbs__net-navbar {
  position: absolute;
  top: 0;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  z-index: 99999;
  width: 100%;
  background-color: transparent !important;
  border: none;
}
@media (min-width: 992px) {
  .fbs__net-navbar {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.fbs__net-navbar > .container {
  position: relative;
}
.fbs__net-navbar.relative {
  position: absolute;
}
/**.fbs__net-navbar .navbar-brand {
  color: var(--bs-white);
  font-size: 30px;
  font-weight: bold;
}**/
.fbs__net-navbar .navbar-brand .logo.dark {
  display: none;
}
.fbs__net-navbar .navbar-brand .logo.light {
  display: block;
}
.fbs__net-navbar .navbar-nav > li > .nav-link {
  position: relative;
  padding-top: 22px;
  padding-bottom: 22px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 0.9375rem;
  color: rgba(var(--bs-white-rgb), 1);
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  position: relative;
}
.vcvcn {
    width: 18%;
}
@media (max-width: 991.98px) {
  .fbs__net-navbar .navbar-nav > li > .nav-link {
    color: var(--inverse-color);
  }
}
.fbs__net-navbar .navbar-nav > li > .nav-link:before {
  content: "";
  position: absolute;
  width: calc(100% - 20px);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  border-radius: 5px;
  height: 1.5px;
  bottom: 0;
  left: 10px;
  background: currentcolor;
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
  -webkit-transition: -webkit-transform 0.35s ease-out;
  transition: -webkit-transform 0.35s ease-out;
  transition: transform 0.35s ease-out;
  transition: transform 0.35s ease-out, -webkit-transform 0.35s ease-out;
}
.fbs__net-navbar .navbar-nav > li > .nav-link:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}
.fbs__net-navbar .navbar-nav > li > .nav-link:hover, .fbs__net-navbar .navbar-nav > li > .nav-link:focus {
  color: var(--bs-white);
}
@media (max-width: 991.98px) {
  .fbs__net-navbar .navbar-nav > li > .nav-link:hover, .fbs__net-navbar .navbar-nav > li > .nav-link:focus {
    color: var(--inverse-color) !important;
  }
}
@media (max-width: 767.98px) {
  .fbs__net-navbar .navbar-nav > li > .nav-link {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
.fbs__net-navbar .navbar-nav > li > .nav-link.active {
  color: var(--bs-white);
}
@media (max-width: 991.98px) {
  .fbs__net-navbar .navbar-nav > li > .nav-link.active {
    color: var(--inverse-color);
  }
}
.fbs__net-navbar .navbar-nav > li > .nav-link.active:before {
  content: "";
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.fbs__net-navbar .navbar-nav > li > .nav-link.dropdown-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.fbs__net-navbar .navbar-nav > li > .nav-link.dropdown-toggle::after {
  display: none;
  content: "";
}
@media (max-width: 991.98px) {
  .fbs__net-navbar .navbar-nav > li > .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.fbs__net-navbar .navbar-nav .dropdown-menu {
  background-color: var(--nav-bg);
}
.fbs__net-navbar .navbar-nav .dropdown-menu .nav-link:hover {
  background-color: var(--dropdown-hover-bg) !important;
  color: var(--inverse-color);
}
.fbs__net-navbar .navbar-nav .dropdown-toggle::after {
  display: none;
}
.fbs__net-navbar .navbar-nav .dropdown-toggle .bi-chevron-down {
  margin-left: 0.5rem;
}
.fbs__net-navbar .fbs__net-navbar-toggler {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: relative;
  background-color: var(--bs-black);
  color: var(--bs-white);
  border: none;
  display: none;
}
@media (max-width: 991.98px) {
  .fbs__net-navbar .fbs__net-navbar-toggler {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.fbs__net-navbar .navbar-brand {
  margin-right: 0 !important;
}
.fbs__net-navbar .navbar-nav .dropdown > .dropdown-menu,
.fbs__net-navbar .navbar-nav .dropend > .dropdown-menu,
.fbs__net-navbar .navbar-nav .dropstart > .dropdown-menu {
  border: none !important;
  padding-left: 10px;
  padding-right: 10px;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(var(--bs-black-rgb), 0.1);
          box-shadow: 0 0.1875rem 0.375rem rgba(var(--bs-black-rgb), 0.1);
}
@media (min-width: 992px) {
  .fbs__net-navbar .navbar-nav .dropdown > .dropdown-menu,
  .fbs__net-navbar .navbar-nav .dropend > .dropdown-menu,
  .fbs__net-navbar .navbar-nav .dropstart > .dropdown-menu {
    padding-left: 10px;
    padding-right: 10px;
    width: 200px;
    border: none;
  }
}
.fbs__net-navbar .navbar-nav .dropdown > .dropdown-menu .dropdown-item,
.fbs__net-navbar .navbar-nav .dropdown > .dropdown-menu .nav-link,
.fbs__net-navbar .navbar-nav .dropend > .dropdown-menu .dropdown-item,
.fbs__net-navbar .navbar-nav .dropend > .dropdown-menu .nav-link,
.fbs__net-navbar .navbar-nav .dropstart > .dropdown-menu .dropdown-item,
.fbs__net-navbar .navbar-nav .dropstart > .dropdown-menu .nav-link {
  font-size: 0.875rem;
  padding: 10px 10px;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  border-radius: 0.5rem;
}
@media (min-width: 992px) {
  .fbs__net-navbar .navbar-nav .dropdown:hover > .dropdown-menu,
  .fbs__net-navbar .navbar-nav .dropend:hover > .dropdown-menu,
  .fbs__net-navbar .navbar-nav .dropstart:hover > .dropdown-menu {
    display: block;
    -webkit-animation: fadeInUp 0.3s ease;
            animation: fadeInUp 0.3s ease;
  }
}
@media (min-width: 992px) {
  .fbs__net-navbar .navbar-nav .dropend:hover > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    -webkit-animation: fadeInRight 0.3s ease;
            animation: fadeInRight 0.3s ease;
  }
}
@media (min-width: 992px) {
  .fbs__net-navbar .navbar-nav .dropstart:hover > .dropdown-menu {
    position: absolute;
    top: 0;
    right: 100%;
    -webkit-animation: fadeInLeft 0.3s ease;
            animation: fadeInLeft 0.3s ease;
  }
}
.fbs__net-navbar .navbar-nav .dropdown-toggle::before {
  display: none;
}
.fbs__net-navbar .navbar-nav .dropdown-toggle::after {
  display: none;
}
.fbs__net-navbar .navbar-nav li.dropend > a,
.fbs__net-navbar .navbar-nav li.dropstart > a {
  position: relative;
}
.fbs__net-navbar .navbar-nav li.dropend > a .bi,
.fbs__net-navbar .navbar-nav li.dropstart > a .bi {
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 991.98px) {
  .fbs__net-navbar .navbar-nav li.dropend > a .bi,
  .fbs__net-navbar .navbar-nav li.dropstart > a .bi {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    margin-top: -10px;
  }
}
.fbs__net-navbar .navbar-nav li.dropend > a::after,
.fbs__net-navbar .navbar-nav li.dropstart > a::after {
  display: none;
}
.fbs__net-navbar .navbar-nav li.dropend > a {
  position: relative;
}
.fbs__net-navbar .navbar-nav li.dropend > a:hover {
  background-color: var(--dropdown-hover-bg) !important;
}
.fbs__net-navbar .navbar-nav li.dropend > a .caret {
  position: absolute;
  right: 10px;
}
.fbs__net-navbar .navbar-nav li.dropstart > a {
  position: relative;
}
.fbs__net-navbar .navbar-nav li.dropstart > a:hover {
  background-color: var(--dropdown-hover-bg) !important;
}
.fbs__net-navbar .navbar-nav li.dropstart > a .caret {
  position: absolute;
  left: 10px;
}
.fbs__net-navbar .navbar-toggler:hover, .fbs__net-navbar .navbar-toggler:focus, .fbs__net-navbar .navbar-toggler:active {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.fbs__net-navbar .header-social a {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  color: var(--bs-white);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 4px;
  display: inline-block;
  background-color: transparent;
}
.fbs__net-navbar .header-social a:hover {
  background-color: rgba(var(--bs-white-rgb), 0.1);
}
@media (min-width: 992px) {
  .fbs__net-navbar .header-social a {
    color: var(--bs-white);
  }
}
.fbs__net-navbar .header-social .btn {
  width: auto !important;
  height: auto !important;
  background-color: var(--bs-primary) !important;
  color: var(--bs-white) !important;
}
@media (max-width: 575.98px) {
  .fbs__net-navbar .header-social .btn {
    display: none;
  }
}
.fbs__net-navbar.active {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--nav-bg) !important;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(var(--bs-black-rgb), 0.05) !important;
          box-shadow: 0 0.1875rem 0.375rem rgba(var(--bs-black-rgb), 0.05) !important;
}
.fbs__net-navbar.active .navbar-brand {
  color: rgba(var(--inverse-color-rgb), 1) !important;
}
.fbs__net-navbar.active .navbar-brand .logo.dark {
  display: block;
}

.fbs__net-navbar.active .navbar-brand .logo.light {
  display: none;
}

.fbs__net-navbar.active .nav-link {
  color: rgba(var(--inverse-color-rgb), 1) !important;
}
.fbs__net-navbar.active .nav-link:hover {
  color: rgba(var(--inverse-color-rgb), 1) !important;
}
.fbs__net-navbar.active .header-social a {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  color: var(--inverse-color);
}
.fbs__net-navbar.active .header-social a:hover {
  background-color: rgba(var(--inverse-color-rgb), 0.1);
}
@media (min-width: 992px) {
  .fbs__net-navbar.active .header-social a {
    color: rgba(var(--inverse-color-rgb), 1) !important;
  }
}
.fbs__net-navbar.active .header-social .btn {
  width: auto !important;
  height: auto !important;
  background-color: var(--bs-primary) !important;
  color: var(--bs-white) !important;
}
.fbs__net-navbar.active .navbar-nav > li > .dropdown-toggle:hover {
  color: var(--inverse-color) !important;
}
.fbs__net-navbar.active .navbar-nav > li > .nav-link.dropdown-toggle::after {
  display: none;
  content: "";
}
.fbs__net-navbar.active .navbar-nav li.dropdown a:hover,
.fbs__net-navbar.active .navbar-nav li.dropend a:hover,
.fbs__net-navbar.active .navbar-nav li.dropstart a:hover {
  color: var(--inverse-color) !important;
}
.fbs__net-navbar .fbs__net-icon-menu {
  display: block;
}
.fbs__net-navbar .fbs__net-icon-close {
  display: none;
}
.offcanvas-active .fbs__net-navbar .fbs__net-icon-menu {
  display: none;
}
.offcanvas-active .fbs__net-navbar .fbs__net-icon-close {
  display: block;
}
.fbs__net-navbar.dark {
  -webkit-box-shadow: 0 0px 2px rgba(var(--inverse-color-rgb), 0.15);
          box-shadow: 0 0px 2px rgba(var(--inverse-color-rgb), 0.15);
}
.fbs__net-navbar.dark .navbar-brand .logo.dark {
  display: block;
}

.fbs__net-navbar.dark .navbar-brand .logo.light {
  display: none;
}

.fbs__net-navbar.dark a {
  color: var(--inverse-color) !important;
}
.fbs__net-navbar.dark a:hover {
  color: var(--inverse-color);
}
.fbs__net-navbar.dark .header-social a:hover {
  background-color: rgba(var(--inverse-color-rgb), 0.05);
}

.fbs__net-navbar.dark ul li a {
  color: rgba(var(--inverse-color-rgb), 1) !important;
}
.fbs__net-navbar.dark ul li a:hover {
  color: var(--inverse-color) !important;
}
.fbs__net-navbar .offcanvas-header .offcanvas-header-logo .logo-link .logo.dark {
  display: block;
}

.fbs__net-navbar .offcanvas-header .offcanvas-header-logo .logo-link .logo.light {
  display: none;
}


@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.hero__v6 {
  padding: 10rem 0 !important;
}
.hero__v6 .hero-subtitle {
  background: color-mix(in srgb, var(--bs-secondary), transparent 70%);
  color: var(--bs-primary);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.hero__v6 .hero-title {
  font-size: 48px;
}
@media (max-width: 1199.98px) {
  .hero__v6 .hero-title {
    font-size: 40px;
  }
}
@media (max-width: 991.98px) {
  .hero__v6 .hero-title {
    font-size: 30px;
  }
}
.hero__v6 .logos .logos-title {
  font-size: 12px;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--bs-primary), transparent 10%);
}

.hero__v6 .logos img {
  width: 140px;
}
.hero__v6 .hero-img {
  position: relative;
}
.hero__v6 .hero-img .img-main {
  position: relative;
  z-index: 9;
}
.hero__v6 .hero-img .img-card {
  z-index: 10;
  border-radius: 20px;
  -webkit-box-shadow: 0 15px 40px 0 rgba(var(--bs-black-rgb), 0.1);
          box-shadow: 0 15px 40px 0 rgba(var(--bs-black-rgb), 0.1);
  position: absolute;
  max-width: 280px;
  bottom: -40px;
  left: -60px;
}
@media (max-width: 991.98px) {
  .hero__v6 .hero-img .img-card {
    left: 10px;
    max-width: 380px;
  }
}
@media (max-width: 575.98px) {
  .hero__v6 .hero-img .img-card {
    left: 10px;
    max-width: 280px;
  }
}

.features__v2 .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background-color: var(--bs-secondary);
  color: var(--bs-primary);
}

.features__v2 .content {
  background-color: rgba(var(--bs-secondary-rgb), 0.2);
}

.features__v2 .btn-play i {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  background-color: var(--bs-white);
  color: var(--bs-primary);
}

.about__v4 .subtitle {
  background-color: rgba(var(--bs-secondary-rgb), 0.2);
  color: var(--bs-primary);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.about__v4 .features li .icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  background-color: var(--bs-primary);
  color: var(--bs-white);
}
.about__v4 .mission-statement {
  background-color: var(--bs-primary);
  position: relative;
  bottom: -20px;
  width: 100%;
}
.about__v4 .mission-statement h3 {
  font-size: 10px;
  color: var(--bs-secondary);
}
.about__v4 .mission-statement p {
  color: var(--bs-white);
}
.about__v4 .mission-icon {
  width: 50px;
  height: 50px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  line-height: 50px;
  display: inline-block;
  background-color: rgba(var(--bs-secondary-rgb), 0.1);
}
.about__v4 .mission-icon i {
  color: var(--bs-secondary);
}

.pricing__v2 .subtitle {
  background-color: rgba(var(--bs-secondary-rgb), 0.2);
  color: var(--bs-primary);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.pricing__v2 .price-table {
  border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
}
.pricing__v2 .price-table .price {
  color: var(--bs-heading-color);
}
.pricing__v2 .price-table .price strong {
  font-size: 40px;
}
.pricing__v2 .price-table .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border: 1px solid rgba(var(--bs-white-rgb), 0.2);
}
.pricing__v2 .popular {
  background-color: var(--bs-primary);
  color: var(--bs-white);
}
.pricing__v2 .popular .price {
  color: var(--bs-secondary);
}
.pricing__v2 .popular h3 {
  color: var(--bs-white);
}
.pricing__v2 .popular p {
  color: var(--bs-white);
}
.pricing__v2 .popular .pricing-features h4 {
  font-size: 12px;
  color: var(--bs-secondary);
}

.howitworks__v1 .subtitle {
  background-color: rgba(var(--bs-secondary-rgb), 0.2);
  color: var(--bs-primary);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.howitworks__v1 .step-card {
  position: relative;
}
.howitworks__v1 .step-card .step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  color: var(--bs-secondary);
  background-color: var(--bs-primary);
  font-size: 18px;
}
.howitworks__v1 .arch-line {
  position: absolute;
  top: 15px;
  width: 150px;
  right: 0;
  left: calc(100% + 24px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 991.98px) {
  .howitworks__v1 .arch-line {
    display: none;
  }
}
.howitworks__v1 .arch-line.reverse {
  top: 20px;
}

.services__v3 .subtitle {
  background-color: rgba(var(--bs-secondary-rgb), 0.2);
  color: var(--bs-primary);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.services__v3 .icon {
  display: inline-block;
  position: relative;
  color: #143176 !important;
}

.services__v3 .icon:before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 40px;
  right: -10px;
  bottom: 0px;
  border-radius: 50%;
  background-color: rgba(var(--bs-secondary-rgb), 1);
}

.services__v3 .icon svg {
  width: 50px;
}
.services__v3 .service-card {
  border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
}

.faq__v2 {
  background-color: rgba(var(--inverse-color-rgb), 0.02);
}

.faq__v2 .subtitle {
  background-color: rgba(var(--bs-secondary-rgb), 0.2);
  color: var(--bs-primary);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.faq__v2 .custom-accordion {
  --bs-accordion-bg: var(--bs-body-bg);
  --bs-accordion-btn-icon: url("");
  --bs-accordion-btn-active-icon: url("");
}

.faq__v2 .custom-accordion .accordion-button {
  position: relative;
  padding-right: 50px;
}
.faq__v2 .custom-accordion .accordion-button::after {
  content: "\f4fe";
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: 400 !important;
  font-variant: normal;
  text-transform: none;
  right: 20px;
  top: 15px;
  width: 18px;
  height: 14px;
  font-size: 30px;
  color: var(--inverse-color);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  line-height: 1;
  position: absolute;
  -webkit-font-smoothing: antialiased;
}

.faq__v2 .custom-accordion .accordion-button:not(.collapsed)::after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  content: "\f2ea";
}
.faq__v2 .custom-accordion .accordion-item {
  border: none;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.faq__v2 .custom-accordion .accordion-item .accordion-header .accordion-button {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--bs-heading-color);
  padding-top: 20px;
  padding-bottom: 20px;
  border: none;
}
.faq__v2 .custom-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: var(--inverse-color);
  -webkit-box-shadow: 0 1px 1px rgba(var(--inverse-color-rgb), 0.05);
          box-shadow: 0 1px 1px rgba(var(--inverse-color-rgb), 0.05);
}
.faq__v2 .custom-accordion .accordion-item .accordion-body {
  border-top: none;
}

.stats__v3 .content {
  padding-top: 70px;
  padding-bottom: 70px;
  background-color: var(--bs-primary);
  color: var(--bs-white);
  overflow: hidden;
  position: relative;
}
.stats__v3 .content h3 {
  color: var(--bs-secondary);
}
.stats__v3 .content .rounded-borders {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 500px;
}
.stats__v3 .content .rounded-borders .rounded-border-1,
.stats__v3 .content .rounded-borders .rounded-border-2,
.stats__v3 .content .rounded-borders .rounded-border-3 {
  border: 1px solid var(--bs-secondary);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  position: absolute;
}
.stats__v3 .content .rounded-borders .rounded-border-1 {
  right: 20px;
  top: 20px;
}
.stats__v3 .content .rounded-borders .rounded-border-2 {
  right: 40px;
  top: 40px;
}

.testimonials__v2 .subtitle {
  background-color: rgba(var(--bs-secondary-rgb), 0.2);
  color: var(--bs-primary);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.testimonials__v2 .testimonial {
  border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
}
.testimonials__v2 .testimonial-author .author-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
}

.contact__v2 .subtitle {
  background-color: rgba(var(--bs-secondary-rgb), 0.2);
  color: var(--bs-primary);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.contact__v2 .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: 1px solid rgba(var(--inverse-color-rgb), 0.2);
  border-radius: 50%;
}

.footer {
  background-color: #020b36;
  font-size: 15px;
}
.footer ul li {
    padding: 0;
    margin: 0 0 10px 0;
    list-style: none;
}
.footer h2, .footer h3, .footer h4 {
  font-size: 16px;
  color: #fff;
}
 .footer p {
   
    color: #fff;
}
.footer .top-footer .quote-container {
    gap: 50px;
}
.primary-btn {
    background: #d2e825;
    justify-content: center;
    align-items: center;
    color: var(--color-1) !important;
    transition: all .3s ease;
    border-radius: 0;
    border: 1px solid transparent;
    display: flex;
    height: 49px;
    padding: 12px 20px;
    gap: 10px;
    font-weight: 700;
    line-height: unset;
    font-family: var(--font-2);
}
img.mjei.img-responsive.f.lazyloaded {
    width: 50%;
}
.footer a {
  color: #fff;
  text-decoration: none;
}
.footer a:hover {
  color: var(--inverse-color);
}
.footer a .badge {
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
  background-color: rgba(var(--bs-primary-rgb), 0.1);
  color: var(--bs-primary);
}
.footer a:hover .badge {
  background-color: rgba(var(--bs-primary-rgb), 1);
  color: var(--bs-white);
}
.footer .quick-contact i {
  color: var(--inverse-color);
}
.footer .credits {
  font-size: 13.5px;
}

#back-to-top {
  position: fixed;
  bottom: 0px;
  right: 20px;
  visibility: hidden;
  opacity: 0;
  background-color: var(--bs-primary);
  color: white;
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
  width: 40px;
  height: 40px;
}
#back-to-top i {
  font-size: 24px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#back-to-top.show {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}
.intro-block .block-content.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.intro-block .block-header {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.intro-block .block-header .block-title {
    
    text-align: left;
}
.heading-2 {
    font-family: var(--font-2);
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 55px;
    letter-spacing: -0.89px;
    text-transform: uppercase;
}

.global-vertical-padding-md {
    padding: 60px 0;
}
.stats-band picture {
    display: block;
}
.stats-band picture img {
    display: block;
    width: 100%;
}
.stats-band .stat-items {
    
    position: absolute;
    top: 286%;
    right: 10%;
    z-index: 2;
    list-style: none;
    margin: 0;
    padding: 0;
    background: 0 0;
    background-color: transparent;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(20px, 3vw, 40px);
    row-gap: 28px;
    align-items: start;
    justify-items: start;
    color: var(--color-6);
    text-align: left;
    text-shadow: 0 1px 16px rgba(0, 0, 0, .35);
}
.stats-band .stat-items .stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
}

.title {
    font-family: var(--font-2);
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 94.023%;
    
    color: #fff;
}
.stats-band .stat-items .stat-text {
    max-width: 230px;
    opacity: .4;
}
.text-7 {
    font-family: var(--font-2);
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -.26px;
    text-transform: uppercase;
    color: #fff;
}
.jdilw {
    color: #d2e825;
}

/* 
---------------------------------------------
courses
--------------------------------------------- 
*/

section.our-courses {
  background-image: url(../images/meetings-bg.jpg);
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 40px;
  padding-bottom: 40px;
}

/* ==============================
   OUR COURSES SECTION
================================= */

.our-courses .item .down-content {
    background-color: #fff;
}

.our-courses .item .down-content h4 {
    padding: 25px;
    font-size: 18px;
    color: #1f272b;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.our-courses .item .down-content .info {
    padding: 25px;
}

.our-courses .item .down-content .info ul li {
    display: inline-block;
    margin-right: 1px;
}

.our-courses .item .down-content .info ul li i {
    color: #f5a425;
    font-size: 14px;
}

.our-courses .item .down-content .info span {
    color: #a12c2f;
    font-size: 15px;
    font-weight: 600;
    text-align: right;
    display: inline-block;
    width: 100%;
}

/* ==============================
   OWL NAVIGATION
================================= */

.our-courses .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

/* PREV & NEXT BUTTON */

.our-courses .owl-nav .owl-prev,
.our-courses .owl-nav .owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    background: #fff !important;
    border: none !important;
    outline: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LEFT BUTTON */

.our-courses .owl-nav .owl-prev {
    left: 10px;
}

/* RIGHT BUTTON */

.our-courses .owl-nav .owl-next {
    right: 10px;
}

/* HOVER EFFECT */

.our-courses .owl-nav .owl-prev:hover,
.our-courses .owl-nav .owl-next:hover {
    background: #d6ea18 !important;
    transform: scale(1.05);
}

/* ICON STYLE */

.our-courses .owl-nav .owl-prev span,
.our-courses .owl-nav .owl-next span {
    font-size: 34px;
    line-height: 34px;
    color: #000;
    font-weight: 600;
    opacity: 1;
}

/* ==============================
   OWL DOTS
================================= */

.our-courses .owl-dots {
    display: inline-block;
    text-align: center;
    width: 100%;
    margin-top: 40px;
}

.our-courses .owl-dots .owl-dot {
    transition: all .5s;
    width: 8px;
    height: 8px;
    background-color: #d3d3d3;
    margin: 0px 5px;
    border-radius: 50%;
    outline: none;
    border: none;
}

.our-courses .owl-dots .owl-dot.active {
    width: 24px;
    height: 8px;
    border-radius: 10px;
    background-color: #d6ea18;
}

/* ==============================
   SECTION TITLE
================================= */

h3.verticals-title {
    padding-bottom: 20px;
    text-align: center;
}

/* ==============================
   MOBILE RESPONSIVE
================================= */

@media (max-width: 767px) {

    .our-courses .owl-nav .owl-prev {
        left: 5px;
    }

    .our-courses .owl-nav .owl-next {
        right: 5px;
    }

    .our-courses .owl-nav .owl-prev,
    .our-courses .owl-nav .owl-next {
        width: 42px;
        height: 42px;
    }

    .our-courses .owl-nav .owl-prev span,
    .our-courses .owl-nav .owl-next span {
        font-size: 28px;
    }
}
h3.verticals-title {
    padding-bottom: 20px;
    text-align: center;
}


a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header,
.site-header * {
  box-sizing: border-box;
}

.site-header a,
.site-header a:hover,
.site-header a:focus,
.site-header a:visited {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  max-width: 1780px;
  min-height: 96px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 2vw, 28px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.logo-mark {
  width: clamp(42px, 3.2vw, 52px);
  height: clamp(42px, 3.2vw, 52px);
  position: relative;
  border: 5px solid var(--brand-blue);
  clip-path: polygon(50% 0, 94% 25%, 94% 75%, 50% 100%, 6% 75%, 6% 25%);
}

.logo-mark span {
  position: absolute;
  left: 15px;
  width: 22px;
  height: 7px;
  background: var(--green);
  transform: skewY(-28deg);
}

.logo-mark span:first-child {
  top: 15px;
}

.logo-mark span:last-child {
  top: 29px;
  background: var(--brand-blue);
}

.logo-text strong {
  display: block;
  color: var(--brand-blue);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
}

.logo-text span {
  display: block;
  margin-top: 4px;
  color: #3b4250;
  font-size: clamp(12px, 1vw, 16px);
  text-decoration: none;
}

.navbar {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 42px);
}

.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li {
  margin: 0;
  padding: 0;
}

.has-mega {
  position: static;
}

.nav-list > li > a,
.nav-link {
  min-height: 75px;
  padding: 0 clamp(12px, 1.1vw, 21px);
  display: flex;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
}

.has-mega:hover > .nav-link,
.has-mega.active > .nav-link {
  color: #0074bd;
  background: #f1f4f8;
  text-decoration: underline;
}

.has-mega > .mega-btn::after {
  content: "";
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.4vw, 26px);
  flex: 0 0 auto;
}

.icon-btn,
.flag-btn {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.icon-btn {
  position: relative;
}

.icon-btn::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.icon-btn::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 20px;
  width: 10px;
  height: 2px;
  background: var(--ink);
  transform: rotate(45deg);
  transform-origin: left center;
}

.flag-btn {
  position: relative;
  width: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: transparent;
}

.flag-btn span {
  width: 29px;
  height: 18px;
  display: block;
  overflow: hidden;
  border: 1px solid #ddd;
  background:
    linear-gradient(#224486 0 42%, transparent 42%),
    repeating-linear-gradient(to bottom, #d44848 0 2px, #fff 2px 4px);
}

.flag-btn::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transform: rotate(45deg) translateY(-3px);
}

.sign-in {
  color: #0074bd;
  font-size: 18px;
  white-space: nowrap;
}

.quote-btn {
    padding: 10px 24px;
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
}
.mega-menu {
  position: absolute;
  top: 96px;
  left: 0;
  right: 0;
  width: 100%;
  max-height: calc(100vh - 96px);
  overflow-y: auto;
  background: #fff;
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.has-mega:hover .mega-menu,
.has-mega.active .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-content {
  max-width: 1900px;
  min-height: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 25vw);
}

.mega-grid {
  padding: clamp(26px, 3vw, 44px) clamp(24px, 4vw, 76px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 58px);
}

.mega-col {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 26px);
}

.mega-col a {
  display: block;
}

.mega-col strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(15px, 0.95vw, 17px);
  line-height: 1.3;
}

.mega-col span {
  display: block;
  color: var(--muted);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.38;
}

.mega-col a:hover strong {
  color: #0074bd;
}

.mega-card {
  background: var(--panel);
  padding: clamp(28px, 3vw, 48px) clamp(28px, 3.5vw, 58px);
}

.materials-content {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 25vw);
}

.services-content {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 25vw);
}

.industries-content {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 25vw);
}

.services-grid {
  padding: clamp(26px, 3vw, 48px) clamp(24px, 4vw, 76px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 48px);
}

.materials-grid {
  padding: clamp(26px, 3vw, 48px) clamp(24px, 4vw, 76px);
  display: grid;
  grid-template-columns: minmax(250px, 0.48fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 84px);
}

.industries-grid {
  padding: clamp(26px, 3vw, 48px) clamp(24px, 4vw, 76px);
  display: grid;
  grid-template-columns: minmax(420px, 1.45fr) minmax(220px, 0.72fr) minmax(210px, 0.62fr);
  gap: clamp(34px, 4vw, 52px);
}

.services-section h2,
.materials-section h2,
.industries-section h2 {
  font-size: clamp(20px, 1.35vw, 24px);
  font-weight: 500;
  line-height: 1.2;
}

.section-line {
  width: 100%;
  height: 1px;
  margin: 14px 0 22px;
  background: #d9dee7;
}

.materials-section a,
.materials-type-grid a,
.industries-served-grid a {
  display: block;
  margin-bottom: clamp(22px, 2vw, 28px);
}

.services-section a {
  display: block;
  margin-bottom: clamp(15px, 1.25vw, 20px);
  color: var(--ink);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.35;
  text-decoration: none;
}

.materials-section strong,
.materials-type-grid strong,
.industries-served-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(15px, 0.95vw, 17px);
  line-height: 1.3;
}

.materials-section span,
.materials-type-grid span,
.industries-served-grid span {
  display: block;
  color: var(--muted);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.38;
}

.materials-section a:hover strong,
.materials-type-grid a:hover strong,
.industries-served-grid a:hover strong,
.services-section a:hover,
.industry-links a:hover {
  color: #0074bd;
}

.materials-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 86px);
}

.industries-served-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 58px);
}

.industry-links a {
  display: block;
  margin-bottom: clamp(18px, 1.4vw, 24px);
  color: var(--ink);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.35;
  text-decoration: none;
}

.materials-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.industries-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.production-visual {
  width: 100%;
  height: clamp(150px, 10vw, 188px);
  margin-bottom: clamp(22px, 2vw, 28px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 36%, rgba(255, 255, 255, 0.45) 0 16px, transparent 17px),
    radial-gradient(circle at 55% 30%, rgba(255, 255, 255, 0.4) 0 14px, transparent 15px),
    radial-gradient(circle at 76% 42%, rgba(255, 255, 255, 0.35) 0 15px, transparent 16px),
    linear-gradient(135deg, #25313a, #5a6870);
}

.production-visual::before {
  content: "";
  position: absolute;
  inset: 32px 18px 28px;
  background:
    radial-gradient(circle at 22% 48%, transparent 0 18px, #aeb9be 19px 34px, transparent 35px),
    radial-gradient(circle at 48% 44%, transparent 0 16px, #d3d9dc 17px 31px, transparent 32px),
    radial-gradient(circle at 74% 50%, transparent 0 17px, #aeb9be 18px 33px, transparent 34px),
    linear-gradient(90deg, #c6ced2, #747f86);
  transform: skewX(-12deg);
}

.production-visual::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 28px;
  height: 18px;
  background: rgba(15, 23, 42, 0.42);
  filter: blur(8px);
}

.production-visual span {
  position: absolute;
  left: 18%;
  top: 22%;
  width: 32px;
  height: 96px;
  border-radius: 999px;
  background: linear-gradient(90deg, #dce3e6, #46535d);
  box-shadow:
    75px -12px 0 -2px #aeb9be,
    150px 6px 0 -4px #ced7db,
    216px -4px 0 -6px #79858b;
}

.part-visual {
  width: clamp(160px, 13vw, 220px);
  height: clamp(130px, 10vw, 170px);
  margin: 0 auto clamp(28px, 3vw, 46px);
  position: relative;
  filter: drop-shadow(0 18px 18px rgba(15, 23, 42, 0.18));
}

.part-visual::before,
.part-visual::after,
.part-visual span {
  content: "";
  position: absolute;
  background: #111;
}

.part-visual::before {
  inset: 18px 16px 22px;
  border-radius: 8px;
  clip-path: polygon(0 10%, 100% 0, 94% 100%, 8% 88%);
}

.part-visual::after {
  width: 42%;
  height: 46%;
  left: 29%;
  top: 28%;
  border: 12px solid #f3f6fa;
  border-radius: 50%;
  background: transparent;
}

.part-visual span {
  width: 16px;
  height: 100px;
  left: 28px;
  top: 30px;
  box-shadow:
    142px -4px 0 #111,
    132px 78px 0 #111,
    14px 76px 0 #111;
}

.nasa-visual {
  width: 100%;
  height: clamp(150px, 10vw, 188px);
  margin-bottom: clamp(22px, 2vw, 28px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 44%, rgba(53, 157, 255, 0.78) 0 2px, transparent 3px),
    radial-gradient(circle at 52% 50%, rgba(20, 111, 207, 0.45), transparent 34%),
    linear-gradient(135deg, #020817, #091427 60%, #01040b);
}

.nasa-visual::before {
  content: "";
  position: absolute;
  left: 23%;
  top: 24%;
  width: 52%;
  height: 48%;
  border: 7px solid #86c8ff;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-18deg);
  filter: drop-shadow(0 0 9px rgba(61, 161, 255, 0.9));
}

.nasa-visual::after {
  content: "";
  position: absolute;
  left: 34%;
  top: 21%;
  width: 32%;
  height: 54%;
  border: 7px solid #419bf0;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(54deg);
}

.nasa-visual span {
  position: absolute;
  left: 29%;
  top: 48%;
  width: 46%;
  height: 7px;
  background: #b9dcff;
  transform: rotate(-22deg);
  box-shadow:
    12px -28px 0 -1px #318df0,
    30px 27px 0 -1px #318df0;
}

.cube-visual {
  width: clamp(130px, 10vw, 176px);
  height: clamp(130px, 10vw, 176px);
  margin: 0 auto clamp(18px, 2vw, 28px);
  display: grid;
  place-items: center;
  perspective: 500px;
}

.cube-visual div {
  width: clamp(76px, 5.7vw, 100px);
  height: clamp(76px, 5.7vw, 100px);
  position: relative;
  background: #4ea9d5;
  border: 8px solid #237da8;
  transform: rotateX(58deg) rotateZ(45deg);
  box-shadow:
    32px 32px 0 #1e729b,
    36px 36px 22px rgba(0, 0, 0, 0.18);
}

.cube-visual div::before,
.cube-visual div::after {
  content: "";
  position: absolute;
  background: #2f8fbd;
}

.cube-visual div::before {
  width: 60px;
  height: 14px;
  left: 18px;
  top: 20px;
}

.cube-visual div::after {
  width: 18px;
  height: 42px;
  right: 18px;
  bottom: 16px;
}

.mega-card h3 {
  margin-bottom: 18px;
  font-size: clamp(22px, 1.6vw, 26px);
}

.mega-card p {
  margin-bottom: 24px;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.38;
}

.card-btn {
  display: block;
  width: 100%;
  padding: 18px;
  border-radius: 7px;
  background: #d8ebfb;
  color: #005fa8;
  text-align: center;
  font-weight: 700;
}

.page-content {
  padding: 40px 20px;
  text-align: center;
}

.page-content h1 {
  font-size: 40px;
  line-height: 1.2;
}

.underline {
  width: 64px;
  height: 3px;
  margin: 28px auto;
  background: var(--green);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  margin: 7px 0;
  background: var(--ink);
}

@media (max-width: 1200px) {
  .navbar {
    gap: 22px;
  }

  .mega-content {
    grid-template-columns: 1fr 320px;
  }

  .mega-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .materials-grid {
    grid-template-columns: 1fr 1.55fr;
  }

  .industries-grid {
    grid-template-columns: 1.4fr 0.75fr;
  }

  .industries-section:last-child {
    grid-column: 1 / -1;
  }

  .materials-type-grid {
    gap: 34px;
  }
}

@media (max-width: 1024px) {
  .nav-wrap {
    min-height: 82px;
    padding: 0 20px;
  }

  .logo-text strong {
    font-size: 24px;
  }

  .logo-text span {
    font-size: 13px;
  }

  .menu-toggle {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 82px);
    overflow-y: auto;
    display: none;
    background: #fff;
    border-top: 1px solid var(--line);
  }

  .navbar.open {
    display: block;
  }

  .nav-list {
    display: block;
  }

  .nav-list > li > a,
  .nav-link {
    width: 100%;
    min-height: auto;
    padding: 18px 22px;
    justify-content: space-between;
    border-bottom: 1px solid #edf0f4;
    font-size: 17px;
  }

  .has-mega > .mega-btn::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    margin-left: 18px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    flex: 0 0 auto;
  }

  .has-mega.active > .mega-btn::after {
    transform: rotate(225deg);
  }

  .mega-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    max-height: none;
    overflow: visible;
  }

  .has-mega:hover .mega-menu {
    display: none;
  }

  .has-mega.active .mega-menu {
    display: block;
  }

  .mega-content {
    display: block;
    min-height: auto;
  }

  .materials-grid {
    display: block;
    padding: 24px 22px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 24px 22px;
  }

  .industries-grid {
    display: block;
    padding: 24px 22px;
  }

  .materials-type-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .industries-served-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .services-section,
  .materials-section,
  .industries-section {
    margin-bottom: 26px;
  }

  .mega-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 24px 22px;
  }

  .mega-col {
    gap: 20px;
    margin-bottom: 20px;
  }

  .mega-col span {
    font-size: 15px;
  }

  .mega-card {
    padding: 28px 22px;
  }

  .cube-visual {
    width: 150px;
    height: 150px;
  }

  .part-visual {
    width: 170px;
    height: 132px;
  }

  .nasa-visual {
    max-width: 360px;
  }

  .production-visual {
    max-width: 360px;
  }

  .cube-visual div {
    width: 82px;
    height: 82px;
  }

  .nav-actions {
    padding: 20px 22px 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .icon-btn,
  .flag-btn,
  .sign-in,
  .quote-btn {
    width: 100%;
    text-align: center;
  }

  .icon-btn,
  .flag-btn {
    border: 1px solid var(--line);
    border-radius: 7px;
  }

  .quote-btn {
    padding: 16px;
  }

  .page-content h1 {
    font-size: 30px;
  }
}

@media (max-width: 520px) {
  .logo-mark {
    width: 40px;
    height: 40px;
  }

  .logo-mark span {
    left: 11px;
    width: 18px;
    height: 5px;
  }

  .logo-mark span:first-child {
    top: 12px;
  }

  .logo-mark span:last-child {
    top: 22px;
  }

  .logo-text strong {
    font-size: 21px;
  }

  .logo-text span {
    font-size: 12px;
  }

  .nav-actions {
    grid-template-columns: 1fr;
  }

  .mega-card h3 {
    font-size: 24px;
  }

  .mega-card p {
    font-size: 16px;
  }
}

/* Embed safety: protects the menu from WordPress/theme CSS overrides. */
.site-header a,
.site-header a:hover,
.site-header a:focus,
.site-header a:visited {
  text-decoration: none !important;
}

.site-header .logo-text strong {
  color: var(--brand-blue) !important;
}

.site-header .logo-text span {
  color: #3b4250 !important;
}

.site-header .nav-list {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.site-header .nav-list li {
  margin: 0 !important;
  padding: 0 !important;
}

.site-header .has-mega {
  position: static !important;
}

.site-header .mega-menu {
  left: 0 !important;
  right: 0 !important;
}


/* Paste this at the VERY BOTTOM of assets/css/style.css on the live website. */

.site-header {
  --blue: #087bd3;
  --brand-blue: #3f9dcc;
  --green: #6cb33f;
  --ink: #111827;
  --muted: #506079;
  --line: #e5e7eb;
  --panel: #f3f6fa;
}

.site-header,
.site-header * {
  box-sizing: border-box;
}

.site-header a,
.site-header a:hover,
.site-header a:focus,
.site-header a:visited {
  color: inherit !important;
  text-decoration: none !important;
}

.site-header .logo-text strong {
  color: var(--brand-blue) !important;
  text-decoration: none !important;
}

.site-header .logo-text span {
  color: #3b4250 !important;
  text-decoration: none !important;
}

.site-header .nav-list {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.site-header .nav-list li {
  margin: 0 !important;
  padding: 0 !important;
}

.site-header .has-mega {
  position: static !important;
}

.site-header .nav-list > li > a,
.site-header .nav-link {
  color: var(--ink) !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
}

.site-header .has-mega:hover > .nav-link,
.site-header .has-mega.active > .nav-link {
  color: #0074bd !important;
  background: #f1f4f8 !important;
  text-decoration: underline !important;
}

.site-header .mega-menu {
  position: fixed !important;
  top: 96px !important;
  left: 0 !important;
  right: auto !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin: 0 !important;
}

.site-header .mega-content {
  width: 100% !important;
  max-width: 1900px !important;
  margin: 0 auto !important;
}

.site-header .services-section a,
.site-header .industry-links a,
.site-header .materials-section a,
.site-header .materials-type-grid a,
.site-header .industries-served-grid a,
.site-header .mega-col a {
  color: var(--ink) !important;
  text-decoration: none !important;
}

.site-header .services-section a:hover,
.site-header .industry-links a:hover,
.site-header .materials-section a:hover strong,
.site-header .materials-type-grid a:hover strong,
.site-header .industries-served-grid a:hover strong,
.site-header .mega-col a:hover strong {
  color: #0074bd !important;
}

.site-header .mega-card {
  background: var(--panel) !important;
}

.site-header .card-btn,
.site-header .card-btn:hover,
.site-header .card-btn:focus,
.site-header .card-btn:visited {
  display: block !important;
  color: #005fa8 !important;
  background: #d8ebfb !important;
  text-decoration: none !important;
}

.site-header .quote-btn{
    color: #000;
    background: #d9fb0f !important;
    text-decoration: none !important;
    font-family: Georgia, "Times New Roman", Times, serif;
}
.site-header .quote-btn:hover, .site-header .quote-btn:focus, .site-header .quote-btn:visited {
    color: #d9fb0f !important;
    background: #000 !important; 
}
@media (max-width: 1024px) {
  .site-header .navbar {
    display: none !important;
  }

  .site-header .navbar.open {
    display: block !important;
  }

  .site-header .mega-menu {
    position: static !important;
    display: none !important;
    max-height: none !important;
    overflow: visible !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
  }

  .site-header .has-mega:hover .mega-menu {
    display: none !important;
  }

  .site-header .has-mega.active .mega-menu {
    display: block !important;
  }
}



.video-banner {
  position: relative;
  min-height: clamp(575px, 68vh, 625px);
  overflow: hidden;
  display: flex;
  align-items: center;
  /*background:
    linear-gradient(90deg, rgba(4, 9, 14, 0.78), rgba(4, 9, 14, 0.18)),
    url("https://couchcruise.com/krishani-new/assets/images/img-f/bsjhdsa.png") center / cover no-repeat;*/
  isolation: isolate;
}

.banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.38) 46%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.18));
}

.video-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.16) 100%);
}

.banner-content {
  position: relative;
  width: min(720px, 90%);
  margin-left: clamp(34px, 7.35vw, 142px);
  color: #fff;
  animation: bannerFadeUp 900ms ease-out both;
  padding-top: 185px;
}

.banner-content h1 {
    margin: 0 0 22px;
    color: #fff;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: 60px;
    line-height: 70px;
    font-weight: 500;
    letter-spacing: 0;
    text-shadow: none;
    animation: bannerFadeUp 850ms 320ms ease-out both;
}

.banner-content p {
    margin: 0 0 36px;
    max-width: 620px;
    color: #fff;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: clamp(18px, 1.6vw, 26px);
    font-weight: 500;
    line-height: 1.45;
    animation: bannerFadeUp 850ms 460ms ease-out both;
    margin-bottom: 20px;
}
.banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 0 26px;
  border-radius: 0;
  background: #d9fb0f;
  color: #020617;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  box-shadow: none;
  animation: bannerFadeUp 850ms 600ms ease-out both;
  transition: transform 180ms ease, background-color 180ms ease;
}

.banner-btn:hover {
  transform: translateY(-3px);
  background: #cfff00;
}

@keyframes bannerFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@media (max-width: 576px) {
  .video-banner {
    min-height: 520px;
    align-items: flex-end;
  }

  .banner-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.86) 72%);
  }

  .banner-content {
    width: auto;
    margin: 0 20px 42px;
  }

  .banner-content h1 {
    margin-bottom: 18px;
    font-size: clamp(44px, 15vw, 68px);
  }

  .banner-content p {
    margin-bottom: 24px;
    font-size: 17px;
  }

  .banner-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .banner-content,
  .banner-content h1,
  .banner-content p,
  .banner-btn {
    animation: none;
  }

  .banner-btn {
    transition: none;
  }
}

/*industries css**/
 .vertical-card {
      position: relative;
      min-height: 356px;
      overflow: hidden;
      isolation: isolate;
      background: #111111;
      text-decoration: none;
      animation: cardFloat 4.5s ease-in-out infinite;
    }

    .vertical-card:nth-child(2),
    .vertical-card:nth-child(5) {
      animation-delay: 0.35s;
    }

    .vertical-card:nth-child(3),
    .vertical-card:nth-child(6) {
      animation-delay: 0.7s;
    }

    .vertical-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease, filter 0.7s ease;
      z-index: -2;
    }

    .card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.35) 45%,
        rgba(0, 0, 0, 0.82) 100%
      );
      z-index: -1;
      transition: background 0.35s ease;
    }

    .card-content {
      position: absolute;
      left: 28px;
      right: 70px;
      bottom: 28px;
      color: #ffffff;
      transform: translateY(10px);
      transition: transform 0.35s ease;
    }

    .card-content h3 {
      margin: 0 0 12px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(22px, 2vw, 26px);
      line-height: 1.1;
      font-weight: 700;
      color: #d2e825;
    }

    .card-content p {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 16px;
      line-height: 1.45;
      font-weight: 500;
    }

    .card-arrow {
      position: absolute;
      right: 28px;
      bottom: 34px;
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #d7ff18;
      color: #00102f;
      font-size: 24px;
      font-weight: 800;
      line-height: 1;
      text-decoration: none;
      transition: transform 0.3s ease, background 0.3s ease;
    }

    .vertical-card:hover img {
      transform: scale(1.08);
      filter: saturate(1.12);
    }

    .vertical-card:hover .card-overlay {
      background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.02) 0%,
        rgba(0, 0, 0, 0.24) 38%,
        rgba(0, 0, 0, 0.9) 100%
      );
    }

    .vertical-card:hover .card-content {
      transform: translateY(0);
    }

    .vertical-card:hover .card-arrow {
      transform: translateX(5px);
      background: #ecff53;
    }

    .reveal {
      opacity: 0;
      transform: translateY(34px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.show {
      opacity: 1;
      transform: translateY(0);
    }

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

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

    @media (max-width: 992px) {
      .vertical-card {
        min-height: 320px;
      }
    }

    @media (max-width: 600px) {
      .verticals-section {
        padding: 48px 16px;
      }

      .vertical-card {
        min-height: 300px;
      }

      .card-content {
        left: 20px;
        right: 58px;
        bottom: 24px;
      }

      .card-arrow {
        right: 20px;
        bottom: 28px;
      }

      .card-content p {
        font-size: 15px;
      }
    }
    
    
.trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: #010101;
    color: #fff;
    font-size: 20px;
    border: 0;
    border-radius: 5px;
    margin: auto;
    width: 30%;
}
.jlsjew {
    width: 100%;
    margin: auto;
    text-align: center;
    padding-top: 30px;
}
.custom-popup {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 999999;
}

.custom-popup.active {
  display: flex;
}

.popup-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.popup-content {
    position: relative;
    /*width: min(100%, 460px);*/
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: #fff;
    padding: 34px 28px;
    border-radius: 14px;
    z-index: 1;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
    width: 95%;
    margin: auto;
}

.popup-content h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 5vw, 34px);
  line-height: 1.15;
}

.popup-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 0;
    background: #d7ff18;
    color: #111;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    z-index: 1;
    border-radius: 20px;
}

body.popup-open {
  overflow: hidden;
}

@media (max-width: 575px) {
  .custom-popup {
    padding: 14px;
    align-items: flex-end;
  }

  .popup-content {
    width: 100%;
    padding: 30px 20px 24px;
    border-radius: 14px 14px 0 0;
  }
}
.site-header .nav-wrap {
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
  gap: clamp(14px, 1.8vw, 30px) !important;
}

.site-header .navbar-brand.vcvcn {
  flex: 0 0 clamp(190px, 15vw, 270px) !important;
  width: clamp(190px, 15vw, 270px) !important;
  max-width: clamp(190px, 15vw, 270px) !important;
  margin: 0 !important;
}

.site-header .navbar-brand.vcvcn img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

.header-info.header-info-text {
  flex: 0 1 430px !important;
  max-width: 430px !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #0f2f73 !important;
  font-size: clamp(13px, 1.95vw, 16px) !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  text-align: center !important;
  white-space: normal !important;
}

.site-header .navbar {
  margin-left: auto !important;
  flex: 0 0 auto !important;
}

.site-header .nav-list > li > a,
.site-header .nav-link {
  white-space: nowrap !important;
}
@media (max-width: 1500px) {
  .header-info.header-info-text {
    max-width: 360px !important;
    font-size: 14px !important;
    font-family: Georgia, "Times New Roman", Times, serif;
  }

  .site-header .nav-list > li > a,
  .site-header .nav-link {
    padding-left: 12px !important;
    padding-right: 12px !important;
    font-family: Georgia, "Times New Roman", Times, serif;
  }
}

@media (max-width: 1280px) {
  .site-header .navbar-brand.vcvcn {
    flex-basis: 210px !important;
    width: 210px !important;
    max-width: 210px !important;
  }

  .header-info.header-info-text {
    max-width: 300px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 1100px) {
  .header-info.header-info-text {
    display: none !important;
  }

  .site-header .navbar {
    margin-left: auto !important;
  }
}

@media (max-width: 1024px) {
  .site-header .nav-wrap {
    justify-content: space-between !important;
  }

  .site-header .navbar-brand.vcvcn {
    flex-basis: 180px !important;
    width: 180px !important;
    max-width: 180px !important;
  }
}

@media (max-width: 575px) {
  .site-header .navbar-brand.vcvcn {
    flex-basis: 150px !important;
    width: 150px !important;
    max-width: 150px !important;
  }
}


.framework {
  width: min(100%, 1920px);
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(320px, 43%) minmax(560px, 57%);
  align-items: center;
  gap: clamp(24px, 3.4vw, 64px);
  padding: clamp(24px, 3.2vw, 54px) clamp(28px, 4vw, 78px);
}

.intro {
  max-width: 780px;
  transform: translateY(18px);
  opacity: 0;
  animation: fadeUp 700ms ease-out 160ms forwards;
}

.intro h1 {
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.65rem);
  font-weight: 700;
  line-height: 1.1;
}

.intro p {
  margin: 0;
  max-width: 720px;
  color: #fff;
  font-size: clamp(1.2rem, 1.75vw, 2.1rem);
  font-weight: 300;
  line-height: 1.28;
}
.letter-box img {
    width: 100%;
}
.stages {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.15vw, 18px);
  padding-block: 8px;
}

.stage {
  --arrow: polygon(0 0, calc(100% - clamp(76px, 8vw, 142px)) 0, 100% 50%, calc(100% - clamp(76px, 8vw, 142px)) 100%, 0 100%);
  width: var(--w);
  min-height: clamp(92px, 9vw, 146px);
  margin-left: var(--offset);
  display: flex;
  align-items: center;
  gap: clamp(18px, 0.2vw, 38px);
  padding: clamp(18px, 2.05vw, 30px) clamp(88px, 9vw, 152px) clamp(18px, 2.05vw, 30px) clamp(15px, 4vw, 5px);
  color: #ffffff;
  clip-path: var(--arrow);
  filter: drop-shadow(0 16px 28px rgba(48, 48, 48, 0.08));
  opacity: 0;
  transform: translateX(80px) scaleX(0.92);
  transform-origin: left center;
}

.stage.is-visible {
  animation: slideIn 760ms cubic-bezier(.22, 1, .36, 1) forwards;
  animation-delay: calc(var(--i) * 180ms);
}

.stage-define {
  background: #d2e825;
}

.stage-measure {
  background: #d2e825;
}

.stage-analyze {
  background: #d2e825;
}

.stage-design {
  background: #d2e825;
}

.stage-verify {
  background: #d2e825;
}

.letter-box {
  width: clamp(58px, 4.8vw, 84px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
}
.verticals-section {
    padding-top: 30px;
    padding-bottom: 60px;
}
.stage-copy {
  min-width: 0;
}

.stage-copy h2 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: clamp(1.25rem, 1.55vw, 2rem);
  font-weight: 700;
  line-height: 1.05;
}

.stage-copy p {
  margin: 0;
  max-width: 470px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.95rem, 1.15vw, 1.4rem);
  font-weight: 300;
  line-height: 1.15;
}

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

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(80px) scaleX(0.92);
  }

  70% {
    opacity: 1;
    transform: translateX(-8px) scaleX(1.01);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scaleX(1);
  }
}

@media (max-width: 1180px) {
  .framework {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .intro {
    max-width: 900px;
  }

  .stages {
    max-width: 1000px;
    margin-inline: auto;
  }

  .stage {
    width: calc(100% - var(--offset));
  }
}

@media (min-width: 1181px) and (max-height: 760px) {
  .framework {
    padding-block: 22px;
    background: #000;
  }

  .stages {
    gap: 10px;
  }

  .stage {
    min-height: 88px;
    padding-block: 16px;
  }

  .letter-box {
    width: 70px;
  }

  .stage-copy h2 {
    font-size: 1.28rem;
  }

  .stage-copy p {
    font-size: 0.92rem;
  }
}

@media (max-width: 760px) {
 

  .framework {
    min-height: 100vh;
    padding: 34px 18px;
    gap: 34px;
  }

  .intro h1 {
    margin-bottom: 16px;
  }

  .stages {
    gap: 14px;
  }

  .stage {
    width: 100%;
    min-height: auto;
    margin-left: 0;
    gap: 16px;
    padding: 22px 56px 22px 20px;
  }
}

@media (max-width: 520px) {
  .stage {
    --arrow: polygon(0 0, calc(100% - 48px) 0, 100% 50%, calc(100% - 48px) 100%, 0 100%);
    align-items: flex-start;
    padding: 18px 48px 18px 16px;
  }

  .letter-box {
    width: 58px;
    border-width: 3px;
    border-radius: 10px;
  }

  .stage-copy h2 {
    margin-bottom: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro,
  .stage,
  .stage.is-visible {
    opacity: 1;
    transform: none;
    animation: none;
  }
}




/* Paste this at the very bottom of assets/css/style.css */
.advantage-hero {
  --krishani-red: #ed1c24;
  --krishani-white: #f7f7f7;
  --krishani-muted: rgba(255, 255, 255, 0.76);
  --krishani-line: rgba(255, 255, 255, 0.52);
  --krishani-panel: rgba(12, 19, 22, 0.74);
  position: relative !important;
  min-height: 100vh !important;
  overflow: hidden !important;
  background-image: url("https://couchcruise.com/krishani-new/assets/images/img-f/rubber-hero-bg-realistic.png") !important;
  background-position: center !important;
  background-size: cover !important;
  isolation: isolate !important;
}

.advantage-hero::before,
.advantage-hero::after,
.advantage-hero .hero-shade {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
}

.advantage-hero::before {
  z-index: -2 !important;
  background: rgba(0, 0, 0, 0.18) !important;
}

.advantage-hero::after {
  z-index: -1 !important;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.66) 36%, rgba(0, 0, 0, 0.32) 68%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.08) 44%, rgba(0, 0, 0, 0.90) 100%) !important;
}

.advantage-hero .hero-shade {
  z-index: 0 !important;
  background: radial-gradient(circle at 52% 35%, rgba(255, 255, 255, 0.10), transparent 23%) !important;
  mix-blend-mode: screen !important;
  opacity: 0.5 !important;
}

.advantage-hero .hero-content {
  position: relative !important;
  z-index: 1 !important;
  width: min(100%, 1840px) !important;
  margin-inline: auto !important;
  padding: clamp(3rem, 6vw, 8.2rem) clamp(1rem, 5vw, 6.2rem) clamp(2.25rem, 4vw, 3rem) !important;
}

.advantage-hero .hero-title {
  display: block !important;
  margin: 0 !important;
  color: var(--krishani-white) !important;
  font-family: "Inter", Arial, sans-serif !important;
  font-size: clamp(3.4rem, 6.2vw, 7.2rem) !important;
  font-weight: 900 !important;
  line-height: 0.98 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.58) !important;
}

.advantage-hero .hero-title span {
  display: block !important;
}

.advantage-hero .hero-title strong {
  color: #d2e825 !important;
  font-weight: inherit !important;
}

.advantage-hero .accent-line,
.advantage-hero .mini-line {
  display: block !important;
  background: #d2e825 !important;
}

.advantage-hero .accent-line {
  width: clamp(8.5rem, 10vw, 11.5rem) !important;
  height: 0.55rem !important;
  margin: clamp(1.45rem, 2.1vw, 2rem) 0 clamp(1.5rem, 2vw, 2.2rem) !important;
}

.advantage-hero .hero-copy {
  margin: 0 !important;
  max-width: 970px !important;
  color: #fff !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.42vw, 1.9rem) !important;
  font-weight: 400 !important;
  line-height: 1.38 !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72) !important;
  width: 60%;
    text-align: justify;
}

.advantage-hero .advantage-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: clamp(1rem, 1.55vw, 1.7rem) !important;
  margin-top: clamp(3rem, 4.3vw, 4.5rem) !important;
}

.advantage-hero .advantage-card {
  min-height: 20.6rem !important;
  padding: clamp(1.8rem, 2.1vw, 2.2rem) clamp(0.1rem, 0.7vw, 1.55rem) 1.9rem !important;
  border: 1px solid var(--krishani-line) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    var(--krishani-panel) !important;
  box-shadow: inset 0 0 42px rgba(255, 255, 255, 0.025), 0 22px 54px rgba(0, 0, 0, 0.24) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
  text-align: center !important;
}

.advantage-hero .icon-wrap {
  width: clamp(4.5rem, 4vw, 8.2rem) !important;
  margin: 0 auto 0.4rem !important;
}

.advantage-hero .icon-wrap svg {
  width: 100% !important;
  height: 100% !important;
  color: #fff !important;
  overflow: visible !important;
}

.advantage-hero .white {
  color: #fff !important;
}

.advantage-hero .red {
  color: #d2e825 !important;
}

.advantage-hero .red-fill {
  fill: #d2e825 !important;
  stroke: rgba(255, 255, 255, 0.12) !important;
}

.advantage-hero .mini-line {
  width: 3.5rem !important;
  height: 0.22rem !important;
  margin: 0.65rem auto 1.35rem !important;
}

.advantage-hero .advantage-card h2 {
    /* min-height: 4.9rem !important; */
    margin-bottom: 6px !important;
    color: #ffffff !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-weight: 500 !important;
    line-height: 27px;
    letter-spacing: 0 !important;
}

.advantage-hero .advantage-card p {
  max-width: 18.4rem !important;
  margin: 0 auto !important;
  color: var(--krishani-muted) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.98rem, 1.05vw, 1.22rem) !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
}

@media (min-width: 1200px) {
  .advantage-hero .advantage-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }

  .advantage-hero .advantage-card {
    min-width: 0 !important;
  }
}

@media (max-width: 1199.98px) {
  .advantage-hero .advantage-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .advantage-hero .advantage-card {
    min-height: 22rem !important;
  }
}

@media (max-width: 991.98px) {
  .advantage-hero {
    background-position: 62% center !important;
  }

  .advantage-hero .hero-content {
    padding-top: 3.8rem !important;
  }

  .advantage-hero .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767.98px) {
  .advantage-hero::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.66) 46%, rgba(0, 0, 0, 0.93) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.25)) !important;
  }

  .advantage-hero .hero-title {
    font-size: clamp(2.8rem, 14vw, 4.9rem) !important;
  }

  .advantage-hero .hero-copy br {
    display: none !important;
  }

  .advantage-hero .advantage-grid {
    grid-template-columns: 1fr !important;
    margin-top: 2.5rem !important;
  }

  .advantage-hero .advantage-card {
    min-height: auto !important;
  }
}

@media (max-width: 420px) {
  .advantage-hero .hero-content {
    padding-inline: 0.85rem !important;
  }

  .advantage-hero .hero-title {
    font-size: clamp(2.3rem, 13.2vw, 3.4rem) !important;
  }

  .advantage-hero .advantage-card {
    padding-inline: 0.95rem !important;
  }
}
.cyfub {
    color: #d2e825;
}

.clients-section {
  width: min(100%, 1360px);
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.2fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
  overflow: hidden;
  padding: clamp(58px, 7vw, 92px) clamp(22px, 5vw, 72px);
  background:
    radial-gradient(70% 65% at 86% 98%, rgba(7, 13, 61, 0.05), transparent 66%),
    linear-gradient(180deg, var(--surface), var(--surface));
}

.clients-copy {
  max-width: 590px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.clients-copy h1 {
  margin: 0;
  max-width: 13.8em;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2.1rem, 4.2vw, 4.15rem);
  font-weight: 400;
  line-height: 1.16;
}

.logo-marquee {
  position: relative;
  display: grid;
  gap: clamp(36px, 4vw, 58px);
  width: 100%;
  overflow: hidden;
  padding: 4px 0 10px;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 var(--fade),
    #000 calc(100% - var(--fade)),
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 var(--fade),
    #000 calc(100% - var(--fade)),
    transparent 100%
  );
}

.marquee-row {
  display: flex;
  width: max-content;
  animation: logo-scroll 46s linear infinite;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: clamp(44px, 5vw, 86px);
  min-width: 100%;
  padding-right: clamp(44px, 5vw, 86px);
}

.marquee-row-reverse {
  animation-duration: 58s;
}

.logo-marquee:hover .marquee-row {
  animation-play-state: paused;
}

.client-logo {
  flex: 0 0 auto;
  min-width: clamp(116px, 12vw, 174px);
  color: var(--logo);
  font-size: clamp(1.28rem, 2.1vw, 2.05rem);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  filter: grayscale(1);
  opacity: 0.78;
}

.client-logo:hover {
  color: var(--logo-strong);
  opacity: 1;
}

.siemens,
.bosch,
.tata {
  text-transform: uppercase;
}

.acer {
  font-size: clamp(1.6rem, 2.7vw, 2.75rem);
  font-style: italic;
  letter-spacing: -0.04em;
}

.boat {
  color: #111;
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 500;
}

.nois::before {
  content: "";
  display: inline-block;
  width: 0.78em;
  height: 0.78em;
  margin-right: 8px;
  border: 0.14em solid currentColor;
  border-radius: 50%;
  font-weight: 700;
  vertical-align: -0.08em;
}

.res {
  font-size: clamp(1.55rem, 2.7vw, 2.55rem);
  text-transform: lowercase;
}

.nextracker,
.bharat,
.kirloskar {
  font-size: clamp(1rem, 1.65vw, 1.5rem);
  font-weight: 700;
}

.bbl,
.caterpillar {
  color: #313136;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
}

.mahindra,
.larsen,
.voltas,
.havells {
  font-size: clamp(1.25rem, 2vw, 1.95rem);
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

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

@media (max-width: 900px) {
  :root {
    --fade: 44px;
  }

 

  .clients-section {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: auto;
    padding: 56px 20px 66px;
  }

  .clients-copy h1 {
    max-width: 13em;
  }

  .logo-marquee {
    margin-inline: -20px;
    width: calc(100% + 40px);
  }

  .logo-track {
    gap: 38px;
    padding-right: 38px;
  }

  .marquee-row {
    animation-duration: 42s;
  }

  .marquee-row-reverse {
    animation-duration: 52s;
  }
}

@media (max-width: 560px) {
  :root {
    --fade: 26px;
  }

  .clients-section {
    padding: 44px 18px 58px;
  }

  .eyebrow {
    font-size: 0.82rem;
    margin-bottom: 14px;
  }

  .clients-copy h1 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 1.18;
  }

  .logo-marquee {
    gap: 30px;
    margin-inline: -18px;
    width: calc(100% + 36px);
  }

  .client-logo {
    min-width: 112px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-row {
    width: 100%;
  }

  .logo-track {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    animation: none;
  }

  .marquee-row {
    animation: none;
  }

  .logo-track[aria-hidden="true"] {
    display: none;
  }
}
.page-shell {
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 62px) clamp(18px, 4vw, 54px);
}

.execution-flow {
  animation: sectionIn 800ms ease both;
  padding-top: 60px;
    padding-bottom: 60px;
}

.section-title {
  display: grid;
  grid-template-columns: minmax(80px, 250px) 48px auto 48px minmax(80px, 250px);
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 20px);
  margin-bottom: clamp(28px, 3.6vw, 44px);
  text-align: center;
}

.section-title h1 {
  margin: 0;
  color: var(--navy);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(54px, 6.8vw, 94px);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 5px 12px rgba(7, 29, 59, 0.12);
}

.section-title span {
  height: 2px;
  background: linear-gradient(90deg, transparent, #486176);
}

.section-title span:last-child {
  background: linear-gradient(90deg, #486176, transparent);
}

.section-title i {
  width: 46px;
  height: 10px;
  display: block;
  background: var(--teal);
  transform: skewX(-22deg);
}

.flow-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(20px, 3vw, 28px);
    padding-top: 30px;
    padding-bottom: 20px;
}
img.jdjoij {
    width: 75%;
}
.flow-card {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  padding: clamp(28px, 3.2vw, 42px);
  border: 1px solid rgba(65, 88, 110, 0.45);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.96)),
    var(--white);
  box-shadow: 0 18px 40px rgba(7, 29, 59, 0.08);
  animation: cardIn 760ms ease both;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.flow-card:nth-child(2) {
  animation-delay: 130ms;
}

.flow-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 10px;
  content: "";
  background: #d2e825;
}

.flow-card::after {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 185px;
  height: 185px;
  content: "";
  border-radius: 50%;
  background: rgba(7, 29, 59, 0.05);
  z-index: 0;
}

.flow-card:hover {
  transform: translateY(-8px);
  border-color: rgba(7, 29, 59, 0.42);
  box-shadow: 0 24px 48px rgba(7, 29, 59, 0.14);
}

.flow-card-front {
  --accent: var(--teal);
  --accent-soft: rgba(2, 154, 148, 0.14);
}

.flow-card-back {
  --accent: var(--orange);
  --accent-soft: rgba(242, 154, 0, 0.15);
}

.flow-card-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(20px, 2.6vw, 10px);
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(65, 88, 110, 0.35);
}

.dcvnjicon-wrap {
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(7, 29, 59, 0.04);
}

.dcvnjicon-wrap svg {
  width: 132px;
  height: 132px;
  fill: none;
  stroke: #000;
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 7px 8px rgba(7, 29, 59, 0.12));
  animation: iconFloat 4s ease-in-out infinite;
}

.back-icon svg {
  stroke-width: 4;
}

.back-icon .gear {
  fill: #d2e825;
  stroke: none;
}

.back-icon circle {
  fill: #f8fafc;
}

.flow-copy h2,
.benefits h2 {
  margin: 0;
  
  font-weight: 700;
 
}

.flow-copy h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 3.2vw, 30px);
}

.flow-copy h2::after,
.benefits h2::after {
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 104px;
  height: 4px;
  content: "";
  background: var(--accent);
}

.flow-copy p {
  max-width: 610px;
  margin: 8px 0 0;
  color: #172943;
  font-size: clamp(18px, 1.45vw, 18px);
  line-height: 1.42;
}

.flow-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0;
    margin: 10px 0 0;
    padding: 0 0 0 clamp(15px, 3.8vw, 14px);
    list-style: none;
}

.flow-list li {
    position: relative;
    padding: 8px 0 8px 22px;
    border-bottom: 1px solid rgba(65, 88, 110, 0.34);
    color: var(--navy);
    font-size: clamp(18px, 1.6vw, 18px);
    font-weight: 500;
    line-height: 1.2;
    animation: listIn 520ms ease both;
    font-family: Georgia, "Times New Roman", serif;
}
.flow-list li:nth-child(2) {
  animation-delay: 110ms;
}

.flow-list li:nth-child(3) {
  animation-delay: 220ms;
}

.flow-list li:nth-child(4) {
  animation-delay: 330ms;
}

.flow-list li::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    content: "";
    border-radius: 50%;
    background: #d2e825;
    box-shadow: 0 0 0 var(--accent-soft);
    transform: translateY(-50%);
}

.benefits {
  position: relative;
  display: grid;
  
  gap: 18px;
  align-items: center;
  min-height: 230px;
  margin-top: clamp(22px, 3vw, 28px);
  overflow: hidden;
  padding: clamp(24px, 3vw, 36px) clamp(24px, 4vw, 54px);
  border-radius: 8px;
  color: var(--white);
  background:#101c5e;
  box-shadow: 0 20px 44px rgba(7, 29, 59, 0.18);
  animation: benefitsIn 780ms 230ms ease both;
}

.benefits::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 45%),
    repeating-linear-gradient(90deg, transparent 0 94px, rgba(255, 255, 255, 0.03) 94px 96px);
  pointer-events: none;
}

.benefits-mark {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 166px;
  display:none;
}

.benefits-mark svg {
  position: relative;
  z-index: 2;
  width: 142px;
  height: 142px;
  fill: none;
  stroke: var(--white);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefits-mark svg path:last-child {
  stroke: var(--teal-soft);
  stroke-width: 9;
}

.radar {
  position: absolute;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(53, 197, 190, 0.22) 0 1px, transparent 2px 16px),
    conic-gradient(from 0deg, transparent, rgba(53, 197, 190, 0.18), transparent 34%);
  animation: spin 12s linear infinite;
}

.benefits-content {
  position: relative;
  z-index: 1;
  padding-bottom: 40px;
}

.benefits h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 42px;
    color: #fff;
    font-size: clamp(30px, 4vw, 42px);
    text-align: center;
    width: 100%;
}



.benefit-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 40px);
  padding-top: 25px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: center;
  min-width: 0;
  padding-right: clamp(14px, 2vw, 36px);
  border-right: 2px solid rgba(53, 197, 190, 0.65);
}

.benefit-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.benefit-item p {
    margin: 0;
    color: #ffffff;
    font-size: clamp(18px, 1.55vw, 20px);
    font-weight: 500;
    line-height: 1.35;
}

.check {
  position: relative;
  width: 64px;
  height: 64px;
  display: inline-grid;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  /*background: linear-gradient(145deg, var(--teal), var(--teal-soft));*/
  background: linear-gradient(145deg, #d2e825, #d2e825);
  box-shadow: 0 0 0 8px rgba(53, 197, 190, 0.18);
}



.factory-ghost {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 260px;
  height: 210px;
  opacity: 0.22;
  transform: translate(18px, 16px);
}
.bi-check-lg::before {
    content: "\f633";
    color: #fff;
    font-size: 30px;
    line-height: 40px;
}
.factory-ghost::before {
  position: absolute;
  right: 50px;
  bottom: 0;
  width: 150px;
  height: 82px;
  content: "";
  border: 10px solid rgba(255, 255, 255, 0.34);
  border-top: 0;
}

.factory-ghost::after {
  position: absolute;
  right: 0;
  bottom: 96px;
  width: 112px;
  height: 112px;
  content: "";
  border: 20px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  box-shadow: inset 0 0 0 22px rgba(255, 255, 255, 0.14);
}

.factory-ghost span {
  position: absolute;
  right: 70px;
  bottom: 26px;
  width: 180px;
  height: 14px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0 18px, rgba(255, 255, 255, 0.18) 18px 34px);
}

@keyframes sectionIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes listIn {
  from {
    opacity: 0;
    transform: translateX(-14px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes benefitsIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes spin {
  to {
    transform: rotate(1turn);
  }
}

@media (max-width: 1180px) {
  .flow-card {
    min-height: auto;
  }

  .flow-card-inner {
    grid-template-columns: 130px 1fr;
  }

  .dcvnjicon-wrap {
    width: 126px;
    height: 126px;
  }

  .dcvnjicon-wrap svg {
    width: 98px;
    height: 98px;
  }

  .benefits {
    grid-template-columns: 170px 1fr;
  }

  .benefit-item {
    grid-template-columns: 58px 1fr;
  }

  .check {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 900px) {
  .section-title {
    grid-template-columns: 1fr 34px auto 34px 1fr;
  }

  .flow-grid {
    grid-template-columns: 1fr;
  }

  .benefits {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .benefits-mark {
    display: none;
  }

  .benefit-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .benefit-item {
    border-right: 0;
    border-bottom: 1px solid rgba(53, 197, 190, 0.45);
    padding: 0 0 18px;
  }

  .benefit-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 620px) {
  .page-shell {
    padding: 24px 14px;
  }

  .section-title {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .section-title span {
    display: none;
  }

  .section-title i {
    width: 42px;
    height: 8px;
    margin: 0 auto;
  }

  .section-title i:last-of-type {
    display: none;
  }

  .flow-card {
    padding: 24px 18px;
  }

  .flow-card-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .flow-card::after {
    width: 138px;
    height: 138px;
  }

  .dcvnjicon-wrap {
    width: 112px;
    height: 112px;
  }

  .dcvnjicon-wrap svg {
    width: 88px;
    height: 88px;
  }

  .flow-list {
    padding-left: 8px;
  }

  .flow-list li {
    padding-left: 30px;
  }

  .benefits {
    padding: 28px 18px;
  }

  .benefit-item {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .check {
    width: 44px;
    height: 44px;
    border-width: 2px;
  }

  .check::before {
    width: 20px;
    height: 12px;
    border-bottom-width: 5px;
    border-left-width: 5px;
  }

  .factory-ghost {
    opacity: 0.12;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}





.section-wrap {
    /* max-width: 980px; */
    /* margin: 0 auto; */
    background: #f1f1f1;
    padding: 60px 0px;
}

.section-header {
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease 0.1s forwards;
}

.eyebrow {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #a6be16;
    margin-bottom: 6px;
    display: block;
    text-align: left;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a18;
}

/* Bento grid */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* Base card */
.bento-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(0,0,0,0.08);
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: transform 0.32s ease, box-shadow 0.28s ease;
  cursor: default;
}

.bento-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.1);
}

/* Wide card spans 2 cols */
.bento-card.wide {
  grid-column: span 2;
}

/* Top row of icon + title */
.bento-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.bento-icon {
  width:50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.bento-card:hover .bento-icon {
  transform: scale(1.12) rotate(-4deg);
}

.bento-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a18;
    line-height: 1.3;
    font-family: Georgia, "Times New Roman", serif;
}

.bento-card p {
  
  margin-top: 6px;
}

/* Big stat in wide hero card */
.bento-stat {
  font-size: 42px;
  font-weight: 700;
  margin: 8px 0 4px;
  transition: transform 0.25s ease;
}

.bento-card:hover .bento-stat {
  transform: scale(1.04);
}

/* Number badge */
.card-num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.25;
  letter-spacing: 0.04em;
}

/* Colored accent bar on hover */
.bento-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 0 0 14px 14px;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.bento-card:hover::after { opacity: 1; }

/* Color themes */
.c-blue  { --ic-bg:#E6F1FB; --ic-col:#185FA5; --stat-col:#0C447C; --bar:#378ADD; }
.c-teal  { --ic-bg:#E1F5EE; --ic-col:#0F6E56; --stat-col:#085041; --bar:#1D9E75; }
.c-purple{ --ic-bg:#EEEDFE; --ic-col:#534AB7; --stat-col:#3C3489; --bar:#7F77DD; }
.c-coral { --ic-bg:#FAECE7; --ic-col:#993C1D; --stat-col:#712B13; --bar:#D85A30; }
.c-green { --ic-bg:#EAF3DE; --ic-col:#3B6D11; --stat-col:#27500A; --bar:#639922; }
.c-amber { --ic-bg:#FAEEDA; --ic-col:#854F0B; --stat-col:#633806; --bar:#BA7517; }
.c-pink  { --ic-bg:#FBEAF0; --ic-col:#993556; --stat-col:#72243E; --bar:#D4537E; }
.c-gray  { --ic-bg:#F1EFE8; --ic-col:#5F5E5A; --stat-col:#444441; --bar:#888780; }

.bento-icon { background: var(--ic-bg); color: var(--ic-col); }
.bento-stat { color: var(--stat-col); }
.bento-card::after { background: var(--bar); }
.card-num { color: var(--ic-col); opacity: 0.3; }

/* Keyframe */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 700px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-card.wide { grid-column: span 2; }
}

@media (max-width: 460px) {
  .bento { grid-template-columns: 1fr; }
  .bento-card.wide { grid-column: span 1; }
 
  .section-header h2 { font-size: 28px; }
}









/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .info h3 {
  font-weight: 700;
  font-size: 32px;
}
.testimonials {
    background: #f9f9f9;
}
.testimonials .swiper {
    box-shadow: 0 15px 30px 0 rgb(0 0 0 / 24%);
    background-color: #fff;
}

h3.blocmkjjn {
    font-size: 36px !important;
    font-style: normal;
    font-weight: 700;
    line-height: 46px;
    letter-spacing: -0.89px;
    text-transform: uppercase;
}
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 200px;
  position: relative;
  margin: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  margin-right: 10px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
  color: #000;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #000;
  opacity: 1;
  border: none;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #d2e825;
}

@media (max-width: 767px) {

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    margin: 15px;
  }
}

h3.hcdschou.heading-sm-3 {
    font-size: 36px;
    padding-top: 10px;
    line-height: 46px;
    font-family: var(--font-2);
    font-weight: 700;
    text-transform: uppercase;
}
/** cta button at last*/
.cta-content {
    
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.cta-content .cta-text {
    padding: 30px 0 30px 60px;
}
.heading-2 {
    font-size: 38px;
    font-weight: 700;
     line-height: 48px;
}
.text-4 {
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    
}
section.ncsks.global-vertical-padding-lg-b {
    padding-top: 60px;
    padding-bottom: 60px;
}
.cta-content .cta-link {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #020b36;
    color: #fff;
    border: 1px solid transparent;
    padding: 12px 20px;
    width: 180px;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}
.cta-content .cta-media img {
    width: 100%;
    display: block;
}
.cta-content .cta-description {
    padding: 12px 0 0px;
}

/* end of cta*/
.footer .top-footer {
    display: flex;
    justify-content: space-between;
    padding-bottom: 48px;
    border-bottom: 1px solid #353c5e;
}
.footer .top-footer .quote-container .social-icons {
    gap: 10px;
    margin-bottom: 0px;
}
.footer .top-footer .quote-container .social-icons li a {
    padding: .6em;
}

.krishani-advantage {
      position: relative;
      width: 100%;
      min-height: 100vh;
      background: #f0f0f0;
      overflow: hidden;
    }

   .advantage-title {
    position: absolute;
    left: 3%;
    top: 36%;
    transform: translateY(-50%);
    max-width: 525px;
    z-index: 20;
    color: #111;
    font-size: 38px;
    padding-top: 10px;
    line-height: 46px;
    font-family: var(--font-2);
    font-weight: 700;
    text-transform: uppercase;
}
.swiper {
    margin-left: 75px;
}
    .advantage-copy {
      position: absolute;
      left: 4%;
      top: 56%;
      transform: translateY(-50%);
      max-width: 360px;
      z-index: 20;
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 18px;
      line-height: 1.55;
      color: #222;
    }

    #cv {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .items {
      position: absolute;
      inset: 0;
      z-index: 10;
      pointer-events: none;
    }

    .item {
      position: absolute;
      display: flex;
      align-items: center;
      gap: 16px;
      opacity: 0;
      transform: translateX(-16px);
      transition: opacity 0.55s ease, transform 0.55s ease;
      pointer-events: all;
    }

    .item.show {
      opacity: 1;
      transform: translateX(0);
    }

    .ic {
      flex-shrink: 0;
      border-radius: 50%;
      background: #1a2755;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 3px 18px rgba(20, 30, 80, 0.35);
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

    .item:hover .ic {
      transform: scale(1.1);
      box-shadow: 0 6px 26px rgba(20, 30, 80, 0.5);
    }

    .ic svg {
      fill: none;
      stroke: #fff;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .lbl {
      max-width: 320px;
      color: #222;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 16px;
      font-weight: 500;
      line-height: 1.5;
    }

    @media (max-width: 750px) {
      .krishani-advantage {
        min-height: auto;
        padding: 40px 20px 55px;
      }

      .advantage-title,
      .advantage-copy {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        max-width: 100%;
      }

      .advantage-title {
        margin-bottom: 20px;
        font-size: 32px;
      }

      .advantage-copy {
        margin-bottom: 32px;
        font-size: 16px;
      }

      #cv {
        display: none;
      }

      .items {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 22px;
      }

      .item {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        opacity: 1;
        transform: none;
      }

      .lbl {
        max-width: 100%;
        font-size: 14px;
      }

      .ic {
        width: 54px !important;
        height: 54px !important;
      }

      .ic svg {
        width: 30px !important;
        height: 30px !important;
      }
    }
/*end of krishani advantage*/



:root {
  --blue: #020b36;
  --text: #020b36;
  --line: #b7bbcf;
  --green: #d2e825;
}



.dfpage {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #ebeff1;
  overflow-x: hidden;
}
.infographic {
  position: relative;
  padding: 60px 0px;
  aspect-ratio: 16 / 9;
  background: #fff;
  /*overflow: hidden;*/
  overflow: visible;
}

.symbol-stage {
  position: absolute;
  left: 24.35%;
  top: 43.25%;
  width: 51.25%;
  z-index: 2;
  pointer-events: none;
}

.symbol-stage img {
  display: block;
  width: 100%;
  height: auto;
}

.connectors {
  /*position: absolute;*/
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  margin-top: 38px;
}

.connectors path {
  fill: none;
  stroke: var(--line);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.connectors circle {
  fill: var(--green);
  stroke: #020b36;
  stroke-width: 2;
}

.step {
  position: absolute;
  z-index: 3;
  min-width: 0;
  max-width: 100%;
  margin-top: 214px;
}

.title {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  color: var(--blue);
}

.title span {
    display: block;
    min-width: 30px;
    font-size: clamp(22px, 1.35vw, 30px);
    line-height: .82;
    font-weight: 800;
}

.title h2 {
    margin: 0;
    min-width: 0;
    font-size: clamp(15px, 1.08vw, 21px);
    line-height: 1.18;
    font-weight: 800;
    overflow-wrap: break-word;
    margin-left: -14px;
}

.step p {
    margin: 10px 0 0;
    font-size: clamp(15px, 0.99vw, 18px);
    line-height: 1.48;
    font-weight: 500;
    overflow-wrap: break-word;
    margin-left: -14px;
}

.step-1 { left: 16.45%; top: 5.9%; width: 250px; }
.step-2 { left: 40.15%; top: 6.2%; width: 285px; }
.step-3 { left: 63.1%; top: 6.2%; width: 330px; }
.step-4 {
    left: 77.75%;
    top: 20.5%;
    width: 280px;
}
.step-5 {
    left: 74.3%;
    top: 47.6%;
    width: 310px;
}
.step-6 {
    left: 55.8%;
    top:62.2%;
    width: 315px;
}
.step-7 {
    left: 30.2%;
    top: 62.5%;
    width: 330px;
}
.step-8 { left: 8.2%; top:50.9%; width: 245px; }
.step-9 {
    left: 8.2%;
    top: 33.8%;
    width: 232px;
}

.step-4 .title,
.step-5 .title,
.step-8 .title,
.step-9 .title {
  align-items: center;
  gap: 15px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .infographic {
    aspect-ratio: auto;
    min-height: 1060px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 28px;
    padding: 20px;
  }

  .connectors {
    display: none;
  }

  .symbol-stage,
  .step {
    position: relative;
    inset: auto;
  }

  .symbol-stage {
    grid-column: 1 / -1;
    order: 1;
    width: min(94vw, 820px);
    margin: 0 auto 12px;
  }

  .step {
    width: auto;
    max-width: 100%;
  }

  .step-1 { order: 2; }
  .step-2 { order: 3; }
  .step-3 { order: 4; }
  .step-4 { order: 5; }
  .step-5 { order: 6; }
  .step-6 { order: 7; }
  .step-7 { order: 8; }
  .step-8 { order: 9; }
  .step-9 { order: 10; }
}

@media (max-width: 768px) {
  .infographic {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .title span {
    min-width: 36px;
    font-size: 32px;
  }

  .title h2 {
    font-size: 18px;
  }

  .step p {
    margin-top: 10px;
    font-size: 15px;
  }

  .title,
  .step p {
    width: min(300px, calc(100vw - 72px));
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .infographic {
    padding: 16px 12px 28px;
  }

  .symbol-stage {
    width: 112%;
    margin-left: -6%;
  }

  .title,
  .step p {
    width: min(300px, calc(100vw - 72px));
    max-width: 100%;
  }
}
p.djskfjwio {
    width: 80%;
    margin: auto;
    text-align: center;
}



/*book download*/
    .cta-section {
    background: #f9f9f9;
    /* border-radius: 28px; */
    padding: 50px;
    overflow: hidden;
    position: relative;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06); */
}

    .free-resource{
      color:#2563eb;
      font-size:14px;
      font-weight:700;
      text-transform:uppercase;
      margin-bottom:18px;
      display:inline-block;
    }

    .main-heading {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 10px;
}
    .main-heading span{
      color:#b0c415;
    }

    .sub-text{
      color:#475569;
      font-size:17px;
      line-height:1.8;
      margin-bottom:20px;
      max-width:520px;
    }

    .feature-box{
      background:#ffffff;
      border:1px solid #e2e8f0;
      border-radius:20px;
      padding:28px 20px;
      text-align:center;
      transition:0.3s ease;
      height:100%;
      box-shadow:0 4px 20px rgba(0,0,0,0.03);
    }

    .feature-box:hover{
      transform:translateY(-6px);
      box-shadow:0 15px 30px rgba(37,99,235,0.12);
    }

   .feature-icon {
    width: 50px;
    height: 50px;
    background: #d2e825;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
    color: #000;
}

    .feature-title{
      font-size:18px;
      font-weight:700;
      color:#0f172a;
      margin-bottom:10px;
    }

    .feature-text{
      color:#64748b;
      font-size:14px;
      line-height:1.6;
    }

    .book-area{
      position:relative;
      text-align:center;
    }

    .circle-bg{
      width:360px;
      height:360px;
      background:#dbeafe;
      border-radius:50%;
      position:absolute;
      top:50%;
      left:50%;
      transform:translate(-50%,-50%);
      z-index:1;
    }

    .book-image {
    position: relative;
    z-index: 2;
    /* max-width: 260px; */
    width: 80%;
    filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.18));
    margin: auto;
}
    .right-content{
      padding-left:30px;
    }

    .right-heading{
      font-size:34px;
      font-weight:800;
      color:#0f172a;
      margin-bottom:18px;
      line-height:1.3;
    }

    .right-text{
      color:#475569;
      font-size:16px;
      line-height:1.8;
      margin-bottom:28px;
    }

    .download-btn{
     background: #d2e825;
    color: #000;
      border:none;
      padding:16px 34px;
     
      font-size:16px;
      font-weight:700;
      text-decoration:none;
      display:inline-flex;
      align-items:center;
      gap:12px;
      transition:0.3s ease;
      box-shadow:0 12px 24px rgb(184 193 112);
    }

    .download-btn:hover{
      background:#1d4ed8;
      transform:translateY(-3px);
      color:#fff;
    }

    .shape-left{
      position:absolute;
      left:-100px;
      bottom:-100px;
      width:300px;
      height:300px;
      background:#dbeafe;
      border-radius:50%;
      opacity:0.4;
      display: none;
    }

    .shape-right{
      position:absolute;
      right:-120px;
      top:-120px;
      width:320px;
      height:320px;
      background:#d2e825;
      border-radius:50%;
      opacity:0.3;
    }

    @media(max-width:1200px){

      .main-heading{
        font-size:40px;
      }

      .right-heading{
        font-size:28px;
      }

      .circle-bg{
        width:280px;
        height:280px;
      }
    }

    @media(max-width:991px){

      .cta-section{
        padding:40px 30px;
      }

      .main-heading{
        font-size:34px;
      }

      .book-area{
        margin:50px 0;
      }

      .right-content{
        padding-left:0;
        text-align:center;
      }

      .sub-text{
        max-width:100%;
      }

      .circle-bg{
        width:260px;
        height:260px;
      }

      .main-heading,
      .sub-text{
        text-align:center;
      }

      .free-resource{
        display:block;
        text-align:center;
      }
    }

    @media(max-width:576px){

      .cta-section{
        padding:30px 20px;
        border-radius:20px;
      }

      .main-heading{
        font-size:28px;
      }

      .right-heading{
        font-size:24px;
      }

      .download-btn{
        width:100%;
        justify-content:center;
      }

      .feature-box{
        padding:24px 16px;
      }

      .circle-bg{
        width:220px;
        height:220px;
      }

      .book-image{
        max-width:200px;
      }
    }
/*end of book download*/

/* start of certifications*/

.certifications-content {
   padding-top: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, .11);
    padding-bottom: 60px;
}
.certifications-content .certifications-title {
    padding-top: 10px;
}
.certifications-content .certifications-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}
.certifications-content .certifications-list .certifications-item {
    display: flex;
    align-items: center;
    justify-content: center;
}
.certifications-content .certifications-list .certifications-logo {
    width: 140px;
    height: 64px;
    -o-object-fit: contain;
    object-fit: contain;
    display: block;
}
/*end of certifications*/

/* ============================================================
   TRUST BAR
   ============================================================ */
.ve-trust-bar {
  background: var(--ve-gold);
  padding: 14px 0;
  overflow:hidden;
  white-space:nowrap;
}
.ve-trust-inner {
  display:inline-flex; gap:60px;
  animation: ve-marquee 25s linear infinite;
}
.ve-trust-inner span { font-size:13px; font-weight:700; color:var(--ve-dark); display:inline-flex; align-items:center; gap:8px; }
.ve-trust-inner span i { font-size:14px; }
@keyframes ve-marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }




   .quote-section{
      padding:90px 0;
      position:relative;
      overflow:hidden;
      background: #f9f9f9;
    }

    .quote-section::before{
      content:"";
      position:absolute;
      width:500px;
      height:500px;
      background:radial-gradient(circle, rgba(77,99,255,0.08) 0%, transparent 70%);
      top:-150px;
      left:-150px;
      border-radius:50%;
    }

   
.main-heading {
    font-size: 36px;
    line-height: 46px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

    .main-heading span{
      color:#b5cf1c;
      display:block;
    }

   .underline {
    width: 90px;
    height: 4px;
    background: #b5cf1c;
    border-radius: 20px;
    margin-bottom: 35px;
    margin: inherit;
    margin-bottom: 10px;
}

    .sub-text{
      font-size:22px;
      line-height:1.8;
      color:#5f6475;
      margin-bottom:50px;
    }

    .features{
      
      gap:35px;
      flex-wrap:wrap;
      margin-bottom:45px;
    }
.feature-item {
    text-align: center;
    min-width: 110px;
    float: left;
    width: 49%;
    padding-bottom: 20px;
}
   
    .feature-item i{
      font-size:34px;
      color:#afc918;
      margin-bottom:15px;
    }

    .feature-item h6{
      font-size:16px;
      line-height:1.5;
      color:#1d2433;
      font-weight:600;
      margin:0;
    }

   .hdhewd.quote-btn {
    align-items: center;
    gap: 18px;
    background: #d9fb0f;
    color: #000;
    text-decoration: none;
    padding: 11px 26px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.4s ease;
    box-shadow: 0 15px 35px rgba(79, 93, 255, 0.25);
    text-align: center;
}

    .hdhewd.quote-btn :hover{
      transform:translateY(-5px);
      color:#fff;
    }

    /* FORM CARD */

    .form-card{
      background:#fff;
      border-radius:28px;
      padding:45px;
      box-shadow:0 25px 70px rgba(14,30,80,0.08);
      position:relative;
    }

    .form-icon{
      width:80px;
      height:80px;
      border-radius:50%;
      background:#000;
      display:flex;
      align-items:center;
      justify-content:center;
      margin-bottom:25px;
    }

    .form-icon i{
      font-size:34px;
      color:#afc918;
    }

    .form-title {
    font-size: 30px;
    font-weight: 700;
    color: #afc918;
    margin-bottom: 10px;
}

    .form-subtitle{
      color:#687086;
      font-size:18px;
      margin-bottom:35px;
    }

    .custom-input{
      position:relative;
      margin-bottom:22px;
    }

    .custom-input i{
      position:absolute;
      top:50%;
      left:18px;
      transform:translateY(-50%);
      color:#8c92a5;
      font-size:16px;
    }

    .custom-input textarea + i{
      top:28px;
      transform:none;
    }

   .custom-input input, .custom-input textarea, .custom-input select {
    width: 100%;
    border: 1px solid #dfe4f1;
    padding: 12px 18px 12px 13px;
    font-size: 12px;
    outline: none;
    transition: 0.3s ease;
    background: #fff;
}

    .custom-input textarea{
      min-height:140px;
      resize:none;
    }

    .custom-input input:focus,
    .custom-input textarea:focus,
    .custom-input select:focus{
      border-color:#4f5dff;
      box-shadow:0 0 0 4px rgba(79,93,255,0.08);
    }

    .upload-box{
      border:2px dashed #d8dff1;
      border-radius:18px;
      padding:35px 20px;
      text-align:center;
      margin-bottom:28px;
      transition:0.3s ease;
      cursor:pointer;
    }

    .upload-box:hover{
      border-color:#4f5dff;
      background:#fafbff;
    }

    .upload-box i{
      font-size:32px;
      color:#4f5dff;
      margin-bottom:12px;
    }

    .upload-box h6{
      font-size:17px;
      color:#212936;
      margin-bottom:8px;
    }

    .upload-box p{
      margin:0;
      color:#7b8498;
      font-size:14px;
    }

    .submit-btn {
    width: 100%;
    border: none;
    background: #cee92e;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s ease;
    box-shadow: 0 15px 35px rgba(79, 93, 255, 0.2);
    padding: 10px 10px;
}
    .submit-btn:hover{
      transform:translateY(-3px);
    }

    /* RESPONSIVE */

    @media(max-width:1199px){

      .main-heading{
        font-size:58px;
      }

      .sub-text{
        font-size:19px;
      }
    }

    @media(max-width:991px){

      .left-content{
        padding-right:0;
        margin-bottom:60px;
      }

      .main-heading{
        font-size:52px;
      }

      .form-card{
        padding:35px;
      }
    }

    @media(max-width:767px){

      .quote-section{
        padding:70px 0;
      }

      .main-heading{
        font-size:42px;
      }

      .sub-text{
        font-size:17px;
        line-height:1.7;
      }

      .features{
        gap:20px;
        justify-content:center;
      }

      .feature-item{
        width:45%;
      }

      .form-title{
        font-size:34px;
      }

      .form-card{
        padding:28px;
      }

      .quote-btn{
        width:100%;
        justify-content:center;
      }
    }

    @media(max-width:480px){

      .main-heading{
        font-size:34px;
      }

      .feature-item{
        width:100%;
      }

      .form-title{
        font-size:28px;
      }

      .custom-input input,
      .custom-input textarea,
      .custom-input select{
        font-size:15px;
      }
    }







.about { padding: 34px 0 60px; }
h2 {
  font-size: clamp(1.9rem, 3vw, 2.72rem);
  line-height: 1.08;
  font-weight: 900;
  margin-bottom: 1rem;
}



.pill { padding: .65rem 1.3rem; background: #061016; }
.pill span { color: var(--lime); margin-left: .4rem; }

.part-card {
  position: relative;
  padding: 1.3rem;
  min-height: 215px;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(234, 239, 199, .72), rgba(245, 247, 232, .92));
  overflow: hidden;
}

.part-card::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px dashed rgba(140, 168, 0, .55);
  background-image: radial-gradient(rgba(140,168,0,.55) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .65;
}

.part-card img {
  position: relative;
  z-index: 1;
  margin: auto;
  width: 100%;
  border-radius: 12px;
  mix-blend-mode: multiply;
}

.value-list {
  display: grid;
  gap: 1.1rem;
}

.value-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: .85rem;
  align-items: center;
}

.value-list svg {
  width: 54px;
  height: 54px;
  padding: 12px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 12px 28px rgba(5, 20, 24, .1);
}

.value-list p { margin: 0; color: #536068;  }

.stat-item svg, .value-list svg, .service-card svg, .process-steps svg, .impact-stat svg, .trust-panel svg {
    color: #9db800;
    stroke-width: 1.7;
}

h3.shdh {
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
}
.mskio {
    color: #a2b91c;
}




 .krishani-advantage-section {
      padding: 50px 0;
      background: #f8f9fa;
      overflow: hidden;
    }

    
  .advantage-graphic {
    float: left;
}

  .advantage-graphic img {
    display: block;
    width: 70%;
    height: auto;
    object-fit: contain;
    margin: auto;
    
}
img.nslie {
    width: 68%;
    margin-top: 14px;
    margin: auto;
    text-align: center;
    margin-top: 30px;
}
.ssha {
    float: left;
    padding-top: 220px;
    padding-left: 45px;
}
    .mobile-center-circle {
      display: none;
    }

    .advantage-mobile-list {
      display: none;
    }

    .advantage-item {
      display: grid;
      grid-template-columns: 48px minmax(0, 1fr);
      gap: 12px;
      align-items: center;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 8px 18px rgba(6, 45, 104, .08);
    }

    .advantage-item > div {
      min-width: 0;
    }

    .advantage-item strong {
      display: block;
      margin-bottom: 4px;
      color: var(--navy);
      font-size: 16px;
      line-height: 1.2;
    }

    .advantage-item.orange strong {
      color: var(--orange);
    }

    .advantage-item p {
      margin: 0;
      font-size: 13px;
      line-height: 1.4;
    }

    .advantage-number {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      background: var(--navy);
      font-weight: 800;
    }

    .advantage-item.orange .advantage-number {
      background: var(--orange);
    }

    @media (max-width: 767px) {
      .krishani-advantage-section {
        padding: 28px 0;
      }

      .advantage-container {
        padding: 0 12px;
      }

      .advantage-graphic {
        display: none;
      }

      .mobile-center-circle {
        width: min(310px, 86vw);
        aspect-ratio: 1 / 1;
        display: grid;
        place-items: center;
        margin: 0 auto 22px;
        padding: 34px;
        text-align: center;
        border: 2px solid var(--line);
        border-radius: 50%;
        background: #fff;
        box-shadow: 0 18px 36px rgba(6, 45, 104, .14);
      }

      .mobile-brand {
        color: var(--navy);
        font-size: 18px;
        line-height: 1;
        font-weight: 900;
        letter-spacing: .5px;
      }

      .mobile-brand span {
        color: var(--orange);
      }

      .mobile-sub {
        margin: 7px 0 14px;
        color: var(--navy);
        font-size: 6px;
        font-weight: 800;
        letter-spacing: .25em;
      }

      .mobile-title {
        color: var(--navy);
        font-size: 27px;
        line-height: 1;
        font-weight: 900;
      }

      .mobile-line {
        position: relative;
        width: 58px;
        height: 3px;
        margin: 15px auto 11px;
        border-radius: 999px;
        background: var(--orange);
      }

      .mobile-line::after {
        content: "";
        position: absolute;
        right: -12px;
        top: -2px;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--orange);
      }

      .mobile-center-circle p {
        margin: 0;
        font-size: 12px;
        line-height: 1.35;
      }

      .advantage-mobile-list {
        display: grid;
        gap: 12px;
        width: 100%;
      }

      .advantage-item strong,
      .advantage-item p {
        overflow-wrap: anywhere;
        word-break: break-word;
        white-space: normal;
      }

      .advantage-item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 14px;
      }

      .advantage-number {
        width: 42px;
        height: 42px;
      }

      .advantage-item p {
        font-size: 12.5px;
      }
    }
    .sffiw {
    background-image: url(https://couchcruise.com/krishani-new/assets/images/cta-2.png);
    background-color: #cccccc;
    height: 440px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.ve-page-hero {
    min-height: 380px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
   
}
.ve-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 27, 42, 0.5) 0%, rgba(13, 27, 42, 0.85) 100%);
}
.ve-page-hero-content {
    position: relative;
    z-index: 2;
}
.ve-page-hero-content h1 {
    font-size: 46px;
    font-weight: 900;
    color: #fff;
    margin: 10px 0 18px;
    line-height: 1.15;
}

/* CONTACT SECTION */


.tagline{
    color:var(--primary);
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:20px;
}



.description{
   
    margin-bottom:40px;
}

.feature-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:28px;
}

.feature-icon{
    width:60px;
    height:60px;
    min-width:60px;
    border:1px solid var(--primary);
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary);
    font-size:24px;
}

.feature-title{
    color:#fff;
    font-size:24px;
    font-weight:700;
    margin-bottom:4px;
}

.feature-text{
    color:rgba(255,255,255,.7);
    margin:0;
}

.quote-btn {
    margin-top: 20px;
    background: black;
    color: #fff;
    font-weight: 700;
    border: none;
    padding: 10px 35px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: .3s;
}

.quote-btn:hover {
    transform: translateY(-3px);
    color: #000;
    background: #c5e30e;
}

/* FORM */

.contact-card{
    background:#fff;
    border-radius:28px;
    padding:30px 30px;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}



.line {
    width: 55px;
    height: 4px;
    background: #beda12;
    margin-bottom: 15px;
}
.fjdshfoe {
    font-size: 24px;
    line-height: 34px;
    font-weight: 600;
}
.contact-card p{
    color:#6c757d;
    font-size:18px;
    margin-bottom:15px;
}

.form-control{
    
    font-size:16px;
}

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


.submit-btn:hover {
    transform: translateY(-2px);
    background: black;
    color: #fff;
}

/* RESPONSIVE */

@media(max-width:1199px){

    .main-heading{
        font-size:58px;
    }

    .contact-card h2{
        font-size:40px;
    }

}

@media(max-width:991px){

    .section-border{
        padding:50px 35px;
    }

    .main-heading{
        font-size:48px;
    }

    .contact-card{
        margin-top:50px;
    }

}

@media(max-width:767px){

    .contact-section{
        padding:60px 0;
    }

    .section-border{
        padding:30px 20px;
    }

    .main-heading{
        font-size:38px;
    }

    .description{
        font-size:16px;
    }

    .feature-title{
        font-size:20px;
    }

    .contact-card{
        padding:30px;
    }

    .contact-card h2{
        font-size:32px;
    }

}


/* =======================
SECTION
======================= */

.capabilities-section{
    margin-top: 20px;
    background:
    radial-gradient(circle at top left,#ffffff,#f2f4f7);
    position:relative;
    overflow:hidden;
}

.capabilities-section:before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(0,0,0,.02);
    top:-250px;
    left:-150px;
}

.capabilities-section:after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(217,251,15,.08);
    bottom:-180px;
    right:-100px;
}

/* =======================
LEFT CONTENT
======================= */

.section-title{
    font-size:58px;
    font-weight:800;
    line-height:1.05;
    color:#111;
    margin-bottom:15px;
}

.section-title span{
    display:block;
    color:#a4bb00;
}

.title-line{
    width:60px;
    height:4px;
    background:var(--primary);
    margin:25px 0;
}

.section-desc{
    color:#444;
    font-size:18px;
    line-height:1.9;
    max-width:500px;
}

/* =======================
IMAGE
======================= */

.blueprint-image{
    margin-top:45px;
    position:relative;
}

.blueprint-image img{
    width:100%;
    max-width:720px;
    /*animation:floatImage 5s ease-in-out infinite;**/
}

/* =======================
GRID
======================= */

.capability-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.capability-card{
    background:#fff;
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.4s;
    position:relative;
    overflow:hidden;

    opacity:0;
    transform:translateY(40px);
    animation:fadeUp .7s forwards;
}

.capability-card:nth-child(1){animation-delay:.1s}
.capability-card:nth-child(2){animation-delay:.2s}
.capability-card:nth-child(3){animation-delay:.3s}
.capability-card:nth-child(4){animation-delay:.4s}
.capability-card:nth-child(5){animation-delay:.5s}
.capability-card:nth-child(6){animation-delay:.6s}
.capability-card:nth-child(7){animation-delay:.7s}
.capability-card:nth-child(8){animation-delay:.8s}
.capability-card:nth-child(9){animation-delay:.9s}

.capability-card:before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:4px;
    background:var(--primary);
    transition:.5s;
}

.capability-card:hover:before{
    left:0;
}

.capability-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.icon-box{
    width:65px;
    height:65px;
    margin:auto;
    border-radius:50%;
    background:#f8f9fa;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
    transition:.4s;
}

.icon-box i{
    font-size:28px;
    color:#9db413;
}

.capability-card:hover .icon-box{
    background:#f8f9fa;
    transform:rotateY(180deg);
}

.capability-card h5 {
    font-size: 16px;
    font-weight: 600;
    line-height: 25px;
    margin: 0;
}

/* =======================
ANIMATIONS
======================= */

@keyframes floatImage{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =======================
RESPONSIVE
======================= */

@media(max-width:1199px){

    .section-title{
        font-size:48px;
    }

}

@media(max-width:991px){

    .section-title{
        font-size:42px;
    }

    .blueprint-image{
        text-align:center;
        margin-bottom:40px;
    }

    .capability-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .capabilities-section{
        padding:60px 0;
    }

    .section-title{
        font-size:32px;
    }

    .section-desc{
        font-size:16px;
    }

    .capability-grid{
        grid-template-columns:1fr;
    }

    .capability-card{
        padding:25px;
    }

}






.featured2 {
    margin: 80px 0px;
    
}
.featured2 .featured2-container.left {
    flex-direction: row-reverse;
}
.featured2 .featured2-container {
    display: flex;
}.featured2 .featured2-container.fifty.left .featured2-media {
    padding-left: 15px;
}
.featured2 .featured2-container.fifty .featured2-media, .featured2 .featured2-container.fifty .featured2-content {
    flex-basis: 50%;
}
.featured2 .featured2-container .featured2-media {
    align-items: center;
    display: flex;
    margin: 0;
    text-align: end;
}.featured2 .featured2-container .featured2-media img {
    object-fit: cover;
    height: 100%;
    max-width: 100%;
}
.featured2.white .featured2-container.left .featured2-content {
    padding-left: 0px;
}
.featured2 .featured2-container.fifty.right .featured2-content {
    padding: 30px 30px 30px 40px;
}





.main-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}
.snfhf {
    margin-top: 20px;
}
.main-image:hover img{
    transform:scale(1.05);
}

.small-heading{
    color:var(--primary);
    font-size:18px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.main-heading{
    font-size:62px;
    font-weight:800;
    line-height:1.05;
    color:var(--secondary);
    margin:15px 0 25px;
}

.heading-line{
    width:90px;
    height:4px;
    background:var(--primary);
    border-radius:50px;
    margin-bottom:25px;
}

.description{
    font-size:20px;
    line-height:1.8;
    color:#555;
}

.application-title{
    margin-top:50px;
    margin-bottom:30px;
    font-size:28px;
    font-weight:700;
    color:var(--primary);
}

.application-card{
    background:#fff;
    border-radius:18px;
    padding:25px;
    height:100%;
    display:flex;
    align-items:center;
    gap:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.4s;
}

.application-card:hover{
    transform:translateY(-8px);
}

.icon-circle{
    width:70px;
    min-width:70px;
    height:70px;
    border-radius:50%;
    background:#f8f9fa;
    display:flex;
    align-items:center;
    justify-content:center;
}

.icon-circle i{
    font-size:28px;
    color:#b7d11e;
}

.application-card h6 {
    margin: 0;
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: #222;
}
.elastomer-section {
    background: #f2f4f7;
    padding-bottom: 40px;
}
h4.jsjspa {
    color: #fff;
}
.bottom-banner{
    margin-top:45px;
    background:#b8d21e;
    border-radius:22px;
    padding:35px;
    color:#fff;
}

.banner-wrap{
    display:flex;
    align-items:center;
    gap:30px;
}

.banner-icon{
    width:90px;
    min-width:90px;
    height:90px;
    border-radius:50%;
    border:2px solid rgba(255,255,255,.3);
    display:flex;
    align-items:center;
    justify-content:center;
}

.banner-icon i{
    font-size:40px;
}

.banner-content h4{
    font-size:32px;
    font-weight:700;
    margin-bottom:10px;
}

.banner-content p{
    margin:0;
    font-size:18px;
    line-height:1.8;
}

@media(max-width:991px){

.main-heading{
    font-size:48px;
}

.main-image{
    min-height:350px;
    margin-bottom:40px;
}

.banner-wrap{
    flex-direction:column;
    text-align:center;
}

}

@media(max-width:767px){

.elastomer-section{
    padding:60px 0;
}

.main-heading{
    font-size:36px;
}

.description{
    font-size:17px;
}

.application-card{
    text-align:left;
}

.banner-content h4{
    font-size:24px;
}

.banner-content p{
    font-size:16px;
}

}








.qa-section{
    padding:80px 0;
    background:#fff;
}

.section-tag{
    color:var(--primary);
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:15px;
    font-size:14px;
}

.section-title{
    font-size:clamp(2.2rem,5vw,4rem);
    font-weight:800;
    line-height:1.1;
    color:var(--dark);
    text-transform:uppercase;
    margin-bottom:25px;
}

.section-title span{
    color:#1565c0;
}

.title-line{
    width:80px;
    height:4px;
    background:#1565c0;
    margin-bottom:30px;
    border-radius:50px;
}


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

.activities-box{
    background:#fff;
    margin-top:50px;
    border-radius:20px;
    padding:45px;
    box-shadow:0 5px 30px rgba(0,0,0,.06);
    border:1px solid #eef1f6;
}


.activities-sub{
    color:#666;
    margin-bottom:25px;
}

.custom-list{
    list-style:none;
    padding:0;
    margin:0;
}

.custom-list li {
    position: relative;
    padding: 6px 0 6px 25px;
    border-bottom: 1px solid #e8edf5;
    font-size: 18px;
    font-family: Georgia, "Times New Roman", serif;
}

.custom-list li:last-child{
    border-bottom:none;
}

.custom-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    background: #889c13;
    border-radius: 50%;
}
.highlight-box{
    background:linear-gradient(135deg,#f7f9fd,#edf3ff);
    border-radius:18px;
    padding:50px;
    height:100%;
    display:flex;
    align-items:center;
}

.highlight-box p {
    font-size: 24px;
    font-weight: 600;
    color: #889c13;
    line-height: 34px;
    /* margin: 0; */
}

.highlight-line{
    width:5px;
    background:#889c13;
    border-radius:20px;
    margin-right:30px;
    min-height:220px;
}

@media (max-width:991px){

    .qa-image{
        min-height:350px;
        margin-top:40px;
    }

    .activities-box{
        padding:30px;
    }

    .highlight-box{
        margin-top:30px;
        padding:35px;
    }

    .highlight-box p{
        font-size:1.4rem;
    }

    .highlight-line{
        min-height:140px;
        margin-right:20px;
    }
}

@media (max-width:576px){

    .qa-section{
        padding:60px 0;
    }

    .activities-box{
        padding:25px;
    }

    .section-title{
        font-size:2.2rem;
    }

    .qa-content p{
        font-size:16px;
    }

    .custom-list li{
        font-size:16px;
    }

    .highlight-box{
        flex-direction:column;
        align-items:flex-start;
    }

    .highlight-line{
        width:80px;
        height:4px;
        min-height:auto;
        margin-bottom:20px;
    }

    .highlight-box p{
        font-size:1.25rem;
    }
}












.industries-section{
    background:#f7f9fc;
    padding:80px 0;
    position:relative;
    overflow:hidden;
}

.section-desc{
    max-width:900px;
    margin:auto;
    color:#555;
    font-size:20px;
    line-height:1.8;
}

.including-btn{
    display:inline-block;
    background:#0d5be1;
    color:#fff;
    padding:12px 35px;
    border-radius:50px;
    font-size:28px;
    font-weight:700;
    margin-top:30px;
    margin-bottom:50px;
}

.industry-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:15px;
    text-align:center;
    padding:25px;
    height:100%;
}

.image-circle{
    width:170px;
    height:170px;
    background:#edf4ff;
    border-radius:50%;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.image-circle img{
    max-width:120px;
    max-height:120px;
    object-fit:contain;
}

.industry-card h5{
    font-size:24px;
    font-weight:600;
    color:#13213b;
    min-height:60px;
}

.card-line{
    width:50px;
    height:3px;
    background:#0d5be1;
    margin:auto;
}

.info-box{
    margin-top:60px;
    background:#eef4ff;
    border:1px solid #d9e6ff;
    border-radius:15px;
    padding:35px;
}

.shield{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#0d5be1;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:40px;
    margin:auto;
}

.divider{
    width:1px;
    height:90px;
    background:#bfd4ff;
    margin:auto;
}

.info-text{
    font-size:24px;
    color:#1f2937;
    line-height:1.8;
}

.info-text strong{
    color:#0d5be1;
}

@media(max-width:991px){

   

    .section-desc{
        font-size:17px;
    }

    .divider{
        display:none;
    }

    .info-text{
        text-align:center;
        margin-top:20px;
        font-size:18px;
    }
}

@media(max-width:767px){

   

    .including-btn{
        font-size:20px;
    }

    .image-circle{
        width:130px;
        height:130px;
    }

    .image-circle img{
        max-width:90px;
        max-height:90px;
    }

    .industry-card h5{
        font-size:18px;
    }
}