@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap");
@import url("variables.css");

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

:root {
  /* All color variables are defined in variables.css */
  /* Legacy variable mappings for backwards compatibility */
  --theme_font: var(--font-body);
  --heading_font: var(--font-heading);
  --mono_font: var(--font-mono);
  --transtn: 400ms all ease-in-out;

  /* Legacy color mappings - point to centralized variables */
  --white: rgba(255, 255, 255, 0.95);  /* Soft white from variables.css */
  --black: #2A2F32;                    /* Soft black from variables.css */
  --body: var(--text-primary);
  --primary_clr: var(--color-primary);
  --secondary_clr: var(--color-accent);          /* Maps to accent brown #7b4024 */
  --ttle_clr: var(--text-primary);
  --bg-color: var(--bg-default);
}

article,
aside,
canvas,
figure,
figcaption,
footer,
header,
nav,
section,
audio,
video,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol {
  margin: 0;
  padding: 0;
  border: 0;
}

a,
button,
input,
input[type="buttton"],
input[type="submit"],
select,
.btn,
textarea {
  -webkit-transition: var(--transtn);
  -o-transition: var(--transtn);
  transition: var(--transtn);
  text-decoration: none !important;
  font-style: normal;
}

button {
  border: none;
}

a:focus,
button:focus,
input:focus,
input[type="buttton"]:focus,
input[type="submit"]:focus,
select:focus,
.btn:focus,
textarea:focus,
.bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none !important;
}

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

a,
label,
span {
  display: inline-block;
  vertical-align: middle;
  vertical-align: 0;
  color: inherit;
}

*,
::after,
::before {
  box-sizing: border-box;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

figure {
  -webkit-transition: var(--transtn);
  -o-transition: var(--transtn);
  transition: var(--transtn);
  margin: 0;
  font-size: 0;
  line-height: 100%;
}

figure img {
  max-width: 100%;
}

ul,
ol {
  list-style: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading_font);
  letter-spacing: -0.01em;
}

h1 {
  color: var(--white);
  font-size: 60px;
  font-weight: 400;
  line-height: 70px;
  text-align: center;
  text-transform: capitalize;
}

h1 span {
  font-weight: 600;
}

h2 {
  font-size: 55px;
  font-weight: 600;
  line-height: 65px;
  text-align: center;
  text-transform: capitalize;
  color: var(--ttle_clr);
}

h2 span {
  color: var(--color-teal);
  font-weight: 400;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

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

html {
  overflow-x: hidden;
  background-color: var(--color-primary);
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  font-family: var(--theme_font);
  position: relative;
  font-weight: 400;
  color: var(--body);
}

.svg_container {
  display: none;
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
    .input-group-btn
  ) {
  width: 100%;
}

/* start mobile nav toggle buttom  ********/
.nav_togge_btn {
  background-color: transparent;
  padding: 0;
  position: relative;
  z-index: 99;
  border: none;
  cursor: pointer;
}

.line {
  fill: none;
  stroke: var(--color-teal);
  /* Replace with your color */
  stroke-width: 5;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 5;
}

.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 5;
}

.nav_togge_btn.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 5;
}

.nav_togge_btn.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 5;
}

.nav_togge_btn.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 5;
}

/* end mobile nav toggle buttom  ********/

/***** header start *************/
.hedr {
  width: 100%;
  position: fixed;
  top: 0;
  padding: 30px 0px;
  z-index: 1090;
  transition: var(--transtn);
}

.scrolled .hedr {
  width: 100%;
  position: fixed;
  background: var(--black);
  z-index: 1090;
  left: 0;
  top: 0;
  filter: drop-shadow(0px 15px 25px rgba(14, 77, 228, 0.15));
  padding: 15px 0;
}

.navbar_brand img {
  transition: var(--transtn);
}

.scrolled .hedr .navbar_brand img {
  max-width: 140px;
}

.hedr .navbar {
  padding: 0px;
}

.hedr .navmenumain .nav_menu {
  display: flex;
  transition: var(--transtn);
  align-items: center;
}

.hedr .navmenumain .nav_menu .nav_item + .nav_item {
  margin-left: 55px;
}

.hedr .navmenumain .nav_menu .nav_item .nav_link {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--white);
  position: relative;
  transform: var(--transtn);
}

.hedr .navmenumain .nav_menu .nav_item .nav_link::before {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin: 0 auto;
  border-radius: 25px;
  background: var(--color-teal);
  opacity: 0;
  transform: var(--transtn);
}

.hedr .navmenumain .nav_menu .nav_item .nav_link:hover::before,
.hedr .navmenumain .nav_menu .nav_item.active .nav_link::before {
  opacity: 1;
  transition: all 0.6s ease;
}

.hedr .navmenumain .nav_menu .nav_item .nav_link:hover,
.hedr .navmenumain .nav_menu .nav_item.active .nav_link {
  color: var(--color-teal);
}

.contactnav_link {
  font-size: 15px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
}

.navbar_brand {
  max-width: 230px;
}

/***** header end *************/

/* start global */

.primary_btn {
  height: 53px;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  text-transform: capitalize;
  position: relative;
  background: linear-gradient(135deg, #6F3A20 0%, var(--color-copper-dark) 100%);
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: var(--transtn);
  overflow: hidden;
  border-radius: 50px;
  padding: 20px 35px;
}

.primary_btn span {
  position: relative;
  z-index: 2;
}

.primary_btn:after {
  width: 105px;
  height: 105px;
  filter: blur(30px);
  background: var(--color-copper-light);
  border-radius: 100%;
  left: -18px;
  bottom: 6px;
  position: absolute;
  content: "";
}

.primary_btn::before {
  width: 50%;
  height: 42px;
  filter: blur(30px);
  background: rgba(217, 156, 116, 0.7);
  border-radius: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: -15px;
  position: absolute;
  content: "";
}

.primary_btn:hover:after,
.primary_btn:hover::before {
  opacity: 0;
}

.primary_btn:hover {
  color: var(--secondary_clr);
  background-color: var(--white);
  border: 1px solid var(--secondary_clr);
}

.secondary_btn {
  height: 53px;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  text-transform: capitalize;
  position: relative;
  background-color: transparent;
  border: 1px solid var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: var(--transtn);
  overflow: hidden;
  border-radius: 50px;
  padding: 20px 35px;
}

.secondary_btn:hover {
  color: var(--secondary_clr);
  background-color: var(--white);
}

/* start bannearsect */
.bodystyl {
  overflow: hidden;
}

.bodystyl .hedr::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000ab;
  z-index: 1;
  backdrop-filter: blur(6px);
}

/* -------Pricing_Banner-Start------- */
.pricing_bnr {
  padding: 200px 0 100px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 100px;
  position: relative;
}

.pricing_bnr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.pricing_bnr .bnt_text {
  position: relative;
  z-index: 2;
}

.pricing_bnr .bnt_text > p {
  color: rgb(255, 255, 255);
  font-size: 19px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
  text-transform: capitalize;
}

.price_chart {
  margin-top: 75px;
}

.pricing_bnr h1 {
  margin-bottom: 15px;
}

.price_chart_wrp {
  padding: 30px;
  padding-bottom: 75px;
  border-radius: 30px;
  backdrop-filter: blur(34px);
  background: rgba(0, 33, 34); /* Updated to primary dark blue */
  color: var(--white);
  height: 100%;
}

.pricing_chart_slider {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing_chart_slide {
  width: calc(33.333% - 20px);
  max-width: 350px;
  flex: 0 1 auto;
}

.price_chart_wrp h5 {
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 20px;
}

.price_chart_wrp h5 span {
  font-weight: 600;
}

.price_chart_wrp h3 {
  font-size: 48px;
  font-weight: 600;
  line-height: 55px;
  text-transform: capitalize;
}

.price_chart_wrp p {
  padding-block: 25px;
  margin-block: 25px;
  border-top: 1px solid #ffffff1a;
  border-bottom: 1px solid #ffffff1a;
  height: 127px;
}

.price_chart_wrp p span {
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.price_chart_wrp h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  text-transform: capitalize;
  height: 25px;
}

.price_chart_wrp ul {
  margin-top: 30px;
}

.price_chart_wrp ul li {
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  padding-left: 35px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.price_chart_wrp ul li + li {
  margin-top: 20px;
}

.price_chart_wrp ul li .list-text {
  flex: 1;
  min-width: 0;
}

.price_chart_wrp ul li > .lucide-icon,
.price_chart_wrp ul li > i[data-lucide] {
  position: absolute;
  top: 0;
  width: 24px;
  height: 24px;
  left: 0;
  background-color: var(--color-teal);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 4px;
}

.price_chart_wrp .much_more {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: underline !important;
  margin-top: 25px;
}

.price_chart_wrp .much_more:hover {
  color: var(--primary_clr);
}

.tooltip {
  --bs-tooltip-bg: var(--color-accent);
}

/* Tooltip icon consistent styling */
.tooltip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  cursor: pointer;
  vertical-align: middle;
  margin-left: 6px;
  flex-shrink: 0;
  position: relative;
  overflow: visible;
  z-index: 1;
}

.tooltip-icon i[data-lucide],
.tooltip-icon .lucide-icon,
.tooltip-icon svg.lucide {
  width: 18px !important;
  height: 18px !important;
  stroke-width: 2;
  color: var(--color-accent);
  transition: color 0.2s ease;
  display: block;
  flex-shrink: 0;
}

.tooltip-icon:hover i[data-lucide],
.tooltip-icon:hover .lucide-icon,
.tooltip-icon:hover svg.lucide {
  color: var(--color-accent-dark);
}

.price_chart_wrp ul li .tooltip-icon {
  margin-left: auto;
  margin-right: 0;
  flex-shrink: 0;
}

/* -------Pricing_Banner-End------- */

/* -------Features-Start------- */
.feature_sec {
  margin-bottom: 100px;
}

.feature_sec h2 {
  margin-bottom: 70px;
  position: relative;
  z-index: 5;
}

.feature_heading {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  position: sticky;
  top: 0px;
  z-index: 10;
  background: var(--white);
  width: 100%;
  margin-top: -83px;
  padding-top: 83px;
}

.top_heading {
  max-width: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.top_heading_con {
  width: calc(50% - 8px);
  border-top: 2px solid rgb(161, 161, 170);
  border-radius: 8px 8px 0px 0px;
  background: var(--white);
  text-align: center;
  padding: 20.5px 19px 10px;
}

.top_heading_con:last-child {
  border-top: 2px solid var(--color-accent);
}

.heading_price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.top_heading_con .primary_btn {
  width: 140px;
  height: 35px;
  font-size: 14px;
  line-height: 21px;
  padding: unset;
}

.heading_price h5 {
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
}

.heading_price span {
  color: var(--black);
  font-size: 38px;
  font-weight: 600;
  line-height: 35px;
  text-transform: capitalize;
}

.fe_heading {
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-primary-40) 52.146%,
    var(--color-primary-60) 100%
  );
  display: flex;
  flex-wrap: wrap;
  height: 75px;
  align-items: center;
  width: 100%;
  color: var(--white);
  position: sticky;
  border-radius: 0;
  top: 203px;
  scroll-margin-top: 170px;
  z-index: 10;
}

