/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --finris-font: "DM Sans", sans-serif;
  --finris-font-two: "Koulen", sans-serif;
  --finris-gray: #5D6B81;
  --finris-gray-rgb: 93, 107, 129;
  
  --finris-base: #ffffff; /* changed from #ff7948 */
  --finris-base-rgb: 255, 255, 255; /* changed from 255, 121, 72 */

  --finris-primary: #FFD700;
  --finris-primary-rgb: 254, 183, 43;
  
  --finris-black: #ffffff; /* changed from #ff7948 */
  --finris-black-rgb: 255, 255, 255; /* changed from 36, 56, 85 */
  
  --finris-white: #ffffff;
  --finris-white-rgb: 255, 255, 255;
  
  --finris-bdr-color: #E7E7E8;
  --finris-bdr-color-rgb: 231, 231, 232;
}


.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--finris-font);
  color: var(--finris-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  background-color: var(--finris-white); /* ✅ Add this */
}


body.locked {
  overflow: hidden;
}


.horizontal-container {
  text-align: center;
   display: flex;
   align-content: center;
   align-items: center;
    width: 40%;
  gap: 0px;
  justify-content: center;
}


.hover-button {
  color: white;
  border: none;
  border-radius: 18px;
  cursor: pointer;
  background: rgba(168,85,247,0.07); /* subtle glass effect */
  box-shadow: 0 2px 12px 0 rgba(90,70,255,0.07);
  transition: 
    transform 0.25s cubic-bezier(.44,1.8,.42,1),
    box-shadow 0.28s cubic-bezier(.44,1.8,.42,1),
    background 0.3s;
  padding: 18px 12px 26px 12px;
  margin: 12px 10px;
  text-align: center;
  min-width: 180px;
  max-width: 240px;
  display: inline-block;
  position: relative;
}

.hover-button img.rounded-img {
  border-radius: 13px;
  width: 95px;
  height: 95px;
  margin-bottom: 10px;
  box-shadow: 0 2px 16px 0 rgba(90,70,255,0.09);
  transition: box-shadow 0.28s, transform 0.25s;
}

.hover-button:hover {
  transform: scale(1.06) translateY(-6px);
  background: rgba(168,85,247,0.11);
  box-shadow: 0 8px 32px 0 rgba(168,85,247,0.18), 0 1.5px 7px 0 rgba(255,130,0,0.08);
  z-index: 2;
}

.hover-button:hover img.rounded-img {
  box-shadow: 0 6px 24px 0 rgba(90,70,255,0.19);
  transform: scale(1.07) rotate(-2deg);
}


.rounded-img {
  width: 200px;
  height: auto;
  border-radius: 20px;
}


a {
  color: var(--finris-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--finris-font-two);
  color: var(--finris-black);
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  text-transform: none !important;
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

/* Vertical scrollbar styling */
::-webkit-scrollbar-track {
  box-shadow: none;
  -webkit-box-shadow: none;
  background-color: #ffffff;
  border-radius: 10px;
}

::-webkit-scrollbar {
  width: 8px;
  height: 0; /* This removes the horizontal scrollbar */
  background-color: #ffffff;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: linear-gradient(135deg, #a855f7 0%, #c084fc 50%, #8b5cf6 100%);
  box-shadow: 
    0 0 10px rgba(168, 85, 247, 0.6),
    0 0 20px rgba(168, 85, 247, 0.4),
    0 0 30px rgba(168, 85, 247, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #9333ea 0%, #a855f7 50%, #7c3aed 100%);
  box-shadow: 
    0 0 15px rgba(168, 85, 247, 0.8),
    0 0 25px rgba(168, 85, 247, 0.6),
    0 0 35px rgba(168, 85, 247, 0.4),
    0 0 45px rgba(168, 85, 247, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform: scale(1.05);
}

::-webkit-scrollbar-thumb::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: laserFlare 2s ease-in-out infinite;
}

/* Hide horizontal scrollbar completely */
::-webkit-sc



@media (min-width: 1320px) {
  .container {
    max-width: 1320px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}


/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--finris-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--finris-base);
  opacity: .3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width .3s, height .3s, opacity .3s;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--finris-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: .4;
}

/* Section Title Css */

.section-title {
  position: relative;
  display: block;
  margin-bottom: 47px;
  z-index: 1;
}

.section-title__tagline-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.section-title__tagline-icon-box {
  position: relative;
  display: flex;
  align-items: center;
}

.section-title__tagline-icon-1 {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  background-color: var(--finris-base);
  transform: rotate(45deg);
  border-radius: 4px;
  z-index: 2;
}

.section-title__tagline-icon-2 {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid var(--finris-black);
  transform: rotate(45deg);
  border-radius: 4px;
  margin-left: -8px;
  z-index: 1;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 1em;
  color: var(--finris-black);
  font-weight: 500;
}

.section-title__title {
  color: var(--finris-black);
  font-size: 48px;
  line-height: 1.2em;
  font-weight: 400;
  text-transform: none;
  margin: 21px 0 0;
}

.section-title__title span {
  color: var(--finris-base);
  position: relative;
  display: inline-block;
}

.section-title__title .split-line {
  text-transform: none;
}


.section-title-two {
  position: relative;
  display: block;
  margin-bottom: 47px;
  z-index: 1;
}

.section-title-two__tagline-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.section-title-two__tagline-icon-box {
  position: relative;
  display: flex;
  align-items: center;
}

.section-title-two__tagline-icon-1 {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  border: 1px solid var(--finris-black);
  border-radius: 50%;
  z-index: 1;
}

.section-title-two__tagline-icon-2 {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  background-color: var(--finris-base);
  border-radius: 50%;
  margin-left: -9px;
  z-index: 1;
}

.section-title-two__tagline {
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 1em;
  color: var(--finris-base);
  font-weight: 400;
  font-family: var(--finris-font-two);
  text-transform: none;
}

.section-title-two__title {
  color: var(--finris-black);
  font-size: 40px;
  line-height: 1.3em;
  font-weight: 400;
  text-transform: none;
  margin: 21px 0 0;
}

.section-title-two__title span {
  color: var(--finris-base);
  position: relative;
  display: inline-block;
}

.section-title-two__title span:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6232F8 0%, rgba(98, 50, 248, 0) 100%);
}

.section-title-two__title .split-line {
  text-transform: none;
}




/* Thm Btn Css */
.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--finris-base);
  color: var(--finris-white);
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  padding: 21px 30px 21px;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.5s linear;
  z-index: 1;
}

.thm-btn>span {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  margin-right: 4px;
}


.thm-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  background-color: var(--finris-black);
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.thm-btn:hover:before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.thm-btn::after {
  position: absolute;
  background-color: var(--finris-black);
  bottom: 0;
  right: 0;
  content: "";
  width: 50%;
  height: 0;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}

.thm-btn:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.thm-btn:hover {
  color: var(--finris-white);
}


.thm-btn-two {
  border-radius: 30px;
}





/*---------------------------------
     Preloader CSS
-----------------------------------*/
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden !important;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-center {
  position: absolute;
  font-size: 44px;
  font-weight: bold;
  color: #a855f7;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

.loader-center::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #e5d5fa;
  filter: blur(14px);
  opacity: 0.85;
  z-index: -1;
  pointer-events: none;
  animation: center-glow-pulse 1.6s infinite;
}

@keyframes center-glow-pulse {
  0%, 100% { opacity: 0.64; }
  50% { opacity: 1; }
}

@keyframes pulse-center {
  0%, 100% { filter: brightness(1) blur(0.2px); }
  45% { filter: brightness(1.18) blur(1px); }
  65% { filter: brightness(1) blur(0.2px); }
}

.orbit-dot {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  margin: -14px 0 0 -14px;
  box-shadow: 0 0 24px 3px #b794f4a5;
  animation: orbit 0.6s linear infinite; /* ultra fast */
}

.dot1 {
  background: linear-gradient(135deg, #ff8200 40%, #ffe066 100%);
  animation-delay: 0s;
}

.dot2 {
  background: linear-gradient(135deg, #a855f7 40%, #ff8200 100%);
  animation-delay: 0.12s;
}

.dot3 {
  background: linear-gradient(135deg, #ffd200 20%, #a855f7 100%);
  animation-delay: 0.24s;
}

@keyframes orbit {
  0%   { transform: rotate(0deg) translateX(60px) scale(1); }
  35%  { transform: rotate(126deg) translateX(60px) scale(1.12); }
  50%  { transform: rotate(180deg) translateX(60px) scale(1.15); }
  85%  { transform: rotate(306deg) translateX(60px) scale(0.98); }
  100% { transform: rotate(360deg) translateX(60px) scale(1); }
}





/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.scroll-to-top:hover {
  color: var(--finris-base);
}

.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-left: 10px;
}

.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--finris-base);
  position: relative;
  overflow: hidden;
}

.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--finris-black);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}

/** xs sidebar **/
.xs-sidebar-group .xs-overlay {
  left: 0%;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  -webkit-transition: all .4s ease-in .8s;
  -o-transition: all .4s ease-in .8s;
  transition: all .4s ease-in .8s;
  cursor: url(../images/icon/cross-out.png),
    pointer;
  z-index: 9999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: .8;
  visibility: visible;
  -webkit-transition: all .8s ease-out 0s;
  -o-transition: all .8s ease-out 0s;
  transition: all .8s ease-out 0s;
  right: 100%;
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--finris-base);
  border-color: var(--finris-base);
}

.xs-sidebar-widget {
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  visibility: hidden;
  opacity: 0;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  left: 0;
  background-color: var(--finris-black);
  -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
  padding: 70px 30px;
}

.sidebar-widget-container {
  position: relative;
  top: 150px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-in .3s;
  -o-transition: all .3s ease-in .3s;
  transition: all .3s ease-in .3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  top: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 1s ease-out 1.2s;
  -o-transition: all 1s ease-out 1.2s;
  transition: all 1s ease-out 1.2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: .8;
  z-index: 0;
}

.xs-bg-black {
  background-color: #000000;
}

.xs-sidebar-group .content-inner .logo {
  position: relative;
  max-width: 172px;
  width: 100%;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 400;
  text-transform: none;
  margin-bottom: 15px;
}

.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 30px;
  padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box p {
  color: #ffffff;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[typinge='text'],
.xs-sidebar-group .content-inner .form-inner .form-group input[type='email'],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 10px 20px;
  color: #848484;
  border: none;
  outline: none;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn {
  border: none;
  outline: none;
  background-color: var(--finris-white);
  color: var(--finris-black);
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  padding: 21px 45px 21px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn:hover {
  color: var(--finris-white);
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn:after {
  background-color: var(--finris-base);
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  resize: none;
  height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
  border-color: #ff7948;
}



/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  background: transparent;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-header:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  content: "";
  background-color: rgba(var(--finris-white-rgb), 0.05);
  z-index: -1;
}

.main-menu {
  position: relative;
  display: block;
}

.main-menu__wrapper {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(var(--finris-black-rgb), .10);
}

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

.main-menu__left {
  display: block;
}

.main-menu__logo {
  display: block;
  padding: 30.5px 0;
}

.main-menu__main-menu-box {
  display: block;
}

.main-menu__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.main-menu__search-box {
  position: relative;
  display: block;
}

.main-menu__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 26px;
  color: var(--finris-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  cursor: pointer;
}

.main-menu__search:hover {
  color: var(--finris-base);
}

.main-menu__btn-box {
  position: relative;
  display: block;
}

.main-menu__nav-sidebar-icon {
  position: relative;
  display: block;
}

.main-menu__nav-sidebar-icon a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid var(--finris-black);
  border-radius: 50%;
  font-size: 20px;
  color: var(--finris-black);
}

.main-menu__nav-sidebar-icon a:hover {
  border: 1px solid var(--finris-base);
  background-color: var(--finris-base);
  color: var(--finris-white);
}

.stricky-header.main-menu {
  background-color: #fbe1ec;
}

.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}



