@charset "UTF-8";
/* ============================================================
   new_style.css - Jeeno Tech
   Merged: main.css (used sections) + style.css + custom.css
   Unused CSS removed. Organized by: Common → Page-specific
   ============================================================ */
/* ============================================================
   PART 1: GLOBAL & COMMON CSS (from main.css)
   ============================================================ */
/* --- CSS Variables & Global Base --- */
:root {
  /**
     @Font-Family 
   */
  --jeeno-ff-body: "Raleway", sans-serif;
  --jeeno-ff-heading: 'Raleway', sans-serif;
  --jeeno-ff-fontawesome: "Font Awesome 6 Pro";
  --jeeno-ff-outfit: "Outfit", sans-serif;
  /**
     @Font-weight 
   */
  --jeeno-fw-normal: normal;
  --jeeno-fw-thin: 100;
  --jeeno-fw-elight: 200;
  --jeeno-fw-light: 300;
  --jeeno-fw-regular: 400;
  --jeeno-fw-medium: 500;
  --jeeno-fw-sbold: 600;
  --jeeno-fw-bold: 700;
  --jeeno-fw-ebold: 800;
  --jeeno-fw-black: 900;
  /**
     @Font-Size 
   */
  --jeeno-fs-body: 16px;
  --jeeno-fs-p: 16px;
  --jeeno-fs-h1: 60px;
  --jeeno-fs-h2: 48px;
  --jeeno-fs-h3: 32px;
  --jeeno-fs-h4: 24px;
  --jeeno-fs-h5: 20px;
  --jeeno-fs-h6: 18px;
  /**
     @Color 
   */
  --jeeno-color-common-white: #ffffff;
  --jeeno-color-common-black: #000000;
  --jeeno-color-light-black: #171717;
  --jeeno-color-heading-primary: #ffffff;
  --jeeno-color-text-body: #9692b2;
  --jeeno-color-text-body-2: #524f66;
  --jeeno-color-theme-primary: #052537;
  --jeeno-color-theme-bg: #052537;
  --jeeno-color-theme-dark: #052537;
  --jeeno-color-theme-light: #12435F;
  --jeeno-color-theme-dark-2: #65627a;
  --jeeno-color-white-2: rgba(255, 255, 255, 0.8);
  --jeeno-color-grey-1: #9692b2;
  --jeeno-color-grey-2: #78758f;
  --jeeno-color-grey-3: rgba(150, 146, 178, 0.8);
  --jeeno-color-border-1: #312c52;
  --jeeno-color-common-green: #1FB680;
  --jeeno-color-header-news: #DDF4EC;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.site-main,
html {
  position: relative;
}

body {
  font-family: var(--jeeno-ff-body);
  font-size: var(--jeeno-fs-body);
  font-weight: normal;
  /* color: var(--jeeno-color-common-white); */
  color: #000000;
  background-color: var(--jeeno-color-common-white);
  line-height: 1.5;
}

body.home {
  background-color: var(--jeeno-color-theme-dark);
}

a {
  text-decoration: none;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--jeeno-ff-heading);
  margin-top: 0px;
  font-weight: var(--jeeno-fw-medium);
  line-height: 1.2;
  letter-spacing: -0.03em;
  transition: all 0.3s ease-in-out 0s;
}

h3.sub-heading {
  line-height: 40px;
  font-size: 30px;
  font-weight: var(--jeeno-fw-bold);
  color: var(--jeeno-color-common-black);
  text-transform: capitalize;
}

h5.small-heading {
  color: var(--jeeno-color-common-black);
  font-weight: var(--jeeno-fw-regular);
  font-family: var(--jeeno-ff-outfit);
  font-size: 22px;
  text-transform: uppercase;
}