.fe_heading1 {
  border-radius: 8px 0px 0px 0px;
}

.fe_heading .primary_btn {
  height: 45px;
  font-size: 16px;
  line-height: 24px;
  margin-right: 30px;
}

.fe_heading h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
  margin-right: auto;
  padding-left: 12px;
}

.fe_heading p {
  width: calc(25% - 8px);
}

.fe_heading p:last-child {
  margin-left: 16px;
}

.fe_heading p span {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  text-align: center;
  max-width: 210px;
  margin: 0 auto;
  display: block;
}

.check_price {
  border-radius: 50%;
  width: 24px !important;
  height: 24px;
  background-color: var(--color-teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin: 0 auto;
  flex-shrink: 0;
}

.check_price svg.lucide-icon {
  width: 14px;
  height: 14px;
  stroke-width: 3;
  color: white;
}

.uncheck_price {
  border-radius: 50%;
  width: 24px !important;
  height: 24px;
  background-color: #e0e0e0;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin: 0 auto;
  flex-shrink: 0;
}

.uncheck_price svg.lucide-icon {
  width: 14px;
  height: 14px;
  stroke-width: 3;
  color: #666;
}

.feature_con > ul li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  color: var(--white);
  padding: 17px 0 17px 23px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.4);
  min-height: 91px;
  position: relative;
  z-index: 1;
}

.feature_con > ul li:nth-child(even) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  background: linear-gradient(
    90deg,
    rgba(0, 33, 34, 0.05),
    rgba(60, 97, 98, 0.05) 52.146%,
    rgba(75, 109, 110, 0.05) 100%
  );
}

/* .feature_con > ul li h4 {
  color: var(--black);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin-right: auto;
  max-width: 335px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
} */

.feature_con > ul li h4 {
  color: var(--black);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 49%;
  padding-right: 5%;
}

.feature_con > ul li h4 > span:first-child {
  flex: 1;
  min-width: 0;
}

.feature_con > ul li h4 .feature_tips {
  width: 18px;
  height: 18px;
  margin-left: auto;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

.feature_con > ul li p {
  width: calc(25% - 8px);
}

.feature_con > ul li p:last-child {
  /* margin-left: 16px; */
}

/* -------Features-End------- */

/* -------faq_sec start------- */

.faq_sec {
  padding-bottom: 260px;
  padding-top: 90px;
  background: linear-gradient(
    270deg,
    rgb(243, 243, 241),
    rgb(233, 231, 230) 100%
  );
}

.accordion-item:last-of-type {
  border-radius: 0;
}

.faq_wrap {
  display: flex;
  justify-content: center;
}

.faq_prt_one {
  width: 48%;
  margin-right: 32px;
}

.faq_prt_two {
  width: 48%;
  margin-top: -20px;
}

.faq_hdng {
  max-width: 443px;
  margin-right: auto;
  margin-bottom: 75px;
}

.faq_hdng h2 {
  text-align: left;
  margin-bottom: 30px;
}

.faq_hdng .secondary_btn {
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  min-width: 160px;
  background-color: transparent;
}

.faq_hdng .secondary_btn:hover {
  color: var(--white);
  border-color: var(--color-accent);
  background-color: var(--color-accent);
}

.cstm_accr.accordion {
  background: transparent;
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-bg: transparent;
}

.cstm_accr.accordion .accordion-button {
  padding: 20px 20px 20px 40px;
  color: var(--black);
  font-family: var(--theme_font);
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  text-transform: capitalize;
  min-height: 80px;
}

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

.cstm_accr.accordion .accordion-button:not(.collapsed)::before {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}

.cstm_accr.accordion .accordion-button:not(.collapsed) {
  color: var(--color-accent);
}

.cstm_accr.accordion .accordion-button::after {
  display: none;
}

.cstm_accr.accordion .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cstm_accr.accordion .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: unset;
}

.cstm_accr.accordion .accordion-body {
  padding: 0 40px 16px;
}

.cstm_accr.accordion .accordion-body ul li + li,
.cstm_accr.accordion .accordion-body p + p {
  margin-top: 15px;
}

.cstm_accr.accordion .accordion-body ul li span,
.cstm_accr.accordion .accordion-body p span {
  color: var(--black);
  font-weight: 500;
  display: inline;
}

/* faq_sec end */

/* -------Became Partner-Start------- */
.partner_sec {
  padding: 100px 0 160px;
  background: radial-gradient(
    59% 64% at 50% 36%,
    var(--color-primary),
    rgba(0, 33, 34, 0.85) 47.854%,
    var(--color-primary) 100%
  );
  text-align: center;
  color: var(--white);
}

.partner_sec h2,
.partner_sec h2 span {
  color: var(--white);
}

.partner_sec h2 {
  margin-bottom: 35px;
}

.partner_sec .container > .row > * {
  padding-right: 15px;
  padding-left: 15px;
}

.partner_wrp {
  border: 1px solid rgb(223, 223, 223);
  border-radius: 20px;
  padding: 50px 20px;
  height: 100%;
}

.partner_con {
  max-width: 472px;
  margin-inline: auto;
}

.partner_con h4 {
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.partner_con h6 {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.partner_con p,
.partner_con ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-transform: capitalize;
}

.partner_con ul li + li {
  margin-top: 5px;
}

.partner_con .primary_btn {
  font-size: 16px;
  line-height: 24px;
  min-width: 230px;
  margin-top: 25px;
  padding: 10px 23px;
}

/* -------Became Partner-End------- */

/* -------Before footer-Start------- */
.before_ftr_sec {
  padding: 0;
  background: transparent;
  position: relative;
  z-index: 20;
  margin-top: -200px;
  margin-bottom: -200px;
}

.before_ftr_wrp {
  padding: 60px 50px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.before_ftr_wrp::before {
  background: linear-gradient(
    135deg,
    rgba(0, 33, 34, 0.4) 0%,
    rgba(60, 97, 98, 0.3) 100%
  );
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 24px;
}

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

.before_ftr_wrp h2 span {
  color: var(--white);
  display: inline;
}

.before_ftr_wrp h2 {
  color: var(--white);
  font-size: 45px;
  line-height: 55px;
  text-align: left;
  max-width: 678px;
  margin-bottom: 40px;
}

.before_ftr_sec a + a {
  margin-left: 25px;
}

.before_ftr_sec .container {
  position: relative;
  z-index: 21;
}

/* -------Before footer-End------- */

/* -------Footer-Start------- */
footer {
  background: linear-gradient(
    180deg,
    var(--color-primary),
    rgba(0, 33, 34, 0.85) 50%,
    var(--color-primary) 100%
  );
  padding-top: 300px;
  color: var(--white);
}

.footer_top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
  padding-bottom: 20px;
}

.ftr_logo {
  max-width: 285px;
  width: 100%;
  margin-bottom: 45px;
}

.ftr_con p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-transform: capitalize;
  margin-bottom: 85px;
  margin-right: -26px;
}

.social_list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.social_list li + li {
  margin-left: 20px;
}

.social_list a {
  background: rgba(255, 255, 255, 0.1);
  width: 38px;
  height: 38px;
  border-radius: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: var(--transtn);
  font-size: 14px;
}

.social_list a:hover {
  background: var(--bg-color);
  color: var(--black);
}

.ftr_page_list li + li {
  margin-top: 32px;
}

.ftr_page_list a {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  position: relative;
}

.ftr_page_list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  background-color: var(--primary_clr);
  left: 0;
  right: 0;
  scale: 0;
  transition: var(--transtn);
}

.ftr_page_list li.active a::after,
.ftr_page_list a:hover::after {
  scale: 1;
}

.ftr_page_list li.active a,
.ftr_page_list a:hover {
  color: var(--primary_clr);
}

.footer_btm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 40px;
}

.footer_btm p,
.footer_btm a {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  text-transform: capitalize;
}

.footer_btm p {
  margin-right: auto;
}

.footer_btm a + a {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid var(--white);
}

.footer_top .row > *:nth-child(2) .ftr_page_list {
  max-width: 160px;
  margin-left: auto;
}

.footer_top .row > *:nth-child(3) .ftr_page_list {
  max-width: 205px;
  margin-left: auto;
}

.footer_top .row > *:nth-child(4) .ftr_page_list {
  max-width: 190px;
  margin-left: auto;
}

/* -------Footer-End------- */

/* home_bnnr start */
.home_bnnr {
  /* background: url("../images/home_bnnr_img.png") no-repeat; */
  background-size: 100% 100%;
  background-position: center;
  position: relative;
  padding: 0;
  overflow: hidden;
  padding-bottom: 49px;
}

.bnnr_txt_wrap {
  position: relative;
  text-align: center;
}

.bnnr_txt_wrap h1 {
  margin-bottom: 28px;
  font-size: 52px;
  font-weight: 450;
  line-height: 1.28;
}

.bnnr_txt_wrap p {
  color: var(--white);
  opacity: 0.85;
  font-size: 19px;
  line-height: 30px;
  text-align: center;
  text-transform: capitalize;
}

.bnnr_txt_wrap .primary_btn {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

.bnnr_txt_wrap .btn_wrap a {
  border: 1px solid transparent;
}

.sec_txt_con {
  position: relative;
  z-index: 5;
  max-width: 300px;
  margin: 0 auto;
  margin-top: 205px;
}

.sec_txt_con h2 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 45px;
}

.sec_txt_con h2 span {
  font-weight: 400;
  color: var(--white);
}

.sec_txt_con .circle {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background-color: var(--white);
  text-align: center;
  border-radius: 50%;
  font-size: 32px;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  z-index: -1;
  -webkit-animation: grow 1s ease-in-out infinite;
  animation: grow 1s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.1);
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.crcl_wrp {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.home_bnnr .bnnr_animate_img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.bnnr_txt_wrap {
  padding-top: 185px;
  position: relative;
  z-index: 5;
  max-width: 800px;
  margin: 0 auto;
}

.bnnr_slider {
  position: relative;
  z-index: 5;
  margin-top: 120px;
}

.bnnr_slider .slick-slide img {
  display: block;
  max-width: max-content;
}

.bnnr_animate_img img {
  height: 100%;
}

.circle:hover {
  cursor: pointer;
}

@-webkit-keyframes grow {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }

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

@keyframes grow {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }

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

/* home_bnnr end */

/* sving_sec start */
.sving_sec {
  padding: 100px 0;
  background: linear-gradient(
    270deg,
    rgb(243, 243, 241),
    rgb(233, 231, 230) 100%
  );
}

.svng_con h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

/* Accent text for "Hesa AI" in heading */
.svng_con h2 .accent-text {
  color: var(--color-accent); /* Copper accent - Secondary brand color */
  position: relative;
  display: inline-block;
}

/* Optional: subtle underline accent bar */
.svng_con h2 .accent-text::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%; /* Full width to cover "Hesa AI" text */
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.6;
}