@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  padding-top: 27px;
  padding-bottom: 27px;
  position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 19px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--finris-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 500;
  line-height: 16px;
  padding: 10px 15px 10px;
  border-radius: 18px;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
  color: var(--finris-base);
}

.main-menu .main-menu__list>li>a::before,
.stricky-header .main-menu__list>li>a::before {
  content: "";
  border: 1px solid var(--finris-black);
  border-radius: 18px;
  position: absolute;
  bottom: 0;
  left: 0px;
  right: 0px;
  top: 0;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a::before,
.main-menu .main-menu__list>li:hover>a::before,
.stricky-header .main-menu__list>li.current>a::before,
.stricky-header .main-menu__list>li:hover>a::before {
  transform: scale(1, 1);
  transform-origin: right center;
  border: 1px solid var(--finris-base);
}

.main-menu .main-menu__list>li.dropdown>a {
  padding-right: 30px;
}

.main-menu .main-menu__list>li.dropdown>a:after {
  position: absolute;
  top: 50%;
  right: 15px;
  font-family: "Font Awesome 5 Pro";
  content: "\f107";
  font-size: 14px;
  color: var(--finris-black);
  transform: translateY(-50%);
  font-weight: 700;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a::after,
.main-menu .main-menu__list>li:hover>a::after,
.stricky-header .main-menu__list>li.current>a::after,
.stricky-header .main-menu__list>li:hover>a::after {
  color: var(--finris-base);
}


img.clickMe {
  position: absolute;
  width: 30px;
  left: 21px;
  bottom: -22px;
  opacity: 0.20;
}



.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ff7948;
  min-width: 280px;
  padding: 25px 30px 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transform: perspective(500px) rotatex(-20deg);
  transform-origin: 50% 0%;
  -webkit-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -khtml-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -moz-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -ms-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -o-box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 9%);
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  transform: perspective(500px) rotatex(0);
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}



.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: 1px solid rgba(var(--finris-white-rgb), 0.05);
  margin-top: 0px;
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  display: flex;
  align-items: center;
  color: rgba(var(--finris-white-rgb), 0.80);
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  padding: 17px 0px 17px;
  -webkit-transition: all 200ms linear 0ms;
  -khtml-transition: all 200ms linear 0ms;
  -moz-transition: all 200ms linear 0ms;
  -ms-transition: all 200ms linear 0ms;
  -o-transition: all 200ms linear 0ms;
  transition: all 200ms linear 0ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  color: rgba(var(--finris-white-rgb), 1.0);
  padding-left: 5px;
}

.main-menu .main-menu__list>li>ul>li.dropdown>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li.dropdown>a::before,
.stricky-header .main-menu__list>li>ul>li.dropdown>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li.dropdown>a::before {
  position: absolute;
  top: 50%;
  right: 0px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  content: "\f105";
  font-size: 14px;
  color: var(--finris-white);
  transform: translateY(-50%) scale(1.0) rotate(0deg);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list>li>ul>li.dropdown:hover>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li.dropdown:hover>a::before,
.stricky-header .main-menu__list>li>ul>li.dropdown:hover>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li.dropdown:hover>a::before {
  color: var(--finris-base);
  transform: translateY(-50%) scale(1) rotate(90deg);
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 100%;
  border-left: 40px solid transparent;
  background-color: transparent;
  width: 320px;
}

.main-menu .main-menu__list>li>ul>li>ul::before,
.stricky-header .main-menu__list>li>ul>li>ul::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  bottom: 0;
  right: 0;
  background-color: #ff7948;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}








.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--finris-base);
  cursor: pointer;
}

.mobile-nav__buttons a+a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--finris-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--finris-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
  position: relative;
  top: 2px;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--finris-black);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--finris-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--finris-white);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a>.main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--finris-font, "Rubik", sans-serif);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--finris-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--finris-base);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--finris-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--finris-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--finris-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--finris-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--finris-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--finris-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--finris-base);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--finris-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}



/*--------------------------------------------------------------
# Megamenu Popup
--------------------------------------------------------------*/
.mobile-nav__container .main-menu__list>.megamenu.megamenu-clickable>ul,
.main-menu .main-menu__list>.megamenu.megamenu-clickable>ul,
.stricky-header .main-menu__list>.megamenu.megamenu-clickable>ul {
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  width: 100vw;
  height: 100vh;
  visibility: visible;
  overflow-y: scroll;
  visibility: hidden;
  opacity: 0;
  transform: translateY(100px);
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
  z-index: 999999;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
  padding: 0;
  background-color: #ff7948;
  display: block !important;
  margin: 0;
}

.main-menu__list>li.megamenu-clickable>ul::-webkit-scrollbar {
  display: none;
}

.mobile-nav__container .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active,
.main-menu .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active,
.stricky-header .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
}




body.megamenu-popup-active {
  overflow: hidden;
}

body.megamenu-popup-active .stricky-header {
  bottom: 0;
}

body.megamenu-popup-active .mobile-nav__content {
  overflow: unset;
}

.mobile-nav__content .megamenu-popup-content-one .container {
  padding-left: 15px;
  padding-right: 15px;
}

.megamenu-popup {
  position: relative;
}

.megamenu-popup .megamenu-clickable--close {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--finris-white);
  background-color: rgba(255, 255, 255, 0.2);
}



@media (min-width: 1300px) {
  .megamenu-popup .megamenu-clickable--close {
    top: 0px;
    right: 0px;
  }
}

.megamenu-popup .megamenu-clickable--close:hover {
  color: var(--finris-primary);
}





.megamenu-popup .megamenu-clickable--close span {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
  color: currentColor;
  transition: all 500ms ease;
}

.megamenu-popup .megamenu-clickable--close span::before,
.megamenu-popup .megamenu-clickable--close span::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.megamenu-popup .megamenu-clickable--close span::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.megamenu-popup-content-one {
  padding-top: 120px;
  padding-bottom: 120px;
}

.megamenu-popup-content-one .row {
  --bs-gutter-y: 30px;
  justify-content: center;
}

.megamenu-popup-content-one__single {
  background-color: var(--finris-white);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  text-align: center;
  border-radius: var(--finris-bdr-radius);
  transition: 500ms ease;
  transform: translateY(0px);
}

.megamenu-popup-content-one__single:hover {
  transform: translateY(-10px);
}

.megamenu-popup-content-one__image {
  position: relative;
  overflow: hidden;
  border-top-left-radius: var(--finris-bdr-radius);
  border-top-right-radius: var(--finris-bdr-radius);
}

.megamenu-popup-content-one__image img {
  max-width: 100%;
  width: 100%;
  border-top-left-radius: var(--finris-bdr-radius);
  border-top-right-radius: var(--finris-bdr-radius);
  transition: filter 500ms ease;
  filter: blur(0px);
}

.megamenu-popup-content-one__single:hover .megamenu-popup-content-one__image img {
  filter: blur(2px);
}

.megamenu-popup-content-one__btns {
  background-color: rgba(var(--finris-black-rgb), .70);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transform: scale(1, 0);
  transition: transform 500ms ease, opacity 600ms linear;
  transform-origin: top center;
  opacity: 0;
}

.megamenu-popup-content-one__single:hover .megamenu-popup-content-one__btns {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: bottom center;
}

.megamenu-popup-content-one__title {
  margin: 0;
  text-align: center;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  color: var(--finris-white);
  background-color: var(--finris-base);
  text-transform: none;
  padding-top: 18px;
  padding-bottom: 16px;
  letter-spacing: 0.09em;
}

.megamenu-popup-content-one__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.megamenu-popup-content-one__title a:hover {
  background-size: 100% 1px;
}

.megamenu-popup-content-one__btn {
  padding: 19px 20px 19px;
  width: 155px;
  text-align: center;
}

.megamenu-popup-content-one__btn::after {
  background-color: var(--finris-white);
}

.megamenu-popup-content-one__btn:hover {
  color: var(--finris-black);
}


@media (max-width: 1199px) {
  .megamenu-popup-content-one__btns {
    flex-direction: column;
  }
}



/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
  background: transparent;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-header-two:after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  content: "";
  background-color: rgba(var(--finris-white-rgb), 0.02);
  z-index: -1;
}

.main-menu-two__top {
  position: relative;
  display: block;
}

.main-menu-two__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 10px 55px 9px;
  border-bottom: 1px solid rgba(var(--finris-white-rgb), .10);
}

.main-menu-two__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__contact-list li+li {
  margin-left: 46px;
}

.main-menu-two__contact-list li:before {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 2px;
  left: -23px;
  width: 1px;
  background-color: rgba(var(--finris-white-rgb), .20);
}

.main-menu-two__contact-list li:first-child:before {
  display: none;
}

.main-menu-two__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__contact-list li .icon i {
  font-size: 16px;
  color: var(--finris-primary);
  position: relative;
  display: inline-block;
}

.main-menu-two__contact-list li .text {
  margin-left: 10px;
}

.main-menu-two__contact-list li .text p {
  font-size: 16px;
  font-weight: 400;
  color: var(--finris-white);
  text-transform: none;
  font-family: var(--finris-font-two);
  letter-spacing: 0.03em;
  line-height: 16px;
}

.main-menu-two__contact-list li .text p a {
  color: var(--finris-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__contact-list li .text p a:hover {
  color: var(--finris-primary);
}

.main-menu-two__top-welcome-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--finris-white);
  text-transform: none;
  font-family: var(--finris-font-two);
  letter-spacing: 0.03em;
  line-height: 16px;
}

.main-menu-two__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu-two__top-time {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu-two__top-time-icon {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu-two__top-time-icon span {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: var(--finris-primary);
}

.main-menu-two__top-text {
  font-size: 16px;
  font-weight: 400;
  color: var(--finris-white);
  text-transform: none;
  font-family: var(--finris-font-two);
  letter-spacing: 0.03em;
  line-height: 16px;
  margin-left: 10px;
}

.main-menu-two__social {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 40px;
}

.main-menu-two__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid rgba(var(--finris-white-rgb), .10);
  border-radius: 5px;
  font-size: 15px;
  color: var(--finris-white);
  background-color: transparent;
  overflow: hidden;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
}

.main-menu-two__social a:hover {
  color: var(--finris-white);
  border: 1px solid var(--finris-primary);
}

.main-menu-two__social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: var(--finris-primary);
  transform: scale(0.5);
  border-radius: 5px;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: -1;
}

.main-menu-two__social a:hover::before {
  transform: scale(1.0);
  opacity: 1;
}

.main-menu-two__social a+a {
  margin-left: 5px;
}

.main-menu-two__wrapper {
  position: relative;
  display: block;
}

.main-menu-two__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 55px;
}

.main-menu-two__left {
  display: block;
}

.main-menu-two__logo {
  display: block;
  padding: 30.5px 0;
}

.main-menu-two__main-menu-box {
  display: block;
}

