/*
Theme Name: Orizan
Author: namespace-it
Author URI: https://themeforest.net/user/namespace-it
Description: AIForge - AI Startup & Technology HTML Template  
Version: 1.0.0
*/
/*CSS Table Of Content Ends Here*/

:root {
  --body: #fff;
  --white: #333;
  --theme: #EFFB53;
  --theme2: #514DE0;
  --header: #000;
  --header2: #072032;
  --text: #CDCDCD;
  --text2: #5C6972;
  --border: #2A2A2A;
  --bg: #FFF;
  --body-bg :#fff;
  --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
  --btn-primary : #131210;
  
}

.theme-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  color: var(--theme);
  font-size: 17px;
  font-weight: 700;
  padding: 22px 40px;
  transition: 0.5s ease-in-out;
  text-transform: capitalize;
  position: relative;
  z-index: 2;
  overflow: hidden;
  text-align: center;
  line-height: 1;
  border-radius: 30px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  background: #1D1D21;
}
.theme-btn::after {
  content: "";
  background-color: var(--theme);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}
.theme-btn i {
  margin-left: 10px;
}
.theme-btn:hover {
  color: var(--header);
}
.theme-btn:hover::after {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}
@media (max-width: 767px) {
  .theme-btn {
    padding: 20px 32px;
  }
}
@media (max-width: 575px) {
  .theme-btn {
    padding: 18px 30px;
    font-size: 14px;
  }
}
.theme-btn.theme-btn-2 {
  background-color: var(--theme2);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
}
.theme-btn.theme-btn-2::before, .theme-btn.theme-btn-2::after {
  background-color: var(--header2);
}
.theme-btn.style-2 {
  border-radius: 10px;
  background-color: var(--theme);
  color: var(--header);
}
.theme-btn.style-2::before, .theme-btn.style-2::after {
  background: #1D1D21;
}
.theme-btn.style-2:hover {
  color: var(--white);
}

.link-btn {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--text);
}
.link-btn:hover {
  color: var(--theme);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: 'Inter', sans-serif !important;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

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: 'Inter', sans-serif !important;
  margin: 0px;
  padding: 0;
  color: var(--white);
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.slide-content h2{
  font-family: 'Inter', sans-serif !important;
  margin: 0px;
  padding: 0;
  color: var(--text);
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
h1 {
  font-size: 150px;
  font-weight: 900;
  line-height: 95%;
}

h2 {
  font-size: 65px;
  line-height: 116%;
  font-weight: 700;
}
@media (max-width: 991px) {
  h2 {
    font-size: 55px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 470px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: 27px;
  font-weight: 700;
  line-height: 134%;
}
@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
}

h5 {
  font-size: 18px;
  font-weight: 700;
}

h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 145%;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--white);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

span {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .about-wrapper {
    flex-wrap: wrap;
  }
}
.about-wrapper .nav {
  display: grid;
  gap: 16px;
  padding: 0;
  border-right: 1px solid rgba(207, 208, 212, 0.2);
  padding-right: 40px;
}
@media (max-width: 1399px) {
  .about-wrapper .nav {
    padding-right: 0;
    border-right: none;
    display: flex;
    margin-bottom: 50px;
  }
}
.about-wrapper .nav .nav-item .nav-link {
  border-radius: 50px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  background: #1D1D21;
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  font-family:'Inter', sans-serif !important;
  padding: 35px 60px;
  line-height: 1;
  text-align: center;
}
@media (max-width: 991px) {
  .about-wrapper .nav .nav-item .nav-link {
    font-size: 22px;
    padding: 20px 30px;
  }
}
@media (max-width: 767px) {
  .about-wrapper .nav .nav-item .nav-link {
    font-size: 20px;
    padding: 18px 30px;
  }
}
.about-wrapper .nav .nav-item .nav-link.active {
  background-color: var(--theme);
  color: var(--header)!important;
}
.about-wrapper .about-items {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 991px) {
  .about-wrapper .about-items {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.about-wrapper .about-items .about-content {
  max-width: 380px;
}
.about-wrapper .about-items .about-content .list-items {
  margin-top: 25px;
  margin-bottom: 50px;
}
.about-wrapper .about-items .about-content .list-items li span {
  display: inline-block;
  font-weight: 700;
  color: var(--white);
  padding-left: 10px;
}
.about-wrapper .about-items .about-content .list-items li:not(:last-child) {
  margin-bottom: 15px;
}
.about-wrapper .about-items .about-image {
  max-width: 542px;
}
.about-wrapper .about-items .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}

.about-section {
  position: relative;
  z-index: 5;
}
.about-section .bg-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.about-section .color-bg {
  position: absolute;
  left: 0;
  bottom: 25%;
  z-index: -1;
}
.about-section .color-bg-2 {
  position: absolute;
  top: -12%;
  right: -100px;
  z-index: -1;
}
.about-section .about-image-33 {
  margin-top: 30px;
}
.about-section .about-image-33 img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
@media (max-width: 1199px) {
  .about-section.style-padding {
    padding-top: 120px;
  }
}

.counter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .counter-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.counter-wrapper .counter-items {
  display: flex;
  align-items: center;
  gap: 30px;
}
.counter-wrapper .counter-items .icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 200px 200px 0px 200px;
  background-color: var(--theme);
  color: var(--header);
  font-size: 42px;
  text-align: center;
}
.counter-wrapper .counter-items .content {
  border-left: 1px solid rgba(207, 208, 212, 0.3);
  padding-left: 30px;
}
@media (max-width: 1199px) {
  .counter-wrapper .counter-items .content {
    padding-left: 0;
    border-left: none;
  }
}
.counter-wrapper .counter-items .content h2 {
  font-size: 70px;
  font-weight: 500;
}
@media (max-width: 575px) {
  .counter-wrapper .counter-items .content h2 {
    font-size: 50px;
  }
}
.counter-wrapper .counter-items .content p {
  font-size: 24px;
}
@media (max-width: 1199px) {
  .counter-wrapper .counter-items .content p {
    font-size: 20px;
  }
}

.about-wrapper-2 {
  border-radius: 20px;
  padding: 50px;
  margin-left: 50px;
  margin-right: 50px;
}
@media (max-width: 1199px) {
  .about-wrapper-2 {
    margin-left: 30px;
    margin-right: 30px;
  }
}
.about-wrapper-2 .about-image {
  background-color: #FCFBF4;
  text-align: center;
  padding: 50px 0;
  border-radius: 30px;
}
@media (max-width: 1600px) {
  .about-wrapper-2 .about-image {
    padding: 0;
    background-color: transparent;
  }
  .about-wrapper-2 .about-image img {
    width: 100%;
    height: 100%;
  }
}
.about-wrapper-2 .about-content {
  margin-left: 70px;
}
@media (max-width: 1600px) {
  .about-wrapper-2 .about-content {
    margin-left: 0;
  }
  .about-wrapper-2 .about-content .section-title h2 {
    font-size: 35px;
  }
}
.about-wrapper-2 .about-content .about-list {
  margin-bottom: 50px;
}
.about-wrapper-2 .about-content .about-list li {
  color: var(--text2);
}
.about-wrapper-2 .about-content .about-list li span {
  font-weight: 700;
  color: var(--header2);
  display: block;
  margin-bottom: 5px;
}
.about-wrapper-2 .about-content .about-list li:not(:last-child) {
  margin-bottom: 20px;
}

.about-wrapper-3 .section-title {
  margin-left: 200px;
}
@media (max-width: 1199px) {
  .about-wrapper-3 .section-title {
    margin-left: 0;
  }
}
.about-wrapper-3 .about-items {
  margin-top: 30px;
}
.about-wrapper-3 .about-items .about-image img {
  border-radius: 25px;
  width: 100%;
  height: 100%;
}
.about-wrapper-3 .about-items .about-content {
  max-width: 460px;
  margin-top: 35px;
}
.about-wrapper-3 .about-items .about-content h3 {
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .about-wrapper-3 .about-items .about-content h3 {
    font-size: 44px;
  }
}
@media (max-width: 575px) {
  .about-wrapper-3 .about-items .about-content h3 {
    font-size: 36px;
  }
}
.about-wrapper-3 .about-items .about-content h3 span {
  color: var(--theme);
  font-weight: 400;
  font-family:'Inter', sans-serif !important;
}
.about-wrapper-3 .about-image-items-2 {
  margin-top: 30px;
}
.about-wrapper-3 .about-image-items-2 .about-text {
  max-width: 450px;
  margin-left: 80px;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .about-wrapper-3 .about-image-items-2 .about-text {
    margin-left: 0;
  }
}
.about-wrapper-3 .about-image-items-2 .about-image-2 img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}

.about-wrapper-4 .about-image-items .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}
.about-wrapper-4 .about-image-items .about-image.style-2 {
  margin-top: 15px;
  height: 338px;
}
.about-wrapper-4 .about-content {
  margin-left: 40px;
}
@media (max-width: 1199px) {
  .about-wrapper-4 .about-content {
    margin-left: 0;
  }
}
.about-wrapper-4 .about-content .skill-feature-items {
  margin-top: 30px;
}
.about-wrapper-4 .about-content .skill-feature-items .skill-feature:not(:last-child) {
  margin-bottom: 30px;
}
.about-wrapper-4 .about-content .skill-feature-items .skill-feature .box-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}
.about-wrapper-4 .about-content .skill-feature-items .skill-feature .progress-value {
  margin-bottom: 10px;
  color: var(--header);
  text-transform: capitalize;
}
.about-wrapper-4 .about-content .skill-feature-items .skill-feature .progress {
  position: relative;
  height: 15px;
  background-color: #222226;
  border-radius: 0;
  overflow: visible;
  margin-top: 15px;
}
.about-wrapper-4 .about-content .skill-feature-items .skill-feature .progress-bar {
  background-color: var(--theme);
  height: 15px;
  margin: 0;
  border-radius: inherit;
  overflow: visible;
  position: relative;
  margin-top: 0;
}
.about-wrapper-4 .about-content .skill-feature-items .skill-feature .progress-value {
  position: absolute;
  top: -38px;
  right: -8px;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}

.about-section {
  position: relative;
}
.about-section .vector-shape {
  position: absolute;
  top: 10%;
  left: 5%;
}
.about-section .vector-shape-2 {
  position: absolute;
  top: 20%;
  right: 0;
}

@-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 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%);
  }
}
.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-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 animate-positive {
  0% {
    width: 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;
  }
}
.brand-title-2 {
  margin-bottom: 50px;
  position: relative;
  margin-top: -6px;
  font-size: 24px;
  font-weight: 500;
  color: #5C6972;
  z-index: 9;
}
.brand-title-2::before {
  position: absolute;
  top: 15px;
  left: 0;
  content: "";
  height: 1px;
  width: 460px;
  background-color: #E0E1E5;
  z-index: -1;
}
@media (max-width: 1399px) {
  .brand-title-2::before {
    display: none;
  }
}
.brand-title-2::after {
  position: absolute;
  top: 15px;
  right: 0;
  content: "";
  height: 1px;
  width: 460px;
  background-color: #E0E1E5;
  z-index: -1;
}
@media (max-width: 1399px) {
  .brand-title-2::after {
    display: none;
  }
}
.brand-title-2.style-2 {
  color: var(--white);
}
.brand-title-2.style-2::before {
  background-color: var(--white);
}
.brand-title-2.style-2::after {
  background-color: var(--white);
}

.brand-image {
  opacity: 0.5;
}

.message-items {
  position: relative;
  z-index: 8;
}
.message-items h2 {
  font-size: 150px;
  line-height: 1;
  margin-top: -15px;
}
@media (max-width: 991px) {
  .message-items h2 {
    font-size: 100px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .message-items h2 {
    font-size: 85px;
  }
}
@media (max-width: 575px) {
  .message-items h2 {
    font-size: 55px;
  }
}
@media (max-width: 470px) {
  .message-items h2 {
    font-size: 40px;
  }
}
.message-items h2 span {
  font-weight: 400;
}
.message-items h2 span b {
  font-weight: 400;
  color: var(--theme);
}
.message-items .circle-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.message-items .lets-talk-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  border-top: 1px solid rgba(207, 208, 212, 0.2);
  padding-top: 30px;
  margin-top: 30px;
  position: relative;
}
@media (max-width: 991px) {
  .message-items .lets-talk-items {
    flex-wrap: wrap;
    text-align: center;
  }
}
.message-items .lets-talk-items p {
  max-width: 445px;
}
.message-items .lets-circle {
  position: relative;
  max-width: 230px;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 126"><path fill-rule="evenodd" clip-rule="evenodd" d="M55.9029 4.52619C59.9922 -0.78983 68.0078 -0.78983 72.0971 4.52619C75.0042 8.30537 80.1389 9.57096 84.4692 7.57565C90.5606 4.76892 97.6581 8.49399 98.8085 15.1015C99.6263 19.7987 103.585 23.3056 108.346 23.5512C115.044 23.8968 119.598 30.4936 117.546 36.8788C116.087 41.4181 117.962 46.3628 122.064 48.7932C127.834 52.2118 128.801 60.1691 124.016 64.8693C120.615 68.2107 119.978 73.4605 122.48 77.5188C126.001 83.2274 123.158 90.7222 116.738 92.6606C112.173 94.0387 109.169 98.3909 109.499 103.147C109.964 109.838 103.964 115.154 97.3777 113.886C92.6956 112.985 88.013 115.443 86.0948 119.808C83.3966 125.948 75.6138 127.866 70.3712 123.683C66.6442 120.71 61.3558 120.71 57.6288 123.683C52.3862 127.866 44.6034 125.948 41.9052 119.808C39.987 115.443 35.3044 112.985 30.6223 113.886C24.0363 115.154 18.0365 109.838 18.5008 103.147C18.8309 98.3909 15.8267 94.0387 11.2623 92.6606C4.84165 90.7222 1.99926 83.2274 5.51975 77.5188C8.02248 73.4605 7.38504 68.2107 3.98382 64.8693C-0.800531 60.1691 0.165651 52.2118 5.93581 48.7932C10.0378 46.3628 11.9131 41.4181 10.4543 36.8788C8.40231 30.4936 12.9557 23.8968 19.6537 23.5512C24.4153 23.3056 28.3737 19.7987 29.1915 15.1015C30.3419 8.49399 37.4394 4.76892 43.5308 7.57565C47.8611 9.57096 52.9958 8.30537 55.9029 4.52619Z"  /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  background-color: var(--white);
  color: var(--header);
  font-weight: 700;
  font-size: 18px;
  padding: 85px 76px;
  display: block;
  text-align: center;
}
.message-items .cta-img {
  margin-top: 50px;
}
.message-items .cta-img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.message-section {
  position: relative;
  z-index: 9;
  margin-top: 60px;
}
.message-section .bg-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.login-wrapper {
  background: #222226;
}
.login-wrapper .sign-img img {
  width: 100%;
  height: 100%;
}
.login-wrapper .signin-item {
  padding: 50px 55px;
}
@media (max-width: 1199px) {
  .login-wrapper .signin-item {
    padding: 50px 40px;
  }
}
.login-wrapper .signin-item .sign-header {
  margin-bottom: 30px;
  text-align: center;
}
.login-wrapper .signin-item .sign-header p {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  text-align: center;
  margin-top: 5px;
}
.login-wrapper .signin-item .social-icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}
@media (max-width: 1399px) {
  .login-wrapper .signin-item .social-icon {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.login-wrapper .signin-item .social-icon a {
  border-radius: 15px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  background: #222226;
  padding: 20px 45px;
  display: block;
  text-align: center;
  line-height: 1;
}
.login-wrapper .signin-item .social-icon a i {
  font-size: 25px;
}
.login-wrapper .signin-item h5 {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  text-align: center;
}
.login-wrapper .signin-item h5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  top: 9px;
  width: 26%;
  height: 1px;
  background: #CFD0D4;
  opacity: 0.2;
}
@media (max-width: 1199px) {
  .login-wrapper .signin-item h5::before {
    display: none;
  }
}
.login-wrapper .signin-item h5::after {
  position: absolute;
  content: "";
  top: 9px;
  right: 0;
  width: 26%;
  height: 1px;
  opacity: 0.2;
  background: #CFD0D4;
}
@media (max-width: 1199px) {
  .login-wrapper .signin-item h5::after {
    display: none;
  }
}
.login-wrapper .signin-item .input-item {
  position: relative;
}
.login-wrapper .signin-item .input-item span {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  text-align: left;
  display: inline-block;
  padding-bottom: 20px;
}
.login-wrapper .signin-item .input-item input {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  border: none;
  outline: none;
  padding: 20px;
  width: 100%;
  background-color: transparent;
  padding-bottom: 15px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  position: relative;
  border-radius: 10px;
}
.login-wrapper .signin-item .input-item input::placeholder {
  color: var(--text);
}
.login-wrapper .signin-item .input-item .icon {
  position: absolute;
  right: 20px;
  top: 67px;
}
.login-wrapper .signin-item .input-item .icon i {
  color: var(--theme);
}
.login-wrapper .signin-item .input-item:not(:last-child) {
  margin-bottom: 30px;
}
.login-wrapper .signin-item .form-check {
  display: flex;
  align-items: center;
  padding: 0;
  justify-content: space-between;
}
.login-wrapper .signin-item .form-check .form-check-label {
  color: var(--text);
  margin-left: 10px;
  font-size: 17px;
  font-weight: 500;
}
.login-wrapper .signin-item .form-check span {
  font-weight: 600;
  color: var(--text);
  font-size: 17px;
  font-weight: 500;
}
.login-wrapper .signin-item .button-items {
  margin-top: 30px;
  margin-bottom: 20px;
}
.login-wrapper .signin-item .button-items .theme-btn {
  width: 100%;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 700;
  border-radius: 10px;
  background-color: var(--theme);
  color: var(--header);
}
.login-wrapper .signin-item .button-items .theme-btn::before, .login-wrapper .signin-item .button-items .theme-btn::after {
  background-color: var(--white);
}
.login-wrapper .signin-item .button-items .theme-btn:hover {
  color: var(--header);
}
.login-wrapper .signin-item p {
  text-align: center;
}

.contact-wrapper .contact-image {
  margin-top: 30px;
}
.contact-wrapper .contact-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.contact-wrapper .contact-form-items-area {
  margin-top: 30px;
}
.contact-wrapper .contact-form-items-area h2 {
  font-size: 40px;
  color: var(--white);
  margin-bottom: 30px;
}
.contact-wrapper .contact-form-items-area .contact-form-items .form-clt {
  position: relative;
}
.contact-wrapper .contact-form-items-area .contact-form-items .form-clt input, .contact-wrapper .contact-form-items-area .contact-form-items .form-clt textarea {
  color: #CDCDCD;
  padding: 18px 20px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  background: #222226;
  font-weight: 500;
  font-size: 16px;
}
.contact-wrapper .contact-form-items-area .contact-form-items .form-clt input::placeholder, .contact-wrapper .contact-form-items-area .contact-form-items .form-clt textarea::placeholder {
  color: var(--text);
}
.contact-wrapper .contact-form-items-area .contact-form-items .form-clt .icon {
  position: absolute;
  top: 10px;
  right: 25px;
  color: var(--theme);
  background-color: #222226;
}
.contact-wrapper .contact-form-items-area .contact-form-items .form-clt textarea {
  padding-bottom: 150px;
}
.contact-wrapper .contact-form-items-area .contact-form-items .form-clt .nice-select {
  border-radius: 10px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  background: #222226;
  padding: 18px 20px;
  z-index: 9;
}
.contact-wrapper .contact-form-items-area .contact-form-items .form-clt .nice-select::after {
  height: 8px;
  width: 8px;
  right: 25px;
  top: 30px;
  border-color: var(--theme);
  border-bottom: 2px solid var(--theme);
  border-right: 2px solid var(--theme);
}
.contact-wrapper .contact-form-items-area .contact-form-items .form-clt .nice-select span {
  color: #CDCDCD;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}
.contact-wrapper .contact-form-items-area .contact-form-items .form-clt .nice-select .list {
  background-color: var(--bg);
  right: 0;
}
.contact-wrapper .contact-form-items-area .contact-form-items .form-clt .nice-select .option {
  background-color: transparent;
  font-size: 16px;
  line-height: 150%;
  padding: 10px 10px;
  min-height: initial;
  font-weight: 500;
  border: none;
}
.contact-wrapper .contact-form-items-area .contact-form-items .theme-btn {
  background-color: var(--theme);
  color: var(--header);
}
.contact-wrapper .contact-form-items-area .contact-form-items .theme-btn::before, .contact-wrapper .contact-form-items-area .contact-form-items .theme-btn::after {
  background-color: var(--white);
}

.map-items .googpemap iframe {
  width: 100%;
  height: 840px;
}

.contact-box-items-4 {
  border-radius: 25px;
  background: #222226;
  text-align: center;
  padding: 40px;
  height: 100%;
}
.contact-box-items-4 .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  margin: 0 auto;
  font-size: 30px;
  color: var(--header);
}
.contact-box-items-4 .content {
  margin-top: 30px;
}
.contact-box-items-4 .content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .contact-section.style-padding {
    padding-top: 120px;
  }
}