.sving_lists_wrapper {
  display: flex;
  flex-direction: column;
  gap: 44px; /* Increased for better breathing room */
  max-width: 1100px;
  margin: 0 auto;
}

.sving_lists {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: stretch;
  margin: 0;
  padding: 0;
}

.sving_lists_top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.sving_lists_bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 780px; /* ~5-10% wider for visual balance */
  margin: 0 auto;
  width: 100%;
}

.sving_lists li {
  list-style: none;
  width: 100%;
}

.sving_list_wrp {
  background: #ffffff;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid rgba(12, 60, 62, 0.08);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  height: 100%;
  padding: 40px 32px;
  min-height: 280px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* 3-Tone Tile System: Primary Accent, Secondary Neutral, Lift */

/* 1️⃣ Primary (Accent Focus) - "Save $1000s" - Strongest value hook */
.sving_lists_top li:nth-child(1) .sving_list_wrp {
  background: linear-gradient(180deg, rgba(0, 198, 183, 0.05) 0%, #ffffff 100%); /* Subtle teal gradient */
  border: 1.5px solid rgba(0, 198, 183, 0.35); /* Teal border at moderate opacity */
  box-shadow: 0 6px 20px rgba(0, 198, 183, 0.12); /* Soft teal-tinted shadow */
}

/* 2️⃣ Lift (Highlight) - "Save 100s of Hours" - Pure white with stronger shadow */
.sving_lists_top li:nth-child(2) .sving_list_wrp {
  background: #ffffff;
  border: 1px solid #E6E8E8; /* Subtle gray border */
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10); /* Stronger shadow for lift effect */
}

/* 3️⃣ Secondary (Neutral Contrast) - "Accurate Automation" */
.sving_lists_top li:nth-child(3) .sving_list_wrp {
  background: #F7F9F9; /* Light gray for subtle break */
  border: 1px solid #E6E8E8;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

/* Bottom row tiles - Secondary Neutral treatment */
.sving_lists_bottom li:nth-child(1) .sving_list_wrp {
  background: #F4F6F7; /* Warm off-white for contrast */
  border: 1px solid #E6E8E8;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.sving_lists_bottom li:nth-child(2) .sving_list_wrp {
  background: #ffffff;
  border: 1px solid #E6E8E8;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

/* Enhanced hover shadow for lift tile */
.sving_lists_top li:nth-child(2) .sving_list_wrp:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15); /* Even stronger on hover */
}

/* Enhanced Hover Feedback: Gentle lift + Stronger shadow + Color shifts */
.sving_list_wrp:hover {
  transform: translateY(-2px); /* Gentle lift */
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15); /* 6px→12px blur, 15% opacity */
  border-color: #00C6B7; /* Shift border to accent teal */
}

/* Primary accent tile hover */
.sving_lists_top li:nth-child(1) .sving_list_wrp:hover {
  box-shadow: 0 12px 32px rgba(0, 198, 183, 0.22); /* Enhanced teal glow on hover */
  border-color: rgba(0, 198, 183, 0.65); /* Stronger teal border on hover */
  background: linear-gradient(180deg, rgba(0, 198, 183, 0.08) 0%, #ffffff 100%); /* Slightly stronger gradient */
}

.sving_list_wrp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary-light), var(--color-primary));
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-radius: 18px 18px 0 0;
}

.sving_list_wrp:hover::before {
  opacity: 0.6;
}