.main-menu-two__right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.main-menu-two__call {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: var(--finris-base);
  border-radius: 50%;
  color: var(--finris-white);
  font-size: 17px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__call-icon:hover {
  background-color: var(--finris-primary);
  color: var(--finris-white);
}

.main-menu-two__call-content {
  position: relative;
  display: block;
  margin-left: 10px;
}

.main-menu-two__call-sub-title {
  font-size: 14px;
  font-weight: 400;
  color: rgba(var(--finris-white-rgb), .90);
  line-height: 14px;
  font-family: var(--finris-font-two);
  letter-spacing: 0.03em;
  text-transform: none;
}

.main-menu-two__call-number {
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 6px;
  font-family: var(--finris-font-two);
  letter-spacing: 0.03em;
  text-transform: none;
}

.main-menu-two__call-number a {
  color: var(--finris-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__call-number a:hover {
  color: var(--finris-primary);
}

.main-menu-two__search-cart-box {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__search-box {
  position: relative;
  display: block;
}

.main-menu-two__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--finris-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  cursor: pointer;
}

.main-menu-two__search:hover {
  color: var(--finris-primary);
}

.main-menu-two__cart-box {
  position: relative;
  display: block;
  margin-left: 20px;
}

.main-menu-two__cart {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--finris-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__cart:hover {
  color: var(--finris-primary);
}

.main-menu-two__btn::after {
  background-color: var(--finris-white);
}

.main-menu-two__btn:hover {
  color: var(--finris-black);
}


.main-menu-two .main-menu__list>li>a,
.stricky-header.main-menu-two .main-menu__list>li>a {
  color: var(--finris-white);
}

.main-menu-two .main-menu__list>li>a::before,
.stricky-header.main-menu-two .main-menu__list>li>a::before {
  border: 1px solid var(--finris-primary);
}

.main-menu-two .main-menu__list>li.dropdown>a:after {
  color: var(--finris-white);
}

.main-menu-two .main-menu__list>li.current>a,
.main-menu-two .main-menu__list>li:hover>a,
.stricky-header.main-menu-two .main-menu__list>li.current>a,
.stricky-header.main-menu-two .main-menu__list>li:hover>a {
  color: var(--finris-primary);
}

.main-menu-two .main-menu__list>li.current>a::before,
.main-menu-two .main-menu__list>li:hover>a::before,
.stricky-header.main-menu-two .main-menu__list>li.current>a::before,
.stricky-header.main-menu-two .main-menu__list>li:hover>a::before {
  border: 1px solid var(--finris-primary);
}

.main-menu-two .main-menu__list>li.current>a::after,
.main-menu-two .main-menu__list>li:hover>a::after,
.stricky-header.main-menu-two .main-menu__list>li.current>a::after,
.stricky-header.main-menu-two .main-menu__list>li:hover>a::after {
  color: var(--finris-primary);
}


.stricky-header.main-menu-two {
  background-color: var(--finris-black);
}



/*--------------------------------------------------------------
# Navigations three
--------------------------------------------------------------*/
.main-header-three {
  background: transparent;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}






/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 120px;
  width: 100%;
  z-index: 99999;
  transform: translateY(-100%);
  transition: all 0.5s;
}

.search-active .search-popup {
  transform: translateY(0%);
}

.search-popup .color-layer {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 120px;
  width: 100%;
  background-color: var(--finris-base);
  transition: all 0.5s;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.05);
}

.sidenav-bar-visible .search-popup {
  display: none;
}

.search-popup .close-search {
  position: absolute;
  right: 25px;
  top: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 0%;
  cursor: pointer;
  color: #ffffff;
  font-size: 30px;
  transition: all 0.5s;
  border: none;
  opacity: 0;
  transform: translateX(100px);
  visibility: hidden;
  z-index: 9999;
}

.search-popup .close-search:hover {
  color: var(--finris-base);
  background-color: rgba(255, 255, 255, 1.0);
}

.search-active .search-popup .close-search {
  opacity: 1;
  transform: translateX(0px);
  visibility: visible;
  -webkit-transition-delay: 1500ms;
  -moz-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  transition-delay: 1500ms;
}




.search-popup form {
  position: absolute;
  max-width: 700px;
  top: 25px;
  left: 0px;
  right: 0px;
  margin: 0px auto 0;
  opacity: 0;
  transition: all 0.5s;
  z-index: 999;
}

.search-active .search-popup form {
  opacity: 1;
}

.search-popup .form-group {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
  position: relative;
  display: block;
  background-color: rgba(255, 255, 255, 1.0);
  font-size: 18px;
  color: var(--finris-black);
  height: 70px;
  width: 100%;
  padding: 10px 30px 10px 75px;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  text-transform: capitalize;
  border: 0px solid rgba(0, 0, 0, 0.10)
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"]:focus {
  outline: none;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
  position: absolute;
  left: 0px;
  top: 0px;
  height: 70px;
  background: var(--finris-black);
  text-align: center;
  font-size: 20px;
  color: var(--finris-white);
  padding: 0;
  cursor: pointer;
  border: none;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 60px;
}

.search-popup .form-group button i {
  font-style: normal;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
  background-color: var(--finris-primary);
}

.search-popup input::placeholder {
  color: var(--finris-black);
}






/*--------------------------------------------------------------
# Edit All Css
--------------------------------------------------------------*/
.portfolio-one__btn::after {
  background-color: var(--finris-white);
}

.portfolio-one__btn::before {
  background-color: var(--finris-white);
}

.portfolio-one__btn:hover {
  color: var(--finris-black);
}

.comment-one__btn {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  line-height: 14px;
  font-weight: 500;
  padding: 5px 9px 5px;
  border-radius: 13px;
  gap: 5px;
}

.comment-one__btn span {
  font-size: 10px;
}

.sidebar__subscribe-btn {
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  font-size: 15px;
  line-height: 15px;
  padding: 19px 25px 19px;
}

.cta-three__btn {
  border: none;
}

.services-details__contact-btn {
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  padding: 21px 25px 21px;
  gap: 5px;
  border-radius: 30px;
}

.services-details__contact-btn i {
  position: relative;
  top: 2px;
  margin-right: 5px;
}

/*--------------------------------------------------------------
# Carousle Dot Style
--------------------------------------------------------------*/

.carousel-dot-style.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.carousel-dot-style.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.carousel-dot-style.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.carousel-dot-style.owl-carousel .owl-dots {
  position: absolute;
  bottom: -50px;
  left: 0px;
  right: 0;
  text-align: center;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--finris-base);
  margin: 0px 5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.carousel-dot-style.owl-carousel .owl-dot.active {
  width: 10px;
  height: 10px;
  background-color: var(--finris-black);
}

.carousel-dot-style.owl-carousel .owl-dot:focus {
  outline: none;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

.banner-two__btn::after {
  background-color: var(--finris-white);
}

.banner-two__btn:hover {
  color: var(--finris-black);
}

 .full-page-wrap2 {
      font-family: 'Segoe UI', sans-serif;
      background: #ffffff;
      color: #fff;
      overflow: hidden;
    }

 .full-page-wrap {
      font-family: 'Segoe UI', sans-serif;
      background: #ffffff;
      color: #fff;
      overflow: hidden;
    }

    .custom-header-bar {
  position: absolute;
  top: 0;
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(200, 160, 255, 0.2) 40%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  position: relative;
}

@media (max-width: 768px) {
  .custom-header-bar {
    flex-direction: column;
    gap: 15px;
    padding: 15px 20px 20px 20px;
  }
 
  .main-menu-links {
    width: 100%;
    justify-content: center;
  }
 
  .main-menu-links a {
    font-size: 14px;
    padding: 8px 12px;
  }
}
 
/* Glassy overlay effect on content */
.custom-header-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
  pointer-events: none;
  z-index: 0;
}
 
/* Ensure actual content appears above the overlay */
.custom-header-bar > * {
  position: relative;
  z-index: 1;
}

    /* .custom-header-bar {
  position: absolute;
  top: 0;
  width: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(200, 160, 255, 0.2) 40%,
    rgba(255, 255, 255, 0.05) 100%
  );
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
} */

    .brand-logo-name {
      font-size: 2.8rem;
      font-weight: bold;
      color: #fff;
       padding-left: 20px;
    }

    .main-menu-links {
      display: flex;
      align-items: center;
      align-content: center;
      align-self:center ;
  text-align:center ;
      gap: 30px;
          padding-right: 60px;
    }

    .main-menu-links a {
      text-decoration: none; 
        align-items: end;
      align-content: end;
      align-self:end ;
  text-align:end ;
      color: rgb(0, 0, 0);
      font-weight: 700;
      font-size:17px;
    }

 .mobile-menu-icon {
  display: none;
}

    /* .banner-section {
      width: 100%;
      padding-top: 120px;
      padding-bottom: 120px;
      position: relative;
      color: #000000;
      background: linear-gradient(to bottom, #000000 50%,  #000000 100%);
      text-align: center;
    } */
.banner-section {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #ffffff;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,      /* lightest (almost white-purple) */
    #e5dcfa 35%,     /* very soft purple */
    #b794f4 100%     /* your main purple */
  );
  text-align: center;
  overflow: hidden;
}


/* AI processing grid overlay */
/* AI processing grid overlay */
.banner-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    /* Removed matrix lines */
    /* Data flow gradient */
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 20%,
      transparent 80%,
      rgba(148, 0, 211, 0.15) 100%
    ),
    /* Corner matrix glow */
    radial-gradient(ellipse at top left, rgba(255, 215, 0, 0.12) 0%, transparent 0%),
    radial-gradient(ellipse at bottom right, rgba(255, 165, 0, 0.12) 0%, transparent 0%);
  animation: gridPulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes gridPulse {
  0%, 100% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
}