.paralax-section {
  background-image: url('assets/img/van-image.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

.paralax-image {
  position: relative;
  width: 100%;
  padding: 0 20px;
}

.paralax-image h2 {
  color: white;
  font-weight: bold;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  margin: 0;
}

/* Desktop Styles (default) */
.paralax-section {
  height: 700px;
}

.paralax-image h2 {
  font-size: 66px;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .paralax-section {
    height: 600px;
  }
  
  .paralax-image h2 {
    font-size: 52px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .paralax-section {
    height: 500px;
    background-attachment: scroll !important; /* Disable parallax on mobile */
  }
  
  .paralax-image h2 {
    font-size: 36px;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .paralax-section {
    height: 400px;
  }
  
  .paralax-image h2 {
    font-size: 28px;
    line-height: 1.3;
  }
  
  /* Remove line break on small screens */
  .paralax-image h2 br {
    display: none;
  }
}

/* Parallax effect (desktop only) */
@media (min-width: 769px) {
  .paralax-image {
    background-attachment: fixed;
  }
  
  .paralax-image::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  }
}
.cta-wrapper {
  margin-top: 30px;
  padding: 60px 100px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .cta-wrapper {
    padding: 60px 70px;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cta-wrapper {
    padding: 50px 60px;
  }
}
@media (max-width: 767px) {
  .cta-wrapper {
    padding: 40px 50px;
  }
}
@media (max-width: 575px) {
  .cta-wrapper {
    padding: 30px 40px;
  }
}
.cta-wrapper h2 {
  font-size: 55px;
  color: var(--header);
}
@media (max-width: 767px) {
  .cta-wrapper h2 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .cta-wrapper h2 {
    font-size: 40px;
  }
}
.cta-wrapper h2 span {
  font-weight: 400;
}
.cta-wrapper .theme-btn {
  background: #222226;
  color: var(--theme);
}
.cta-wrapper .theme-btn::before, .cta-wrapper .theme-btn::after {
  background-color: var(--white);
}
.cta-wrapper .theme-btn:hover {
  color: var(--header);
}

.paralax-section-2 {
  position: relative;
  padding: 280px 0;
  background-attachment: fixed;
  margin-top: 130px;
}
@media (max-width: 767px) {
  .paralax-section-2 {
    margin-top: 95px;
  }
}
@media (max-width: 991px) {
  .paralax-section-2 {
    margin-top: 75px;
  }
}
@media (max-width: 767px) {
  .paralax-section-2 {
    padding: 200px 0;
  }
}

.video-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  text-align: center;
}
.video-text .video-btn {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  display: inline-block;
  background-color: var(--theme);
  color: var(--header);
  border-radius: 50%;
  margin: 0 auto 20px;
}
.video-text h3 {
  font-size: 24px;
  color: var(--white);
  font-weight: 500;
}

.cta-section-4 {
  position: relative;
  z-index: 9;
}
.cta-section-4::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #1A1A1E;
  top: 50%;
}

.benefit-wrapper .benefit-left-content .theme-btn {
  background-color: var(--theme);
  color: var(--header);
  margin-top: 50px;
}
.benefit-wrapper .benefit-left-content .theme-btn::before, .benefit-wrapper .benefit-left-content .theme-btn::after {
  background-color: var(--white);
}
.benefit-wrapper .benefit-left-content .theme-btn:hover {
  color: var(--header);
}
.benefit-wrapper .benefit-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.benefit-wrapper .benefit-right-items .benefit-icon-items {
  display: flex;
  gap: 30px;
  border-bottom: 1px solid rgba(207, 208, 212, 0.2);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.benefit-wrapper .benefit-right-items .benefit-icon-items .icon {
  width: 70px;
  height: 70px;
  text-align: center;
  border-radius: 50%;
  line-height: 70px;
  background-color: var(--theme);
}
.benefit-wrapper .benefit-right-items .benefit-icon-items .content {
  flex-basis: 74%;
}
.benefit-wrapper .benefit-right-items .benefit-icon-items .content h3 {
  margin-bottom: 10px;
}

.cta-discuss-section {
  background-attachment: fixed;
}

.cta-discuss-content {
  text-align: center;
}
.cta-discuss-content h2 {
  font-size: 65px;
}
@media (max-width: 991px) {
  .cta-discuss-content h2 {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .cta-discuss-content h2 {
    font-size: 52px;
  }
}
@media (max-width: 575px) {
  .cta-discuss-content h2 {
    font-size: 40px;
  }
}
.cta-discuss-content h2 span {
  font-weight: 400;
  font-family: 'Inter', sans-serif !important;
}
.cta-discuss-content h2 span b {
  color: var(--theme);
  font-weight: 400;
}
.cta-discuss-content p {
  font-size: 24px;
  color: #CDCDCD;
  max-width: 525px;
  text-align: center;
  margin: 40px auto 0;
}
.cta-discuss-content .theme-btn {
  background-color: var(--theme);
  color: var(--header);
  margin-top: 50px;
}
.cta-discuss-content .theme-btn::before, .cta-discuss-content .theme-btn::after {
  background-color: var(--white);
}
.cta-discuss-content .theme-btn:hover {
  color: var(--header);
}


.mobile-app-wrapper .mobile-thumb {
  margin-bottom: -180px;
  position: relative;
  z-index: 5;
}
@media (max-width: 1199px) {
  .mobile-app-wrapper .mobile-thumb {
    margin-bottom: 0;
  }
  .mobile-app-wrapper .mobile-thumb img {
    width: 100%;
    height: 100%;
  }
}
.mobile-app-wrapper .mobile-thumb .shape-img {
  position: absolute;
  bottom: 0;
  left: -95px;
  z-index: -1;
}
@media (max-width: 1199px) {
  .mobile-app-wrapper .mobile-thumb .shape-img {
    display: none;
  }
}
.mobile-app-wrapper .mobile-app-content p {
  font-size: 24px;
  color: var(--white);
  opacity: 0.9;
}
.mobile-app-wrapper .mobile-app-content .apps-button {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 1199px) {
  .mobile-app-wrapper .mobile-app-content .apps-button {
    flex-wrap: wrap;
  }
}

.how-too-work-items {
  margin-top: 30px;
  text-align: center;
}
.how-too-work-items .icon {
  width: 171px;
  height: 171px;
  line-height: 171px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  text-align: center;
  margin: 0 auto;
  position: relative;
}
.how-too-work-items .icon .bar-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.how-too-work-items .content {
  margin-top: 30px;
}
.how-too-work-items .content h3 {
  font-weight: 500;
  margin-bottom: 10px;
}
.how-too-work-items .content p {
  color: var(--white);
  max-width: 255px;
  margin: 0 auto;
}

.how-to-work-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 1399px) {
  .how-to-work-wrapper {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
}
.how-to-work-wrapper .arrow-shape {
  margin-top: -100px;
}
@media (max-width: 1399px) {
  .how-to-work-wrapper .arrow-shape {
    display: none;
  }
}

.platform-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .platform-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}
.platform-wrapper .platform-icon {
  width: 210px;
  height: 210px;
  line-height: 210px;
  border-radius: 50%;
  background-color: #FFFFFF;
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .platform-wrapper .platform-icon {
    width: 150px;
    height: 150px;
    line-height: 150px;
  }
}
.platform-wrapper .platform-items {
  display: flex;
  align-items: center;
  gap: 229px;
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .platform-wrapper .platform-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.platform-wrapper-2 {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media (max-width: 1199px) {
  .platform-wrapper-2 {
    flex-wrap: wrap;
  }
}
.platform-wrapper-2 .platform-icon {
  width: 210px;
  height: 210px;
  line-height: 210px;
  border-radius: 50%;
  background-color: #FFFFFF;
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .platform-wrapper-2 .platform-icon {
    width: 150px;
    height: 150px;
    line-height: 150px;
  }
}

.work-process-items {
  margin-top: 30px;
  text-align: center;
  padding: 50px 35px;
  border-radius: 25px;
  background: #1D1D21;
}
.work-process-items .icon {
  width: 62.56px;
  height: 64.4px;
  border-radius: 200px 200px 200px 0;
  background: #414146;
  text-align: center;
  line-height: 64.4px;
  margin: 0 auto;
  margin-bottom: 25px;
  position: relative;
}
.work-process-items .icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 92px;
  height: 92px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  border-radius: 50%;
}
.work-process-items .number {
  color: #CDCDCD;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  margin: 0 auto;
  border: 1px solid rgba(207, 208, 212, 0.2);
}
.work-process-items .content {
  margin-top: 30px;
}
.work-process-items .content h3 {
  margin-bottom: 15px;
}

.scrolling-wrap {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  gap: 20px;
  background: #222226;
  padding: 40px 0;
}
.scrolling-wrap .comm {
  display: flex;
  align-items: center;
  animation: scroll 40s linear infinite;
  gap: 30px;
  cursor: pointer;
}
.scrolling-wrap .comm .cmn-textslide {
  font-size: 120px;
  font-weight: 900;
  line-height: 92%;
  text-transform: uppercase;
  color: var(--white);
}
.scrolling-wrap:hover .comm {
  animation-play-state: paused;
}
@media (max-width: 991px) {
  .scrolling-wrap .comm {
    gap: 20px;
  }
  .scrolling-wrap .comm .cmn-textslide {
    font-size: 90px;
    line-height: 100px;
  }
  .scrolling-wrap .comm img {
    width: 70px;
  }
}
@media (max-width: 575px) {
  .scrolling-wrap .comm {
    gap: 20px;
  }
  .scrolling-wrap .comm .cmn-textslide {
    font-size: 60px;
    line-height: 65px;
  }
  .scrolling-wrap .comm img {
    width: 70px;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scroll2 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-200%);
  }
}
.digital-marketing {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  gap: 20px;
}
.digital-marketing .comm {
  display: flex;
  align-items: center;
  animation: scroll 40s linear infinite;
  gap: 30px;
  cursor: pointer;
}
.digital-marketing .comm .cmn-textslide {
  font-size: 80px;
  font-weight: 600;
  line-height: 110px;
  opacity: 25%;
  transition: all 0.5s;
  text-transform: capitalize;
}
.digital-marketing .comm .cmn-textslide .serial-badge {
  padding: 7px 15px;
  width: 80px;
  line-height: initial;
  font-size: 16px;
  border: 1px solid #454750;
  border-radius: 100px;
  gap: 10px !important;
  text-align: center;
}
.digital-marketing .comm .cmn-textslide .serial-badge i {
  transform: rotate(-40deg);
  color: var(--theme);
}
.digital-marketing .comm .cmn-textslide .digital-thumb {
  max-width: 330px;
  max-height: 235px;
  margin: -150px auto 0;
  transform: scale(0);
  visibility: hidden;
  transition: all 0.6s;
}
.digital-marketing .comm .cmn-textslide .digital-thumb img {
  width: 100%;
  height: 100%;
}
.digital-marketing .comm .cmn-textslide:hover {
  opacity: 1;
}
.digital-marketing .comm .cmn-textslide:hover .digital-thumb {
  transform: scale(1);
  visibility: visible;
}
@media (max-width: 1199px) {
  .digital-marketing .comm {
    display: flex;
    align-items: center;
    animation: scroll 40s linear infinite;
    gap: 30px;
    cursor: pointer;
  }
  .digital-marketing .comm .cmn-textslide {
    font-size: 48px;
    line-height: 110px;
  }
  .digital-marketing .comm .cmn-textslide .digital-thumb {
    max-width: 230px;
    max-height: 235px;
    margin: -150px auto 0;
  }
}
@media (max-width: 991px) {
  .digital-marketing .comm {
    gap: 16px;
    cursor: pointer;
  }
  .digital-marketing .comm .cmn-textslide {
    font-size: 36px;
  }
  .digital-marketing .comm .cmn-textslide .digital-thumb {
    max-width: 170px;
    max-height: 105px;
    margin: -100px auto 0;
  }
}

.text-slie-reverse .comm {
  display: flex;
  align-items: center;
  animation: scroll 80s linear infinite;
}

.digital-software .comm .cmn-textslide {
  font-size: 40px;
  font-weight: 700;
  line-height: 58px;
}
.digital-software .comm img {
  width: 65px;
}
@media (max-width: 575px) {
  .digital-software .comm .cmn-textslide {
    font-size: 30px;
    font-weight: 700;
    line-height: 58px;
  }
  .digital-software .comm img {
    width: 55px;
  }
}

.footer-widgets-wrapper {
  padding: 90px 0 120px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .footer-widgets-wrapper {
    padding: 70px 0 100px;
  }
}
@media (max-width: 991px) {
  .footer-widgets-wrapper {
    padding: 50px 0 80px;
  }
}
.footer-widgets-wrapper .single-footer-widget {
  margin-top: 30px;
}
.footer-widgets-wrapper .single-footer-widget .widget-head {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .widget-head {
    margin-bottom: 20px;
  }
}
.footer-widgets-wrapper .single-footer-widget .widget-head h3 {
  font-weight: bold;
  color: var(--white);
  font-size: 24px;
  display: inline-block;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .footer-widgets-wrapper .single-footer-widget .widget-head h3 {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .widget-head h3 {
    font-size: 20px;
  }
}
.footer-widgets-wrapper .single-footer-widget .footer-content h3 {
  font-size: 55px;
  font-weight: 700;
  color: var(--white);
}
@media (max-width: 1199px) {
  .footer-widgets-wrapper .single-footer-widget .footer-content h3 {
    font-size: 48px;
  }
}
@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .footer-content h3 {
    font-size: 35px;
  }
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input {
  position: relative;
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input {
  outline: none;
  width: 100%;
  color: #333;
  border: none;
  font-size: 16px;
  border-radius: 30px;
  border: 1px solid #333;
  opacity: 0.2;
  background: rgba(217, 217, 217, 0);
  padding: 16px 30px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input::placeholder {
  color: #333 !important;
}
.footer-widgets-wrapper .single-footer-widget .list-items li {
  text-transform: capitalize;
  background-image: linear-gradient(var(--theme), var(--theme));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  display: table;
  transition: all 0.4s ease-in-out;
  position: relative;
}
.footer-widgets-wrapper .single-footer-widget .list-items li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "*";
  font-family: 'Inter', sans-serif !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  font-size: 30px;
}
.footer-widgets-wrapper .single-footer-widget .list-items li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widgets-wrapper .single-footer-widget .list-items li a {
  font-size: 18px;
  color: #000;
  position: relative;
}
.footer-widgets-wrapper .single-footer-widget .list-items li:hover {
  background-size: 100% 1px;
}
.footer-widgets-wrapper .single-footer-widget .list-items li:hover::before {
  opacity: 1;
  visibility: visible;
  color: var(--theme);
}
.footer-widgets-wrapper .single-footer-widget .list-items li:hover a {
  padding-left: 25px;
  color: var(--theme);
}
.footer-widgets-wrapper .single-footer-widget .footer-thumb {
  position: relative;
}
.footer-widgets-wrapper .single-footer-widget .footer-thumb::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--black);
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: visible;
}
.footer-widgets-wrapper .single-footer-widget .footer-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.footer-widgets-wrapper .single-footer-widget .footer-thumb .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: visible;
}
.footer-widgets-wrapper .single-footer-widget .footer-thumb:hover::before {
  opacity: 0.6;
  visibility: visible;
}
.footer-widgets-wrapper .single-footer-widget .footer-thumb:hover .icon {
  opacity: 1;
  visibility: visible;
}
.footer-widgets-wrapper.style-2 .single-footer-widget .widget-head h3 {
  color: var(--header2);
}
.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content p {
  font-weight: 500;
  color: var(--text2);
}
.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content .social-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}
.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content .social-icon a {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #E8E7E4;
  color: var(--text2);
}
.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content .social-icon a:hover {
  color: var(--white);
  background-color: var(--theme2);
}
.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content .footer-input-2 {
  position: relative;
  margin-top: 30px;
  margin-bottom: 20px;
}
.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content .footer-input-2 input {
  outline: none;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #E8E7E4;
  color: var(--text2);
  background-color: var(--white);
  font-size: 16px;
  padding: 20px 25px;
}
.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content .footer-input-2 input::placeholder {
  color: var(--text2);
}
.footer-widgets-wrapper.style-2 .single-footer-widget .footer-content .footer-input-2 .newsletter-btn {
  background-color: #2A2A2A;
  width: 60px;
  height: 60px;
  line-height: 60px;
  display: inline-block;
  text-align: center;
  border-radius: 4px;
  color: var(--white);
  position: absolute;
  background-color: var(--theme2);
  top: 5px;
  right: 6px;
}
.footer-widgets-wrapper.style-2 .single-footer-widget .list-items li {
  background-image: linear-gradient(var(--theme2), var(--theme2));
}
.footer-widgets-wrapper.style-2 .single-footer-widget .list-items li a {
  color: var(--text2);
}
.footer-widgets-wrapper.style-2 .single-footer-widget .list-items li:hover::before {
  color: var(--theme2);
}
.footer-widgets-wrapper.style-2 .single-footer-widget .list-items li:hover a {
  color: var(--theme2);
}

.footer-bottom {
 
  border-top: 1px solid rgba(207, 208, 212, 0.15);
  background-color: #1D1D21;
}
.footer-bottom .footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .footer-bottom .footer-bottom-wrapper {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    text-align: center;
  }
}
.footer-bottom p {
  color: var(--text);
}
.footer-bottom p a {
  color: var(--theme);
  font-weight: 400;
  text-decoration: underline;
}
.footer-bottom .social-icon {
  display: flex;
  align-items: center;
  gap: 45px;
}
.footer-bottom .social-icon a {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  border: none;
  color: #CDCDCD !important;
  font-size: 20px;
}
.footer-bottom .social-icon a:hover {
  color: var(--theme);
}
.footer-bottom.style-2 {
  border-top: 1px solid #E8E7E4;
}
.footer-bottom.style-2 p {
  color: #5C6972;
}
.footer-bottom.style-2 .footer-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-bottom.style-2 .footer-menu li {
  font-size: 18px;
  color: var(--text2);
  font-weight: 500;
}
.footer-bottom.style-2 .footer-menu li a {
  color: var(--text2);
}
.footer-bottom.style-2 .footer-menu li a:hover {
  color: var(--theme2);
}