.sving_lists li .svng_img {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  max-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Global Lucide icon styling */
svg.lucide-icon,
.lucide {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Selective Accent Color System for Icons */
/* Default: Deep teal for most tiles */
.sving_lists li .svng_img svg.lucide-icon {
  width: 44px;
  height: 44px;
  stroke: #083C3B; /* Default deep teal */
  stroke-width: 1.75;
  fill: none;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Center tile "Save 100s of Hours" - Secondary neutral (slate/navy) as visual anchor */
.sving_lists_top li:nth-child(2) .svng_img svg.lucide-icon {
  stroke: #6E7C7B; /* Secondary neutral slate */
}

/* Primary accent tile - Brand teal */
.sving_lists_top li:nth-child(1) .svng_img svg.lucide-icon {
  stroke: #00C6B7; /* Brand accent teal */
}

/* Hover state - shift to bright accent teal */
.sving_list_wrp:hover .svng_img svg.lucide-icon {
  stroke: #00C6B7; /* Bright accent teal on hover */
  stroke-width: 2;
  transform: translateY(-2px);
}

/* Center tile hover - goes to brand teal */
.sving_lists_top li:nth-child(2) .sving_list_wrp:hover .svng_img svg.lucide-icon {
  stroke: #00C6B7;
}

/* Social icons in footer */
.social_list svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  transition: fill 0.3s ease;
}

.social_list a:hover svg {
  fill: var(--color-teal);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Contact page icon */
.contact_icon svg.lucide-icon {
  width: 32px;
  height: 32px;
  stroke: var(--color-teal);
}

/* Play button icons */
.circle svg.lucide-icon {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
  fill: #ffffff;
}

.sving_lists li h4 {
  font-size: 21px; /* 20-22px range for prominence */
  font-weight: 600; /* Base weight for bottom row */
  line-height: 1.3;
  color: #083C3B; /* Deep teal for titles */
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: -0.01em;
  transition: color 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Top row gets heavier weight for hierarchy */
.sving_lists_top li h4 {
  font-weight: 650; /* Heavier weight for top row prominence */
}

/* Hover: headline shifts to bright accent teal */
.sving_list_wrp:hover h4 {
  color: #00C6B7; /* Bright accent teal on hover */
}

.sving_lists li p {
  font-family: var(--theme_font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45; /* Increased for better readability and visual breathing room */
  color: #083C3B; /* Deep teal base */
  text-align: center;
  margin: 0 auto;
  opacity: 0.8; /* 80% opacity for softer body text */
  transition: opacity 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sving_list_wrp:hover p {
  opacity: 0.95; /* Nearly full visibility on hover */
}

.sving_lists_top li p {
  max-width: 280px;
}

.sving_lists_bottom li p {
  max-width: 320px;
}

/* sving_sec end */

/* Modern Features Section */
.modern-features-section {
  position: relative;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 33, 34, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(243, 163, 125, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #F7F5F2 0%, #FFFFFF 50%, #F7F5F2 100%);
  overflow: hidden;
  height: 500vh; /* Tall height for scrolling parallax */
}

/* Mobile Layout Override */
.modern-features-section.mobile-layout {
  height: auto;
  overflow: visible;
  padding: 60px 0;
}

.modern-features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%230C3C3E" fill-opacity="0.1"><circle cx="30" cy="30" r="1"/></g></svg>') repeat;
  opacity: 0.3;
  pointer-events: none;
}

.features-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 80px 0;
}

/* Mobile Layout Override */
.mobile-layout .features-wrapper {
  position: static;
  height: auto;
  padding: 0;
}

.features-header {
  position: relative;
  z-index: 2;
  margin-bottom: 48px;
}

.features-header h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  color: var(--ttle_clr);
  background: linear-gradient(135deg, var(--ttle_clr) 0%, rgba(0, 33, 34) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-header h2 span {
  background: linear-gradient(135deg, var(--color-teal) 0%, #7BB8B0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.features-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  flex: 1;
  width: 100%;
}

/* Mobile Layout Override */
.mobile-layout .features-content {
  display: block;
  max-width: 100%;
}

/* Vertical Navigation */
.features-nav {
  display: flex;
  flex-direction: column;
  gap: 20px; /* Add visual spacing between tabs */
  height: fit-content;
  position: relative;
  width: 270px; /* Width to accommodate larger 120px tabs with horizontal gaps */
}

/* Mobile Layout Override */
.mobile-layout .features-nav {
  display: none;
}

.feature-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  width: 120px;
  height: 120px;
  position: relative;
  overflow: hidden;
}

/* Combined: Subtle overlap + 1-3-1-3-1 horizontal pattern with spacing */
.feature-tab:nth-child(1) {
  margin-top: 0;
  margin-left: 0; /* Position 1 */
  z-index: 5;
}

.feature-tab:nth-child(2) {
  margin-top: -30px; /* Subtle overlap allowing breathing room */
  margin-left: 150px; /* Position 3 with horizontal gap (120px + 30px gap) */
  z-index: 4;
}

.feature-tab:nth-child(3) {
  margin-top: -30px; /* Subtle overlap allowing breathing room */
  margin-left: 0; /* Position 1 (back to left) */
  z-index: 3;
}

.feature-tab:nth-child(4) {
  margin-top: -30px; /* Subtle overlap allowing breathing room */
  margin-left: 150px; /* Position 3 with horizontal gap (120px + 30px gap) */
  z-index: 2;
}

.feature-tab:nth-child(5) {
  margin-top: -30px; /* Subtle overlap allowing breathing room */
  margin-left: 0; /* Position 1 (back to left) */
  z-index: 1;
}

.feature-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.feature-tab:hover::before {
  left: 100%;
}

.feature-tab:hover {
  border-color: rgba(0, 33, 34);
  box-shadow: 
    0 8px 32px rgba(0, 33, 34, 0.15),
    0 0 0 1px rgba(0, 33, 34, 0.1);
  transform: translateY(-3px) scale(1.03);
}

.feature-tab.active {
  background: linear-gradient(135deg, rgba(0, 33, 34) 0%, #2a3845 100%);
  border-color: transparent;
  color: white;
  box-shadow: 
    0 12px 40px rgba(0, 33, 34, 0.3),
    0 4px 16px rgba(0, 33, 34, 0.2);
  transform: translateY(-5px) scale(1.05);
}

.tab-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  position: relative;
}

.tab-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.feature-tab.active .tab-icon img {
  filter: brightness(0) invert(1);
  transform: scale(1.1);
}

.feature-tab span {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
  max-width: 80px;
}

/* Content Panels - Fixed Container with Parallax Content */
.features-panels {
  position: relative;
  height: 100%;
  perspective: 1000px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  box-shadow: 
    0 24px 48px rgba(0, 0, 0, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Mobile Layout Override */
.mobile-layout .features-panels {
  height: auto;
  overflow: visible;
  background: transparent;
  backdrop-filter: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.panels-viewport {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.feature-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(100px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

/* Mobile Layout Override */
.mobile-layout .feature-section {
  position: static;
  width: 100%;
  height: auto;
  padding: 40px 20px;
  margin-bottom: 40px;
  opacity: 1 !important;
  transform: none !important;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.feature-section.active {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  z-index: 5;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-section.exiting {
  opacity: 0;
  transform: translateY(-30px) scale(0.98);
  z-index: 1;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-section.entering {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  z-index: 10;
  animation: enterSection 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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


.feature-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 33, 34, 0.3), transparent);
}

.feature-section::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 33, 34, 0.03) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.feature-section:hover::after {
  opacity: 1;
}

.feature-section:hover {
  transform: rotateX(1deg) rotateY(-1deg) translateZ(8px);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  position: relative;
}

.panel-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 33, 34) 0%, #2a3845 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 
    0 8px 24px rgba(0, 33, 34, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.panel-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
  border-radius: inherit;
}

.panel-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 1;
}

.panel-header h3 {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--black) 0%, #1e293b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1.2;
}

.panel-content {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}

.feature-item {
  padding: 28px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-teal) 0%, #7BB8B0 100%);
  opacity: 0.8;
}

.feature-item::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(0, 33, 34, 0.02) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 16px 32px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(0, 33, 34, 0.1);
  background: rgba(255, 255, 255, 0.8);
}

.feature-item:hover::after {
  opacity: 1;
}

.feature-item h4 {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--black) 0%, #1e293b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.feature-item p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* hesa_feature_sec start */
.hesa_feature_sec {
  padding: 120px 0 150px;
  background-color: var(--bg-color);
}

.feature_wrap h2 {
  margin-bottom: 61px;
}

.feature_tab {
  border: 1px solid lab(0% 0 0 / 0.1);
  display: flex;
  justify-content: center;
  position: sticky;
  top: 100px;
}

.feature_tab .nav_crd {
  width: 49%;
  background: #ecebe9;
  padding: 0px 65px 0px 45px;
}

.tab_navs {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}

.tab_navs .nav-link {
  padding: 20px;
  width: 45%;
  height: 218px;
  max-width: 218px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.6);
  transition: var(--transtn);
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
}

.tab_navs .nav-link.active {
  box-sizing: border-box;
  border-radius: 18px;
  background: rgb(148, 86, 57);
  position: relative;
  overflow: hidden;
}

.tab_navs .nav-link.active::before {
  content: "";
  position: absolute;
  top: -100px;
  width: 214px;
  height: 214px;
  left: -100px;
  filter: blur(60px);
  background: rgb(209, 178, 141);
}

.tab_navs .nav-link.active::after {
  content: "";
  position: absolute;
  height: 113px;
  width: 113px;
  right: 46px;
  bottom: 49px;
  filter: blur(50px);
  background: rgba(251, 225, 195, 0.7);
}

.tab_navs .nav-link .tab_img {
  margin-bottom: 20px;
  width: 55px;
  height: 55px;
  transition: var(--transtn);
  margin-inline: auto;
}

.tab_navs .nav-link.active .tab_img {
  margin-bottom: 20px;
  width: 75px;
  height: 75px;
}

.tab_navs .nav-link .tab_img img {
  transition: var(--transtn);
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tab_navs .nav-link.active .tab_img img {
  filter: brightness(0) saturate(100%) invert(1);
}

.tab_navs .nav-link h5 {
  font-size: 21px;
  font-weight: 600;
  line-height: 28px;
  color: var(--black);
  text-transform: capitalize;
  transition: var(--transtn);
  position: relative;
  z-index: 6;
}

.tab_navs .nav-link.active h5 {
  color: var(--white);
}

.feature_tab .nav_content {
  width: 51%;
  padding: 59px 22px 26px 24px;
  overflow-y: auto;
  height: 735px;
}

.tab_navs .nav-link:nth-child(1) {
  transform: translateY(-19px);
  box-shadow: 0px -14px 24px 0px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(54px);
}

.tab_navs .nav-link:nth-child(2) {
  transform: translate(0px, 118px);
}

.tab_navs .nav-link:nth-child(3) {
  transform: translate(0, 39px);
}

.tab_navs .nav-link:nth-child(4) {
  transform: translate(0, 178px);
}

.tab_navs .nav-link:last-child {
  transform: translateY(99px);
  box-shadow: 0px 14px 24px 0px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(54px);
}

.tab_con .main_itms li.main_list {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tab_con .main_itms li.main_list:last-child {
  border-bottom: none;
}

.tab_con .main_itms li .tab_hdng {
  width: 53%;
}

.tab_con .main_itms li .tab_data {
  width: 80%;
}

.tab_con .main_itms li .tab_hdng h4 {
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  color: var(--black);
  text-align: left;
  text-transform: capitalize;
  max-width: 200px;
}

.tab_con h3 {
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-transform: capitalize;
  color: var(--black);
  margin-bottom: 20px;
}

.tab_data ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0%;
  text-align: left;
  text-transform: capitalize;
  color: var(--black);
  padding: 0;
}

.tab_data ul li + li {
  margin-top: 14px;
}

/* hesa_feature_sec end */
/* priort_sec start */
.priort_sec {
  background: radial-gradient(
    59% 64% at 50% 36%,
    rgba(0, 33, 34),
    rgba(0, 33, 34, 0.85) 47.854%,
    rgba(0, 33, 34) 100%
  );
  padding: 130px 0 135px;
}

.priorty_wrap h2 {
  color: var(--white);
  margin-bottom: 50px;
}

.priorty_wrap h2 span {
  font-weight: 400;
  color: #C77B55;
}

.priorty_con {
  background: var(--bg-color);
  padding: 63px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}

.priorty_con h3 {
  color: var(--black);
  font-size: 22px;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.priorty_con p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
  margin-bottom: 15px;
}

.priorty_con .read_more_wrap {
  margin-top: auto;
}

.priorty_con a {
  color: var(--black);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  position: relative;
  /* text-decoration: underline !important; */
  transition: var(--transtn);
}

.priorty_con a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  height: 1px;
  width: 100%;
  left: 0;
  right: 0;
  background-color: var(--black);
  transition: var(--transtn);
}

.priorty_con a:hover {
  color: var(--color-accent);
}

.priorty_con a:hover:after {
  background-color: var(--color-accent);
}

.priorty_wrap .img_wrap {
  width: 90px;
  height: 90px;
  margin-bottom: 38px;
}

/* priort_sec end */
/* review_sec start */
.review_sec {
  padding: 100px 0 150px;
  background: var(--bg-color);
}

.revew_slidr {
  display: flex;
  justify-content: space-between;
}

.revew_slidr .revw_crd {
  border: 1px solid rgb(213, 213, 213);
  border-radius: 10px;
  padding: 42px 13px 30px 16px;
  height: 100%;
}

.user_dtls {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.user_img {
  width: 83px;
  height: 83px;
  border-radius: 50%;
  flex: 0 0 auto;
  margin-right: 18px;
}

.user_img img {
  width: 100%;
  object-fit: contain;
}

.user_data h4 {
  color: #00032c;
  font-family: var(--theme_font);
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
  text-align: left;
  text-transform: capitalize;
  margin-bottom: 12px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user_data p {
  color: #434e6d;
  font-family: var(--theme_font);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
}

.user_revw p {
  max-width: 316px;
  margin-right: auto;
  color: rgba(0, 3, 44, 0.7);
  font-family: var(--theme_font);
  font-size: 22px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0%;
  text-align: left;
}

.user_revw p span {
  font-weight: 700;
  display: inline;
}

.revew_slidr .slick-track {
  display: flex;
}

.revew_slidr .main_rev_crd {
  padding: 0 15px;
  height: auto;
}

.revew_slidr .slick-prev,
.revew_slidr .slick-next {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  z-index: 3;
}

.revew_slidr .slick-prev:hover,
.revew_slidr .slick-next:hover {
  background: var(--white);
}

.revew_slidr .slick-prev::before,
.revew_slidr .slick-next::before {
  display: none;
}

/* Lucide icons in slider arrows */
.revew_slidr .slick-prev .lucide-icon,
.revew_slidr .slick-next .lucide-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  stroke-width: 2;
}

.revw_wrap h2 {
  margin-bottom: 50px;
  font-size: 42px;
  font-weight: 700;
  text-align: center;
}

.revw_wrap h2 span {
  color: var(--color-accent);
}

/* review_sec end */

/* -------Partner_bnr-Start------- */
.partner_bnr {
  margin-bottom: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.partner_bnr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 33, 34, 0.85) 0%,
    rgba(0, 33, 34, 0.75) 50%,
    rgba(0, 33, 34, 0.85) 100%
  );
  z-index: 1;
}

.partner_bnr .bnt_text {
  padding: 260px 0 65px;
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 2;
  position: relative;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: top center;
}

.partner_bnr .bnt_text h1 {
  max-width: 1075px;
  margin-inline: auto;
}

.partner_bnr .bnt_text p {
  color: #ffffffcc;
  font-size: 19px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.19px;
  text-transform: capitalize;
  margin-bottom: 40px;
  margin-top: 30px;
}

.partner_bnr ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.partner_bnr ul li {
  font-size: 21px;
  font-weight: 400;
  line-height: 25px;
  text-align: justify;
  text-transform: capitalize;
  position: relative;
  padding-left: 34px;
  display: flex;
  align-items: flex-start;
}

.partner_bnr ul li svg.lucide-icon {
  position: absolute;
  top: 1px;
  left: 0;
  width: 24px;
  height: 24px;
  padding: 5px;
  background-color: var(--color-teal);
  border-radius: 50%;
  color: white;
  stroke-width: 3;
  flex-shrink: 0;
}

.partner_bnr ul li + li {
  margin-left: 80px;
}

.partner_bnr_vec {
  position: absolute;
  bottom: 60px;
  left: -10px;
  right: -5px;
}

.bnt_text_wrp {
  position: relative;
  z-index: 2;
}

/* -------Partner_bnr-End------- */

/* -------Key Benefits-Start------- */
.benefit_sec {
  text-align: center;
  margin-bottom: 115px;
}

.benefit_sec h2 {
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 40px;
}

.benefit_wrp {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: left;
  row-gap: 35px;
  margin-bottom: 55px;
}

.benefit_box {
  width: calc(50% - 17.5px);
  border: 1px solid rgb(208, 208, 208);
  border-radius: 20px;
  padding: 20px;
  min-height: 310px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  transition: var(--transtn);
}

.benefit_box:hover {
  box-shadow: 0px 24px 40px 0px rgba(0, 0, 0, 0.06);
  background: var(--white);
}

.benefit_con_wrp {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  width: 100%;
}

.benefit_title {
  width: 42%;
}

.benefit_title h4 {
  color: var(--black);
  font-size: 22px;
  font-weight: 500;
  line-height: 33px;
  max-width: 190px;
  text-transform: capitalize;
}

.benefit_con {
  width: 58%;
  max-width: 300px;
}

.benefit_icon {
  width: 40px;
  height: 40px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit_icon svg.lucide-icon {
  width: 40px;
  height: 40px;
  color: var(--color-teal);
  stroke-width: 1.5;
}

.benefit_icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.benefit_con li {
  position: relative;
  padding-left: 0px;
  color: #333a3f;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  text-transform: capitalize;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.benefit_con li + li {
  margin-top: 30px;
}

.benefit_con li .benefit-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-secondary);
  margin-top: 3px;
}

/* -------Key Benefits-End------- */

/* -------How It Works-Start------- */
.how_it_work_sec {
  background: radial-gradient(
    55% 60% at 50% 40%,
    #2a3845,
    rgba(0, 33, 34, 0.85) 47.854%,
    rgba(0, 33, 34) 100%
  );
  padding: 100px 0;
  text-align: center;
  color: var(--white);
}

.how_it_work_sec h2,
.how_it_work_sec h2 span {
  color: var(--white);
}

.how_it_work_wrp {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 70px;
  margin-top: 40px;
}

.how_it_work_box {
  width: calc(33.333% - 21px);
  position: relative;
}

.how_it_work_box:nth-child(2) {
  margin-top: 47px;
}

.how_it_work_box:nth-child(3) {
  margin-top: 119px;
}

.how_it_work_icon {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: var(--primary_clr);
  margin-inline: auto;
  margin-bottom: 30px;
}

.how_it_work_icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.count_work {
  color: #ffffff1a;
  font-size: 105px;
  font-weight: 900;
  line-height: 75px;
  display: flex;
  justify-content: end;
  padding-right: 55px;
  text-transform: capitalize;
}

.how_it_work_box p {
  font-size: 21px;
  font-weight: 500;
  line-height: 31px;
  margin-inline: auto;
  text-transform: capitalize;
  max-width: 277px;
}

.how_it_work_box:nth-child(3) p {
  max-width: 330px;
}

.how_it_work_box::before {
  position: absolute;
  top: 100px;
  width: 100%;
  height: 56px;
  max-width: 276px;
  left: 68%;
  background-image: url(../images/how_it_work_vec.png);
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  content: "";
}

.how_it_work_box:last-child::before {
  display: none;
}

.how_it_work_box:nth-child(2)::before {
  top: 115px;
  left: 70%;
}

.how_it_work_box:nth-child(1) .how_it_work_icon {
  margin-top: -12px;
}

/* -------How It Works-End------- */

/* -------Rewards & Benefits-Start------- */
.rewards_sec {
  padding: 90px 0 108px;
  text-align: center;
}

.rewards_sec h2 {
  max-width: 643px;
  margin-inline: auto;
  margin-bottom: 35px;
}

.rew_lists {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 30px;
  margin-bottom: 50px;
}

.rew_list {
  width: calc(33.333% - 20px);
  background-color: transparent;
  transition: var(--transtn);
  border: 1px solid #dfdfdf;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  padding: 30px 20px 20px;
}

.rew_list_wrp {
  max-width: 250px;
  margin-inline: auto;
}

.rew_img {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  margin-inline: auto;
}

.rew_list:hover {
  background-color: var(--white);
  box-shadow: 0px 24px 40px 0px rgba(0, 0, 0, 0.06);
}

.rew_list_wrp h4 {
  font-size: 25px;
  font-weight: 500;
  line-height: 35px;
  text-transform: capitalize;
  color: var(--black);
  margin-bottom: 15px;
}

.rew_list_wrp p {
  color: rgb(103, 114, 122);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-transform: capitalize;
}

/* -------Rewards & Benefits-End------- */

/* -------Features-Start------- */
.review_sec.testimonial_sec {
  background: linear-gradient(
    270deg,
    rgb(243, 243, 241),
    rgb(233, 231, 230) 100%
  );
  padding-bottom: 260px;
}

.testimonial_sec h2 {
  max-width: 900px;
  margin-inline: auto;
}

.testimonial_sec h2 span {
  display: inline;
}

/* -------Features-End------- */

/* -------Partner Review Section-Start------- */
.page-template-template-partners .review_sec.testimonial_sec {
  padding-bottom: 260px;
}

/* -------Partner Review Section-End------- */

/* -------Partner_before_ftr_sec-Start------- */
.partner_before_ftr_sec .before_ftr_wrp {
  padding: 85px 49px 95px;
}

.partner_before_ftr_sec h2 {
  margin-bottom: 10px;
}

.before_ftr_sec p {
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  text-transform: capitalize;
  max-width: 586px;
  margin-bottom: 20px;
}

.partner_before_ftr_sec.before_ftr_sec {
  margin-top: -204px;
  margin-bottom: -204px;
}

/* -------Partner_before_ftr_sec-End------- */

/* -------Contact_before_ftr_sec-Start------- */
.contact_before_ftr_sec.before_ftr_sec {
 
}

/* -------Contact_before_ftr_sec-End------- */

/* -------about_bnnr Start------- */
.about_bnnr {
  background-color: var(--color-primary) !important;
  background-image: none !important; /* Remove any inline background image */
  padding: 222px 0 190px;
  position: relative;
  overflow: hidden;
}

.about_bnnr .container {
  position: relative;
  z-index: 2;
}

/* Apply color correction to the children's image - lighter adjustments */
.about_bnnr img[alt="childrens image"] {
  position: relative;
  filter: grayscale(0.3) brightness(1.05) contrast(1.05);
}

/* Add strong dark blue tint overlay on the image container */
.abt_bnnr_img {
  position: relative;
}

.abt_bnnr_img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 33, 34, 0.2); /* Lighter blue tint */
  mix-blend-mode: normal;
  opacity: 0.4;
  pointer-events: none;
}

.abt_bnnr_img {
  position: absolute;
  bottom: -190px;
  right: -155px;
  top: -225px;
}

.abt_bnnr_img img {
  height: 100%;
}

.main_bnnr_wrap {
  max-width: 567px;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.main_bnnr_wrap h1 {
  text-align: left;
}

.main_bnnr_wrap h1 span {
  display: inline;
}

/* -------about_bnnr End------- */
/* -------story_sec Start------- */
.story_sec {
  padding: 112px 0;
  background: var(--bg-default);
  border-top: 1px solid rgba(0, 33, 34, 0.05);
  border-bottom: 1px solid rgba(0, 33, 34, 0.05);
}

.stry_main_wrap {
  max-width: 1080px;
  margin: 0 auto;
}

.stry_main_wrap h2 {
  margin-bottom: 72px;
  font-size: 42px;
  font-weight: 700;
  text-align: left;
  color: var(--color-primary);
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.stry_main_wrap h2 span {
  color: var(--color-teal);
}

.stry_main_wrap > .row {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.85fr);
  align-items: center;
  gap: 72px;
}

.stry_main_wrap > .row > [class*="col-"] {
  width: 100%;
  max-width: none;
}

.stry_main_wrap .stry_img_wrap {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 24px;
}

.stry_main_wrap .stry_img_wrap::before,
.stry_main_wrap .stry_img_wrap::after {
  content: "";
  position: absolute;
  border-radius: var(--radius-lg);
  inset: 16px;
  transition: transform var(--transition-base);
  pointer-events: none;
  z-index: 0;
}

.stry_main_wrap .stry_img_wrap::before {
  background: rgba(94, 168, 159, 0.18);
  transform: rotate(-4deg) translate(-8px, 6px);
}

.stry_main_wrap .stry_img_wrap::after {
  background: rgba(0, 33, 34, 0.08);
  transform: rotate(5deg) translate(26px, -18px);
  opacity: 0.6;
}

.stry_main_wrap .stry_img_wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 30px rgba(0, 33, 34, 0.18);
  object-fit: cover;
}

.stry_main_wrap > .row:nth-of-type(2) .stry_img_wrap {
  margin-right: 0;
  margin-left: auto;
  padding: 0;
  max-width: 380px;
  display: grid;
  gap: 18px;
}

.stry_main_wrap > .row:nth-of-type(2) .stry_img_wrap::before {
  width: 184px;
  height: 184px;
  inset: auto;
  top: -38px;
  left: -26px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(94, 168, 159, 0.3) 0%, rgba(94, 168, 159, 0) 70%);
  transform: none;
}

