@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Caveat:wght@400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");


:root {
  --body: #101010;
  --black: #000;
  --white: #fff;
  --theme: #FF471C;
  --header: #fff;
  --text: #ffffff;
  --border: #FCFCFC;
  --bg: #272727;
  --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}


/*---------------------------------------
02. Base
---------------------------------------*/
/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
html {
  overflow-x: hidden;
}

.Instrument {
  font-family: "Instrument Serif", serif !important;
}

body {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: var(--text);
  background-color: var(--body);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

@media (max-width: 1399px) {
  body {
    font-size: 18px;
  }
}

@media (max-width: 1199px) {
  body {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  body {
    font-size: 16px;
  }
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 100px;
  font-weight: 600;
  line-height: 92%;
}

@media (max-width: 1600px) {
  h1 {
    font-size: 90px;
  }
}

@media (max-width: 1399px) {
  h1 {
    font-size: 80px;
  }
}

@media (max-width: 1199px) {
  h1 {
    font-size: 60px;
  }
}

@media (max-width: 991px) {
  h1 {
    font-size: 50px;
    line-height: 110% !important;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 45px;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 35px;
  }
}

@media (max-width: 470px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-size: 45px;
  font-weight: 600;
  line-height: 117%;
}

@media (max-width: 1399px) {
  h2 {
    font-size: 45px;
  }
}

@media (max-width: 1199px) {
  h2 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  h2 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 30px;
  }
}

@media (max-width: 470px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 30px;
  font-weight: 500;
  line-height: 150%;
}

@media (max-width: 575px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 18px;
  font-weight: 400;
}

h5 {
  font-size: 18px;
  font-weight: 700;
}

h6 {
  font-size: 16px;
  font-weight: 700;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

span {
  margin: 0px;
}

.navbar-brand img {
  width: 200px;
  height: auto;
}

.theme-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 0;
  position: relative;
  transition: all 0.4s ease;
  text-transform: capitalize;
  border-radius: 10px;
}

.theme-btn-main.style-2 {
  background-color: var(--theme);
  padding: 7px 25px;
  padding-right: 7px;
  border-radius: 70px;
}

.theme-btn-main.style-2 .theme-btn-arrow-left,
.theme-btn-main.style-2 .theme-btn-arrow-right {
  width: 43px;
  height: 43px;
  background: var(--white);
  border-radius: 50%;
  color: #000;
}

.theme-btn-main.style-2 .theme-btn-arrow-left img,
.theme-btn-main.style-2 .theme-btn-arrow-right img {
  animation: cir36 10s linear infinite;
}

.theme-btn-main.style-2 .theme-btn {
  background-color: transparent;
  padding: 0;
  margin-right: 25px;
}

.theme-btn-main.style-2:hover {
  padding-right: 25px;
  padding-left: 7px;
}

.theme-btn-main.style-2:hover .theme-btn {
  background-color: transparent;
}

.theme-btn-main.style-2:hover .theme-btn-arrow-left {
  left: 7px;
}

.theme-btn-main .theme-btn-arrow-left,
.theme-btn-main .theme-btn-arrow-right {
  width: 43px;
  height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--theme);
  border-radius: 50%;
  transition: 0.4s;
  text-align: center;
}

.theme-btn-main .theme-btn-arrow-left i,
.theme-btn-main .theme-btn-arrow-right i {
  font-weight: 900;
}

.theme-btn-main .theme-btn-arrow-left {
  scale: 0;
  position: absolute;
  left: 7px;
}

.theme-btn-main .theme-btn {
  background: var(--theme);
  color: var(--header);
  font-weight: 600;
  font-size: 18px;
  padding: 13px 30px;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  transition: 0.4s;
}

@media (max-width: 575px) {
  .theme-btn-main .theme-btn {
    font-size: 14px;
    padding: 10px 25px;
  }
}

.theme-btn-main:hover .theme-btn-arrow-left {
  scale: 1;
}

.theme-btn-main:hover .theme-btn-arrow-left img {
  animation: cir36 10s linear infinite;
}

.theme-btn-main:hover .theme-btn-arrow-right {
  scale: 0;
}

.theme-btn-main:hover .theme-btn-arrow-right img {
  animation: cir36 10s linear infinite;
}

.theme-btn-main:hover .theme-btn {
  transform: translateX(60px);
  background-color: var(--header);
}

.theme-btn-main.bg-white-style {
  background-color: var(--white);
}

.theme-btn-main.bg-white-style .theme-btn-arrow-left,
.theme-btn-main.bg-white-style .theme-btn-arrow-right {
  background: var(--theme);
  color: var(--white);
}

.theme-btn-main.bg-white-style .theme-btn {
  color: #101010;
}

.theme-btn-main.bg-black-style {
  background-color: #101010;
}

.theme-btn-main.bg-black-style .theme-btn-arrow-left,
.theme-btn-main.bg-black-style .theme-btn-arrow-right {
  background: var(--theme);
  color: var(--white);
}

.theme-btn-main.bg-black-style .theme-btn {
  color: var(--white);
}

.theme-btn-main.border-style {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.theme-btn-main.border-style .theme-btn-arrow-left,
.theme-btn-main.border-style .theme-btn-arrow-right {
  color: var(--theme);
  background: var(--white);
}

.theme-btn-main.border-style .theme-btn {
  color: var(--white);
}

@keyframes slideRight {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  51% {
    opacity: 1;
  }
}

@keyframes slideUp {
  49% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  51% {
    opacity: 1;
  }
}

/*---------------------------------------
03. Components
---------------------------------------*/
.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
  background: none;
}

.mean-container .mean-nav>ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--white);
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  text-transform: capitalize;
  border-bottom: 1px solid rgba(193, 210, 206, 0.0705882353) !important;
  border: none;
  font-family: "Outfit", sans-serif;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li>a>i {
  display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
  display: inline-block;
  font-size: 18px;
}

.mean-container .mean-nav>ul>li:first-child>a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}


/* PRELOADER */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 36px;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Brackets */
.bracket {
  position: absolute;
  width: 36px;
  height: 36px;
}

.bracket::before,
.bracket::after {
  content: "";
  position: absolute;
  background: rgba(255, 71, 28, 0.9);
}

.bracket::before {
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
}

.bracket::after {
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
}

.bracket.tl {
  top: 28px;
  left: 28px;
}

.bracket.tr {
  top: 28px;
  right: 28px;
  transform: scaleX(-1);
}

.bracket.bl {
  bottom: 28px;
  left: 28px;
  transform: scaleY(-1);
}

.bracket.br {
  bottom: 28px;
  right: 28px;
  transform: scale(-1, -1);
}

/* Logo */
.pre-logo {
  font-size: clamp(3.5rem, 12vw, 7rem);
  letter-spacing: 0.25em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  position: relative;
  line-height: 1;
}

.pre-logo-fill {
  position: absolute;
  top: 0;
  left: 0;
  font-size: inherit;
  letter-spacing: inherit;
  color: var(--white);
  white-space: nowrap;
  -webkit-clip-path: inset(100% 0 0 0);
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.2s cubic-bezier(0.76, 0, 0.24, 1);
}

.pre-logo-fill.reveal {
  -webkit-clip-path: inset(0% 0 0 0);
  clip-path: inset(0% 0 0 0);
}

/* Loader Ring */
.loader-ring {
  position: relative;
  width: 72px;
  height: 72px;
}