/* Mobile Responsive Footer Styles */
@media (max-width: 991px) {
  .footer-bottom {
    padding: 20px 0;
  }

  .footer-bottom-wrapper {
    flex-direction: column;
    gap: 20px !important;
    padding: 0 15px;
  }

  .logo-img {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .logo-img img {
    width: 60px;
    height: auto;
  }

  .logo-img p {
    margin-top: 10px;
  }

  .social-icon {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px !important;
  }

  .social-icon a {
    width: auto !important;
    height: auto !important;
    line-height: normal !important;
    border-radius: 0 !important;
    font-size: 16px !important;
    padding: 5px 10px;
  }
}

/* For very small screens (below 480px) */
@media (max-width: 480px) {
  .social-icon {
    gap: 10px !important;
  }

  .social-icon a {
    font-size: 14px !important;
    padding: 5px 8px;
  }

  .logo-img p {
    font-size: 14px;
  }
}







.footer-section {
  position: relative;
}
.footer-section .circle-shape {
  position: absolute;
  top: 25%;
  left: 60px;
}
@media (max-width: 1399px) {
  .footer-section .circle-shape {
    display: none;
  }
}
.footer-section .circle-shape-2 {
  position: absolute;
  top: -125px;
  right: 30px;
  animation: rounded 5s linear infinite;
}
@media (max-width: 1399px) {
  .footer-section .circle-shape-2 {
    display: none;
  }
}

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

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0;
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 20px;
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color:var(--header);
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;

}
.header-main .main-menu ul li a i {
  margin-left: 4px;
  font-size: 10px;
}
.header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 115%;
  inset-inline-start: 0;
  min-width: 240px;
  background: #120f0f;
  padding: 20px 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  transform: translateY(-10px);
  transition: all 0.4s ease-in-out;
  border-top: 6px solid var(--theme);
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  line-height: 38px;
  padding: 0px 0px 0px 32px;
  width: 100%;
}
.header-main .main-menu ul li .submenu li a::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 2px;
  background: var(--theme);
  left: 14px;
  bottom: 18px;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li a:hover {
  color: var(--white) !important;
}
.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
  color: var(--theme) !important;
  margin-left: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::before {
  width: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu {
  width: 800px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 14px 20px;
  color: var(--header) !important;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 0px !important;
  background-color: var(--theme);
  line-height: initial;
  font-weight: 600;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  font-family: 'Inter', sans-serif !important;
}
.header-main .main-menu ul li:hover > a {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header-main .header-right {
  gap: 35px;
}
@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}
.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
}

.header-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.header-1 .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1899px) {
  .header-1 .container-fluid {
    padding: 0 60px;
  }
}
@media (max-width: 1600px) {
  .header-1 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .header-1 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .header-1 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 1199px) {
  .header-1 .join-text {
    display: none;
  }
}
.header-1 .header-left {
  display: flex;
  align-items: center;
  gap: 160px;
}
@media (max-width: 1600px) {
  .header-1 .header-left {
    gap:140px;
  }
}

.header-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.header-2 .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1899px) {
  .header-2 .container-fluid {
    padding: 0 60px;
  }
}
@media (max-width: 1600px) {
  .header-2 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .header-2 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .header-2 .container-fluid {
    padding: 0 30px;
  }
}
.header-2 .header-main .main-menu ul li a {
  color: var(--white);
}
.header-2 .header-main .main-menu ul li a:hover {
  color: var(--white) !important;
}
.header-2 .header-main .main-menu ul li .submenu {
  background: var(--white);
  color: var(--header);
  border-top: 6px solid var(--theme2);
  box-shadow: var(--box-shadow);
}
.header-2 .header-main .main-menu ul li .submenu li a {
  font-weight: 500;
  color: var(--header);
}
.header-2 .header-main .main-menu ul li .submenu li a::before {
  background: var(--theme2);
}
.header-2 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--white) !important;
}
.header-2 .header-main .main-menu ul li .submenu li:hover > a {
  color: var(--theme2) !important;
}
.header-2 .header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme2);
}
.header-2 .header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  color: var(--theme2);
}
.header-2 .header-main .main-menu ul li:hover > a {
  color: var(--white);
}
.header-2 .header-main .main-menu ul li:hover > a::after {
  color: var(--theme2);
}
.header-2 .header-left {
  display: flex;
  align-items: center;
  gap: 160px;
}
@media (max-width: 1600px) {
  .header-2 .header-left {
    gap: 80px;
  }
}
.header-2 .join-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--white) !important;
}
.header-2 .theme-btn {
  background-color: var(--white);
  color: var(--header);
  padding: 20px 50px;
}
@media (max-width: 1199px) {
  .header-2 .theme-btn {
    display: none;
  }
}
.header-2 .theme-btn::before, .header-2 .theme-btn::after {
  background-color: var(--theme2);
}
.header-2 .theme-btn:hover {
  color: var(--white);
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.9s;
  background-color: #181818;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.sticky.header-2 {
  background-color: var(--theme2);
}

.offcanvas__info {
  background: var(--bg) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas__content .text {
  color: var(--text);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--header);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--text);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 20px 40px;
  text-transform: capitalize !important;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--text);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme);
  color: var(--header);
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
}
.breadcrumb-wrapper .arrow-shape {
  position: absolute;
  top: 50px;
  left: 50px;
}
.breadcrumb-wrapper .circle-shape {
  position: absolute;
  top: -25%;
  right: 0;
}
.breadcrumb-wrapper .page-heading {
  position: relative;
  padding: 170px 0 170px;
  z-index: 9;
  text-align: center;
}
@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading {
    padding: 140px 0;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading {
    padding: 110px 0;
  }
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading {
    padding: 130px 0 80px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading {
    padding: 100px 0 60px;
  }
}
.breadcrumb-wrapper .page-heading h6 {
  font-size: 16px;
  font-weight: 700;
  color: #CDCDCD;
  margin-bottom: 20px;
}
.breadcrumb-wrapper .page-heading h1 {
  color: var(--white);
  font-size: 66px;
  position: relative;
  z-index: 9;
  font-weight: 600;
  text-transform: capitalize;
}
.breadcrumb-wrapper .page-heading h1 span {
  font-weight: 400;
  color: var(--theme);
  font-family: 'Inter', sans-serif !important;
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 42px;
  }
}

@media (max-width: 1199px) {
  .error-section.style-padding {
    padding-top: 100px !important;
  }
}

.error-items {
  text-align: center;
}
.error-items .error-image {
  max-width: 520px;
  margin: 0 auto;
}
.error-items .error-image img {
  width: 100%;
  height: 100%;
}
.error-items h2 {
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 65px;
}
@media (max-width: 575px) {
  .error-items h2 {
    font-size: 36px;
  }
}
.error-items p {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 40px;
}
.error-items .theme-btn {
  background-color: var(--theme);
  color: var(--header);
}
.error-items .theme-btn::before, .error-items .theme-btn::after {
  background-color: var(--white);
}

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

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--theme);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ripple {
  position: relative;
}
.ripple::before, .ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(191, 247, 71, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}
.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.swiper-dot .swiper-pagination-bullet {
  width: 40px;
  height: 8px;
  transition: 0.6s;
  background-color: #2A2A2A;
  opacity: 1;
  border-radius: 10px;
  position: relative;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
  width: 40px;
}

@media (max-width: 767px) {
  br {
    display: none;
  }
}

/* background */
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.nice-select {
  background-color: transparent;
  border: transparent;
  float: initial;
  overflow: initial;
  height: initial;
  padding: 0;
  display: inline-flex;
  align-items: center;
  line-height: 150%;
  width: 100%;
  border: none;
}
.nice-select:focus, .nice-select:hover {
  border-color: transparent;
}
.nice-select::after {
  height: 8px;
  width: 8px;
  right: -25px;
  top: 15px;
  border-color: var(--header);
  border-bottom: 2px solid var(--header);
  border-right: 2px solid var(--header);
}
.nice-select .list {
  width: initial;
  background-color: var(--theme);
  box-shadow: none;
  overflow: initial;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
  width: 100%;
  top: 100%;
  padding: 0;
  max-height: 50vh;
  overflow-x: auto;
  right: -50px;
}
.nice-select .list::-webkit-scrollbar {
  width: 2px;
  opacity: 1;
  display: block;
}
.nice-select .list::-webkit-scrollbar-button, .nice-select .list::-webkit-scrollbar-thumb {
  background: var(--header);
}
.nice-select .option {
  background-color: transparent;
  font-size: 16px;
  line-height: 150%;
  padding: 4px 5px;
  min-height: initial;
  font-weight: 500;
}
.nice-select .option:hover, .nice-select .option:focus, .nice-select .option.selected.focus {
  background-color: transparent;
}
.nice-select .current {
  font-weight: 500;
  color: var(--header);
}

.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: transparent;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 50%;
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}
.page-nav-wrap ul li .page-numbers.icon {
  border: none;
  background-color: transparent;
  color: var(--theme);
}
.page-nav-wrap ul li .page-numbers.icon:hover {
  border: none;
  background-color: transparent;
  color: var(--theme);
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--header);
  border: 1px solid transparent;
}

.body-bg {
  background-color: var(--body-bg);
}

.ml-200 {
  margin-left: 200px;
}
@media (max-width: 1199px) {
  .ml-200 {
    margin-left: 0;
  }
}

.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: transparent;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 50%;
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}
.page-nav-wrap ul li .page-numbers.icon {
  border: none;
  background-color: transparent;
  color: var(--theme);
}
.page-nav-wrap ul li .page-numbers.icon:hover {
  border: none;
  background-color: transparent;
  color: var(--theme);
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--header);
  border: 1px solid transparent;
}