.stry_main_wrap > .row:nth-of-type(2) .stry_img_wrap::after {
  width: 220px;
  height: 220px;
  inset: auto;
  bottom: -40px;
  right: -34px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(0, 33, 34, 0.12) 0%, rgba(0, 33, 34, 0) 65%);
  transform: none;
  opacity: 0.5;
}

.stry_main_wrap > .row:nth-of-type(2) .stry_img_wrap img {
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 42px rgba(0, 33, 34, 0.2);
}

.unique_stry_wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.unique_stry_wrap > * {
  margin: 0;
}

.unique_stry_wrap p {
  color: rgba(0, 33, 34, 0.88);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
}

.unique_stry_wrap p span,
.unique_stry_wrap p strong {
  color: var(--color-primary);
  font-weight: 600;
}

.unique_stry_wrap h4 {
  color: var(--color-primary);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  margin-top: 4px;
}

.unique_stry_wrap ul {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.unique_stry_wrap ul li {
  position: relative;
  color: rgba(0, 33, 34, 0.8);
  font-size: 17px;
  line-height: 1.7;
  padding-left: 26px;
  margin-bottom: 18px;
}

.unique_stry_wrap ul li:last-child {
  margin-bottom: 0;
}

.unique_stry_wrap ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-teal);
  box-shadow: 0 0 0 4px rgba(94, 168, 159, 0.15);
}

.stry_main_wrap > .row + .row {
  margin-top: 120px;
}

.stry_main_wrap h3 {
  color: var(--color-primary);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.65;
  text-align: left;
  margin: 104px 0 0;
  max-width: 640px;
}

.stry_main_wrap h3 span {
  color: var(--color-teal);
  font-weight: 600;
}

.stry_btn {
  text-align: left;
  margin-top: 28px;
}

.stry_btn .primary_btn {
  padding: 14px 32px;
}

@media (max-width: 1199px) {
  .stry_main_wrap {
    max-width: 92%;
  }

  .stry_main_wrap > .row {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
    gap: 52px;
  }

  .stry_main_wrap .stry_img_wrap {
    max-width: 320px;
    padding: 22px;
  }
}