.loader-ring svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: ring-spin 2s linear infinite;
}

.ring-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 2;
}

.ring-arc {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 180 226;
  animation: arc-chase 2s ease-in-out infinite;
}

.ring-arc.a1 {
  stroke: rgba(255, 71, 28, 0.9);
  filter: drop-shadow(0 0 5px rgba(255, 71, 28, 0.9));
}

.ring-arc.a2 {
  stroke: rgba(255, 71, 28, 0.9);
  stroke-dasharray: 60 346;
  animation: arc-chase2 2s ease-in-out infinite;
}

.ring-center-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: rgba(255, 71, 28, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(255, 71, 28, 0.9);
  animation: dot-breathe 2s ease-in-out infinite;
}

@keyframes ring-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes arc-chase {
  0% {
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dashoffset: -180;
  }

  100% {
    stroke-dashoffset: -406;
  }
}

@keyframes arc-chase2 {
  0% {
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dashoffset: -80;
  }

  100% {
    stroke-dashoffset: -406;
  }
}

@keyframes dot-breathe {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 1;
  }
}

/* Counter */
.pre-count {
  font-size: 18px;
  color: var(--white);
}

.pre-count span {
  font-weight: 700;
}

/* Page hidden initially */
#page {
  opacity: 0;
  transition: opacity 0.6s ease;
}

#page.visible {
  opacity: 1;
}

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes gelatine {

  from,
  to {
    transform: scale(1, 1);
  }

  25% {
    transform: scale(0.7, 1.1);
  }

  50% {
    transform: scale(1.1, 0.7);
  }

  75% {
    transform: scale(0.95, 1.05);
  }
}

@keyframes scale-up-two {
  0% {
    -webkit-transform: scale(0.2);
    transform: scale(0.5);
  }

  40% {
    -webkit-transform: scale(0.4);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: scale(0.15);
    transform: scale(0.15);
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@-webkit-keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }

  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes criss-cross-right {
  0% {
    right: -20px;
  }

  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-25%);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes zoom {
  0% {
    transform: scale(0.5);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.5);
  }
}