/* Enhanced text visibility */
.banner-section > * {
  position: relative;
  z-index: 3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.banner-section > * {
  position: relative;
  z-index: 3;
}
 
@keyframes neuralPulse {
  0%, 100% { 
    transform: scale(1);
    opacity: 0.3;
  }
  50% { 
    transform: scale(1.05);
    opacity: 0.6;
  }
}

    .banner-title-wrapper {
            display: flex;
            justify-content: center;
            margin-bottom: 10px;
            position: relative;
        }

 
        .banner-title {
            text-align: center;
            line-height: 1.4;
            position: relative;
            z-index: 1;
        }
 
        .banner-top,
        .banner-bottom {
            font-size: 3.5rem;
            font-weight: bold;
            display: block;
            position: relative;
            margin: 5px 0;
        }
 
        .banner-top {
            color: #ff7948;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
 
           .banner-bottom {
            color: #ffffff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

    .banner-desc {
      font-size: 1.4rem;
      color: #000000;
      font-weight:500;
      margin-bottom: 25px;
      width:80%; 
      align-items: center;
      line-height: 1.5;
    }

     .help-text {
      font-size: 1.4rem;
      color: #000000;
      font-weight:500;
      margin-bottom: 25px;
      width:80%; 
      align-items: center;
      line-height: 1.5;
    }

.apply-button {
  background: linear-gradient(135deg, #7c0fb5 0%, #7c0fb5 100%);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  align-items: center;
  align-self: center;
  text-decoration: none;
  display: inline-flex;
  justify-content: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 4px 16px rgba(168, 85, 247, 0.35);
  position: relative;
  overflow: hidden;
}

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

.apply-button:hover {
  color: #ffffff; /* keep text white */
  background: linear-gradient(135deg, #7c0fb5 0%, #c084fc 100%);
  transform: scale(1.05);
  box-shadow: 0 6px 22px rgba(168, 85, 247, 0.45);
}

.apply-button:hover::before {
  left: 100%;
}

.apply-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(168, 85, 247, 0.3);
}


.apply-button2 {
  background: linear-gradient(135deg, #ff7948 0%, #ff6230 100%);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(255, 121, 72, 0.3);
  position: relative;
  overflow: hidden;
}

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

.apply-button2:hover {
  color: #000000;
  background: linear-gradient(135deg, #ff8a5b 0%, #ff7444 100%);
  transform: scale(1.05); /* Zoom in by 5% */
  box-shadow: 0 6px 20px rgba(255, 121, 72, 0.4);
}

.apply-button2:hover::before {
  left: 100%;
}

.apply-button2:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(255, 121, 72, 0.3);
}
    .banner-icon-box {
      position: absolute;
      width: 50px;
      height: 50px;
      
      border-radius: 10px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .icon-top-left { top: 360px; left: 50px; }
    .icon-top-right { top: 340px; right: 120px; }
    .icon-bottom-left { bottom: 150px; left: 50px; }
    .icon-bottom-right { bottom: 280px; right: 120px; }

    .move-upward {
      transform: translateY(-120px);
      opacity: 1;
    }
    .icon-top-left img, .icon-top-right img, .icon-bottom-left img, .icon-bottom-right img{
      width:110px;
    
    }

    .move-downward {
      transform: translateY(120px);
      opacity: 1;
    }

    @media (max-width: 768px) {
  .main-menu-links {
    display: flex;
    position: static;
    background: transparent;
    flex-direction: row;
    padding: 0;
    border-radius: 0;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
      .brand-logo-name {
      
       padding-left: 2px;
    }

 .icon-top-left img, .icon-top-right img, .icon-bottom-left img, .icon-bottom-right img{
      width:50px;
    
    }
     .icon-top-left { top: 300px; left: 30px; }
    .icon-top-right { top: 320px; right: 40px; }
    .icon-bottom-left { bottom: 150px; left: 30px; }
    .icon-bottom-right { bottom: 280px; right: 40px; }

    .full-page-wrap {
      font-family: 'Segoe UI', sans-serif;
      background: #ffffff;
      color: #fff;
      overflow: hidden;
    }
      .banner-icon-box {
        width: 40px;
        height: 40px;
      }
    }
   @media (max-width: 901px) {
  .main-menu-links {
    display: flex;
    position: static;
    background: transparent;
    flex-direction: row;
    padding: 0;
    border-radius: 0;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
 .icon-top-left img, .icon-top-right img, .icon-bottom-left img, .icon-bottom-right img{
      width:50px;
    
    }
   

    .full-page-wrap {
      font-family: 'Segoe UI', sans-serif;
      background: #ffffff;
      color: #fff;
      overflow: hidden;
    }

     
    }
     .loan-section {
      position: relative;
      padding-top:60px;
      padding-bottom: 60px;
background: rgb(177, 132, 230);
backdrop-filter: blur(10px);     
-webkit-backdrop-filter: blur(10px); 
      text-align: center;
      overflow: hidden;
    }

    .loan-title {
      font-size: 3.7rem;
      font-weight: bold;
         color: #000000;
      margin-bottom: 20px;
      max-width: 600px;
      margin-inline: auto;
    }
    .loan-title2 {
      font-size: 1.7rem;
      font-weight: normal;
         color: #000000;
      margin-bottom: 20px;
      max-width: 600px;
      margin-inline: auto;
    }

    .loan-subtitle {
      font-size: 1.2rem;
      color: #555;
      max-width: 700px;
      margin-inline: auto;
    }

    .zig-icon {
      position: absolute;
      width: 110px;
      height: auto;
      transition: transform 0.3s ease;
    }

    .zig-left-top { top: 70px; left: 170px; }
    .zig-left-bottom { top: 180px; left: 60px; }
    .zig-right-top { top: 70px; right: 170px; }
    .zig-right-bottom { top: 180px; right: 60px; }

.features-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 80px;
  position: relative;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}

/* Force first 3 boxes to stay on first row */
.feature-box:nth-child(1),
.feature-box:nth-child(2),
.feature-box:nth-child(3) {
  flex-basis: calc(33.33% - 27px);
  min-width: 320px;
}

/* Force last 2 boxes to center on second row */
.feature-box:nth-child(4),
.feature-box:nth-child(5) {
  flex-basis: calc(50% - 20px);
  min-width: 320px;
}

/* Connecting line for desktop */
/* Connecting line for first row (boxes 1-2-3) */
.features-container::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #e0e0e0 10%, 
    #e0e0e0 90%, 
    transparent 100%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 1s ease;
}

/* Connecting line for second row (boxes 4-5) */
.features-container::after {
  content: '';
  position: absolute;
top: calc(-5% + 400px);
left: 25%;
  right: 25%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #e0e0e0 10%, 
    #e0e0e0 90%, 
    transparent 100%
  );
  z-index: -1;
  opacity: 0;
  transition: opacity 1s ease;
}

.features-container.show-line::before,
.features-container.show-line::after {
  opacity: 1;
}
.feature-box {
  width: 320px;
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;

  /* Initial hidden state */
  opacity: 0;
  transform: translateY(60px) scale(0.9);

  /* Smooth, explicit transitions */
  transition: 
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);

  /* Hint GPU to prepare for animation */
  will-change: opacity, transform;
}


/* Number indicators */
.feature-box::before {
  content: attr(data-step);
  position: absolute;
  top: -10px;
  left: -10px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7c0fb5 0%, #c084fc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: white;
  opacity: 0;
  transform: scale(0);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-delay: 0.3s;
}

.feature-box.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.feature-box.show::before {
  opacity: 1;
  transform: scale(1);
}

/* Staggered animation delays */
.feature-box:nth-child(1) {
  transition-delay: 0s;
}
.feature-box:nth-child(2) {
  transition-delay: 0.2s;
}
.feature-box:nth-child(3) {
  transition-delay: 0.4s;
}
.feature-box:nth-child(4) {
  transition-delay: 0.6s;
}
.feature-box:nth-child(5) {
  transition-delay: 0.8s;
}

/* Hover effect */
.feature-box:hover {
  transform: translateY(-5px) scale(1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-box h1 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
}

.feature-box p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Progress bar animation */
.feature-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #f0f0f0;
  overflow: hidden;
}

.feature-progress::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transition: left 1.5s ease;
}

.feature-box.show .feature-progress::after {
  left: 0;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .features-container {
    gap: 30px;
    margin-top: 50px;
  }

  .features-container::before {
    display: none;
  }

  .feature-box {
    width: 100%;
    max-width: 380px;
    padding: 30px 25px;
  }

  .feature-box::before {
    top: -10px;
    left: -10px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .feature-box h1 {
    font-size: 1.3rem;
  }

  /* Mobile-specific animation - one at a time */
  .feature-box {
    transition-delay: 0s !important;
  }
}

@keyframes subtle-bounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.02); }
}

    /* Responsive Adjustments */
    @media (max-width: 1024px) {
      .zig-left-top { top: 10px; left: 40px; }
      .zig-left-bottom { top: 110px; left: 20px; }
      .zig-right-top { top: 10px; right: 40px; }
      .zig-right-bottom { top: 110px; right: 20px; }
    }

    @media (max-width: 768px) {
      .zig-icon {
        display: none;
      }

      .loan-title {
        font-size: 1.6rem;
      }

      .loan-subtitle {
        font-size: 1rem;
      }

      .feature-box {
        width: 90%;
      }
    }

    @media (max-width: 480px) {
      .zig-icon {
        width: 50px;
      }

      .zig-left-top { top: 10px; left: 10px; }
      .zig-left-bottom { top: 100px; left: 10px; }
      .zig-right-top { top: 10px; right: 10px; }
      .zig-right-bottom { top: 100px; right: 10px; }
    }

    @media (max-width: 900px) {
      .zig-icon {
        display: none;
      }
      .loan-title {
      font-size: 3rem;
      font-weight: bold;
      margin-bottom: 20px;
      max-width: 500px;
      margin-inline: auto;
    }
    }

     @media (max-width: 1134px) {
     
      .loan-title {
      font-size: 3rem;
      font-weight: bold;
      margin-bottom: 20px;
      max-width: 400px;
      margin-inline: auto;
    }
    .zig-icon {
      position: absolute;
      width: 80px;
      height: auto;
      transition: transform 0.3s ease;
    }
    }
    .plend-section {
     background-color:  #ff7948;
     background-image: linear-gradient(180deg, #ff7948 60%, #fff);
      padding: 40px 60px 100px 100px;
    }
 
    .plend-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      gap: 40px;
      align-items: flex-start;
      justify-content: space-between;
      
    }

    .plend-left, .plend-right {
      flex: 1 1 450px;
    }

    .plend-title {
      font-size: 4rem;
      font-weight: bold;
      margin-bottom: 20px;
      color: #000000;
      
    }

    .plend-description {
      font-size: 1.2rem;
      color: #fff;
      line-height: 1.6;
    }

    .score-title {
      font-size: 4rem;
      color: #000;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .features-list {
      list-style: none;
      padding: 0;
    }

    .features-list li {
      display: flex;
      align-items: flex-start;
      margin-bottom: 30px;
      font-size: 1.2rem;
      color: #fff;
    }

    .features-list img {
      width: 30px;
      height: 30px;
      margin-right: 10px;
      margin-top: 3px;
      transition: transform 0.4s ease;
    }

    /* Animate when active */
    .features-list img.tick-active {
      transform: scale(1.6);
    }

    /* Bottom Big Title */
    .bottom-title {
      margin-top: 60px;
      text-align: center;
    }

    .bottom-title h2 {
      font-size: 4rem;
      color: #000;
      font-weight: bold;
      max-width: 900px;
      margin: 0 auto;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .plend-container {
        flex-direction: column;
      }

      .plend-title {
        font-size: 2.2rem
      }

      .score-title {
        font-size: 2.2rem
      }

      .bottom-title h2 {
        font-size: 2.2rem
      }
      .plend-left, .plend-right {
    flex: 1 1 50px; 
}
    }
.impact-section {
      background-color: #ff7948;
      color: #fff;
      padding: 80px 20px;
      text-align: center;
    }

    .impact-section .impact-icon {
      width: 150px;
     height: auto;
      margin-bottom: 20px;
    }

    .impact-section p {
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto 40px;
      line-height: 1.6;
    }

.impact-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.impact-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 2px solid #fff;
  border-radius: 12px;
  color: #000;
  background-color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

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

.impact-buttons a:hover {
  color: #ff7948;
  border-color: #ff7948;
  background-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.impact-buttons a:hover::before {
  left: 100%;
}

.impact-buttons a:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.impact-buttons2 {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.impact-buttons2 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 2px solid #1a1a1a;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

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

.impact-buttons2 a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.impact-buttons2 a:hover::before {
  left: 100%;
}

.impact-buttons2 a:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

    /* Responsive adjustments */
    @media (max-width: 600px) {
      .impact-section p {
        font-size: 1rem;
      }

      .impact-buttons a {
        padding: 6px 24px;
        font-size: 0.95rem;
      }
    }
     .partners-section {
      background-color: #ff7948;
      color: #fff;
      padding: 100px 20px 60px;
      position: relative;
      text-align: center;
    }

    .corner-icon {
      position: absolute;
      width: 90px;
     
    }

    .corner-icon.left-top-1 {
      top: 20px;
      left: 40px;
    }

    .corner-icon.left-top-2 {
      top: 110px;
      left: 130px;
    }

    .corner-icon.right-top-1 {
      top: 20px;
      right: 40px;
    }

    .corner-icon.right-top-2 {
      top: 110px;
      right: 130px;
    }

    .partners-title {
      font-size: 4rem;
      font-weight: bold;
      margin-bottom: 20px;
      color:#000000;
    }

    .partners-description {
      max-width: 600px;
      margin: 0 auto 40px;
      font-size: 1.1rem;
      line-height: 1.6;
    }

    .partner-icons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 100px;
      margin-top: 30px;
    }

    .partner-icons img {
      width: 120px;
      height: auto;
      object-fit: contain;
      filter: brightness(0) invert(1);
      transition: transform 0.3s ease;
    }

    .partner-icons img:hover {
      transform: scale(1.1);
    }

    @media (max-width: 768px) {
      .partners-title {
        font-size: 2.3rem;
      }

      .partners-description {
        font-size: 1rem;
      }

      .partner-icons img {
        width: 125px;
      }

      .corner-icon {
        display:none;
      }
    }

     .report-section {
    background-color: #f0ecea;
    padding: 80px 20px;
    text-align: center;
  }

  .report-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #1d1d1d;
  }

  .report-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #000;
    max-width: 600px;
    margin: 0 auto 50px;
  }

  .blog-carousel .blog-card {
    background-color: #fff;
    padding: 25px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    text-align: left;
  }

  .blog-card h3 {
    font-size: 2rem;
    color: #1d1d1d;
    margin-bottom: 10px;
  }

  .blog-card p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
  }

  .read-more {
    display: inline-block;
    color: #1d1d1d;
    font-weight: bold;
    text-decoration: underline;
  }

  /* Owl Carousel Nav Styles */
  .owl-nav {
    text-align: center;
    margin-top: 20px;
  }

  .owl-nav button {
    background: #1d1d1d !important;
    color: white !important;
    border: none;
    padding: 5px 15px;
    margin: 0 5px;
    border-radius: 50px;
  }

  @media (max-width: 768px) {
    .report-title {
      font-size: 2.3rem;
    }

    .report-description {
      font-size: 1rem;
    }

    .blog-card {
      padding: 20px;
    }
  }

   .footer-main {
      background-color: #fff;
      color: #000000;
      padding: 50px 20px 30px;
    }

    .footer-logo img {
      width: 125px;
    }

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

    .footer-menu-list li {
      margin-bottom: 10px;
    }

    .footer-menu-list a {
      color: #000000;
      text-decoration: none;
    }

    .footer-menu-list a:hover {
      color: #ff7948;
    }

    .menu-with-line {
      border-left: 2px solid #000000;
      padding-left: 20px;
    }

    .footer-icon img {
      width: 90px;
    }

    .footer-text {
      font-size: 0.9rem;
      line-height: 1.6;
    }

    .footer-text a {
      color: #ff7948;
      text-decoration: none;
    }

    .footer-social {
      display: flex;
      gap: 20px;
      margin-top: 20px;
    }

    .footer-social i {
     font-size:20px;
    }

    @media (max-width: 768px) {
      .menu-with-line {
        border-left: none;
        padding-left: 0;
      }
      .footer-icon{
      text-align: left;
      }
    }

    
    .testimonial-container {
      max-width: 1200px;
      margin: auto;
      padding: 60px 20px;
      text-align: center;
    }

    .testimonial-container h2 {
      font-size: 4rem;
      font-weight: 700;
    }

    .testimonial-container h2 span {
      color:#ff7948;
    }

    .swiper {
      padding: 40px 0;
    }