@media (max-width: 991px) {
  .story_sec {
    padding: 96px 0;
  }

  .stry_main_wrap h2 {
    font-size: 38px;
    margin-bottom: 60px;
  }

  .stry_main_wrap > .row {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
    gap: 32px;
  }

  .unique_stry_wrap p {
    font-size: 17px;
  }

  .stry_main_wrap .stry_img_wrap {
    max-width: 300px;
    padding: 20px;
  }

  .stry_main_wrap .stry_img_wrap::before {
    transform: rotate(-4deg) translate(-6px, 5px);
  }

  .stry_main_wrap .stry_img_wrap::after {
    transform: rotate(4deg) translate(14px, -12px);
  }

  .stry_main_wrap > .row:nth-of-type(2) .stry_img_wrap {
    max-width: 280px;
    padding: 12px;
  }

  .stry_main_wrap > .row:nth-of-type(2) .stry_img_wrap::before {
    width: 150px;
    height: 150px;
    top: -28px;
    left: -18px;
  }

  .stry_main_wrap > .row:nth-of-type(2) .stry_img_wrap::after {
    width: 180px;
    height: 180px;
    bottom: -28px;
    right: -24px;
  }

  .stry_main_wrap h3 {
    margin-top: 80px;
  }
}

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

  .stry_main_wrap {
    max-width: 100%;
  }

  .stry_main_wrap h2 {
    font-size: 30px;
    margin-bottom: 44px;
  }

  .stry_main_wrap > .row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .unique_stry_wrap {
    padding-right: 0;
  }

  .stry_main_wrap .stry_img_wrap {
    max-width: 260px;
    padding: 18px;
  }

  .stry_main_wrap .stry_img_wrap::before {
    transform: rotate(-3deg) translate(-4px, 4px);
  }

  .stry_main_wrap .stry_img_wrap::after {
    transform: rotate(3deg) translate(10px, -8px);
  }

  .stry_main_wrap > .row:nth-of-type(2) .stry_img_wrap {
    max-width: 240px;
    padding: 12px;
  }

  .stry_main_wrap > .row:nth-of-type(2) .stry_img_wrap::before,
  .stry_main_wrap > .row:nth-of-type(2) .stry_img_wrap::after {
    display: none;
  }

  .stry_main_wrap h3 {
    font-size: 22px;
    margin-top: 52px;
    max-width: none;
  }

  .stry_btn {
    text-align: center;
    margin-top: 28px;
  }

  .stry_btn .primary_btn {
    width: 100%;
    justify-content: center;
  }
}

/* -------story_sec End------- */
/* -------misson_sec Start------- */
.misson_sec {
  padding: 80px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.misson_sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
}

.misson_sec .container {
  position: relative;
  z-index: 1;
}


.misson_txt_wrap {
  margin-bottom: 25px;
}

.misson_txt_wrap h2 {
  text-align: left;
  margin-bottom: 24px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.misson_txt_wrap h2 span {
  color: var(--primary_clr);
  font-weight: 700;
}

.misson_txt_wrap p {
  color: #333a3f;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
  text-transform: none;
  margin-bottom: 20px;
}

.misson_txt_wrap p + p {
  margin-top: 8px;
}

.frst_misson {
  max-width: 566px;
  margin-right: auto;
}

/* -------misson_sec End------- */

/* -------Client_testimonial-Start------- */

.review_sec.client_sec {
  background: linear-gradient(
    270deg,
    rgb(243, 243, 241),
    rgb(233, 231, 230) 100%
  );
  padding-bottom: 260px;
}

/* -------Client_testimonial-End------- */

/* -------About_before_ftr_sec-Start------- */
.about_before_ftr_sec h2 {
  margin-bottom: 20px;
  font-size: 42px;
  line-height: 1.3;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.about_before_ftr_sec p {
  margin-bottom: 25px;
}

.about_before_ftr_sec .before_ftr_wrp {
  padding: 60px 50px;
}

.before_ftr_sec.about_before_ftr_sec {
  margin-bottom: -206px;
  margin-top: -206px;
}

/* -------About_before_ftr_sec-End------- */

/* -------Values-Start------- */
.com_value_sec {
  padding: 80px 0;
  text-align: center;
  background: white;
}

.com_value_sec h2 {
  margin-bottom: 50px;
  font-size: 42px;
  font-weight: 700;
}

.com_value_lists {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 30px;
}

.com_value_list {
  width: calc(33.333% - 20px);
  background-color: #f8f7f5;
  transition: var(--transtn);
  border: 1px solid transparent;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  padding: 32px 24px;
  min-height: 220px;
  justify-content: center;
}

.com_value_list:hover {
  background-color: var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: var(--color-teal);
}

.com_value_list h4 {
  color: #1a1a1a;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: capitalize;
  margin-bottom: 12px;
}

.com_value_list h4 span {
  color: #945639;
}

.com_value_list p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  text-transform: none;
  color: #666;
  max-width: 335px;
  margin-inline: auto;
}

.com_value_list p b {
  font-weight: 500;
  color: var(--black);
}

/* -------Values-End------- */

/* -------Graph animation-Start------- */

.graph-container {
  max-width: 100%;
  margin-top: -250px;
}

.graph-container svg {
  width: 100%;
  height: 100%;
  preserveaspectratio: none;
  opacity: 0.1;
}

.graph-container .graph-path {
  fill: none;
  stroke: rgba(255, 255, 255);
  stroke-width: 1;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  animation: draw 5s ease forwards;
}

.graph-container .dot {
  fill: rgba(255, 255, 255);
  r: 5;
  transform-origin: center;
  opacity: 0;
  animation: pop 0.5s ease forwards;
}

.graph-container .dot:nth-of-type(2) {
  animation-delay: 0.3s;
}

.graph-container .dot:nth-of-type(3) {
  animation-delay: 0.6s;
}

.graph-container .dot:nth-of-type(4) {
  animation-delay: 0.9s;
}

.graph-container .dot:nth-of-type(5) {
  animation-delay: 1.2s;
}

.graph-container .dot:nth-of-type(6) {
  animation-delay: 1.5s;
}

.graph-container .dot:nth-of-type(7) {
  animation-delay: 1.8s;
}

.graph-container .dot:nth-of-type(8) {
  animation-delay: 2.1s;
}

.graph-container .dot:nth-of-type(9) {
  animation-delay: 2.4s;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes pop {
  from {
    transform: scale(0);
    opacity: 0;
  }

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

/* -------Graph animation-End------- */

/* 07-05-25 */
.top_heading_con .primary_btn:after {
  left: -18px;
  bottom: -13px;
}

.top_heading_con .primary_btn::before {
  width: 52;
  height: 52px;
  left: unset;
  transform: unset;
  top: unset;
  bottom: 2px;
  right: 8px;
}

/* 07-05-25 */

/* 09-05-25 */
.about_bnnr h1 {
  font-size: 50px;
  line-height: 65px;
}

.partner_bnr .bnt_text h1 {
  font-size: 70px;
  line-height: 85px;
}

.nav_content::-webkit-scrollbar {
  width: 4px;
}

/* .nav_content::-webkit-scrollbar-track {
  background: #05b6bc62;
}

.nav_content::-webkit-scrollbar-thumb {
  background: var(--primary_clr);
  border-radius: 2px;
} */

/* .nav_content::-webkit-scrollbar-track {
  background: #7b40246e;
  border-radius: 4px;
}

.nav_content::-webkit-scrollbar-thumb {
  background: var(--secondary_clr);
  border-radius: 2px;
} */

.nav_content::-webkit-scrollbar-track {
  background: #0000001a;
  border-radius: 4px;
}

.nav_content::-webkit-scrollbar-thumb {
  background: hsla(0, 0%, 0%, 0.4);
  border-radius: 2px;
}

.bnnr_animate_video {
  height: 100%;
  /* overflow: hidden; */
  width: 100%;
  position: absolute;
  bottom: 30px;
}

.bnnr_animate_video::before {
  position: absolute;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 33, 34, 0.4) 0%,
    rgba(0, 33, 34, 0.7) 50%,
    rgba(0, 33, 34, 1) 100%
  );
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
}

.bnnr_animate_video::after {
  position: absolute;
  background: linear-gradient(
    0deg,
    rgba(0, 33, 34) 0%,
    rgba(0, 33, 34, 0.95) 30%,
    rgba(0, 33, 34, 0.6) 60%,
    rgba(0, 33, 34, 0.2) 100%
  );
  content: "";
  bottom: -20px;
  left: 0;
  right: 0;
  height: 50px;
  z-index: 4;
}

.bnnr_animate_video video {
  position: absolute;
  bottom: 220px;
  bottom: 0;
  width: 100%;
  object-fit: cover;
}

.home_bnnr {
  background: rgba(0, 33, 34); /* Updated to primary dark blue */
}

/* 09-05-25 */

/* 15-05-2025 */
.scroll-card-wrap {
  overflow: clip;
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  padding: 100px 0;
}

.scroll-card-content-wrap {
  width: 100%;
  position: relative;
}

.scroll-card-list {
  display: flex;
  flex-wrap: nowrap;
  position: relative;
  will-change: transform;
  z-index: 1;
  width: 100vw;
  /* align-items: center; */
}

.scroll-card {
  flex: 0 0 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  /* padding: 40px; */
  box-sizing: border-box;
  max-width: 1260px;
}

.scroll-card-wrap h2 {
  margin-bottom: 40px;
}

.scroll-card + .scroll-card {
  padding-left: 80px;
}

.scroll-card-img {
  width: 44%;
  border-radius: 20px;
}

.scroll-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.scroll-card-inner-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 25px;
}

.scroll-card-box {
  width: 31%;
}

.scroll-card-box h4 {
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  color: var(--black);
  text-align: left;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.scroll-card-box ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-transform: capitalize;
  color: var(--ttle_clr);
}

.scroll-card-box ul li + li {
  margin-top: 10px;
}

.scroll-card-content h3 {
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  color: var(--black);
  margin-bottom: 20px;
}

.scroll_nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 73px;
}

/* 11-06-2025 */

.scroll_nav_wrp {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 20px;
  border-radius: 10px;
  background: rgb(255, 255, 255);
  overflow: hidden;
}

.scroll_nav_wrp span {
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  text-transform: capitalize;
  display: inline-block;
  position: relative;
  z-index: 5;
}

.scroll_nav_wrp img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  position: relative;
  z-index: 5;
}

.scroll_nav a.w--current .scroll_nav_wrp {
  color: var(--white);
  position: relative;
  background-color: var(--secondary_clr);
  border: 1px solid transparent;
  transform: var(--transtn);
}

.scroll_nav a.w--current .scroll_nav_wrp::before {
  width: 50%;
  height: 42px;
  filter: blur(30px);
  background: rgba(251, 225, 195, 0.7);
  border-radius: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: -15px;
  position: absolute;
  content: "";
}

.scroll_nav a.w--current .scroll_nav_wrp:after {
  width: 105px;
  height: 105px;
  filter: blur(30px);
  background: rgb(209, 178, 141);
  border-radius: 100%;
  left: -18px;
  bottom: 6px;
  position: absolute;
  content: "";
}

.scroll_nav a.w--current .scroll_nav_wrp img {
  filter: brightness(1000%) saturate(0%) contrast(100%);
}