@keyframes translateY2 {
  0% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  100% {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes translateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes moving {
  0% {
    transform: translatey(0px);
  }

  20% {
    transform: translateX(-50px);
  }

  50% {
    transform: translatey(-40px);
  }

  100% {
    transform: translatey(0px);
  }
}

/*img-animation**********************/
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes animate-positive {
  0% {
    width: 0;
  }
}

@keyframes scale {
  0% {
    top: -1000px;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.animation-infinite {
  animation: ShapeAnim 50s linear infinite;
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

@keyframes ShapeAnim {
  0% {
    background-position: top left;
  }

  100% {
    background-position: top left 3000px;
  }
}

.splt-txt .whitespace {
  width: 8px;
}

.splt-txt.animated .char {
  -webkit-animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

.splt-txt-bounce .whitespace {
  width: 20px;
}

@media (max-width: 991px) {
  .splt-txt-bounce .whitespace {
    width: 10px;
  }
}

.splt-txt-bounce.animated .char {
  -webkit-animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

/*---------------------------------------
04. Layouts
---------------------------------------*/
.mobile-menu-area {
  background-color: #191a18;
}

/* ===============================
   NAVBAR
================================= */
.header-main .navbar .navbar-nav .nav-item {
  position: relative;
  margin-inline-end: 30px;
}

.header-main .navbar .navbar-nav .nav-item:last-child {
  margin-inline-end: 0;
}

.header-main .navbar .navbar-nav .nav-item .nav-link {
  color: var(--header);
  font-size: 16px;
  font-weight: 700;
}

.header-main .navbar .navbar-nav .nav-item .nav-link i {
  font-size: 10px;
  position: relative;
  top: -1px;
  margin-left: 3px;
  transition: all 0.4s ease-in-out;
}

.header-main .navbar .navbar-nav .nav-item {
  /* ===============================
     FIRST LEVEL SUBMENU
  ================================= */
}

.header-main .navbar .navbar-nav .nav-item>.sub-menu {
  min-width: 235px;
  background-color: var(--black);
  ;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.4s ease;
  border-radius: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: rgba(20, 20, 21, 0.2) 0px 7px 29px 0px;
}

.header-main .navbar .navbar-nav .nav-item>.sub-menu li {
  position: relative;
}

.header-main .navbar .navbar-nav .nav-item>.sub-menu li a {
  color: var(--header);
  display: block;
  width: 100%;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-main .navbar .navbar-nav .nav-item>.sub-menu li a:hover {
  color: var(--theme);
}

.header-main .navbar .navbar-nav .nav-item>.sub-menu li a i {
  font-size: 12px;
  transition: all 0.4s ease-in-out;
}

.header-main .navbar .navbar-nav .nav-item>.sub-menu li:not(:last-child) a {
  border-bottom: 1px solid var(--white)fff9d;
}

.header-main .navbar .navbar-nav .nav-item>.sub-menu li:last-child a {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.header-main .navbar .navbar-nav .nav-item>.sub-menu li:hover i {
  transform: rotate(90deg);
}

.header-main .navbar .navbar-nav .nav-item {
  /* SHOW FIRST LEVEL */
}

.header-main .navbar .navbar-nav .nav-item:hover>.sub-menu,
.header-main .navbar .navbar-nav .nav-item .sub-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

.header-main .navbar .navbar-nav .nav-item:hover .nav-link i {
  transform: rotate(-180deg);
}

.header-main .sidebar__toggle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px;
  width: 25px;
  height: 25px;
  position: relative;
  top: 0;
  inset-inline-start: 0;
  -webkit-margin-start: 5px;
  margin-inline-start: 5px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.header-main .sidebar__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--white);
  border-radius: 10px;
  margin-inline-end: auto;
  backface-visibility: hidden;
  transition: all 0.3s;
}

.header-main .sidebar__toggle span:last-child,
.header-main .sidebar__toggle span:first-child {
  width: 25px;
}

.header-main .sidebar__toggle.mobile_menu_bar {
  width: 50px;
  height: 50px;
  padding: 12px;
  background: var(--white);
  border-radius: 7px;
}

.header-main .sidebar__toggle.mobile_menu_bar span {
  background-color: var(--white);
}

.header-main .sidebar__toggle:hover span {
  width: 100%;
}

/* ===============================
   NESTED SUBMENU (LEVEL 2+)
================================= */
.sub-menu li {
  position: relative;
  /* CHILD SUBMENU */
}

.sub-menu li>.sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  margin-top: 0;
  min-width: 235px;
  background-color: var(--black);
  ;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border-radius: 10px;
  box-shadow: rgba(20, 20, 21, 0.2) 0px 7px 29px 0px;
}

.sub-menu li>.sub-menu li a {
  padding: 12px 18px;
}

.sub-menu li {
  /* SHOW CHILD */
}

.sub-menu li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-area {
  z-index: 999999;
  width: 100%;
  transition: all 0.4s ease-in-out;
  margin-top: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-area.mobile-menu-relative {
  position: relative;
  z-index: auto;
  top: auto;
  left: auto;
  border-bottom: none;
  background-color: transparent !important;
}

.mobile-menu-area .mobile-topbar {
  width: 100%;
}

.mobile-menu-area .mobile-topbar .bars {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px;
  width: 25px;
  height: 25px;
  position: relative;
  top: 0;
  inset-inline-start: 0;
  -webkit-margin-start: 5px;
  margin-inline-start: 5px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.mobile-menu-area .mobile-topbar .bars span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--white);
  border-radius: 10px;
  margin-inline-end: auto;
  backface-visibility: hidden;
  transition: all 0.3s;
}

.mobile-menu-area .mobile-topbar .bars span:last-child,
.mobile-menu-area .mobile-topbar .bars span:first-child {
  width: 25px;
}

.mobile-menu-area .mobile-topbar .bars.mobile_menu_bar {
  width: 50px;
  height: 50px;
  padding: 12px;
  background: var(--white);
  border-radius: 7px;
}

.mobile-menu-area .mobile-topbar .bars.mobile_menu_bar span {
  background-color: var(--white);
}

.mobile-menu-area .mobile-topbar .bars:hover span {
  width: 100%;
}

.mobile-menu-area {
  /* =========================
     OVERLAY
  ========================= */
}

.mobile-menu-area .mobile-menu-overlay {
  width: 100%;
  height: 100%;
  backdrop-filter: blur(15px);
  background-color: rgba(252, 245, 234, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
}

.mobile-menu-area .mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-area {
  /* =========================
     MAIN MENU (FIXED)
  ========================= */
}

.mobile-menu-area .mobile-menu-main {
  width: 390px;
  height: 100%;
  background-color: var(--black);
  ;
  position: fixed;
  top: 0;
  left: -390px;
  z-index: 999;
  overflow-y: scroll;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  top: 15px;
  height: calc(100% - 30px);
  border-start-start-radius: 12px;
  border-end-start-radius: 12px;
  border-radius: 12px;
}

@media (max-width: 470px) {
  .mobile-menu-area .mobile-menu-main {
    width: 300px;
  }
}

.mobile-menu-area .mobile-menu-main .logo {
  padding: 30px;
}

@media (max-width: 470px) {
  .mobile-menu-area .mobile-menu-main .logo img {
    width: 130px;
  }
}

.mobile-menu-area .mobile-menu-main .close-mobile-menu {
  position: absolute;
  top: 34px;
  right: 10px;
}

.mobile-menu-area .mobile-menu-main .close-mobile-menu i {
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.mobile-menu-area .mobile-menu-main .menu-body .menu-list {
  padding-top: 10px;
}

.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li a {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  border-top: 1px solid rgba(193, 210, 206, 0.0705882353) !important;
  width: 100%;
  padding: 12px 30px;
  padding-right: 10px;
  transition: all 0.4s ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li a i {
  width: 32px;
  height: 32px;
  background-color: var(--white);
  color: #000;
  text-align: center;
  line-height: 32px;
  font-size: 12px;
  border-radius: 3px;
  transition: all 0.4s ease-in-out;
  margin-right: 15px;
}

.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li a:hover {
  color: var(--theme);
}

.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li a:hover i {
  background-color: var(--theme);
  color: var(--white);
}

.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li ul {
  padding-left: 0;
  display: none;
}

.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li ul a {
  padding-left: 40px;
}

.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li ul li:last-child a {
  border-bottom: 0;
}

.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li:last-child a {
  border-bottom: 1px solid rgba(193, 210, 206, 0.0705882353) !important;
}

.mobile-menu-area .mobile-menu-main .off-contact-area {
  padding: 30px;
  padding-top: 0;
  display: none;
}

.mobile-menu-area .mobile-menu-main .off-contact-info {
  margin-top: 30px;
}

.mobile-menu-area .mobile-menu-main .off-contact-info .info-title {
  font-size: 24px;
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

@media (max-width: 575px) {
  .mobile-menu-area .mobile-menu-main .off-contact-info .info-title {
    font-size: 20px;
  }
}

.mobile-menu-area .mobile-menu-main .off-contact-info .contact-details {
  margin-top: 14px;
}

.mobile-menu-area .mobile-menu-main .off-contact-info .contact-details .sub-info {
  color: #C1D2CE;
}

@media (max-width: 575px) {
  .mobile-menu-area .mobile-menu-main .off-contact-info .contact-details .sub-info {
    font-size: 14px;
  }
}

.mobile-menu-area .mobile-menu-main .off-contact-info .contact-details p {
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .mobile-menu-area .mobile-menu-main .off-contact-info .contact-details p {
    font-size: 15px;
  }
}

.mobile-menu-area .mobile-menu-main .off-contact-info .contact-details p a {
  color: var(--white);
}

.mobile-menu-area .mobile-menu-main .social-icon-list {
  margin-top: 30px;
}

.mobile-menu-area .mobile-menu-main .social-icon-list .follow-title {
  font-size: 24px;
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

@media (max-width: 575px) {
  .mobile-menu-area .mobile-menu-main .social-icon-list .follow-title {
    font-size: 20px;
  }
}

.mobile-menu-area .mobile-menu-main .social-icon-list .social-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}

.mobile-menu-area .mobile-menu-main .social-icon-list .social-icon a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  background: rgba(193, 210, 206, 0.0705882353);
  color: var(--white);
  font-size: 14px;
}

.mobile-menu-area .mobile-menu-main .social-icon-list .social-icon a:hover {
  background-color: var(--theme);
  color: var(--header);
}

.mobile-menu-area {
  /* 🔥 ACTIVE STATE */
}

.mobile-menu-area .mobile-menu-main.active {
  left: 15px !important;
}

.mobile-menu-area .mobile-menu-action-btn {
  padding: 20px;
}

.mobile-menu-area .mobile-menu-action-btn a {
  color: var(--theme);
  padding: 12px 0;
  font-size: 16px;
  font-weight: 700;
  border-radius: 5px;
  width: 100%;
  text-align: center;
}

.mobile-menu-area .mobile-menu-action-btn a i {
  font-size: 14px;
  margin-left: 8px;
}

.mobile-menu-area .mobile-menu-action-btn a:hover {
  background-color: var(--header);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  z-index: 2000;
}

/* Mobile Menu Main */
.mobile-menu-main {
  z-index: 2001;
}

/*=============================
	12. Offcanvas CSS Start
===============================*/
.offcanvas-overlay {
  backdrop-filter: blur(15px);
  background-color: rgba(252, 245, 234, 0.1);
  z-index: 999;
  transition: all 0.4s ease-in-out;
  visibility: hidden;
  opacity: 0;
  cursor: crosshair;
}

.offcanvas-overlay.active {
  visibility: visible;
  opacity: 1;
}

.offcanvas-menu {
  max-width: 450px;
  z-index: 9999;
  padding: 40px;
  overflow-y: auto;
  scrollbar-width: thin;
  font-size: 20px;
  right: -450px;
  transition: all 0.4s ease-in-out;
  visibility: hidden;
  opacity: 0;
  background-color: var(--black);
  ;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  top: 15px;
  width: 470px;
  height: calc(100% - 30px);
  border-start-start-radius: 12px;
  border-end-start-radius: 12px;
  border-radius: 12px;
}

.offcanvas-menu .offcasvas-close {
  width: 50px;
  height: 50px;
  background: var(--theme);
}

.offcanvas-menu .header-top {
  margin-bottom: 30px;
}

.offcanvas-menu .action-title {
  font-size: 24px;
  display: block;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  color: var(--header);
}

.offcanvas-menu .news-btn {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  color: var(--white);
  overflow: hidden;
  text-transform: capitalize;
  margin-top: 18px;
}

.offcanvas-menu .news-btn i {
  margin-left: 7px;
}

.offcanvas-menu .news-btn .text {
  position: relative;
  display: inline-block;
  height: 22px;
  overflow: hidden;
}

.offcanvas-menu .news-btn .text-default,
.offcanvas-menu .news-btn .text-hover {
  display: block;
  transition: transform 0.4s ease;
}

.offcanvas-menu .news-btn .text-hover {
  position: absolute;
  left: 0;
  top: 100%;
  color: var(--theme);
}

.offcanvas-menu .news-btn:hover .text-default {
  transform: translateY(-100%);
}

.offcanvas-menu .news-btn:hover .text-hover {
  transform: translateY(-100%);
}

.offcanvas-menu .news-btn i {
  transition: transform 0.4s ease;
}

.offcanvas-menu .offcanvas_gallery {
  height: 264px;
  position: relative;
  margin-top: 30px;
}

.offcanvas-menu .offcanvas_gallery .gallery_img {
  --i: 0;
  max-width: 146px;
  width: 100%;
  aspect-ratio: 146/167;
  object-fit: cover;
  position: absolute;
  left: calc(var(--i) * 82px);
  bottom: calc(var(--i) * 32px);
  z-index: 0;
  transform: translateY(0) scale(1);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  border-radius: 8px;
}

.offcanvas-menu .offcanvas_gallery .gallery_img:nth-child(2) {
  --i: 1;
}

.offcanvas-menu .offcanvas_gallery .gallery_img:nth-child(3) {
  --i: 2;
}

.offcanvas-menu .offcanvas_gallery .gallery_img:nth-child(4) {
  --i: 3;
}

.offcanvas-menu .offcanvas_gallery .gallery_img:hover {
  z-index: 1;
  transform: translateY(-5px) scale(1.02);
}

.offcanvas-menu .offcanvas_gallery .gallery_img:hover~.gallery_img {
  z-index: 0;
}

.offcanvas-menu .off-contact-info {
  margin-top: 40px;
}

.offcanvas-menu .off-contact-info .info-title {
  font-size: 24px;
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

@media (max-width: 575px) {
  .offcanvas-menu .off-contact-info .info-title {
    font-size: 20px;
  }
}

.offcanvas-menu .off-contact-info .contact-details {
  margin-top: 14px;
}

.offcanvas-menu .off-contact-info .contact-details .sub-info {
  color: #C1D2CE;
}

@media (max-width: 575px) {
  .offcanvas-menu .off-contact-info .contact-details .sub-info {
    font-size: 14px;
  }
}

.offcanvas-menu .off-contact-info .contact-details p {
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 17px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .offcanvas-menu .off-contact-info .contact-details p {
    font-size: 15px;
  }
}

.offcanvas-menu .off-contact-info .contact-details p a {
  color: var(--white);
}

.offcanvas-menu .social-icon-list {
  margin-top: 30px;
}

.offcanvas-menu .social-icon-list .follow-title {
  font-size: 24px;
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

@media (max-width: 575px) {
  .offcanvas-menu .social-icon-list .follow-title {
    font-size: 20px;
  }
}

.offcanvas-menu .social-icon-list .social-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}

.offcanvas-menu .social-icon-list .social-icon a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  background: rgba(193, 210, 206, 0.0705882353);
  color: var(--white);
  font-size: 14px;
}

.offcanvas-menu .social-icon-list .social-icon a:hover {
  background-color: var(--theme);
  color: var(--header);
}

.offcanvas-menu.active {
  right: 0;
  visibility: visible;
  opacity: 1;
  right: 15px;
}

/* ===============================
   HEADER
================================= */
.header-1 {
  width: 100%;
  z-index: 99999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 25px 150px;
}

.header-1.header-absolute {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.header-1.header-relative {
  position: relative;
  background-color: var(--bg);
}

@media (max-width: 1899px) {
  .header-1 {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 1399px) {
  .header-1 {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 1199px) {
  .header-1 {
    padding-left: 90px;
    padding-right: 90px;
    border-bottom: none;
  }
}

@media (max-width: 991px) {
  .header-1 {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 767px) {
  .header-1 {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 575px) {
  .header-1 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.header-1 .menu-right-info {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-1 .menu-right-info .search-toggler {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
}

.hero-1 {
  padding: 250px 0 30px;
  padding-left: 150px;
  padding-right: 65px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-1 .hero-line {
  position: absolute;
  top: 13.2%;
  bottom: 0;
  right: 30%;
}

@media (max-width: 1899px) {
  .hero-1 .hero-line {
    display: none;
  }
}

.hero-1 .hero-line img {
  height: 100%;
}

@media (max-width: 1899px) {
  .hero-1 {
    padding-left: 60px;
  }
}

@media (max-width: 1399px) {
  .hero-1 {
    padding: 180px 0 30px;
    padding-left: 60px;
    padding-right: 50px;
  }
}

@media (max-width: 1199px) {
  .hero-1 {
    padding: 200px 0 30px;
    padding-left: 90px;
    padding-right: 50px;
  }
}

@media (max-width: 991px) {
  .hero-1 {
    padding: 190px 0 30px;
    padding-left: 50px;
    padding-right: 30px;
  }
}

@media (max-width: 767px) {
  .hero-1 {
    padding: 170px 0 30px;
    padding-left: 30px;
    padding-right: 20px;
  }
}

@media (max-width: 575px) {
  .hero-1 {
    padding: 150px 0 30px;
    padding-left: 20px;
    padding-right: 15px;
    padding-top: 150px;
  }
}

.hero-1 .hero-circle {
  position: absolute;
  top: 20%;
  left: 35%;
  z-index: -1;
}

@media (max-width: 1199px) {
  .hero-1 .hero-circle {
    left: 20%;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-circle {
    display: none;
  }
}

.hero-1 .hero-circle::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: linear-gradient(180deg, #1010107c 0%, #101010 66.01%);
  width: 630px;
  height: 615px;
  z-index: 1;
}

.hero-1 .hero-circle img {
  animation: cir36 10s linear infinite;
}

.hero-1 .hero-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 145px;
  margin-top: 60px;
}

@media (max-width: 1399px) {
  .hero-1 .hero-list {
    padding-right: 50px;
  }
}

@media (max-width: 1199px) {
  .hero-1 .hero-list {
    padding-right: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-list {
    margin-top: 50px;
  }
}

.hero-1 .hero-list ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 767px) {
  .hero-1 .hero-list ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}

.hero-1 .hero-list ul li {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--theme);
  transition: all 0.4s ease-in-out;
}

.hero-1 .hero-list ul li:hover {
  color: var(--white);
}

.hero-1 .hero-list ul li a {
  color: var(--theme);
}

.hero-1 .hero-list ul li a:hover {
  color: var(--white);
}

@media (max-width: 1199px) {
  .hero-1 .hero-content {
    text-align: center;
  }
}

.hero-1 .hero-content p {
  font-size: 18px;
  font-weight: 500;
  color: #797979;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.hero-1 .hero-content h1 {
  letter-spacing: -0.02em;
}

@media (max-width: 1199px) {
  .hero-1 .hero-content h1 {
    line-height: 100%;
  }
}

.hero-1 .hero-content h1 span {
  color: var(--theme);
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 56px;
  letter-spacing: -0.02em;
  margin-bottom: -30px;
  display: inline-block;
  font-weight: 400;
}

@media (max-width: 1899px) {
  .hero-1 .hero-content h1 span {
    font-size: 45px;
  }
}

@media (max-width: 1399px) {
  .hero-1 .hero-content h1 span {
    font-size: 35px;
  }
}

@media (max-width: 1199px) {
  .hero-1 .hero-content h1 span {
    margin-bottom: 0;
  }
}

@media (max-width: 575px) {
  .hero-1 .hero-content h1 span {
    font-size: 30px;
  }
}

.hero-1 .hero-content .hero-button {
  display: flex;
  align-items: center;
  margin-top: 50px;
  gap: 20px;
}

@media (max-width: 1199px) {
  .hero-1 .hero-content .hero-button {
    justify-content: center;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-content .hero-button {
    text-align: center;
    flex-wrap: wrap;
  }
}

.hero-1 .hero-right-items {
  max-width: 471px;
  margin-left: auto;
}

@media (max-width: 1199px) {
  .hero-1 .hero-right-items {
    margin: 0 auto;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-right-items {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .hero-1 .hero-right-items {
    margin-top: 20px;
  }
}

.hero-1 .hero-right-items .hero-small-slider {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-1 .hero-right-items .small-thumb {
  max-width: 106px;
  height: 200px;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
}

.hero-1 .hero-right-items .small-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.hero-1 .hero-right-items .small-thumb.active {
  max-width: 219px;
}

.hero-1 .hero-right-items .text {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: 385px;
  margin-top: 130px;
  line-height: 150%;
}

@media (max-width: 1199px) {
  .hero-1 .hero-right-items .text {
    margin-top: 70px;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-right-items .text {
    margin-top: 40px;
  }
}

.hero-1 .hero-right-items .text b {
  font-weight: 500;
  color: var(--white);
}

.hero-1 .hero-right-items .sign {
  margin-top: 30px;
}

@media (min-width:1440px) {
  .hero-1-content {
    padding-top: 130px;
  }
}

@media (min-width:1200px) {
  .hero-1-content {
    padding-top: 80px;
  }
}

/* ===============================
   HERO SMALL SLIDER — hover expand
================================= */
.hero-small-slider {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 220px;
}

.hero-small-slider .small-thumb {
  flex: 1;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.5s ease;
  cursor: pointer;
}

.hero-small-slider .small-thumb.active {
  flex: 3;
  border-radius: 16px;
}

.hero-small-slider .small-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hero-small-slider .small-thumb:hover img,
.hero-small-slider .small-thumb.active img {
  transform: scale(1.05);
}

@media (min-width: 1899px) {
  .custom-container {
    padding-left: 150px;
    padding-right: 150px;
  }
}

@media (max-width: 1899px) {
  .custom-container {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 1399px) {
  .custom-container {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 1199px) {
  .custom-container {
    padding-left: 90px;
    padding-right: 90px;
  }
}

@media (max-width: 991px) {
  .custom-container {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 767px) {
  .custom-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 575px) {
  .custom-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*---------------------------------------
Custom Counter Section
---------------------------------------*/
.counter-section-custom {
  background-color: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.counter-item-custom {
  text-align: center;
  padding: 15px;
  position: relative;
}

.counter-number-wrap {
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 8px;
  font-family: "Outfit", sans-serif;
  letter-spacing: -1px;
}

.counter-suffix {
  color: var(--theme);
  margin-left: 2px;
  font-size: 32px;
  vertical-align: middle;
}

.counter-title {
  font-size: 16px;
  color: var(--text);
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* Vertical line dividers using pseudo-elements on large screens (4-column layout) */
@media (min-width: 992px) {
  .counter-item-custom:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 120px;
    background: linear-gradient(to bottom, var(--theme) 30%, rgba(255, 255, 255, 0.15) 30%);
  }
}

/* Vertical line dividers on medium/small screens (2-column layout) */
@media (max-width: 991px) {
  .counter-item-custom {
    padding: 20px 10px;
  }

  .counter-item-custom:nth-child(2n)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 120px;
    background: linear-gradient(to bottom, var(--theme) 30%, rgba(255, 255, 255, 0.15) 30%);
  }

  .counter-number-wrap {
    font-size: 54px;
  }

  .counter-suffix {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .counter-number-wrap {
    font-size: 48px;
  }

  .counter-suffix {
    font-size: 24px;
  }
}

/*---------------------------------------
Portfolio Tabs & Gallery Custom Styling
---------------------------------------*/
.portfolio-section-custom {
  background-color: var(--bg);
}

.custom-container {
  position: relative;
  z-index: 2;
}

.bg-design {
  opacity: 0.1;
}

.bg-design2 {
  opacity: 0.7;
}

@media(min-width: 768px) {
  .bg-design3 {
    opacity: 0.7;
    object-position: left bottom;
  }
}

.bg-design3 {
  opacity: 0.7;
}

/* Scrollable Tabs Container Styles */
.tabs-scroll-wrapper-custom {
  position: relative;
  width: 100%;
}

.tabs-scroll-outer {
  width: 100%;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
  display: flex;
  scroll-behavior: smooth;
  padding-bottom: 1px;
}

@media (max-width: 1599px) {
  .tabs-scroll-outer {
    overflow-x: auto !important;
  }
}

@media (min-width: 1600px) {
  .tabs-scroll-outer {
    overflow: visible !important;
  }
}

.tabs-scroll-outer::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.portfolio-tabs-custom {
  display: flex !important;
  flex-wrap: nowrap !important;
  margin: 0 auto !important;
  /* Centers tabs when fitting */
  gap: 15px !important;
  width: max-content;
}

.portfolio-tabs-custom .nav-item {
  margin: 0 !important;
  flex-shrink: 0;
}

.portfolio-tabs-custom .nav-link {
  width: 100% !important;
  display: inline-flex !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  border: none !important;
  background-color: var(--white) !important;
  color: var(--black) !important;
  border-radius: 30px !important;
}

/* Absolute positioned arrows container - top-right between paragraph and buttons */
.tabs-scroll-arrows-custom {
  position: absolute;
  right: 0;
  top: -44px;
  display: none;
  /* Controlled dynamically via JavaScript checkTabOverflow */
  gap: 8px;
  z-index: 10;
}

.tab-scroll-arrow {
  background-color: var(--white);
  border: 1.5px solid var(--theme);
  color: var(--theme);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 10px;
  flex-shrink: 0;
}

.tab-scroll-arrow:hover {
  background-color: var(--theme);
  color: var(--white);
}

.portfolio-tabs-custom .nav-link .theme-btn {
  color: var(--black) !important;
}

.portfolio-tabs-custom .nav-link .theme-btn-arrow-left,
.portfolio-tabs-custom .nav-link .theme-btn-arrow-right {
  background-color: var(--theme) !important;
  color: var(--white) !important;
}

.portfolio-tabs-custom .nav-link.active,
.portfolio-tabs-custom .nav-link:hover {
  background-color: var(--theme) !important;
  color: var(--white) !important;
  border-radius: 30px !important;
}

.portfolio-tabs-custom .nav-link.active .theme-btn,
.portfolio-tabs-custom .nav-link:hover .theme-btn {
  color: var(--white) !important;
}

/* Ensure active tab buttons keep the left icon visible and shifted text, matching the hover layout */
.portfolio-tabs-custom .nav-link.active .theme-btn {
  transform: translateX(60px) !important;
}

.portfolio-tabs-custom .nav-link.active .theme-btn-arrow-left {
  scale: 1 !important;
}

.portfolio-tabs-custom .nav-link.active .theme-btn-arrow-right {
  scale: 0 !important;
}

.portfolio-tabs-custom .nav-link.active .theme-btn-arrow-left,
.portfolio-tabs-custom .nav-link.active .theme-btn-arrow-right,
.portfolio-tabs-custom .nav-link:hover .theme-btn-arrow-left,
.portfolio-tabs-custom .nav-link:hover .theme-btn-arrow-right {
  background-color: var(--white) !important;
  color: var(--theme) !important;
}

.portfolio-item-custom {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 2px solid var(--black);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 4 / 3;
  /* Fixed aspect ratio to keep layout uniform */
  display: block;
  width: 100%;
}

.portfolio-item-custom:hover img {
  transform: scale(1.1);
}

.portfolio-item-custom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Crop and fit image inside fixed aspect ratio container */
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.item-logo img,
.mobile-item img {
  object-position: center center !important;
}

/* Custom Lightbox Styles */
.custom-lightbox-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.custom-lightbox-modal.active {
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: center;
}

.lightbox-content-wrap {
  position: relative;
  max-width: 85%;
  max-height: 80%;
  text-align: center;
}

.lightbox-content-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
  animation: zoom 0.3s ease;
}

@keyframes zoom {
  from {
    transform: scale(0.95);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: var(--white);
  font-size: 50px;
  font-weight: 300;
  cursor: pointer;
  z-index: 100000;
  transition: color 0.2s;
  user-select: none;
}

.lightbox-close:hover {
  color: var(--theme);
}

.lightbox-prev,
.lightbox-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px 20px;
  margin-top: -30px;
  color: var(--white);
  font-weight: bold;
  font-size: 30px;
  transition: 0.3s ease;
  border-radius: 4px;
  user-select: none;
  background-color: rgb(100, 99, 99);
  text-decoration: none !important;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background-color: var(--theme);
  color: var(--white) !important;
}


@media (max-width: 768px) {

  .lightbox-prev,
  .lightbox-next {
    padding: 10px 14px;
    font-size: 20px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    right: 20px;
    top: 10px;
    font-size: 40px;
  }
}

/* Lightbox controls & Zoom settings */
.lightbox-controls {
  position: absolute;
  top: 25px;
  left: 30px;
  z-index: 100000;
  display: flex;
  gap: 12px;
}

.lightbox-controls button {
  color: var(--white);
  font-size: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.lightbox-controls button:hover {
  background: var(--theme);
  color: var(--white);
  transform: scale(1.05);
}

.lightbox-content-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease-out;
  /* Smooth transition for zooming */
}

/*---------------------------------------
Packages Section Custom Styling
---------------------------------------*/
@media (min-width: 1600px) {
  .packages-section-custom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .packages-section-custom .custom-container {
    width: 100%;
  }

  .package-card-custom {
    max-width: 425px;
  }
}

.packages-section-custom {
  background-color: var(--body);
}



.package-card-custom {
  background-image: url(../assets/images/packages-bg.webp);
  background-size: 100% 220px;
  /* Increased height of the top wave background image */
  background-position: top;
  background-repeat: no-repeat;
  background-color: var(--white);
  border-radius: 40px 0px 40px 0px;
  padding: 35px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

.package-card-custom:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Featured / Popular package styles (accent highlighted background) */
.package-card-custom.featured-pkg {
  border-color: var(--theme);
  box-shadow: 0 10px 30px rgba(255, 71, 28, 0.15);
}

.package-card-custom.featured-pkg:hover {
  box-shadow: 0 15px 35px rgba(255, 71, 28, 0.25);
}

/* Header flow: title row and price styling */
.package-header-flow {
  margin-bottom: 13px;
}

.package-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.package-icon {
  font-size: 26px;
  color: var(--white);
}

.package-title-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.5px;
}

.package-price-flow {
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  display: flex;
  align-items: baseline;
  font-family: "Outfit", sans-serif;
}

.package-price-flow span {
  font-size: 24px;
  font-weight: 700;
  margin-right: 2px;
}

.package-price-flow .price-only,
.package-price-flow .price-period {
  font-size: 16px;
  font-weight: 700;
  margin-left: 4px;
  color: var(--white);
}

/* Action flow button jaisa starts project centered at bottom */
.package-action-flow {
  margin-top: auto;
  /* Pushes the button section to the bottom */
  padding-top: 25px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.package-action-flow .theme-btn-main {
  justify-content: center;
  display: inline-flex;
}

/* Package Subheading Description */
.package-desc-flow {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.5px;
  padding-bottom: 8px;
}

.package-features-scroll {
  height: 190px;
  /* Fixed height to keep card heights uniform */
  overflow-y: auto;
  padding-right: 8px;
  margin-top: 15px;
}

/* Custom Red Scrollbar */
.package-features-scroll::-webkit-scrollbar {
  width: 6px;
}

.package-features-scroll::-webkit-scrollbar-track {
  background: rgba(255, 71, 28, 0.08);
  border-radius: 10px;
}

.package-features-scroll::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}

.package-features-scroll::-webkit-scrollbar-thumb:hover {
  background: #e03b12;
}

.package-features-flow {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-features-flow li {
  font-size: 14px;
  color: #101010;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  /* Bold features list */
  line-height: 1.4;
}

.package-features-flow li i {
  color: var(--theme);
  font-size: 16px;
  flex-shrink: 0;
}

/*---------------------------------------
Promo Feature Section Styling (Like Image Ref)
---------------------------------------*/
.promo-feature-section-custom {
  background-color: var(--bg);
  overflow: hidden;
}

.bg-design4 {
  opacity: 0.5;
  object-position: right;
}

/* Custom button style matching nav-tabs buttons style */
.promo-feature-section-custom .promo-custom-btn {
  background-color: var(--white) !important;
  color: var(--black) !important;
  border-radius: 30px !important;
  transition: all 0.3s ease;
  border: none !important;
}

.promo-feature-section-custom .promo-custom-btn .theme-btn {
  color: var(--black) !important;
  transition: all 0.3s ease;
}

.promo-feature-section-custom .promo-custom-btn .theme-btn-arrow-left,
.promo-feature-section-custom .promo-custom-btn .theme-btn-arrow-right {
  background-color: var(--theme) !important;
  color: var(--white) !important;
  transition: all 0.3s ease;
}

/* Hover state matching navtabs hover state */
.promo-feature-section-custom .promo-custom-btn:hover {
  background-color: var(--theme) !important;
  color: var(--white) !important;
}

.promo-feature-section-custom .promo-custom-btn:hover .theme-btn {
  color: var(--white) !important;
}

.promo-feature-section-custom .promo-custom-btn:hover .theme-btn-arrow-left,
.promo-feature-section-custom .promo-custom-btn:hover .theme-btn-arrow-right {
  background-color: var(--white) !important;
  color: var(--theme) !important;
}

.promo-title {
  font-size: 42px;
  line-height: 1.2;
  font-family: "Outfit", sans-serif;
}

.promo-text {
  font-family: "Outfit", sans-serif;
  line-height: 1.6;
}

.promo-slogan {
  font-family: "Outfit", sans-serif;
  border-left: 3px solid var(--theme);
  padding-left: 15px;
}



/* Vector SVG Badge Styling */
.promo-badge-svg {
  filter: drop-shadow(0 5px 10px rgba(255, 71, 28, 0.15));
  transition: transform 0.3s ease;
}

.promo-badge-svg:hover {
  transform: scale(1.08) rotate(5deg);
}


@media (max-width: 991px) {
  .promo-title {
    font-size: 32px;
  }

  .special-package-card {
    margin-top: 20px;
    padding: 35px 25px;
  }

  .package-card-custom-feature {
    max-width: 425px;
    margin-inline: auto;
  }
}

/*---------------------------------------
Industry Mastery Section Styling
---------------------------------------*/
.industry-mastery-section {
  background-color: var(--body);
  overflow: hidden;
}

/* Premium Category Pill Cards (Dark themed to blend on body background) */
.category-pill-card {
  background-color: var(--bg);
  padding: 12px 24px;
  transform: skew(-20deg);
  /* Slanted style as reference */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  height: 100%;
  position: relative;
}

/* Un-skew children so text and icons are straight */
.category-pill-card>* {
  transform: skew(20deg);
}

/* Top accent orange line */
.category-pill-card::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 0%;
  width: 50%;
  height: 3px;
  background-color: var(--theme);
  transition: all 0.3s ease;
}

/* Bottom accent orange line */
.category-pill-card::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0%;
  width: 50%;
  height: 3px;
  background-color: var(--theme);
  transition: all 0.3s ease;
}

.category-pill-card:hover {
  background-color: var(--theme);
  border-color: var(--theme);
  box-shadow: 0 8px 25px rgba(255, 71, 28, 0.3);
}

.category-pill-card:hover::before,
.category-pill-card:hover::after {
  background-color: var(--white);
  width: 70%;
}

.category-pill-card i {
  color: var(--theme);
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.category-pill-card:hover i {
  color: var(--white);
}

.category-pill-card span {
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  font-family: "Outfit", sans-serif;
  transition: all 0.3s ease;
}

.category-pill-card:hover span {
  color: var(--white);
}

/* CTA banner layout styling */
.industry-cta-banner-custom {
  position: relative;
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url(../assets/images/cta-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.industry-cta-banner-custom h3 {
  font-family: "Outfit", sans-serif;
  color: var(--black);
}

.industry-cta-banner-custom p {
  font-family: "Outfit", sans-serif;
  color: var(--black);
}

@media (max-width: 768px) {
  .category-pill-card {
    padding: 12px 14px;
    gap: 8px;
  }

  .category-pill-card span {
    font-size: 13.5px;
  }

  .industry-tab-btn {
    padding: 8px 16px !important;
    font-size: 13px;
  }
}

.design-bg-image {
  opacity: 0.5;
  object-position: right bottom;
}

/* Brand Trust Section */
.brand-trust-section {
  background-color: var(--bg);
}

.brand-trust-section h2 {
  line-height: 1.3;
}

.brand-trust-section h2 span {
  color: var(--theme);
}

.brand-trust-section p {
  max-width: 800px;
  line-height: 1.8;
}

.trust-badge-card .hexagon-wrapper {
  filter: drop-shadow(-3px 0px 3px var(--theme));
  margin: 15px auto 25px auto;
  width: 120px;
  height: 140px;
}

.trust-badge-card .icon-hexagon {
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge-card .icon-hexagon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-cta {
  background: rgba(0, 0, 0, 0.2);
}

.cta-btn {
  background-color: var(--black) !important;
  border: 1px solid var(--white) !important;
}

/* Testimonial Slider CSS */
.testimonial-section {
  position: relative;
  background-color: var(--bg);
}

.testimonial-wrapper {
  position: relative;
}

#testimonial-splide {
  position: static !important;
}

.testimonial-content-col {
  padding-left: 4.5rem !important;
}

@media (max-width: 991px) {
  .testimonial-content-col {
    padding-left: 0.75rem !important;
  }
}

/* Custom vertical pagination matching the design */
.testimonial-custom-pagination {
  position: absolute;
  left: 3rem;
  top: 60%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: auto;
  bottom: auto;
  padding: 0;
  z-index: 10;
}

.testimonial-custom-pagination::before {
  content: '';
  position: absolute;
  top: -20px;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background-color: var(--white);
  z-index: 0;
}

.testimonial-custom-pagination .custom-dot {
  width: 8px;
  height: 8px;
  background: #bbb;
  border-radius: 50%;
  border: none;
  padding: 0;
  transition: all 0.3s ease;
  margin: 0;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.testimonial-custom-pagination .custom-dot.active {
  background: #111;
  transform: scale(1.4);
  box-shadow: 0 0 0 3px #f4f4f6, 0 0 0 5px #111;
}

@media (max-width: 991px) {
  .testimonial-wrapper {
    display: flex !important;
    flex-direction: column !important;
  }

  .testimonial-wrapper .row {
    order: 1 !important;
  }

  #testimonial-splide {
    position: relative !important;
  }

  .testimonial-custom-pagination {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    flex-direction: row !important;
    justify-content: center !important;
    margin-top: 2rem !important;
    gap: 0.8rem !important;
    order: 2 !important;
  }

  .testimonial-custom-pagination::before {
    display: none !important;
  }
}

.testimonial-section .splide__slide {
  padding-top: 55px;
  padding-bottom: 15px;
}

.testimonial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: var(--white) !important;
  /* soft cream background */
  border: 1px solid #f2ece0;
  padding-top: 65px !important;
  /* offset for avatar */
  min-height: 320px;
}

@media (min-width:768px) and (max-width: 991px) {
  .testimonial-card {
    padding: 25px !important;
    min-height: 235px
  }
}

.testimonial-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-avatar-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%) !important;
  z-index: 10;
}

.testimonial-avatar-wrapper img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-color: #f4f4f6 !important;
}

.testimonial-card .testimonial-title {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
  color: #3e3328 !important;
}

.testimonial-card .stars {
  color: var(--theme) !important;
  font-size: 0.85rem;
}

.testimonial-card .testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--bg) !important;
}

.testimonial-card .testimonial-signature {
  font-family: 'Caveat', cursive;
  font-size: 2.1rem;
  color: var(--theme) !important;
  font-weight: 500;
  line-height: 1;
}

/* FAQ Accordion Section Styling */
.faq-item-custom {
  transition: all 0.3s ease;
}

.faq-toggle-btn {
  outline: none !important;
  box-shadow: none !important;
  cursor: pointer;
  padding: 1.25rem 0;
}

.faq-toggle-btn:hover .faq-question {
  color: var(--theme) !important;
}

.faq-question {
  transition: color 0.3s ease;
}

.faq-icon-custom {
  color: var(--theme);
  font-size: 1.1rem;
  width: 25px;
  display: inline-block;
  text-align: center;
}

.faq-answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
  border-left: 2px solid var(--theme);
  color: #a1a7ac;
  font-size: 1rem;
  line-height: 1.7;
}

.bg-fisrt-faq {
  height: 50%;
  width: 50%;
}

.bg-fisrt-faq img {
  object-position: right top;
}

.bg-sec-faq {
  height: 50%;
  width: 50%;
}

.bg-sec-faq img {
  object-position: left bottom;
}

.faq-overlay {
  background-color: #00000094;
}

.package-overlay {
  background-color: #00000050;
}

/* Custom Contact Form Styling */

.custom-form-input {
  border: 1px solid #ced4da !important;
  border-radius: 8px !important;
  color: #333 !important;
  background-color: var(--white) !important;
  font-size: 0.95rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.custom-form-input::placeholder {
  color: #8b9299 !important;
  font-weight: 500;
}

.custom-form-input:focus {
  border-color: var(--theme) !important;
  box-shadow: 0 0 0 3px rgba(255, 71, 28, 0.15) !important;
  outline: none;
}

/* Custom Contact Form Button - btn-12 (Uiverse.io inspired) */
.btn-12,
.btn-12 *,
.btn-12 :after,
.btn-12 :before,
.btn-12:after,
.btn-12:before {
  border: 0 solid;
  box-sizing: border-box;
}

.btn-12 {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: var(--theme) !important;
  /* Starts as brand theme color */
  background-image: none;
  color: var(--white);
  cursor: pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#000, var(--white));
  padding: 0;
  text-transform: uppercase;
  border-radius: 8px !important;
  /* matches form inputs rounded style */
  border: 2px solid var(--theme) !important;
  overflow: hidden;
  padding: 0.85rem 3.5rem;
  position: relative;
  transition: border-color 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(255, 71, 28, 0.2) !important;
}

.btn-12:hover {
  border-color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 71, 28, 0.3) !important;
}

.btn-12:disabled {
  cursor: default;
}

.btn-12:-moz-focusring {
  outline: auto;
}

.btn-12 svg {
  display: block;
  vertical-align: middle;
}

.btn-12 [hidden] {
  display: none;
}

.btn-12 span {
  position: relative;
  z-index: 5;
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white) !important;
  /* Starts as pure white */
  transition: color 0.3s ease;
}

.btn-12:hover span {
  color: var(--theme) !important;
  /* Changes to theme color on hover */
}

.btn-12:after,
.btn-12:before {
  background: linear-gradient(90deg,
      var(--white) 25%,
      transparent 0,
      transparent 50%,
      var(--white) 0,
      var(--white) 75%,
      transparent 0);
  content: "";
  inset: 0;
  position: absolute;
  transform: translateY(var(--progress, 102%));
  /* Translate 102% to hide subpixel lines */
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.btn-12:after {
  --progress: -102%;
  /* Translate -102% to hide subpixel lines */
  background: linear-gradient(90deg,
      transparent 0,
      transparent 25%,
      var(--white) 0,
      var(--white) 50%,
      transparent 0,
      transparent 75%,
      var(--white) 0);
}

.btn-12:hover:after,
.btn-12:hover:before {
  --progress: 0%;
}

/* Custom Footer Styling */
.custom-footer {
  background-color: var(--bg);
  /* matches theme background */
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo-img {
  width: 250px;
  height: auto;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--white) !important;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background-color: var(--theme) !important;
  color: var(--white) !important;
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--white);
}

.footer-links-list li a {
  color: var(--white) !important;
  font-size: 0.95rem;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links-list li a:hover {
  color: var(--theme) !important;
  padding-left: 5px;
}

/* Instagram Grid */
.footer-instagram-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 8px !important;
  max-width: 250px;
}

.insta-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 1 / 1;
}

.insta-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.insta-grid-item:hover img {
  transform: scale(1.1);
}

.footer-insta-btn {
  color: var(--theme) !important;
  transition: color 0.3s ease;
}

.footer-insta-btn:hover {
  color: var(--white) !important;
}

.footer-bottom-links a {
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--theme) !important;
}

.hover-theme {
  transition: color 0.3s ease;
}

.hover-theme:hover {
  color: var(--theme) !important;
}

/* 2x2 Footer Gallery */
.footer-gallery-2x2 {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 8px !important;
  max-width: 160px !important;
}

.insta-grid-item-2x2 {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 1 / 1;
}

.insta-grid-item-2x2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.insta-grid-item-2x2:hover img {
  transform: scale(1.1);
}

/* Custom Contact Modal Styling */
.contact-modal-dialog {
  max-width: 900px;
}

.contact-modal-content {
  border-radius: 30px !important;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  background-color: #fff;
  border: none !important;
}

/* Left Graphic Side */
.contact-modal-left {
  background-color: #00000041;
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

/* Subtle grid/wireframe overlay to match design */
.contact-modal-left::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 1;
}

.contact-modal-left .modal-title-custom {
  font-family: "Instrument Serif", serif;
  font-size: 2.2rem;
  letter-spacing: 1.5px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-modal-left p {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.6;
}


/* Custom Rounded Input Group */
.custom-input-group {
  display: flex;
  align-items: center;
  border: 1px solid #c0c0c0;
  border-radius: 8px;
  padding: 4px 18px;
  background-color: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.custom-input-group:focus-within {
  border-color: #ff521d;
  box-shadow: 0 0 0 3px rgba(255, 82, 29, 0.15);
}

.custom-input-label {
  font-size: 1rem;
  color: #000000;
  min-width: 70px;
  border-right: 1px solid #eaeaea;
  user-select: none;
  text-transform: capitalize;
}

.custom-input-label i {
  color: #ff521d;
  font-size: 0.7rem;
}

.custom-input-field {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 6px 12px !important;
  font-size: 0.95rem;
  color: #333;
}

.custom-input-field::placeholder {
  color: #bbb;
  font-weight: 400;
}

/* Textarea customization */
.custom-input-group.textarea-group {
  border-radius: 8px;
  align-items: flex-start;
}

.custom-input-group.textarea-group .custom-input-label {
  margin-top: 8px;
}

/* Checkbox Style */
.custom-checkbox-wrap {
  display: flex;
  align-items: center;
  user-select: none;
}

.custom-check-input {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 1.5px solid #ff521d;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, border-color 0.2s;
}

.custom-check-input:checked {
  background-color: #ff521d;
}

.custom-check-input:checked::before {
  content: '✓';
  color: #fff;
  font-size: 13px;
  font-weight: bold;
}

.checkmark-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #666;
}


/* Close button on modal */
.btn-close-modal-custom {
  background: #ff521d url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  opacity: 1;
  border: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  transition: background-color 0.2s, transform 0.2s;
  border: 3px solid #ff521d;
}

.btn-close-modal-custom:hover {
  background-color: #e03b12;
  transform: scale(1.05);
}

.contact-modal-right {
  background-color: #00000041;
}

#contactModal {
  z-index: 100005 !important;
}

.modal-backdrop {
  z-index: 100000 !important;
}

.contact-modal-body {
  background-image: url("../assets/images/contact-modal.webp");
  height: 100%;
  width: auto;
  background-position: left;
  background-repeat: no-repeat;
}

/* Responsive adjustment */
@media (max-width: 767.98px) {
  .contact-modal-body {
    background-image: url("../assets/images/contact-modal-mobile.webp");
    background-size: 100%;
    height: auto;
    width: 100%;
    background-position: top;
    background-repeat: no-repeat;
  }

  .contact-modal-left {
    min-height: 180px;
    padding: 30px !important;
  }

  .contact-modal-left .modal-title-custom {
    font-size: 1.8rem;
  }
}






.banner-global {
  padding-block: 80px;
}

@media (max-width: 1399px) {
  .banner-global {
    padding-block: 80px;
  }
}

@media (max-width: 1199px) {
  .banner-global {
    padding-block: 70px;
  }
}

@media (max-width: 991px) {
  .banner-global {
    padding-block: 60px;
  }
}

@media (max-width: 767px) {
  .banner-global {
    padding-block: 50px;
  }
}

@media (max-width: 575px) {
  .banner-global {
    padding-block: 60px;
  }
}

.sub-page-hero-bg {
  position: absolute !important;
  right: -5% !important;
}