.swiper-slide {
  background-color: #ffffff; /* Only one background declaration */
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.4); /* Softer, larger purple glow */
  text-align: left;
  transition: box-shadow 0.3s ease;
}


    .stars {
      color: #049b69;
      font-size: 20px;
    }

.review-title {
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 10px;
  color: #111;
  text-align: center;
}

.review-text {
  font-size: 1rem;
  color: #555;
  text-align: center;
  margin-top: 8px;
}


    .review-text {
      font-size: 0.95rem;
      margin: 10px 0;
      color:#000;
    }

    .author {
      font-weight: bold;
      font-size: 0.9rem;
      color: #000;
    }

    .date {
      font-size: 0.85rem;
      color: #888;
    }

    .rating-summary {
      margin-top: 20px;
    }

    .rating-summary p {
      font-size: 2rem;
      margin: 5px 0;
    }

    .trustpilot {
      color: #049b69;
      font-weight: bold;
    }

    .btn-find {
      margin-top: 40px;
      padding: 6px 30px;
      font-size: 1rem;
      background: #0c0c22;
      color: #fff;
      border: none;
      border-radius: 25px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .btn-find:hover {
      background: #302f4d;
    }

    @media (max-width: 768px) {
      .testimonial-container h2 {
        font-size: 1.8rem;
      }

      .swiper-slide {
        padding: 15px;
      }
    }

     .plend-loan-wrapper {
      padding: 45px 30px;
    }

    .plend-loan-row {
      display: flex;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: auto;
      gap: 20px;
    }

    .plend-col-md-6 {
      flex: 1 1 100%;
    }

    @media (min-width: 768px) {
      .plend-col-md-6 {
        flex: 1 1 48%;
      }
      
    }

    .plend-loan-heading h1 {
      font-size: 3.9rem;
      color: #000;
      font-weight:700;
      margin-bottom: 20px;
    }

    .plend-loan-content p {
      font-size: 1rem;
      color: #000;
      line-height: 1.7;
      margin-bottom: 0px;
    }

    .plend-logo-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin-top: 40px;
      gap: 20px;
    }

    .plend-logo-box {
      flex: 1 1 calc(50% - 20px);
      max-width: calc(50% - 20px);
      text-align: center;
      background: #fff;
      border: 2px solid #ddd;
      
      border-radius: 3px;
      transition: border 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }

    .plend-logo-box img {
     
      width:100%;
      height: auto;
    }

    @media (min-width: 768px) {
      .plend-logo-box {
        flex: 1 1 calc(25% - 20px);
        max-width: calc(25% - 20px);
      }
      
    }

    .plend-logo-box:hover {
      border-color: #ff7948;
      box-shadow: 0 0 15px  #ff7948;
      animation: plend-flash 0.8s ease;
    }

    @keyframes plend-flash {
      0% {
        box-shadow: 0 0 0 0 #ff7948;
      }
      50% {
        box-shadow: 0 0 15px 10px #ff7948;
      }
      100% {
        box-shadow: 0 0 0 0 #ff7948;
      }
    }

     .secure-section-plain {
      background-color: #ffffff;
      padding: 60px 0;
    }

    /* Heading */
    .secure-heading-plain {
      font-size: 3.2rem;
      font-weight: 700;
      color: #333;
      margin-bottom: 40px;
    }

    /* Title */
    .secure-subtitle-plain {
      font-size: 2.2rem;
      font-weight: 600;
      color: #222;
      margin-bottom: 15px;
    }

    /* Text */
    .secure-text-plain {
      font-size: 19px;
      line-height: 1.8;
      color: #000;
    }

    /* Image */
    .secure-img-plain {
      max-width: 300px;
      height: auto;
    }

    /* Responsive Tweaks */
    @media (max-width: 768px) {
      .secure-img-plain {
        margin-top: 30px;
        max-width: 200px;
      }

      .secure-heading-plain {
        font-size: 2.3rem;
      }

      .secure-subtitle-plain {
        font-size: 20px;
      }

      .secure-text-plain {
        font-size: 15px;
      }
      .corner-icon-img-unique{
        display:none;
      }
    }

    .trust-section {
      background-color: #f7f3f1;
      padding: 60px 30px;
    }

    .trust-title {
      font-size: 2.3rem;
      font-weight: 700;
      margin-bottom: 15px;
      color:#000;
    }

    .trust-text {
      font-size: 18px;
      color: #000;
    }

    .trust-icon {
      max-width: 150px;
      height: auto;
      margin-bottom: 20px;
    }

    .trust-row {
      margin-bottom: 60px;
      opacity: 0;
      transform: scale(0.8);
      transition: opacity 1s ease, transform 1s ease;
    }

    .trust-row.visible {
      opacity: 1;
      transform: scale(1);
    }

    @media (max-width: 767.98px) {
      .trust-title {
        font-size: 20px;
      }
      .trust-text {
        font-size: 15px;
      }
    }
    .plend-score-section {
      display: flex;
      flex-wrap: wrap;
      padding: 60px 30px;
      background-color: #f0ecea;
      align-items: center;
      
    }

    .plend-left {
      flex: 1 1 100%;
      max-width: 100%;
      display: flex;
      
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
    }

    .word {
      opacity: 0;
      transform: translateX(-50px);
      transition: all 0.6s ease;
      font-size: 5rem;
      font-weight: 900;
      margin-bottom: 60px;
      line-height:50px;
      color: #000;
    }

    .plend-right {
      flex: 1 1 100%;
      max-width: 100%;
      margin-top: 40px;
    }

    @media (min-width: 768px) {
      .plend-left, .plend-right {
        flex: 1 1 50%;
        max-width: 50%;
        margin-top: 0;
      }
      .plend-score-section {
        flex-wrap: nowrap;
      }
    }

    .plend-right h2 {
      font-size: 3.6rem;
      margin-bottom: 10px;
      color: #000;
    }
.loan-purpose-section-lp458 {
    display:block;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 60px 20px;
    background: #ff7948;
}
    .plend-right p {
      margin-bottom: 10px;
     
      line-height: 1.6;
      color: #000;
    }

    .word.visible {
      opacity: 1;
      transform: translateX(0);
    }

     .plend-faq-accordion {
      background-color:#ff7948; /* Orange background */
      color: #fff;
      padding: 60px 20px;
      text-align: center;
    }

    .plend-faq-accordion h2 {
      font-size: 3.8rem;
      margin-bottom: 40px;
      font-weight: bold;
    }

    .accordion-item {
      max-width: 800px;
      margin: 0 auto 15px auto;
      text-align: left;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 5px;
      overflow: hidden;
    }

      .accordion-item2 {
      max-width: 800px;
      margin: 0 auto 15px auto;
      text-align: left;
      color: #000;
      background: #ffffff00;
      border-radius: 5px;
      overflow: hidden;
    }

    .accordion-header {
      cursor: pointer;
      padding: 15px 20px;
      font-size: 20px;
      position: relative;
      font-weight:600;
    }

    .accordion-header::after {
      content: '+';
      position: absolute;
      right: 20px;
      font-size: 20px;
      transition: transform 0.3s;
    }

    .accordion-header.active::after {
      content: '−';
    }

     .accordion-header2 {
      cursor: pointer;
      padding: 15px 20px;
      font-size: 18px;
      position: relative;
      font-weight:600;
    }

    .accordion-header2::after {
      content: '+';
      position: absolute;
      right: 20px;
      font-size: 18px;
      transition: transform 0.3s;
    }

    .accordion-header2.active::after {
      content: '−';
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      padding: 0 20px;
    }

    .accordion-content p {
      margin: 15px 0;
      font-size:17px;
      font-weight:500;
      line-height: 1.6;
      color: #fff;
    }

      .accordion-content2 {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      padding: 0 20px;
    }

    .accordion-content2 p {
      margin: 15px 0;
      font-size:17px;
      font-weight:500;
      line-height: 1.6;
      color: #000000;
    }

    @media (max-width: 768px) {
      .plend-faq-accordion h2 {
        font-size: 3.5rem;
      }
.plend-right h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #000;
}
      .accordion-header {
        font-size: 16px;
      }
      .accordion-header2 {
        font-size: 14px;
      }
      .plend-left .word{
        font-size:3.6rem;
        margin-bottom: 20px;;
      }
      .accordion-content p {
        font-size: 15px;
      }
    }
    #menuBar .active-menu{
      color:#ff7948;
    }
      .xyloph-9a3f-container {
      max-width: 1200px;
      margin: auto;
      padding: 70px 20px;
    }
     .xyloph-9a3f-container1 {
     
    
      background-color: #ff7948;
    }

    /* TEXT SCROLL */
    .xyloph-9a3f-textbox {
      height: 100px;
      overflow: hidden;
      position: relative;
      text-align: center;
      font-size: 3rem;
      font-weight: bold;
      margin-bottom: 20px;
      color:#ff7948;
    }

    .xyloph-9a3f-track {
      display: flex;
      flex-direction: column;
      animation: plendInfiniteScroll 10s linear infinite;
    }

    .xyloph-9a3f-track div {
      height: 120px;
      line-height: 120px;
    }

     @keyframes plendInfiniteScroll {
      0% { transform: translateY(0); }
      100% { transform: translateY(-600px); } /* 5 items × 120px */
    }

    .xyloph-9a3f-powered {
      text-align: center;
      font-size: 1.5rem;
      color: #fff;
      margin-bottom: 40px;
    }

    /* CONTENT FLEX LAYOUT */
    .xyloph-9a3f-content {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
    }

    .xyloph-9a3f-left {
      flex: 1 1 300px;
    }

    .xyloph-9a3f-left p {
      font-size: 1.2rem;
      line-height: 1.6;
      margin-bottom: 20px;
      color: #ddd;
    }

    .xyloph-9a3f-right {
      flex: 1 1 300px;
      position: relative;
      min-height: 300px;
    }

    .xyloph-9a3f-icon {
      position: absolute;
      width: 70px;
      height: 70px;
      border-radius: 10px;
      object-fit: cover;
      box-shadow: 0 2px 10px rgba(255,255,255,0.2);
    }

    .xyloph-9a3f-icon:nth-child(1) { top: 0; left: 0; }
    .xyloph-9a3f-icon:nth-child(2) { top: 80px; right: 20px; }
    .xyloph-9a3f-icon:nth-child(3) { top: 160px; left: 100px; }
    .xyloph-9a3f-icon:nth-child(4) { top: 40px; right: 100px; }
    .xyloph-9a3f-icon:nth-child(5) { bottom: 60px; left: 60px; }
    .xyloph-9a3f-icon:nth-child(6) { bottom: 120px; right: 30px; }

    .xyloph-9a3f-bottom-icon {
      position: absolute;
      bottom: 0;
      right: 0;
      width: 60px;
      height: 60px;
      object-fit: contain;
      background-color: rgba(255,255,255,0.1);
      border-radius: 8px;
    }

    @media (max-width: 768px) {
      .xyloph-9a3f-content {
        flex-direction: column;
      }

      .xyloph-9a3f-icon {
        position: static;
        margin: 10px auto;
        display: block;
      }
      .xyloph-9a3f-textbox {
      height: 80px;
      overflow: hidden;
      position: relative;
      text-align: center;
      font-size: 1.8rem;
      font-weight: bold;
      margin-bottom: 10px;
      color:#ff7948;
    }

      .xyloph-9a3f-right {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
      }

      .xyloph-9a3f-bottom-icon {
        position: static;
        margin: 20px auto 0;
        display: block;
      }
    }
   