.scroll-card-content-hing {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.scroll-card-content-hing span {
  width: 65px;
  height: 65px;
  border-radius: 17px;
  background: rgb(148, 86, 57);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.scroll-card-content-hing span img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(1000%) saturate(0%) contrast(100%);
}

.scroll-card-content h3 {
  color: rgb(0, 0, 0) !important;
  font-size: 34px;
  font-weight: 500;
  line-height: 47px;
  text-transform: capitalize;
  margin-bottom: 0;
}

.scroll-card-box h4 {
  max-width: 285px;
}
/* 16-06-2025 start */
/* .hedr.scroll-up {
  top: -83px;
}

.hedr.scroll-down {
  top: 0px;
}

.scroll_nav {
  gap: 22px;
} */

/* 16-06-2025 end*/

/* Responsive fallback */
/* @media (max-width: 1600px) {
  .scroll-card-wrap h2 {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 25px;
  }

  .scroll_nav_wrp span {
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
  }

  .scroll-card-content h3 {
    font-size: 25px;
    line-height: 30px;
  }

  .scroll-card-content-hing span {
    width: 55px;
    height: 55px;
    border-radius: 15px;
  }

  .scroll_nav_wrp {
    padding: 10px 20px;
  }

  .scroll-card-content-hing span img {
    width: 30px;
    height: 30px;
  }

  .scroll-card-content-hing {
    margin-bottom: 30px;
  }

  .scroll_nav {
    margin-bottom: 50px;
  }

  .scroll-card-wrap {
    align-items: start;
  }

  .scroll-card-box h4 {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 7px;
  }

  .scroll-card-box ul li {
    font-size: 14px;
    line-height: 22px;
  }

  .scroll-card-img {
    width: 40%;
  }

  .scroll-card+.scroll-card {
    padding-left: 50px;
  }
  /* 16 -06-2025 start */
/* .scroll-card-wrap h2 {
    font-size: 45px;
    line-height: 50px;
  }

  .scroll-card-content h3 {
    font-size: 25px;
    line-height: 30px;
  }

  .scroll-card-content-hing span {
    width: 55px;
    height: 55px;
    border-radius: 15px;
  }

  .scroll_nav_wrp {
    padding: 10px 20px;
  }

  .scroll-card-content-hing span img {
    width: 30px;
    height: 30px;
  }

  .scroll-card-content-hing {
    margin-bottom: 30px;
  }

  .scroll-card-wrap {
    align-items: start;
  }

  .scroll-card-box h4 {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 7px;
  }

  .scroll-card-box ul li {
    font-size: 14px;
    line-height: 22px;
  }

  .scroll-card-img {
    width: 40%;
  }

  .scroll-card+.scroll-card {
    padding-left: 50px;
  } */
/* 
}

@media (max-width: 1399px) {

}
@media (max-width: 1199px) {
  .scroll_nav {
    margin-bottom: 25px;
  }

  .scroll-card-box h4 {
    font-size: 14px;
    line-height: 20px;
  }

  .scroll-card-box ul li {
    font-size: 13px;
    line-height: 20px;
  }

  .scroll-card-box ul li+li {
    margin-top: 7px;
  }

  .scroll-card-content-hing {
    margin-bottom: 25px;
    gap: 15px;
  }

  .scroll-card-content-hing span {
    width: 50px;
    height: 50px;
    border-radius: 10px;
  }

  .scroll-card-content h3 {
    font-size: 22px;
    line-height: 27px;
  }
}

@media (max-width: 991px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  } */
/* .scroll-card-list {
    flex-direction: column;
  }

  .scroll-card+.scroll-card {
    padding-left: 20px;
  }

  .scroll-card {
    flex-direction: column;
    padding: 20px;
    margin: 0 10px;
    border-radius: 10px;
    background-color: var(--white);
    flex: 0 0 auto;
    height: auto;
  }

  .scroll-card-img,
  .scroll-card-content,
  .scroll-card-box:nth-child(1),
  .scroll-card-box:nth-child(2) {
    width: 100%;
  }

  .scroll-card-wrap {
    overflow: unset;
    min-height: 0;
    display: block;
    align-items: unset;
    padding: 75px 0;
  }

  .scroll-card-list {
    display: block;
    width: 100%;
  }

  .scroll-card-box {
    padding: 0;
    border-radius: 0;
  }

  .scroll-card-inner-wrap {
    row-gap: 15px;
  }

  .scroll-card-wrap h2 {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 25px;
  }

  .scroll-card-img {
    margin-bottom: 15px;
  }

  .scroll-card-list .slick-track {
    display: flex;
  } */

/* .scroll-card-content h3 {
    font-size: 22px;
  }

  .scroll_nav {
    display: none;
  }
}

@media (max-width: 767px) {
  .scroll-card-wrap {
    padding: 90px 0 50px !important;
  }

  .scroll-card-wrap h2 {
    font-size: 30px;
    line-height: 35px;
  }

  .scroll-card-img {
    margin-bottom: 15px;
    max-width: 270px;
    margin-inline: auto;
  }
}

@media (max-width: 575px) {
  .scroll-card-box {
    width: 100%;
  }

  .scroll-card-content-hing span {
    width: 45px;
    height: 45px;
    border-radius: 5px;
  }

  .scroll-card-content-hing span img {
    width: 25px;
    height: 25px;
  }

  .scroll-card-content h3 {
    font-size: 20px;
  }

  .scroll-card-content-hing {
    margin-bottom: 20px;
    gap: 15px;
  }

  .scroll-card-box h4 {
    max-width: 100%;
  }

  .scroll-card-box ul li {
    font-size: 13px;
    line-height: 18px;
  }

  .scroll-card+.scroll-card {
    padding-left: unset;
  }

  .scroll-card+.scroll-card {
    padding-inline: 2%;
  }

  .scroll-card:last-child .scroll-card-box {
    width: 98%;
  }
}

@media (max-width: 575px) {} */

/* 15-05-2025 */

/* 16-06-2025 start */

/* Responsive fallback */
/* @media (max-width: 1600px) {
  .scroll-card-wrap h2 {
    font-size: 45px;
    line-height: 50px;
  }

  .scroll-card-content h3 {
    font-size: 25px;
    line-height: 30px;
  }

  .scroll-card-content-hing span {
    width: 55px;
    height: 55px;
    border-radius: 15px;
  }

  .scroll_nav_wrp {
    padding: 10px 20px;
  }

  .scroll-card-content-hing span img {
    width: 30px;
    height: 30px;
  }

  .scroll-card-content-hing {
    margin-bottom: 30px;
  }


  .scroll-card-wrap {
    align-items: start;
  }

  .scroll-card-box h4 {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 7px;
  }

  .scroll-card-box ul li {
    font-size: 14px;
    line-height: 22px;
  }

  .scroll-card-img {
    width: 40%;
  }

  .scroll-card+.scroll-card {
    padding-left: 50px;
  }
}

@media (max-width: 1399px) {
  .scroll_nav_wrp span {
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
  }
}

@media (max-width: 1199px) {
  .scroll_nav {
    margin-bottom: 45px;
  }

  .scroll-card-box h4 {
    font-size: 14px;
    line-height: 20px;
  }

  .scroll-card-box ul li {
    font-size: 13px;
    line-height: 20px;
  }

  .scroll-card-box ul li+li {
    margin-top: 7px;
  }

  .scroll-card-content-hing {
    margin-bottom: 25px;
    gap: 15px;
  }

  .scroll-card-content-hing span {
    width: 50px;
    height: 50px;
    border-radius: 10px;
  }

  .scroll-card-content h3 {
    font-size: 22px;
    line-height: 27px;
  }

  .scroll_nav_wrp {
    padding: 8px 16px;
    border-radius: 7px;
  }

  .scroll-card-wrap h2 {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 35px;
  }

  .scroll-card-content-hing span img {
    width: 25px;
    height: 25px;
  }

  .scroll_nav_wrp span {
    font-size: 12px;
    font-weight: 500;
    line-height: 25px;
  }

  .scroll-card-content-hing span img {
    width: 25px;
    height: 25px;
  }

  .scroll-card-content-hing span {
    width: 45px;
    height: 45px;
    border-radius: 7px;
  }

  .scroll_nav_wrp img {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 991px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }

  .scroll-card-content h3 {
    font-size: 22px;
  }

  .scroll_nav {
    display: none;
  }

  .scroll-card-wrap {
    padding: 75px 0;
  }
}

@media (max-width: 767px) {
  .scroll-card-wrap {
    padding: 50px 0;
  }

  .scroll-card-wrap h2 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 25px;
  }

  .scroll-card-img {
    margin-bottom: 15px;
    max-width: 270px;
    margin-inline: auto;
  }
}

@media (max-width: 575px) {
  .scroll-card-box {
    width: 100%;
  }

  .scroll-card-content-hing span {
    width: 45px;
    height: 45px;
    border-radius: 5px;
  }

  .scroll-card-content-hing span img {
    width: 25px;
    height: 25px;
  }

  .scroll-card-content h3 {
    font-size: 20px;
  }

  .scroll-card-content-hing {
    margin-bottom: 20px;
    gap: 15px;
  }

  .scroll-card-box h4 {
    max-width: 100%;
  }

  .scroll-card-box ul li {
    font-size: 13px;
    line-height: 18px;
  }

  .scroll-card+.scroll-card {
    padding-left: unset;
    padding-inline: 2%;
  }

  .scroll-card .scroll-card-box {
    width: 94%;
  }
} */
/* 16-06-2025 end */

/* 17-06-2025 start */
/* 16-06-2025 */
.hedr.scroll-up {
  top: -83px;
}

.hedr.scroll-down {
  top: 0px;
}

.scroll_nav {
  gap: 22px;
}

.scroll-card-outer-wrap {
  display: flex;
  height: 100vh;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 100px 0;
}

.scroll-card-wrap {
  padding: 0;
}

/* 16-06-2025 */
.feature_wrp.active {
  position: relative;
}
.feature_wrp.active:before {
  position: fixed;
  top: 0;
  left: 0;
  background: rgb(248, 247, 245);
  content: "";
  width: 100%;
  height: 100px;
}
/* Responsive fallback */
@media (max-width: 1600px) {
  .scroll-card-wrap h2 {
    font-size: 45px;
    line-height: 50px;
    /* margin-bottom: 25px; */
  }

  .scroll-card-content h3 {
    font-size: 25px;
    line-height: 30px;
  }

  .scroll-card-content-hing span {
    width: 55px;
    height: 55px;
    border-radius: 15px;
  }

  .scroll_nav_wrp {
    padding: 10px 20px;
  }

  .scroll-card-content-hing span img {
    width: 30px;
    height: 30px;
  }

  .scroll-card-content-hing {
    margin-bottom: 30px;
  }

  /* .scroll_nav {
    margin-bottom: 50px;
  } */

  .scroll-card-wrap {
    align-items: start;
  }

  .scroll-card-box h4 {
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 7px;
  }

  .scroll-card-box ul li {
    font-size: 14px;
    line-height: 22px;
  }

  .scroll-card-img {
    width: 40%;
  }

  .scroll-card + .scroll-card {
    padding-left: 50px;
  }
}

@media (max-width: 1399px) {
  .scroll_nav_wrp span {
    font-size: 14px;
    font-weight: 500;
    line-height: 25px;
  }
}

@media (max-width: 1199px) {
  .scroll_nav {
    margin-bottom: 45px;
    gap: 17px;
  }

  .scroll-card-box h4 {
    font-size: 14px;
    line-height: 20px;
  }

  .scroll-card-box ul li {
    font-size: 13px;
    line-height: 20px;
  }

  .scroll-card-box ul li + li {
    margin-top: 7px;
  }

  .scroll-card-content-hing {
    margin-bottom: 25px;
    gap: 15px;
  }

  .scroll-card-content-hing span {
    width: 50px;
    height: 50px;
    border-radius: 10px;
  }

  .scroll-card-content h3 {
    font-size: 22px;
    line-height: 27px;
  }

  .scroll_nav_wrp {
    padding: 8px 16px;
    border-radius: 7px;
  }

  .scroll-card-wrap h2 {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 35px;
  }

  .scroll-card-content-hing span img {
    width: 25px;
    height: 25px;
  }

  .scroll_nav_wrp span {
    font-size: 12px;
    font-weight: 500;
    line-height: 25px;
  }

  .scroll-card-content-hing span img {
    width: 25px;
    height: 25px;
  }

  .scroll-card-content-hing span {
    width: 45px;
    height: 45px;
    border-radius: 7px;
  }

  .scroll_nav_wrp img {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 991px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }

  .scroll-card-content h3 {
    font-size: 22px;
  }

  .scroll_nav {
    display: none;
  }

  /* .scroll-card-wrap {
    padding: 75px 0;
  } */

  .scroll-card-outer-wrap {
    padding: 75px 0;
  }
}

@media (max-width: 767px) {
  /* .scroll-card-wrap {
    padding: 50px 0;
  } */
  .scroll-card-outer-wrap {
    padding: 50px 0;
  }

  .scroll-card-wrap h2 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 25px;
  }

  .scroll-card-img {
    margin-bottom: 15px;
    max-width: 270px;
    margin-inline: auto;
  }
}