.hero-1 {
  position: relative;
  z-index: 9;
  overflow: hidden;
}
/* @media (max-width: 1199px) {
  .hero-1 {
    padding: 170px 0 100px;
  }
}
@media (max-width: 991px) {
  .hero-1 {
    padding: 170px 0 80px;
  }
} */
.hero-1 .hero-content {
  position: relative;
}
.hero-1 .hero-content .color-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.hero-1 .hero-content p {
  font-size: 27px;
  text-transform: uppercase;
  text-align: center;
  margin-left: 320px;
  margin-bottom: 10px;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .hero-1 .hero-content p {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-content p {
    font-size: 24px;
  }
}
.hero-1 .hero-content h1 {
  text-transform: uppercase;
  font-size: 140px;
}
@media (max-width: 1399px) {
  .hero-1 .hero-content h1 {
    font-size: 120px;
  }
}
@media (max-width: 1199px) {
  .hero-1 .hero-content h1 {
    font-size: 100px;
  }
}
@media (max-width: 991px) {
  .hero-1 .hero-content h1 {
    line-height: 120%;
    text-align: center;
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-content h1 {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-content h1 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .hero-1 .hero-content h1 img {
    display: none;
  }
}
.hero-1 .hero-content h1 .text {
  font-size: 24px;
  font-weight: 700;
  color: #CDCDCD;
  line-height: 134%;
}
.hero-1 .hero-content h1 b {
  color: var(--theme);
  margin-left: 280px;
}
@media (max-width: 1399px) {
  .hero-1 .hero-content h1 b {
    margin-left: 0;
  }
}
.hero-1 .hero-content h1 .text-2 {
  font-weight: 400;
  font-family: 'Inter', sans-serif !important;
}
.hero-1 .hero-image {
  margin-top: 150px;
  height: 320px;
}
@media (max-width: 1199px) {
  .hero-1 .hero-image {
    margin-left: 0;
    margin-top: 80px;
  }
}
@media (max-width: 1199px) {
  .hero-1 .hero-image {
    margin-top: 50px;
    height: 150px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-image {
    height: 80px;
  }
}
.hero-1 .hero-image img {
  width: 100%;
  height: 100%;
}

.hero-2 {
  padding: 200px 0 200px;
}
.hero-2 .hero-content {
  position: relative;
  z-index: 9;
}
@media (max-width: 767px) {
  .hero-2 .hero-content {
    text-align: center;
  }
}
.hero-2 .hero-content h1 {
  font-size: 80px;
  line-height: 113%;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .hero-2 .hero-content h1 {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-content h1 {
    font-size: 52px;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-content h1 {
    font-size: 40px;
  }
}
.hero-2 .hero-content h1 span {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400;
}
.hero-2 .hero-content p {
  font-size: 24px;
  color: var(--white);
  line-height: 142%;
  margin-top: 25px;
}
@media (max-width: 1199px) {
  .hero-2 .hero-content p {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .hero-2 .hero-content p {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .hero-2 .hero-content p {
    font-size: 18px;
  }
}
.hero-2 .hero-content .theme-btn {
  margin-top: 40px;
  border: 1px solid var(--white);
  background-color: transparent;
  color: var(--white);
}
.hero-2 .hero-content .theme-btn::before, .hero-2 .hero-content .theme-btn::after {
  background-color: var(--white);
}
.hero-2 .hero-content .theme-btn:hover {
  color: var(--header);
}
.hero-2 .hero-image {
  position: relative;
}
@media (max-width: 1399px) {
  .hero-2 .hero-image img {
    width: 100%;
    height: 100%;
  }
}
.hero-2 .hero-image .circle-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1399px) {
  .hero-2 .hero-image .circle-shape {
    display: none;
  }
}

.hero-3 {
  padding: 160px 0 160px;
  overflow: hidden;
}
.hero-3 .hero-content {
  text-align: center;
}
@media (max-width: 1199px) {
  .hero-3 .hero-content {
    margin-bottom: 40px;
  }
}
.hero-3 .hero-content h1 {
  font-size: 80px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .hero-3 .hero-content h1 {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-content h1 {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  .hero-3 .hero-content h1 {
    font-size: 40px;
  }
}
.hero-3 .hero-content h1 span {
  font-weight: 400;
  font-family: 'Inter', sans-serif !important;
}
.hero-3 .hero-content p {
  font-size: 24px;
  max-width: 525px;
  line-height: 142%;
  text-align: center;
  margin: 0 auto;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .hero-3 .hero-content p {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-content p {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .hero-3 .hero-content p {
    font-size: 18px;
  }
}
.hero-3 .hero-content .hero-button {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .hero-3 .hero-content .hero-button {
    margin-top: 30px;
  }
}
.hero-3 .hero-image-items {
  display: flex;
  align-items: center;
  margin-bottom: -200px;
}
@media (max-width: 1199px) {
  .hero-3 .hero-image-items {
    margin-bottom: -80px;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-image-items {
    gap: 0;
  }
}
.hero-3 .hero-image-items .hero-image {
  position: relative;
  z-index: 9;
  margin-top: 150px;
}
@media (max-width: 1199px) {
  .hero-3 .hero-image-items .hero-image {
    margin-top: 0;
    margin: 0 auto;
    text-align: center;
  }
}
.hero-3 .hero-image-items .hero-image img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}
.hero-3 .hero-image-items .hero-image.style-2 {
  transform: rotate(-10.802deg);
  margin-bottom: -40px;
}
@media (max-width: 1199px) {
  .hero-3 .hero-image-items .hero-image.style-2 {
    margin-bottom: 0;
  }
}
.hero-3 .hero-image-items .hero-image.style-3 {
  transform: rotate(11.846deg);
  margin-bottom: -40px;
  z-index: 1;
  margin-bottom: 0;
}

.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;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.mean-container .mean-nav > ul .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items {
    flex-wrap: wrap;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu {
  position: relative;
}
@media (max-width: 1199px) {
  .mean-container .mean-nav > ul .homemenu-items .homemenu {
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
    border: 1px solid var(--border);
    padding: 10px;
  }
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 12px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 0;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.mean-container .mean-nav > ul .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}

.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: 1.5;
  font-weight: 500;
  text-transform: capitalize;
  border-bottom: 1px solid var(--border) !important;
  border: none;
}
.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 {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  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;
}

.news-box-items {
  margin-top: 30px;
}
.news-box-items .news-image {
  position: relative;
}
.news-box-items .news-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.news-box-items .news-image .post-date {
  padding: 10px 20px;
  background-color: var(--white);
  position: absolute;
  top: 20px;
  left: 20px;
  border-radius: 20px;
}
.news-box-items .news-image .post-date h4 {
  color: var(--header2);
  font-size: 24px;
  font-weight: 600;
}
.news-box-items .news-image .post-date span {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--header2);
}
.news-box-items .news-content {
  margin-top: 20px;
}
.news-box-items .news-content .post-cat {
  margin-bottom: 15px;
}
.news-box-items .news-content .post-cat li {
  font-size: 15px;
  font-weight: 700;
  color: var(--text2);
  text-transform: uppercase;
}
.news-box-items .news-content .post-cat li i {
  color: #514DE0;
  margin-right: 5px;
}
.news-box-items .news-content h3 {
  font-weight: 500;
  margin-bottom: 20px;
}
.news-box-items .news-content h3 a {
  color: var(--header2);
}
.news-box-items .news-content h3 a:hover {
  color: var(--theme2);
}
.news-box-items .news-content .link-btn {
  font-size: 17px;
  font-weight: 700;
  color: var(--text2);
  display: inline-block;
}
.news-box-items .news-content .link-btn i {
  margin-left: 5px;
}
.news-box-items .news-content .link-btn:hover {
  color: var(--theme2);
}

.news-box-items-2 {
  margin-top: 30px;
}
.news-box-items-2 .news-image {
  position: relative;
}
.news-box-items-2 .news-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.news-box-items-2 .news-content {
  margin-top: 25px;
  text-align: center;
}
.news-box-items-2 .news-content .post-cat {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
  justify-content: center;
}
.news-box-items-2 .news-content .post-cat li {
  font-size: 15px;
  text-transform: uppercase;
}
.news-box-items-2 .news-content .post-cat li i {
  color: var(--theme);
  margin-right: 10px;
}
.news-box-items-2 .news-content h3 a:hover {
  color: var(--theme);
}
.news-box-items-2 .news-content .icon {
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(207, 208, 212, 0.2);
  display: inline-block;
  background: #222226;
  margin-top: 30px;
}
.news-box-items-2 .news-content .icon:hover {
  background-color: var(--theme);
  color: var(--header);
}

.news-standard-wrapper .news-standard-items {
  border-bottom: 1px solid var(--border);
  padding: 25px;
}
.news-standard-wrapper .news-standard-items:not(:last-child) {
  margin-bottom: 25px;
}
.news-standard-wrapper .news-standard-items .news-thumb {
  position: relative;
}
.news-standard-wrapper .news-standard-items .news-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}
.news-standard-wrapper .news-standard-items .news-thumb .post-date {
  padding: 12px 24px;
  background-color: var(--theme);
  position: absolute;
  top: 30px;
  left: 30px;
}
.news-standard-wrapper .news-standard-items .news-thumb .post-date h3 {
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
}
.news-standard-wrapper .news-standard-items .news-thumb .post-date h3 span {
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
}
.news-standard-wrapper .news-standard-items .news-content {
  margin-top: 20px;
  position: relative;
  z-index: 9;
}
.news-standard-wrapper .news-standard-items .news-content ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .news-standard-wrapper .news-standard-items .news-content ul {
    gap: 20px;
  }
}
.news-standard-wrapper .news-standard-items .news-content ul li {
  font-size: 15px;
  font-weight: 500;
  color: #CDCDCD;
  text-transform: uppercase;
}
.news-standard-wrapper .news-standard-items .news-content ul li i {
  color: var(--theme);
  margin-right: 5px;
}
.news-standard-wrapper .news-standard-items .news-content h3 {
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 55px;
}
@media (max-width: 991px) {
  .news-standard-wrapper .news-standard-items .news-content h3 {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .news-standard-wrapper .news-standard-items .news-content h3 {
    font-size: 44px;
  }
}
@media (max-width: 575px) {
  .news-standard-wrapper .news-standard-items .news-content h3 {
    font-size: 36px;
  }
}
.news-standard-wrapper .news-standard-items .news-content h3 a:hover {
  color: var(--theme);
}

.main-sidebar .single-sidebar-widget {
  padding: 40px 30px;
  border-radius: 25px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  background: rgba(217, 217, 217, 0);
  margin-bottom: 30px;
}
.main-sidebar .single-sidebar-widget .wid-title {
  margin-bottom: 25px;
}
.main-sidebar .single-sidebar-widget .wid-title h3 {
  position: relative;
  font-size: 24px;
}
.main-sidebar .single-sidebar-widget .wid-title h3 img {
  padding-right: 10px;
}
.main-sidebar .single-sidebar-widget .search-widget form {
  width: 100%;
  position: relative;
}
.main-sidebar .single-sidebar-widget .search-widget form input {
  border-radius: 10px;
  background: #222226;
  font-size: 15px;
  padding: 20px;
  width: 100%;
  border: none;
  color: #CDCDCD;
}
.main-sidebar .single-sidebar-widget .search-widget form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme);
  color: var(--header);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.main-sidebar .single-sidebar-widget .search-widget form button:hover {
  background-color: var(--header);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-radius: 10px;
  background: #222226;
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li a {
  color: #CDCDCD;
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li span {
  transition: all 0.4s ease-in-out;
  color: #CDCDCD;
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li:not(:last-child) {
  margin-bottom: 12px;
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover {
  background-color: var(--theme);
  color: var(--header);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover a {
  color: var(--header);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover span {
  color: var(--header);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active {
  background-color: var(--theme);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active a {
  color: var(--header);
}
.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active span {
  color: var(--header);
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items:not(:last-child) {
  margin-bottom: 20px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-thumb img {
  border-radius: 10px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content span {
  color: #CDCDCD;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 5px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul {
  margin-top: 8px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li {
  font-size: 15px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content ul li i {
  color: var(--theme);
  margin-right: 5px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 {
  font-weight: 700;
  font-size: 18px;
}
.main-sidebar .single-sidebar-widget .recent-post-area .recent-items .recent-content h6 a:hover {
  color: var(--theme);
}
.main-sidebar .single-sidebar-widget .tagcloud a {
  display: inline-block;
  padding: 13px 20px;
  line-height: 1;
  font-size: 15px;
  font-weight: 700;
  border-radius: 5px;
  background: #222226;
  margin-right: 5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
}
.main-sidebar .single-sidebar-widget .tagcloud a:last-child {
  margin-right: 0;
}
.main-sidebar .single-sidebar-widget .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--header);
}
.main-sidebar .news-banner-img {
  margin-bottom: 30px;
}
.main-sidebar .news-banner-img img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}

.news-details-area .blog-post-details .single-blog-post .post-featured-thumb {
  height: 400px;
}
@media (max-width: 767px) {
  .news-details-area .blog-post-details .single-blog-post .post-featured-thumb {
    height: 400px;
  }
}
.news-details-area .blog-post-details .single-blog-post .post-content {
  margin-top: 30px;
}
.news-details-area .blog-post-details .single-blog-post .post-content .post-list {
  gap: 30px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
.news-details-area .blog-post-details .single-blog-post .post-content .post-list li {
  font-size: 14px;
  font-weight: 500;
}
.news-details-area .blog-post-details .single-blog-post .post-content .post-list li i {
  color: var(--theme);
  margin-right: 5px;
}
.news-details-area .blog-post-details .single-blog-post .post-content h3 {
  margin-bottom: 20px;
  font-size: 32px;
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .single-blog-post .post-content h3 {
    font-size: 24px;
  }
}
.news-details-area .blog-post-details .single-blog-post .post-content h3 a:hover {
  color: var(--theme);
}
.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text {
  border-left: 4px solid var(--theme);
  padding: 40px;
  background-color: var(--bg);
}
.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text p {
  max-width: 650px;
  font-weight: 500;
  text-transform: capitalize;
  font-style: italic;
  line-height: 26px;
}
.news-details-area .blog-post-details .single-blog-post .post-content .hilight-text svg {
  float: right;
  margin-top: -30px;
}
.news-details-area .blog-post-details .single-blog-post .post-content .details-image img {
  width: 100%;
  height: 100%;
}
.news-details-area .blog-post-details .tag-share-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}
.news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
  display: inline-block;
  padding: 12px 26px;
  line-height: 1;
  background: var(--bg);
  margin-right: 8px;
  text-transform: capitalize;
  font-weight: 500;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .tag-share-wrap .tagcloud a {
    margin-bottom: 5px;
  }
}
.news-details-area .blog-post-details .tag-share-wrap .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.news-details-area .blog-post-details .tag-share-wrap .social-share span {
  font-size: 18px;
  color: var(--header);
  font-weight: 600;
}
.news-details-area .blog-post-details .tag-share-wrap .social-share a {
  font-size: 18px;
  color: var(--header);
}
.news-details-area .blog-post-details .tag-share-wrap .social-share a:not(:last-child) {
  margin-right: 10px;
}
.news-details-area .blog-post-details .tag-share-wrap .social-share a:hover {
  color: var(--theme);
}
.news-details-area .blog-post-details .comments-area {
  margin-top: 40px;
  padding: 50px 40px;
  background-color: var(--bg);
}
.news-details-area .blog-post-details .comments-area .comments-heading {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .comments-area .comments-heading {
    margin-bottom: 20px;
  }
}
.news-details-area .blog-post-details .comments-area .comments-heading h3 {
  font-size: 32px;
  font-weight: 500;
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .comments-area .comments-heading h3 {
    font-size: 28px;
  }
}
.news-details-area .blog-post-details .comments-area .blog-single-comment {
  border-bottom: 1px solid var(--border);
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .comments-area .blog-single-comment {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .con h5 {
  margin-bottom: 5px;
  font-weight: 600;
}
.news-details-area .blog-post-details .comments-area .blog-single-comment .content .head .star i {
  color: var(--theme);
  font-size: 14px;
}
.news-details-area .blog-post-details .comments-area .blog-single-comment .content .reply {
  border-radius: 30px;
  padding: 5px 15px;
  font-weight: 400;
  background-color: var(--white);
  color: var(--theme);
}
.news-details-area .blog-post-details .comment-form-wrap h3 {
  font-size: 32px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .news-details-area .blog-post-details .comment-form-wrap h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.news-details-area .blog-post-details .comment-form-wrap .form-clt input, .news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: transparent;
  border: 1px solid var(--border);
  padding: 16px 20px;
  font-weight: 500;
}
.news-details-area .blog-post-details .comment-form-wrap .form-clt input::placeholder, .news-details-area .blog-post-details .comment-form-wrap .form-clt textarea::placeholder {
  color: var(--text);
}
.news-details-area .blog-post-details .comment-form-wrap .form-clt textarea {
  padding-bottom: 100px;
}

.news-hero-section {
  padding: 200px 0;
  position: relative;
}
.news-hero-section .array-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  right: 100px;
  left: 100px;
  transform: translateY(-50%);
}
@media (max-width: 1199px) {
  .news-hero-section .array-button {
    display: none;
  }
}
.news-hero-section .array-button .array-prev, .news-hero-section .array-button .array-next {
  width: 40px;
  height: 55px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  line-height: 55px;
  color: #CDCDCD;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
}
.news-hero-section .array-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--header);
}
.news-hero-section .array-button .array-next {
  background-color: var(--theme);
  color: var(--header);
}
.news-hero-section .array-button .array-next:hover {
  background-color: var(--white);
  color: var(--header);
}
.news-hero-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.news-hero-section .hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.news-hero-section .hero-content ul {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  justify-content: center;
}
@media (max-width: 1199px) {
  .news-hero-section .hero-content ul {
    gap: 20px;
  }
}
.news-hero-section .hero-content ul li {
  font-size: 15px;
  font-weight: 500;
  color: #CDCDCD;
  text-transform: uppercase;
}
.news-hero-section .hero-content ul li i {
  color: var(--theme);
  margin-right: 5px;
}
.news-hero-section .hero-content h1 {
  font-size: 80px;
  font-weight: 700;
  line-height: 113%;
}
@media (max-width: 1199px) {
  .news-hero-section .hero-content h1 {
    font-size: 66px;
  }
}
@media (max-width: 991px) {
  .news-hero-section .hero-content h1 {
    font-size: 55px;
  }
}
@media (max-width: 767px) {
  .news-hero-section .hero-content h1 {
    font-size: 44px;
  }
}
@media (max-width: 575px) {
  .news-hero-section .hero-content h1 {
    font-size: 36px;
  }
}
.news-hero-section .hero-content .theme-btn {
  background-color: var(--theme);
  color: var(--header);
  margin-top: 40px;
}
.news-hero-section .hero-content .theme-btn::before, .news-hero-section .hero-content .theme-btn::after {
  background-color: var(--white);
}
.news-hero-section .hero-content .theme-btn:hover {
  color: var(--header);
}

.news-details-wrapper .news-details-items .news-details-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}
.news-details-wrapper .news-details-items .news-details-content {
  margin-top: 30px;
}
.news-details-wrapper .news-details-items .news-details-content .post-date {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
@media (max-width: 1199px) {
  .news-details-wrapper .news-details-items .news-details-content .post-date {
    gap: 20px;
  }
}
.news-details-wrapper .news-details-items .news-details-content .post-date li {
  font-size: 15px;
  font-weight: 500;
  color: #CDCDCD;
  text-transform: uppercase;
}
.news-details-wrapper .news-details-items .news-details-content .post-date li i {
  color: var(--theme);
  margin-right: 5px;
}
.news-details-wrapper .news-details-items .news-details-content h2 {
  font-size: 55px;
}
@media (max-width: 767px) {
  .news-details-wrapper .news-details-items .news-details-content h2 {
    font-size: 48px;
  }
}
@media (max-width: 575px) {
  .news-details-wrapper .news-details-items .news-details-content h2 {
    font-size: 38px;
  }
}
.news-details-wrapper .news-details-items .news-details-content h3 {
  font-size: 40px;
}
@media (max-width: 575px) {
  .news-details-wrapper .news-details-items .news-details-content h3 {
    font-size: 32px;
  }
}
.news-details-wrapper .news-details-items .news-details-content .hilight-text {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-left: 110px;
  margin: 50px 0;
}
@media (max-width: 1199px) {
  .news-details-wrapper .news-details-items .news-details-content .hilight-text {
    flex-wrap: wrap;
    gap: 20px;
    padding-left: 0;
  }
}
.news-details-wrapper .news-details-items .news-details-content .hilight-text p {
  font-weight: 500;
  text-transform: capitalize;
  font-style: italic;
  line-height: 26px;
  color: var(--text);
  line-height: 162%;
  font-size: 36px;
  max-width: 570px;
}
@media (max-width: 575px) {
  .news-details-wrapper .news-details-items .news-details-content .hilight-text p {
    font-size: 28px;
  }
}
.news-details-wrapper .news-details-items .news-details-content .details-image img {
  border-radius: 20px;
  width: 100%;
  height: 100%;
}
.news-details-wrapper .news-details-items .news-details-content .list-items {
  margin-top: 30px;
  margin-bottom: 40px;
}
.news-details-wrapper .news-details-items .news-details-content .list-items li:not(:last-child) {
  margin-bottom: 15px;
}
.news-details-wrapper .news-details-items .news-details-content .list-items li i {
  color: var(--theme);
  margin-right: 10px;
}
.news-details-wrapper .tag-share-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  margin-bottom: 30px;
}
.news-details-wrapper .tag-share-wrap p {
  font-size: 15px;
  text-transform: uppercase;
}
.news-details-wrapper .tag-share-wrap .social-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: end;
}
.news-details-wrapper .tag-share-wrap .social-icon a {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #CFD0D4;
  color: #CDCDCD;
}
.news-details-wrapper .tag-share-wrap .social-icon a:hover {
  color: var(--theme);
}
.news-details-wrapper .prev-next-button {
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .news-details-wrapper .prev-next-button {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.news-details-wrapper .prev-next-button .prev-button, .news-details-wrapper .prev-next-button .next-button {
  border-radius: 30px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  background: #222226;
  display: inline-block;
  padding: 16px 60px;
  font-size: 17px;
  font-weight: 700;
  color: #CDCDCD;
  text-transform: capitalize;
}
.news-details-wrapper .prev-next-button .prev-button:hover, .news-details-wrapper .prev-next-button .next-button:hover {
  background-color: var(--theme);
  color: var(--header);
}
.news-details-wrapper .blog-title {
  font-size: 40px;
  font-weight: 700;
}
.news-details-wrapper .comments-area {
  margin-top: 40px;
}
.news-details-wrapper .comments-area .comments-heading {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .news-details-wrapper .comments-area .comments-heading {
    margin-bottom: 20px;
  }
}
.news-details-wrapper .comments-area .comments-heading h3 {
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
}
@media (max-width: 575px) {
  .news-details-wrapper .comments-area .comments-heading h3 {
    font-size: 22px;
  }
}
.news-details-wrapper .comments-area .blog-single-comment {
  border-bottom: 1px solid var(--border);
}
@media (max-width: 575px) {
  .news-details-wrapper .comments-area .blog-single-comment {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.news-details-wrapper .comments-area .blog-single-comment .image img {
  border-radius: 20px;
}
.news-details-wrapper .comments-area .blog-single-comment .content .head .con h5 {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 20px;
}
.news-details-wrapper .comments-area .blog-single-comment .content .head .con h5 a {
  color: var(--white);
}
.news-details-wrapper .comments-area .blog-single-comment .content .head .star i {
  color: var(--theme);
  font-size: 14px;
}
.news-details-wrapper .comments-area .blog-single-comment .content .reply {
  font-weight: 400;
  color: var(--theme);
}
.news-details-wrapper .comment-form-wrap h3 {
  font-size: 40px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .news-details-wrapper .comment-form-wrap h3 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.news-details-wrapper .comment-form-wrap .form-clt span {
  color: var(--text);
  display: inline-block;
  margin-bottom: 10px;
}
.news-details-wrapper .comment-form-wrap .form-clt input, .news-details-wrapper .comment-form-wrap .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: transparent;
  border: 1px solid var(--border);
  padding: 16px 20px;
  font-weight: 500;
  border-radius: 8px;
  color: var(--text);
}
.news-details-wrapper .comment-form-wrap .form-clt input::placeholder, .news-details-wrapper .comment-form-wrap .form-clt textarea::placeholder {
  color: var(--text);
}
.news-details-wrapper .comment-form-wrap .form-clt textarea {
  padding-bottom: 100px;
}

@media (max-width: 1199px) {
  .news-details.style-padding {
    padding-top: 100px !important;
  }
}

.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}
.preloader .animation-preloader .txt-loading {
  font: bold 5em 'Inter', sans-serif !important;
  text-align: center;
  user-select: none;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme);
  position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--header);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: 'Inter', sans-serif !important;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme);
}
.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loader .row {
  height: 100%;
}
.preloader .loader .loader-section {
  padding: 0px;
}
.preloader .loader .loader-section .bg {
  background-color: var(--bg);
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(0, 0, 0, 0.9);
}
.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: slideInUp 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-wrap .search-field-holder {
    width: 70%;
  }
}
@media (max-width: 575px) {
  .search-wrap .search-field-holder {
    width: 80%;
  }
}
.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  text-transform: capitalize;
  background: transparent;
  font-size: 25px;
  color: var(--theme);
  border-bottom: 2px solid var(--theme);
  text-align: center;
  letter-spacing: 2px;
}

@media (max-width: 575px) {
  .search-wrap .main-search-input {
    height: 50px;
    padding: 0 0;
    line-height: 50px;
    font-size: 18px;
  }
}
.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: var(--theme);
}

input.main-search-input::placeholder {
  color: var(--theme);
  opacity: 1;
  font-size: 25px;
}

@media (max-width: 575px) {
  input.main-search-input::placeholder {
    font-size: 18px;
  }
}
.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: var(--theme);
  cursor: pointer;
}

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--theme);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: var(--theme);
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  -o-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

.back-to-top {
  border-radius: 50%;
  background-color: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color : black;
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 99;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

}
.back-to-top:hover {
  background-color: var(--header);
  color: var(--white);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.pricing-box-items {
  margin-top: 30px;
  border-radius: 25px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  background: #1D1D21;
  padding: 50px;
}
@media (max-width: 767px) {
  .pricing-box-items {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .pricing-box-items {
    padding: 35px;
  }
}
.pricing-box-items .icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  border: 1px solid rgba(207, 208, 212, 0.2);
  border-radius: 200px 0 200px 200px;
  filter: grayscale(100%) brightness(300%);
  margin-bottom: 20px;
  transition: all 0.4s ease-in-out;
}
.pricing-box-items .icon img {
  filter: grayscale(100%) brightness(300%);
  transition: all 0.4s ease-in-out;
}
.pricing-box-items .pricing-header {
  border-bottom: 1px solid rgba(207, 208, 212, 0.2);
  padding-bottom: 30px;
}
.pricing-box-items .pricing-header h3 {
  font-size: 27px;
  margin-bottom: 5px;
}
.pricing-box-items .pricing-header h2 {
  font-size: 55px;
  margin-top: 10px;
}
.pricing-box-items .pricing-list {
  margin-top: 30px;
}
.pricing-box-items .pricing-list li span {
  display: inline-block;
  padding-left: 10px;
}
.pricing-box-items .pricing-list li:not(:last-child) {
  margin-bottom: 15px;
}
.pricing-box-items .pricing-button {
  margin-top: 40px;
}
.pricing-box-items .pricing-button .theme-btn {
  width: 100%;
}
.pricing-box-items:hover .icon {
  filter: initial;
  background-color: var(--theme);
}
.pricing-box-items:hover .icon img {
  filter: initial;
}

.pricing-section {
  position: relative;
}
.pricing-section .nav {
  display: flex;
  align-items: center;
  border-radius: 28px;
  border: 1px solid rgba(207, 208, 212, 0.25);
  gap: 10px;
}
.pricing-section .nav .nav-item .nav-link {
  border-radius: 28px;
  background-color: transparent;
  padding: 10px 20px;
  color: #CDCDCD;
}
.pricing-section .nav .nav-item .nav-link.active {
  background: #EFFB53;
  color: var(--header);
}
@media (max-width: 1199px) {
  .pricing-section.style-padding {
    padding-top: 120px;
  }
}

.project-wrapper {
  padding: 0 100px;
}
@media (max-width: 1600px) {
  .project-wrapper {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .project-wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .project-wrapper {
    padding: 0 30px;
  }
}
.project-wrapper .project-title {
  font-size: 50px;
  margin-bottom: 30px;
  line-height: 1;
  margin-top: -15px;
  color: var(--text);
}
@media (max-width: 991px) {
  .project-wrapper .project-title {
    font-size: 85px;
  }
}
@media (max-width: 767px) {
  .project-wrapper .project-title {
    margin-bottom: 0;
    font-size: 70px;
  }
}
@media (max-width: 575px) {
  .project-wrapper .project-title {
    font-size: 55px;
  }
}
.project-wrapper .project-title img {
  margin-left: 250px;
}
@media (max-width: 1199px) {
  .project-wrapper .project-title img {
    margin-left: 0;
  }
}
.project-wrapper .project-title span {
  font-weight: 400;
  font-family: 'Inter', sans-serif !important;
}
.project-wrapper .project-image {
  margin-top: 30px;
  transition: all 0.4s ease-in-out;
}
.project-wrapper .project-image img {
  width: 100%;
  height: 100%;
  border-radius: 50px;
}
.project-wrapper .project-image:hover {
  transform: rotate(10deg);
}
.project-wrapper .project-content {
  margin-left: 200px;
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .project-wrapper .project-content {
    margin-left: 0;
  }
}
.project-wrapper .project-content span {
  border: 1px solid rgba(207, 208, 212, 0.2);
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 20px;
  margin-bottom: 20px;
  display: inline-block;
  line-height: 1;
}
.project-wrapper .project-content h3 {
  font-size: 65px;
  font-weight: 700;
  line-height: 120%;
}
@media (max-width: 575px) {
  .project-wrapper .project-content h3 {
    font-size: 45px;
  }
}
@media (max-width: 470px) {
  .project-wrapper .project-content h3 {
    font-size: 32px;
  }
}
.project-wrapper .project-content h3 a:hover {
  color: var(--theme);
}
.project-wrapper .project-content p {
  max-width: 350px;
  margin-top: 25px;
  margin-bottom: 50px;
}

.project-box-image img {
  width: 100%;
  height: 100%;
  border-radius: 25px;
}

.project-box-content {
  max-width: 475px;
  margin-left: 30px;
}
@media (max-width: 991px) {
  .project-box-content {
    margin-left: 0;
  }
}
.project-box-content h2 {
  font-size: 55px;
  line-height: 119%;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .project-box-content h2 {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .project-box-content h2 {
    font-size: 35px;
  }
}
.project-box-content h2 span {
  font-weight: 400;
  font-family: 'Inter', sans-serif !important;
  color: var(--theme);
}
.project-box-content p {
  margin-bottom: 35px;
}
.project-box-content.style-2 {
  margin-left: 80px;
}
@media (max-width: 1199px) {
  .project-box-content.style-2 {
    margin-left: 0;
  }
}

.showcase-section {
  position: relative;
}
.showcase-section .text-width {
  max-width: 372px;
}
.showcase-section .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1600px) {
  .showcase-section .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .showcase-section .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .showcase-section .container-fluid {
    padding: 0 30px;
  }
}
.showcase-section::before {
  background-color: #151518;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  top: 70%;
}

.showcase-items {
  margin-top: 30px;
}
.showcase-items img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.project-section {
  position: relative;
  z-index: 1;
}
.project-section .color-bg {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.project-details-wrapper .project-sidebar .project-details-info {
  padding: 40px 35px;
  border-radius: 25px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  margin-bottom: 30px;
}
.project-details-wrapper .project-sidebar .project-details-info h3 {
  font-size: 24px;
  margin-bottom: 20px;
}
.project-details-wrapper .project-sidebar .project-details-info h3 img {
  margin-right: 10px;
}
.project-details-wrapper .project-sidebar .project-details-info ul li {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  border-radius: 10px;
  background: #222226;
  padding: 25px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.project-details-wrapper .project-sidebar .project-details-info ul li:not(:last-child) {
  margin-bottom: 20px;
}
.project-details-wrapper .project-sidebar .project-details-info ul li span {
  color: #CDCDCD;
}
.project-details-wrapper .project-sidebar .contact-info-box {
  border-radius: 25px;
  background: #222226;
  text-align: center;
  padding: 70px 40px;
}
.project-details-wrapper .project-sidebar .contact-info-box .icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  margin: 0 auto 30px;
  font-size: 32px;
  color: var(--header);
}
.project-details-wrapper .project-sidebar .contact-info-box h2 {
  font-size: 55px;
  line-height: 120%;
}
@media (max-width: 575px) {
  .project-details-wrapper .project-sidebar .contact-info-box h2 {
    font-size: 42px;
  }
}
.project-details-wrapper .project-sidebar .contact-info-box h2 span {
  font-weight: 400;
}
.project-details-wrapper .project-sidebar .contact-info-box .theme-btn {
  background-color: var(--theme);
  color: var(--header);
  margin-top: 30px;
}
.project-details-wrapper .project-sidebar .contact-info-box .theme-btn::before, .project-details-wrapper .project-sidebar .contact-info-box .theme-btn::after {
  background-color: var(--white);
}
.project-details-wrapper .project-sidebar .contact-info-box .theme-btn:hover {
  color: var(--header);
}
.project-details-wrapper .project-details-content h2 {
  font-size: 40px;
  margin-bottom: 25px;
}
@media (max-width: 575px) {
  .project-details-wrapper .project-details-content h2 {
    font-size: 32px;
  }
}
.project-details-wrapper .project-details-content p {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}
.project-details-wrapper .project-details-content .details-image {
  margin-bottom: 50px;
}
.project-details-wrapper .project-details-content .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.project-details-wrapper .project-details-content .how-to-work-wrapper {
  margin-top: 30px;
  margin-bottom: 50px;
}
.project-details-wrapper .project-details-content .how-to-work-wrapper .how-too-work-items {
  text-align: center;
}
.project-details-wrapper .project-details-content .how-to-work-wrapper .how-too-work-items .icon {
  width: 171px;
  height: 171px;
  line-height: 171px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  text-align: center;
  margin: 0 auto;
  position: relative;
}
.project-details-wrapper .project-details-content .how-to-work-wrapper .how-too-work-items .icon .bar-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.project-details-wrapper .project-details-content .how-to-work-wrapper .how-too-work-items .content {
  margin-top: 30px;
}
.project-details-wrapper .project-details-content .how-to-work-wrapper .how-too-work-items .content h3 {
  font-weight: 500;
  margin-bottom: 10px;
}
.project-details-wrapper .project-details-content .how-to-work-wrapper .how-too-work-items .content p {
  color: var(--white);
  max-width: 255px;
  margin: 0 auto;
}
.project-details-wrapper .project-details-content .details-list {
  margin-top: 30px;
}
.project-details-wrapper .project-details-content .details-list li {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}
.project-details-wrapper .project-details-content .details-list li:not(:last-child) {
  margin-bottom: 10px;
}
.project-details-wrapper .project-details-content .details-list li i {
  margin-right: 5px;
  color: var(--theme);
}

.portfolio-card-items {
  margin-top: 30px;
}
.portfolio-card-items .portfolio-image {
  position: relative;
  overflow: hidden;
}
.portfolio-card-items .portfolio-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.portfolio-card-items .portfolio-image .lets-circle {
  position: absolute;
  max-width: 170px;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 126"><path fill-rule="evenodd" clip-rule="evenodd" d="M55.9029 4.52619C59.9922 -0.78983 68.0078 -0.78983 72.0971 4.52619C75.0042 8.30537 80.1389 9.57096 84.4692 7.57565C90.5606 4.76892 97.6581 8.49399 98.8085 15.1015C99.6263 19.7987 103.585 23.3056 108.346 23.5512C115.044 23.8968 119.598 30.4936 117.546 36.8788C116.087 41.4181 117.962 46.3628 122.064 48.7932C127.834 52.2118 128.801 60.1691 124.016 64.8693C120.615 68.2107 119.978 73.4605 122.48 77.5188C126.001 83.2274 123.158 90.7222 116.738 92.6606C112.173 94.0387 109.169 98.3909 109.499 103.147C109.964 109.838 103.964 115.154 97.3777 113.886C92.6956 112.985 88.013 115.443 86.0948 119.808C83.3966 125.948 75.6138 127.866 70.3712 123.683C66.6442 120.71 61.3558 120.71 57.6288 123.683C52.3862 127.866 44.6034 125.948 41.9052 119.808C39.987 115.443 35.3044 112.985 30.6223 113.886C24.0363 115.154 18.0365 109.838 18.5008 103.147C18.8309 98.3909 15.8267 94.0387 11.2623 92.6606C4.84165 90.7222 1.99926 83.2274 5.51975 77.5188C8.02248 73.4605 7.38504 68.2107 3.98382 64.8693C-0.800531 60.1691 0.165651 52.2118 5.93581 48.7932C10.0378 46.3628 11.9131 41.4181 10.4543 36.8788C8.40231 30.4936 12.9557 23.8968 19.6537 23.5512C24.4153 23.3056 28.3737 19.7987 29.1915 15.1015C30.3419 8.49399 37.4394 4.76892 43.5308 7.57565C47.8611 9.57096 52.9958 8.30537 55.9029 4.52619Z"  /></svg>');
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: cover;
  background-color: var(--white);
  color: var(--header);
  font-weight: 700;
  font-size: 18px;
  padding: 40px 40px;
  display: block;
  text-align: center;
  top: -120px;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
}
.portfolio-card-items .portfolio-image .lets-circle:hover {
  background-color: var(--theme);
}
.portfolio-card-items .portfolio-content {
  margin-top: 25px;
}
.portfolio-card-items .portfolio-content h6 {
  font-size: 15px;
  color: #CDCDCD;
  font-weight: 700;
  margin-bottom: 10px;
}
.portfolio-card-items .portfolio-content h6 span {
  color: var(--theme);
}
.portfolio-card-items .portfolio-content h3 a:hover {
  color: var(--theme);
}
.portfolio-card-items:hover .portfolio-image .lets-circle {
  opacity: 1;
  visibility: visible;
  top: 50%;
}

.portfolio-section .nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  justify-content: center;
}
.portfolio-section .nav .nav-item .nav-link {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: #CDCDCD;
}
.portfolio-section .nav .nav-item .nav-link.active {
  color: var(--theme);
  text-decoration: underline;
}

.project-secton {
  position: relative;
}
.project-secton .vector-shape {
  position: absolute;
  top: 0;
  left: 10%;
  right: 0;
}
@media (max-width: 1199px) {
  .project-secton .vector-shape {
    display: none;
  }
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}
.section-title h6 {
  color:var(--header);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 16px;
  position: relative;
  line-height: 1;
  margin-top: 15px;
  padding: 15px;
}
.section-title h2 span  , .section-title h2 {
  font-weight: 400;
  color: var(--text);
  font-family: 'Inter', sans-serif !important;
}
.section-title h2 b {
  color: var(--theme);
  font-weight: 400;
  font-family: 'Inter', sans-serif !important;
}
.section-title.style-2 {
  margin-top: -5px;
}
.section-title.style-2 h6 {
  color: var(--text2);
  text-transform: uppercase;
  font-weight: 700;
}
.section-title.style-2 h6 img {
  margin-right: 5px;
}
.section-title.style-2 h2 {
  font-size: 65px;
  color: var(--header2);
}
@media (max-width: 767px) {
  .section-title.style-2 h2 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .section-title.style-2 h2 {
    font-size: 40px;
  }
}
@media (max-width: 470px) {
  .section-title.style-2 h2 {
    font-size: 32px;
  }
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
}
@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: #333;
}

.section-padding {
  padding: 150px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

.section-padding-2 {
  padding: 130px 0;
}
@media (max-width: 1199px) {
  .section-padding-2 {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .section-padding-2 {
    padding: 80px 0;
  }
}

.footer-bg {
  background-color:#fff;
}

.service-box-items {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 767px) {
  .service-box-items {
    flex-wrap: wrap;
  }
}
.service-box-items .service-image {
  max-width: 260px;
}
@media (max-width: 767px) {
  .service-box-items .service-image {
    max-width: 600px;
    margin-bottom: 24px;
  }
}
.service-box-items .service-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.service-box-items .service-content {
  border-radius: 25px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  background: #1D1D21;
  padding: 50px;
  max-width: 370px;
}
@media (max-width: 767px) {
  .service-box-items .service-content {
    max-width: 600px;
  }
}
.service-box-items .service-content h3 {
  margin-bottom: 15px;
}
.service-box-items .service-content h3 a:hover {
  color: var(--theme);
}
.service-box-items .service-content p {
  margin-bottom: 20px;
}

.service-box-items-2 {
  margin-top: 30px;
  padding: 45px 35px;
  background-color: #F2F7FE;
  border-radius: 20px;
  border: 1px solid #DBE8FC;
}
.service-box-items-2 .icon {
  width: 74px;
  height: 78px;
  background-color: #E0EAFA;
  border-radius: 50%;
}
.service-box-items-2 .icon img {
  margin-left: 22px;
  margin-top: 10px;
}
.service-box-items-2 .content {
  margin-top: 20px;
}
.service-box-items-2 .content h3 {
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--header2);
}
.service-box-items-2 .content p {
  color: var(--text2);
}

.service-image-2 {
  margin-top: 30px;
}
.service-image-2 img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.popular-service-items {
  margin-top: 30px;
  text-align: right;
  border-bottom: 1px solid #E0E1E5;
  padding-bottom: 30px;
}
@media (max-width: 1199px) {
  .popular-service-items {
    text-align: left;
  }
}
.popular-service-items .icon {
  text-align: right;
  display: inline-block;
  position: relative;
}
@media (max-width: 1199px) {
  .popular-service-items .icon {
    text-align: left;
  }
}
.popular-service-items .icon::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 74px;
  height: 78px;
  border-radius: 50%;
  background-color: #E0EAFA;
  z-index: -1;
}
.popular-service-items .icon img {
  margin-right: 20px;
}
.popular-service-items .content {
  margin-top: 30px;
}
.popular-service-items .content h3 {
  font-size: 27px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--header2);
}
.popular-service-items .content p {
  max-width: 310px;
  color: var(--text2);
  text-align: right;
  display: inline-block;
}
@media (max-width: 1199px) {
  .popular-service-items .content p {
    text-align: left;
  }
}
.popular-service-items.style-2 {
  border: none;
  padding-bottom: 0;
}
.popular-service-items.style-2 .content {
  margin-top: 0;
  margin-bottom: 30px;
}
.popular-service-items.style-3 {
  text-align: left;
}
.popular-service-items.style-3 .icon img {
  margin-left: 20px;
  margin-right: 0;
}
.popular-service-items.style-3 .icon::before {
  left: 0;
  right: initial;
}
.popular-service-items.style-3 .content p {
  text-align: left;
}

.popular-service-image {
  margin-top: 30px;
  padding: 72px 0;
  text-align: center;
  background-color: #F2F7FE;
  border-radius: 30px;
}

.service-left-items {
  margin-right: 80px;
}
@media (max-width: 1199px) {
  .service-left-items {
    margin-right: 0;
  }
}

.service-right-items {
  margin-left: 80px;
}
@media (max-width: 1199px) {
  .service-right-items {
    margin-left: 0;
  }
}

@media (max-width: 1199px) {
  .service-section.style-padding {
    padding-top: 120px;
  }
}





.service-section {
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 60px 20px;
  background-color: transparent; /* Fallback if GIF doesn't load */
}

/* Background image adjustments */
.service-section {
  background: url('assets/img/vanImage.gif');
  background-position: center bottom;
}

/* Container styles */
.service-section .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Section title styles */
.section-title {
  text-align: center;
  color: white;
}

.section-title h6 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  margin-bottom: 15px;
}

.section-title h6 img {
  width: 20px;
  height: 20px;
}

.section-title h3 {
  font-weight: 400;
  color: white;
  text-align: center;
  margin-bottom: 0;
  line-height: 1.3;
}

.section-title h3 span {
  display: inline-block;
}

/* Mobile-first responsive styles */
@media (max-width: 767px) {
  .service-section {
    height: auto;
    min-height: 500px !important;
    background-size: contain;
    background-position: center bottom 50px;
    padding: 40px 15px;
  }

  .section-title h6 {
    font-size: 14px;
  }

  .section-title h3 {
    font-size: 28px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.5px !important;
    color: #000 !important;
  }

  .section-title h3 br {
    display: none; /* Remove line breaks on mobile */
  }
}

/* Tablet styles */
@media (min-width: 768px) and (max-width: 1023px) {
  .service-section {
    height: 800px;
    background-position: center bottom;
  }

  .section-title h3 {
    font-size: 48px !important;
    line-height: 1.2 !important;
  }
}

/* Desktop styles */
@media (min-width: 1024px) {
  .service-section {
    /* height: 1000px; */
    background-position: 0 150px;
  }
}

/* Accessibility improvement for text contrast */
.section-title h3 span,
.section-title h3 b {
  color: #f3b03d; /* Highlight color for better visibility */
}










.team-box-items {
  margin-top: 30px;
  position: relative;
  text-align: center;
}
.team-box-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 10px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  top: 26px;
  height: initial;
}
.team-box-items .team-image {
  padding-left: 20px;
  position: relative;
  z-index: 9;
}
.team-box-items .team-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.team-box-items .team-image .social-profile {
  position: absolute;
  right: 20px;
  bottom: 20px;
  content: "";
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}
.team-box-items .team-image .social-profile ul {
  transform: translateY(100px);
  transition: all 0.6s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.team-box-items .team-image .social-profile ul li a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: block;
  background: var(--white);
  color: var(--header);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  margin: 0 auto;
  border-radius: 5px;
  margin-bottom: 10px;
}
.team-box-items .team-image .social-profile ul li a:hover {
  background-color: var(--theme);
}
.team-box-items .team-image .social-profile .plus-btn {
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: inline-block;
  background: var(--white);
  color: var(--header);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}
.team-box-items .team-image .social-profile .plus-btn:hover {
  background-color: var(--theme);
}
.team-box-items .team-image .social-profile:hover ul {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.team-box-items .team-content {
  padding: 20px 0;
}
.team-box-items .team-content h3 {
  font-size: 24px;
  margin-bottom: 5px;
}

.team-title-items {
  display: flex;
  align-items: center;
  margin-left: 200px;
  gap: 40px;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  .team-title-items {
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .team-title-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .team-title-items {
    margin-bottom: 0;
  }
}
.team-title-items p {
  max-width: 450px;
}

@media (max-width: 1199px) {
  .team-section.style-padding {
    padding-top: 120px;
  }
}

.testimonial-wrapper {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 890px;
  margin: 0 auto;
  padding: 130px 30px 160px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .testimonial-wrapper {
    background-image: none !important;
    padding: 0;
  }
}
.testimonial-wrapper .testimonail-content {
  text-align: center;
  margin-top: 30px;
}
.testimonial-wrapper .testimonail-content .icon {
  margin-bottom: 30px;
}
.testimonial-wrapper .testimonail-content p {
  font-size: 27px;
  color: #5C6972;
  font-weight: 500;
  line-height: 150%;
}
@media (max-width: 767px) {
  .testimonial-wrapper .testimonail-content p {
    font-size: 22px;
  }
}
.testimonial-wrapper .testimonail-content .client-info {
  margin-top: 50px;
}
.testimonial-wrapper .testimonail-content .client-info h3 {
  font-size: 27px;
  font-weight: 500;
  color: var(--header2);
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .testimonial-wrapper .testimonail-content .client-info h3 {
    font-size: 22px;
  }
}
.testimonial-wrapper .testimonail-content .client-info span {
  color: #5C6972;
  font-size: 18px;
  text-transform: capitalize;
}

.testimonial-section {
  position: relative;
}
.testimonial-section .client-1 {
  position: absolute;
  top: 8%;
  left: 27%;
  z-index: 9;
}
@media (max-width: 1199px) {
  .testimonial-section .client-1 {
    display: none;
  }
}
.testimonial-section .client-2 {
  position: absolute;
  top: 38%;
  left: 10%;
  z-index: 9;
}
@media (max-width: 1199px) {
  .testimonial-section .client-2 {
    display: none;
  }
}
.testimonial-section .client-3 {
  position: absolute;
  bottom: 14%;
  left: 27%;
  z-index: 9;
}
@media (max-width: 1199px) {
  .testimonial-section .client-3 {
    display: none;
  }
}
.testimonial-section .client-4 {
  position: absolute;
  top: 8%;
  right: 27%;
  z-index: 9;
}
@media (max-width: 1199px) {
  .testimonial-section .client-4 {
    display: none;
  }
}
.testimonial-section .client-5 {
  position: absolute;
  top: 38%;
  right: 10%;
  z-index: 9;
}
@media (max-width: 1199px) {
  .testimonial-section .client-5 {
    display: none;
  }
}
.testimonial-section .client-6 {
  position: absolute;
  bottom: 14%;
  right: 27%;
  z-index: 9;
}
@media (max-width: 1199px) {
  .testimonial-section .client-6 {
    display: none;
  }
}
.testimonial-section .circle-shape {
  position: absolute;
  top: 5%;
  left: 20%;
}
@media (max-width: 1199px) {
  .testimonial-section .circle-shape {
    display: none;
  }
}
.testimonial-section .radius-shape {
  position: absolute;
  top: 35%;
  left: 90px;
}
@media (max-width: 1199px) {
  .testimonial-section .radius-shape {
    display: none;
  }
}
.testimonial-section .circle-shape-2 {
  position: absolute;
  bottom: 0;
  left: 20%;
}
@media (max-width: 1199px) {
  .testimonial-section .circle-shape-2 {
    display: none;
  }
}
.testimonial-section .circle-shape-3 {
  position: absolute;
  bottom: 0;
  right: 20%;
}
@media (max-width: 1199px) {
  .testimonial-section .circle-shape-3 {
    display: none;
  }
}
.testimonial-section .vector-shape {
  position: absolute;
  top: 5%;
  right: 20%;
}
@media (max-width: 1199px) {
  .testimonial-section .vector-shape {
    display: none;
  }
}
@media (max-width: 1199px) {
  .testimonial-section.style-2 {
    padding-bottom: 0;
  }
}

.testimonial-wrapper-2 {
  text-align: center;
}
.testimonial-wrapper-2 .client-image-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  margin-bottom: 40px;
}
.testimonial-wrapper-2 .client-image-items .star {
  margin-top: 15px;
  color: #FF824D;
}
.testimonial-wrapper-2 p {
  font-size: 30px;
  line-height: 140%;
}
@media (max-width: 1199px) {
  .testimonial-wrapper-2 p {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .testimonial-wrapper-2 p {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .testimonial-wrapper-2 p {
    font-size: 20px;
  }
}
.testimonial-wrapper-2 .client-info {
  margin-top: 30px;
}
.testimonial-wrapper-2 .client-info span {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  margin-top: 5px;
}

.testimonial-wrapper-3 {
  position: relative;
}
.testimonial-wrapper-3 .shape-1 {
  position: absolute;
  right: -13%;
  bottom: 30%;
}
.testimonial-wrapper-3 .testimonial-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.testimonial-wrapper-3 .testimonial-content {
  margin-left: 30px;
}
.testimonial-wrapper-3 .testimonial-content h3 {
  font-size: 30px;
  font-weight: 500;
  color: #CDCDCD;
}
@media (max-width: 991px) {
  .testimonial-wrapper-3 .testimonial-content h3 {
    font-size: 22px;
  }
}
.testimonial-wrapper-3 .testimonial-content .author-items {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}
.testimonial-wrapper-3 .testimonial-content .author-items .image img {
  border-radius: 10px;
}
.testimonial-wrapper-3 .testimonial-content .author-items .content h3 {
  color: var(--white);
}
.testimonial-wrapper-3 .testimonial-content .author-items .content span {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 5px;
  color: var(--text);
}

.testimonial-section {
  position: relative;
}
.testimonial-section .array-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  right: 10%;
  left: 10%;
  transform: translateY(-50%);
}
@media (max-width: 1199px) {
  .testimonial-section .array-button {
    display: none;
  }
}
.testimonial-section .array-button .array-prev, .testimonial-section .array-button .array-next {
  width: 40px;
  height: 55px;
  border: 1px solid rgba(207, 208, 212, 0.2);
  line-height: 55px;
  color: #CDCDCD;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
}
.testimonial-section .array-button .array-prev:hover {
  background-color: var(--theme);
  color: var(--header);
}
.testimonial-section .array-button .array-next {
  background-color: var(--theme);
  color: var(--header);
}
.testimonial-section .array-button .array-next:hover {
  background-color: var(--white);
  color: var(--header);
}/*# sourceMappingURL=main.css.map */



/* From Uiverse.io by e-coders */ 
.button {
  appearance: none;
  background-color: #fff;
  border: 0.125em solid #1A1A1A;
  border-radius: 0.9375em;
  box-sizing: border-box;
  color: #3B3B3B;
  cursor: pointer;
  display: inline-block;
  font-family: 'Inter', sans-serif !important;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  min-height: 3.75em;
  min-width: 0;
  outline: none;
  padding: 14px 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  will-change: transform;
 }
 
 .button:disabled {
  pointer-events: none;
 }
 
 .button:hover {
  color: #fff;
  background-color: #1A1A1A;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
 }
 
 .button:active {
  box-shadow: none;
  transform: translateY(0);
 }

/* General Slider Styling */
.slider {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Each Slide */
.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

/* Show Active Slide */
.slide.show {
  opacity: 1;
  z-index: 2;
}

/* Slide Content Styling */
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  width: 90%;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  line-height: 1.2;
}

/* Show text when slide is active */
.slide.show .slide-content {
  opacity: 1;
}
.slide-buttons .btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 39px;
  transition: all 0.3s ease-in-out;
  margin: 10px;
}

/* Primary Button */
.btn-primary {
  background-color:var(--btn-primary);
  color: white;
  border: 2px solid var(--btn-primary);
}

.btn-primary:hover {
  background-color: white;
  color:var(--btn-primary);
  border: 2px solid var(--btn-primary);
}

/* Secondary Button */
.btn-secondary {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background-color: white;
  color: black;
}




#header-sticky {
  position: fixed; 
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: transparent; /* Make sure to keep this transparent */
}

/* Make sure text and links remain visible */
#header-sticky a {
 
  font-weight: bold;
}

/* When scrolling, make it slightly more solid */
#header-sticky.scrolled {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(15px);
  animation: slideDown 0.35s ease-out;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}




.carousel-container {
  display: flex;
  align-items: center;
  width: 90%;
  max-width: 900px;
  overflow: hidden;
  position: relative;
}

.carousel-container .carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.image-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.image-frame {
     flex: 0 0 33.33%; /* Each image takes up 1/3 of the container width */
    box-sizing: border-box;
    padding: 10px;
    height: 500px; /* Set a fixed height for the image container */
    width: 100%; /* Ensure the container takes up the full width */
    overflow: hidden; /* Hide any overflow */
    display: flex;
    justify-content: center; /* Center the image horizontally */
    align-items: center; /* Center the image vertically */
}

.image-frame img {
  width: 100%; /* Ensure the image fills the container width */
  height: 100%; /* Ensure the image fills the container height */
  object-fit: cover; /* Maintain aspect ratio while covering the container */
  border-radius: 10px;
}

.arrow {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.prev-arrow {
  left: 0;
}

.next-arrow {
  right: 0;
}

.arrow:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
  .carousel-container {
      width: 90%; /* Adjust container width for smaller screens */
  }

  .image-frame {
      flex: 0 0 100%; /* Show only one image at a time on mobile */
      height: 150px; /* Adjust height for mobile */
  }

  .arrow {
      padding: 8px; /* Smaller buttons for mobile */
      font-size: 16px; /* Smaller arrow size for mobile */
  }
}



.image-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.image-overlay:hover img {
  transform: scale(1.1); /* Slight zoom on hover */
}

.overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  text-align: center;
  padding: 10px;
}

.image-overlay:hover .overlay-content {
  opacity: 1; /* Show content on hover */
}

.overlay-content h3 {
  margin: 0;
  font-size: 20px;
}

.overlay-content p {
  margin: 5px 0 0;
  font-size: 14px;
}


.sale{
  color: #735d5d;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}




.container-fluid {
  padding: 140px 30px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.header h1 {
  font-size: 30px;
  font-weight: 400;
  line-height: 30px;
  color: #000;
}
.header h2 {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.6);
}
.header h2 span {
  font-weight: 500;
  color: #000;
}
.inventory {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.filters {
  position: sticky;
  top: 90px;
  background-color: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 200;
}
.filters p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 25px;
}
.filter-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.filter-buttons button {
  height: 50px;
  padding: 0 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  transition: background-color 0.3s;
}
.filter-buttons button.active {
  background-color: #000;
  color: #fff;
}
.filter-buttons button img {
  height: 100%;
  padding: 5px 0;
}
.color-circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #f0f0f0;
}
.van-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}
.van-item {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.van-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.van-item:hover img {
  transform: scale(1.07);
}
.van-details {
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: none;
  border-radius: 0 0 20px 20px;
}
.van-details p {
  font-size: 12px;
  color: #000;
}
.van-details p span {
  font-weight: 500;
}
.van-details a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #000;
  color: #fff;
  padding: 15px 25px;
  border-radius: 25px;
  text-decoration: none;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .header h1 {
    font-size: 60px;
    line-height: 60px;
  }
  .header h2 {
    font-size: 20px;
    line-height: 26px;
  }
  .van-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1440px) {
  .van-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Mobile styles (under 768px) */
@media (max-width: 767px) {
  .container-fluid {
    padding: 40px 15px;
    gap: 40px;
  }

  .header {
    gap: 15px;
  }

  .header h1 {
    font-size: 24px;
    line-height: 28px;
  }

  .header h2 {
    font-size: 14px;
    line-height: 18px;
  }

  .inventory {
    flex-direction: column;
    gap: 20px;
  }

  .inventory > img {
    width: 100% !important;
    height: auto !important;
    order: -1; /* Move image to top */
  }

  .filters {
    position: static;
    top: auto;
    padding: 15px;
    margin-bottom: 20px;
  }

  .filter-buttons {
    gap: 10px;
  }

  .filter-buttons button {
    height: 40px;
    font-size: 12px;
  }

  .van-list {
    gap: 20px;
  }

  .van-item {
    border-radius: 15px;
  }

  .van-item img {
    height: 180px; /* Fixed height for mobile */
  }

  .van-details {
    padding: 15px;
  }

  .van-details p {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .van-details a {
    padding: 12px 15px;
    font-size: 12px;
  }
}

.faq-section {
  background-color: white;
  padding: 30px;
}

.faq-container {
  background-color: #f5f5f5;
  padding: 50px 37px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 100%;
}

.faq-header h2 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: -1.2px;
  color: black;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 30px;
}

.faq-item {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 30px 0 10px;
  border-radius: 33px;
  background-color: white;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
}

.question-content {
  min-height: 75px;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.question-content h3 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 500;
  font-size: 16px;
  color: black;
  text-align: left;
  width: calc(100% - 80px);
}

.icon {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #f5f5f5;
}

.icon svg {
  transform: scale(0.5);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-answer p {
  padding: 0 20px 20px;
  margin: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-top: 10px;
}

.faq-item.active .icon svg {
  transform: rotate(45deg) scale(0.5);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .faq-section {
    padding: 20px 15px;
  }
  
  .faq-container {
    padding: 30px 20px;
    gap: 30px;
    border-radius: 15px;
  }
  
  .faq-header h2 {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }
  
  .faq-list {
    padding: 0 10px;
    gap: 8px;
  }
  
  .faq-item {
    padding: 0 15px 0 5px;
    border-radius: 25px;
  }
  
  .question-content {
    min-height: 60px;
    padding: 10px;
  }
  
  .question-content h3 {
    font-size: 14px;
    width: calc(100% - 60px);
  }
  
  .icon {
    width: 35px;
    height: 35px;
  }
  
  .faq-answer p {
    padding: 0 15px 15px;
    font-size: 14px;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .faq-container {
    padding: 25px 15px;
  }
  
  .faq-header h2 {
    font-size: 22px;
  }
  
  .question-content h3 {
    font-size: 13px;
  }
  
  .faq-answer p {
    padding: 0 10px 10px;
  }
}
.faq-footer {
  display: flex;
  justify-content: center;
}




.read-more-button {
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  font-size: 14px;
  letter-spacing: -0.5px;
  background-color: black;
  color: white;
  padding: 0 80px;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.read-more-button svg {
  width: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s;
}

.read-more-button:hover svg {
  width: 21px;
  opacity: 1;
}







/* Base Styles */
.button-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
  align-items: center;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 50px;
  padding: 0 25px;
  border-radius: 50px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 250px;
}

.button-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button-icon {
  width: 0;
  opacity: 0;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  transition: all 0.5s ease;
}

.button:hover .button-icon {
  width: 21px;
  opacity: 1;
}

/* Discover Button */
.discover-button {
  background-color: #fff;
  color: #000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.discover-button:hover {
  background-color: #f5f5f5;
}

/* Reserve Button */
.reserve-button {
  background-color: rgb(243, 176, 61);
  border: 1px solid rgb(243, 176, 61);
  color: #000;
  padding-left: 20px;
}

.reserve-button:hover {
  background-color: rgba(243, 176, 61, 0.9);
}

.reserve-button svg {
  color: #000;
}


/* Tablet and Desktop Styles */
@media (min-width: 768px) {
  .slide-content {
    top: 60%;
    left: 37%;
    transform: translate(-50%, -50%);
    text-align: left;
    width: auto;
  }
  
  .slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .button-container {
    flex-direction: row;
    justify-content: flex-start;
  }
  
  .button {
    width: auto;
  }
}

@media (min-width: 992px) {
  .slide-content h2 {
    font-size: 3rem;
  }
}


/* Base Styles */
.events-section {
  margin: 60px 0;
}

.events-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

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

.events-title {
  font-size: 30px;
  line-height: 30px;
  font-weight: 400;
  color: #000;
  margin-bottom: 20px;
}

.events-subtitle {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #000;
  opacity: 0.6;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.event-card {
  border: 1px solid rgba(19, 18, 17, 0.1);
  border-radius: 30px;
  background-color: rgba(19, 18, 17, 0.03);
}

.event-link {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
  text-decoration: none;
  color: inherit;
}

.event-image {
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
}

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

.event-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.event-tag {
  font-size: 12px;
  font-weight: 400;
  color: #000;
  background-color: #ccc;
  border-radius: 50px;
  padding: 5px 8px;
  width: fit-content;
}

.event-date {
  font-size: 25px;
  line-height: 25px;
  font-weight: 400;
  color: #000;
  opacity: 0.4;
}

.event-name {
  font-size: 25px;
  line-height: 25px;
  font-weight: 400;
  color: #000;
}

.event-location {
  font-size: 18px;
  font-weight: 400;
  color: #000;
  opacity: 0.4;
  margin-top: 2px;
}

.event-description {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #666;
  opacity: 0.6;
}

.event-more {
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: #000;
  text-decoration: underline;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-link {
    flex-direction: row;
  }

  .event-image {
    width: 33.33%;
  }

  .event-content {
    width: 66.67%;
  }

  .events-title {
    font-size: 60px;
    line-height: 60px;
  }

  .events-subtitle {
    font-size: 20px;
    line-height: 26px;
  }

  .event-date,
  .event-name {
    font-size: 30px;
    line-height: 30px;
  }
}




/* Base Styles */
.models-section {
  padding: 50px 36px;
}

.models-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

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

.models-title {
  font-size: 30px;
  line-height: 30px;
  font-weight: 400;
  color: #000;
}

.highlight {
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0, 0.7, 0.95, 0.99);
}

.models-title:hover .highlight::after {
  transform: scaleX(1);
}

.models-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.model-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  background-color: #f5f5f5;
  overflow: hidden;
  cursor: pointer;
}

.model-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s cubic-bezier(0, 0.7, 0.95, 0.99);
}

.model-card:hover .model-image {
  transform: scale(1.07);
}

.model-content {
  position: relative;
  z-index: 2;
  padding: 27px 21px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  pointer-events: none;
}

.model-name {
  font-size: 25px;
  line-height: 25px;
  font-weight: 400;
  color: #000;
}

.model-name span {
  font-weight: 500;
}

.model-price {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #666;
}

.model-price span {
  font-weight: 500;
}

.model-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  pointer-events: all;
}

.model-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 55px;
  padding: 0 25px;
  border-radius: 50px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.model-button.black {
  background-color: #000;
  color: #fff;
}

.model-button.white {
  background-color: #fff;
  color: #000;
}

.model-button.black  svg {
  width: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s;
}

.model-button.black:hover svg {
  width: 21px;
  opacity: 1;
}


.model-button.white svg {
  width: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s;
}

.model-button.white:hover svg {
  width: 21px;
  opacity: 1;
}




.model-button .icon {
  width: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

.model-button:hover .icon {
  width: 21px;
  opacity: 1;
}

/* Full Inventory Card */
.full-inventory .model-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.2);
}

.full-inventory .model-content {
  justify-content: center;
  gap: 20px;
}

.full-inventory .model-name {
  color: #fff;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .models-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .models-title {
    
    line-height: 44px;
  }

  .model-name {
    font-size: 30px;
    line-height: 30px;
  }

  .model-price {
    font-size: 14px;
    line-height: 18px;
  }
}

@media (min-width: 1024px) {
  .models-section {
    padding: 100px 120px;
  }

  .models-container {
    gap: 100px;
  }

  .model-card {
    aspect-ratio: 1 / 1;
  }
}


@media (max-width: 767px) {
  .model-button {
    height: 48px; /* Slightly smaller for mobile */
    padding: 0 22px; /* Adjusted padding */
    font-size: 15px; /* Slightly larger text */
  }
  .model-button  span{
  
    font-size: 10px; /* Slightly larger text */
  }
  /* Always show arrow on mobile for better UX */

}

/* Make buttons inline on larger screens */
@media (min-width: 768px) {
  .model-button {
    width: auto; /* Auto width on desktop */
  }
  
  .model-actions {
    flex-direction: row; /* Buttons side by side */
  }
}









/* Base Styles */
/* ===== Testimonials Section - Full Responsive Styles ===== */
.testimonials-section {
  padding: 50px 10px;
  background-color: #fff;
}

.testimonials-container {
  background-color: #f5f5f5;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 100%;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  padding-top: 40px;
}

.testimonials-title {
  font-size: 30px;
  line-height: 30px;
  font-weight: 400;
  color: #666;
  margin: 0 auto;
  max-width: 90%;
}

.highlight {
  position: relative;
  display: inline-block;
  color: #000; /* Or your brand color */
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0, 0.7, 0.95, 0.99);
}

/* Testimonials Grid - Base Styles */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 90px 40px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.testimonials-grid::-webkit-scrollbar {
  display: none;
}

/* Testimonial Card - Base Styles */
.testimonial-card {
  position: relative;
  aspect-ratio: 4/5;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  min-width: 280px;
}

.testimonial-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s cubic-bezier(0, 0.7, 0.95, 0.99);
}