@media (max-width: 350px) {
     
      .xyloph-9a3f-textbox {
      height: 80px;
      overflow: hidden;
      position: relative;
      text-align: center;
      font-size: 1.4rem;
      font-weight: bold;
      margin-bottom: 10px;
      color:#ff7948;
    }
  }
.puzzle-container {
 flex: 1 1 300px;
      position: relative;
      min-height: 300px;
}

.piece {
  position: absolute;
  width: 30%;
  max-width: 100px;
  transition: transform 0.6s ease;
}

/* Initial scattered positions */
#piece1 { top: 20%; left: 38%; }
#piece2 { top: 20%; right: 25%; }
#piece3 { bottom: 20%; left: 10%; }
#piece4 { top: 61%; right: 53%; }
#piece5 { top: 40%; left: 20%; }
#piece6 { bottom: 5%; right: 5%; }

/* Final puzzle positions */
.assembled #piece1 { top: 0%; left: 30%; transform: scale(1.1); }
.assembled #piece2 { top: 0%; left: 60%; transform: scale(1.1); }
.assembled #piece3 { top: 30%; left: 60%; transform: scale(1.1); }
.assembled #piece4 { top: 30%; left: 30%; transform: scale(1.1); }
.assembled #piece5 { top: 60%; left: 30%; transform: scale(1.1); }
.assembled #piece6 { top: 60%; left: 60%; transform: scale(1.1); }