@media (max-width: 575px) {
  .scroll-card-box {
    width: 100%;
  }

  .scroll-card-content-hing span {
    width: 45px;
    height: 45px;
    border-radius: 5px;
  }

  .scroll-card-content-hing span img {
    width: 25px;
    height: 25px;
  }

  .scroll-card-content h3 {
    font-size: 20px;
  }

  .scroll-card-content-hing {
    margin-bottom: 20px;
    gap: 15px;
  }

  .scroll-card-box h4 {
    max-width: 100%;
  }

  .scroll-card-box ul li {
    font-size: 13px;
    line-height: 18px;
  }

  .scroll-card + .scroll-card {
    padding-left: unset;
    padding-inline: 2%;
  }

  .scroll-card .scroll-card-box {
    width: 94%;
  }
}
/* 17-06-2025 end */

/* 28-07-2025 */
.home_bnnr_vdo video {
  width: 100%;
}
.home_bnnr_vdo .modal-dialog {
  max-width: 1000px;
  height: 100%;
  align-items: center;
  display: flex;
}
.home_bnnr_vdo .modal-content {
  background: transparent;
  border: none;
  padding: 0;
}
.home_bnnr_vdo .modal-header {
  border-bottom: none;
  position: absolute;
  right: 0;
  bottom: 100%;
}
.home_bnnr_vdo .modal-body {
  padding: 0;
  height: 500px;
}
.home_bnnr_vdo .modal-header .btn-close {
  filter: invert(1);
}
.home_bnnr_vdo iframe {
  width: 100% !important;
  height: 100% !important;
}
/* 28-07-2025 */

/* ========================================
   Contact Page Styling
   ======================================== */

/* Contact Form Section */
.contact_form_sec {
  padding: 80px 0;
  background-color: var(--bg-default);
  padding-bottom: 260px;
}

.contact_form_wrap {
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Info Column */
.contact_info {
  padding-right: 0px;
}

.contact_info h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  line-height: 1.3;
  text-align: left;
}

.contact_info > p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Contact Details */
.contact_details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact_item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--bg-paper);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.contact_item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact_icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-radius: 12px;
  color: #ffffff;
  font-size: 24px;
}

.contact_icon i {
  font-size: 24px;
}

.contact_text {
  flex: 1;
}

.contact_text h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.contact_text p {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.contact_text a {
  font-size: 15px;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.contact_text a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.contact_before_ftr_sec {
  margin-top: -180px;
  margin-bottom: -180px;
}

/* Contact Form Column */
.contact_form {
  background: var(--bg-paper);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact_form h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 24px;
}

/* Contact Form 7 Styling */
.contact_form .wpcf7 {
  margin: 0;
}

.contact_form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact_form .wpcf7-form p {
  margin: 0;
}

.contact_form .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.contact_form .wpcf7-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.contact_form .wpcf7-form input[type="text"],
.contact_form .wpcf7-form input[type="email"],
.contact_form .wpcf7-form input[type="tel"],
.contact_form .wpcf7-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #CFCFCF;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  background: #ffffff;
  transition: all 0.3s ease;
  min-height: 48px;
}

.contact_form .wpcf7-form input:focus,
.contact_form .wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 33, 34, 0.1);
}

.contact_form .wpcf7-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact_form .wpcf7-form input[type="submit"] {
  align-self: flex-start;
  padding: 14px 32px;
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 48px;
}

.contact_form .wpcf7-form input[type="submit"]:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 33, 34, 0.3);
}

/* WPCF7 Validation Messages */
.contact_form .wpcf7-not-valid-tip {
  color: var(--color-error);
  font-size: 13px;
  margin-top: 6px;
}

.contact_form .wpcf7-response-output {
  border-radius: 8px;
  padding: 12px 16px;
  margin: 16px 0 0 0;
  font-size: 14px;
}

.contact_form .wpcf7-validation-errors {
  border-color: var(--color-warning);
  background: rgba(237, 108, 2, 0.1);
  color: var(--color-warning-dark);
}

.contact_form .wpcf7-mail-sent-ok {
  border-color: var(--color-success);
  background: rgba(46, 125, 50, 0.1);
  color: var(--color-success-dark);
}

/* Map Section */
.map_sec {
  padding: 0;
  margin: 0;
}

.map_wrap {
  width: 100%;
  height: 400px;
  border-radius: 0;
  overflow: hidden;
}

.map_wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .contact_info {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .contact_info h2 {
    font-size: 32px;
    text-align: center;
  }

  .contact_info > p {
    text-align: center;
  }

  .contact_form {
    padding: 30px 24px;
  }

  .contact_form h3 {
    font-size: 24px;
  }

  .contact_form .wpcf7-form > p:has(input[type="submit"]) {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
    gap: 12px;
  }

  .contact_form .wpcf7-spinner {
    margin: 0;
  }
}

@media (max-width: 767px) {
  .contact_info h2 {
    font-size: 28px;
  }

  .contact_item {
    padding: 16px;
  }

  .contact_icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    font-size: 20px;
  }

  .contact_icon i {
    font-size: 20px;
  }

  .contact_text h4 {
    font-size: 16px;
  }

  .contact_text p,
  .contact_text a {
    font-size: 14px;
  }

  .contact_form {
    padding: 24px 20px;
  }

  .contact_form h3 {
    font-size: 22px;
  }
}

/* Banner for Contact Page */
.contact_bnnr {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
}

.contact_bnnr::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 33, 34, 0.5);
}

.contact_bnnr .main_bnnr_wrap {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.contact_bnnr .main_bnnr_wrap h1 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact_bnnr .main_bnnr_wrap p {
  color: #ffffff;
  font-size: 18px;
  max-width: 600px;
  margin: 0;
  opacity: 0.95;
}

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

  .contact_bnnr .main_bnnr_wrap h1 {
    font-size: 36px;
  }

  .contact_bnnr .main_bnnr_wrap p {
    font-size: 16px;
  }
}


/* What Sets HesaBooks Apart Section - Updated Layout */
.what-sets-apart-section {
  padding: 100px 0;
  background-color: var(--bg-default);
}

.what-sets-apart-section .section-layout {
  display: flex;
  align-items: start;
  gap: 60px;
}

.what-sets-apart-section .section-left-column {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
}

.what-sets-apart-section .section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.what-sets-apart-section .section-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.what-sets-apart-section .section-header h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0 0 16px 0;
  text-align: left;
}

.what-sets-apart-section .section-subtext {
  font-size: 18px;
  line-height: 1.5;
  color: #555;
  margin: 0;
  max-width: 480px;
}

.what-sets-apart-section .features-quadrant {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.5rem 1.5rem;
  max-width: 900px;
}

.what-sets-apart-section .feature-card {
  background: var(--bg-paper);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(12, 60, 62, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.what-sets-apart-section .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 50, 50, 0.05);
}

.what-sets-apart-section .card-icon {
  margin-bottom: 12px;
  width: 48px;
  height: 48px;
}

.what-sets-apart-section .card-icon svg {
  width: 100%;
  height: 100%;
}

.what-sets-apart-section .card-icon .icon-dot {
  fill: var(--color-teal);
}

.what-sets-apart-section .feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.what-sets-apart-section .feature-card > p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.what-sets-apart-section .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.what-sets-apart-section .feature-list li {
  font-size: 13px;
  line-height: 1.65;
  color: #666;
  font-weight: 400;
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
}

.what-sets-apart-section .feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-teal);
  opacity: 0.75;
  font-weight: 600;
  font-size: 14px;
}

.what-sets-apart-section .section-security-aligned {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
}

.what-sets-apart-section .section-security-aligned .lucide-icon {
  width: 16px;
  height: 16px;
  color: var(--color-teal);
  opacity: 0.8;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .what-sets-apart-section {
    padding: 80px 0;
  }

  .what-sets-apart-section .section-layout {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  .what-sets-apart-section .section-left-column {
    flex: none;
    width: 100%;
  }

  .what-sets-apart-section .section-header {
    flex: none;
    text-align: center;
    align-items: center;
  }

  .what-sets-apart-section .section-header h2 {
    text-align: center;
    font-size: 36px;
  }

  .what-sets-apart-section .features-quadrant {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .what-sets-apart-section {
    padding: 60px 0;
  }

  .what-sets-apart-section .section-header {
    margin-bottom: 32px;
  }

  .what-sets-apart-section .section-header h2 {
    font-size: 28px;
  }

  .what-sets-apart-section .features-quadrant {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .what-sets-apart-section .feature-card {
    padding: 28px 24px;
  }

  .what-sets-apart-section .feature-card h3 {
    font-size: 16px;
  }

  .what-sets-apart-section .section-security-aligned {
    margin-top: 24px;
    font-size: 13px;
    justify-content: center;
  }
}

.what-sets-apart-section .section-pretitle {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--color-secondary);
  text-transform: uppercase;
  margin: 0 0 16px 0;
  display: block;
}

.what-sets-apart-section .section-top-label {
  text-align: center;
  margin-bottom: 48px;
}

.what-sets-apart-section .section-top-label .section-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--color-secondary);
  text-transform: uppercase;
  margin: 0;
  display: inline-block;
}

.what-sets-apart-section .learn-more-btn {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-teal);
  text-decoration: none;
  margin-top: auto;
  padding-top: 16px;
  transition: all 0.3s ease;
}

.what-sets-apart-section .learn-more-btn:hover {
  color: var(--color-accent);
  transform: translateX(4px);
}

.what-sets-apart-section .feature-card {
  display: flex;
  flex-direction: column;
}