.testimonial-content {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.5s ease;
}

.testimonial-rating {
  display: flex;
  gap: 2px;
  padding: 5px 8px;
  backdrop-filter: blur(10px);
  border-radius: 50px;
  width: 80px;
}

.testimonial-rating svg {
  color: #fff;
  transition: color 0.5s ease;
}

.testimonial-quote {
  font-size: 25px;
  line-height: 25px;
  font-weight: 400;
  color: #fff;
  transition: color 0.5s ease;
}

.testimonial-text {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #666;
}

.testimonial-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 245px;
  background-color: #fff;
  border-radius: 20px;
  transform: translateY(100%);
  transition: all 0.5s ease;
}

/* ===== Desktop Styles (hover effects) ===== */
@media (min-width: 1024px) {
  .testimonials-container {
    padding: 66px 0;
    gap: 70px;
  }

  .testimonials-title {
    font-size: 60px;
    line-height: 60px;
  }

  .testimonial-content {
    top: calc(100% - 115px);
    left: 35px;
    width: calc(100% - 100px);
  }

  /* Desktop Hover Effects */
  .testimonial-card:hover .testimonial-image {
    transform: scale(1.07);
  }

  .testimonial-card:hover .testimonial-content {
    transform: translateX(20px) translateY(-130px);
  }

  .testimonial-card:hover .testimonial-rating {
    background-color: #ccc;
  }

  .testimonial-card:hover .testimonial-rating svg {
    color: #000;
  }

  .testimonial-card:hover .testimonial-quote {
    color: #000;
  }

  .testimonial-card:hover .testimonial-text {
    opacity: 1;
    transform: translateY(0);
  }

  .testimonial-card:hover .testimonial-overlay {
    transform: translateY(0);
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}

/* ===== Mobile & Tablet Styles (touch interactions) ===== */
@media (max-width: 1023px) {
  .testimonials-section {
    padding: 30px 10px;
  }

  .testimonials-container {
    padding: 30px 0 80px;
    gap: 30px;
    border-radius: 15px;
  }

  .testimonials-title {
    font-size: 24px;
    line-height: 1.2;
    padding: 0 20px;
  }

  .testimonials-grid {
    display: flex;
    grid-template-columns: unset;
    padding: 0 20px 30px;
    gap: 20px;
    scroll-snap-type: x mandatory;
  }

  .testimonial-card {
    scroll-snap-align: start;
    min-width: 85vw;
    flex: 0 0 auto;
  }

  /* Mobile Content Styles (always visible) */
  .testimonial-content {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    transform: none !important;
  }

  .testimonial-rating {
    background-color: rgba(255,255,255,0.3) !important;
  }

  .testimonial-rating svg {
    color: #fff !important;
  }

  .testimonial-quote {
    color: #fff !important;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .testimonial-text {
    opacity: 1 !important;
    transform: none !important;
    color: #fff !important;
    font-size: 14px;
    line-height: 1.4;
  }

  .testimonial-overlay {
    display: none;
  }

  /* Scroll Indicator */
  .testimonials-grid::after {
    content: '→';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: rgba(0,0,0,0.3);
    animation: bounceRight 2s infinite;
    pointer-events: none;
  }

  /* Tap Feedback */
  .testimonial-card:active {
    transform: scale(0.98);
  }
}

@keyframes bounceRight {
  0%, 100% { transform: translateX(0) translateY(-50%); }
  50% { transform: translateX(-10px) translateY(-50%); }
}

/* ===== Responsive Adjustments ===== */
@media (min-width: 768px) and (max-width: 1023px) {
  .testimonials-title {
    font-size: 36px;
  }
  
  .testimonial-card {
    min-width: 60vw;
  }
  
  .testimonial-quote {
    font-size: 22px;
  }
}




/* Ensure the dropdown is visible and styled */
.has-dropdown .dropdown {
  display: none;
  position: absolute;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  z-index: 1000;
  opacity: 1; /* Ensure opacity is set to 1 when displayed */
 
  transition: opacity 0.5s ease, transform 0.5s ease; /* Transition for opacity and transform */
}

.has-dropdown .dropdown.show {
  display: block; /* Show the dropdown */
  opacity: 1; /* Fully visible */
  transform: translateY(0); /* Move to original position */
}

/* Ensure the nav-menu fits inside the dropdown */
.nav-menu {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: none; /* Remove shadow since dropdown already has one */
  opacity: 1;
  transform: translateY(0%) translateZ(0);
  width: max-content;
}
.nav-description{
  font-size: 14px;
}
.nav-container {
  padding: 20px; /* Adjust padding for dropdown */
}

.nav-image {
  width: 250px;
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  transition: transform 0.5s ease-in-out;
}

.nav-item:hover .nav-image {
  transform: scale(1.1);
}

/* Animation for dropdown */
@keyframes slideDown {
  from {
      opacity: 0;
      transform: translateY(-20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.has-dropdown .dropdown {
  animation: slideDown 0.5s ease-in-out;
}





.blog-section {
  margin: 50px 120px;
}

.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* Header Styles */
.header {
  text-align: center;
}

.header h1 {
  font-size: 60px;
  font-weight: 400;
  line-height: 60px;
  letter-spacing: -2.5px;
  margin-bottom: 30px;
  margin-top: 20px;
}

.header h2 {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  opacity: 0.6;
}

.header h2 span {
  font-weight: 500;
  color: #000;
}

/* Filter Tabs Styles */
.filter-tabs {
  position: relative;
  background: #f5f5f5;
  border-radius: 999px;
  padding: 10px;
  overflow-x: auto;
}

.filter-tabs ul {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.filter-tabs button {
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: #000;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.filter-tabs button.active {
  color: #fff;
  background-color: #000;
  border-radius: 20px;
}

.tab-indicator {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #000;
  border-radius: 999px;
  width: 57px;
  z-index: 1;
  transition: all 0.3s;
}

/* Blog Grid Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.blog-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}

.blog-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 30px;
}

.card-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 34px 37px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Push content to top and bottom */
}

.category {
  background: #fff;
  color: #000;
  font-size: 12px;
  padding: 5px 8px;
  border-radius: 999px;
  align-self: flex-start; /* Align to the top-left */
}

.bottom-content {
  display: flex;
  justify-content:space-between ;
  gap: 20px; /* Space between h3 and button */
}

.card-content h3 {
  font-size: 25px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: -1px;
  color: #fff;
  margin: 0; /* Remove default margin */
  width: 250px;
}

.card-content button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.5s;
  align-self: flex-start; /* Align to the bottom-left */
}

.card-content button:hover {
  background: #000;
  color: #fff;
}

.filter-tabs button.active {
  background: #000;
  color: #fff;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
  .blog-section {
    margin: 50px 60px;
  }
  
  .blog-container {
    gap: 40px;
  }
  
  .header h1 {
    font-size: 50px;
    line-height: 50px;
  }
  
  .blog-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .blog-section {
    margin: 50px 40px;
  }
  
  .header h1 {
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
  }
  
  .header h2 {
    font-size: 18px;
    line-height: 24px;
  }
  
  .filter-tabs {
    padding: 8px;
  }
  
  .filter-tabs button {
    padding: 12px 16px;
    font-size: 13px;
  }
  
  .blog-grid {
    gap: 30px;
  }
  
  .card-content {
    padding: 25px;
  }
  
  .card-content h3 {
    font-size: 22px;
    line-height: 26px;
  }
  
  .card-content button {
    padding: 12px 20px;
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .bottom-content {
    flex-direction: column;
    gap: 15px;
  }
  
  .card-content h3 {
    width: auto;
  }
  
  .card-content button {
    align-self: flex-start;
  }
}

@media (max-width: 480px) {
  .blog-section {
    margin: 40px 20px;
  }
  
  .header h1 {
    font-size: 32px;
    line-height: 32px;
    letter-spacing: -1px;
  }
  
  .header h2 {
    font-size: 16px;
    line-height: 22px;
  }
  
  .filter-tabs ul {
    justify-content: flex-start;
  }
  
  .card-content {
    padding: 20px;
  }
  
  .card-content h3 {
    font-size: 20px;
    line-height: 24px;
  letter-spacing: -0.5px;
  }
}


/* Section Styles */
.sliders {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 80%;
  overflow: hidden;
  background: rgb(255, 255, 255);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.4px);
  -webkit-backdrop-filter: blur(7.4px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.slider-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  animation: scrolling 20s linear infinite;

}

@keyframes scrolling {

  0% {
      transform: translateX(80%);
  }

  100% {
      transform: translateX(-20%);
  }
}

.slider-items img {
  width: 12%;
  margin: 20px;

}
/* Call to Action Section */
.cta-section {
  text-align: center;
  padding: 0 30px;
  margin-top: 50px;
}

.cta-section h2 {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  background: #fff;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.5s;
}

.cta-button:hover {
  background: #000;
  color: #fff;
}

.cta-button svg {
  width: 16px;
  height: 11px;
  transition: all 0.5s;
}

.cta-button:hover svg {
  transform: translateX(5px);
}






.containerr {
  display: flex;
  height: 100vh;
}

/* Left Side: Image/Slides */
.image-section {
  flex: 3;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  position: relative;
  width: 100%;
  height: 100vh; /* Adjust height as needed */
  overflow: hidden;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.image-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slide-image.active {
  opacity: 1;
}

.navigation-buttons {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.nav-button {
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 24px;
  color: #333;
  width: 40px;
}

.nav-button:hover {
  background-color: rgba(255, 255, 255, 1);
}


.back-button {
  position: absolute;
  top: 20px; /* Adjust position as needed */
  left: 20px; /* Adjust position as needed */
  padding: 10px 20px;
  background-color: #fff; /* Semi-transparent black */
  color:rgba(0, 0, 0, 0.8);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  z-index: 10; /* Ensure it's above other elements */
  transition: background-color 0.3s ease; /* Smooth hover effect */
  border-radius: 20px;
}

.back-button:hover {
  background-color: rgba(0, 0, 0, 1); /* Solid black on hover */
  color: #fff;
  border-radius: 20px;
}

/* Right Side: Scrollable Content */

.content-section {
  flex: 1;
  overflow-y: scroll;
  padding: 20px;
  background-color: white;
}

.step-indicator {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.step-button {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  padding: 10px;
}

.step-button.active {
  font-weight: bold;
  border-bottom: 2px solid black;
}

.step-content {
  display: none;
}

.step-content.active {
  display: block;
}



.next-step-button {
  background-color: black;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
}

.additional-info {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}








.content-container {
  padding: 30px;
  max-width: 1200px;
  margin: 0 auto;
}



.header h2 span {
  font-weight: 500;
  position: relative;
  font-size: 20px;
}

.header h2 span::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: currentColor;
}

.header p {
  font-size: 14px;
  color: #666;
  opacity: 0.4;
  margin: 0;
}

.header p span {
  color: #000;
}

.section {
  margin: 25px 0;
}

.section h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

/* Model List */
.model-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.model-buttons {
  width: 100%;
  padding: 25px 30px;
  background-color: #f0f0f0;
  border: 1.5px solid transparent;
  border-radius: 10px;
  text-align: left;
  position: relative;
  transition: border-color 0.3s;
}

.model-buttons:hover {
  border-color: rgba(19, 18, 17, 0.3);
}

.model-info p {
  margin: 0;
}

.model-info p:first-child {
  font-size: 16px;
  opacity: 0.7;
}

.model-info p:first-child span {
  font-weight: 500;
}

.model-info p:last-child {
  font-size: 14px;
  opacity: 0.4;
}

.model-images {
  position: absolute;
  top: 12px;
  right: 0;
  bottom: 12px;
  width: 30%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* Color Grid */
.color-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.color-button {
  height: 70px;
  padding: 0 12px 0 34px;
  border: 1.5px solid transparent;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.3s;
}

.color-button:hover {
  border-color: rgba(19, 18, 17, 0.3);
}

.color-circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1.5px solid #f0f0f0;
}

.color-info p {
  margin: 0;
}

.color-info p:first-child {
  font-size: 14px;
  opacity: 0.7;
}

.color-info p:last-child {
  font-size: 12px;
  opacity: 0.6;
}

/* Options List */
.options-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.option-button {
  width: 100%;
  padding: 25px 30px;
  background-color: #f0f0f0;
  border: 1.5px solid transparent;
  border-radius: 10px;
  text-align: left;
  transition: border-color 0.3s;
}

.option-button:hover {
  border-color: rgba(19, 18, 17, 0.3);
}

.option-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.option-info p {
  margin: 0;
}

.option-info p:first-child {
  font-size: 16px;
  opacity: 0.7;
}

.option-info p:last-child {
  font-size: 14px;
  opacity: 0.4;
}

.option-button p:last-child {
  margin-top: 5px;
  font-size: 14px;
  opacity: 0.4;
}





.model-options {
  list-style: none;
  padding: 0;
}

.model-options li {
  margin-bottom: 10px;
}

.model-options button {
  width: 100%;
  padding: 15px;
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 10px;
  cursor: pointer;
}

.gear-options ul {
  list-style: none;
  padding: 0;
}

.gear-options li {
  margin-bottom: 15px;
}

.gear-options button {
  width: 100%;
  background-color: white;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  transition: border-color 0.3s;
}

.gear-options button:hover {
  border-color: rgba(19, 18, 17, 0.3);
}

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

.gear-info {
  padding: 25px 30px;
}

.gear-info p {
  margin: 0;
}

.gear-info p:first-child {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.7;
}

.gear-info p:nth-child(2) {
  font-size: 14px;
  font-weight: 500;
}

.gear-info p:last-child {
  font-size: 14px;
  opacity: 0.4;
}

.order-options .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.order-button {
  background-color: #f0f0f0;
  border: none;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.order-button:hover {
  background-color: black;
  color: white;
}

.order-summary {
  background-color: #f0f0f0;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  margin-top: 20px;
}

.reserve-buttons {
  width: 100%;
  padding: 15px;
  background-color: yellow;
  border: none;
  border-radius: 25px;
  cursor: pointer;
}

.order-details {
  background-color: #f0f0f0;
  border-radius: 20px;
  padding: 20px;
  margin-top: 20px;
}

.order-details ul {
  list-style: none;
  padding: 0;
}

.order-details li {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer {
  margin-top: 20px;
  text-align: center;
}

.next-step-button {
  background-color: black;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
}

.additional-info {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

.step-content {
  display: none;
}

.step-content.active {
  display: block;
}


/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .containerr {
    flex-direction: column;
    height: auto;
  }

  /* Image Section */
  .image-section {
    height: 50vh; /* Smaller height on mobile */
    flex: none;
  }

  .image-carousel {
    height: 100%;
  }

  .navigation-buttons {
    padding: 0 10px;
  }

  .nav-button {
    width: 35px;
    height: 36px;
    font-size: 18px;
    padding: 5px;
  }

  /* Content Section */
  .content-section {
    flex: none;
    height: auto;
    padding: 15px;
  }

  /* Step Indicator */
  .step-indicator {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
  }

  .step-button {
    font-size: 14px;
    padding: 5px;
    white-space: nowrap;
  }

  /* Header */
  .header h2 {
    font-size: 24px;
  }

  .header h2 span {
    font-size: 18px;
  }

  /* Model List */
  .model-list {
    gap: 10px;
  }

  .model-buttons {
    padding: 15px 20px;
  }

  .model-images {
    width: 40%; /* Larger image area on mobile */
  }

  /* Color Grid */
  .color-grid {
    grid-template-columns: 1fr;
  }

  .color-button {
    height: 60px;
    padding-left: 20px;
  }

  /* Options List */
  .options-list {
    gap: 10px;
  }

  .option-button {
    padding: 15px 20px;
  }

  /* Gear Options */
  .gear-options li {
    margin-bottom: 10px;
  }

  .gear-info {
    padding: 15px 20px;
  }

  /* Order Options */
  .order-options .grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 100;
  }

  .next-step-button {
    width: 100%;
    padding: 12px;
  }

  /* Step 3 adjustments */
  .order-summary, .order-details {
    margin-bottom: 80px; /* Prevent footer overlap */
  }

  /* Back button */
  .back-button {
    top: 10px;
    left: 10px;
    padding: 8px 15px;
    font-size: 14px;
  }
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
  .model-info p:first-child {
    font-size: 14px;
  }

  .model-info p:last-child {
    font-size: 12px;
  }

  .section h3 {
    font-size: 15px;
  }

  .option-info p:first-child {
    font-size: 14px;
  }

  .option-info p:last-child {
    font-size: 12px;
  }

  .option-button p:last-child {
    font-size: 12px;
  }

  .gear-info p:first-child {
    font-size: 14px;
  }

  .gear-info p:nth-child(2) {
    font-size: 13px;
  }

  .gear-info p:last-child {
    font-size: 12px;
  }
}













/* InventoryInformation css*/
.container1 {
  width: 360px;
  height: 100%;
  overflow-y: scroll;
  padding: 40px 30px;
  background-color: #fff;
}

.content1 {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.status .in-stock {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  padding: 9px 14px;
  background-color: #f5f5f5;
  border-radius: 999px;
  color: #000;
  width: fit-content;
}

.title-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.title {
  display: flex;
  gap: 6px;
}

.brand, .model {
  font-family: 'Inter', sans-serif !important;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: -1px;
  color: #000;
  font-weight: 500;
}

.model span {
  position: relative;
}

.model span::after {
  content: ' ';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: currentColor;
}

.author {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  opacity: 0.6;
}

.divider {
  width: 100%;
  height: 1px;
  margin: 30px 0;
  background-color: rgba(0, 0, 0, 0.1);
}

.details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.detail-item p {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #000;
}

.detail-item span {
  font-weight: 500;
}

.financing {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #666;
  text-decoration: underline;
  font-style: italic;
}

.price-section {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.price {
  font-family: 'Inter', sans-serif !important;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: -1px;
  color: #000;
  font-weight: 500;
  text-align: center;
}

.monthly-payment {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #000;
  text-align: center;
}

.monthly-payment span {
  font-weight: 500;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.reserve-btn, .contact-btn {
  height: 55px;
  padding: 0 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: -0.5px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3b03d;
  background-color: #f3b03d;
  color: #000;
}

.contact-btn {
  background-color: #fff;
  border: 1px solid #000;
}

.btn-text {
  display: flex;
  align-items: center;
}

.optional-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.section-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
}

.features-list {
  display: flex;
  flex-direction: column;
  background-color: #f5f5f5;
  border-radius: 20px;
}

.feature-item {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.feature-item p {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px;
  line-height: 18px;
  color: #000;
  font-weight: 500;
}

.feature-price {
  font-family: 'Inter', sans-serif !important;
  font-size: 12px;
  color: #666;
  font-weight: 400;
}

.description-section {
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.description-text {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #666;
  padding-bottom: 40px;
}

/* InventoryInformation css complete*/


/* reserveYourBuild css */
.container2 {
  position: relative;
  width: 100%;
  height: 100vh;
}

.background-image {
  position: absolute;
  inset: 0;
}

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

.dialog {
  position: absolute;
  left: 10px;
  top: 10px;
  right: 10px;
  height: calc(100svh - 40px);
  background: white;
  border-radius: 20px;
  padding: 30px 10px 20px;
  z-index: 600;
}

@media (min-width: 768px) {
  .dialog {
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: unset;
    width: 530px;
    padding: 50px 40px 20px;
  }
}

.dialog-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header1 h3 {
  font-size: 25px;
  font-weight: 400;
  line-height: 25px;
  margin: 0;
}

.header1 h3 span {
  font-weight: 700;
  position: relative;
}

.header1 h3 span::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
}

.header1 hr {
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  margin: 10px 0;
}

.header1 p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.main-content {
  padding: 0 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 30px;
}

.main-content p {
  font-size: 21px;
  line-height: 22px;
  margin: 0;
  color: #000;
}

.main-content p span {
  text-decoration: underline;
}

.pricing p {
  font-size: 14px;
  color: #000;
  margin: 0;
}

.pricing h3 {
  font-size: 25px;
  font-weight: 500;
  line-height: 25px;
  margin: 0;
}

.pricing h3 span {
  position: relative;
}

.pricing h3 span::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
}

.footer {
  margin-top: 30px;
  padding: 0 10px;
  margin-bottom: 20px;
}

.legal-text {
  font-size: 10px;
  color: #666;
  margin-bottom: 10px;
}

.legal-text a {
  text-decoration: underline;
}

.due-today {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.due-today p {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.due-today .refundable {
  font-size: 12px;
  color: #666;
}

.amount {
  font-size: 16px;
  font-weight: 500;
}

.reserve1-button {
  width: 84%;
  height: 55px;
  padding: 0 25px 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 9999px;
  border: 1px solid rgb(243, 176, 61);
  background: rgb(243, 176, 61);
  color: #000;
  font-size: 14px;
  cursor: pointer;
  margin-top: 10px;
  position:absolute;
  bottom: -25px;
}

.reserve1-button .arrow-icon {
  width: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s;
}

.reserve1-button:hover .arrow-icon {
  width: 21px;
  opacity: 1;
}

.close-button {
  position: absolute;
  top: -20px;
  right: 0;
  background: #f1f1f1;
  padding: 6px;
  border-radius: 9999px;
  cursor: pointer;
  border: none;
}

@media (min-width: 768px) {
  .close-button {
      top: 12px;
      right: 14px;
  }
}






/* Base Mobile Styles (applies to all sizes) */
.navs {
  position: fixed;
  left: 0;
  right: 0;
  top: 120px; 
  z-index: 99;
  padding: 0 15px;
  transform: translateY(-100%); /* Start hidden above */
  transition: transform 0.3s ease-in-out;
}

.navs.visible {
  transform: translateY(0); /* Slide down into view */
}
.nav-container1 {
  padding: 10px;
  margin-top: 0; /* Reset margin */
}
.nav-contents {
  height: auto; /* Changed from fixed height */
  min-height: 70px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 15px; /* Reduced from 0 30px */
  display: flex;
  flex-direction: row; /* Stack vertically on mobile */
  gap: 15px; /* Space between brand and actions */
  justify-content: space-between;
  align-items: center;
}

/* Brand Section - Mobile */
.nav-brand {
  display: flex;
  flex-direction: column; /* Stack brand text vertically */
  align-items: center;
  gap: 8px; /* Reduced gap */
  text-align: center;
  width: 100%;
}

.brand-text {
  font-size: 16px; /* Slightly larger for mobile */
  line-height: 1.2;
}

.price-text {
  font-size: 14px;
  line-height: 1.2;
}

/* Actions Section - Mobile */
.nav-actions {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column; /* Stack buttons vertically */
  gap: 10px;
}

.nav-button1 {
  padding: 0px 0px;
  display: flex
;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  color: #000;
  font-size: 11px;
  height: auto;
  min-height: 45px;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
}

/* Tablet Styles (min-width: 640px) */
@media (min-width: 640px) {
  .navs {
    top: 30px;
    padding: 0 20px;
  }
  
  .nav-contents {
    flex-direction: row; /* Horizontal layout */
    padding: 0 20px;
    gap: 20px;
  }
  
  .nav-brand {
    flex-direction: row; /* Horizontal brand text */
    align-items: baseline;
    width: auto;
    text-align: left;
  }
  
  .nav-actions {
    flex-direction: row; /* Horizontal buttons */
    width: auto;
  }
  
  .nav-button1 {
    width: auto;
    padding: 0 20px 0 15px;
  }
}

/* Desktop Styles (min-width: 1024px) */
@media (min-width: 1024px) {
  .navs {
    position: sticky;
    transform: none !important; /* Override any transform */
    top: 100px; /* Your original desktop position */
    padding: 0;
  }
  
  .nav-container1 {
    padding: 30px; /* Your original desktop padding */
    margin-top: 0;
  }
  .nav-contents {
    height: 70px;
    padding: 0 30px;
    border-radius: 20px;
  }
  
  .nav-brand {
    gap: 12px;
  }
  
  .brand-text {
    font-size: 14px;
  }
  
  .nav-actions {
    padding: 0;
    display: flex;
    gap: 8px;
  }
  
  .nav-button1 {
    padding: 0 25px 0 15px;
    height: 45px;
  }
}



.nav-button:hover {
  background: #f8f8f8;
}

.reserve-button {
  background: rgb(243, 176, 61);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.reserve-button:hover {
  background: rgb(235, 165, 50);
}

.button-text {
  display: flex;
  align-items: center;
}

.arrow-icon {
  width: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s;
}

.nav-button:hover .arrow-icon {
  width: 21px;
  opacity: 1;
}

.icons {
  width: 12px;
  height: 12px;
}












.container4 {
  max-width: 1200px;
  margin: 30px auto;
  padding: 50px 10px;
  background-color: #f4f4f4;
  border-radius: 20px;
}

.header4 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  margin-bottom: 60px;
}

.header4 h2 {
  font-size: 60px;
  font-weight: 400;
  color: #000;
}

.header4 p {
  font-size: 20px;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
}

/* Features Grid */
.features-lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding: 0;
  list-style: none;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .features-lists {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-lists {
      grid-template-columns: repeat(4, 1fr);
      gap: 60px;
  }
}

/* Feature Items */
.feature-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.feature-image {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-text h3 {
  font-size: 30px;
  font-weight: 400;
  color: #000;
}

.feature-text p {
  font-size: 16px;
  color: #666;
}

/* Responsive */
@media (min-width: 1024px) {
  .feature-items {
      text-align: left;
  }
}




/* General Styles */
.text-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  padding: 0 10px;
}

/* Heading Styles */
.heading {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: -1.2px;
  color: #000; /* Replace with actual color */
  text-align: center;
}

@media (min-width: 1024px) {
  .heading {
    font-size: 60px;
    line-height: 60px;
    letter-spacing: -2.5px;
  }
}

.highlight {
  position: relative;
  display: inline-block;
}

.underline {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: currentColor;
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0, 0.7, 0.95, 0.99);
  transform: scaleX(1);
}

/* Subheading Styles */
.subheading {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #808080; /* Replace with actual color */
}

@media (min-width: 1024px) {
  .subheading {
    font-size: 20px;
    line-height: 26px;
  }
}








/* Section */
.section1 {
  margin: 10px;
}

@media (min-width: 1024px) {
  .section1 {
    margin: 30px;
  }
}

/* Container */
.container5 {
  background: #f8f8f8;
  border-radius: 20px;
  padding: 50px 30px;
}

@media (min-width: 1024px) {
  .container5 {
    padding: 112px 30px;
    margin-top: 130px;
  }
}

/* Content */
.content5 {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

/* Text Content */
.text-content5 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.heading5 {
  font-size: 30px;
  font-weight: 400;
  line-height: 30px;
  color: #000;
}

@media (min-width: 1024px) {
  .heading5 {
    font-size: 60px;
    line-height: 60px;
  }
}

.subheading5 {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #666;
  max-width: 382px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .subheading5{
    font-size: 20px;
    line-height: 26px;
  }
}

.price {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #000;
}

.price span {
  font-weight: 500;
}

@media (min-width: 1024px) {
  .price {
    font-size: 20px;
    line-height: 26px;
  }
}

/* Image Container */
.image-container5 {
  position: relative;
  max-width: 812px;
  max-height: 58vh;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}

.image5 {
  width: 390px;
  height: 360px;
  object-fit: contain;
}

/* Info Buttons */
.info-button {
  position: absolute;
  z-index: 2;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s;
}

.info-button:hover {
  transform: scale(1.1);
}

/* Features */
.features {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.feature-list5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (min-width: 1024px) {
  .feature-list5 {
    gap: 120px;
  }
}

.feature-item5 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}

.feature-text5 {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  color: #666;
  margin-top: 10px;
}

.feature-text5 span {
  color: #000;
  font-weight: 500;
}

@media (min-width: 1024px) {
  .feature-text5 {
    font-size: 20px;
    line-height: 26px;
  }
}



.icon-container {
  width: 40px;
  height: 40px;
  background: #f1f1f1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arrow-container {
  width: 16px;
  overflow: hidden;
}

.arrow-icon {
  transition: transform 0.5s;
}

.cta-button:hover .arrow-icon {
  transform: translateX(0);
}










/* Gallery Section */
.gallery-section {
  margin: 10px;
}

@media (min-width: 1024px) {
  .gallery-section {
    margin: 0 120px;
  }
}

/* Gallery Container */
.gallery-container {
  padding: 50px 0;
}

@media (min-width: 1024px) {
  .gallery-container {
    padding: 60px 0;
  }
}

/* Gallery Grid */
.gallery-grid {
  display: flex;
  flex-direction: column-reverse;
  gap: 50px;
}

@media (min-width: 1024px) {
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 120px;
  }
}

/* Gallery Images */
.gallery-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

@media (min-width: 1024px) {
  .gallery-images {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 650px;
  }
}

.gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.zoom-icon {
  position: absolute;
  top: 18px;
  right: 17px;
  color: white;
}

/* Gallery Text */
.gallery-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

@media (min-width: 1024px) {
  .gallery-text {
    align-items: flex-start;
    position: sticky;
    top: 35%;
  }
}

.gallery-heading {
  font-size: 30px;
  font-weight: 400;
  line-height: 30px;
  color: #000;
}

@media (min-width: 1024px) {
  .gallery-heading {
    font-size: 60px;
    line-height: 60px;
  }
}

.gallery-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #666;
  max-width: 320px;
  text-align: center;
}

@media (min-width: 1024px) {
  .gallery-description {
    font-size: 20px;
    line-height: 26px;
    text-align: left;
  }
}

.gallery-description span {
  color: #000;
  font-weight: 500;
}

/* Gallery Button */
.gallery-button {
  height: 55px;
  padding: 0 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 9999px;
  background: #000;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.gallery-button:hover {
  background: #333;
}

.button-text {
  display: flex;
  align-items: center;
}

.arrow-icon1 {
  width: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s;
}

.gallery-button:hover .arrow-icon1 {
  width: 21px;
  opacity: 1;
}

/* Disclaimer */
.disclaimer {
  margin-top: 40px;
  font-size: 15px;
  color: #666;
  opacity: 0.4;
  max-width: 1200px;
}

@media (min-width: 1024px) {
  .disclaimer {
    width: 50%;
  }
}










/* Mobile Header Styles */
.mobile-header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #181818;
  padding: 15px 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.mobile-menu-toggle .hamburger {
  padding: 0;
}

.hamburger-inner, 
.hamburger-inner::before, 
.hamburger-inner::after {
  background-color: #fff;
}

/* Mobile Menu Wrapper */
.mobile-menu-wrapper {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh; /* Full viewport height */
  background-color: #181818;
  z-index: 9999;
  transition: all 0.5s ease;
  overflow: hidden; /* Hide overflow on wrapper */
}

.mobile-menu-wrapper.active {
  left: 0;
}


/* Mobile Menu Inner Container */
.mobile-menu-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Mobile Menu Content - Scrollable Area */
.mobile-menu-content {
  flex: 1;
  overflow-y: auto; /* Enable vertical scrolling */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  padding: 30px; /* Extra space at bottom */
  height: calc(100vh - 120px); /* Adjust based on your header/footer height */
  -webkit-overflow-scrolling: touch;
}



/* Desktop Dropdown Fix */
@media (min-width: 1200px) {
  .has-dropdown .dropdown {
    position: absolute;
    width: 100%;
    left: 0;
    display: none; /* Hidden by default */
    opacity: 1;
    transform: translateY(0);
    /* Remove hover rule */
  }
  
  /* Product grid layout for desktop */
  .nav-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}








/* Mobile Menu Header - Fixed at top */
.mobile-menu-header {
  padding: 20px;
  background-color: #181818;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Footer - Fixed at bottom */
.mobile-menu-footer {
  padding: 20px;
  background-color: #181818;
  /* position: sticky; */
  bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu-close .close-button {
  background: none;
  border: none;
  color: #fff;
  font-size: 38px;
  cursor: pointer;
  top: 36px;
  right: 16px;
}

.mobile-main-menu {
  padding: 20px 0;
}

.mobile-main-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-main-menu ul li {
  position: relative;
  margin-bottom: 15px;
}

.mobile-main-menu ul li a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  display: block;
  padding: 10px 0;
}

.mobile-main-menu ul li.menu-item-has-children .dropdown-toggle {
  position: relative;
  padding-right: 30px;
}

.mobile-main-menu ul li.menu-item-has-children .dropdown-toggle::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  transition: all 0.3s ease;
  border-top: none !important;
}

.mobile-main-menu ul li.menu-item-has-children.active .dropdown-toggle::after {
  content: "-";
}

.mobile-main-menu ul li .dropdown {
  display: none;
  padding-left: 15px;
}

.mobile-main-menu ul li.active .dropdown {
  display: block;
}

/* Product Carousel */
.mobile-product-carousel {
  position: relative;
  overflow: hidden;
  margin: 15px 0;
}

.product-slide {
  display: none;
  width: 100%;
  transition: all 0.5s ease;
}

.product-slide.active {
  display: block;
}

.product-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.product-model {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.product-price {
  font-size: 16px;
}

.product-price span {
  font-weight: 700;
}

.product-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.product-carousel-nav button {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  padding: 5px 15px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu-button {
  display: block;
  padding: 12px 20px;
  background-color: transparent;
  color: #fff;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 1199px) {
  .mobile-header {
    display: block;
  }
  
  #header-sticky {
    display: none;
  }
}








/* Hamburger menu styles */
.hamburger {
  padding: 15px;
  display: inline-block;
  cursor: pointer;
  background: transparent;
  border: 0;
  margin: 0;
}

.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, 
.hamburger-inner::before, 
.hamburger-inner::after {
  width: 30px;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  position: absolute;
  transition: transform 0.15s ease;
}

.hamburger-inner::before, 
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/* Active state */
.hamburger--collapse.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--collapse.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}





/* Mobile Products Slider */
.mobile-products-container {
  position: relative;
  width: 100%;
  margin: 15px 0;
  overflow: hidden;
}

.mobile-product-slide {
  display: none;
  width: 100%;
  transition: all 0.5s ease;
}

.mobile-product-slide.active {
  display: block;
}

.mobile-product-slide .product-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  position: relative;
}

.mobile-product-slide .product-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
  border-radius: 8px;
}

.mobile-product-slide .product-model,
.mobile-product-slide .product-price {
  position: relative;
  z-index: 2;
}

.mobile-product-slide .product-model {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.mobile-product-slide .product-price {
  font-size: 16px;
}

.mobile-product-slide .product-price span {
  font-weight: 700;
}

.mobile-product-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.mobile-product-nav button {
  background: none;
  border: 1px solid #fff;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  padding: 5px 15px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-product-nav button:hover {
  background: rgba(255,255,255,0.2);
}




/* Ensure proper scrolling behavior */
/* More specific mobile breakpoint (768px) */
@media (max-width: 767px) {
  html {
    height: 100%;
    overflow-x: hidden;
  }
}
/* Mobile-only styles (applies only below 1200px) */
/* @media (max-width: 1199px) {
  html, body {
    height: 100%;
    overflow-x: hidden;
  }
} */
.menu-item-has-children.active .dropdown {
  max-height: 500px; /* Adjust based on content */
  overflow-y: auto;
}

/* Better touch targets */
.mobile-main-menu ul li a {
  padding: 12px 0;
  display: block;
}

/* Visual scroll indicator */
.mobile-menu-content::-webkit-scrollbar {
  width: 5px;
}

.mobile-menu-content::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.3);
  border-radius: 10px;
}






.testimonials-wrapper {
    position: relative;
  }
  
  .testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .testimonial-nav:hover {
    background: rgba(0, 0, 0, 0.8);
  }
  
  .prev-nav {
    left: 10px;
  }
  
  .next-nav {
    right: 10px;
  }
  
  .testimonials-grid {
    display: flex;
    overflow-x: hidden; /* Changed from auto to hidden */
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 0;
  }
  
  .testimonial-card {
    flex: 0 0 calc(33.333% - 20px); /* Show 3 cards at a time */
    min-width: 300px; /* Minimum card width */
  }


.features{
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content:flex-start;
  align-items: center;
  
}