@media (max-width: 600px) {
  .piece {
    width: 20vw;
    max-width: 60px;
  }
}

 .uix-container1 {  
      padding:70px 30px; 
      background-color: #000;  
      color: #fff;  
      overflow: hidden;  
      height: 100%;  
    }  
  
    .uix-container {
       padding:40px 20px;   
      display: flex;  
      height: 160vh;  
      width: 100%;  
      flex-direction: row;  
    }  
  
    .uix-scroll-left {  
      flex: 1;  
      overflow-y: scroll;  
      padding: 2rem;  
      scroll-behavior: smooth;  
      scrollbar-width: none;  

      background-color: #ff7948;
      height:800px;
    }  
  
    .uix-scroll-left::-webkit-scrollbar {  
      display: none;  
    }  
  
    .uix-section-block {  
      margin-bottom: 30vh;  
      font-size:18px;
      line-height: 1.8;  
    }  
  
    .uix-visual-right {  
      flex: 1;  
      position: relative;  
      display: flex;  
      align-items: center;  
      justify-content: center;  
      padding: 2rem;  
    }  
  
    .uix-visual-stage {  
      position: absolute;  
      opacity: 0;  
      transform: scale(0.8);  
      transition: all 0.8s ease;  
      text-align: center;  
      width: 80%;  
      max-width: 400px;  
    }  
  
    .uix-visual-stage.uix-active {  
      opacity: 1;  
      transform: scale(1);  
    }  
  
    .uix-msg-box {  
      background: #222;  
      padding: 1rem;  
      margin: 0.5rem 0;  
      border-radius: 8px;  
      box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);  
    }  
  
    /* Pie chart container with number and text inside */
    .uix-pie-animated {  
      position: relative;
      width: 300px;  
      height: 300px;  
      border-radius: 50%;  
      margin: 2rem auto;  
      background: conic-gradient(  
        hsl(0, 100%, 50%) 0% 25%,   
        hsl(55, 95%, 47%) 25% 50%,   
        hsl(218, 93%, 28%) 50% 75%,   
        hsl(252, 47%, 60%) 75% 100%  
      );  
      animation: uix-spin 4s linear infinite, uix-hueShift 6s linear infinite;  
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.6rem;
      color: white;
      user-select: none;
    }  

    /* Number in the center of the pie */
    .uix-pie-center-number {
      position: absolute;
      font-size: 3rem;
      font-weight: 900;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      color: #fff;
      text-shadow: 0 0 10px rgba(0,0,0,0.7);
      z-index: 2;
    }

    /* Text inside pie, changes on scroll */
    .uix-pie-text {
      position: absolute;
      width: 100%;
      top: 65%;  /* slightly below center */
      left: 50%;
      transform: translateX(-50%);
      font-size: 1.4rem;
      font-weight: 600;
      z-index: 2;
      transition: color 0.5s ease;
      pointer-events: none;
    }

    /* Colors for each word */
    .uix-color-affordable { color: hsl(0, 100%, 50%); }   /* red slice */
    .uix-color-risk { color: hsl(90, 100%, 50%); }        /* green slice */
    .uix-color-bureau { color: hsl(180, 100%, 50%); }     /* cyan slice */
    .uix-color-data { color: hsl(270, 100%, 50%); }       /* purple slice */

    @keyframes uix-spin {  
      0% { transform: rotate(0deg); }  
      100% { transform: rotate(360deg); }  
    }  
  
    @keyframes uix-hueShift {  
      0% {  
        filter: hue-rotate(0deg);  
      }  
      100% {  
        filter: hue-rotate(360deg);  
      }  
    }  
  
    @media (max-width: 768px) {  
      .uix-container {
       padding:40px 20px;   
      display: flex;  
      height: 100vh;  
      width: 100%;  
      flex-direction: column;  
    }  
      .uix-scroll-left {  
        height: 90vh; 
        background-color: #3f3d3d; 
      }  
  
      .uix-visual-right {  
        height: 50vh;  
        padding: 1rem;
                top: 70px;  
      }  
  
      .uix-visual-stage {  
        max-width: 90%;  
      }  
      
      .uix-pie-animated {
        width: 250px;
        height: 250px;
        font-size: 1rem;
      }
      
      .uix-pie-center-number {
        font-size: 2.2rem;
      }
      
      .uix-pie-text {
        font-size: 1.1rem;
        top: 62%;
      }
      
    }  


      .plend_wrapper_9231 {
      display: flex;
      flex-wrap: wrap;
      
      background-color: #f0ecea;
      margin: auto;
      padding: 3rem 5rem;
      gap: 2rem;
    }

    .plend_left_section_9231 {
      flex: 1 1 500px;
    }

    .plend_title_9231 {
      font-size: 4rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color:#ff7948;
    }

    .plend_para_9231 {
      font-size: 1.1rem;
      color: #000;
      margin-bottom: 2rem;
      line-height: 1.6;
    }

    .plend_icons_row_9231 {
      display: flex;
      gap: 1.5rem;
      margin-top: 1rem;
    }

    .plend_icon_box_9231 {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .plend_icon_box_9231 img {
      width: 100px;
      
      margin-bottom: 0.3rem;
    }

    .plend_icon_box_9231 span {
      font-size: 0.9rem;
      color: #219653;
      font-weight: 600;
    }

    .plend_right_section_9231 {
      flex: 1 1 500px;
    }

   .plend_faq_accordion_9231 details {
  border-bottom: 1px solid #ccc;
  padding: 1em 0;
}

.plend_faq_accordion_9231 summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.plend_faq_accordion_9231 summary::-webkit-details-marker {
  display: none;
}

.plend_faq_accordion_9231 h4 {
  
  font-size: 1.1rem;
  text-transform: none;
  margin: 0;
}

.plend_faq_accordion_9231 .faq-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.plend_faq_accordion_9231 details[open] .faq-icon {
  transform: rotate(180deg);
}

.plend_faq_accordion_9231 .faq-content {
  max-height: 6.6em; /* approx. 4 lines */
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-top: 0.75em;
  position: relative;
}

.plend_faq_accordion_9231 details[open] .faq-content {
  max-height: 1000px;
}

    @media (max-width: 900px) {
      .plend_wrapper_9231 {
        flex-direction: column;
      }
    }

    @media screen and (max-width: 768px) {
  .plend_wrapper_9231 {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .plend_title_9231 {
    font-size: 2.4rem;
  }

  .plend_icon_box_9231 img {
    width: 80px;
  }

  .plend_icon_box_9231 span {
    font-size: 0.8rem;
  }

  .plend_para_9231 {
    font-size: 1rem;
  }
  .plend_left_section_9231 {
    flex: 1 1 100px;
}
}

@media screen and (max-width: 480px) {
  .plend_title_9231 {
    font-size: 2rem;
  }

  .plend_para_9231 {
    font-size: 0.95rem;
  }

  .plend_faq_accordion_9231 h4 {
    font-size: 1rem;
  }
}

.plend_banner_section_2025_unique {
      padding: 3rem 2rem;
      
      margin: auto;
       background-image: linear-gradient(#ff7948, #ff7948 82%, #ff7948);
      color: #eee;
      border-radius: 8px;
    }

    .plend_banner_top {
      text-align: center;
    }

    .plend_title_block {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .plend_title_block h1 {
      font-size: 5rem;
      color: #fff;
      flex-grow: 1;
      text-align: center;
    }

    .plend_icons {
     
      gap: 1rem;
      font-size: 1.5rem;
      color: #ff7948;
    }

    .plend_counter_row {
      text-align: center;
      margin-top: 1rem;
    }

    .plend_counter {
      font-size: 4.5rem;
      color: #eee;
      font-weight: bold;
    }

    .plend_counter_label {
      color: #000;
      margin-top: 0.5rem;
      font-size: 1rem;
    }

    .plend_content_row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 2rem;
      margin-top: 3rem;
      align-items: center;
      padding: 0PX 150PX;
    }

    .plend_left_text {
      flex: 1 1 40%;
      font-size: 1rem;
      color: #ccc;
      line-height: 1.6;
    }

    .plend_map_wrapper {
      flex: 1 1 50%;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      perspective: 800px;
    }

    .uk-map {
      width: 100%;
      max-width: 400px;
      
      transform-style: preserve-3d;
      transform: translateX(0) rotateY(0deg) scale(1);
      transition: transform 0.4s ease-in-out;
    }

    @keyframes initialMapAnimation {
      0% {
        transform: translateX(0) rotateY(0deg) scale(1);
      }
      25% {
        transform: translateX(10px) rotateY(5deg) scale(1.03);
      }
      50% {
        transform: translateX(-10px) rotateY(-5deg) scale(1.05);
      }
      75% {
        transform: translateX(10px) rotateY(5deg) scale(1.03);
      }
      100% {
        transform: translateX(0) rotateY(0deg) scale(1);
      }
    }
@media screen and (max-width: 1024px) {
  .plend_content_row {
    padding: 0 80px;
  }

  .plend_title_block h1 {
    font-size: 4rem;
  }
.plend_icons{
    display:none;
  }
  .plend_counter {
    font-size: 3.5rem;
  }
}

@media screen and (max-width: 768px) {
  .plend_content_row {
    flex-direction: column;
    padding: 0 40px;
  }
  .plend_title_block h1 {
    font-size: 3.3rem;
  }

  .plend_left_text {
    flex: 1 1 100%;
    text-align: center;
  }
.plend_icons{
    display:none;
  }
  .plend_map_wrapper {
    flex: 1 1 100%;
  }

  

  .plend_counter {
    font-size: 3rem;
  }
}

@media screen and (max-width: 480px) {
  .plend_content_row {
    padding: 0 20px;
  }
  .plend_icons{
    display:none;
  }

  .plend_title_block h1 {
    font-size: 3.3rem;
  }

  .plend_counter {
    font-size: 2.5rem;
  }

  .plend_left_text {
    font-size: 0.95rem;
  }
}
    @media (max-width: 768px) {
      .plend_title_block {
        flex-direction: column;
      }

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

      .plend_map_wrapper,
      .plend_left_text {
        flex: 1 1 100%;
      }
    }

    .impact-wrapper-uniq243 {
      display: flex;
      flex-wrap: wrap;
      background: #f0ecea;
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      padding: 40px 80px;
     
      margin: auto;
    }

    .impact-leftbox-uniq243 {
      flex: 1 1 50%;
      padding: 30px;
    }

    .impact-smalltitle-uniq243 {
      color: #ff7948;
      font-size: 18px;
      text-transform: none;
      letter-spacing: 1px;
      margin-bottom: 10px;
      font-weight: 800;;
    }

    .impact-bigtitle-uniq243 {
      font-size: 3.6rem;
      font-weight: 900;
      color: #222;
      line-height: 1.3;
    }

    .impact-rightbox-uniq243 {
      flex: 1 1 40%;
      padding: 30px;
     
    }

    .impact-paragraph-uniq243 {
      font-size: 18px;
      color: #000;
      line-height: 1.4;
      margin-bottom: 20px;
    }

    .impact-footertext-uniq243 {
      font-size: 14px;
      color: #000;
      line-height: 1.4;
    }

    @media (max-width: 768px) {
      .impact-wrapper-uniq243 {
        flex-direction: column;
        padding: 30px 20px;
      }

      .impact-leftbox-uniq243,
      .impact-rightbox-uniq243 {
        flex: 1 1 100%;
        padding: 10px 0;
      }

      .impact-bigtitle-uniq243 {
        font-size: 32px;
      }
    }

     .darkblue-section-fb321 {
      background-color: #ff7948;
      padding: 60px 15px;
    }

    .container-fb321 {
      max-width: 1200px;
      margin: auto;
    }

    .row-fb321 {
      display: flex;
      flex-wrap: wrap;
      margin-left: -15px;
      margin-right: -15px;
    }

    .col-md-4-fb321 {
      width: 100%;
      padding: 15px;
    }

    @media (min-width: 768px) {
      .col-md-4-fb321 {
        width: 33.3333%;
      }
    }

    .feature-box-fb321 {
      
      color: #ffffff;
      border-radius: 12px;
      text-align: center;
      padding: 30px 20px;
      transition: transform 0.3s ease;
      height: 100%;
    }

    .feature-box-fb321:hover {
      transform: translateY(-6px);
    }

    .feature-icon-fb321 img {
      width: 250px;
      margin-bottom: 20px;
    }

    .feature-text-fb321 {
      font-size: 15px;
      line-height: 1.6;
      color: #dfe8f2;
    }
     .loan-purpose-section-lp458 {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      padding: 60px 20px;
      background: #ff7948;
      
    }

    .left-chart-lp458 {
      flex: 1 1 60%;
      max-width: 100%;
      padding: 20px;
      
    }
   
    .right-text-lp458 {
      flex: 1 1 40%;
      max-width: 100%;
      padding: 20px;
     
    }

    @media (min-width: 768px) {
      .left-chart-lp458,
      .right-text-lp458 {
        flex: 1 1 50%;
        max-width: 50%;
      }
    }

    .chart-wrapper-lp458 {
      position: relative;
      width: 100%;
      max-width: 380px;
      margin: auto;
    }

    .right-text-lp458 h2 {
      font-size: 28px;
      color: #fff;
      margin-bottom: 20px;
    }

    .right-text-lp458 p {
      font-size: 18px;
      color: #fff;
      line-height: 1.7;
    }

    .animate-visible-lp458 {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.1s ease;
    }

    .animate-visible-lp458.visible {
      opacity: 1;
      transform: translateY(0);
    }

     .apr-section-snake892 {
      display: flex;
      flex-wrap: wrap;
      padding: 60px 30px;
      background: #000;
      align-items: center;
    }
    

    .apr-left-snake892,
    .apr-section {
      flex: 1 1 50%;
      max-width: 100%;
      padding: 20px;
    }

    @media (min-width: 768px) {
      .apr-left-snake892,
      .apr-section {
        flex: 1 1 50%;
        max-width: 50%;
      }
    }

    .apr-left-snake892 p {
      font-size: 16px;
      color: #fff;
      line-height: 1.7;
      margin-bottom: 15px;
    }

    .apr-section h2 {
      font-size: 32px;
      color: #fff;
      margin-bottom: 20px;
    }

    .snake-chart-container {
      position: relative;
      width: 100%;
      height: 350px;
      
      overflow: hidden;
    }

    svg.snake-line-chart {
      width: 100%;
      height: 100%;
      background: transparent;
    }

    .line-path {
      fill: none;
      stroke-width: 3;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-dasharray: 1000;
      stroke-dashoffset: 1000;
      animation: draw-line 1s ease-out forwards;
    }

    .line-path.plend {
      stroke: #ff7948;
      animation-delay: 0.3s;
    }

    .line-path.competitor {
      stroke: #ff7948;
      animation-delay: 1s;
    }

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

    .chart-grid-line {
      stroke: #fff;
      stroke-width: 0.5;
      opacity: 0.3;
    }

    .quarter-labels {
      text-align: center;
      font-size: 14px;
      color: #ccc;
      margin-top: 15px;
    }

    .bottom-para-snake892 {
      padding-bottom: 90px;
      font-size: 16px;
      color: #ccc;
      max-width: 960px;
      margin: auto;
    }

    .animate-on-visible-snake892 {
      opacity: 1;
      transform: translateY(40px);
      transition: all 0.1s ease;
    }

    .animate-on-visible-snake892.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fec-sec-x2 {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding: 60px 20px;
      background-color: #000;
    }

    .fec-left-x2 {
      flex: 1 1 50%;
      padding: 20px;
    }

    .fec-left-x2 h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: #fff;
    }

    .fec-left-x2 canvas {
      width: 100%;
      max-width: 100%;
      height: auto;
    }

    .fec-right-x2 {
      flex: 1 1 45%;
      padding: 20px;
      font-size: 1.1rem;
      line-height: 1.6;
      color:#fff;
    }

    .fec-right-x2 p {
      margin-bottom: 16px;
    }

    @media (max-width: 768px) {
      .fec-sec-x2 {
        flex-direction: column;
        padding: 40px 10px;
      }

      .fec-left-x2,
      .fec-right-x2 {
        flex: 1 1 100%;
        text-align: center;
      }

      .fec-left-x2 h2 {
        font-size: 1.5rem;
      }

      .fec-right-x2 {
        text-align: left;
      }
    }
    .spc-x23-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      padding: 60px 20px;
      background-color: #000;
    }

    .spc-x23-left {
      flex: 1 1 45%;
      padding: 20px;
    }

    .spc-x23-left p {
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 15px;
      color:#fff;
    }

    .spc-x23-right {
      flex: 1 1 50%;
      padding: 20px;
    }

    .spc-x23-right h2 {
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .spc-x23-right canvas {
      width: 100%;
      max-width: 100%;
      height: auto;
    }

    @media (max-width: 768px) {
      .spc-x23-section {
        flex-direction: column;
        padding: 40px 10px;
      }

      .spc-x23-left,
      .spc-x23-right {
        flex: 1 1 100%;
        text-align: center;
      }

      .spc-x23-left {
        text-align: left;
      }

      .spc-x23-right h2 {
        font-size: 1.5rem;
        color: #fff;
      }
      h2.ocx-title-457 {
    font-size: 2.5rem;
    font-weight: bold;
    }
    }


      .ocx-wrapper-457 {
      background-color: #ffffff;
      color: #000000;
      padding: 60px 20px;
    }

    .ocx-title-457 {
      font-size: 4rem;
      font-weight: bold;
      margin-bottom: 30px;
      text-align: center;
      color:#000;
    }

    .ocx-intro-457 {
      max-width: 600px;
      margin: 0 auto 40px auto;
      font-size: 1.1rem;
      line-height: 1.8;
      text-align: center;
    }

    .ocx-row-457 {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
      margin: 40px 0;
    }

    .ocx-box-457 {
      flex: 1 1 45%;
      max-width: 45%;
      text-align: center;
    }

    .ocx-box-457 img {
      width: 350px;
      max-width: 100%;
      height: auto;
      border-radius: 8px;
      
    }

    .ocx-box-457 h3 {
      margin-top: 15px;
      font-size: 2rem;
      color: #000;
    }

    .ocx-outro-457 {
      max-width: 600px;
      margin: 50px auto 0 auto;
      font-size: 1.1rem;
      line-height: 1.8;
      text-align: center;
    }

    @media (max-width: 768px) {
      .ocx-box-457 {
        flex: 1 1 0%;
       
      }

      .ocx-intro-457,
      .ocx-outro-457 {
        padding: 0 10px;
      }
    }

    .owl-carousel .item-xx591 {
  background: #111;
  color: #fff;
  border-radius: 12px;
  padding: 20px;
  margin: 10px;
  position: relative;
  text-align: left;
  height: 100%;
}

.testimonial-image-xx591 {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 15px;
}

.testimonial-name-xx591 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.testimonial-role-xx591 {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 15px;
}

.testimonial-content-xx591 {
  font-size: 15px;
  line-height: 1.5;
}

.read-more-xx591 {
  color: #c99aff;
  text-decoration: underline;
  cursor: pointer;
  margin-top: 10px;
  display: inline-block;
}

/* Modal */
.modal-xx591 {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content-xx591 {
  background-color: #111;
  margin: 3% auto;
  padding: 60px;
  width: 90%;
  max-width: 950px;
  border-radius: 10px;
  color: #fff;
}

.modal-close-xx591 {
  float: right;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

@media (max-width: 768px) {
  .owl-carousel .item-xx591 {
    margin: 10px auto;
  }
}

.aboutus-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 50%;
}
 
.plend-main-image {
  position: relative;
  z-index: 2;
  max-width: 400px; /* Increased size */
  height: auto;
  /* Removed rectangle background, kept only shadow for visibility */
  filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.9)) 
          drop-shadow(0 0 15px rgba(255, 0, 0, 0.4))
          brightness(1.1);
}
 
/* Floating particles animation */
.aboutus-image-container::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle at 30% 70%,
    rgba(255, 255, 255, 0.15) 2px,
    transparent 2px
  ),
  radial-gradient(
    circle at 70% 30%,
    rgba(255, 255, 255, 0.12) 3px,
    transparent 3px
  ),
  radial-gradient(
    circle at 90% 80%,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 60px 60px, 80px 80px, 40px 40px;
  border-radius: 50%;
  animation: float 12s ease-in-out infinite;
  z-index: 1;
}
 