h1 {
  font-size: var(--jeeno-fs-h1);
  line-height: 1.053;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  h1 {
    font-size: 40px;
  }
  .ai-services-sec1 .ai-service p {
    font-size: 26px;
    line-height: 1.2;
    text-transform: capitalize;
    margin-bottom: 1em;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  h1 {
    font-size: 34px;
  }
}
h2 {
  font-size: var(--jeeno-fs-h2);
  line-height: 1.125;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  h2 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 30px;
  }
}
h3 {
  font-size: var(--jeeno-fs-h3);
  line-height: 1.188;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  h3 {
    font-size: 28px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  h3 {
    font-size: 25px;
  }
}
h4 {
  font-size: var(--jeeno-fs-h4);
  line-height: 1.25;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  h4 {
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  h4 {
    font-size: 20px;
  }
}
h5 {
  font-size: var(--jeeno-fs-h5);
  line-height: 1.4;
}

h6 {
  font-size: var(--jeeno-fs-h6);
  line-height: 1.333;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  display: block;
}

h1:hover a,
h2:hover a,
h3:hover a,
h4:hover a,
h5:hover a,
h6:hover a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
}

ul {
  margin: 0px;
  padding: 0px;
}

a,
.btn,
button,
span,
p,
input,
select,
textarea,
li,
svg path,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6 {
  transition: all 0.3s ease-in-out 0s;
}

a:focus,
button:focus,
button:focus-visible {
  text-decoration: none;
  outline: none;
  box-shadow: 0 0 0;
}

a:focus,
a:hover {
  /* color: inherit; */
  text-decoration: none;
}

a,
button {
  color: var(--jeeno-color-theme-primary);
  outline: none;
  border: none;
  background: transparent;
  padding: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

select,
.nice-select,
input[type=search],
input[type=tel],
input[type=text],
input[type=email],
input[type=url],
textarea {
  outline: none;
  background-color: var(--jeeno-color-common-white);
  height: auto;
  width: 100%;
  font-size: var(--jeeno-fs-body);
  border: 1px solid var(--jeeno-color-border-1);
  color: var(--jeeno-color-text-body);
  padding: 10px 15px;
  box-shadow: 0 0 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

* {
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  height: 4px;
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background: var(--jeeno-color-theme-primary);
  -webkit-border-radius: 1px;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.75);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

*::-moz-selection {
  background: var(--jeeno-color-common-black);
  color: var(--jeeno-color-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--jeeno-color-common-black);
  color: var(--jeeno-color-common-white);
  text-shadow: none;
}

::selection {
  background: var(--jeeno-color-common-black);
  color: var(--jeeno-color-common-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--jeeno-color-grey-2);
  font-size: var(--jeeno-fs-body);
  opacity: 1;
}

*::placeholder {
  color: var(--jeeno-color-grey-2);
  font-size: var(--jeeno-fs-body);
  opacity: 1;
}

/**
 	Common Classes CSS
*/
img {
  max-width: 100%;
}

.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.rg-30 {
  row-gap: 30px;
}

.rg-40 {
  row-gap: 40px;
}

.rg-50 {
  row-gap: 50px;
}

.rg-60 {
  row-gap: 60px;
}

.rg-70 {
  row-gap: 70px;
}

.rg-80 {
  row-gap: 80px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.section-gap {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-gap {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-gap {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.section-gap-2 {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-gap-2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-gap-2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.gap-top {
  padding-top: 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gap-top,
  .section-gap-top {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .gap-top,
  .section-gap-top {
    padding-top: 70px;
  }
}
.gap-bottom,
.section-gap-bottom {
  padding-bottom: 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gap-bottom,
  .section-gap-bottom {
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .gap-bottom,
  .section-gap-bottom {
    padding-bottom: 70px;
  }
}
.section-gap-x {
  margin-left: 60px;
  margin-right: 60px;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .section-gap-x {
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-gap-x {
    margin-left: 0;
    margin-right: 0;
  }
}
.section-gap-x2 {
  margin-left: 50px;
  margin-right: 50px;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .section-gap-x2 {
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-gap-x2 {
    margin-left: 0;
    margin-right: 0;
  }
}
.section-gap-x3 {
  margin-left: 30px;
  margin-right: 30px;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .section-gap-x3 {
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-gap-x3 {
    margin-left: 0;
    margin-right: 0;
  }
}
.section-separator {
  border-top: 1px solid var(--jeeno-color-border-1);
}

.sticky-lg-top {
  top: 30px;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}

body:has(.sticky) .sticky-lg-top {
  top: 130px;
}

.title-anim > div {
  overflow: hidden;
}

.jeeno-text-invert > div {
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, var(--jeeno-color-heading-primary) 50%, var(--jeeno-color-text-body-2) 50%);
}

.line {
  position: relative;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  --highlight-offset: 0%;
  background-image: linear-gradient(90deg, var(--jeeno-color-heading-primary) var(--highlight-offset), var(--jeeno-color-text-body-2) var(--highlight-offset));
}

.circle-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  width: 126px;
  height: 126px;
  background-size: 100%;
  background-repeat: no-repeat;
  animation: textrotate 20s infinite linear;
}

.circle-text-wrap {
  width: 154px;
  height: 154px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 5;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .circle-text {
    width: 120px;
    height: 120px;
  }
}
.circle-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
  color: var(--jeeno-color-common-white);
  font-size: 36px;
  width: 100%;
  height: 100%;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.circle-icon span {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--jeeno-color-theme-dark);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.circle-icon i {
  color: var(--jeeno-color-common-white);
  transition: all 0.3s ease-in-out;
}

.circle-icon:hover i {
  transform: scale(0.8);
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .circle-icon {
    font-size: 30;
    width: 120px;
    height: 120px;
  }
}
.icon-btn {
  font-size: 30px;
  width: 56px;
  height: 56px;
  background-color: var(--jeeno-color-theme-dark);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-btn i {
  color: var(--jeeno-color-common-white);
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}

.icon-btn:hover {
  background-color: var(--jeeno-color-theme-primary);
}

.icon-btn:hover i {
  transform: rotate(0);
}

.icon-btn.style-2 {
  font-size: 20px;
  width: 50px;
  height: 50px;
  border: 1px solid var(--jeeno-color-border-1);
}

.text-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: var(--jeeno-fw-sbold);
  text-align: center;
  line-height: 1;
  padding: 20px 30px 0;
  background-color: var(--jeeno-color-theme-bg);
  border-radius: 12px;
  position: relative;
  z-index: 2;
}

.text-btn .btn-text {
  color: var(--jeeno-color-common-white);
  overflow: hidden;
}

.text-btn .btn-text span {
  display: flex;
  line-height: 1;
  text-shadow: 0 30px 0 var(--jeeno-color-theme-primary);
  backface-visibility: hidden;
  transform: translate(0);
  transition: 0.4s ease-in-out;
}

.text-btn .btn-icon {
  color: var(--jeeno-color-common-white);
  font-size: 20px;
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.text-btn .btn-icon span {
  display: flex;
  line-height: 1;
  text-shadow: -30px 0 0 var(--jeeno-color-theme-primary);
  backface-visibility: hidden;
  transform: translate(0);
  transition: 0.4s ease-in-out;
}

.text-btn:hover .btn-text span {
  transform: translateY(-30px);
}

.text-btn:hover .btn-icon span {
  transform: translateX(30px);
}

.text-btn.style-2 {
  background-color: transparent;
  padding: 0;
}

.text-btn.style-2 .btn-text {
  color: var(--jeeno-color-theme-primary);
}

.text-btn.style-2 .btn-icon {
  color: var(--jeeno-color-common-white);
  font-size: 20px;
  background-color: var(--jeeno-color-theme-primary);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transform: rotate(-45deg);
}

.text-btn.style-2 .btn-icon span {
  text-shadow: -30px 0 0 var(--jeeno-color-common-white);
}

/* ============================================================
   HEADER, NAV & PAGE CHROME
   (body-overlay · preloader · back-to-top · header · hamburger)
   ============================================================ */
/* --- Body Overlay --- */
.body-overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out 0s;
  backdrop-filter: blur(10px);
}
.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

/* --- Preloader --- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  background-color: var(--jeeno-color-theme-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 1px solid transparent;
  border-color: transparent var(--jeeno-color-common-white) transparent var(--jeeno-color-common-white);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* --- Back to Top --- */
.back-to-top-wrapper {
  position: fixed;
  right: 30px;
  bottom: 0;
  display: block;
  border-radius: 50%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .back-to-top-wrapper {
    right: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .back-to-top-wrapper {
    right: 15px;
  }
}

.back-to-top-btn-show {
  visibility: visible;
  opacity: 1;
  bottom: 30px;
}
.back-to-top-btn-show:hover {
  transform: translateY(-6px);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .back-to-top-btn-show {
    right: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .back-to-top-btn-show {
    right: 30px;
    bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .back-to-top-btn-show {
    bottom: 25px;
  }
}

.back-to-top-btn {
  color: var(--jeeno-color-heading-primary);
  line-height: 1;
  font-weight: var(--jeeno-fw-sbold);
  display: flex;
  align-items: center;
  gap: 12px;
}
.back-to-top-btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  font-size: 24px;
  color: var(--jeeno-color-common-white);
  background-color: var(--jeeno-color-theme-primary);
  border-radius: 50%;
}
.back-to-top-btn span i {
  animation: bounceTwice 3s linear infinite;
}

/* --- Header Area --- */
.header-area {
  position: relative;
  z-index: 99;
}
.header-area.header-3.header-absolute {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 60px);
  margin: 0 30px;
  z-index: 999;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area.header-3.header-absolute {
    width: calc(100% - 30px);
    margin: 0 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-area.header-3.header-absolute {
    width: 100%;
    margin: 0;
  }
}
.header-area.header-3.header-absolute .menu-area {
  background-color: var(--jeeno-color-theme-dark);
  flex: 0 0 auto;
  padding: 0 20px;
  border-radius: 0 0 24px 24px;
  border-top-color: transparent;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area.header-3.header-absolute .menu-area {
    padding: 0 25px;
  }
}
@media only screen and (max-width: 1300px) {
  .header-area.header-3.header-absolute .menu-area {
    padding: 0 10px;
  }
}
.header-area.header-3.header-absolute .menu-area::before, .header-area.header-3.header-absolute .menu-area::after {
  content: "";
  position: absolute;
  background-color: transparent;
  top: -1px;
  left: -48px;
  width: 48px;
  height: 24px;
  box-shadow: 24px 0 0 0 var(--jeeno-color-theme-dark);
  border-radius: 0 24px 0 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-area.header-3.header-absolute .menu-area::before, .header-area.header-3.header-absolute .menu-area::after {
    border-radius: 0 16px 0 0;
  }
}
.header-area.header-3.header-absolute .menu-area::after {
  left: auto;
  right: -48px;
  transform: scaleX(-1);
}
@media only screen and (max-width: 1300px) {
  .header-area.header-3.header-absolute .menu-area::after {
    border-top: none;
    border-right: none;
  }
}
.header-area.header-3.header-absolute .mainmenu > ul > li > a {
  padding-top: 25px;
  padding-bottom: 25px;
}
.header-area.header-3.header-absolute .mainmenu > ul > li.menu-item-has-children > a::after, .header-area.header-3.header-absolute .mainmenu > ul > li.has-dropdown > a::after {
  color: currentColor;
  top: 29px;
}
.header-area.header-3.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0;
  z-index: 9999;
  background-color: var(--jeeno-color-theme-dark);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  animation: stickySlideDown 0.35s ease forwards;
}
.header-area.header-3.sticky .header-top {
  display: none;
}
.header-area.header-3.sticky .menu-area {
  background: transparent;
  border-radius: 0;
  border-top: none;
}
.header-area.header-3.sticky .menu-area::before, .header-area.header-3.sticky .menu-area::after {
  display: none;
}
.header-area.header-3.sticky .header-main .header-wrapper {
  margin: 0;
}
.header-area.header-3.sticky .header-main .header-wrapper .site_logo img {
  top: 0;
  max-width: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area.header-3 .header-wrapper {
    padding: 0 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-area.header-3 .header-wrapper {
    padding: 15px 0px;
    margin: 0;
    justify-content: space-between;
  }
}
.header-area.header-duplicate {
  display: none;
}

@keyframes stickySlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* --- Header Top --- */
.header-top {
  background-color: var(--jeeno-color-theme-bg);
  padding: 0 48px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-top {
    padding: 0 18px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-top {
    padding: 0 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-top {
    padding: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-top {
    display: none;
  }
}
.header-top.style-2 {
  background-color: var(--jeeno-color-header-news);
  padding: 10px 18px;
  margin: 0px 0px -5px 0px;
  border-radius: 0 0 16px 16px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header-top.style-2 {
    margin-bottom: 1px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-top.style-2 { /*padding: 0 10px;*/ }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-top.style-2 {
    padding: 0px;
  }
}
@media only screen and (max-width: 991px) {
  .header-top.style-2 {
    display: none;
  }
}
.header-top.style-2 .header-top-content .header-info .info-item a {
  color: var(--jeeno-color-common-black);
}
.header-top.style-2 .header-top-content .header-info .info-item a:hover {
  color: var(--jeeno-color-common-green);
}

body.home .header-top.style-2 {
  margin-bottom: 20px;
}

/* --- Header Top Content --- */
.header-top-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-top-content {
    justify-content: center;
  }
}
.header-top-content .header-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.header-top-content .header-info .info-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 0 21px;
  border-left: 1px solid var(--jeeno-color-border-1);
  line-height: 1;
}
.header-top-content .header-info .info-item:first-child {
  border: 0;
}
.header-top-content .header-info .info-item:last-child {
  padding-right: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-top-content .header-info .info-item:last-child {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-top-content .header-info .info-item:nth-child(2) {
    padding-right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-top-content .header-info .info-item {
    border: 0;
    padding: 0 10px 10px 10px;
  }
}
.header-top-content .header-info .info-item span {
  display: inline-flex;
  line-height: 1;
  font-size: 20px;
  color: var(--jeeno-color-theme-primary);
}
.header-top-content .header-info .info-item a {
  color: var(--jeeno-color-common-dark);
  font-family: var(--jeeno-ff-outfit) !important;
}
.header-top-content .header-info .info-item a:hover {
  color: var(--jeeno-color-theme-primary);
}

/* --- Header Wrapper --- */
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-wrapper {
    padding: 15px 0;
  }
}
@media only screen and (max-width: 1600px) {
  .header-wrapper {
    margin: -8px 0px 0px !important;
  }
}
@media only screen and (max-width: 1300px) {
  .header-wrapper {
    margin: 17px 0px 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-wrapper {
    margin: -1px 0px 0px !important;
  }
}

/* --- Header Main --- */
.header-main .header-wrapper {
  width: 100%;
  margin: -2px 0px 0px;
}
.header-main .header-wrapper .site_logo {
  flex: 0 0 auto;
  min-width: 210px;
}
.header-main .header-wrapper .site_logo img {
  padding-top: 6px;
  max-width: -moz-max-content;
  max-width: max-content;
  position: relative;
  top: 15px;
}
@media screen and (min-width: 460px) and (max-width: 1024px) {
  .header-main .header-wrapper .site_logo img {
    width: 90%;
    padding: 0;
    top: 0;
  }
}
.header-main .header-wrapper .menu-area {
  flex: 1 1 0;
  width: auto !important;
  justify-content: center;
  border-top: 1px solid var(--jeeno-color-theme-dark);
}
.header-main .header-wrapper .header-right-item {
  width: 24%;
}
@media screen and (max-width: 767px) {
  .header-main .header-wrapper .site_logo img {
    padding-top: 0;
    top: 0px;
  }
}

/* --- Site Logo --- */
.site_logo .logo {
  display: inline-block;
  max-width: 160px;
  width: 100%;
}

/* --- Menu Area --- */
.menu-area {
  gap: 25px;
}
@media only screen and (max-width: 2000px) {
  .menu-area {
    width: 100% !important;
  }
}

/* --- Main Menu --- */
.mainmenu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  -moz-column-gap: 35px;
       column-gap: 35px;
  color: #fff;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mainmenu ul {
    gap: 16px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mainmenu ul {
    gap: 16px;
  }
}
.mainmenu ul > li {
  position: relative;
  z-index: 1;
}
.mainmenu ul > li > a {
  position: relative;
  font-size: 16px;
  color: var(--jeeno-color-common-white);
  display: block;
  padding: 37px 0;
  line-height: 1;
  font-family: var(--jeeno-ff-outfit);
}
.mainmenu ul > li > a:hover {
  color: var(--jeeno-color-common-green);
}
.mainmenu ul > li.menu-item-has-children > a, .mainmenu ul > li.has-dropdown > a {
  padding-right: 15px;
}
.mainmenu ul > li.menu-item-has-children > a::after, .mainmenu ul > li.has-dropdown > a::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: inherit;
  font-size: 8px;
  position: absolute;
  top: 41px;
  right: 0;
}
.mainmenu ul > li.menu-item-has-children:hover > a::after, .mainmenu ul > li.has-dropdown:hover > a::after {
  transform: rotate(-180deg);
}
.mainmenu ul > li.current-menu-ancestor a, .mainmenu ul > li.current-menu-item a, .mainmenu ul > li:hover a {
  color: var(--jeeno-color-common-green);
}
.mainmenu ul > li.current-menu-ancestor a::after, .mainmenu ul > li.current-menu-item a::after, .mainmenu ul > li:hover a::after {
  color: var(--jeeno-color-theme-primary);
}
.mainmenu ul > li.current-menu-ancestor a::before, .mainmenu ul > li.current-menu-item a::before, .mainmenu ul > li:hover a::before {
  opacity: 1;
  visibility: visible;
}
.mainmenu ul > li > .sub-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  z-index: 99;
  text-align: left;
  background-color: var(--jeeno-color-theme-bg);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  visibility: hidden;
  gap: 0;
  padding: 10px 0;
  pointer-events: none;
  transition: 0.4s;
}
.mainmenu ul > li > .sub-menu > li {
  display: block;
  width: 100%;
}
.mainmenu ul > li > .sub-menu > li > a {
  position: relative;
  padding: 10px 20px;
  display: block;
  color: var(--jeeno-color-common-white);
}
.mainmenu ul > li > .sub-menu > li > a:hover {
  background: var(--jeeno-color-theme-light);
  color: var(--jeeno-color-common-green) !important;
}
.mainmenu ul > li > .sub-menu > li > a::before {
  display: none;
}
.mainmenu ul > li > .sub-menu > li.active > a {
  color: var(--jeeno-color-common-green) !important;
}
.mainmenu ul > li > .sub-menu > li:last-child {
  padding-bottom: 0;
}
.mainmenu ul > li > .sub-menu > li.menu-item-has-children > a::after, .mainmenu ul > li > .sub-menu > li.has-dropdown > a::after {
  top: 15px;
  right: 15px;
  color: var(--jeeno-color-text-body);
  transform: rotate(-90deg);
}
.mainmenu ul > li > .sub-menu > li.current-menu-ancestor > a, .mainmenu ul > li > .sub-menu > li.current-menu-item > a, .mainmenu ul > li > .sub-menu > li:hover > a {
  color: var(--jeeno-color-theme-primary);
}
.mainmenu ul > li > .sub-menu > li.current-menu-ancestor > a::before, .mainmenu ul > li > .sub-menu > li.current-menu-item > a::before, .mainmenu ul > li > .sub-menu > li:hover > a::before {
  opacity: 1;
  visibility: visible;
  width: 14px;
}
.mainmenu ul > li > .sub-menu > li.current-menu-ancestor > a::after, .mainmenu ul > li > .sub-menu > li.current-menu-item > a::after, .mainmenu ul > li > .sub-menu > li:hover > a::after {
  color: var(--jeeno-color-theme-primary);
}
.mainmenu ul > li > .sub-menu > li > .sub-menu {
  left: 100%;
  top: -10px;
}
.mainmenu ul > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  transition: all 0.5s ease;
  pointer-events: auto;
}
.mainmenu ul li.active > a {
  color: var(--jeeno-color-common-green);
}

/* --- Header Right Item --- */
.header-right-item {
  display: flex;
  align-items: center;
  gap: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-right-item {
    gap: 12px;
  }
}
@media only screen and (max-width: 1300px) {
  .header-right-item {
    display: none !important;
  }
}
.header-right-item .jeeno-primary-btn:hover .btn-inner::before {
  width: calc(100% - 38px);
}
.header-right-item .jeeno-primary-btn:hover .btn-text {
  transform: translateX(32px);
}
.header-right-item .jeeno-primary-btn:hover .btn-icon {
  transform: translateX(38px);
}

/* --- Menu Bar (offcanvas trigger) --- */
.menu_bar {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 25px;
  height: 25px;
  position: relative;
  top: 0;
  left: 0;
  margin-left: 5px;
  cursor: pointer;
  transition: all 0.3s ease-in-out 0s;
}
.menu_bar span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--jeeno-color-common-white);
  margin-right: auto;
  backface-visibility: hidden;
  transition: all 0.3s;
}
.menu_bar span:last-child, .menu_bar span:first-child {
  width: 25px;
}
.menu_bar.mobile_menu_bar {
  width: 50px;
  height: 50px;
  padding: 12px;
  background: var(--jeeno-color-theme-primary);
  border-radius: 7px;
}
.menu_bar.mobile_menu_bar span {
  background-color: var(--jeeno-color-common-white);
}
.menu_bar:hover span {
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .menu_bar {
    margin-left: 0;
  }
}

/* --- Hamburger Area (mobile slide-in panel) --- */
.hamburger-area {
  position: fixed;
  right: -490px;
  top: 15px;
  width: 450px;
  height: calc(100% - 30px);
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 1s;
  z-index: 9999;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
  border-radius: 12px;
}
.hamburger-area::-webkit-scrollbar {
  display: none;
}
.hamburger-area.opened {
  right: 15px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hamburger-area.opened {
    right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hamburger-area {
    top: 0;
    height: 100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media (max-width: 575px) {
  .hamburger-area {
    width: 320px;
  }
}

/* --- Hamburger Internals --- */
.hamburger_bg {
  background-color: var(--jeeno-color-theme-dark);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
.hamburger_bg::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--jeeno-color-theme-dark);
  opacity: 0.6;
  z-index: -1;
}

.hamburger_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 40px;
  overflow: auto;
  height: 100%;
}
.hamburger_wrapper::before {
  content: "";
  position: absolute;
  top: 3%;
  right: 3%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--jeeno-color-theme-primary);
  filter: blur(50px);
  opacity: 0.26;
  z-index: -1;
  backdrop-filter: blur(10px);
}
@media (max-width: 575px) {
  .hamburger_wrapper {
    padding: 40px 20px;
  }
}

.hamburger_top {
  margin-bottom: 30px;
}

.hamburger_close_btn {
  display: inline-block;
  font-size: 22px;
  line-height: 1;
  color: var(--jeeno-color-common-white);
}
.hamburger_close_btn svg {
  width: 22px;
  height: 22px;
  transition: all 0.4s ease-in-out;
}
.hamburger_close_btn svg path {
  fill: var(--jeeno-color-common-white);
}
.hamburger_close_btn:hover {
  transform: rotate(90deg);
}

.hamburger_menu .mean-container .mean-bar {
  background: transparent;
  box-sizing: border-box;
  margin-bottom: 30px;
}
.hamburger_menu .mean-container .mean-bar * {
  box-sizing: border-box;
}
.hamburger_menu .mean-nav {
  background: transparent;
  margin-top: 0;
  overflow: hidden;
}
.hamburger_menu .mean-nav > ul {
  display: block !important;
}
.hamburger_menu .mean-nav > ul > li:first-child > a {
  border-top: none;
}
.hamburger_menu .mean-nav ul li {
  position: relative;
}
.hamburger_menu .mean-nav ul li a {
  color: var(--jeeno-color-common-white);
  width: 100%;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.5px;
  font-family: var(--jeeno-ff-body);
  font-weight: var(--jeeno-fw-medium);
  text-transform: capitalize;
  padding: 18px 10px;
  border-top: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease-in-out 0s;
}
@media screen and (max-width: 767px) {
  .hamburger_menu .mean-nav ul li a {
    padding: 18px 20px;
  }
}
.hamburger_menu .mean-nav ul li a:hover {
  color: var(--jeeno-color-common-green);
}
.hamburger_menu .mean-nav ul li a.mean-expand {
  padding: 0;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 25px;
  position: absolute;
  top: 10px;
  right: 0;
  transition: all 0.4s ease-in-out 0s;
}
.hamburger_menu .mean-nav ul li a.mean-expand i {
  font-size: 8px;
}
.hamburger_menu .mean-nav ul li a.mean-expand:hover {
  color: var(--jeeno-color-common-white);
}
.hamburger_menu .mean-nav ul li a.mean-expand.mean-clicked {
  color: var(--jeeno-color-common-green);
  transform: rotate(180deg);
}
.hamburger_menu .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(180deg);
}
.hamburger_menu .mean-nav ul li .sub-menu li {
  padding-left: 25px;
  position: relative;
}
.hamburger_menu .mean-nav ul li .sub-menu li a {
  width: 100%;
  padding: 18px 0;
}
.hamburger_menu .mean-nav ul li .sub-menu li a.mean-expand {
  padding: 0;
  width: 30px;
}
.hamburger_menu .mean-nav ul li.dropdown-opened > a {
  color: var(--jeeno-color-common-green);
}

.hamburger-title {
  color: var(--jeeno-color-common-white);
  font-size: 22px;
  line-height: 1;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.hamburger-infos {
  margin-bottom: 45px;
}
.hamburger-infos .contact-info .contact-item {
  padding: 15px 0 10px 0;
}
.hamburger-infos .contact-info .contact-item .subtitle {
  color: #fff;
}
.hamburger-infos .contact-info .contact-item:first-child {
  padding-top: 0;
}

.hamburger_logo .mobile_logo {
  display: inline-block;
  max-width: 136px;
  width: 100%;
}

.hamburger_inner .contact-info .contact-link {
  color: var(--jeeno-color-common-white);
}
.hamburger_inner .contact-info .contact-link:hover {
  color: var(--jeeno-color-common-green);
}

/* --- Mobile Menu Nav --- */
#mobile-menu ul li .btn-primary {
  padding: 10px 14px;
}
#mobile-menu ul li .btn-primary:hover {
  color: var(--blue-background-color);
}

/* --- Footer CSS --- */
/**----------------------------------------
START: Theme Footer CSS
----------------------------------------*/
.jeeno-footer-section {
  background-color: var(--jeeno-color-theme-bg);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.footer-main-area {
  position: relative;
  padding: 90px 0 80px;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-main-area {
    padding: 70px 0 60px;
  }
}
.footer-main-area.style-2 {
  max-width: 1440px;
  margin-inline-start: auto;
  margin-inline-end: auto;
  background-color: var(--jeeno-color-theme-dark);
  border-radius: 24px;
}

.footer-main-area.style-2 .social-links.style-2 ul li a {
  background-color: var(--jeeno-color-theme-bg);
}

.footer-main-area.style-2 .social-links.style-2 ul li a:hover {
  background-color: var(--jeeno-color-theme-primary);
}

.footer-main-area.style-2 .subscribe-form input[type=email] {
  background-color: var(--jeeno-color-theme-bg);
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .footer-main-area.style-2 {
    max-width: 1350px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-main-area.style-2 {
    max-width: 1170px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-main-area.style-2 {
    max-width: 980px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-main-area.style-2 {
    max-width: calc(100% - 60px);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-main-area.style-2 {
    max-width: calc(100% - 30px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-main-area.style-2 {
    border-radius: 16px;
  }
}
.footer-logo {
  max-width: 150px;
}

.footer-widget .footer-text {
  max-width: 280px;
  width: 100%;
}

.footer-widget .footer-text p {
  margin-top: 25px;
  margin-bottom: 34px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-widget .footer-text p {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-widget .footer-text {
    max-width: 100%;
  }
}
.footer-widget .title {
  margin-bottom: 28px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-widget .title {
    margin-bottom: 18px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-widget.footer-col-1 {
    margin-bottom: 10px;
  }
}
.social-links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.social-links ul li {
  position: relative;
  line-height: 1;
}

.social-links ul li a {
  color: var(--jeeno-color-common-white);
  font-family: var(--jeeno-ff-heading);
  font-weight: var(--jeeno-fw-medium);
  display: inline-flex;
  line-height: 1;
}

.social-links ul li a:hover {
  color: var(--jeeno-color-theme-primary);
}

.social-links ul li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 2px;
  background: var(--jeeno-color-common-white);
  margin: 4px 5px;
}

.social-links.style-2 ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-links.style-2 ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--jeeno-color-theme-dark);
  font-size: 20px;
  line-height: 1;
}

.social-links.style-2 ul li a i {
  color: var(--jeeno-color-common-white);
}

.social-links.style-2 ul li a:hover {
  background-color: var(--jeeno-color-theme-primary);
  transform: translateY(-4px);
}

.social-links.style-2 ul li::after {
  display: none;
}

.widget-nav-menu ul {
  list-style: none;
}

.widget-nav-menu ul li {
  padding: 6px 0;
}

.widget-nav-menu ul li:first-child {
  padding-top: 0;
}

.widget-nav-menu ul li a {
  color: var(--jeeno-color-text-body);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  padding-left: 14px;
}

.widget-nav-menu ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--jeeno-color-theme-primary);
  opacity: 0.3;
}

.widget-nav-menu ul li a .badge {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--jeeno-color-common-white);
  background-color: var(--jeeno-color-theme-primary);
  border-radius: 50px;
  padding: 3px 6px 4px;
}

.widget-nav-menu ul li a:hover {
  color: var(--jeeno-color-theme-primary);
}

.widget-nav-menu ul li a:hover::before {
  opacity: 1;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .widget-nav-menu {
    margin-top: 30px;
  }
}
.widget-nav-menu.footer-col-3,
.widget-nav-menu.footer-col-2 {
  padding-inline-start: 75px;
}

.widget-nav-menu.footer-col-3 .title,
.widget-nav-menu.footer-col-2 .title {
  color: var(--jeeno-color-common-white);
}

.widget-nav-menu.footer-col-3 ul li a:hover,
.widget-nav-menu.footer-col-2 ul li a:hover {
  color: var(--jeeno-color-theme-primary);
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .widget-nav-menu.footer-col-3,
  .widget-nav-menu.footer-col-2 {
    padding-inline-start: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .widget-nav-menu.footer-col-3,
  .widget-nav-menu.footer-col-2 {
    margin-top: 30px;
    padding-inline-start: 0;
  }
}
.widget-nav-menu.footer-col-3 {
  padding-inline-start: 110px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .widget-nav-menu.footer-col-3 {
    padding-inline-start: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .widget-nav-menu.footer-col-3 {
    margin-top: 30px;
    padding-inline-start: 0;
  }
}
.widget-subscribe {
  max-width: 330px;
  width: 100%;
  margin-inline-start: auto;
}

.widget-subscribe .title {
  margin-bottom: 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .widget-subscribe {
    margin-inline-start: 0;
    margin-top: 30px;
    padding-inline-start: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .widget-subscribe {
    max-width: 100%;
    margin-top: 30px;
    margin-inline-start: 0;
  }
}
.subscribe-form {
  position: relative;
}

.subscribe-form input[type=email] {
  background-color: var(--jeeno-color-theme-dark);
  height: 52px;
  padding: 15px 60px 15px 20px;
  border: 0;
  border-radius: 10px;
}

.subscribe-form input[type=email]:focus {
  box-shadow: 0 0 0 1px var(--jeeno-color-theme-primary);
}

.subscribe-form input[type=checkbox] {
  position: relative;
  margin-right: 8px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--jeeno-color-theme-dark-2);
  border-radius: 3px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.subscribe-form input[type=checkbox]::before {
  content: "\f00c";
  font-size: 15px;
  line-height: 1;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  color: var(--jeeno-color-theme-dark);
  position: absolute;
  width: 100%;
  text-align: center;
  line-height: 16px;
  transform: scale(0.5);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.subscribe-form input[type=checkbox]:checked {
  background-color: var(--jeeno-color-common-white);
  border-color: var(--jeeno-color-common-white);
}

.subscribe-form input[type=checkbox]:checked::before {
  transform: scale(1);
  opacity: 1;
}

.subscribe-form button {
  position: absolute;
  width: 50px;
  height: 52px;
  right: 0;
  top: 0;
  color: var(--jeeno-color-theme-dark);
  font-size: 16px;
  line-height: 1;
  font-weight: var(--jeeno-fw-sbold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.subscribe-form button i {
  color: var(--jeeno-color-theme-primary);
  font-size: 24px;
  line-height: 1;
  font-weight: normal;
  display: inline-flex;
  transition: all 0.3s linear;
}

.subscribe-form button:hover i,
.subscribe-form button:focus i {
  transform: rotate(45deg);
}

.subscribe-form button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 22px;
  border-left: 1px solid var(--jeeno-color-border-1);
  transform: translateY(-50%);
}

.subscribe-form label {
  color: var(--jeeno-color-text-body);
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
}

.subscribe-form label a {
  color: var(--jeeno-color-common-white);
  margin-left: 4px;
}

.subscribe-form label a:hover {
  color: var(--jeeno-color-theme-primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .subscribe-form {
    margin-top: 18px;
  }
}
.copyright-content-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 23px 0;
}

.copyright-content-area .footer-contact ul {
  list-style: none;
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.copyright-content-area .footer-contact ul li a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--jeeno-color-text-body);
}

.copyright-content-area .footer-contact ul li a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--jeeno-color-theme-primary);
  font-size: 28px;
  line-height: 1;
}

.copyright-content-area .footer-contact ul li a span i {
  color: var(--jeeno-color-common-white);
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .copyright-content-area .footer-contact {
    width: 100%;
  }
}
.copyright-content-area .social-links.style-2 ul li a {
  width: 32px;
  height: 32px;
  font-size: 16px;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .copyright-content-area .social-links ul {
    justify-content: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .copyright-content-area .social-links {
    width: 100%;
  }
}
.copyright-content-area .copyright-text p {
  margin: 0;
}

.copyright-content-area .copyright-text a {
  color: var(--jeeno-color-common-white);
}

.copyright-content-area .copyright-text a:hover {
  color: var(--jeeno-color-common-green);
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .copyright-content-area .copyright-text {
    width: 100%;
    text-align: center;
  }
}
.copyright-content-area .copyright-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright-content-area .copyright-menu ul li {
  position: relative;
  margin-right: 10px;
  padding-right: 14px;
  z-index: 1;
}

.copyright-content-area .copyright-menu ul li::before {
  content: "";
  background-color: var(--jeeno-color-theme-primary);
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.copyright-content-area .copyright-menu ul li a {
  font-size: 16px;
  color: var(--jeeno-color-common-white);
}

.copyright-content-area .copyright-menu ul li a:hover {
  color: var(--jeeno-color-common-green);
}

.copyright-content-area .copyright-menu ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.copyright-content-area .copyright-menu ul li:last-child::before {
  display: none;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .copyright-content-area .copyright-menu {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .copyright-content-area {
    gap: 14px;
  }
}
.footer-top-shape {
  max-width: 1356px;
  width: 100%;
  height: 70px;
  margin-inline-start: auto;
  margin-inline-end: auto;
  background-color: var(--jeeno-color-theme-dark);
  border-radius: 0 0 10px 10px;
  position: relative;
}

.footer-top-shape::before,
.footer-top-shape::after {
  content: "";
  position: absolute;
  background-color: transparent;
  top: 0;
  left: -50px;
  width: 50px;
  height: 24px;
  box-shadow: 24px 0 0 0 var(--jeeno-color-theme-dark);
  border-radius: 0 24px 0 0;
  z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-top-shape::before,
  .footer-top-shape::after {
    border-radius: 0 16px 0 0;
  }
}
.footer-top-shape::after {
  left: auto;
  right: -50px;
  transform: scaleX(-1);
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .footer-top-shape {
    max-width: 1296px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-top-shape {
    max-width: 1120px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-top-shape {
    max-width: 900px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-top-shape {
    max-width: 670px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-top-shape {
    max-width: 500px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-top-shape {
    border-radius: 0 0 16px 16px;
  }
}
.jeeno-copyright-area .copyright-wrap {
  max-width: 1356px;
  width: 100%;
  margin-inline-start: auto;
  margin-inline-end: auto;
  background-color: var(--jeeno-color-theme-dark);
  border-radius: 24px 24px 0 0;
  padding: 0 10px;
  position: relative;
}

.jeeno-copyright-area .copyright-wrap::after,
.jeeno-copyright-area .copyright-wrap::before {
  content: "";
  position: absolute;
  background-color: transparent;
  bottom: 0;
  left: -24px;
  width: 24px;
  height: 50px;
  box-shadow: 0 24px 0 0 var(--jeeno-color-theme-dark);
  border-radius: 0 0 24px 0;
  z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .jeeno-copyright-area .copyright-wrap::after,
  .jeeno-copyright-area .copyright-wrap::before {
    border-radius: 0 0 16px 0;
  }
}
.jeeno-copyright-area .copyright-wrap::after {
  left: auto;
  right: -24px;
  border-radius: 0 0 0 24px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .jeeno-copyright-area .copyright-wrap::after {
    border-radius: 0 0 0 16px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .jeeno-copyright-area .copyright-wrap {
    max-width: 1296px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .jeeno-copyright-area .copyright-wrap {
    max-width: 1120px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .jeeno-copyright-area .copyright-wrap {
    max-width: 900px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .jeeno-copyright-area .copyright-wrap {
    max-width: 670px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .jeeno-copyright-area .copyright-wrap {
    max-width: 500px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .jeeno-copyright-area .copyright-wrap {
    border-radius: 16px 16px 0 0;
    padding: 0 5px;
  }
}
.footer-top-area {
  padding-bottom: 40px;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-top-area {
    padding-bottom: 50px;
  }
}
.widget-subscribe-2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.widget-subscribe-2 .title {
  max-width: 610px;
  width: 100%;
  color: var(--jeeno-color-common-white);
  font-size: 76px;
  line-height: 1.053;
  margin-bottom: 0;
}

.widget-subscribe-2 .title img {
  max-width: 76px;
  margin-top: -15px;
  animation: bellshake 1.5s linear infinite;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget-subscribe-2 .title img {
    max-width: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .widget-subscribe-2 .title img {
    max-width: 40px;
    margin-top: -10px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .widget-subscribe-2 .title {
    max-width: 560px;
    font-size: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget-subscribe-2 .title {
    max-width: 500px;
    font-size: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .widget-subscribe-2 .title {
    max-width: 335px;
    font-size: 42px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .widget-subscribe-2 .title {
    max-width: 330px;
    font-size: 40px;
  }
}
.widget-subscribe-2 .subscribe-form {
  max-width: 484px;
  margin-top: 0;
}

.widget-subscribe-2 .subscribe-form input[type=email] {
  height: 60px;
  color: var(--jeeno-color-text-body);
  background-color: var(--jeeno-color-common-white);
  border-radius: 10px;
  padding: 15px 150px 15px 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .widget-subscribe-2 .subscribe-form input[type=email] {
    padding: 15px 130px 15px 15px;
  }
}
.widget-subscribe-2 .subscribe-form input[type=email]:focus {
  box-shadow: 0 0 0 1px var(--jeeno-color-theme-dark);
}

.widget-subscribe-2 .subscribe-form button {
  width: 140px;
  height: 60px;
  padding-right: 10px;
}

.widget-subscribe-2 .subscribe-form button::before {
  opacity: 0.15;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .widget-subscribe-2 .subscribe-form button {
    width: 125px;
    padding-right: 5px;
  }
}
.widget-subscribe-2 .subscribe-form input[type=checkbox] {
  border: 1px solid var(--jeeno-color-common-white);
}

.widget-subscribe-2 .subscribe-form input[type=checkbox]::before {
  color: var(--jeeno-color-common-white);
}

.widget-subscribe-2 .subscribe-form input[type=checkbox]:checked {
  background-color: var(--jeeno-color-theme-dark);
  border-color: var(--jeeno-color-theme-dark);
}

.widget-subscribe-2 .subscribe-form label {
  color: var(--jeeno-color-common-white);
  margin-top: 15px;
}

.widget-subscribe-2 .subscribe-form label a {
  color: var(--jeeno-color-common-white);
}

.widget-subscribe-2 .subscribe-form label a:hover {
  color: var(--jeeno-color-theme-bg);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .widget-subscribe-2 .subscribe-form {
    max-width: 450px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget-subscribe-2 .subscribe-form {
    max-width: 400px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .widget-subscribe-2 .subscribe-form {
    max-width: 340px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .widget-subscribe-2 .subscribe-form {
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .widget-subscribe-2 {
    gap: 20px;
  }
}
.widget-contact {
  padding-inline-start: 65px;
}

.widget-contact .title {
  color: var(--jeeno-color-common-white);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .widget-contact {
    padding-inline-start: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .widget-contact {
    margin-top: 30px;
    padding-inline-start: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .widget-contact {
    margin-top: 30px;
    padding-inline-start: 0;
  }
}
.footer-contact-info {
  max-width: 240px;
  width: 100%;
}

.footer-contact-info .contact-item {
  margin-bottom: 14px;
}

.footer-contact-info .contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact-info .contact-item span {
  color: var(--jeeno-color-text-body);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-contact-info .contact-item span i {
  font-size: 20px;
  color: var(--jeeno-color-theme-primary);
  display: inline-flex;
  line-height: 1;
}

.footer-contact-info .contact-item a {
  background-color: var(--jeeno-color-theme-bg);
  color: var(--jeeno-color-common-white);
  font-weight: var(--jeeno-fw-medium);
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 12px;
  border-radius: 6px;
}

.footer-contact-info .contact-item a:last-child {
  margin-bottom: 0;
}

.footer-contact-info .contact-item a:hover {
  background-color: var(--jeeno-color-theme-primary);
}

.footer-cta {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.footer-cta .sec-heading {
  margin-bottom: 30px;
}

.footer-cta .sec-heading .sec-title {
  font-size: 76px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-cta .sec-heading .sec-title {
    font-size: 66px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-cta .sec-heading .sec-title {
    font-size: 58px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-cta .sec-heading .sec-title {
    font-size: 44px;
  }
  .footer-cta .sec-heading .sec-title img {
    max-width: 50px;
    width: 100%;
  }
}
.footer-cta .circle-text-wrap {
  background-color: var(--jeeno-color-theme-primary);
  margin: 0 auto;
}

.footer-cta .cta-bg {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.footer-cta .cta-bg::before {
  content: "";
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--jeeno-color-theme-primary);
  filter: blur(100px);
  opacity: 0.4;
  z-index: -1;
  backdrop-filter: blur(50px);
}

.footer-cta .cta-bg img {
  opacity: 0.5;
  mix-blend-mode: soft-light;
  max-width: 798px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}

.footer-cta-2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-cta-2 .title {
  max-width: 945px;
  width: 100%;
  font-size: 76px;
  line-height: 1.053;
  margin-bottom: 0;
}

.footer-cta-2 .title span {
  color: var(--jeeno-color-theme-primary);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-cta-2 .title {
    max-width: 860px;
    font-size: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-cta-2 .title {
    max-width: 690px;
    font-size: 56px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-cta-2 .title {
    font-size: 40px;
  }
}
.footer-cta-2 .circle-text-wrap {
  width: 130px;
  height: 130px;
}

.footer-cta-2 .circle-icon {
  font-size: 21px;
}

.footer-cta-2 .circle-icon span {
  width: 60px;
  height: 60px;
  background-color: var(--jeeno-color-theme-primary);
  transform: rotate(-45deg);
  overflow: hidden;
  text-shadow: -45px 0 0;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-cta-2 .circle-icon span {
    width: 50px;
    height: 50px;
  }
}
.footer-cta-2 .circle-icon:hover i {
  transform: translateX(45px) scale(1);
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-cta-2 {
    justify-content: center;
    text-align: center;
  }
}
.jeeno-copyright-area-3 {
  border-top: 1px solid var(--jeeno-color-border-1);
}

.jeeno-copyright-area-3 .copyright-content-area {
  padding: 30px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .jeeno-copyright-area-3 .copyright-content-area {
    padding: 25px 0;
  }
}
/* !END: Theme Footer CSS */
/* --- Search CSS --- */
/* START: Search CSS */
.search_popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--jeeno-color-theme-bg);
  border-radius: 0 0 24px 24px;
  z-index: 100;
  padding-top: 120px;
  padding-bottom: 130px;
  opacity: 0;
  transform: translateY(calc(-100% - 80px));
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition-delay: 0.5s;
  z-index: 9999;
}

.search_popup .search_close {
  position: absolute;
  top: 36px;
  right: 36px;
}

.search_popup .search_close .search_close_btn {
  font-size: 24px;
  line-height: 1;
  color: var(--jeeno-color-common-white);
}

.search_popup .search_close .search_close_btn svg {
  width: 24px;
  height: 24px;
  transition: all 0.4s ease-in-out 0s;
}

.search_popup .search_close .search_close_btn svg path {
  fill: var(--jeeno-color-common-white);
}

.search_popup .search_close .search_close_btn svg:hover {
  transform: rotate(90deg);
}

.search_popup .search_close .search_close_btn svg:hover path {
  fill: var(--jeeno-color-theme-primary);
}

.search_popup.search-opened {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 0s;
}

.search_popup.search-opened .search_form .search_input {
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.3s;
}

.search_popup.search-opened .search_form .search_input::after {
  width: 100%;
  transition-delay: 0.5s;
}

.jeeno_search_wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.jeeno_search_wrapper .search_form form .search_input {
  position: relative;
  z-index: 1;
}

.jeeno_search_wrapper .search_form form .search_input .title {
  color: var(--jeeno-color-common-white);
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
}

.jeeno_search_wrapper .search_form form .search_input .search-box {
  position: relative;
  z-index: 1;
}

.jeeno_search_wrapper .search_form form .search_input .search-box input[type=search] {
  width: 100%;
  font-family: var(--jeeno-ff-body);
  color: var(--jeeno-color-common-white);
  border: 1px solid var(--jeeno-color-border-1);
  background: var(--jeeno-color-theme-dark);
  padding: 20px 75px 20px 24px;
  border-radius: 10px;
}

.jeeno_search_wrapper .search_form form .search_input .search-box input[type=search]::-moz-placeholder {
  color: var(--jeeno-color-grey-2);
}

.jeeno_search_wrapper .search_form form .search_input .search-box input[type=search]::placeholder {
  color: var(--jeeno-color-grey-2);
}

.jeeno_search_wrapper .search_form form .search_input .search-box input[type=search]:focus {
  border-color: var(--jeeno-color-theme-primary);
}

.jeeno_search_wrapper .search_form form .search_input .search-box input[type=search]:focus + button {
  border-color: var(--jeeno-color-theme-primary);
}

.jeeno_search_wrapper .search_form form .search_input .search-box button {
  color: var(--jeeno-color-theme-primary);
  font-size: 24px;
  line-height: 1;
  max-width: 62px;
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-left: 1px solid var(--jeeno-color-border-1);
}

.jeeno_search_wrapper .search_form form .search_input .search-box button i {
  display: inline-flex;
  line-height: 1;
}

.search-popup-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  z-index: 99;
  transform: translateY(calc(-100% - 80px));
  transition: all 0.5s ease-in-out 0.3s;
}

.search-popup-overlay.opened {
  transform: translateY(0);
  transition-delay: 0.1s;
}

/* !END: Search CSS */
/* --- Error 404 CSS --- */
/**----------------------------------------
START: Error 404 CSS
----------------------------------------*/
.jeeno-error-section {
  padding: 150px 0 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .jeeno-error-section {
    padding: 100px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .jeeno-error-section {
    padding: 70px 0;
  }
}
.jeeno-error-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.jeeno-error-content .error-img {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 800px;
  margin-bottom: 45px;
}

@media (max-width: 575px) {
  .jeeno-error-content .error-img {
    padding: 0 20px;
    margin-bottom: 30px;
  }
}
.jeeno-error-content .error-title {
  margin: 0;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .jeeno-error-content .error-title {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .jeeno-error-content .error-title {
    font-size: 40px;
  }
}
.jeeno-error-content .error-desc {
  max-width: 600px;
  margin: 20px auto 0;
}

.jeeno-error-content .error-btn {
  margin-top: 35px;
}

@media (max-width: 575px) {
  .jeeno-error-content .error-btn {
    margin-top: 25px;
  }
}
/* !END: Error 404 CSS */
/* --- Heading & Button Utilities CSS --- */
/**----------------------------------------
START: Heading CSS
----------------------------------------*/
.sec-heading {
  margin-inline-start: auto;
  margin-inline-end: auto;
  width: 100%;
  margin-bottom: 52px;
}

.sec-heading-centered {
  max-width: 550px;
  text-align: center;
}

.sec-heading-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.sec-heading-inner .sec-title {
  max-width: 560px;
}

.sec-heading .sec-title {
  margin-bottom: 0;
}

.sec-heading .sec-title span {
  color: var(--jeeno-color-theme-primary);
}

.sec-heading.style-2 .sub-title {
  position: relative;
}

.sec-heading.style-2 .sub-title::before {
  content: "[";
  color: var(--jeeno-color-theme-primary);
  display: inline-flex;
  margin-right: 2px;
}

.sec-heading.style-2 .sub-title::after {
  content: "]";
  color: var(--jeeno-color-theme-primary);
  display: inline-flex;
  margin-left: 2px;
}

.sec-heading.style-6 .sub-title,
.sec-heading.style-4 .sub-title {
  padding: 7px 8px;
  color: var(--jeeno-color-common-white);
  background-color: var(--jeeno-color-theme-bg);
  border-radius: 6px;
  gap: 6px;
}

.sec-heading.style-6 .sub-title i,
.sec-heading.style-4 .sub-title i {
  font-size: 15px;
}

.sec-heading.style-5 .sub-title {
  position: relative;
}

.sec-heading.style-5 .sub-title::before {
  content: "{";
  color: var(--jeeno-color-theme-primary);
  display: inline-flex;
  margin-right: 2px;
}

.sec-heading.style-5 .sub-title::after {
  content: "}";
  color: var(--jeeno-color-theme-primary);
  display: inline-flex;
  margin-left: 2px;
}

.sec-heading.style-6 .sub-title {
  color: var(--jeeno-color-text-body);
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sec-heading {
    margin-bottom: 35px;
  }
}
.heading-wrap-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 50px;
}

.heading-wrap-content .sec-heading {
  max-width: 500px;
  margin-inline-start: 0;
  margin-inline-end: 0;
  margin-bottom: 0;
}

.heading-wrap-content .desc {
  max-width: 360px;
  margin-bottom: 0;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .heading-wrap-content .desc {
    max-width: 100%;
  }
}
.heading-wrap-content .btn-wrap {
  max-width: 220px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .heading-wrap-content {
    margin-bottom: 35px;
  }
}
.sec-heading-wrap .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--jeeno-color-text-body);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: var(--jeeno-fw-sbold);
  margin-bottom: 20px;
}

.sec-heading-wrap .sub-title i {
  color: var(--jeeno-color-theme-primary);
  font-size: 20px;
  line-height: 1;
  display: inline-flex;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sec-heading-wrap .sub-title {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sec-heading-wrap .sub-title {
    font-size: 13px;
  }
}
.sec-heading-wrap.style-2 .sub-title {
  position: relative;
}

.sec-heading-wrap.style-2 .sub-title::before {
  content: "[";
  color: var(--jeeno-color-theme-primary);
  display: inline-flex;
  margin-right: 2px;
}

.sec-heading-wrap.style-2 .sub-title::after {
  content: "]";
  color: var(--jeeno-color-theme-primary);
  display: inline-flex;
  margin-left: 2px;
}

.content-wrap .sec-heading {
  max-width: 550px;
  margin: 0 0 15px 0;
}

.content-wrap .jeeno-secondary-btn,
.content-wrap .jeeno-primary-btn {
  margin-top: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .content-wrap .jeeno-secondary-btn,
  .content-wrap .jeeno-primary-btn {
    margin-top: 5px;
  }
}
.content-wrap .desc {
  margin-bottom: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .content-wrap .desc br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .content-wrap {
    max-width: 100%;
    margin-bottom: 35px;
  }
}
/* !END: Heading CSS */
/* ============================================================
   PART 2: HERO & SLIDER CSS (from main.css - Home Page)
   ============================================================ */
/* --- Hero Slider CSS (Home Page) --- */
/**----------------------------------------
START: Hero CSS
----------------------------------------*/
.jeeno-banner-section {
  position: relative;
  padding-top: 144px;
  overflow: hidden;
  padding-left: 60px;
  padding-right: 60px;
}

.jeeno-banner-section::after,
.jeeno-banner-section::before {
  content: "";
  position: absolute;
  top: 8%;
  left: -15%;
  width: 580px;
  height: 600px;
  border-radius: 50%;
  background: var(--jeeno-color-theme-primary);
  filter: blur(95px);
  opacity: 0.2;
  z-index: -1;
  backdrop-filter: blur(10px);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .jeeno-banner-section::after,
  .jeeno-banner-section::before {
    width: 470px;
    height: 490px;
    top: 10%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .jeeno-banner-section::after,
  .jeeno-banner-section::before {
    width: 330px;
    height: 350px;
    top: 10%;
  }
}
.jeeno-banner-section::after {
  left: auto;
  right: -15%;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .jeeno-banner-section::after {
    top: 50%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .jeeno-banner-section {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 575px) {
  .jeeno-banner-section {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .jeeno-banner-section {
    padding-top: 80px;
  }
}
.banner-content-area {
  max-width: 1435px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 84px 0;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-content-area {
    flex-direction: column;
    padding: 70px 0;
  }
}
.banner-col {
  width: 45%;
}

.banner-col:first-child {
  width: 55%;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-col {
    width: 100%;
  }
  .banner-col:first-child {
    width: 100%;
  }
}
.banner-content {
  max-width: 740px;
  width: 100%;
  margin-top: 17px;
}

.banner-content .banner-title {
  color: var(--jeeno-color-common-white);
  line-height: 1.053;
  margin-bottom: 15px;
}

.banner-content .banner-title span {
  display: inline-flex;
  position: relative;
  top: 4px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-content .banner-title span {
    top: 7px;
  }
}
.banner-content .banner-title img {
  max-width: 163px;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .banner-content .banner-title img {
    max-width: 156px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-content .banner-title img {
    max-width: 130px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-content .banner-title img {
    max-width: 115px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .banner-content .banner-title {
    font-size: 68px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-content .banner-title {
    font-size: 62px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-content .banner-title {
    font-size: 55px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-content .banner-title {
    font-size: 50px;
    line-height: 1.15;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-content .banner-title {
    font-size: 43px;
    line-height: 1.15;
  }
}
@media (max-width: 400px) {
  .banner-content .banner-title {
    font-size: 40px;
    line-height: 1.15;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-content {
    max-width: 570px;
    margin-inline-start: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-content {
    margin-inline-start: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-content {
    max-width: 720px;
    margin: 0;
  }
}
.banner-img-area-1 {
  background-color: var(--jeeno-color-theme-bg);
  border-radius: 24px;
  padding: 20px;
  position: relative;
  z-index: 5;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-img-area-1 .banner-img {
    height: 385px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-img-area-1 .banner-img {
    height: 285px;
    border-radius: 20px;
  }
}
.banner-img-area-1 .collab-text {
  position: absolute;
  max-width: 277px;
  width: 100%;
  top: 50px;
  left: 50px;
  background-color: var(--jeeno-color-theme-bg);
  border-radius: 10px;
  padding: 20px;
  color: var(--jeeno-color-common-white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.banner-img-area-1 .collab-text span {
  color: var(--jeeno-color-common-white);
  font-size: 50px;
  display: inline-flex;
  line-height: 1;
}

.banner-img-area-1 .collab-text .desc {
  font-size: 18px;
  color: var(--jeeno-color-common-white);
  margin: 0;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-img-area-1 .collab-text {
    max-width: 260px;
    top: 30px;
    left: 30px;
    padding: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-img-area-1 {
    border-radius: 20px;
    padding: 15px;
  }
}
.banner-scroll {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  z-index: 1;
}

.banner-scroll::before {
  content: "";
  position: absolute;
  bottom: -350px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--jeeno-color-theme-primary);
  filter: blur(75px);
  opacity: 0.17;
  z-index: -1;
  backdrop-filter: blur(10px);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-scroll::before {
    width: 560px;
    height: 560px;
  }
}
.banner-scroll::after {
  content: "";
  position: absolute;
  top: 33%;
  left: 50%;
  transform: translateX(-50%);
  width: 210px;
  height: 210px;
  border-radius: 50%;
  border: 1px solid var(--jeeno-color-common-white);
  opacity: 0.15;
  z-index: -1;
}

.banner-scroll .scroll-down {
  color: var(--jeeno-color-common-white);
  line-height: 1;
  font-weight: var(--jeeno-fw-sbold);
  writing-mode: sideways-lr;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: jumping 2.5s linear infinite;
}

.banner-scroll .scroll-down span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transform: rotate(90deg);
}

.banner-scroll .scroll-down:hover {
  color: var(--jeeno-color-theme-primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-scroll {
    display: none;
  }
}
.banner-highlight {
  max-width: 377px;
  width: 100%;
  margin-inline-start: auto;
  position: relative;
  z-index: 2;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-highlight {
    margin-inline-start: 0;
    margin-top: 30px;
  }
}
.banner-video {
  width: calc(100% - 60px);
  height: 220px;
  background-color: var(--jeeno-color-theme-bg);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding: 20px 20px 0 20px;
  position: relative;
}

.banner-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.banner-video img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.banner-video .video-btn {
  background-color: transparent;
  border: 1px solid var(--jeeno-color-common-white);
  backdrop-filter: none;
  margin-top: 10px;
}

.banner-video::after {
  content: "";
  position: absolute;
  background-color: transparent;
  bottom: 0;
  right: -12px;
  height: 25px;
  width: 12px;
  box-shadow: 0 12px 0 0 var(--jeeno-color-theme-bg);
  border-bottom-left-radius: 12px;
}

.heighlight-content {
  background-color: var(--jeeno-color-theme-bg);
  border-radius: 12px;
  border-top-left-radius: 0;
  padding: 20px;
}

.heighlight-content h6 {
  font-size: 16px;
  color: var(--jeeno-color-text-body);
}

.heighlight-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  margin-bottom: 15px;
}

.heighlight-inner::before {
  content: "";
  position: absolute;
  background-color: var(--jeeno-color-border-1);
  bottom: -4px;
  left: 41%;
  height: 60px;
  width: 2px;
  transform: rotate(-30deg);
}

.heighlight-inner::after {
  content: "";
  position: absolute;
  background-color: var(--jeeno-color-border-1);
  bottom: -2px;
  left: 41.5%;
  height: 30px;
  width: 2px;
  transform: rotate(-30deg);
}

.heighlight-inner .countup-item {
  width: 45%;
  padding: 16px 0 0 0;
  position: relative;
}

.heighlight-inner .countup-item .inline-content {
  font-size: 48px;
  margin-bottom: 3px;
  justify-content: start;
}

.heighlight-inner .count-text {
  font-size: 14px;
  font-family: var(--jeeno-ff-body);
  opacity: 0.8;
}

.banner-img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.banner-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-img {
    border-radius: 16px;
  }
}
.jeeno-banner-section-2 {
  margin: 0 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .jeeno-banner-section-2 {
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .jeeno-banner-section-2 {
    margin-left: 0;
    margin-right: 0;
  }
}
.banner-area {
  display: flex;
  flex-wrap: wrap;
}

.banner-left-box {
  background-color: var(--jeeno-color-theme-bg);
  border-radius: 24px;
  padding: 0 125px 70px 0;
  width: calc(51% - 20px);
  margin-right: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.banner-left-box .banner-video-area {
  max-width: 615px;
  margin-inline-start: auto;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-left-box .banner-video-area {
    margin-inline-start: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-left-box .banner-video-area {
    max-width: 370px;
    margin-inline-end: auto;
  }
}
.banner-left-box .banner-video {
  max-width: 372px;
  width: 100%;
  height: 148px;
  background-color: var(--jeeno-color-theme-dark);
  padding: 0 20px 20px 20px;
  border-radius: 0;
  border-radius: 0 0 20px 20px;
}

.banner-left-box .banner-video .video-btn {
  margin-top: -10px;
}

.banner-left-box .banner-video::after,
.banner-left-box .banner-video::before {
  content: "";
  position: absolute;
  background-color: transparent;
  top: 0;
  left: -50px;
  width: 50px;
  height: 24px;
  box-shadow: 24px 0 0 0 var(--jeeno-color-theme-dark);
  border-top-right-radius: 24px;
  z-index: -1;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-left-box .banner-video::after,
  .banner-left-box .banner-video::before {
    border-radius: 0 15px 0 0;
  }
}
.banner-left-box .banner-video::after {
  left: auto;
  right: -50px;
  transform: scaleX(-1);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-left-box .banner-video {
    max-width: 300px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-left-box .banner-video {
    max-width: 320px;
    height: 120px;
    margin: 0 auto;
    padding: 0 15px 15px 15px;
    border-radius: 0 0 15px 15px;
  }
}
@media (max-width: 575px) {
  .banner-left-box .banner-video {
    max-width: 250px;
  }
}
.banner-left-box .banner-content {
  max-width: 625px;
  margin-top: 65px;
  padding-top: 25px;
  margin-inline-start: auto;
  padding-inline-start: 27px;
}

.banner-left-box .banner-content .sub-title {
  display: inline-flex;
  align-items: center;
  color: var(--jeeno-color-grey-1);
  font-size: 16px;
  font-family: var(--jeeno-ff-heading);
  font-weight: var(--jeeno-fw-medium);
  line-height: 1;
  letter-spacing: -0.03em;
  padding-left: 10px;
  margin-bottom: 25px;
}

.banner-left-box .banner-content .sub-title i {
  color: var(--jeeno-color-theme-primary);
  font-size: 46px;
  margin: -50px 0 0 -40px;
  animation: zoomEffect 3s infinite linear;
}

@media (max-width: 575px) {
  .banner-left-box .banner-content .sub-title i {
    font-size: 40px;
    margin: -40px 0 0 -20px;
  }
}
@media (max-width: 575px) {
  .banner-left-box .banner-content .sub-title {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .banner-left-box .banner-content {
    max-width: 560px;
    margin-inline-start: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-left-box .banner-content {
    max-width: 420px;
    margin-top: 50px;
    margin-inline-end: auto;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-left-box .banner-content {
    max-width: 400px;
  }
}
@media (max-width: 575px) {
  .banner-left-box .banner-content {
    padding-inline-start: 0;
  }
}
.banner-left-box .banner-title {
  margin-bottom: 30px;
}

.banner-left-box .banner-btn-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.banner-left-box .banner-shape {
  max-width: 345px;
  width: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-left-box .banner-shape {
    max-width: 240px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-left-box .banner-shape {
    max-width: 200px;
  }
}
@media only screen and (min-width: 1601px) and (max-width: 1700px) {
  .banner-left-box {
    padding-right: 80px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-left-box {
    width: calc(53% - 20px);
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-left-box {
    padding-left: 50px;
    padding-right: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-left-box {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
    padding: 0 15px 70px;
    border-radius: 16px;
  }
}
.banner-right-box {
  width: 49%;
  position: relative;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-right-box {
    width: 47%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-right-box {
    width: 100%;
  }
}
.banner-right-box .rating-box-area {
  background-color: var(--jeeno-color-theme-dark);
  max-width: 380px;
  width: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 20px 0 0 20px;
  border-top-left-radius: 24px;
  z-index: 1;
}

.banner-right-box .rating-box-area::after,
.banner-right-box .rating-box-area::before {
  content: "";
  position: absolute;
  background-color: transparent;
  top: -50px;
  right: 0;
  width: 24px;
  height: 50px;
  box-shadow: 0 24px 0 0 var(--jeeno-color-theme-dark);
  border-bottom-right-radius: 24px;
  z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-right-box .rating-box-area::after,
  .banner-right-box .rating-box-area::before {
    border-radius: 0 0 16px 0;
  }
}
.banner-right-box .rating-box-area::after {
  top: auto;
  right: auto;
  bottom: 0;
  left: -24px;
}

.banner-right-box .rating-box-area .rating-box {
  background-color: var(--jeeno-color-theme-bg);
  margin: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-right-box .rating-box-area .rating-box {
    padding: 20px 25px;
  }
  .banner-right-box .rating-box-area .rating-box .title {
    font-size: 60px;
  }
  .banner-right-box .rating-box-area .rating-box::before {
    left: 130px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-right-box .rating-box-area {
    max-width: 350px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-right-box .rating-box-area {
    max-width: 325px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .banner-right-box .rating-box-area {
    border-radius: 16px 0 0 0;
  }
}
.jeeno-banner-section-4 {
  padding-bottom: 80px;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .jeeno-banner-section-4 {
    padding-bottom: 60px;
  }
}
/* ============================================================
   PART 3: BREADCRUMB & ANIMATE CSS (from main.css - Global)
   ============================================================ */
/* --- Breadcrumb CSS --- */
.jeeno-page-title {
  color: var(--jeeno-color-common-white);
  line-height: 1;
  margin-bottom: 0;
}

.jeeno-page-link {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  background: var(--jeeno-color-theme-dark);
  border-radius: 6px;
  padding: 8px 15px;
  margin-top: 26px;
  z-index: 2;
}

.jeeno-page-link span {
  color: var(--jeeno-color-grey-1);
  font-size: 16px;
  position: relative;
  display: inline-block;
  line-height: 1;
}

.jeeno-page-link span i {
  display: inline-flex;
  line-height: 1;
  font-size: 16px;
  color: var(--jeeno-color-theme-primary);
}

.jeeno-page-link span span {
  color: var(--jeeno-color-common-white);
}

.jeeno-page-link span a {
  color: var(--jeeno-color-grey-1);
}

.jeeno-page-link span a:hover {
  color: var(--jeeno-color-theme-primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .jeeno-page-link {
    margin-top: 25px;
  }
}
/* !END: Breadcrumb CSS */
/* Animate CSS → moved to jeeno-animate.css */
/* ============================================================
   PART 4: HOME PAGE SPECIFIC CSS (from main.css)
   Sections: Business Growth, Tech Offer, Industries (home),
   About Cards, Case Studies (home), Testimonials (home),
   Careers CTA (home)
   ============================================================ */
/************************/
.jeeno-primary-btn .btn-inner.btn-white {
  background-color: var(--jeeno-color-common-white);
  color: var(--jeeno-color-common-black) !important;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  font-size: 20px;
  padding: 10px 20px;
  border-radius: 8px;
  display: flex;
  border: 1px solid transparent;
  gap: 30px;
  transition: 0.7s;
}
.jeeno-primary-btn .btn-inner.btn-white .btn-text {
  font-family: var(--jeeno-ff-body);
}
.jeeno-primary-btn .btn-inner.btn-white .btn-icon {
  font-size: 20px;
}
.jeeno-primary-btn .btn-inner.btn-white:hover {
  background-color: transparent;
  color: var(--jeeno-color-common-white) !important;
  border: 1px solid #fff;
  transition: 0.7s;
}

/* ----------------section-2-g --------------- */
.business-growth-bg {
  background: url("../images/business-growth-bg.webp") no-repeat center center/cover;
}
.business-growth-bg h4 {
  font-size: 30px;
  color: var(--jeeno-color-common-black);
  font-weight: var(--jeeno-fw-bold);
}
.business-growth-bg h6.counter-text {
  font-size: 30px;
  font-weight: var(--jeeno-fw-medium);
  color: var(--jeeno-color-common-black);
}
.business-growth-bg .counter-count {
  font-size: 70px;
  font-weight: var(--jeeno-fw-bold);
  color: var(--jeeno-color-common-black);
  margin: 0px;
  font-family: "Outfit";
}
.business-growth-bg .count-up {
  text-align: center;
}

.ai-section {
  background-color: #DDF4EC;
}

/*-------------------*/
.home-section-3 {
  background: var(--jeeno-color-common-white);
  overflow: hidden;
}
.home-section-3 h5 {
  color: var(--jeeno-color-theme-light);
}
.home-section-3 h4 {
  font-size: 20px;
  font-weight: 400;
}
.home-section-3 .tech-off-para {
  font-weight: var(--jeeno-fw-bold);
  color: var(--jeeno-color-light-black);
}
.home-section-3 .tech-offer-img {
  position: relative;
  background-image: url(../images/tech-img-bg.png);
  height: 100%;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.home-section-3 .tech-offer-img span {
  position: absolute;
  color: #222;
  top: 84px;
  right: -14px;
  font-size: 20px;
  font-weight: 600;
  transform: rotate(270deg);
}
@media screen and (max-width: 1199px) {
  .home-section-3 .tech-offer-img span {
    top: 100px;
    right: -20px;
  }
}
@media screen and (max-width: 991px) {
  .home-section-3 .tech-offer-img span {
    top: 0px;
    bottom: 0;
    right: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: rotate(270deg) translateX(96px) translateY(20px);
  }
}
.home-section-3 .ai-contents h4,
.home-section-3 .ai-contents p,
.home-section-3 .ai-contents a {
  color: #fff;
  font-weight: 500;
}
.home-section-3 .ai-contents img {
  background: #fff;
  padding: 10px 12px;
  border-radius: 6px;
  margin: 0px 0px 20px;
  height: 90px;
  width: 90px;
  -o-object-fit: none;
     object-fit: none;
}
.home-section-3 .tech-offer-con p {
  text-align: justify;
  font-weight: 400;
  margin: 0;
}
.home-section-3 .ai-contents {
  padding: 30px 20px 20px;
  height: 100%;
}
.home-section-3 .ai-contents .tech-offer-icon {
  height: auto;
}
.home-section-3 .ai-contents .row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.home-section-3 .ai-contents a {
  color: #1FB680;
  text-decoration: none;
  font-weight: var(--jeeno-fw-bold);
}
.home-section-3 .card-section-button {
  display: flex;
  justify-content: end;
  margin-top: 6px;
}

.industries {
  background-color: #DDF4EC;
  color: #000;
}
.industries h4 {
  font-size: 22px;
  font-weight: var(--jeeno-fw-regular);
  font-family: var(--jeeno-ff-outfit);
}
.industries p {
  color: #000000;
  font-size: 30px;
  font-weight: 600;
}
.industries .indus-content h3 {
  font-size: 28px;
  font-weight: var(--jeeno-fw-sbold);
  margin-bottom: 0px;
}
@media screen and (max-width: 1199px) {
  .industries .indus-content h3 {
    font-size: 26px;
  }
}
.industries .indus-content p {
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
}
.industries .indus-content .indus-content-inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  align-items: center;
}
.industries .indus-img img {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .industries .indus-img img {
    max-height: 230px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 8px 8px;
  }
}
.industries .industries-img img {
  display: flex;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .industries .industries-img img {
    max-height: 630px;
  }
}

.industries .industries-left i {
  background-color: #1FB680;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
@media screen and (max-width: 1199px) {
  .industries .industries-left i {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}
.industries .industries-left i:hover {
  background-color: #53d1a3;
}

.industries .industries-right {
  position: relative;
}
.industries .industries-right .industries-img {
  position: relative;
}
.industries .industries-right .industries-img-green-but {
  width: 76px;
  background: #1fb680;
  position: absolute;
  height: 200px;
  right: 0;
  bottom: 0;
  padding: 10px 10px;
  overflow: hidden;
  border-bottom-right-radius: 10px;
}
.industries .industries-right .industries-img-green-but .industries-img-green-but-inner {
  transform: rotate(-90deg);
  width: 120px;
  height: 120px;
}
.industries .industries-right .industries-img-green-but .industries-img-green-but-inner h5 {
  font-size: 18px;
}
.industries .industries-right .industries-img-green-but .industries-img-green-but-icon i {
  width: 40px;
  height: 40px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  color: #1fb680;
  font-size: 30px;
  margin: 14px 8px 14px;
}

.about-us-section {
  background-color: var(--jeeno-color-common-white);
}
.about-us-section h5 {
  color: #12435F;
}
@media screen and (min-width: 768px) {
  .about-us-section img {
    height: 300px;
    width: 95%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
  }
}
.about-us-section .card-odd,
.about-us-section .card-even {
  color: var(--jeeno-color-common-black);
}
.about-us-section .text-black {
  line-height: 28px;
  margin-bottom: 0px;
}

.about-us-section .col-12.mb-3 {
  background-color: #fff;
  border: 2px solid rgba(0, 0, 0, 0.1294117647);
  padding: 30px 30px;
  position: relative;
  border-radius: 10px;
}

.about-us-section .col-lg-12.col-img img {
  display: flex;
  margin-left: auto;
  border-radius: 20px;
}

.card-odd.about-card-curve-box {
  background-color: #ffffff;
  left: 0;
  right: auto;
  border-left: 0;
  border-right: 2px solid transparent;
  border-radius: 0 0 12px 0;
  position: absolute;
  top: 0;
  width: 52px;
  height: 52px;
  line-height: 1;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border-bottom: 2px solid transparent;
  border-right-color: #dedede;
  border-bottom-color: #dedede;
  box-shadow: 0px 0px 0px 2px #fff;
  display: flex;
  font-size: 30px;
  font-weight: bold;
  font-family: var(--jeeno-ff-outfit);
}

.card-odd.about-card-curve-box::before {
  box-shadow: 12px 0 0 0 #ffffff;
  transform: scaleX(-1);
  left: auto;
  right: -25px;
  content: "";
  position: absolute;
  background-color: transparent;
  top: -2px;
  width: 25px;
  height: 12px;
  border-top-right-radius: 12px;
  z-index: -1;
  border-top: 2px solid #dedede;
  border-right: 2px solid #dedede;
}

.card-odd.about-card-curve-box::after {
  right: auto;
  left: -2px;
  box-shadow: 12px 0 0 0 #ffffff;
  transform: scaleX(-1);
  top: auto;
  bottom: -12px;
  content: "";
  position: absolute;
  background-color: transparent;
  width: 25px;
  height: 12px;
  border-top-right-radius: 12px;
  z-index: -1;
  border-top: 2px solid #dedede;
  border-right: 2px solid #dedede;
}

.card-even.about-card-curve-box {
  background-color: #ffffff;
  right: 0;
  left: auto;
  border-left: 2px solid rgba(0, 0, 0, 0.1882352941);
  border-right: 0;
  border-radius: 0 0 0 12px;
  position: absolute;
  top: 0;
  width: 52px;
  height: 52px;
  line-height: 1;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border-bottom: 2px solid transparent;
  border-right-color: #dedede;
  border-bottom-color: #dedede;
  box-shadow: 0px 0px 0px 2px #fff;
  display: flex;
  font-size: 30px;
  font-weight: bold;
  font-family: var(--jeeno-ff-outfit);
}

.card-even.about-card-curve-box::before {
  box-shadow: 12px 0 0 0 #ffffff;
  /* transform: scaleX(-1); */
  left: auto;
  right: 50px;
  content: "";
  position: absolute;
  background-color: transparent;
  top: -2px;
  width: 25px;
  height: 12px;
  border-top-right-radius: 12px;
  z-index: -1;
  border-top: 2px solid #dedede;
  border-right: 2px solid #dedede;
}

.card-even.about-card-curve-box::after {
  right: auto;
  left: 27px;
  box-shadow: 12px 0 0 0 #ffffff;
  /* transform: scaleX(-1); */
  top: auto;
  bottom: -12px;
  content: "";
  position: absolute;
  background-color: transparent;
  width: 25px;
  height: 12px;
  border-top-right-radius: 12px;
  z-index: -1;
  border-top: 2px solid #dedede;
  border-right: 2px solid #dedede;
}

.about-us-serv {
  padding-top: 3rem;
  height: 70%;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: space-between;
}
.about-us-serv h3 {
  font-size: 30px;
  color: #162233;
  font-weight: 600;
}
.about-us-serv p {
  line-height: 28px;
  color: var(--jeeno-color-common-black);
}

.blog-banner-bg {
  background: url("../images/blog-banner.webp");
  background-size: cover;
}
.blog-banner-bg .blog-con .col-lg-4 {
  display: flex;
}
.blog-banner-bg .top-head h4 {
  font-size: 22px;
  font-weight: 400;
}
.blog-banner-bg .blog-card {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blog-banner-bg .blog-card .card-text {
  font-size: 18px;
  color: #000;
  padding: 10px 10px 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1803921569);
  margin-bottom: 0px;
}
.blog-banner-bg .blog-card span {
  position: absolute;
  color: #222;
  top: 12px;
  left: 30px;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--jeeno-ff-outfit);
}

.news-room {
  background: url("../images/news-bg.png");
  background-color: #fff;
}
.news-room .newsroom-contents p {
  font-size: 30px;
  font-weight: 700;
}
.news-room .newsroom-contents h5 {
  color: #12435F;
}
.news-room input.email-input {
  padding: 11px 10px;
}

.news-room .btn:hover {
  border: 1px solid #000000;
  border-radius: 5px;
}

.case-studies {
  background: var(--jeeno-color-common-white);
}
.case-studies h5 {
  color: #12435F;
}
.case-studies p {
  color: #000;
}

/* CASESTUDY SECTION */
.case-studie-section .casestudy-card-para {
  color: var(--jeeno-color-common-black);
  line-height: 24px;
  padding-inline: 1em;
  padding-top: 0.5em;
  margin-bottom: 0px;
}
.case-studie-section .casestudy.col-lg-4 {
  position: relative;
  padding: 0px 0px;
  display: flex;
}
.case-studie-section .casestudy.col-lg-4 span {
  position: absolute;
  z-index: 1;
  top: 61%;
  right: -21%;
  transform: rotate(-90deg);
  font-size: 22px;
  font-weight: 700;
  background-color: #fff;
  max-width: 100%;
  height: 80px;
  padding-top: 22px;
  border-top-right-radius: 10px;
  padding-left: 18px;
  padding-right: 15px;
}
.case-studie-section .casestudy-card {
  border: 1px solid #dbdbdb;
  border-radius: 11px;
  position: relative;
  max-height: 620px;
  height: 100%;
}
.case-studie-section .casestudy-card.casestudy-card-left .casestudy-card-green-box {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}
.case-studie-section .casestudy-card img {
  position: relative;
  background-color: #fff;
  width: 100%;
}
.case-studie-section .casestudy-card .case-studies-left {
  position: relative;
  text-align: center;
  height: 300px;
}
.case-studie-section .casestudy-card .case-studies-left .p-4.pb-0 {
  padding: 0px !important;
}
.case-studie-section .casestudy-card .casestudy-card-view-more {
  position: absolute;
  right: 0;
  left: 0;
  font-size: 22px;
  font-weight: 700;
  bottom: 5px;
  background-color: #fff;
  max-width: 30%;
  height: 40px;
  padding-top: 8px;
  border-radius: 10px;
  margin: 0 auto;
}
.case-studie-section .casestudy-card h4 {
  color: #162233;
  font-weight: 700;
  padding-left: 10px;
}
@media screen and (min-width: 1200px) {
  .case-studie-section .casestudy-card h4 {
    padding-left: 16px;
  }
}
.case-studie-section .casestudy-card p {
  padding: 0px 64px 0px 0px;
}
.case-studie-section .casestudy-card .casestudy-card-green-box {
  background: #1fb680;
  padding: 6px;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.2;
  margin-top: 17px;
  color: var(--jeeno-color-common-black);
  border-bottom-right-radius: 10px;
}
.case-studie-section .casestudy-card-2 {
  overflow: hidden;
  display: flex;
  position: relative;
}
.case-studie-section .casestudy-card-2 h4 {
  color: #162233;
  font-weight: 700;
  padding-left: 15px;
}
@media screen and (min-width: 1200px) {
  .case-studie-section .casestudy-card-2 h4 {
    padding-left: 16px;
  }
}
.case-studie-section .casestudy-card-2 .casestudy-card-green-box-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.case-studie-section .casestudy-card-2 .casestudy-card-green-box-right .casestudy-card-green-box {
  background: #1fb680;
  padding: 6px;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: -2px;
  font-weight: 700;
  font-size: 50px;
  line-height: 1.2;
  color: var(--jeeno-color-common-black);
  font-family: var(--jeeno-ff-outfit);
}
.case-studie-section .casestudy-border {
  border: 1px solid #dbdbdb;
  border-radius: 11px;
}
.case-studie-section .casestudy-card-left img {
  height: 300px;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}
.case-studie-section .casestudy-card-left .footer-top-shape {
  background-color: #ffffff;
  transform: rotate(180deg);
  width: 200px;
  left: 0px;
  top: -50px;
  height: 50px;
}
.case-studie-section .casestudy-card-left .footer-top-shape::before {
  content: "";
  position: absolute;
  background-color: transparent;
  top: 0px;
  left: -50px;
  width: 50px;
  height: 20px;
  box-shadow: 25px 0 0 0 #ffffff;
  border-radius: 0 40px 0 0;
  z-index: -1;
}
.case-studie-section .casestudy-card-left .footer-top-shape::after {
  position: absolute;
  background-color: transparent;
  top: 0px;
  width: 50px;
  height: 20px;
  box-shadow: 24px 0 0 0 #ffffff;
  border-radius: 0 24px 0 0;
  z-index: -1;
  left: auto;
  right: -50px;
  transform: scaleX(-1);
}
.case-studie-section .casestudy-card-right img {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.case-studie-section .casestudy-card-right .footer-top-shape {
  background-color: #ffffff;
  transform: rotate(90deg);
  width: 200px;
  left: -8px;
  top: 260px;
  height: 50px;
}
.case-studie-section .casestudy-card-right .footer-top-shape::before {
  content: "";
  position: absolute;
  background-color: transparent;
  top: 93px;
  left: -35px;
  width: 50px;
  height: 20px;
  box-shadow: 25px 0 0 0 #ffffff;
  border-radius: 0 40px 0 0;
  z-index: -1;
  transform: rotateZ(360deg);
}
.case-studie-section .casestudy-card-right .footer-top-shape::after {
  position: absolute;
  background-color: transparent;
  top: 15px;
  width: 50px;
  height: 19px;
  box-shadow: 24px 0 0 0 #ffffff;
  border-radius: 0 24px 0 0;
  z-index: -1;
  left: auto;
  right: 143px;
  transform: rotateZ(0deg);
}
.case-studie-section .sec-card {
  padding: 0px 25px !important;
}
.case-studie-section a > .casestudy-card-view-more {
  color: var(--jeeno-color-common-black);
}
.case-studie-section a > .casestudy-card-view-more:hover {
  color: var(--jeeno-color-common-green);
}
.case-studie-section a:hover .casestudy-card-view-more {
  color: #1fb680;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .case-studie-section .casestudy-card-2 {
    height: 300px;
  }
  .case-studie-section .casestudy-card {
    height: 100%;
  }
  .case-studie-section .casestudy-card-right .footer-top-shape {
    left: -9px;
    top: 266px !important;
  }
  .case-studie-section .casestudy-card-right .footer-top-shape::before {
    top: 88px !important;
    left: -43px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .case-studie-section .casestudy-card-green-box-right .casestudy-card-green-box {
    margin-left: auto;
    font-size: 60px;
    margin-top: 0px !important;
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 0px !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1022px) {
  .case-studie-section .casestudy-card .casestudy-card-para {
    padding-right: 41px !important;
  }
}
@media only screen and (min-width: 1023px) and (max-width: 1199px) {
  .case-studie-section .casestudy-card .casestudy-card-para {
    padding-right: 50px !important;
  }
}
@media only screen and (min-width: 1301px) and (max-width: 1399px) {
  .case-studie-section .casestudy-card .casestudy-card-para {
    padding-right: 50px !important;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .case-studie-section .casestudy-card .casestudy-card-para {
    padding-right: 50px !important;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .case-studie-section .casestudy-card-right .casestudy-card-green-box {
    margin-top: 0px;
  }
  .case-studie-section .casestudy.col-lg-4 span {
    right: -25%;
    font-size: 20px;
    top: 58%;
    padding-left: 25px;
    padding-right: 25px;
  }
  .case-studie-section .casestudy-card-right .footer-top-shape::before {
    top: 88px;
    left: -42px;
  }
  .case-studie-section .casestudy-card-right .footer-top-shape::after {
    right: 158px;
  }
  .case-studie-section .casestudy-card-right img {
    height: 293px;
  }
  .case-studie-section .casestudy-card-left img {
    height: 293px;
    border-radius: 12px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .case-studie-section .casestudy-card .casestudy-card-view-more {
    font-size: 20px;
    bottom: 8px;
  }
  .case-studie-section .casestudy-card-para {
    line-height: 21px;
  }
}
@media only screen and (max-width: 1199px) {
  .case-studie-section .casestudy.col-lg-4 span {
    right: -28%;
    font-size: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .case-studie-section .casestudy-card p {
    padding: 10px 20px 15px !important;
  }
  .case-studie-section .casestudy-card .casestudy-card-green-box-right {
    display: flex;
    align-items: center;
  }
  .case-studie-section .casestudy-card .casestudy-card-green-box-right h4 {
    padding: 0px 20px;
    margin-top: 10px;
  }
  .case-studie-section .casestudy-card {
    height: 94% !important;
  }
  .case-studie-section .casestudy-card-2 h4 {
    padding: 0px 20px;
  }
  .case-studie-section .casestudy-card-2 .casestudy-card-para {
    padding: 10px 20px 15px !important;
  }
}
@media only screen and (max-width: 767px) {
  .case-studie-section .casestudy-card {
    height: 95%;
  }
}

.careers-bg {
  background-color: var(--jeeno-color-common-white);
}
.careers-bg .careers-inner {
  background: url(../images/caeers-bg-img.webp) no-repeat center;
  background-size: cover;
  padding: 0px 0px 100px;
  border-radius: 10px;
}
.careers-bg .careers-inner .careers-inner-con {
  background-color: #070128;
  padding: 40px;
  width: 50%;
  border-radius: 10px 0px 10px 0px;
}
.careers-bg .careers-inner .careers-inner-con .careers-bg-but {
  margin: 0px 0px -60px;
}

.read-btn {
  background-color: #21b573;
  color: black;
  font-weight: 600;
  border-radius: 6px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid transparent;
  transition: 0.7s;
}

.read-btn:hover {
  transition: 0.7s;
  background-color: transparent;
  border: 1px solid #21b573;
  color: #21b573;
}

.jeeno-footer-section {
  background-color: #020110;
  padding-top: 50px;
}
.jeeno-footer-section .footer-cta .sub-title {
  font-family: var(--jeeno-ff-outfit);
  color: var(--jeeno-color-common-green);
  font-weight: var(--jeeno-fw-sbold);
}
.jeeno-footer-section .footer-left {
  background-color: #050F29;
  border-radius: 20px;
  padding: 30px 40px;
  width: 90%;
}
@media screen and (min-width: 460px) and (max-width: 1024px) {
  .jeeno-footer-section .footer-left {
    width: 100%;
  }
}
.jeeno-footer-section .footer-left .footor-main-logo {
  width: 80%;
}
.jeeno-footer-section .footer-left .footer-contact {
  display: flex;
  gap: 20px;
}
.jeeno-footer-section .footer-left .footer-contact p > a {
  color: var(--jeeno-color-common-white);
  font-family: var(--jeeno-ff-outfit);
}
.jeeno-footer-section .footer-left .footer-contact p > a:hover {
  color: var(--jeeno-color-common-green);
}
.jeeno-footer-section .footer-left .footer-contact i {
  color: var(--jeeno-color-common-white);
}
.jeeno-footer-section .footer-left .footer-left-center {
  border-top: 1px solid rgba(255, 255, 255, 0.3607843137);
  padding: 16px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3607843137);
}
.jeeno-footer-section .footer-left .footer-left-center p {
  font-family: var(--jeeno-ff-outfit);
  display: flex;
  gap: 10px;
}
.jeeno-footer-section .footer-menus .footer-menus-inner {
  border-top: 1px solid rgba(255, 255, 255, 0.3607843137);
  padding: 30px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3607843137);
}
.jeeno-footer-section .footer-menus .footer-right h4 {
  font-family: var(--jeeno-ff-outfit);
  font-size: 24px;
  color: var(--jeeno-color-common-white);
}
.jeeno-footer-section .footer-menus .footer-right p > a {
  color: var(--jeeno-color-common-white);
  transition: 0.7s;
  font-size: 14px;
  display: flex;
  align-items: baseline;
  gap: 15px;
  width: -moz-fit-content;
  width: fit-content;
}
.jeeno-footer-section .footer-menus .footer-right p > a:hover {
  color: var(--jeeno-color-common-green);
  transition: 0.7s;
}
.jeeno-footer-section .footer-menus .footer-right .subscribe-box {
  display: flex;
}
.jeeno-footer-section .footer-menus .footer-right .custom-checkbox {
  padding-top: 10px;
}

.testimonial-bg {
  background-image: url("../images/testimonial-bg.webp");
  background-size: cover;
}
.testimonial-bg h3 {
  font-size: 32px;
}

.testi-box {
  background-color: #fff;
  border-radius: 10px;
}
.testi-box .col-1 img {
  width: auto !important;
}
.testi-box .col-5 {
  margin: auto 0px;
}

@media only screen and (max-width: 1400px) {
  .jeeno-slider-item .slider-content .slider-title {
    font-size: 40px;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 1199px) {
  .jeeno-slider-item .slider-content .slider-title {
    font-size: 40px;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 991px) {
  .footer-left {
    width: 100%;
    margin-bottom: 10px;
  }
  .g-none-mob {
    display: none !important;
  }
  .industries-right {
    display: none;
  }
  .about-us-section img {
    display: none;
  }
  .newsroom-right {
    display: none;
  }
  .infrastructure .page-header {
    min-height: 300px;
  }
  .page-header {
    min-height: 300px !important;
  }
  .fact-sheet .bg-green img {
    max-width: 98% !important;
  }
}
@media only screen and (max-width: 767px) {
  .careers-bg .careers-inner .careers-inner-con {
    width: 100%;
    background-color: rgba(7, 1, 40, 0.6901960784);
  }
  .careers-bg .careers-inner {
    padding: 20px;
  }
  .careers-bg .careers-inner .careers-inner-con .careers-bg-but {
    margin: 0px;
  }
  .jeeno-footer-section .footer-left {
    width: 100%;
  }
  .blog-banner-bg .blog-con {
    gap: 16px;
  }
  .business-growth-bg .counter-count {
    font-size: 40px;
  }
  .business-growth-bg h6.counter-text {
    font-size: 24px;
  }
}
@media only screen and (max-width: 600px) {
  h3.sub-heading {
    line-height: 1.4;
    font-size: 24px;
  }
  h5.small-heading {
    font-size: 18px;
  }
}
.btn.btn-primary {
  font-size: var(--font-size-medium);
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--green-background-color);
  --bs-btn-border-color: var(--green-background-color);
  --bs-btn-hover-color: var(--font-color);
  --bs-btn-hover-bg: #1dab78;
  --bs-btn-hover-border-color: var(--green-background-color);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #1dab78;
  --bs-btn-active-border-color: var(--green-background-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--green-background-color);
  --bs-btn-disabled-border-color: var(--green-background-color);
}

@media screen and (min-width: 1024px) and (max-width: 1300px) {
  h3.sub-heading {
    font-size: 28px;
    line-height: 38px;
  }
  p,
  li {
    font-size: 16px;
  }
}
.font-outfit {
  font-family: var(--jeeno-ff-outfit);
}

#resume-error-server {
  color: red;
  position: relative;
  top: 5px;
}

.select2-results__option--selectable {
  color: #060606 !important;
  font-size: 14px !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #0d2236 !important;
  color: #fff !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  height: 45px !important;
  margin-right: 40px !important;
  font-size: 1.2em !important;
}

.select2-results__option.select2-results__message {
  color: #060606 !important;
}

.select2-container {
  height: 100%;
}
.select2-container .selection {
  height: 100%;
}
.select2-container .selection .select2-selection {
  height: 46px;
  border: 1px solid #d7d7d7 !important;
  padding-right: 0px !important;
}
.select2-container .selection .select2-selection__rendered {
  line-height: 46px !important;
  font-size: 14px !important;
}
.select2-container .selection .select2-selection__placeholder {
  color: #060606 !important;
  font-size: 14px !important;
}
.select2-container .selection .select2-selection__arrow {
  top: 12px !important;
  right: 14px !important;
}

.multi-select #position_applied {
  border: 1px solid #d7d7d7 !important;
  width: 100% !important;
  height: 46px !important;
  border-radius: 6px;
  color: #333;
  padding: 0 10px !important;
  font-size: 14px;
}
.multi-select #position_applied:focus {
  border: 1px solid #333;
  box-shadow: none;
}

.select2-container--default .select2-selection__choice {
  background-color: #f4fffb !important;
  height: 28px;
  line-height: 28px;
  margin-left: 5px !important;
  margin-top: -2px !important;
  vertical-align: middle !important;
}

.select2-container--default .select2-selection__choice__remove {
  font-size: 14px !important;
  padding: 0 4px !important;
  top: -1px !important;
}

.select2-container--default .select2-selection__choice__display {
  padding-left: 4px !important;
  padding-right: 6px !important;
  color: #060606 !important;
  font-size: 14px !important;
}

.select2-dropdown {
  z-index: 2 !important;
}

.select2-selection--multiple {
  height: 100% !important;
  padding-bottom: 0px !important;
}
.select2-selection--multiple .select2-selection__clear {
  margin-top: 10px !important;
}
.select2-selection--multiple .select2-search--inline .select2-search__field {
  font-family: "Raleway" !important;
  margin-top: 12px !important;
  margin-left: 14px !important;
  height: 34px !important;
  color: #060606 !important;
}
.select2-selection--multiple .select2-search--inline .select2-search__field::-moz-placeholder {
  color: #060606 !important;
  font-size: 14px !important;
}
.select2-selection--multiple .select2-search--inline .select2-search__field::placeholder {
  color: #060606 !important;
  font-size: 14px !important;
}

.blog-posting .item a:hover {
  color: #1fb680 !important;
}

.blog-posting .item:hover {
  transform: scale(0.99);
  transition: all 0.5s ease-out;
  /* transition: all 0.5s ease-in-out; */
}

.tech-offer-img:hover {
  transform: scale(1.02);
  transition: all 0.5s ease-out;
}

.about-card-odd:hover {
  transform: scale(1.02);
  transition: all 0.5s ease-out;
}

.about-card-even:hover {
  transform: scale(1.02);
  transition: all 0.5s ease-out;
}

/* =====blogs====== */
.blog-banner-bg .card {
  position: relative;
}

.blog-banner-bg .card img {
  padding: 10px 25px;
  height: 342px;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-banner-bg .card span.blog-date {
  position: absolute;
  /* background-color: #fff; */
  height: 40px;
  width: 30%;
  top: 0px;
  left: 0px;
  border-radius: 5px 0px 14px 0px;
  /* display: flex; */
  align-items: center;
  justify-content: center;
}

.card .blog-date .footer-top-shape {
  background-color: #fff;
  transform: rotate(0deg);
  width: 130px;
  left: 19px;
  top: 9px;
  height: 50px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 0px;
  border-top-right-radius: 0px;
  border-top-left-radius: 5px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  color: #052537;
}

.card .blog-date .footer-top-shape::before {
  content: "";
  position: absolute;
  background-color: transparent;
  top: 49px;
  left: 6px;
  width: 50px;
  height: 20px;
  box-shadow: 25px 0 0 0 #ffffff;
  border-radius: 0 16px 0 0;
  z-index: -1;
  transform: scalex(-1);
}

.card .blog-date .footer-top-shape::after {
  position: absolute;
  background-color: transparent;
  top: 0px;
  width: 50px;
  height: 20px;
  box-shadow: 24px 0 0 0 #ffffff;
  border-radius: 0 16px 0 0;
  z-index: -1;
  left: auto;
  right: -50px;
  transform: scalex(-1);
}

@media screen and (max-width: 991px) {
  .card .blog-date .footer-top-shape {
    width: 210px;
  }
}
.blog-banner-bg .item a {
  display: block;
  text-decoration: none;
  color: #052537;
}

.blog-banner-bg .item a:hover .card-title,
.blog-banner-bg .item a:hover .card-footer,
.blog-banner-bg .item a:hover .footer-top-shape,
.blog-banner-bg .item a:hover .blog-readmore {
  color: #1fb680;
  transition: color 0.3s ease;
}

.blog-banner-bg .item a:hover .card {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

/* ========================== */
.jeeno-cpyright-text .copyright-text p {
  color: var(--jeeno-color-common-white);
}

/* ============================================================
   PART 5: PAGE-SPECIFIC CSS
   Combined from: style.css + custom.css
   Organized by page section
   ============================================================ */
/* ============================================================
   new_style.css
   Jeeno Tech - Page-Specific Styles
   Combines: style.css + custom.css
   Common global styles → main.css
   Page-specific styles → this file (new_style.css)
   ============================================================ */
/* ============================================================
   SECTION 1: COMMON UTILITIES & VARIABLES
   (shared across multiple pages)
   ============================================================ */
/* CSS Custom Properties */
:root {
  --heading-color: #171717;
  --font-color: #060606;
  --white-color: #fff;
  --green-heading-color: #1FB680;
  --green-background-color: #1FB680;
  --light-green-bg-color: #E9F8F2;
  --blue-background-color: #100F2F;
  --dark-bg-color: #060525;
  --heading-font-size: 26px;
  --font-size-small: 12px;
  --font-size-medium: 14px;
  --font-size-large: 16px;
  --heading-font-weight: 600;
}

/* Global base */
* {
  font-family: "Raleway", sans-serif;
}

img {
  max-width: 100%;
}

/* Utility classes */
.fw-600 {
  font-weight: 600;
}

.highlight-text {
  color: #00b987;
}

.required,
.text-red {
  color: #ec1c24;
}

/* Section headings (used across all pages) */
.sec-heading .sec-title {
  font-family: Raleway;
  font-weight: 700;
  font-style: Bold;
  font-size: 30px;
  line-height: 52px;
  text-align: center;
  vertical-align: middle;
}

/* Responsive utility margins (used in multiple pages) */
@media screen and (max-width: 767px) {
  .mt-md-1 {
    margin-top: 1em;
  }
  .mt-md-2 {
    margin-top: 2em;
  }
  .mb-md-1 {
    margin-bottom: 1em;
  }
  .mb-md-2 {
    margin-bottom: 2em;
  }
  .pt-md-1 {
    padding-top: 1em;
  }
  .pt-md-2 {
    padding-top: 2em;
  }
  .pb-md-1 {
    padding-bottom: 1em;
  }
  .pb-md-2 {
    padding-bottom: 2em;
  }
}
/* Shared form elements (contact + career pages) */
.custom-checkbox {
  display: none;
}

.checkbox-label {
  position: relative;
  padding-left: 25px !important;
  cursor: pointer;
  display: inline;
}

.checkbox-label::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 0px;
  width: 15px;
  height: 15px;
  border: 2px solid #ccc;
  background-color: #fff;
  border-radius: 4px;
}

.custom-checkbox:checked + .checkbox-label::before {
  background-color: #00b987;
  border-color: #00b987;
}

.custom-checkbox:checked + .checkbox-label::after {
  content: "✓";
  position: absolute;
  left: 5px;
  top: 0px;
  font-size: 10px;
  color: #fff;
}

.checkbox-label a {
  color: #00b987;
  text-decoration: underline;
}

.checkbox-label a:hover {
  text-decoration: none;
}

/* Keyframe animations (home slider) */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: calc(var(--chars) * 12.5px);
  }
}
@keyframes blink-caret {
  50% {
    border-color: transparent;
  }
}
/* Shared page header layout (all inner pages) */
.page-header {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-header .contentWrap {
  max-width: 60%;
  color: white;
}
.page-header .contentWrap h1 {
  margin-bottom: 20px;
}
.page-header .contentWrap p {
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 500;
}
.page-header .contentWrap a {
  color: inherit;
  font-weight: 500;
  font-size: 20px;
}
.page-header .contentWrap a::after {
  content: "\f054";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  font-weight: 700;
  font-size: 18px;
}
.page-header .container {
  position: relative;
  z-index: 1;
}
.page-header nav {
  display: flex;
  justify-content: center;
}
.page-header .breadcrumb {
  background-color: #12435f;
  margin-bottom: 0;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}
.page-header .breadcrumb a {
  color: #fff;
  text-decoration: none;
}
.page-header .lni-home {
  color: #00c48c;
  align-self: center;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: white;
}

/* Shared page header — contentWrap responsive */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .page-header {
    min-height: 460px;
  }
  .page-header .contentWrap {
    max-width: 60%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .page-header {
    min-height: 420px;
  }
  .page-header .contentWrap {
    max-width: 70%;
  }
  .page-header .contentWrap p, .page-header .contentWrap a {
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .page-header {
    min-height: 420px;
    padding-top: 100px;
    padding-bottom: 30px;
    align-items: flex-start;
  }
  .page-header .contentWrap {
    max-width: 85%;
  }
  .page-header .contentWrap p, .page-header .contentWrap a {
    font-size: 17px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .page-header {
    min-height: 380px;
    padding-top: 100px;
    padding-bottom: 30px;
    align-items: flex-start;
  }
  .page-header .contentWrap {
    max-width: 100%;
  }
  .page-header .contentWrap h1 {
    margin-bottom: 15px;
  }
  .page-header .contentWrap p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .page-header .contentWrap a {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .page-header {
    min-height: 360px;
    padding-top: 110px;
    padding-bottom: 30px;
    align-items: flex-start;
  }
  .page-header .contentWrap {
    max-width: 100%;
  }
  .page-header .contentWrap h1 {
    margin-bottom: 12px;
  }
  .page-header .contentWrap p {
    font-size: 15px;
    margin-bottom: 18px;
  }
  .page-header .contentWrap a {
    font-size: 15px;
  }
}
/* ============================================================
   SECTION 2: CONTACT PAGE
   ============================================================ */
/* --- Shared form styles (contact + career pages) --- */
.contact-input {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
.contact-input .inputText {
  border: 1px solid #d7d7d7;
  width: 100%;
  height: 46px;
  border-radius: 6px;
  color: #333;
  padding: 0 10px;
  font-size: 14px;
}
.contact-input .inputText:focus {
  border: 1px solid #333;
  box-shadow: none;
}
.contact-input .inputTextarea {
  height: 95px;
  padding: 10px;
}
.contact-input .customLabel {
  position: absolute;
  pointer-events: none;
  top: 10px;
  left: 15px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.625rem;
  display: inline-block;
  color: rgba(51, 51, 51, 0.8);
}
.contact-input .customLabel.activeLabel {
  color: #000;
  top: -22px;
  font-weight: 600;
  display: none;
}
.contact-input .inputText:focus ~ .customLabel {
  color: #000;
  top: -22px;
  font-weight: 600;
  display: none;
}
.contact-input .floating-label span {
  font-size: 15px;
}
.contact-input div.error {
  width: 100%;
  color: #ec1c24;
  font-size: 12px;
  text-align: left;
  position: absolute;
  top: 48px;
}
.contact-input.description-input div.error {
  top: 95px;
}

.btn-captacha button.submit {
  width: 100%;
  background: #1FB680;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  display: block;
  text-decoration: none;
  border: 1px solid #1FB680;
  border-radius: 5px;
  padding: 0.875rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  height: 54px;
  line-height: 25px;
  margin-top: 20px;
}
.btn-captacha button.submit:hover {
  color: #00b987;
  background: transparent;
  border: 1px solid #20c997;
}

.contact-form-wrap {
  padding: 50px 0 0;
}

.contact-form-box .inner {
  background: #fff;
  padding: 24px;
  border: 1px solid #e7e7e7;
  border-radius: 10px;
}
.contact-form-box .sec-heading {
  margin: 0px 0px 30px;
}
.contact-form-box .sec-heading h2 {
  font-size: 28px;
  line-height: 32px;
  margin: 0px;
  color: #000;
}

.checkbox-label {
  font-size: 12px;
  color: #000;
}

/* --- Contact page specific --- */
.contact-us body {
  font-family: "Raleway", sans-serif;
}
.contact-us .icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-us .icon-img {
  max-width: 70%;
  max-height: 60%;
}
.contact-us .page-header {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../images/Subtract.png") no-repeat center center/cover;
  color: #fff;
}
.contact-us .page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}
.contact-us .page-header .container {
  position: relative;
  z-index: 1;
}
.contact-us .page-header nav {
  display: flex;
  justify-content: center;
}
.contact-us .page-header .breadcrumb {
  background-color: #12435f;
  margin-bottom: 0;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}
.contact-us .page-header .breadcrumb a {
  color: #fff;
  text-decoration: none;
}
.contact-us .page-header .lni-home {
  color: #00c48c;
  align-self: center;
}
.contact-us .breadcrumb-item + .breadcrumb-item::before {
  color: white;
}
.contact-us .contactus {
  font-weight: 700;
}
.contact-us .contact-info-wrap {
  padding: 50px 0;
}
.contact-us .contact-info-wrap .contact-box .inner {
  background: #070128;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  position: relative;
  min-height: 215px;
  text-align: center;
}
.contact-us .contact-info-wrap .contact-box .inner h3 {
  font-family: Raleway;
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  vertical-align: middle;
  color: #FFFFFF;
  padding-left: 80px;
  text-align: left;
}
.contact-us .contact-info-wrap .contact-box .inner p {
  margin-top: 20px;
  font-family: Raleway;
  font-weight: 600;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  color: #FFFFFF;
  vertical-align: middle;
}
.contact-us .contact-info-wrap .contact-box .inner > a {
  font-family: Raleway;
  font-weight: 600;
  font-size: 16px;
  line-height: 40px;
  text-align: center;
  color: #2EB989;
  vertical-align: middle;
}
.contact-us .contact-info-wrap .contact-box .inner .contact-icon {
  background: #fff;
  padding: 10px;
  width: 58px;
  height: 58px;
  position: absolute;
  top: 0;
  left: 20px;
  border-radius: 0 0 10px 10px;
}
.contact-us .contact-info-wrap .contact-box .inner .contact-icon:before, .contact-us .contact-info-wrap .contact-box .inner .contact-icon:after {
  position: absolute;
  content: "";
  top: 0px;
}
.contact-us .contact-info-wrap .contact-box .inner .contact-icon:before {
  background-color: transparent;
  top: 0px;
  left: auto;
  right: -25px;
  width: 25px;
  height: 12px;
  box-shadow: 12px 0 0 0 #fff;
  border-top-right-radius: 10px;
  border-top: 2px solid transparent;
  border-right: 2px solid transparent;
  transform: scaleX(-1);
}
.contact-us .contact-info-wrap .contact-box .inner .contact-icon:after {
  content: "";
  position: absolute;
  background-color: transparent;
  top: 0px;
  left: -25px;
  width: 25px;
  height: 12px;
  box-shadow: 10px 0 0 0 #fff;
  border-top-right-radius: 10px;
  border-top: 2px solid transparent;
  border-right: 2px solid transparent;
}
.contact-us .contact-form-wrap .sec-heading .sec-title {
  text-align: left;
  margin-bottom: 0px;
  padding-left: 0px;
  font-size: 28px;
}
.contact-us .contact-map-box .inner {
  height: 100%;
}
.contact-us .contact-map-box .inner iframe {
  border-radius: 8px;
}
.contact-us .contact-map-box .contact-info-map {
  padding: 20px;
  background: rgba(31, 182, 128, 0.1490196078);
  margin-bottom: 20px;
  border-radius: 10px;
}
.contact-us .contact-map-box .contact-info-map .sec-heading {
  margin: 0px;
}
.contact-us .contact-map-box .contact-info-map .contact-icon {
  padding: 10px 0 10px 70px;
  margin-top: 20px;
}
.contact-us .contact-map-box .contact-info-map .contact-icon h3 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}
.contact-us .contact-map-box .contact-info-map .contact-icon p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #000;
}
.contact-us .contact-map-box .contact-info-map .loc-icon {
  background: url(../images/loc-icon.png) no-repeat top left;
}
.contact-us .contact-map-box .contact-info-map .email-icon {
  background: url(../images/mail-icon.png) no-repeat top left;
}
.contact-us .contact-map-box .contact-info-map .mobile-icon {
  background: url(../images/phone-icon.png) no-repeat top left;
}
.contact-us .contact-hire-wrap {
  background: rgba(31, 182, 128, 0.1490196078);
  padding: 30px 0 0;
  margin-top: 60px;
}
.contact-us .contact-hire-wrap .contact-box .jt-btn {
  width: 100%;
  background: #1FB680;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  display: block;
  text-decoration: none;
  border: 1px solid #1FB680;
  border-radius: 5px;
  padding: 0.875rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  height: 54px;
  line-height: 25px;
  margin-top: 20px;
}
.contact-us #contact_form label.error,
.contact-us #contact_form .error {
  color: rgba(255, 8, 8, 0.8);
}
@media screen and (max-width: 767px) {
  .contact-us .contact-info-wrap .contact-box {
    margin-bottom: 20px;
  }
  .contact-us .contact-input .row > div {
    margin-bottom: 10px;
  }
  .contact-us .contact-info-wrap .contact-box .inner .contact-icon {
    top: -1px;
  }
}
@media screen and (max-width: 1024px) {
  .contact-us .contact-hire-wrap {
    padding: 30px 0;
  }
  .contact-us .contact-hire-wrap .contact-image-box {
    display: none;
  }
}

/* ============================================================
   SECTION 3: ABOUT US PAGE
   ============================================================ */
.about-us .icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-us .icon-img {
  max-width: 70%;
  max-height: 60%;
}
.about-us .page-header {
  background: url("../images/hero3.jpg") no-repeat center center/cover;
}
.about-us .page-header::before {
  background: rgba(0, 0, 0, 0.6);
}
.about-us .page-header .breadcrumb .aboutus {
  font-weight: 700;
}
.about-us .about-image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: inline-block;
}
.about-us .about-image {
  width: 100%;
  height: auto;
  display: block;
}
.about-us .top-label {
  top: 25px;
  right: 30px;
  font-size: 30px;
  background: transparent;
  font-weight: 400;
}
@media screen and (min-width: 991px) and (max-width: 1300px) {
  .about-us .top-label {
    right: 16px;
    font-size: 28px;
    height: 16px !important;
  }
}
.about-us .bottom-label {
  position: absolute;
  bottom: 6px;
  left: 12px;
  right: 0px;
  font-size: 1rem;
  font-weight: 700;
  align-items: center;
  background-color: #20c997;
  color: #fff;
  padding: 12px;
  text-align: center;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  box-sizing: border-box;
  align-content: center;
}
.about-us .curve-label {
  position: absolute;
  color: #222;
  align-items: center;
  max-width: 264px;
  height: 85px;
  margin-bottom: 0px;
}
@media screen and (min-width: 991px) and (max-width: 1300px) {
  .about-us .curve-label {
    max-width: 220px;
    display: flex;
    height: 70px;
  }
}
.about-us .text-area {
  line-height: 20px;
  text-align: justify;
}
.about-us .play-card {
  background: #e6f9f3;
  border-left: 4px solid #20c997;
  border-radius: 10px;
}
.about-us .play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #20c997;
  color: white;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.about-us .values-section {
  background-color: #e9f9f4;
}
.about-us .icon-circle {
  width: 50px;
  height: 50px;
  background: #20c997;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  position: relative;
  z-index: 2;
  line-height: 1;
  flex-shrink: 0;
}
.about-us .value-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  z-index: 1;
}
.about-us .value-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  width: 2px;
  height: 100px;
  border-left: 2px dashed #20c997;
  z-index: 0;
}
.about-us .play-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin-right: 8px;
}
.about-us .triangle {
  width: 0;
  height: 0;
  border-left: 12px solid #1fb680;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  left: 1px;
  position: relative;
}
@media (max-width: 768px) {
  .about-us .about-section .row {
    flex-direction: column;
    text-align: center;
  }
  .about-us .top-label {
    right: 10px;
    font-size: 30px;
  }
  .about-us .bottom-label {
    font-size: 10px;
    padding: 0px;
  }
  .about-us .values-section .value-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .about-us .values-section .value-item:not(:last-child)::after {
    display: none;
  }
  .about-us .values-section .icon-circle {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .about-us .top-label {
    top: 10px;
    right: 25px;
    font-size: 14px;
  }
  .about-us .bottom-label {
    font-size: 12px;
    width: 154px;
    left: 4px;
    height: 52px;
    border-top-right-radius: 5px;
    padding-bottom: 15px;
    line-height: 5px;
  }
  .about-us .play-icon {
    position: relative;
    top: 8px;
  }
  .about-us .page-header h1 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 991px) {
  .about-us .page-header {
    min-height: 300px;
  }
  .about-us .curve-label.top-label {
    right: 14px;
    max-width: 100%;
    height: auto;
  }
  .about-us .curve-label.bottom-label {
    width: 130px;
    left: 3px;
    height: 50px;
    bottom: 3px;
  }
}

/* ============================================================
   SECTION 4: FOUNDERS / MANAGEMENT TEAM PAGE
   ============================================================ */
.founders .page-header {
  background: url("../images/hero/about-founders-banner.webp") no-repeat center center/cover;
}
.founders .page-header::before {
  background: rgba(0, 0, 0, 0.6);
}
.founders .page-header .lni-home {
  color: #00c291;
  top: 1px;
  position: relative;
}
.founders .page-header .breadcrumb .aboutus {
  font-weight: 700;
}
.founders .profile-section {
  border-radius: 12px;
  position: relative;
  padding-top: 45px;
}
.founders .profile-image img,
.founders .founder-image img {
  border-radius: 12px;
  width: 100%;
  height: auto;
}
.founders .profile-content h3 {
  color: #0b7a61;
  font-weight: bold;
}
.founders .profile-content p,
.founders .founder-content p {
  font-size: medium;
  line-height: 1.6;
  text-align: justify;
}
.founders .founder-card {
  border-radius: 12px;
  margin: 40px auto;
  max-width: 1100px;
  overflow: hidden;
  position: relative;
}
.founders .founder-card.odd {
  background: #0b7a61;
  color: #fff;
}
.founders .founder-card.even {
  background: #fff;
  color: #000;
}
.founders .founder-content {
  padding: 30px;
}
.founders .odd {
  background-color: #ddf4ec;
  background-image: url("../images/founders-sub-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.founders .odd.bg-first {
  background-image: url("../images/founders-bg-1.webp");
  background-size: contain;
}
.founders .odd .quote-box {
  bottom: 50px;
  right: -200px;
}
.founders .even {
  color: black;
}
.founders .even.bg-second {
  background-image: url("../images/founders-bg-2.webp");
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
}
.founders .even .quote-box {
  bottom: 50px;
  left: -200px;
}
.founders .even .read-more-box {
  text-align: left;
  margin-top: 15px;
}
@media screen and (max-width: 991px) {
  .founders .even .read-more-box {
    margin-top: 0px;
  }
}
.founders .quote-box {
  background: #0b1a2f;
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  position: relative;
  min-width: 296px;
}
.founders .quote-box h4 {
  color: #00c291;
  margin: 0;
  position: relative;
  text-align: center;
}
.founders .quote-box p {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0px;
}
.founders .quote-box::before {
  content: "❝";
  font-size: 40px;
  line-height: 20px;
  vertical-align: middle;
  color: #00c291;
  position: absolute;
  left: 20px;
}
.founders .quote-box::after {
  content: "❞";
  font-size: 40px;
  color: #00c291;
  position: absolute;
  bottom: 0;
  right: 10px;
}
.founders .read-more-box {
  text-align: right;
  margin-top: 15px;
}
.founders .read-more {
  color: #00c291;
  font-weight: bold;
  text-decoration: none;
}
.founders .read-more:hover {
  text-decoration: underline;
}
.founders .linkedin-icon {
  font-size: 26px;
  color: #00c291;
  display: inline-block;
  margin-top: 8px;
}
.founders .linkedin-icon:hover {
  color: #064f40;
}
.founders .social-icons a {
  color: #0b1a2f;
  margin-right: 15px;
  font-size: 20px;
  text-decoration: none;
}
.founders .profile-image .quote-box {
  bottom: 80px;
}
@media screen and (max-width: 767px) {
  .founders .profile-image .quote-box {
    width: 100%;
  }
  .founders .profile-image .quote-box::before {
    display: none;
  }
  .founders .profile-image .quote-box::after {
    display: none;
  }
}
@media screen and (min-width: 470px) and (max-width: 1024px) {
  .founders .profile-image .quote-box {
    bottom: 0px;
    right: 0px;
    left: 0px;
    min-width: auto;
  }
}
.founders .founder-image img {
  max-height: 430px;
  -o-object-fit: cover;
     object-fit: cover;
}
.founders .founder-image .quote-box {
  bottom: 80px;
}
@media (max-width: 767px) {
  .founders .profile-section {
    text-align: center;
    flex-direction: column;
  }
  .founders .profile-image {
    margin-bottom: 20px;
  }
  .founders .quote-box {
    position: static !important;
    margin: 15px auto 0;
    display: inline-block;
    min-width: auto;
    text-align: center;
    left: 0 !important;
  }
  .founders .profile-content {
    padding-inline: 15px;
    margin-top: 20px;
    text-align: left;
  }
  .founders .read-more-box {
    text-align: center !important;
  }
  .founders .quote-box::before {
    left: 30px;
  }
  .founders .quote-box::after {
    right: 30px;
  }
}

/* ============================================================
   SECTION 5: PRIVACY POLICY PAGE
   ============================================================ */
.privacy-section {
  color: #112d4b;
  line-height: 30px;
}
.privacy-section.bg-blue {
  background-color: #fff;
}
.privacy-section ul.one-ul > li {
  position: relative;
  padding-left: 15px;
  font-size: 1rem;
  line-height: 35px;
  padding-right: 20px;
}
.privacy-section ul.one-ul > li::before,
.privacy-section .terms-section ul.one-ul > li::before {
  top: 12px;
}
.privacy-section li {
  list-style: none;
}
.privacy-section ul > li::before,
.privacy-section ul.tri-ul > li::before,
.privacy-section ul.two-ul > li::before {
  content: "";
  background-image: url(../images/li-arrow-right.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px;
  position: absolute;
  left: 0;
  right: 0;
  top: 9px;
  width: 10px;
  height: 10px;
}
.privacy-section h2, .privacy-section h3 {
  font-size: 24px;
  margin: 26px 0px 10px;
  font-weight: 600;
}
.privacy-section h4 {
  font-size: 18px;
  margin: 10px 0px 10px;
  font-weight: 600;
}
.privacy-section a {
  color: #007bff;
}

.privacy-policy .page-header {
  background: url("../images/ai-platform-banner.webp") no-repeat center center/cover;
}
.privacy-policy .page-header .breadcrumb .privacy-policy {
  font-weight: 700;
}

/* ============================================================
   SECTION 6: AI SERVICES PAGE
   ============================================================ */
.ai-services .page-header {
  background: url("../images/services/ai-services-banner.webp") no-repeat center center/cover;
}
.ai-services .page-header .breadcrumb .ai-services {
  font-weight: 700;
}
.ai-services .ai-service h2 {
  color: #12435F;
  font-size: 22px;
}
.ai-services .ai-service-card-left {
  gap: 10px;
}
.ai-services .ai-services-icon {
  background-color: #fff;
  width: 70px;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  border-radius: 5px;
}
.ai-services .ai-service-card-bg h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0px;
}
.ai-services .ai-service-card-bg p {
  color: #fff;
}
.ai-services .ai-services-text {
  margin: auto 0;
}
.ai-services .ai-services-sec1 .ai-service p {
  color: #000;
  font-size: 30px;
  font-weight: 700;
}
.ai-services .ai-services-sec1 .aiservices-card-img img {
  width: 100%;
  height: 210px;
  position: relative;
  z-index: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.ai-services .ai-service-card-bg {
  background-color: #052537;
  padding: 20px 20px 26px;
  border-radius: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ai-services .ai-service-card-bg .ai-but-wrap {
  text-align: center;
  margin: -34px 0px 0px;
}
.ai-services .ai-service-card-bg .ai-but-wrap .ai-but {
  position: relative;
  background: url(../images/services/white-button.png);
  padding: 14px 40px;
  z-index: 1;
  background-size: 100% 100%;
  color: #000;
  font-weight: bold;
  font-size: 18px;
  transition: 0.7s;
}
.ai-services .ai-service-card-bg .ai-but-wrap .ai-but:hover {
  background: url(../images/services/green-button.png);
  background-size: 100% 100%;
  transition: 0.7s;
}
.ai-services .ai-service-card-bg .ai-but-wrap .ai-but i {
  font-size: 16px;
}
.ai-services .ai-service-card-bg .ai-but-wrap .ai-but i::before {
  font-weight: bold !important;
}

/* ai-services active breadcrumb shared across multiple pages */
.ai-accelerators .page-header .breadcrumb .ai-services,
.ai-platform .page-header .breadcrumb .ai-services,
.infrastructure .page-header .breadcrumb .ai-services,
.testimonials .page-header .breadcrumb .ai-services {
  font-weight: 700;
}

/* ============================================================
   SECTION 7: AI PLATFORM PAGE
   ============================================================ */
.ai-platform .page-header {
  background: url("../images/ai-platform-banner.webp") no-repeat center center/cover;
}
.ai-platform .page-header .breadcrumb .ai-platform {
  font-weight: 700;
}
.ai-platform .ai-platform-sec1 h2 {
  color: #12435F;
  font-size: 22px;
}
.ai-platform .ai-platform-sec1 p {
  color: #212529;
}
.ai-platform .ai-platform-sec1 h3 {
  color: #212529;
  font-size: 30px;
  font-weight: 600;
}
@media (min-width: 1201px) and (max-width: 1400px) {
  .ai-platform .ai-platform-sec1 .col-xl-5 {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .ai-platform .ai-platform-sec1 .ai-platform-right img {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .ai-platform .ai-platform-sec1 .ai-platform-right img {
    display: none;
  }
}
@media (max-width: 767px) {
  .ai-platform .ai-platform-sec1 .ai-platform-right img {
    display: block;
  }
}

/* ============================================================
   SECTION 8: TESTIMONIALS COMPONENT (shared carousel styles)
   ============================================================ */
.h5-testimonial-wrapper {
  position: relative;
  margin: -15px;
}

.h5-testimonial-wrapper:hover .testimonial-navigation {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 575px) {
  .h5-testimonial-wrapper {
    margin-right: -15px;
  }
}
.h5-testimonial {
  padding: 15px;
}

.testimonial-item.style-4 {
  background-color: var(--jeeno-color-theme-bg);
  border-radius: 12px;
  padding: 35px 30px;
  border: 2px solid var(--jeeno-color-theme-bg);
  position: relative;
  z-index: 3;
  transition: all 0.5s;
}

@media (max-width: 575px) {
  .testimonial-item.style-4 {
    padding: 25px 20px;
  }
}
.testimonial-item.style-4 .testimonial-author {
  border: 0;
  padding: 0 45px 26px 0;
}

.testimonial-item.style-4 .testimonial-author .author-img {
  width: 84px;
  height: 84px;
  border: 2px solid var(--jeeno-color-common-white);
  background-color: var(--jeeno-color-common-white);
  border-radius: 50%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-item.style-4 .testimonial-author .author-img {
    width: 75px;
    height: 75px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-item.style-4 .testimonial-author .author-img {
    width: 65px;
    height: 65px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-item.style-4 .testimonial-author .author-img {
    width: 55px;
    height: 55px;
  }
}
.testimonial-item.style-4 .testimonial-author .designation {
  font-size: 16px;
}

.testimonial-item.style-4 .desc {
  font-size: 18px;
  color: var(--jeeno-color-text-body);
  opacity: 1;
  padding-bottom: 22px;
}

.testimonial-item.style-4 .rating-area {
  max-width: 133px;
  background-color: transparent;
  border-radius: 0;
  position: static;
  left: 0;
  bottom: 0;
  margin: 0;
  padding: 10px 0 0 0;
  z-index: 2;
}

.testimonial-item.style-4 .rating-area::after,
.testimonial-item.style-4 .rating-area::before {
  display: none;
}

.testimonial-item.style-4 .rating-area .star-ratings {
  font-size: 18px;
  letter-spacing: 1.5px;
  display: inline-flex;
}

.testimonial-item.style-4:hover {
  border-color: var(--jeeno-color-theme-primary);
  box-shadow: 0 0 15px 0 rgba(255, 0, 127, 0.7);
}

.testimonial-navigation {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  z-index: 5;
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

.testimonial-navigation .slider-prev {
  margin-top: -50px;
  margin-inline-start: -10px;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-navigation .slider-prev {
    margin-inline-start: 0;
  }
}
.testimonial-navigation .slider-next {
  margin-top: -50px;
  margin-inline-end: -10px;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-navigation .slider-next {
    margin-inline-end: 0;
  }
}
/* ============================================================
   SECTION 9: AI ACCELERATORS PAGE
   ============================================================ */
.ai-accelerators .page-header {
  background: url("../images/ai-accelerator/ai-accelerator-banner.png") no-repeat center center/cover;
}
.ai-accelerators .page-header .breadcrumb .ai-accelerators {
  font-weight: 700;
}
.ai-accelerators .ai-accelerator-sec1 h2 {
  color: #12435F;
  font-size: 22px;
}
.ai-accelerators .ai-accelerator-sec1 p {
  color: #171717;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.ai-accelerators-carousel .accelerat-card {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 8px;
  padding: 20px 20px 0px !important;
  width: 96%;
  position: relative;
  margin: auto !important;
}
.ai-accelerators-carousel .accelerat-card h3 {
  font-size: 20px;
  color: #000;
}
.ai-accelerators-carousel .accelerat-card p {
  color: #000;
}
.ai-accelerators-carousel .accelerat-card .ai-but-wrap {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px 0px -5px;
}
.ai-accelerators-carousel .accelerat-card .ai-but-wrap .ai-but {
  position: unset;
  background: url(../images/services/green-button.png);
  padding: 14px 40px;
  z-index: 1;
  background-size: 100% 100%;
  color: #000;
  font-weight: bold;
  font-size: 18px;
  transition: 0.7s;
}
.ai-accelerators-carousel .accelerat-card .ai-but-wrap .ai-but i {
  font-size: 16px;
}
.ai-accelerators-carousel .accelerat-card .ai-but-wrap .ai-but i::before {
  font-weight: bold !important;
}
.ai-accelerators-carousel .accelerat-card:hover {
  background-color: #052537;
  color: #fff;
}
.ai-accelerators-carousel .accelerat-card:hover h3, .ai-accelerators-carousel .accelerat-card:hover p {
  color: #fff;
}
.ai-accelerators-carousel span img {
  position: absolute;
  z-index: 1;
  top: 0px;
  right: 0px;
  width: 40px !important;
  height: 40px;
  box-shadow: inset -27px 15px 11px 0px #fff;
}
.ai-accelerators-carousel .owl-stage {
  display: flex;
}
.ai-accelerators-carousel .owl-stage .owl-item {
  display: flex;
  margin: 10px 0px;
}
.ai-accelerators-carousel .item.accelerat-box {
  margin: 10px 0px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.acce-card-curve-box {
  background-color: #ffffff;
  left: auto;
  right: 0;
  border-left: 1px solid #000;
  border-right: 0;
  border-radius: 0 0 0px 12px;
  position: absolute;
  top: 0;
  width: 52px;
  height: 52px;
  line-height: 1;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border-bottom: 1px solid #000;
  border-right-color: #000;
  border-bottom-color: #000;
  box-shadow: 0px 0px 0px 2px #fff;
  display: flex;
  font-size: 30px;
  font-weight: bold;
}
.acce-card-curve-box::after {
  right: auto;
  left: 26px;
  box-shadow: 12px 0 0 0 #ffffff;
  top: auto;
  bottom: -12px;
  content: "";
  position: absolute;
  background-color: transparent;
  width: 25px;
  height: 12px;
  border-top-right-radius: 12px;
  z-index: -1;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}
.acce-card-curve-box::before {
  box-shadow: 12px 0 0 0 #ffffff;
  left: auto;
  right: 51px;
  content: "";
  position: absolute;
  background-color: transparent;
  top: -1px;
  width: 25px;
  height: 13px;
  border-top-right-radius: 12px;
  z-index: -1;
  border-top: 1px solid #052537;
  border-right: 1px solid #052537;
}

/* Shared owl carousel dots */
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #1FB680;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 30px;
}
.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
}

/* ============================================================
   SECTION 10: TESTIMONIALS PAGE
   ============================================================ */
.testimonials .page-header {
  background: url("../images/testimonials/testimonials-banner.png") no-repeat center center/cover;
}
.testimonials .page-header .breadcrumb .testimonials {
  font-weight: 700;
}
.testimonials .testi-card-quote p {
  color: var(--jeeno-color-common-white);
}
.testimonials .testi-card-text p {
  color: var(--jeeno-color-common-white);
}

.testimonials-sec .testimonial-cnt {
  background: url("../images/testimonials/testimonial-card-img.png") no-repeat center center/cover;
  border-radius: 10px;
  padding: 20px 10px;
  min-height: 500px;
}
.testimonials-sec .testi-card-quote::before {
  content: " ";
  background: url("../images/testimonials/front-quote.png") no-repeat center center/contain;
  width: 35px;
  height: 35px;
  display: block;
}
.testimonials-sec .testi-card-quote::after {
  content: " ";
  background: url("../images/testimonials/back-quote.png") no-repeat center center/contain;
  width: 35px;
  height: 35px;
  display: block;
  margin-left: auto;
}
.testimonials-sec .testimonial-rarting {
  right: -8px;
  bottom: -5px;
}
.testimonials-sec .testimonial-rarting img {
  display: none;
}
.testimonials-sec ul {
  top: 22px;
  right: 0;
  padding: 0px 30px;
  gap: 10px;
  display: none !important;
}
.testimonials-sec .testi-card-text p {
  font-weight: 700;
  font-size: 18px;
}

.testi-card-quote p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 0;
}

@media screen and (max-width: 580px) {
  .testimonials-sec-gap {
    gap: 20px;
  }
}
/* ============================================================
   SECTION 11: INFRASTRUCTURE PAGE
   ============================================================ */
.infrastructure .page-header {
  background: url("../images/infrastructure/infrastructure-banner.png") no-repeat center center/cover;
}
.infrastructure .page-header .breadcrumb .infrastructure {
  font-weight: 700;
}
@media only screen and (max-width: 425px) {
  .infrastructure h1 {
    font-size: 34px;
  }
}

.infra-mgt-team h2 {
  font-size: 30px;
  font-weight: 700;
}

.infra-vision {
  background-color: rgba(31, 182, 128, 0.15);
}
.infra-vision .vision-bg {
  background: url("../images/infrastructure/vision-bg.png") no-repeat center center/cover;
  min-height: 400px;
  border-radius: 10px;
}
.infra-vision .vision-mission-right {
  padding: 60px 20px 40px 20px;
}
.infra-vision .vision-mission-right h3 {
  font-size: 30px;
  font-weight: 700;
  text-align: left;
  color: var(--jeeno-color-common-white);
}
.infra-vision .vision-mission-right p {
  color: var(--jeeno-color-common-white);
}
.infra-vision .vision-mission-left {
  top: -10px;
  left: -20px;
}
.infra-vision .vision-mission-bg {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.3215686275) 0px 0px 8px 0px;
  border-radius: 12px;
  min-height: 515px;
  height: calc(100% - 30px);
}
.infra-vision .Values-beliefs-img {
  top: 0;
  right: 0;
}
.infra-vision .Values-beliefs-card {
  padding: 80px 30px 40px 30px;
}
.infra-vision .Values-beliefs-card p {
  text-align: left;
  color: #060606;
  font-size: 16px;
}
.infra-vision .Values-beliefs-card p span {
  font-weight: 600;
}
.infra-vision .Values-beliefs-card h3 {
  text-align: left;
  color: #060606;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}
.infra-vision .bi::before, .infra-vision [class*=" bi-"]::before {
  font-weight: 900 !important;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .infra-vision .vision-mission-left img {
    display: none;
  }
  .infra-vision .vision-bg {
    background: none;
    min-height: 400px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 530px) {
  .infra-vision .vision-mission-bg .Values-beliefs-img {
    display: none;
  }
  .infra-vision .Values-beliefs-card {
    padding: 30px;
  }
  .infra-vision .vision-mission-bg {
    min-height: unset;
  }
}
@media screen and (max-width: 1400px) {
  .infra-vision .vision-bg {
    min-height: unset;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1400px) {
  .infra-vision .vision-bg {
    min-height: auto;
    height: calc(100% - 0px);
    background-repeat: no-repeat;
    background-size: auto;
  }
  .infra-vision .vision-bg .vision-bg-img .vision-mission-left {
    top: -20px;
    left: -20px;
  }
  .infra-vision .vision-bg .vision-bg-img .vision-mission-left img {
    width: 260px;
  }
  .infra-vision .vision-bg .vision-mission-right {
    padding: 40px 30px 40px 270px;
  }
}

.infra-sec-bg {
  background: url("../images/infrastructure/has-built.png") no-repeat center center/cover;
  background-size: 100% 100%;
}
.infra-sec-bg .infra-sec-right h3, .infra-sec-bg .infra-sec-right p {
  color: var(--jeeno-color-common-white);
  line-height: 32px;
}
.infra-sec-bg .infra-sec-right h3 {
  font-size: 30px;
  font-weight: 700;
}

.data-security-bg h3 {
  font-size: 30px;
  font-weight: 700;
}
.data-security-bg .data-security-bg-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.data-security-bg .data-security-bg-head p {
  width: 84%;
}
.data-security-bg .data-security-bg-head h5 {
  font-size: 22px;
  font-weight: 600;
}
.data-security-bg .ds-con-wrap {
  display: grid;
}
.data-security-bg .ds-con-wrap .ds-con {
  background: url("../images/infrastructure/ds-con-bg.png") no-repeat center center/cover;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.data-security-bg .ds-con-wrap .ds-con .ds-con-head {
  display: flex;
  align-items: center;
  gap: 20px;
}
.data-security-bg .ds-con-wrap .ds-con .ds-con-head h5 {
  color: var(--jeeno-color-common-white);
}
.data-security-bg .ds-con-wrap .ds-con .ds-con-list {
  list-style: none;
}
.data-security-bg .ds-con-wrap .ds-con .ds-con-list li {
  display: flex;
  gap: 10px;
  align-items: baseline;
  color: var(--jeeno-color-common-white);
}
@media screen and (max-width: 1199px) {
  .data-security-bg .data-security-bg-head {
    flex-direction: column;
  }
  .data-security-bg h3 {
    text-align: center;
  }
}
@media screen and (max-width: 991px) {
  .data-security-bg .data-security-bg-head p {
    width: 100%;
  }
  .data-security-bg .ds-con-wrap {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .vision-mission-right h3 {
    color: #000 !important;
  }
  .vision-mission-right p {
    color: #000 !important;
  }
}
@media screen and (max-width: 1024px) {
  .vision-bg-img {
    display: none;
  }
  .vision-bg {
    background-size: auto !important;
  }
  .vision-bg .vision-mission-right {
    padding: 30px 30px 20px 30px;
  }
}
@media screen and (max-width: 1400px) {
  .vision-bg .col-lg-9 {
    width: 100%;
  }
}
/* ============================================================
   SECTION 12: HOME PAGE SPECIFIC
   ============================================================ */
body.home {
  /* Credentials / certificates section */
}
body.home .credentials-section-home {
  background-color: #c2e5d9;
  padding: 60px 0px;
  font-family: var(--jeeno-ff-outfit);
}
body.home .credentials-section-home h4 {
  font-size: 32px;
  font-weight: 700 !important;
}
body.home .credentials-section-home h3 {
  font-size: 22px;
}
body.home {
  /* Partners carousel */
}
body.home .partners-section.owl-carousel .owl-item img {
  width: auto !important;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}
body.home #partners-home .owl-nav {
  position: relative;
}
body.home #partners-home .owl-nav .owl-prev span, body.home #partners-home .owl-nav .owl-next span {
  display: none;
}
body.home #partners-home .owl-nav .owl-prev, body.home #partners-home .owl-nav .owl-next {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #00b987;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}
body.home #partners-home .owl-nav .owl-next::before {
  content: "";
  position: absolute;
  background: url("../images/partners-right-arw.webp") no-repeat center center/cover;
  height: 14px;
  width: 14px;
}
body.home #partners-home .owl-nav .owl-prev::before {
  content: "";
  position: absolute;
  background: url("../images/partners-left-arw.webp") no-repeat center center/cover;
  height: 14px;
  width: 14px;
}
body.home #partners-home .owl-nav .owl-prev {
  position: absolute;
  left: 0px;
  top: -64px;
}
body.home #partners-home .owl-nav .owl-next {
  right: 0px;
  top: -64px;
  position: absolute;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  body.home #partners-home .owl-nav .owl-prev {
    left: -16px;
  }
  body.home #partners-home .owl-nav .owl-next {
    right: -16px;
  }
  body.home #partners-home .owl-nav .owl-prev, body.home #partners-home .owl-nav .owl-next {
    position: absolute;
    top: -65px;
  }
}
@media only screen and (min-width: 577px) and (max-width: 767px) {
  body.home #partners-home .owl-nav .owl-prev {
    left: -50px;
  }
  body.home #partners-home .owl-nav .owl-next {
    right: -50px;
  }
  body.home #partners-home .owl-nav .owl-prev, body.home #partners-home .owl-nav .owl-next {
    position: absolute;
    top: -65px;
  }
}
@media only screen and (max-width: 576px) {
  body.home #partners-home .owl-nav .owl-prev {
    left: 0px;
  }
  body.home #partners-home .owl-nav .owl-next {
    right: 0px;
  }
  body.home #partners-home .owl-nav .owl-prev, body.home #partners-home .owl-nav .owl-next {
    position: absolute;
    top: -65px;
  }
}
body.home .partners-section .item {
  display: flex;
  justify-content: center;
}
body.home {
  /* LinkedIn widget section */
}
body.home .linkedin-post {
  background-color: #fff;
}
body.home .linkedin-post h3 {
  font-weight: 700;
  font-family: var(--jeeno-ff-outfit);
  font-size: 32px;
}
body.home .linkedin-post .linkedin-widget .custom-linkedin-post .es-widget-background-content > a:last-of-type {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
body.home .linkedin-post .linkedin-widget .custom-linkedin-post .es-widget-background-content > a:last-of-type::before {
  content: "";
  width: 200px;
  height: 30px;
  background: #ffffff;
  position: absolute;
}
body.home {
  /* Hero Slider */
}
body.home .jeeno-slider-section {
  position: relative;
  z-index: 1;
  margin: 75px 30px 30px 30px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  body.home .jeeno-slider-section {
    margin: 70px 15px 20px 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  body.home .jeeno-slider-section {
    margin: 0;
    border-radius: 12px;
  }
}
body.home .jeeno-slider-item {
  height: 75vh;
  background-color: var(--jeeno-color-theme-dark);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
body.home .jeeno-slider-item::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
body.home .jeeno-slider-item .slider-wrapper {
  max-width: 1320px;
  margin: 0 auto;
  padding: 140px 0 140px 0;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media only screen and (min-width: 1601px) and (max-width: 1700px) {
  body.home .jeeno-slider-item .slider-wrapper {
    max-width: 1400px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  body.home .jeeno-slider-item .slider-wrapper {
    padding-inline-start: 70px;
    padding-inline-end: 70px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  body.home .jeeno-slider-item .slider-wrapper {
    padding: 150px 60px 120px 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  body.home .jeeno-slider-item .slider-wrapper {
    padding: 150px 50px 120px 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  body.home .jeeno-slider-item .slider-wrapper {
    padding: 150px 15px 120px 15px;
  }
}
body.home .jeeno-slider-item .slider-content {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
body.home .jeeno-slider-item .slider-content .slider-title-area {
  max-width: 730px;
  width: 100%;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  body.home .jeeno-slider-item .slider-content .slider-title-area {
    max-width: 660px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  body.home .jeeno-slider-item .slider-content .slider-title-area {
    max-width: 530px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  body.home .jeeno-slider-item .slider-content .slider-title-area {
    max-width: 490px;
  }
}
body.home .jeeno-slider-item .slider-content .slider-title-area .type-write-text {
  padding: 10px 14px;
  border-radius: 6px;
  display: block;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgb(100, 100, 125);
  width: -moz-fit-content;
  width: fit-content;
}
body.home .jeeno-slider-item .slider-content .slider-title-area .type-write-text p {
  display: block;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  border-right: 2px solid rgba(255, 255, 255, 0.95);
  padding-right: 0.25rem;
  animation: typing 4s steps(var(--chars)) forwards, blink-caret 0.75s step-end infinite;
  --chars: 26;
}
@media screen and (min-width: 1024px) and (max-width: 1300px) {
  body.home .jeeno-slider-item .slider-content .slider-title-area .type-write-text p {
    font-size: 18px;
    --chars: 23;
  }
}
@media screen and (max-width: 768px) {
  body.home .jeeno-slider-item .slider-content .slider-title-area .type-write-text {
    width: 100%;
  }
  body.home .jeeno-slider-item .slider-content .slider-title-area .type-write-text .type-text {
    font-size: 18px !important;
  }
}
@media screen and (min-width: 991px) {
  body.home .jeeno-slider-item .slider-content .slider-title-area .type-write-text {
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(0%, -50%);
  }
}
body.home .jeeno-slider-item .slider-content .slider-title-area .btn-inner {
  width: -moz-max-content;
  width: max-content;
  transition: all 0.3s ease;
}
body.home .jeeno-slider-item .slider-content .slider-title {
  color: var(--jeeno-color-common-white);
  font-size: 40px;
  line-height: normal;
  font-weight: var(--jeeno-fw-bold);
  margin-bottom: 10px;
  font-family: var(--jeeno-ff-body);
  text-transform: uppercase;
}
body.home .jeeno-slider-item .slider-content .slider-desc {
  max-width: 450px;
  width: 100%;
  font-size: 18px;
  line-height: 1.444;
  color: var(--jeeno-color-white-2);
  margin-bottom: 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  body.home .jeeno-slider-item .slider-content .slider-desc {
    max-width: 305px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  body.home .jeeno-slider-item .slider-content .slider-desc {
    max-width: 270px;
    font-size: 16px;
  }
}
body.home .jeeno-slider-item .slider-content .slider-btn {
  margin-bottom: 25px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  body.home .jeeno-slider-item .slider-content .slider-btn {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  body.home .jeeno-slider-item .slider-content .slider-btn {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  body.home .jeeno-slider-item .slider-content {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  body.home .jeeno-slider-item .slider-content {
    flex-direction: column;
    align-items: start;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  body.home .jeeno-slider-item {
    height: 70vh;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  body.home .jeeno-slider-item {
    height: 65vh;
    border-radius: 0 0 16px 16px;
  }
}
body.home .slider-bg-image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
}
body.home .jeeno-primary-btn {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
body.home {
  /* Slide-in animations */
}
body.home .swiper-slide .slider-content .slider-title, body.home .swiper-slide .slider-content .slider-desc, body.home .swiper-slide .slider-content .slider-btn {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition-duration: 0.8s;
}
body.home .swiper-slide.swiper-slide-active .slider-content .slider-title {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 1s;
}
body.home .swiper-slide.swiper-slide-active .slider-content .slider-desc {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 1.25s;
}
body.home .swiper-slide.swiper-slide-active .slider-content .slider-btn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 1.5s;
}
body.home .hero-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 100%;
  margin-top: 26px;
  display: inline-flex;
  justify-content: space-between;
  transition: all 0.5s;
}
body.home .hero-navigation .slider-next,
body.home .hero-navigation .slider-prev {
  width: 50px;
  height: 60px;
  font-size: 30px;
  background-color: var(--jeeno-color-theme-dark);
  margin-top: -60px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  color: var(--jeeno-color-common-white);
}
body.home .hero-navigation .slider-next::before, body.home .hero-navigation .slider-next::after,
body.home .hero-navigation .slider-prev::before,
body.home .hero-navigation .slider-prev::after {
  content: "";
  position: absolute;
  background-color: transparent;
  top: -24px;
  right: 0;
  width: 38px;
  height: 24px;
  box-shadow: 20px 0 0 0 var(--jeeno-color-theme-dark);
  border-radius: 0 0 24px 0;
  z-index: -1;
  pointer-events: none;
}
body.home .hero-navigation .slider-next::after,
body.home .hero-navigation .slider-prev::after {
  top: auto;
  bottom: -24px;
  border-radius: 0 24px 0 0;
  border-bottom: 0;
}
body.home .hero-navigation .slider-next .anim-icon:hover,
body.home .hero-navigation .slider-prev .anim-icon:hover {
  filter: invert(10);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  body.home .hero-navigation .slider-next,
  body.home .hero-navigation .slider-prev {
    width: 45px;
    height: 60px;
    font-size: 28px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  body.home .hero-navigation .slider-next,
  body.home .hero-navigation .slider-prev {
    display: none;
  }
}
body.home .hero-navigation .slider-prev {
  border-radius: 0 16px 16px 0;
  justify-content: start;
  border-left: 0;
}
body.home .hero-navigation .slider-prev::before, body.home .hero-navigation .slider-prev::after {
  left: 0;
  right: auto;
  transform: scaleX(-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  body.home .hero-navigation .slider-prev {
    border-radius: 0 20px 20px 0;
  }
}
body.home .hero-navigation .slider-next {
  border-radius: 16px 0 0 16px;
  justify-content: end;
  border-right: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  body.home .hero-navigation .slider-next {
    border-radius: 20px 0 0 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  body.home .hero-navigation .slider-next::before, body.home .hero-navigation .slider-next::after,
  body.home .hero-navigation .slider-prev::before, body.home .hero-navigation .slider-prev::after {
    width: 30px;
    height: 24px;
    border-radius: 0 0 15px 0;
  }
}
@media screen and (max-width: 767px) {
  body.home .tech-offer-con p {
    font-size: 14px;
  }
}

/* ============================================================
   SECTION 13: INDUSTRIES PAGE
   ============================================================ */
.industries-page .page-header {
  background: url(../images/industry/industry-banner.webp) no-repeat center center/cover;
}
.industries-page .industry-about {
  padding: 60px 0;
}
.industries-page .industry-about .about-image {
  width: 100%;
}
.industries-page .industry-about .about-content h2 {
  color: var(--heading-color);
  font-size: var(--heading-font-size);
  font-weight: var(--heading-font-weight);
}
.industries-page .industry-about .about-content p {
  padding-top: 0.5em;
  color: var(--font-color);
  font-size: var(--font-size-large);
  line-height: 1.8;
}
.industries-page .industry-about .about-logo img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 1024px) and (max-width: 1400px) {
  .industries-page .industry-about .about-logo img {
    max-width: 18%;
  }
}
.industries-page .industry-healthcare {
  padding: 60px 0;
}
.industries-page .industry-healthcare .section-heading {
  text-align: center;
  padding-bottom: 2em;
}
.industries-page .industry-healthcare .section-heading h2 {
  color: var(--heading-color);
  font-size: var(--heading-font-size);
  font-weight: var(--heading-font-weight);
}
.industries-page .industry-healthcare .section-heading p {
  padding-top: 0.5em;
  color: var(--font-color);
  font-size: var(--font-size-large);
  line-height: 1.8;
}
.industries-page .industry-healthcare .healthcare-card {
  box-shadow: 0px 0px 10px 2px rgba(6, 6, 6, 0.1803921569);
  border: none;
  border-radius: 1em;
  margin-bottom: 1.2em;
  min-height: 270px;
  height: calc(100% - 30px);
}
.industries-page .industry-healthcare .healthcare-card .card-body {
  padding: 2em 2em;
  text-align: center;
}
.industries-page .industry-healthcare .healthcare-card .card-body img {
  margin-bottom: 1em;
}
.industries-page .industry-healthcare .healthcare-card .card-body h3 {
  color: var(--heading-color);
  font-size: 22px;
  font-weight: var(--heading-font-weight);
  text-align: center;
}
.industries-page .industry-healthcare .healthcare-card .card-body p {
  padding-top: 0.5em;
  color: var(--font-color);
  font-size: var(--font-size-large);
  line-height: 1.6;
  text-align: center;
}
.industries-page .industry-healthcare .healthcare-card:hover {
  box-shadow: 0px 0px 15px 3px rgba(6, 6, 6, 0.2392156863);
  transition: all 0.3s ease-in-out;
  background: url("../images/industry/healthcare-card-bg.webp") no-repeat center;
}
.industries-page .industry-healthcare .healthcare-card:hover img {
  filter: brightness(0) invert(1);
}
.industries-page .industry-healthcare .healthcare-card:hover h3 {
  color: var(--green-heading-color);
}
.industries-page .industry-healthcare .healthcare-card:hover p {
  color: #fff;
}
@media screen and (min-width: 1024px) and (max-width: 1300px) {
  .industries-page .industry-healthcare .healthcare-card {
    min-height: 310px;
    height: calc(100% - 30px);
    margin-bottom: 0em;
  }
}
.industries-page .industry-healthcare .ac-recive-bg:hover {
  background: url("../images/industry/ac-recivable-card-bg.webp") no-repeat center !important;
}
.industries-page .industry-healthcare .payment-bg:hover {
  background: url("../images/industry/payment-post-card-bg.webp") no-repeat center !important;
}
.industries-page .industry-healthcare .denial-bg:hover {
  background: url("../images/industry/denial-card-bg.webp") no-repeat center !important;
}
.industries-page .industry-healthcare .soap-bg:hover {
  background: url("../images/industry/soap-card-bg.webp") no-repeat center !important;
}
.industries-page .payers-section {
  background-color: rgba(31, 182, 129, 0.1764705882);
}
.industries-page .payers-section .healthcare-card {
  min-height: 360px;
  height: calc(100% - 30px);
}
.industries-page .payers-section .healthcare-card:hover {
  background: var(--blue-background-color);
}
@media screen and (min-width: 1024px) and (max-width: 1300px) {
  .industries-page .payers-section .healthcare-card {
    min-height: 360px;
    height: calc(100% - 30px);
  }
}
.industries-page .pharmaceutical-section {
  background: url("../images/industry/pharmacetical-industry-bg.webp") no-repeat center;
  background-size: cover;
}
.industries-page .pharmaceutical-section .section-heading h2, .industries-page .pharmaceutical-section .section-heading p {
  color: var(--white-color);
}
.industries-page .pharmaceutical-section .healthcare-card {
  min-height: 290px;
  height: calc(100% - 30px);
}
.industries-page .pharmaceutical-section .healthcare-card .footer-top-shape {
  background-color: #ffffff;
  transform: rotate(0deg);
  width: 62px;
  left: 0px;
  top: 3px;
  height: 50px;
}
.industries-page .pharmaceutical-section .healthcare-card .footer-top-shape::before {
  content: "";
  position: absolute;
  background-color: transparent;
  top: -36px;
  left: -44px;
  width: 50px;
  height: 20px;
  box-shadow: 25px 0 0 0 #0b0019;
  border-radius: 0 40px 0 0;
  z-index: -1;
}
.industries-page .pharmaceutical-section .healthcare-card .footer-top-shape::after {
  content: "";
  position: absolute;
  background-color: transparent;
  top: -36px;
  width: 50px;
  height: 20px;
  box-shadow: 24px 0 0 0 #0e0020;
  border-radius: 0 24px 0 0;
  z-index: -1;
  left: auto;
  right: -54px;
  transform: scaleX(-1);
}
.industries-page .pharmaceutical-section .healthcare-card img {
  position: relative;
  background: #0c0026;
  padding: 0.5em 0.5em;
  border-radius: 10px;
  position: absolute;
  left: 44%;
  top: 0px;
  width: 60px;
}
.industries-page .pharmaceutical-section .healthcare-card:hover {
  background: var(--white-color);
}
.industries-page .pharmaceutical-section .healthcare-card:hover img {
  filter: none;
}
.industries-page .pharmaceutical-section .healthcare-card:hover h3 {
  color: var(--green-heading-color);
}
.industries-page .pharmaceutical-section .healthcare-card:hover p {
  color: var(--font-color);
}
.industries-page .pharmaceutical-section .healthcare-card:hover p::before {
  content: "";
  background: var(--green-heading-color);
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  border-radius: 0px 0px 10px 10px;
  height: 12px;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 1024px) and (max-width: 1300px) {
  .industries-page .pharmaceutical-section .healthcare-card {
    min-height: 310px;
  }
}
.industries-page .retail-section .healthcare-card {
  background: var(--light-green-bg-color);
  box-shadow: 0px 0px 0px #fcfcfc;
  min-height: 200px;
}
.industries-page .retail-section .healthcare-card:hover {
  background: var(--dark-bg-color);
}
.industries-page .retail-section .healthcare-card:hover img {
  filter: brightness(0) invert(1);
}
.industries-page .retail-section .healthcare-card:hover h3 {
  color: var(--green-heading-color);
}
.industries-page .retail-section .healthcare-card:hover p {
  color: var(--white-color);
}
.industries-page .financial-accounting-section {
  background: url("../images/industry/financial-accouting-bg.webp") no-repeat center;
  background-size: cover;
}
.industries-page .financial-accounting-section .section-heading h2, .industries-page .financial-accounting-section .section-heading p {
  color: var(--white-color);
}
.industries-page .financial-accounting-section .healthcare-card {
  min-height: 200px;
}
.industries-page .financial-accounting-section .healthcare-card:hover {
  background: var(--light-green-bg-color);
}
.industries-page .financial-accounting-section .healthcare-card:hover img {
  filter: none;
}
.industries-page .financial-accounting-section .healthcare-card:hover p {
  color: var(--font-color);
}
.industries-page {
  /* Responsive - Industries */
}
@media screen and (max-width: 767px) {
  .industries-page {
    width: 100%;
    overflow: hidden;
  }
  .industries-page .container {
    padding: 30px 15px !important;
  }
  .industries-page .industry-about .about-logo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    margin-top: 1em;
    background: rgba(31, 182, 128, 0.1215686275);
    border-radius: 0.5em;
    padding: 1em 1em;
    align-items: center;
    justify-items: center;
  }
  .industries-page .industry-about .about-logo img {
    max-width: 100px;
  }
  .industries-page .industry-about .about-content {
    margin-top: 1em;
  }
  .industries-page .industry-healthcare {
    padding: 0px 0px;
  }
  .industries-page .industry-healthcare .section-heading {
    padding-bottom: 1em;
  }
  .industries-page .industry-healthcare .healthcare-card .card-body img {
    max-height: 60px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .industries-page .payers-section,
  .industries-page .retail-section {
    padding: 0px 0px;
  }
}
@media screen and (max-width: 1024px) {
  .industries-page .industry-about .about-logo {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3em;
    background: rgba(31, 182, 128, 0.1215686275);
    padding: 1em 2em;
    margin-top: 0.5em;
    border-radius: 0.5em;
    width: 100%;
  }
  .industries-page .industry-about .about-logo img {
    max-width: 100px;
    height: auto;
  }
  .industries-page .industry-about .about-image img {
    max-height: 260px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0.5em;
  }
}
@media screen and (min-width: 991px) {
  .industries-page .industry-about .about-image img {
    width: 100%;
    height: 260px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
  }
  .industries-page .about-logo {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3em;
    margin-top: 4em;
    background: rgba(31, 182, 128, 0.1215686275);
    padding: 1.2em 2em;
    border-top-right-radius: 0.5em;
    border-bottom-right-radius: 0.5em;
    position: absolute;
    transform: translate(-25px, 0px);
    bottom: 0px;
    width: 100%;
  }
}
.industries-page {
  /* Pharmaceutical section responsive sizes */
}
@media screen and (max-width: 320px) {
  .industries-page .pharmaceutical-section .healthcare-card .footer-top-shape {
    width: 50px;
    left: 0px;
    top: 3px;
    height: 50px;
  }
  .industries-page .pharmaceutical-section .healthcare-card .footer-top-shape::before {
    top: -35px;
    left: -54px;
  }
  .industries-page .pharmaceutical-section .healthcare-card .footer-top-shape::after {
    top: -35px;
    right: -55px;
  }
  .industries-page .pharmaceutical-section .healthcare-card img {
    left: 40%;
    top: 0px;
  }
}
@media screen and (min-width: 321px) and (max-width: 374px) {
  .industries-page .pharmaceutical-section .healthcare-card .footer-top-shape {
    width: 50px;
    left: 0px;
    top: 3px;
    height: 50px;
  }
  .industries-page .pharmaceutical-section .healthcare-card .footer-top-shape::before {
    top: -35px;
    left: -60px;
  }
  .industries-page .pharmaceutical-section .healthcare-card .footer-top-shape::after {
    top: -35px;
    right: -60px;
  }
  .industries-page .pharmaceutical-section .healthcare-card img {
    left: 40%;
    top: 0px;
  }
}
@media screen and (min-width: 375px) and (max-width: 424px) {
  .industries-page .pharmaceutical-section .healthcare-card .footer-top-shape {
    width: 50px;
    left: 0px;
    top: 3px;
    height: 50px;
  }
  .industries-page .pharmaceutical-section .healthcare-card .footer-top-shape::before {
    top: -35px;
    left: -60px;
  }
  .industries-page .pharmaceutical-section .healthcare-card .footer-top-shape::after {
    top: -35px;
    right: -50px;
  }
  .industries-page .pharmaceutical-section .healthcare-card img {
    left: 40%;
    top: 0px;
  }
}
@media screen and (min-width: 425px) and (max-width: 767px) {
  .industries-page .pharmaceutical-section .healthcare-card .footer-top-shape {
    width: 50px;
    left: 0px;
    top: 3px;
    height: 50px;
  }
  .industries-page .pharmaceutical-section .healthcare-card .footer-top-shape::before {
    top: -35px;
    left: -65px;
  }
  .industries-page .pharmaceutical-section .healthcare-card .footer-top-shape::after {
    top: -35px;
    right: -45px;
  }
  .industries-page .pharmaceutical-section .healthcare-card img {
    left: 40%;
    top: 0px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .industries-page .pharmaceutical-section .healthcare-card .footer-top-shape {
    width: 60px;
    left: 0px;
    top: 3px;
    height: 50px;
  }
  .industries-page .pharmaceutical-section .healthcare-card .footer-top-shape::before {
    top: -35px;
    left: -48px;
  }
  .industries-page .pharmaceutical-section .healthcare-card .footer-top-shape::after {
    top: -35px;
    right: -52px;
  }
  .industries-page .pharmaceutical-section .healthcare-card img {
    left: 46%;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1440px) {
  .industries-page .pharmaceutical-section .healthcare-card {
    height: -webkit-fill-available;
    height: -moz-fill-available;
    min-height: 360px;
  }
  .industries-page .pharmaceutical-section .healthcare-card .footer-top-shape {
    width: 60px;
    left: 0px;
    top: 3px;
    height: 50px;
  }
  .industries-page .pharmaceutical-section .healthcare-card .footer-top-shape::before {
    top: -35px;
    left: -32px;
  }
  .industries-page .pharmaceutical-section .healthcare-card .footer-top-shape::after {
    top: -35px;
    right: -68px;
  }
  .industries-page .pharmaceutical-section .healthcare-card img {
    left: 46%;
  }
}

/* ============================================================
   CAREER PAGE
   ============================================================ */
.career-page .page-header {
  background: url(../images/career/career-banner.webp) no-repeat center center/cover;
}
@media screen and (max-width: 991px) {
  .career-page .page-header {
    background-size: auto;
  }
}
.career-page .container {
  padding: 60px 0px;
}
@media screen and (min-width: 768px) {
  .career-page .career-posts {
    padding-inline: 15px;
  }
}
.career-page .career-posts .post-separate {
  margin-bottom: 2em;
  position: relative;
}
.career-page .career-posts .post-separate:last-child {
  margin-bottom: 0em;
}
.career-page .career-posts .post-separate .section-heading {
  margin-bottom: 0.2em;
}
.career-page .career-posts .post-separate .section-heading h2 {
  font-size: 26px;
  color: var(--blue-background-color);
  font-weight: 600;
}
.career-page .career-posts .post-separate .section-heading p {
  color: var(--blue-background-color);
  padding-top: 0.5em;
  font-weight: 500;
}
.career-page .career-posts .post-separate .career-center-image {
  position: relative;
}
.career-page .career-posts .post-separate .career-center-image img {
  position: absolute;
  transform: translate(38.3em, -15.5em);
}
.career-page .career-posts .post-separate .career-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media screen and (max-width: 991px) {
  .career-page .career-posts .post-separate .career-details {
    display: block;
  }
}
.career-page .career-posts .post-separate .career-details h5 {
  font-size: 18px;
  color: var(--blue-background-color);
  font-weight: 600;
  margin-bottom: 0.6em;
}
@media screen and (min-width: 991px) and (max-width: 1300px) {
  .career-page .career-posts .post-separate .career-details h5 {
    font-size: 17px;
  }
}
.career-page .career-posts .post-separate .career-details .career-post-card {
  border: 1px solid var(--green-background-color);
  padding: 0.8em 1em;
  border-radius: 0.5em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8em;
  gap: 0.5em;
}
@media screen and (max-width: 460px) {
  .career-page .career-posts .post-separate .career-details .career-post-card {
    flex-wrap: wrap;
    display: block;
    gap: 0.8em;
  }
}
.career-page .career-posts .post-separate .career-details .career-post-card h5 {
  font-weight: 400;
}
.career-page .career-posts .post-separate .career-details .career-post-card h5 strong {
  font-weight: 700;
}
.career-page .career-posts .post-separate .career-details .career-post-card p {
  padding-top: 0em;
  margin-bottom: 0px;
}
.career-page .career-posts .post-separate .career-details .career-post-card .career-apply-btn .btn {
  color: var(--font-color);
  font-weight: 500;
  min-width: 100px;
}
.career-page .career-posts .post-separate .career-details .career-post-card .career-apply-btn .btn:hover {
  color: var(--white-color);
}
@media screen and (max-width: 460px) {
  .career-page .career-posts .post-separate .career-details .career-post-card .career-apply-btn {
    margin-top: 10px;
  }
}
.career-page .career-posts .post-separate .career-details .career-post-card:hover {
  background: var(--light-green-bg-color);
}
.career-page .career-posts .post-separate .career-details p {
  color: var(--blue-background-color);
  padding-top: 0.5em;
}
.career-page .career-posts .post-separate .career-details .text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  max-width: 400px;
}
.career-page .current-opening {
  background-color: var(--light-green-bg-color);
}
.career-page .current-opening .section-heading h2 {
  font-size: 18px;
  background: var(--green-heading-color);
  color: var(--font-color);
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5em 1em;
  border-radius: 0.3em;
  font-weight: 600;
}
.career-page .current-opening .section-heading p {
  color: var(--blue-background-color);
  padding-top: 0.5em;
  font-weight: 500;
}
.career-page .current-opening .section-heading p strong {
  font-family: "Outfit";
}
.career-page .current-opening .section-heading .post-share {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .career-page .current-opening .section-heading .post-share {
    flex-wrap: wrap;
    gap: 0.5em;
  }
}
.career-page .current-opening .section-heading .post-share p {
  margin-bottom: 0px;
  padding-top: 0px;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 0.8em;
}
.career-page .current-opening .career-details h5 {
  font-size: 16px;
  color: var(--font-color);
  font-weight: 600;
  margin-bottom: 0px;
  min-width: 160px;
}
.career-page .current-opening .career-details p {
  color: var(--blue-background-color);
  font-weight: 500;
  margin-bottom: 0px;
}
.career-page .current-opening .career-details .carrer-post-heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 767px) {
  .career-page .current-opening .career-details .carrer-post-heading {
    flex-wrap: wrap;
    gap: 0.5em;
  }
}
.career-page .current-opening-details .section-heading {
  margin-bottom: 1em;
}
.career-page .current-opening-details .section-heading h2 {
  color: var(--green-heading-color);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 1em;
}
.career-page .current-opening-details .section-heading p {
  color: var(--blue-background-color);
  font-weight: 500;
}
.career-page .current-opening-details .section-heading .qualification {
  margin-top: 2em;
}
.career-page .current-opening-details .section-heading .qualification .text-strong {
  font-weight: 600;
}
.career-page .current-opening-details .section-heading .qualification ul {
  list-style: none;
  padding-left: 0;
}
.career-page .current-opening-details .section-heading .qualification ul li {
  position: relative;
  color: var(--blue-background-color);
  font-weight: 500;
  padding-left: 16px;
  margin-bottom: 10px;
}
.career-page .current-opening-details .section-heading .qualification ul li::before {
  content: "";
  background-image: url(../images/li-arrow-right.png);
  filter: brightness(0);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px;
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  width: 10px;
  height: 10px;
}
@media screen and (min-width: 991px) {
  .career-page .current-opening-details .contact-form-box {
    padding-left: 2em;
  }
}
.career-page .current-opening-details .contact-form-box .inner {
  padding: 0px;
  position: sticky;
  top: 100px;
}
.career-page .current-opening-details .contact-form-box .inner .sec-heading {
  padding: 1em 1em 1em;
  margin-bottom: 0em;
  background: #052537;
  border-radius: 10px 10px 0px 0px;
}
.career-page .current-opening-details .contact-form-box .inner .sec-heading h2 {
  color: var(--white-color) !important;
  font-size: 24px;
  font-weight: 600;
}
.career-page .current-opening-details .contact-form-box .inner form {
  padding: 1.2em 1em 1.2em;
  background: var(--light-green-bg-color);
}
.career-page .current-opening-details .contact-form-box .inner form label {
  color: var(--font-color);
}
.career-page .current-opening-details .contact-form-box .inner form .linkedin-label {
  left: 20px;
}
.career-page .current-opening-details .contact-form-box .inner form .form-check-inline {
  padding-left: 3.2em;
}
@media screen and (max-width: 767px) {
  .career-page .current-opening-details .contact-form-box .inner form .form-check-inline {
    padding-left: 25px;
  }
}
.career-page .current-opening-details .contact-form-box .inner form .form-group .form-select {
  height: 46px;
}
.career-page .current-opening-details .contact-form-box .inner form .form-group .custom-file-upload {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}
.career-page .current-opening-details .contact-form-box .inner form .form-group .custom-file-label {
  flex: 1;
  padding: 11px 15px;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
}
.career-page .current-opening-details .contact-form-box .inner form .form-group .custom-file-label span {
  color: red;
  margin-left: 4px;
}
.career-page .current-opening-details .contact-form-box .inner form .form-group .custom-file-btn {
  background: #21b87c;
  color: #000;
  font-weight: 600;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  white-space: nowrap;
}
.career-page .current-opening-details .contact-form-box .inner form .form-group input[type=file] {
  display: none;
}
.career-page .current-opening-details .contact-form-box .inner form #dropZone {
  border: 2px dashed #21b87c;
  border-radius: 8px;
  padding: 4px;
  text-align: center;
  transition: background 0.3s ease;
}
.career-page .current-opening-details .contact-form-box .inner form #dropZone.dragover {
  background: rgba(33, 184, 124, 0.1);
  border-color: #21b87c;
}
@media screen and (max-width: 768px) {
  .career-page .container {
    padding: 30px 15px;
  }
  .career-page .post-separate .section-heading {
    margin-bottom: 0em !important;
  }
  .career-page .post-separate .career-center-image {
    display: none;
  }
}
@media screen and (min-width: 770px) {
  .career-page .page-header .container {
    transform: translate(0px, 40px);
  }
}

#career_form label.error,
#career_form .error {
  font-size: 12px;
  color: red;
}

#position_applied[readonly] {
  pointer-events: none;
  opacity: 0.8;
  background-color: rgba(249, 249, 249, 0.9098039216);
  color: #000000;
}

/* ============================================================
   SECTION 17: FACT SHEET PAGE
   ============================================================ */
.fact-sheet .page-header {
  background: url(../images/fact-sheet/banner.webp) no-repeat center center/cover;
}
.fact-sheet .page-header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(1, 16, 27, 0.6);
}
.fact-sheet .factSheet-section {
  background: rgba(31, 182, 128, 0.1490196078);
  padding: 50px 0;
}
.fact-sheet .factSheet-section h2 {
  font-family: Raleway;
  font-weight: 700;
  font-size: 28px;
  line-height: 52px;
  text-align: center;
  color: #000;
}
.fact-sheet .factSheet-section p {
  font-family: Raleway;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: center;
  color: #000;
}
.fact-sheet .bg-green img {
  max-width: 70%;
  margin: 0 auto;
  display: flex;
}

/* ============================================================
   SECTION 17: Medical Necessity PAGE
   ============================================================ */
.medical-necessity .page-header {
  background: url("../images/medical-necessity/banner.webp") no-repeat top center;
  background-size: cover;
  min-height: 800px;
}
.medical-necessity .page-header::before {
  background: rgba(5, 37, 55, 0.75);
}
.medical-necessity .page-header .breadcrumb .aboutus {
  font-weight: 700;
}
.medical-necessity .cutomized_mn_bg {
  background: url("../images/medical-necessity/cutomized_mn_bg.webp") no-repeat center center;
  background-size: cover;
  padding: 80px 0;
}
.medical-necessity .cutomized_mn_bg h2 {
  font-size: 2rem;
  line-height: 1.3;
}
.medical-necessity .cutomized_mn_bg p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.medical-necessity .cutomized_mn_bg p:last-child {
  margin-bottom: 0;
}
.medical-necessity .cutomized_mn_bg .cutomized_mn_right_img {
  max-width: 100%;
  height: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .medical-necessity .cutomized_mn_bg {
    padding: 60px 0;
  }
  .medical-necessity .cutomized_mn_bg h2 {
    font-size: 1.7rem;
  }
  .medical-necessity .cutomized_mn_bg .cutomized_mn_right_img {
    max-width: 80%;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .medical-necessity .cutomized_mn_bg {
    padding: 50px 0;
  }
  .medical-necessity .cutomized_mn_bg h2 {
    font-size: 1.5rem;
  }
  .medical-necessity .cutomized_mn_bg p {
    font-size: 14px;
  }
  .medical-necessity .cutomized_mn_bg .cutomized_mn_right_img {
    max-width: 70%;
    margin-top: 30px;
    display: none;
  }
}
.medical-necessity .highperformai_mn_bg {
  background: url("../images/medical-necessity/highperformai_mn_bg.webp") no-repeat center center;
  background-size: cover;
  padding: 80px 0;
}
.medical-necessity .highperformai_mn_bg h3 {
  font-size: 2rem;
  line-height: 1.5;
}
.medical-necessity .highperformai_mn_bg .mn-subtitle {
  max-width: 680px;
  margin: 0 auto;
  font-size: 15px;
  color: #555;
}
.medical-necessity .highperformai_mn_bg {
  /* Layout — position: relative so SVG overlay fills it */
}
.medical-necessity .highperformai_mn_bg .highperformai-layout {
  position: relative;
  overflow: visible;
}
.medical-necessity .highperformai_mn_bg {
  /* ── Diagonal connectors (SVG arrow + dot per corner) ── */
}
.medical-necessity .highperformai_mn_bg .mn-connector {
  /* Circle dot: centered on arrowhead point (x=0, y≈5.77 in SVG space) */
}
.medical-necessity .highperformai_mn_bg .mn-connector .mn-conn-dot,
.medical-necessity .highperformai_mn_bg .mn-connector .mn-conn-line {
  position: absolute;
}
.medical-necessity .highperformai_mn_bg .mn-connector {
  /* TL — normal: arrowhead points left, diagonal goes down-right to center image */
}
.medical-necessity .highperformai_mn_bg .mn-connector--tl .mn-conn-dot {
  top: 120px;
  left: -40px;
}
.medical-necessity .highperformai_mn_bg .mn-connector--tl .mn-conn-line {
  top: 45px;
  left: -285px;
}
.medical-necessity .highperformai_mn_bg .mn-connector {
  /* BL — flip vertically: arrowhead points left at bottom card */
}
.medical-necessity .highperformai_mn_bg .mn-connector--bl .mn-conn-dot {
  bottom: 150px;
  left: -40px;
}
.medical-necessity .highperformai_mn_bg .mn-connector--bl .mn-conn-line {
  bottom: 75px;
  left: -285px;
  transform: scaleY(-1);
  transform-origin: center;
}
.medical-necessity .highperformai_mn_bg .mn-connector {
  /* TR — flip horizontally: arrowhead points right at top-right card */
}
.medical-necessity .highperformai_mn_bg .mn-connector--tr .mn-conn-dot {
  top: 120px;
  right: -40px;
}
.medical-necessity .highperformai_mn_bg .mn-connector--tr .mn-conn-line {
  top: 45px;
  right: -285px;
  transform: scaleX(-1);
  transform-origin: center;
}
.medical-necessity .highperformai_mn_bg .mn-connector {
  /* BR — flip both: arrowhead points right at bottom-right card */
}
.medical-necessity .highperformai_mn_bg .mn-connector--br .mn-conn-dot {
  bottom: 150px;
  right: -40px;
}
.medical-necessity .highperformai_mn_bg .mn-connector--br .mn-conn-line {
  bottom: 75px;
  right: -285px;
  transform: scaleX(-1) scaleY(-1);
  transform-origin: center;
}
.medical-necessity .highperformai_mn_bg {
  /* Feature card shared */
}
.medical-necessity .highperformai_mn_bg .mn-card {
  position: relative;
  padding: 24px 0;
  margin-bottom: 20px;
  max-width: 250px;
}
.medical-necessity .highperformai_mn_bg .mn-card__icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #F3F0F7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.medical-necessity .highperformai_mn_bg .mn-card__icon {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.medical-necessity .highperformai_mn_bg .mn-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #052537;
  margin-bottom: 8px;
}
.medical-necessity .highperformai_mn_bg .mn-card__text {
  font-size: 13px;
  color: #555;
  line-height: 1.75;
  margin: 0;
}
.medical-necessity .highperformai_mn_bg {
  /* Left column — left-aligned */
}
.medical-necessity .highperformai_mn_bg .mn-col--left .mn-card {
  text-align: left;
}
.medical-necessity .highperformai_mn_bg {
  /* Right column — right-aligned */
}
.medical-necessity .highperformai_mn_bg .mn-col--right .mn-card {
  text-align: right;
  margin-left: auto;
}
.medical-necessity .highperformai_mn_bg .mn-col--right .mn-card .mn-card__icon-wrap {
  margin-left: auto;
}
.medical-necessity .highperformai_mn_bg {
  /* ── Center image ── */
}
.medical-necessity .highperformai_mn_bg .mn-center-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}
.medical-necessity .highperformai_mn_bg .mn-center-wrap .highperformai_mn_center_img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
.medical-necessity .highperformai_mn_bg {
  /* Pulsing rings */
}
.medical-necessity .highperformai_mn_bg .mn-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(0, 196, 140, 0.5);
  z-index: 1;
}
.medical-necessity .highperformai_mn_bg .mn-ring--1 {
  width: 210px;
  height: 210px;
  animation: mn-ring-pulse 2.2s ease-in-out infinite;
}
.medical-necessity .highperformai_mn_bg .mn-ring--2 {
  width: 270px;
  height: 270px;
  border-color: rgba(0, 196, 140, 0.25);
  animation: mn-ring-pulse 2.2s ease-in-out 1.1s infinite;
}
.medical-necessity .highperformai_mn_bg {
  /* ── Responsive ── */
}
@media only screen and (max-width: 767px) {
  .medical-necessity .highperformai_mn_bg {
    padding: 50px 0;
  }
  .medical-necessity .highperformai_mn_bg h2 {
    font-size: 1.5rem;
  }
  .medical-necessity .highperformai_mn_bg .mn-card {
    max-width: 100%;
    padding: 0px;
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
  }
  .medical-necessity .highperformai_mn_bg .mn-card .mn-card__icon-wrap {
    order: -1;
  }
  .medical-necessity .highperformai_mn_bg .mn-card p {
    text-align: center;
  }
  .medical-necessity .highperformai_mn_bg .mn-col--center {
    display: none;
  }
  .medical-necessity .highperformai_mn_bg .mn-col--right .mn-card {
    text-align: left;
  }
  .medical-necessity .highperformai_mn_bg .mn-col--right .mn-card .mn-card__icon-wrap {
    margin-left: 0;
  }
  .medical-necessity .highperformai_mn_bg .mn-connector {
    display: none;
  }
  .medical-necessity .highperformai_mn_bg .mn-ring--1 {
    width: 150px;
    height: 150px;
  }
  .medical-necessity .highperformai_mn_bg .mn-ring--2 {
    width: 200px;
    height: 200px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .medical-necessity .highperformai_mn_bg {
    padding: 60px 0;
  }
  .medical-necessity .highperformai_mn_bg .mn-connector {
    display: none;
  }
  .medical-necessity .highperformai_mn_bg .mn-ring--1 {
    width: 180px;
    height: 180px;
  }
  .medical-necessity .highperformai_mn_bg .mn-ring--2 {
    width: 230px;
    height: 230px;
  }
}
@media only screen and (min-width: 991px) and (max-width: 1199px) {
  .medical-necessity .highperformai_mn_bg .mn-connector {
    display: none;
  }
}
.medical-necessity {
  /* ── Build section ── */
}
.medical-necessity .build_mn_bg {
  background: rgba(18, 67, 95, 0.1);
  padding: 80px 0;
}
.medical-necessity .build_mn_bg .build-mn-heading {
  font-size: 2rem;
  line-height: 1.4;
}
.medical-necessity .build_mn_bg .build-mn-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.medical-necessity .build_mn_bg .build-mn-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
}
.medical-necessity .build_mn_bg .build-mn-item .build-mn-item__body {
  flex: 1;
}
.medical-necessity .build_mn_bg .build-mn-item .build-mn-item__body .build-mn-item__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.medical-necessity .build_mn_bg .build-mn-item .build-mn-item__body .build-mn-item__text {
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
}
.medical-necessity .build_mn_bg .build-mn-item .build-mn-item__icon img {
  display: block;
}
.medical-necessity .build_mn_bg .build-mn-right-img {
  max-width: 100%;
  height: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .medical-necessity .build_mn_bg {
    padding: 60px 0;
  }
  .medical-necessity .build_mn_bg .build-mn-heading {
    font-size: 1.7rem;
  }
  .medical-necessity .build_mn_bg .build-mn-right-img {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .medical-necessity .build_mn_bg {
    padding: 50px 0;
  }
  .medical-necessity .build_mn_bg .build-mn-heading {
    font-size: 1.5rem;
  }
  .medical-necessity .build_mn_bg .build-mn-items {
    gap: 24px;
  }
  .medical-necessity .build_mn_bg .build-mn-item__num {
    font-size: 1.8rem;
  }
  .medical-necessity .build_mn_bg .build-mn-right-img {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .medical-necessity .build_mn_bg .build-mn-right-img {
    max-width: 100%;
  }
}
.medical-necessity {
  /* ── Benefits section ── */
}
.medical-necessity .benefits_mm_bg {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
.medical-necessity .benefits_mm_bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 500px;
  background: url("../images/medical-necessity/benefits_mm_bg.webp") no-repeat left bottom;
  background-size: auto 500px;
  pointer-events: none;
  z-index: 0;
}
.medical-necessity .benefits_mm_bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 500px;
  background: url("../images/medical-necessity/benefits_mm_bg.webp") no-repeat right top;
  background-size: auto 500px;
  pointer-events: none;
  z-index: 0;
  transform: scaleY(-1);
}
.medical-necessity .benefits_mm_bg .container {
  position: relative;
  z-index: 1;
}
.medical-necessity .benefits_mm_bg .benefits-mm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 35px;
  position: relative;
}
.medical-necessity .benefits_mm_bg .benefits-mm-plus {
  position: absolute;
  width: 73px;
  height: 73px;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}
.medical-necessity .benefits_mm_bg .benefits-mm-plus::before, .medical-necessity .benefits_mm_bg .benefits-mm-plus::after {
  content: "";
  position: absolute;
  background: #1FB680;
}
.medical-necessity .benefits_mm_bg .benefits-mm-plus::before {
  width: 1px;
  height: 73px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.medical-necessity .benefits_mm_bg .benefits-mm-plus::after {
  width: 73px;
  height: 1px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.medical-necessity .benefits_mm_bg .benefits-mm-plus--1 {
  left: 33.3333333333%;
  top: 50%;
}
.medical-necessity .benefits_mm_bg .benefits-mm-plus--2 {
  left: 66.6666666667%;
  top: 50%;
}
.medical-necessity .benefits_mm_bg .benefits-mm-title {
  display: flex;
  align-items: center;
  padding: 32px 36px 32px 0;
}
.medical-necessity .benefits_mm_bg .benefits-mm-title h3 {
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 0;
}
.medical-necessity .benefits_mm_bg .benefits-mm-card {
  border: 2px dashed rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.25);
}
.medical-necessity .benefits_mm_bg .benefits-mm-card .benefits-mm-card__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.medical-necessity .benefits_mm_bg .benefits-mm-card:hover {
  border-color: #1FB680;
}
.medical-necessity .benefits_mm_bg .benefits-mm-card:hover .benefits-mm-stat, .medical-necessity .benefits_mm_bg .benefits-mm-card:hover p {
  color: #1FB680;
}
.medical-necessity .benefits_mm_bg .benefits-mm-stat {
  font-size: 2.4rem;
  font-weight: 700;
  color: #052537;
  margin: 0;
  line-height: 1.1;
  font-family: var(--jeeno-ff-outfit);
}
.medical-necessity .benefits_mm_bg .benefits-mm-card__label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  max-width: 160px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .medical-necessity .benefits_mm_bg .benefits-mm-title h2 {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .medical-necessity .benefits_mm_bg {
    padding: 60px 0;
  }
  .medical-necessity .benefits_mm_bg .benefits-mm-title h2 {
    font-size: 1.3rem;
  }
  .medical-necessity .benefits_mm_bg .benefits-mm-stat {
    font-size: 2rem;
  }
  .medical-necessity .benefits_mm_bg .benefits-mm-plus {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .medical-necessity .benefits_mm_bg {
    padding: 50px 0;
  }
  .medical-necessity .benefits_mm_bg .benefits-mm-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .medical-necessity .benefits_mm_bg .benefits-mm-title {
    padding: 0 0 8px;
  }
  .medical-necessity .benefits_mm_bg .benefits-mm-title h2 {
    font-size: 1.3rem;
    text-align: left;
  }
  .medical-necessity .benefits_mm_bg .benefits-mm-card {
    padding: 24px 20px;
  }
  .medical-necessity .benefits_mm_bg .benefits-mm-stat {
    font-size: 2rem;
  }
  .medical-necessity .benefits_mm_bg .benefits-mm-plus {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .medical-necessity .benefits_mm_bg {
    padding: 40px 0;
  }
  .medical-necessity .benefits_mm_bg .benefits-mm-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .medical-necessity .benefits_mm_bg .benefits-mm-title {
    padding: 0 0 8px;
  }
  .medical-necessity .benefits_mm_bg .benefits-mm-title h2 {
    font-size: 1.1rem;
    text-align: left;
  }
  .medical-necessity .benefits_mm_bg .benefits-mm-card {
    padding: 16px 12px;
  }
  .medical-necessity .benefits_mm_bg .benefits-mm-stat {
    font-size: 1.8rem;
  }
  .medical-necessity .benefits_mm_bg .benefits-mm-plus {
    display: none;
  }
}
.medical-necessity {
  /* ── CTA + Contact form section ── */
}
.medical-necessity .secform_mn_bg {
  background: #12435F;
  padding: 80px 0;
}
.medical-necessity .secform_mn_bg .container {
  position: relative;
}
.medical-necessity .secform_mn_bg .container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: url("../images/medical-necessity/secform_mn_bg.webp") no-repeat left center;
  background-size: cover;
  pointer-events: none;
}
.medical-necessity .secform_mn_bg .secform-left .inner {
  max-width: 440px;
  margin: 0 auto;
}
.medical-necessity .secform_mn_bg .secform-left h4 {
  color: #fff;
  font-size: 3rem;
  line-height: 1.3;
}
.medical-necessity .secform_mn_bg .secform-left p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.75;
}
.medical-necessity .secform_mn_bg .secform-box {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 36px 32px;
  max-width: 580px;
  margin: 0 auto;
}
.medical-necessity .secform_mn_bg .secform-box .form-floating > .form-control {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  color: #1a1a1a;
  height: 58px;
  font-size: 15px;
  font-weight: 400;
  padding: 1rem 1rem;
  font-family: var(--jeeno-ff-outfit);
  line-height: 1.25;
}
.medical-necessity .secform_mn_bg .secform-box .form-floating > .form-control::-moz-placeholder {
  color: transparent;
}
.medical-necessity .secform_mn_bg .secform-box .form-floating > .form-control::placeholder {
  color: transparent;
}
.medical-necessity .secform_mn_bg .secform-box .form-floating > .form-control:focus {
  border-color: #1FB680;
  box-shadow: none;
  outline: none;
  padding-top: 1.625rem;
  padding-bottom: 0.375rem;
}
.medical-necessity .secform_mn_bg .secform-box .form-floating > .form-control:not(:-moz-placeholder) {
  padding-top: 1.25rem;
  padding-bottom: 0.375rem;
}
.medical-necessity .secform_mn_bg .secform-box .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.25rem;
  padding-bottom: 0.375rem;
}
.medical-necessity .secform_mn_bg .secform-box .form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 1rem 1rem;
  font-size: 14px;
  font-weight: 600;
  color: #6c757d;
  pointer-events: none;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  white-space: nowrap;
  overflow: hidden;
  border: 1px solid transparent;
  margin-bottom: 0;
  z-index: 2;
}
.medical-necessity .secform_mn_bg .secform-box .form-floating > .form-control:not(:-moz-placeholder) ~ label {
  opacity: 0.75;
  transform: scale(0.72) translateY(-0.6rem) translateX(0.1rem);
  color: #000;
  font-weight: 500;
}
.medical-necessity .secform_mn_bg .secform-box .form-floating > .form-control:focus ~ label,
.medical-necessity .secform_mn_bg .secform-box .form-floating > .form-control:not(:placeholder-shown) ~ label {
  opacity: 0.75;
  transform: scale(0.72) translateY(-0.6rem) translateX(0.1rem);
  color: #000;
  font-weight: 500;
}
.medical-necessity .secform_mn_bg .secform-box .form-floating > textarea.form-control {
  height: 130px;
  padding-top: 1rem;
  resize: none;
}
.medical-necessity .secform_mn_bg .secform-box .form-floating > textarea.form-control:not(:-moz-placeholder) {
  padding-top: 1.5rem;
}
.medical-necessity .secform_mn_bg .secform-box .form-floating > textarea.form-control:focus, .medical-necessity .secform_mn_bg .secform-box .form-floating > textarea.form-control:not(:placeholder-shown) {
  padding-top: 1.5rem;
}
.medical-necessity .secform_mn_bg .secform-box .form-floating > textarea.form-control ~ label {
  top: 0;
  height: auto;
}
.medical-necessity .secform_mn_bg .secform-box .form-control {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  color: #000;
  padding: 12px 16px;
  font-size: 14px;
}
.medical-necessity .secform_mn_bg .secform-box .form-control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.35);
}
.medical-necessity .secform_mn_bg .secform-box .form-control::placeholder {
  color: rgba(0, 0, 0, 0.35);
}
.medical-necessity .secform_mn_bg .secform-box .form-control:focus {
  border-color: #1FB680;
  box-shadow: none;
  color: #000;
  outline: none;
}
.medical-necessity .secform_mn_bg .secform-box textarea.form-control {
  resize: none;
  min-height: 100px;
}
.medical-necessity .secform_mn_bg .secform-box .captcha-refresh {
  width: 24px;
  height: 24px;
  cursor: pointer;
  opacity: 0.8;
}
.medical-necessity .secform_mn_bg .secform-box .captcha-refresh:hover {
  opacity: 1;
}
.medical-necessity .secform_mn_bg .secform-box .btn-submit {
  background: #1FB680;
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: background 0.2s;
}
.medical-necessity .secform_mn_bg .secform-box .btn-submit:hover {
  background: #18a36e;
}
.medical-necessity .secform_mn_bg .secform-box .error {
  color: #ff7b7b;
  font-size: 12px;
  margin-top: 4px;
}
@media only screen and (max-width: 1024px) {
  .medical-necessity .secform_mn_bg .secform-left h2 {
    font-size: 2rem;
  }
  .medical-necessity .secform_mn_bg .secform-left .inner {
    max-width: 100%;
  }
  .medical-necessity .secform_mn_bg .container::before {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .medical-necessity .secform_mn_bg {
    padding: 50px 0;
  }
  .medical-necessity .secform_mn_bg .secform-left {
    margin-bottom: 36px;
  }
  .medical-necessity .secform_mn_bg .secform-box {
    padding: 24px 20px;
  }
  .medical-necessity .secform_mn_bg .secform-left h2 {
    font-size: 1.5rem;
  }
}
.medical-necessity {
  /* ── Why Choose section ── */
}
.medical-necessity .whoose_sec_bg {
  background: #fff;
  padding: 80px 0;
}
.medical-necessity .whoose_sec_bg .whoose-sec-heading {
  font-size: 2rem;
  line-height: 1.4;
  color: #052537;
  margin-bottom: 10px;
}
.medical-necessity .whoose_sec_bg .whoose-sec-sub {
  font-size: 15px;
  color: #666;
  margin: 0;
}
.medical-necessity .whoose_sec_bg .whoose-timeline {
  position: relative;
  margin-top: 16px;
}
.medical-necessity .whoose_sec_bg .whoose-timeline__track {
  position: absolute;
  top: 154px;
  left: 10%;
  right: 10%;
  height: 0;
  border-top: 2px dashed #c0d8e4;
  z-index: 0;
}
.medical-necessity .whoose_sec_bg .whoose-timeline__items {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.medical-necessity .whoose_sec_bg .whoose-timeline__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
  position: relative;
  z-index: 1;
}
.medical-necessity .whoose_sec_bg .whoose-timeline__item:nth-child(2n) .whoose-item__circle::before {
  top: auto;
  bottom: 100%;
}
.medical-necessity .whoose_sec_bg .whoose-item__top {
  order: 1;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 0;
}
.medical-necessity .whoose_sec_bg .whoose-item__circle {
  order: 2;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #1FB680;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin: 20px 0;
}
.medical-necessity .whoose_sec_bg .whoose-item__circle::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5px;
  height: 20px;
  background: #1FB680;
  z-index: 0;
  top: 100%;
  bottom: auto;
}
.medical-necessity .whoose_sec_bg .whoose-item__circle img {
  width: 44px;
  height: 44px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.medical-necessity .whoose_sec_bg .whoose-item__value {
  order: 3;
  font-size: 1.35rem;
  font-weight: 700;
  font-family: var(--jeeno-ff-outfit);
  line-height: 1.2;
  min-height: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0;
}
.medical-necessity .whoose_sec_bg .whoose-item__label {
  font-size: 13px;
  color: #666;
  line-height: 1.55;
  margin: 0;
  max-width: 140px;
}
.medical-necessity .whoose_sec_bg .whoose-timeline__item:nth-child(even) .whoose-item__value {
  order: 1;
  min-height: 90px;
  align-items: flex-end;
  padding-bottom: 0;
  margin: 0;
}
.medical-necessity .whoose_sec_bg .whoose-timeline__item:nth-child(even) .whoose-item__circle {
  order: 2;
}
.medical-necessity .whoose_sec_bg .whoose-timeline__item:nth-child(even) .whoose-item__top {
  order: 3;
  min-height: 50px;
  justify-content: flex-start;
  padding-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .medical-necessity .whoose_sec_bg {
    padding: 60px 0;
  }
  .medical-necessity .whoose_sec_bg .whoose-sec-heading {
    font-size: 1.7rem;
  }
  .medical-necessity .whoose_sec_bg .whoose-item__circle {
    width: 70px;
    height: 70px;
  }
  .medical-necessity .whoose_sec_bg .whoose-item__circle img {
    width: 34px;
    height: 34px;
  }
  .medical-necessity .whoose_sec_bg .whoose-item__value {
    font-size: 1.1rem;
  }
  .medical-necessity .whoose_sec_bg .whoose-item__label {
    font-size: 12px;
  }
  .medical-necessity .whoose_sec_bg .whoose-timeline__track {
    top: 145px;
  }
}
@media only screen and (max-width: 767px) {
  .medical-necessity .whoose_sec_bg {
    padding: 50px 0;
  }
  .medical-necessity .whoose_sec_bg .whoose-sec-heading {
    font-size: 1.5rem;
  }
  .medical-necessity .whoose_sec_bg .whoose-timeline__track {
    display: none;
  }
  .medical-necessity .whoose_sec_bg .whoose-timeline__items {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
  .medical-necessity .whoose_sec_bg .whoose-timeline__item {
    flex: 0 0 45%;
  }
  .medical-necessity .whoose_sec_bg .whoose-timeline__item:nth-child(even) .whoose-item__circle {
    order: -1;
  }
  .medical-necessity .whoose_sec_bg .whoose-timeline__item:nth-child(even) .whoose-item__value {
    order: 0;
    min-height: auto;
    align-items: flex-start;
    padding-bottom: 0;
  }
  .medical-necessity .whoose_sec_bg .whoose-timeline__item:nth-child(even) .whoose-item__top {
    order: 1;
    min-height: 0;
    justify-content: flex-end;
    padding-bottom: 0;
  }
  .medical-necessity .whoose_sec_bg .whoose-item__top {
    min-height: 0;
  }
  .medical-necessity .whoose_sec_bg .whoose-item__circle {
    margin: 12px 0;
    order: -1;
  }
  .medical-necessity .whoose_sec_bg .whoose-item__circle::before,
  .medical-necessity .whoose_sec_bg .whoose-item__circle::after {
    display: none;
  }
  .medical-necessity .whoose_sec_bg .whoose-item__value {
    min-height: auto;
    order: 0;
  }
  .medical-necessity .whoose_sec_bg .whoose-item__top .whoose-item__label {
    max-width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .medical-necessity .whoose_sec_bg .whoose-timeline__item {
    flex: 0 0 45%;
  }
}
.medical-necessity {
  /* FAQ Section */
}
.medical-necessity .faq_mn_bg {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  background-color: #fff;
}
.medical-necessity .faq_mn_bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 500px;
  background: url("../images/medical-necessity/benefits_mm_bg.webp") no-repeat left bottom;
  background-size: auto 500px;
  pointer-events: none;
  z-index: 0;
}
.medical-necessity .faq_mn_bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 500px;
  background: url("../images/medical-necessity/benefits_mm_bg.webp") no-repeat right top;
  background-size: auto 500px;
  pointer-events: none;
  z-index: 0;
  transform: scaleY(-1);
}
.medical-necessity .faq_mn_bg .container {
  position: relative;
  z-index: 1;
}
.medical-necessity .faq_mn_bg .faq-mn-heading {
  font-size: 32px;
  line-height: 1.5;
}
.medical-necessity .faq_mn_bg .faq-mn-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.medical-necessity .faq_mn_bg .faq-mn-item {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
}
.medical-necessity .faq_mn_bg .faq-mn-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  border-radius: 5px;
  cursor: pointer;
  margin: 0;
  transition: background 0.2s;
}
.medical-necessity .faq_mn_bg .faq-mn-question:hover {
  background: #f5f9f7;
}
.medical-necessity .faq_mn_bg .faq-mn-question[aria-expanded=true] {
  background: #fff;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
}
.medical-necessity .faq_mn_bg .faq-mn-question[aria-expanded=true] .faq-mn-icon {
  transform: rotate(90deg);
}
.medical-necessity .faq_mn_bg .faq-mn-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.medical-necessity .faq_mn_bg .faq-mn-answer-inner {
  padding: 20px;
  background-color: rgba(31, 182, 128, 0.1);
}
.medical-necessity .faq_mn_bg .faq-mn-answer-inner p {
  font-size: 14px;
  color: #000;
  margin-bottom: 8px;
}
.medical-necessity .faq_mn_bg .faq-mn-answer-inner ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.medical-necessity .faq_mn_bg .faq-mn-answer-inner ul li {
  font-size: 14px;
  color: #000;
  padding: 3px 0 3px 24px;
  position: relative;
}
.medical-necessity .faq_mn_bg .faq-mn-answer-inner ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background: url("../images/medical-necessity/bullet_icon.svg") no-repeat center center;
  background-size: contain;
}
.medical-necessity .faq_mn_bg .faq-mn-right-img {
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 991px) {
  .medical-necessity .faq_mn_bg {
    padding: 50px 0;
  }
  .medical-necessity .faq_mn_bg .faq-mn-right-img {
    display: none;
  }
  .medical-necessity .faq_mn_bg .faq-mn-heading {
    font-size: 22px;
  }
  .medical-necessity .faq_mn_bg .col-lg-5 {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .medical-necessity .faq_mn_bg {
    padding: 40px 0;
  }
  .medical-necessity .faq_mn_bg .faq-mn-heading {
    font-size: 20px;
  }
}
.medical-necessity {
  /* CTA Banner Section */
}
.medical-necessity .cta_mn_bg {
  background: url("../images/medical-necessity/cta_bg.webp") no-repeat center center;
  background-size: cover;
  padding: 60px 0;
}
.medical-necessity .cta_mn_bg .col-offset-4 {
  margin-left: 33.3333%;
}
.medical-necessity .cta_mn_bg h4 {
  color: #fff;
  font-size: 28px;
  line-height: 1.3;
}
.medical-necessity .cta_mn_bg p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin-bottom: 0;
}
.medical-necessity .cta_mn_bg .cta-mn-btn {
  display: inline-block;
  background-color: #1FB680;
  color: #fff;
  padding: 10px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.medical-necessity .cta_mn_bg .cta-mn-btn:hover {
  background-color: #18a06e;
}
@media only screen and (max-width: 991px) {
  .medical-necessity .cta_mn_bg {
    padding: 40px 0;
  }
  .medical-necessity .cta_mn_bg .col-offset-4 {
    margin-left: 0;
  }
  .medical-necessity .cta_mn_bg h2 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 575px) {
  .medical-necessity .cta_mn_bg {
    padding: 30px 0;
  }
  .medical-necessity .cta_mn_bg h2 {
    font-size: 20px;
  }
}

/* Blinking dot on arrows */
@keyframes mn-dot-blink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.2;
    transform: scale(0.55);
  }
}
/* Pulsing rings around center image */
@keyframes mn-ring-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
}/*# sourceMappingURL=new_style.css.map */