.aboutus-image-container::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255, 255, 255, 0.08) 90deg,
    transparent 180deg,
    rgba(255, 255, 255, 0.12) 270deg,
    transparent 360deg
  );
  border-radius: 50%;
  animation: smoothRotate 20s linear infinite;
  z-index: 1;
}
 
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(90deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
  75% {
    transform: translateY(-10px) rotate(270deg);
  }
}
 
@keyframes smoothRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.plend-section-vz99 {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid rgba(147, 51, 234, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.15);

  padding: clamp(60px, 8vw, 100px) clamp(50px, 7vw, 80px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  border-radius: 0px;
  position: relative;
  overflow: hidden;

  box-shadow:
    inset 0 8px 16px -8px rgba(0, 0, 0, 0.15),
    0 8px 32px rgba(147, 51, 234, 0.08),
    0 2px 16px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);

  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(0);
}

.plend-section-vz99::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(147, 51, 234, 0.03) 0%,
    rgba(255, 255, 255, 0.1) 25%,
    rgba(147, 51, 234, 0.02) 50%,
    rgba(255, 255, 255, 0.05) 75%,
    rgba(147, 51, 234, 0.04) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.plend-section-vz99::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(147, 51, 234, 0.05) 90deg,
    transparent 180deg,
    rgba(147, 51, 234, 0.03) 270deg,
    transparent 360deg
  );
  animation: rotate 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}

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

.plend-section-vz99:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 8px 16px -8px rgba(0, 0, 0, 0.15),
    0 16px 48px rgba(147, 51, 234, 0.15),
    0 8px 24px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-color: rgba(147, 51, 234, 0.2);
}

/* Content Blocks */
.plend-text-vz99 {
  flex: 1 1 40%;
  padding: 20px;
  z-index: 2;
}

.plend-text-vz99 h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #1e293b;
  background: linear-gradient(135deg, #1e293b, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.plend-text-vz99 p {
  font-size: 18px;
  line-height: 1.6;
  color: #475569;
  background: rgba(255, 255, 255, 0.7);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(147, 51, 234, 0.08);
  backdrop-filter: blur(10px);
  box-shadow:
    0 4px 16px rgba(147, 51, 234, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Image Block */
.plend-image-container-vz99 {
  flex: 1 1 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 40px;
  z-index: 2;
}

.plend-main-image-vz99 {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

/* Icon Styles */
.plend-icon-vz99 {
  position: absolute;
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 12px;
  padding: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  z-index: 3;
}

.plend-icon-top-vz99 {
  top: 0;
  left: 50%;
  transform: translate(-50%, -120%);
}

.plend-icon-bottom-vz99 {
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 120%);
}

.plend-icon-left-vz99 {
  left: 0;
  top: 50%;
  transform: translate(-120%, -50%);
}

.plend-icon-right-vz99 {
  right: 0;
  top: 50%;
  transform: translate(120%, -50%);
}

.plend-icon-topright-vz99 {
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}

.plend-icon-vz99 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

/* Mobile */
@media (max-width: 768px) {
  .plend-section-vz99 {
    flex-direction: column;
    text-align: center;
    padding: clamp(40px, 6vw, 60px) clamp(30px, 5vw, 40px);
    gap: 30px;

    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .plend-section-vz99::before,
  .plend-section-vz99::after {
    display: block;
  }

  .plend-text-vz99,
  .plend-image-container-vz99 {
    flex: 1 1 100%;
  }

  .plend-icon-vz99 {
    display: none;
  }

  .plend-text-vz99 h2 {
    font-size: 2.9rem;
  }

  .plend-text-vz99 p {
    padding: 25px;
    border-radius: 8px;
  }
}

     .impact-wrapper-x91b {
      position: relative;
      background-color: #ff7948; /* Violet bg */
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 90px 50px;
      overflow: hidden;
    }

    .impact-left-v20z,
    .impact-right-k49d {
      opacity: 0;
      transform: scale(0.9);
      transition: all 0.8s ease;
    }

    .impact-left-v20z.active {
      opacity: 1;
      transform: scale(1);
    }

    .impact-right-k49d.active {
      opacity: 1;
      transform: scale(1);
      transition-delay: 0.5s;
    }

    .impact-left-v20z {
      flex: 1 1 100%;
      max-width: 55%;
     
      padding: 20px;
    }

    .impact-right-k49d {
      flex: 1 1 100%;
      max-width: 45%;
      padding: 20px;
    }

    .impact-small-title-tyz1 {
      color: #fff;
      font-size: 1.6rem;
      font-weight: 900;
      margin-bottom: 12px;
    }

    .impact-big-title-kkd2 {
      font-size: 3.1rem;
      color: #000000;
      font-weight: 900;
      line-height: 1.1;
      text-transform: none;
    }

    .impact-para-wm7a p {
      font-size: 18px;
      line-height: 1.7;
      color: #ffffff;
      margin-bottom: 16px;
    }

    .impact-icon-img {
      position: absolute;
      width: 100px;
      
      opacity: 0;
      transform: scale(0.9);
      transition: all 0.6s ease;
    }

    .impact-icon-img.active {
      opacity: 1;
      transform: scale(1);
    }

    .icon-tl-a1 { top: 0px; left: 180px; }
    .icon-tr-b2 { top: 0px; right: 180px; }
    .icon-bl-c3 { bottom: 0px; left: 100px; }
    .icon-br-d4 { bottom: 0px; right: 100px; }
    .icon-bc-e5 { bottom: 0px; left: 75%; transform: translateX(-50%); }

    @media (max-width: 992px) {
      .impact-left-v20z,
      .impact-right-k49d {
        max-width: 100%;
        text-align: center;
      }

      .impact-big-title-kkd2 {
        font-size: 28px;
      }
    }

     .plend-values-wrapper-v99 {
      background-image: linear-gradient(180deg, #ff7948, #ff7948);
      color: #fff;
      padding: 80px 30px;
      overflow: hidden;
    }

    .plend-values-container-v99 {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .plend-values-heading-v99 {
      opacity: 0;
      transform: translateY(30px);
      transition: all 1s ease;
    }

    .plend-values-heading-v99.active {
      opacity: 1;
      transform: translateY(0);
    }

    .plend-values-title-v99 {
      font-size: 3rem;
      font-weight: bold;
      line-height: 1.3;
      margin-bottom: 15px;
      color:#fff;
    }

    .plend-values-subtitle-v99 {
      font-size: 18px;
      max-width: 700px;
      margin: 0 auto 60px auto;
    }

    .plend-values-boxes-v99 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
      gap: 40px;
    }

    .plend-value-box-v99 {
      background: rgba(255, 255, 255, 0.1);
      padding: 35px;
      border-radius: 12px;
      text-align: center;
      opacity: 0;
      transform: scale(0.9);
      transition: all 0.8s ease;
    }

    .plend-value-box-v99 img {
      width: 180px;
     
    }

    .plend-value-box-v99 h3 {
      margin-top: 15px;
      font-size: 2rem;
      font-weight: bold;
      color:#fff;
    }

    .plend-value-box-v99 p {
      margin-top: 10px;
      font-size: 15px;
      font-weight:600;
    }

    .plend-value-box-v99.active {
      opacity: 1;
      transform: scale(1);
    }

    @media (max-width: 768px) {
      .plend-values-title-v99 {
        font-size: 28px;
      }
      

      .plend-values-subtitle-v99 {
        font-size: 16px;
      }
      .plend-values-boxes-v99 {
     display: block;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

    }

     .award-section-x501 {
      background-color: #ff7948;
      padding: 80px 20px;
      text-align: center;
      
    }

    .award-section-x501 h2 {
      font-size: 3.7rem;
      font-weight: bold;
      margin-bottom: 50px;
      color:#fff;
    }

    .award-logos-wrapper-x501 {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
    }

    .award-logo-x501 {
      width: 120px;
      
      transition: transform 0.3s ease;
    }

    .award-logo-x501:hover {
      transform: scale(1.1);
    }

    @media (max-width: 768px) {
      .award-section-x501 h2 {
        font-size: 28px;
      }

      .award-logo-x501 {
        width: 90px;
      }
    }

     .plend-join-container-x1z9p {
      background-color: #f0ecea;
      padding: 70px 20px;
      text-align: center;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .plend-join-title-bx21a {
      font-size: 2.8rem;
      color: #000000;
      text-transform: none;
      margin-bottom: 25px;
      font-weight:700;
      
    }

    .plend-join-headline-v7mn3 {
      font-size: 18px;
      color: #ff7948;
      font-weight: 700;
      margin-bottom: 5px;
    }

    .plend-join-role-link-kp92f {
      font-size: 18px;
      color: #000;
      font-weight: 800;
      display: inline-block;
      position: relative;
      text-decoration: none;
      margin-top:15px;
    }

    .plend-join-role-link-kp92f::after {
      content: "";
      display: block;
      width: 100%;
      height: 2px;
      background-color: #000;
      margin-top: 4px;
      transition: width 0.3s ease;
    }

    .plend-join-role-link-kp92f:hover::after {
      width: 60%;
      margin: 4px auto 0;
      color:#ff7948;
    }

    @media (max-width: 768px) {
      .plend-join-headline-v7mn3 {
        font-size: 28px;
      }

      .plend-join-role-link-kp92f {
        font-size: 16px;
      }
    }
    
    
        /* Decorative Elements */
        .floating-shape {
            position: absolute;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .shape-1 {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, #ff7948 0%, #a855f7 100%);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            top: 10%;
            right: 5%;
        }

        .shape-2 {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, #a855f7 0%, #ff7948 100%);
            border-radius: 50%;
            bottom: 10%;
            left: 5%;
            animation-delay: 3s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
        }
        
.plend-faqs-container-xk29mbv {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  margin: 0;
  margin-top: 100px;
  padding: clamp(60px, 8vw, 100px) clamp(50px, 7vw, 80px);

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;

  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(0);
}

.plend-faqs-container-xk29mbv:hover {
  border-radius: 20px;
  transform: scale(0.985);
}


.plend-faqs-container-xk29mbv:focus-within {
  outline: 2px solid rgba(147, 51, 234, 0.3);
  outline-offset: 4px;
}

/* Left Section */
.plend-faqs-left-vu33qls {
  flex: 1 1 40%;
  max-width: 500px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.3;
  color: #1e293b;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #1e293b 0%, #475569 50%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

/* Right Section */
.plend-faqs-right-gh17vcc {
  flex: 1 1 55%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 19px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  border-radius: 120px / 80px;
  background: radial-gradient(circle at 30% 30%, rgba(147, 51, 234, 0.12), rgba(147, 51, 234, 0.05));
  border: 1px solid rgba(147, 51, 234, 0.15);
  backdrop-filter: blur(12px);
  box-shadow:
    0 10px 30px rgba(147, 51, 234, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.plend-faqs-container-xk29mbv:hover .plend-faqs-right-gh17vcc {
  transform: scale(1.07);
}

/* Paragraphs inside Right Section */
.plend-faqs-right-gh17vcc p {
  margin: 0;
  font-size: clamp(16px, 2.5vw, 18px);
  line-height: 1.7;
  color: #1e293b;
  font-weight: 400;
  letter-spacing: 0.01em;
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .plend-faqs-container-xk29mbv {
    flex-direction: column;
    text-align: left;
    padding: 40px 20px;
    gap: 30px;
    margin-top: 0 !important;
  }

  .plend-faqs-left-vu33qls,
  .plend-faqs-right-gh17vcc {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .plend-faqs-left-vu33qls {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 20px;
  }

  .plend-faqs-right-gh17vcc {
    padding: 30px 20px;
    border-radius: 50px;
    text-align: left;
  }

  .plend-faqs-right-gh17vcc p {
    font-size: 16px;
  }
}

h1.hero-welcome-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700; /* 700 = bold */
}



/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/