@charset "UTF-8";
/*======================================================================================
Theme Name: Orixo
Author: Gramentheme
Author URI: https://themeforest.net/user/Gramentheme/portfolio
Description: Orixo - Creative Agency & Portfolio HTML Template 
Version: 1.0.0
=======================================================================================*/
/*======================================================================================
  >> TABLE OF CONTENTS <<
========================================================================================
01. Mixins & Variables
02. Base
03. Components
04. Layouts
05. Sections
======================================================================================*/
/*---------------------------------------
01. Mixins & Variables
---------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --body: #ffffff;
  --black: #111827;
  --white: #fff;
  --theme: #2563EB;
  --header: #111827;
  --text: #4B5563;
  --border: #E5E7EB;
  --bg: #F0F4FF;
  --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.08);
}

/*---------------------------------------
02. Base
---------------------------------------*/
/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: var(--text);
  background-color: var(--body);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

@media (max-width: 1399px) {
  body {
    font-size: 18px;
  }
}

@media (max-width: 1199px) {
  body {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  body {
    font-size: 16px;
  }
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Urbanist", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 120px;
  font-weight: 600;
  line-height: 92%;
}

@media (max-width: 1600px) {
  h1 {
    font-size: 100px;
  }
}

@media (max-width: 1399px) {
  h1 {
    font-size: 90px;
  }
}

@media (max-width: 1199px) {
  h1 {
    font-size: 80px;
  }
}

@media (max-width: 991px) {
  h1 {
    font-size: 60px;
    line-height: 110% !important;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 48px;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 45px;
  }
}

@media (max-width: 470px) {
  h1 {
    font-size: 40px;
  }
}

h2 {
  font-size: 65px;
  font-weight: 600;
  line-height: 117%;
}

@media (max-width: 1399px) {
  h2 {
    font-size: 50px;
  }
}

@media (max-width: 1199px) {
  h2 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  h2 {
    font-size: 36px;
  }
}

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

@media (max-width: 575px) {
  h2 {
    font-size: 36px;
  }
}

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

h3 {
  font-size: 30px;
  font-weight: 500;
  line-height: 150%;
}

@media (max-width: 575px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 18px;
  font-weight: 400;
}

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

h6 {
  font-size: 16px;
  font-weight: 700;
}

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

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

span {
  margin: 0px;
}

.theme-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 0;
  position: relative;
  transition: all 0.4s ease;
  text-transform: capitalize;
  border-radius: 10px;
}

.theme-btn-main.style-2 {
  background-color: var(--theme);
  padding: 7px 25px;
  padding-right: 7px;
  border-radius: 70px;
}

.theme-btn-main.style-2 .theme-btn-arrow-left,
.theme-btn-main.style-2 .theme-btn-arrow-right {
  width: 43px;
  height: 43px;
  background: var(--white);
  border-radius: 50%;
  color: #000;
}

.theme-btn-main.style-2 .theme-btn-arrow-left img,
.theme-btn-main.style-2 .theme-btn-arrow-right img {
  animation: cir36 10s linear infinite;
}

.theme-btn-main.style-2 .theme-btn {
  background-color: transparent;
  padding: 0;
  margin-right: 25px;
}

.theme-btn-main.style-2:hover {
  padding-right: 25px;
  padding-left: 7px;
}

.theme-btn-main.style-2:hover .theme-btn {
  background-color: transparent;
}

.theme-btn-main.style-2:hover .theme-btn-arrow-left {
  left: 7px;
}

.theme-btn-main .theme-btn-arrow-left,
.theme-btn-main .theme-btn-arrow-right {
  width: 43px;
  height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--theme);
  border-radius: 50%;
  transition: 0.4s;
  text-align: center;
}

.theme-btn-main .theme-btn-arrow-left i,
.theme-btn-main .theme-btn-arrow-right i {
  font-weight: 400;
}

.theme-btn-main .theme-btn-arrow-left {
  scale: 0;
  position: absolute;
  left: 7px;
}

.theme-btn-main .theme-btn {
  background: var(--theme);
  color: var(--header);
  font-weight: 600;
  font-size: 18px;
  padding: 13px 30px;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  transition: 0.4s;
}

@media (max-width: 575px) {
  .theme-btn-main .theme-btn {
    font-size: 14px;
    padding: 10px 25px;
  }
}

.theme-btn-main:hover .theme-btn-arrow-left {
  scale: 1;
}

.theme-btn-main:hover .theme-btn-arrow-left img {
  animation: cir36 10s linear infinite;
}

.theme-btn-main:hover .theme-btn-arrow-right {
  scale: 0;
}

.theme-btn-main:hover .theme-btn-arrow-right img {
  animation: cir36 10s linear infinite;
}

.theme-btn-main:hover .theme-btn {
  transform: translateX(60px);
  background-color: var(--header);
}

.theme-btn-main.bg-white-style {
  background-color: var(--white);
}

.theme-btn-main.bg-white-style .theme-btn-arrow-left,
.theme-btn-main.bg-white-style .theme-btn-arrow-right {
  background: var(--theme);
  color: #fff;
}

.theme-btn-main.bg-white-style .theme-btn {
  color: #111827;
}

.theme-btn-main.bg-black-style {
  background-color: #2563EB;
}

.theme-btn-main.bg-black-style .theme-btn-arrow-left,
.theme-btn-main.bg-black-style .theme-btn-arrow-right {
  background: var(--theme);
  color: #fff;
}

.theme-btn-main.bg-black-style .theme-btn {
  color: #fff;
}

.theme-btn-main.border-style {
  background-color: transparent;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.theme-btn-main.border-style .theme-btn-arrow-left,
.theme-btn-main.border-style .theme-btn-arrow-right {
  color: var(--theme);
  background: #F0F4FF;
}

.theme-btn-main.border-style .theme-btn {
  color: #111827;
}

@keyframes slideRight {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  51% {
    opacity: 1;
  }
}

@keyframes slideUp {
  49% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  51% {
    opacity: 1;
  }
}

/*---------------------------------------
03. Components
---------------------------------------*/
.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
  background: none;
}

.mean-container .mean-nav>ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: #fff;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  text-transform: capitalize;
  border-bottom: 1px solid rgba(37, 99, 235, 0.08) !important;
  border: none;
  font-family: "Urbanist", sans-serif;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li>a>i {
  display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
  display: inline-block;
  font-size: 18px;
}

.mean-container .mean-nav>ul>li:first-child>a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: all 1s ease;
  -khtml-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.search-popup__overlay {
  position: fixed;
  width: 224vw;
  height: 224vw;
  top: calc(90px - 112vw);
  right: calc(50% - 112vw);
  z-index: 3;
  display: block;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: transform 0.8s ease-in-out;
  -khtml-transition: transform 0.8s ease-in-out;
  -moz-transition: transform 0.8s ease-in-out;
  -ms-transition: transform 0.8s ease-in-out;
  -o-transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition-delay: 0s;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  background-color: #111827;
  opacity: 0.7;
  cursor: url(../../assets/img/close.png), auto;
}

@media (max-width: 767px) {
  .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(-110%);
  }
}

.search-popup__content {
  position: fixed;
  width: 0;
  max-width: 560px;
  padding: 30px 15px;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition-delay: 0s, 0.8s, 0s;
  transition-delay: 0s, 0.4s, 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}

.search-popup__form {
  position: relative;
}

.search-popup__form input[type=search],
.search-popup__form input[type=text] {
  width: 100%;
  height: 66px;
  border: none;
  outline: none;
  padding-left: 20px;
  background-color: var(--white);
  font-size: 16px;
  font-weight: 400;
  color: #111827;
  transition: all 500ms ease;
  border-radius: 4px;
  padding-right: 80px;
}

.search-popup__form input[type=search]:focus,
.search-popup__form input[type=text]:focus {
  color: #111827;
}

.search-popup__form .search-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 4px;
  font-size: 20px;
  color: var(--header);
  background-color: var(--theme);
  transition: all 0.4s ease-in-out;
}

.search-popup__form .search-btn:hover {
  background-color: var(--header);
  color: var(--white);
}

.search-popup__form .eolexi-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.search-popup.active {
  z-index: 999999;
}

.search-popup.active .search-popup__overlay {
  top: auto;
  bottom: calc(90px - 112vw);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  opacity: 0.7;
  -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}

@media (max-width: 767px) {
  .search-popup.active .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0%);
  }
}

.search-popup.active .search-popup__content {
  width: 100%;
  opacity: 1;
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}

/* PRELOADER - Luxury White & Blue */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: linear-gradient(145deg, #ffffff 0%, #EEF2FF 40%, #DBEAFE 70%, #EFF6FF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 36px;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  overflow: hidden;
}

#preloader::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: preloader-pulse 3s ease-in-out infinite;
}

#preloader::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

@keyframes preloader-pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 1;
  }
}

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

/* Brackets */
.bracket {
  position: absolute;
  width: 48px;
  height: 48px;
  z-index: 2;
}

.bracket::before,
.bracket::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, #2563EB, #60A5FA);
}

.bracket::before {
  width: 100%;
  height: 2px;
  top: 0;
  left: 0;
}

.bracket::after {
  width: 2px;
  height: 100%;
  top: 0;
  left: 0;
}

.bracket.tl {
  top: 32px;
  left: 32px;
}

.bracket.tr {
  top: 32px;
  right: 32px;
  transform: scaleX(-1);
}

.bracket.bl {
  bottom: 32px;
  left: 32px;
  transform: scaleY(-1);
}

.bracket.br {
  bottom: 32px;
  right: 32px;
  transform: scale(-1, -1);
}

/* Logo */
.pre-logo {
  font-size: clamp(3.5rem, 12vw, 7rem);
  letter-spacing: 0.25em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(37, 99, 235, 0.12);
  position: relative;
  line-height: 1;
  z-index: 2;
}

.pre-logo-fill {
  position: absolute;
  top: 0;
  left: 0;
  font-size: inherit;
  letter-spacing: inherit;
  background: linear-gradient(135deg, #1E40AF 0%, #2563EB 40%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  -webkit-clip-path: inset(100% 0 0 0);
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1.2s cubic-bezier(0.76, 0, 0.24, 1);
}

.pre-logo-fill.reveal {
  -webkit-clip-path: inset(0% 0 0 0);
  clip-path: inset(0% 0 0 0);
}

/* Loader Ring */
.loader-ring {
  position: relative;
  width: 80px;
  height: 80px;
  z-index: 2;
}

.loader-ring svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: ring-spin 2s linear infinite;
}

.ring-track {
  fill: none;
  stroke: rgba(37, 99, 235, 0.08);
  stroke-width: 2;
}

.ring-arc {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 180 226;
  animation: arc-chase 2s ease-in-out infinite;
}

.ring-arc.a1 {
  stroke: #2563EB;
  filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.6));
}

.ring-arc.a2 {
  stroke: #60A5FA;
  stroke-dasharray: 60 346;
  animation: arc-chase2 2s ease-in-out infinite;
}

.ring-center-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #2563EB;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.6), 0 0 40px rgba(37, 99, 235, 0.2);
  animation: dot-breathe 2s ease-in-out infinite;
}

@keyframes ring-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes arc-chase {
  0% {
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dashoffset: -180;
  }

  100% {
    stroke-dashoffset: -406;
  }
}

@keyframes arc-chase2 {
  0% {
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dashoffset: -80;
  }

  100% {
    stroke-dashoffset: -406;
  }
}

@keyframes dot-breathe {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 1;
  }
}

/* Counter */
.pre-count {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #64748B;
  z-index: 2;
}

.pre-count span {
  color: #2563EB;
  font-weight: 700;
  font-size: 18px;
}

.pre-count span {
  font-weight: 700;
}

/* Progress Bar */
.progress-bar-container {
  width: 200px;
  height: 4px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 2px;
  overflow: hidden;
  z-index: 2;
  margin-top: 8px;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #2563EB, #60A5FA, #3B82F6);
  border-radius: 2px;
  transition: width 0.3s ease;
  position: relative;
}

.progress-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8));
  filter: blur(8px);
  animation: progress-shine 1.5s ease-in-out infinite;
}

@keyframes progress-shine {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

/* Loading Message */
.loading-message {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #64748B;
  margin-top: 16px;
  z-index: 2;
  opacity: 0;
  animation: message-fade 0.5s ease forwards;
  animation-delay: 0.3s;
}

@keyframes message-fade {
  to {
    opacity: 1;
  }
}

/* Loading Stage */
.loading-stage {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  z-index: 2;
}

.stage-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.2);
  transition: all 0.4s ease;
}

.stage-dot.active {
  background: #2563EB;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.6);
  transform: scale(1.2);
}

.stage-dot.completed {
  background: #60A5FA;
}

/* Floating Particles */
.particles-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(37, 99, 235, 0.3);
  border-radius: 50%;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100vh) scale(1);
    opacity: 0;
  }
}

/* IT Service Icons */
.service-icons-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.service-icon {
  position: absolute;
  font-size: 24px;
  color: rgba(37, 99, 235, 0.15);
  animation: icon-blink 3s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  transition: all 0.3s ease;
}

.service-icon i {
  filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.3));
}

@keyframes icon-blink {

  0%,
  100% {
    opacity: 0.15;
    transform: scale(1);
    filter: drop-shadow(0 0 10px rgba(37, 99, 235, 0.3));
  }

  50% {
    opacity: 0.6;
    transform: scale(1.2);
    filter: drop-shadow(0 0 20px rgba(37, 99, 235, 0.6));
  }
}

.service-icon.highlighted {
  opacity: 1 !important;
  transform: scale(1.5) !important;
  color: #2563EB !important;
  filter: drop-shadow(0 0 30px rgba(37, 99, 235, 0.8)) !important;
  animation: icon-pulse 1s ease-in-out infinite;
}

@keyframes icon-pulse {

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

  50% {
    transform: scale(1.7);
  }
}

/* Page hidden initially */
#page {
  opacity: 0;
  transition: opacity 0.6s ease;
}

#page.visible {
  opacity: 1;
}

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes gelatine {

  from,
  to {
    transform: scale(1, 1);
  }

  25% {
    transform: scale(0.7, 1.1);
  }

  50% {
    transform: scale(1.1, 0.7);
  }

  75% {
    transform: scale(0.95, 1.05);
  }
}

@keyframes scale-up-two {
  0% {
    -webkit-transform: scale(0.2);
    transform: scale(0.5);
  }

  40% {
    -webkit-transform: scale(0.4);
    transform: scale(0.8);
  }

  100% {
    -webkit-transform: scale(0.15);
    transform: scale(0.15);
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@-webkit-keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }

  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes criss-cross-right {
  0% {
    right: -20px;
  }

  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-25%);
  }

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

@keyframes zoom {
  0% {
    transform: scale(0.5);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.5);
  }
}

@keyframes translateY2 {
  0% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  100% {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes translateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes moving {
  0% {
    transform: translatey(0px);
  }

  20% {
    transform: translateX(-50px);
  }

  50% {
    transform: translatey(-40px);
  }

  100% {
    transform: translatey(0px);
  }
}

/*img-animation**********************/
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes animate-positive {
  0% {
    width: 0;
  }
}

@keyframes scale {
  0% {
    top: -1000px;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.animation-infinite {
  animation: ShapeAnim 50s linear infinite;
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

@keyframes ShapeAnim {
  0% {
    background-position: top left;
  }

  100% {
    background-position: top left 3000px;
  }
}

.splt-txt .whitespace {
  width: 8px;
}

.splt-txt.animated .char {
  -webkit-animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: fadeIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

.splt-txt-bounce .whitespace {
  width: 20px;
}

@media (max-width: 991px) {
  .splt-txt-bounce .whitespace {
    width: 10px;
  }
}

.splt-txt-bounce.animated .char {
  -webkit-animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  animation: bounceIn 0.4s cubic-bezier(0.3, 0, 0.7, 1) both;
  -webkit-animation-delay: calc(30ms * var(--char-index));
  animation-delay: calc(30ms * var(--char-index));
}

/*---------------------------------------
04. Layouts
---------------------------------------*/
.sticky-menu {
  background-color: #ffffff !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  animation: 400ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-radius: 0;
  position: fixed !important;
  top: 0 !important;
  left: 0;
  padding: 18px 150px;
  border: none;
  border-bottom: 1px solid rgba(37, 99, 235, 0.08);
}

@media (max-width: 1899px) {
  .sticky-menu {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 1399px) {
  .sticky-menu {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 1199px) {
  .sticky-menu {
    padding-left: 90px;
    padding-right: 90px;
  }
}

@media (max-width: 991px) {
  .sticky-menu {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 767px) {
  .sticky-menu {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 575px) {
  .sticky-menu {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.sticky-menu .header-main .navbar .navbar-nav .nav-item>.sub-menu {
  top: 150%;
}

.sticky-menu .header-main .navbar .navbar-nav .nav-item .has-homemenu {
  top: 130%;
}

.sticky-menu .mobile-menu-area {
  background-color: #ffffff;
}

/* ===============================
   NAVBAR
================================= */
.header-main .navbar .navbar-nav .menu-thumb {
  position: inherit !important;
}

.header-main .navbar .navbar-nav .has-homemenu::-webkit-scrollbar {
  display: none;
}

.header-main .navbar .navbar-nav .has-homemenu {
  -ms-overflow-style: none;
}

.header-main .navbar .navbar-nav .nav-item {
  position: relative;
  margin-inline-end: 30px;
}

.header-main .navbar .navbar-nav .nav-item:last-child {
  margin-inline-end: 0;
}

.header-main .navbar .navbar-nav .nav-item .nav-link {
  color: var(--header);
  font-size: 16px;
  font-weight: 700;
}

.header-main .navbar .navbar-nav .nav-item .nav-link i {
  font-size: 10px;
  position: relative;
  top: -1px;
  margin-left: 3px;
  transition: all 0.4s ease-in-out;
}

.header-main .navbar .navbar-nav .nav-item {
  /* ===============================
     FIRST LEVEL SUBMENU
  ================================= */
}

.header-main .navbar .navbar-nav .nav-item>.sub-menu {
  min-width: 235px;
  background-color: #ffffff;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.4s ease;
  border-radius: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: rgba(20, 20, 21, 0.2) 0px 7px 29px 0px;
}

.header-main .navbar .navbar-nav .nav-item>.sub-menu li {
  position: relative;
}

.header-main .navbar .navbar-nav .nav-item>.sub-menu li a {
  color: var(--header);
  display: block;
  width: 100%;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-main .navbar .navbar-nav .nav-item>.sub-menu li a:hover {
  color: var(--theme);
}

.header-main .navbar .navbar-nav .nav-item>.sub-menu li a i {
  font-size: 12px;
  transition: all 0.4s ease-in-out;
}

.header-main .navbar .navbar-nav .nav-item>.sub-menu li:not(:last-child) a {
  border-bottom: 1px solid #211e1e;
}

.header-main .navbar .navbar-nav .nav-item>.sub-menu li:last-child a {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.header-main .navbar .navbar-nav .nav-item>.sub-menu li:hover i {
  transform: rotate(90deg);
}

.header-main .navbar .navbar-nav .nav-item .has-homemenu {
  padding: 20px 20px 10px 20px !important;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  right: 0;
  padding: 0;
  width: 100%;
  z-index: 999;
  overflow: hidden;
  margin: auto;
  overflow: hidden;
  margin: auto;
  max-height: 740px;
  overflow-y: auto;
  overflow-x: hidden;
}

.header-main .navbar .navbar-nav .nav-item .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  border-radius: 10px;
  position: relative;
}

.header-main .navbar .navbar-nav .nav-item .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: linear-gradient(to bottom, rgba(37, 99, 235, 0) 0%, #2563EB 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: "";
  border-radius: 10px;
}

.header-main .navbar .navbar-nav .nav-item .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.header-main .navbar .navbar-nav .nav-item .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
  left: 25px;
  right: 25px;
  max-width: 160px;
  margin: 20px auto 0;
}

.header-main .navbar .navbar-nav .nav-item .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 16px 18px;
  justify-content: center;
  line-height: 1;
  background-color: var(--theme);
  color: var(--white);
  border-radius: 30px;
}

.header-main .navbar .navbar-nav .nav-item .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  background-color: var(--white);
  color: #000;
}

.header-main .navbar .navbar-nav .nav-item .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn i {
  margin-left: 10px;
  transform: initial;
}

.header-main .navbar .navbar-nav .nav-item .has-homemenu .homemenu-items .homemenu .homemenu-content {
  text-align: center;
}

.header-main .navbar .navbar-nav .nav-item .has-homemenu .homemenu-items .homemenu .hometitle {
  text-align: center;
  font-family: "Urbanist", sans-serif;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  padding: 0;
  padding-top: 15px;
}

.header-main .navbar .navbar-nav .nav-item .has-homemenu .homemenu-items .homemenu:hover .homemenu-thumb::before {
  visibility: visible;
  opacity: 1;
}

.header-main .navbar .navbar-nav .nav-item .has-homemenu .homemenu-items .homemenu:hover .homemenu-thumb .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.header-main .navbar .navbar-nav .nav-item {
  /* SHOW FIRST LEVEL */
}

.header-main .navbar .navbar-nav .nav-item:hover>.sub-menu,
.header-main .navbar .navbar-nav .nav-item .sub-menu:hover {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

.header-main .navbar .navbar-nav .nav-item:hover .nav-link i {
  transform: rotate(-180deg);
}

.header-main .sidebar__toggle {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px;
  width: 25px;
  height: 25px;
  position: relative;
  top: 0;
  inset-inline-start: 0;
  -webkit-margin-start: 5px;
  margin-inline-start: 5px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.header-main .sidebar__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--white);
  border-radius: 10px;
  margin-inline-end: auto;
  backface-visibility: hidden;
  transition: all 0.3s;
}

.header-main .sidebar__toggle span:last-child,
.header-main .sidebar__toggle span:first-child {
  width: 25px;
}

.header-main .sidebar__toggle.mobile_menu_bar {
  width: 50px;
  height: 50px;
  padding: 12px;
  background: var(--white);
  border-radius: 7px;
}

.header-main .sidebar__toggle.mobile_menu_bar span {
  background-color: var(--white);
}

.header-main .sidebar__toggle:hover span {
  width: 100%;
}

/* ===============================
   NESTED SUBMENU (LEVEL 2+)
================================= */
.sub-menu li {
  position: relative;
  /* CHILD SUBMENU */
}

.sub-menu li>.sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  margin-top: 0;
  min-width: 235px;
  background-color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border-radius: 10px;
  box-shadow: rgba(20, 20, 21, 0.2) 0px 7px 29px 0px;
}

.sub-menu li>.sub-menu li a {
  padding: 12px 18px;
}

.sub-menu li {
  /* SHOW CHILD */
}

.sub-menu li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu-area {
  z-index: 999999;
  width: 100%;
  transition: all 0.4s ease-in-out;
  margin-top: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
}

.mobile-menu-area .mobile-topbar {
  width: 100%;
}

.mobile-menu-area .mobile-topbar .bars {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px;
  width: 25px;
  height: 25px;
  position: relative;
  top: 0;
  inset-inline-start: 0;
  -webkit-margin-start: 5px;
  margin-inline-start: 5px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.mobile-menu-area .mobile-topbar .bars span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--white);
  border-radius: 10px;
  margin-inline-end: auto;
  backface-visibility: hidden;
  transition: all 0.3s;
}

.mobile-menu-area .mobile-topbar .bars span:last-child,
.mobile-menu-area .mobile-topbar .bars span:first-child {
  width: 25px;
}

.mobile-menu-area .mobile-topbar .bars.mobile_menu_bar {
  width: 50px;
  height: 50px;
  padding: 12px;
  background: var(--white);
  border-radius: 7px;
}

.mobile-menu-area .mobile-topbar .bars.mobile_menu_bar span {
  background-color: var(--white);
}

.mobile-menu-area .mobile-topbar .bars:hover span {
  width: 100%;
}

.mobile-menu-area {
  /* =========================
     OVERLAY
  ========================= */
}

.mobile-menu-area .mobile-menu-overlay {
  width: 100%;
  height: 100%;
  backdrop-filter: blur(15px);
  background-color: rgba(37, 99, 235, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
}

.mobile-menu-area .mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-area {
  /* =========================
     MAIN MENU (FIXED)
  ========================= */
}

.mobile-menu-area .mobile-menu-main {
  width: 390px;
  height: 100%;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: -390px;
  z-index: 999;
  overflow-y: scroll;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  top: 15px;
  height: calc(100% - 30px);
  border-start-start-radius: 12px;
  border-end-start-radius: 12px;
  border-radius: 12px;
}

@media (max-width: 470px) {
  .mobile-menu-area .mobile-menu-main {
    width: 300px;
  }
}

.mobile-menu-area .mobile-menu-main .logo {
  padding: 30px;
}

@media (max-width: 470px) {
  .mobile-menu-area .mobile-menu-main .logo img {
    width: 130px;
  }
}

.mobile-menu-area .mobile-menu-main .close-mobile-menu {
  position: absolute;
  top: 34px;
  right: 10px;
}

.mobile-menu-area .mobile-menu-main .close-mobile-menu i {
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.mobile-menu-area .mobile-menu-main .menu-body .menu-list {
  padding-top: 10px;
}

.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li a {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  border-top: 1px solid rgba(37, 99, 235, 0.08) !important;
  width: 100%;
  padding: 12px 30px;
  padding-right: 10px;
  transition: all 0.4s ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li a i {
  width: 32px;
  height: 32px;
  background-color: var(--white);
  color: #000;
  text-align: center;
  line-height: 32px;
  font-size: 12px;
  border-radius: 3px;
  transition: all 0.4s ease-in-out;
  margin-right: 15px;
}

.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li a:hover {
  color: var(--theme);
}

.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li a:hover i {
  background-color: var(--theme);
  color: var(--white);
}

.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li ul {
  padding-left: 0;
  display: none;
}

.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li ul a {
  padding-left: 40px;
}

.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li ul li:last-child a {
  border-bottom: 0;
}

.mobile-menu-area .mobile-menu-main .menu-body .menu-list ul li:last-child a {
  border-bottom: 1px solid rgba(37, 99, 235, 0.08) !important;
}

.mobile-menu-area .mobile-menu-main .off-contact-area {
  padding: 30px;
  padding-top: 0;
}

.mobile-menu-area .mobile-menu-main .off-contact-info {
  margin-top: 30px;
}

.mobile-menu-area .mobile-menu-main .off-contact-info .info-title {
  font-size: 24px;
  color: var(--white);
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
}

@media (max-width: 575px) {
  .mobile-menu-area .mobile-menu-main .off-contact-info .info-title {
    font-size: 20px;
  }
}

.mobile-menu-area .mobile-menu-main .off-contact-info .contact-details {
  margin-top: 14px;
}

.mobile-menu-area .mobile-menu-main .off-contact-info .contact-details .sub-info {
  color: #64748B;
}

@media (max-width: 575px) {
  .mobile-menu-area .mobile-menu-main .off-contact-info .contact-details .sub-info {
    font-size: 14px;
  }
}

.mobile-menu-area .mobile-menu-main .off-contact-info .contact-details p {
  color: var(--white);
  font-family: "Urbanist", sans-serif;
  font-size: 17px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .mobile-menu-area .mobile-menu-main .off-contact-info .contact-details p {
    font-size: 15px;
  }
}

.mobile-menu-area .mobile-menu-main .off-contact-info .contact-details p a {
  color: var(--white);
}

.mobile-menu-area .mobile-menu-main .social-icon-list {
  margin-top: 30px;
}

.mobile-menu-area .mobile-menu-main .social-icon-list .follow-title {
  font-size: 24px;
  color: var(--white);
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
}

@media (max-width: 575px) {
  .mobile-menu-area .mobile-menu-main .social-icon-list .follow-title {
    font-size: 20px;
  }
}

.mobile-menu-area .mobile-menu-main .social-icon-list .social-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}

.mobile-menu-area .mobile-menu-main .social-icon-list .social-icon a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  color: var(--white);
  font-size: 14px;
}

.mobile-menu-area .mobile-menu-main .social-icon-list .social-icon a:hover {
  background-color: var(--theme);
  color: var(--header);
}

.mobile-menu-area {
  /* 🔥 ACTIVE STATE */
}

.mobile-menu-area .mobile-menu-main.active {
  left: 15px !important;
}

.mobile-menu-area .mobile-menu-action-btn {
  padding: 20px;
}

.mobile-menu-area .mobile-menu-action-btn a {
  color: var(--theme);
  padding: 12px 0;
  font-size: 16px;
  font-weight: 700;
  border-radius: 5px;
  width: 100%;
  text-align: center;
}

.mobile-menu-area .mobile-menu-action-btn a i {
  font-size: 14px;
  margin-left: 8px;
}

.mobile-menu-area .mobile-menu-action-btn a:hover {
  background-color: var(--header);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  z-index: 2000;
}

/* Mobile Menu Main */
.mobile-menu-main {
  z-index: 2001;
}

/*=============================
	12. Offcanvas CSS Start
===============================*/
.offcanvas-overlay {
  backdrop-filter: blur(15px);
  background-color: rgba(37, 99, 235, 0.05);
  z-index: 999;
  transition: all 0.4s ease-in-out;
  visibility: hidden;
  opacity: 0;
  cursor: crosshair;
}

.offcanvas-overlay.active {
  visibility: visible;
  opacity: 1;
}

.offcanvas-menu {
  max-width: 450px;
  z-index: 9999;
  padding: 40px;
  overflow-y: auto;
  scrollbar-width: thin;
  font-size: 20px;
  right: -450px;
  transition: all 0.4s ease-in-out;
  visibility: hidden;
  opacity: 0;
  background-color: #ffffff;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
  top: 15px;
  width: 470px;
  height: calc(100% - 30px);
  border-start-start-radius: 12px;
  border-end-start-radius: 12px;
  border-radius: 12px;
}

.offcanvas-menu .offcasvas-close {
  width: 50px;
  height: 50px;
  background: var(--theme);
}

.offcanvas-menu .header-top {
  margin-bottom: 30px;
}

.offcanvas-menu .action-title {
  font-size: 24px;
  display: block;
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
  color: var(--header);
}

.offcanvas-menu .news-btn {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  font-family: "Urbanist", sans-serif;
  color: var(--white);
  overflow: hidden;
  text-transform: capitalize;
  margin-top: 18px;
}

.offcanvas-menu .news-btn i {
  margin-left: 7px;
}

.offcanvas-menu .news-btn .text {
  position: relative;
  display: inline-block;
  height: 22px;
  overflow: hidden;
}

.offcanvas-menu .news-btn .text-default,
.offcanvas-menu .news-btn .text-hover {
  display: block;
  transition: transform 0.4s ease;
}

.offcanvas-menu .news-btn .text-hover {
  position: absolute;
  left: 0;
  top: 100%;
  color: var(--theme);
}

.offcanvas-menu .news-btn:hover .text-default {
  transform: translateY(-100%);
}

.offcanvas-menu .news-btn:hover .text-hover {
  transform: translateY(-100%);
}

.offcanvas-menu .news-btn i {
  transition: transform 0.4s ease;
}

.offcanvas-menu .offcanvas_gallery {
  height: 264px;
  position: relative;
  margin-top: 30px;
}

.offcanvas-menu .offcanvas_gallery .gallery_img {
  --i: 0;
  max-width: 146px;
  width: 100%;
  aspect-ratio: 146/167;
  object-fit: cover;
  position: absolute;
  left: calc(var(--i) * 82px);
  bottom: calc(var(--i) * 32px);
  z-index: 0;
  transform: translateY(0) scale(1);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  border-radius: 8px;
}

.offcanvas-menu .offcanvas_gallery .gallery_img:nth-child(2) {
  --i: 1;
}

.offcanvas-menu .offcanvas_gallery .gallery_img:nth-child(3) {
  --i: 2;
}

.offcanvas-menu .offcanvas_gallery .gallery_img:nth-child(4) {
  --i: 3;
}

.offcanvas-menu .offcanvas_gallery .gallery_img:hover {
  z-index: 1;
  transform: translateY(-5px) scale(1.02);
}

.offcanvas-menu .offcanvas_gallery .gallery_img:hover~.gallery_img {
  z-index: 0;
}

.offcanvas-menu .off-contact-info {
  margin-top: 40px;
}

.offcanvas-menu .off-contact-info .info-title {
  font-size: 24px;
  color: var(--white);
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
}

@media (max-width: 575px) {
  .offcanvas-menu .off-contact-info .info-title {
    font-size: 20px;
  }
}

.offcanvas-menu .off-contact-info .contact-details {
  margin-top: 14px;
}

.offcanvas-menu .off-contact-info .contact-details .sub-info {
  color: #64748B;
}

@media (max-width: 575px) {
  .offcanvas-menu .off-contact-info .contact-details .sub-info {
    font-size: 14px;
  }
}

.offcanvas-menu .off-contact-info .contact-details p {
  color: var(--white);
  font-family: "Urbanist", sans-serif;
  font-size: 17px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .offcanvas-menu .off-contact-info .contact-details p {
    font-size: 15px;
  }
}

.offcanvas-menu .off-contact-info .contact-details p a {
  color: var(--white);
}

.offcanvas-menu .social-icon-list {
  margin-top: 30px;
}

.offcanvas-menu .social-icon-list .follow-title {
  font-size: 24px;
  color: var(--white);
  font-family: "Urbanist", sans-serif;
  font-weight: 700;
}

@media (max-width: 575px) {
  .offcanvas-menu .social-icon-list .follow-title {
    font-size: 20px;
  }
}

.offcanvas-menu .social-icon-list .social-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}

.offcanvas-menu .social-icon-list .social-icon a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
  color: var(--white);
  font-size: 14px;
}

.offcanvas-menu .social-icon-list .social-icon a:hover {
  background-color: var(--theme);
  color: var(--header);
}

.offcanvas-menu.active {
  right: 0;
  visibility: visible;
  opacity: 1;
  right: 15px;
}

/* ===============================
   HEADER
================================= */
.header-1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99999;
  border-bottom: 1px solid transparent;
  padding: 25px 150px;
}

@media (max-width: 1899px) {
  .header-1 {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 1399px) {
  .header-1 {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 1199px) {
  .header-1 {
    padding-left: 90px;
    padding-right: 90px;
    border-bottom: none;
  }
}

@media (max-width: 991px) {
  .header-1 {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 767px) {
  .header-1 {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 575px) {
  .header-1 {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.header-1 .menu-right-info {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header-1 .menu-right-info .search-toggler {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 50%;
}

.header-2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99999;
}

.header-2 .mobile-menu-area {
  padding-left: 30px;
  padding-right: 30px;
}

.header-2 .mobile-menu-main {
  left: initial !important;
  right: -390px !important;
}

.header-2 .mobile-menu-area .mobile-menu-main.active {
  right: 15px !important;
  left: initial !important;
}

.header-2 .header-right {
  display: flex;
  align-items: center;
  gap: 35px;
}

@media (max-width: 1199px) {
  .header-2 .header-right {
    gap: 20px;
  }
}

@media (max-width: 1199px) {
  .header-2 .header-right .theme-btn-main {
    display: none;
  }
}

.header-2 .header-text {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
}

@media (max-width: 1199px) {
  .header-2 .header-text {
    display: none;
  }
}

.header-3 {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99999;
  padding: 18px 30px;
}

@media (max-width: 1199px) {
  .header-3 {
    top: 0;
  }
}

.header-3 .header-right {
  display: flex;
  align-items: center;
  gap: 35px;
}

@media (max-width: 1199px) {
  .header-3 .header-right {
    gap: 20px;
  }
}

@media (max-width: 1199px) {
  .header-3 .header-right .theme-btn-main {
    display: none;
  }
}

.header-4 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99999;
  padding: 18px 60px;
}

.header-4 .navbar-nav {
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 100px;
  background: rgba(37, 99, 235, 0.06);
  padding: 10px 15px;
}

.header-4 .navbar-nav .nav-item {
  margin-inline-end: 0 !important;
}

.header-4 .navbar-nav .nav-item .nav-link {
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 100px;
  line-height: 1;
  text-transform: uppercase;
  padding: 9px 8px;
  color: rgba(17, 24, 39, 0.5) !important;
}

.header-4 .navbar-nav .nav-item .nav-link:hover {
  color: var(--white) !important;
}

.header-4 .header-right {
  display: flex;
  align-items: center;
  gap: 35px;
}

@media (max-width: 1199px) {
  .header-4 .header-right {
    gap: 20px;
  }
}

@media (max-width: 1199px) {
  .header-4 .header-right .theme-btn-main {
    display: none;
  }
}

.header-4 .header-call-info {
  display: flex;
  align-items: center;
  gap: 50px;
  background: rgba(37, 99, 235, 0.06);
  border-radius: 100px;
  border-radius: 100px;
  padding: 11px 15px;
}

.header-4 .header-call-info .call-number {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  border: 1px solid rgba(37, 99, 235, 0.15);
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
}

.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.breadcrumb-wrapper .light-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.breadcrumb-wrapper .page-heading {
  position: relative;
  padding: 180px 0 0;
  z-index: 9;
  margin-bottom: 50px;
}

@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading {
    padding: 150px 0 0;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading {
    text-align: center;
    padding-top: 150px;
  }
}

.breadcrumb-wrapper .page-heading h1 {
  color: #0F172A;
  font-size: 110px;
  position: relative;
  z-index: 9;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 116%;
  font-weight: 600;
}

.breadcrumb-wrapper .page-heading h1 span {
  font-weight: 400;
  font-family: "Instrument Serif", serif;
  font-style: italic;
}

@media (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 80px;
  }
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 70px;
  }

  .breadcrumb-wrapper .page-heading h1 br {
    display: none;
  }
}

@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 55px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 50px;
  }
}

@media (max-width: 470px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 40px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 20px;
}

@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    display: grid;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items ul {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items ul {
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items ul li {
  font-size: 24px;
  font-weight: 600;
  color: #475569;
}

@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items ul li {
    font-size: 16px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items .title {
  font-size: 160px;
  font-weight: 400;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 0;
  letter-spacing: -0.01em;
}

@media (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items .title {
    font-size: 150px;
  }
}

@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items .title {
    font-size: 100px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items .title {
    font-size: 70px;
  }
}

@media (max-width: 470px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items .title {
    font-size: 60px;
  }
}

.error-items {
  text-align: center;
  position: relative;
}

.error-items .error-image {
  margin: 0 auto 40px;
}

.error-items .error-image img {
  width: 100%;
  height: 100%;
}

.error-items h2 {
  font-size: 72px;
  font-weight: 600;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 25px;
}

@media (max-width: 1399px) {
  .error-items h2 {
    font-size: 53px;
  }
}

@media (max-width: 991px) {
  .error-items h2 {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .error-items h2 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .error-items h2 {
    font-size: 30px;
  }
}

.error-items p {
  margin: 0 auto 30px;
  font-size: 18px;
  font-weight: 400;
  max-width: 390px;
}

.footer-widget-wrapper {
  padding: 90px 0 120px;
}

@media (max-width: 1199px) {
  .footer-widget-wrapper {
    padding: 70px 0 100px;
  }
}

@media (max-width: 991px) {
  .footer-widget-wrapper {
    padding: 50px 0 80px;
  }
}

.footer-widget-wrapper .footer-widget-items {
  margin-top: 30px;
}

.footer-widget-wrapper .footer-widget-items .widget-head {
  margin-bottom: 30px;
}

.footer-widget-wrapper .footer-widget-items .widget-head span {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  display: inline-block;
  font-family: "Urbanist", sans-serif;
  text-transform: capitalize;
}

.footer-widget-wrapper .footer-widget-items .footer-content {
  max-width: 310px;
}

.footer-widget-wrapper .footer-widget-items .footer-content p {
  color: rgba(17, 24, 39, 0.9);
  font-size: 16px;
  line-height: 162%;
  font-weight: 600;
}

.footer-widget-wrapper .footer-widget-items .footer-content .social-icon {
  gap: 8px;
  margin-top: 30px;
}

.footer-widget-wrapper .footer-widget-items .footer-content .social-icon a {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background-color: rgba(75, 67, 67, 0.4);
  color: var(--white);
  font-size: 14px;
  text-align: center;
}

.footer-widget-wrapper .footer-widget-items .footer-content .social-icon a:hover {
  background-color: var(--theme);
}

.footer-widget-wrapper .footer-widget-items .gt-list-area li {
  transition: all 0.4s ease-in-out;
  font-size: 16px;
  font-weight: 600;
}

.footer-widget-wrapper .footer-widget-items .gt-list-area li:not(:last-child) {
  margin-bottom: 15px;
}

.footer-widget-wrapper .footer-widget-items .gt-list-area li a {
  color: rgba(17, 24, 39, 0.6);
}

.footer-widget-wrapper .footer-widget-items .gt-list-area li:hover {
  margin-left: 5px;
}

.footer-widget-wrapper .footer-widget-items .gt-list-area li:hover a {
  color: var(--theme);
}

.footer-widget-wrapper .footer-widget-items .footer-contact .talk-title {
  font-size: 55px;
  font-weight: 500;
  color: var(--white);
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .footer-widget-wrapper .footer-widget-items .footer-contact .talk-title {
    font-size: 42px;
  }
}

.footer-widget-wrapper .footer-widget-items .footer-contact p {
  font-size: 18px;
  color: var(--white);
}

.footer-widget-wrapper .footer-widget-items .footer-contact .mail-text {
  color: var(--white);
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
  margin-top: 15px;
}

.footer-widget-wrapper .footer-widget-items .footer-contact .number-text {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
}

.footer-widget-wrapper .footer-widget-items .footer-contact .social-icon {
  gap: 8px;
  margin-top: 30px;
}

.footer-widget-wrapper .footer-widget-items .footer-contact .social-icon a {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background-color: rgba(75, 67, 67, 0.4);
  color: var(--white);
  font-size: 14px;
  text-align: center;
}

.footer-widget-wrapper .footer-widget-items .footer-contact .social-icon a:hover {
  background-color: var(--theme);
}

.footer-widget-wrapper .footer-form-3 .subscribe-text {
  color: var(--white);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1px;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .footer-widget-wrapper .footer-form-3 .subscribe-text {
    font-size: 26px;
  }
}

.footer-widget-wrapper .footer-form-3 .subscribe-text span {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
}

.footer-widget-wrapper .footer-form-3 form {
  position: relative;
  margin-top: 25px;
}

.footer-widget-wrapper .footer-form-3 form input {
  width: 100%;
  border: none;
  background: rgba(37, 99, 235, 0.06);
  padding: 22px 20px;
  border-radius: 0;
  line-height: 1;
  border-radius: 50px;
  color: rgba(17, 24, 39, 0.6);
  padding-right: 44px;
  font-size: 16px;
  font-weight: 500;
}

.footer-widget-wrapper .footer-form-3 form input::placeholder {
  color: rgba(17, 24, 39, 0.6);
}

.footer-widget-wrapper .footer-form-3 form .email-btn {
  color: var(--theme);
  transition: all 0.4s ease-in-out;
  position: absolute;
  top: 6px;
  right: 18px;
  bottom: 6px;
}

.footer-widget-wrapper .footer-form-3 .sq-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font-size: 16px;
  color: rgba(17, 24, 39, 0.6);
  margin-top: 20px;
}

.footer-widget-wrapper .footer-form-3 .sq-checkbox input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
}

.footer-widget-wrapper .footer-form-3 .sq-checkbox .box {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  border-radius: 4px;
  border: 2px solid rgba(37, 99, 235, 0.12);
  display: inline-grid;
  place-items: center;
  transition: background-color 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease, transform 0.12s ease;
  background: rgba(37, 99, 235, 0.06);
  box-sizing: border-box;
  flex-shrink: 0;
}

.footer-widget-wrapper .footer-form-3 .sq-checkbox .check {
  width: 14px;
  height: 14px;
  transform: scale(0);
  transition: transform 0.14s cubic-bezier(0.2, 0.9, 0.2, 1);
  color: var(--white);
}

.footer-widget-wrapper .footer-form-3 .sq-checkbox input:checked+.box {
  background: var(--theme);
  border-color: var(--theme);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.footer-widget-wrapper .footer-form-3 .sq-checkbox input:checked+.box .check {
  transform: scale(1);
}

.footer-widget-wrapper .footer-form-3 .sq-checkbox input:focus+.box {
  box-shadow: 0 0 0 4px rgba(14, 165, 164, 0.12);
  border-color: var(--theme);
}

.footer-widget-wrapper .footer-form-3 .sq-checkbox:active .box {
  transform: scale(0.98);
}

.footer-widget-wrapper .footer-form-3 .sq-checkbox .label-text {
  line-height: 1;
}

.footer-widget-wrapper .footer-form-3.style-3 form input {
  border-radius: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(37, 99, 235, 0.08);
  padding: 25px 0;
}

.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;
    justify-content: center;
    gap: 25px;
  }
}

.footer-bottom .footer-bottom-wrapper p {
  color: rgba(17, 24, 39, 0.85);
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.footer-bottom .footer-bottom-wrapper p b {
  color: var(--theme);
}

.footer-bottom .footer-bottom-wrapper .footer-list {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom .footer-bottom-wrapper .footer-list li {
  font-size: 16px;
  font-weight: 500;
  font-family: "Urbanist", sans-serif;
  color: rgb(223, 220, 210);
}

.footer-bottom .footer-bottom-wrapper .footer-list li a {
  color: rgba(17, 24, 39, 0.85);
}

.footer-bottom .footer-bottom-wrapper .footer-list li a:hover {
  color: var(--theme);
}

.footer-section .container {
  max-width: 1675px;
}

.footer-widget-wrapper-2 {
  padding: 70px 0 100px;
}

@media (max-width: 991px) {
  .footer-widget-wrapper-2 {
    padding: 50px 0 80px;
  }
}

.footer-widget-wrapper-2 .footer-widget-items {
  margin-top: 30px;
}

.footer-widget-wrapper-2 .footer-widget-items .widget-head {
  margin-bottom: 30px;
}

.footer-widget-wrapper-2 .footer-widget-items .widget-head h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  text-transform: capitalize;
}

.footer-widget-wrapper-2 .footer-widget-items .footer-content {
  max-width: 310px;
}

.footer-widget-wrapper-2 .footer-widget-items .footer-content p {
  color: #F2F5F7;
  font-size: 16px;
  line-height: 162.5%;
}

.footer-widget-wrapper-2 .footer-widget-items .footer-content .footer-btn {
  display: inline-block;
  height: 50px;
  line-height: 50px;
  border-radius: 70px;
  border: 1px solid #CBD5E1;
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  font-family: "Urbanist", sans-serif;
  padding: 0 30px;
  padding-left: 7px;
  margin-top: 30px;
}

.footer-widget-wrapper-2 .footer-widget-items .footer-content .footer-btn .icon {
  width: 36px;
  height: 36px;
  line-height: 36px;
  background-color: var(--theme);
  color: var(--white);
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  margin-right: 15px;
  transition: all 0.4s ease-in-out;
}

.footer-widget-wrapper-2 .footer-widget-items .footer-content .footer-btn:hover {
  background-color: var(--theme);
  border: 1px solid var(--theme);
}

.footer-widget-wrapper-2 .footer-widget-items .footer-content .footer-btn:hover .icon {
  background-color: var(--header);
}

.footer-widget-wrapper-2 .footer-widget-items .gt-list-area li {
  transition: all 0.4s ease-in-out;
  font-size: 16px;
}

.footer-widget-wrapper-2 .footer-widget-items .gt-list-area li:not(:last-child) {
  margin-bottom: 15px;
}

.footer-widget-wrapper-2 .footer-widget-items .gt-list-area li a {
  color: rgba(17, 24, 39, 0.7);
}

.footer-widget-wrapper-2 .footer-widget-items .gt-list-area li:hover {
  margin-left: 5px;
}

.footer-widget-wrapper-2 .footer-widget-items .gt-list-area li:hover a {
  color: var(--theme);
}

.footer-widget-wrapper-2 .footer-widget-items .contact-list li {
  color: rgba(17, 24, 39, 0.7);
  font-size: 16px;
  font-weight: 500;
  line-height: 162.5%;
  font-family: "Urbanist", sans-serif;
  transition: all 0.4s ease-in-out;
}

.footer-widget-wrapper-2 .footer-widget-items .contact-list li:not(:last-child) {
  margin-bottom: 20px;
}

.footer-widget-wrapper-2 .footer-widget-items .contact-list li:hover {
  color: var(--theme);
}

.footer-widget-wrapper-2 .footer-widget-items .contact-list li a {
  color: rgba(17, 24, 39, 0.7);
}

.footer-widget-wrapper-2 .footer-widget-items .contact-list li a:hover {
  color: var(--theme);
}

.footer-widget-wrapper-2 .footer-widget-items .footer-form-3 h3 {
  color: var(--white);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1px;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .footer-widget-wrapper-2 .footer-widget-items .footer-form-3 h3 {
    font-size: 26px;
  }
}

.footer-widget-wrapper-2 .footer-widget-items .footer-form-3 form {
  position: relative;
  margin-top: 25px;
}

.footer-widget-wrapper-2 .footer-widget-items .footer-form-3 form input {
  width: 100%;
  border: none;
  background-color: var(--white);
  padding: 18px 20px;
  border-radius: 8px;
  line-height: 1;
  color: #272727;
  font-size: 16px;
  font-weight: 400;
  padding-right: 50px;
}

.footer-widget-wrapper-2 .footer-widget-items .footer-form-3 form input::placeholder {
  color: #272727;
}

.footer-widget-wrapper-2 .footer-widget-items .footer-form-3 form .email-btn {
  color: var(--theme);
  transition: all 0.4s ease-in-out;
  position: absolute;
  top: 6px;
  right: 18px;
  bottom: 6px;
}

.footer-widget-wrapper-2 .footer-widget-items .footer-form-3 .sq-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font-size: 16px;
  color: var(--white);
  margin-top: 20px;
}

.footer-widget-wrapper-2 .footer-widget-items .footer-form-3 .sq-checkbox input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
}

.footer-widget-wrapper-2 .footer-widget-items .footer-form-3 .sq-checkbox .box {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  border-radius: 4px;
  border: 2px solid #cbd5e1;
  display: inline-grid;
  place-items: center;
  transition: background-color 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease, transform 0.12s ease;
  background: var(--white);
  box-sizing: border-box;
  flex-shrink: 0;
}

.footer-widget-wrapper-2 .footer-widget-items .footer-form-3 .sq-checkbox .check {
  width: 14px;
  height: 14px;
  transform: scale(0);
  transition: transform 0.14s cubic-bezier(0.2, 0.9, 0.2, 1);
  color: var(--white);
}

.footer-widget-wrapper-2 .footer-widget-items .footer-form-3 .sq-checkbox input:checked+.box {
  background: var(--theme);
  border-color: var(--theme);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.footer-widget-wrapper-2 .footer-widget-items .footer-form-3 .sq-checkbox input:checked+.box .check {
  transform: scale(1);
}

.footer-widget-wrapper-2 .footer-widget-items .footer-form-3 .sq-checkbox input:focus+.box {
  box-shadow: 0 0 0 4px rgba(14, 165, 164, 0.12);
  border-color: var(--theme);
}

.footer-widget-wrapper-2 .footer-widget-items .footer-form-3 .sq-checkbox:active .box {
  transform: scale(0.98);
}

.footer-widget-wrapper-2 .footer-widget-items .footer-form-3 .sq-checkbox .label-text {
  line-height: 1;
}

.footer-widget-wrapper-2.style-2 .footer-widget-items .widget-head h3 {
  color: var(--header);
}

.footer-widget-wrapper-2.style-2 .footer-widget-items .footer-content p {
  color: var(--header);
}

.footer-widget-wrapper-2.style-2 .footer-widget-items .footer-content .social-icon {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 30px;
}

.footer-widget-wrapper-2.style-2 .footer-widget-items .footer-content .social-icon a {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  background: rgba(41, 15, 28, 0.35);
  color: var(--white);
  font-size: 14px;
}

.footer-widget-wrapper-2.style-2 .footer-widget-items .footer-content .social-icon a:hover {
  background-color: var(--theme);
}

.footer-widget-wrapper-2.style-2 .footer-widget-items .gt-list-area li {
  transition: all 0.4s ease-in-out;
  font-family: "Urbanist", sans-serif;
  font-weight: 500;
}

.footer-widget-wrapper-2.style-2 .footer-widget-items .gt-list-area li:not(:last-child) {
  margin-bottom: 15px;
}

.footer-widget-wrapper-2.style-2 .footer-widget-items .gt-list-area li a {
  color: rgba(41, 15, 28, 0.7);
}

.footer-widget-wrapper-2.style-2 .footer-widget-items .gt-list-area li:hover {
  margin-left: 5px;
}

.footer-widget-wrapper-2.style-2 .footer-widget-items .gt-list-area li:hover a {
  color: var(--theme);
}

.footer-widget-wrapper-2.style-2 .footer-widget-items .contact-list li {
  color: rgba(41, 15, 28, 0.7);
  font-size: 16px;
  font-weight: 500;
  line-height: 162.5%;
  font-family: "Urbanist", sans-serif;
}

.footer-widget-wrapper-2.style-2 .footer-widget-items .contact-list li:not(:last-child) {
  margin-bottom: 15px;
}

.footer-widget-wrapper-2.style-2 .footer-widget-items .contact-list li a {
  color: rgba(41, 15, 28, 0.7);
}

.footer-section-2 {
  padding-bottom: 30px;
}

.footer-section-2 .footer-lets-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(37, 99, 235, 0.08);
  padding-bottom: 100px;
}

@media (max-width: 1199px) {
  .footer-section-2 .footer-lets-text {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .footer-section-2 .footer-lets-text {
    padding-bottom: 80px;
  }
}

.footer-section-2 .footer-lets-text .lets-title {
  position: relative;
  max-width: 650px;
}

.footer-section-2 .footer-lets-text .lets-title .theme-btn-main {
  position: absolute;
  bottom: 13px;
  right: -50px;
  background: rgba(37, 99, 235, 0.06);
}

.footer-section-2 .footer-lets-text .lets-title .theme-btn-main .theme-btn {
  color: var(--white);
}

@media (max-width: 1199px) {
  .footer-section-2 .footer-lets-text .lets-title .theme-btn-main {
    position: static;
    margin-top: 30px;
  }
}

.footer-section-2 .footer-lets-text h2 {
  color: var(--white);
  font-size: 100px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: -3.079px;
}

@media (max-width: 1199px) {
  .footer-section-2 .footer-lets-text h2 {
    font-size: 80px;
  }
}

@media (max-width: 767px) {
  .footer-section-2 .footer-lets-text h2 {
    font-size: 75px;
  }

  .footer-section-2 .footer-lets-text h2 br {
    display: none;
  }
}

@media (max-width: 575px) {
  .footer-section-2 .footer-lets-text h2 {
    font-size: 55px;
  }
}

.footer-section-2 .footer-lets-text .text {
  padding-right: 130px;
}

@media (max-width: 1399px) {
  .footer-section-2 .footer-lets-text .text {
    padding-right: 0;
  }
}

.footer-section-2 .footer-lets-text .text .social-icon {
  gap: 8px;
  margin-top: 30px;
}

.footer-section-2 .footer-lets-text .text .social-icon a {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background-color: rgba(75, 67, 67, 0.4);
  color: var(--white);
  font-size: 14px;
  text-align: center;
}

.footer-section-2 .footer-lets-text .text .social-icon a:hover {
  background-color: var(--theme);
}

.footer-section-2 .footer-lets-text p {
  color: #B1B1B1;
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 155.556%;
  letter-spacing: -1px;
  max-width: 270px;
}

.footer-section-2 .footer-area {
  margin: 0 30px;
  border-radius: 16px;
  position: relative;
}

@media (max-width: 1399px) {
  .footer-section-2 .footer-area {
    margin: 0 25px;
  }
}

@media (max-width: 1199px) {
  .footer-section-2 .footer-area {
    margin: 0 20px;
  }
}

.footer-section-2 .footer-area .footer-right-image {
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 1899px) {
  .footer-section-2 .footer-area .footer-right-image {
    display: none;
  }
}

.footer-section-3 {
  padding-bottom: 90px;
}

@media (max-width: 1600px) {
  .footer-section-3 {
    padding-bottom: 35px;
  }
}

@media (max-width: 1399px) {
  .footer-section-3 {
    padding-bottom: 25px;
  }
}

@media (max-width: 1199px) {
  .footer-section-3 {
    padding-bottom: 20px;
  }
}

.footer-area-3 {
  background-color: #F0F4FF;
  border-radius: 20px;
  margin: 60px;
  margin-bottom: 0;
  position: relative;
}

@media (max-width: 1600px) {
  .footer-area-3 {
    margin: 35px;
    margin-top: 60px;
  }
}

@media (max-width: 1399px) {
  .footer-area-3 {
    margin: 25px;
    margin-top: 60px;
  }
}

@media (max-width: 1199px) {
  .footer-area-3 {
    margin: 0 20px;
    margin-top: 60px;
  }
}

.footer-area-3::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50.7%;
  height: 100%;
  width: 1px;
  background: rgba(37, 99, 235, 0.08);
  content: "";
}

@media (max-width: 1199px) {
  .footer-area-3::before {
    display: none;
  }
}

.footer-widget-wrapper-5 {
  position: relative;
  z-index: 9;
  padding: 120px 0 0;
}

@media (max-width: 991px) {
  .footer-widget-wrapper-5 {
    padding: 80px 0 0;
  }
}

.footer-widget-wrapper-5 .footer-left-item {
  overflow: hidden;
  position: relative;
  z-index: 99;
}

@media (max-width: 991px) {
  .footer-widget-wrapper-5 .footer-left-item {
    margin-bottom: 40px;
  }
}

.footer-widget-wrapper-5 .footer-left-item h2 {
  color: #272727;
  font-size: 48px;
  font-weight: 600;
  line-height: 120.833%;
  letter-spacing: -2px;
  max-width: 590px;
}

.footer-widget-wrapper-5 .footer-left-item h2 span {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
}

@media (max-width: 1199px) {
  .footer-widget-wrapper-5 .footer-left-item h2 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .footer-widget-wrapper-5 .footer-left-item h2 {
    font-size: 38px;
  }
}

@media (max-width: 575px) {
  .footer-widget-wrapper-5 .footer-left-item h2 {
    font-size: 34px;
  }
}

@media (max-width: 470px) {
  .footer-widget-wrapper-5 .footer-left-item h2 {
    font-size: 28px;
  }
}

.footer-widget-wrapper-5 .footer-left-item form {
  position: relative;
  margin-top: 25px;
  max-width: 580px;
  width: 100%;
}

.footer-widget-wrapper-5 .footer-left-item form input {
  width: 100%;
  border: none;
  background-color: #110000;
  padding: 22px 30px;
  border-radius: 100px;
  line-height: 1;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--text);
  padding-right: 70px;
}

.footer-widget-wrapper-5 .footer-left-item form input::placeholder {
  color: var(--text);
}

.footer-widget-wrapper-5 .footer-left-item form .email-btn {
  background: var(--theme);
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  border-radius: 50%;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: 6px;
}

.footer-widget-wrapper-5 .footer-left-item form .email-btn:hover {
  background-color: var(--theme);
}

.footer-widget-wrapper-5 .footer-left-item ul {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 135px;
}

@media (max-width: 1199px) {
  .footer-widget-wrapper-5 .footer-left-item ul {
    margin-top: 30px;
    flex-wrap: wrap;
  }
}

.footer-widget-wrapper-5 .footer-left-item ul li {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  font-family: "Urbanist", sans-serif;
}

.footer-widget-wrapper-5 .footer-left-item ul li a {
  color: #111827;
}

.footer-widget-wrapper-5 .footer-right-item {
  position: relative;
  padding-bottom: 80px;
  padding-left: 100px;
}

.footer-widget-wrapper-5 .footer-right-item::before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  width: 1000%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}

@media (max-width: 1199px) {
  .footer-widget-wrapper-5 .footer-right-item {
    padding-left: 0;
  }
}

.footer-widget-wrapper-5 .footer-right-item .footer-header-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-bottom: 60px;
  margin-bottom: 75px;
}

@media (max-width: 1199px) {
  .footer-widget-wrapper-5 .footer-right-item .footer-header-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.footer-widget-wrapper-5 .footer-right-item .footer-header-item::before {
  position: absolute;
  bottom: 0;
  left: -100px;
  right: 0;
  content: "";
  width: 1000%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}

.footer-widget-wrapper-5 .footer-right-item .footer-header-item p {
  color: #111827;
  max-width: 270px;
  font-size: 16px;
}

.footer-widget-wrapper-5 .footer-right-item .footer-widget-items .widget-head {
  margin-bottom: 30px;
}

.footer-widget-wrapper-5 .footer-right-item .footer-widget-items .widget-head h3 {
  color: #111827;
  font-size: 20px;
  font-weight: 700;
}

.footer-widget-wrapper-5 .footer-right-item .footer-widget-items .gt-list-area li {
  transition: all 0.4s ease-in-out;
  font-size: 16px;
  font-weight: 500;
  font-family: "Urbanist", sans-serif;
}

.footer-widget-wrapper-5 .footer-right-item .footer-widget-items .gt-list-area li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-widget-wrapper-5 .footer-right-item .footer-widget-items .gt-list-area li a {
  color: #111827;
}

.footer-widget-wrapper-5 .footer-right-item .footer-widget-items .gt-list-area li:hover {
  margin-left: 5px;
}

.footer-widget-wrapper-5 .footer-right-item .footer-widget-items .gt-list-area li:hover a {
  color: var(--theme);
}

.footer-widget-wrapper-5 .footer-right-item .social-icon {
  gap: 6px;
}

@media (max-width: 1199px) {
  .footer-widget-wrapper-5 .footer-right-item .social-icon {
    display: flex !important;
  }
}

.footer-widget-wrapper-5 .footer-right-item .social-icon a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 16px;
  border-radius: 50%;
  background-color: transparent;
  color: #111827;
  border: 1px solid rgba(37, 99, 235, 0.06);
}

.footer-widget-wrapper-5 .footer-right-item .social-icon a:hover {
  background-color: var(--theme);
  color: var(--header);
}

.footer-bottom-5 .footer-bottom-wrapper-5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
}

@media (max-width: 767px) {
  .footer-bottom-5 .footer-bottom-wrapper-5 {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
}

.footer-bottom-5 .footer-bottom-wrapper-5 p {
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #111827;
}

.footer-bottom-5 .footer-bottom-wrapper-5 p b {
  color: #111827;
  font-weight: 500;
}

.footer-bottom-5 .footer-bottom-wrapper-5 .footer-list {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom-5 .footer-bottom-wrapper-5 .footer-list li {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.footer-bottom-5 .footer-bottom-wrapper-5 .footer-list li .dots {
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #111827;
  display: inline-block;
}

.footer-bottom-5 .footer-bottom-wrapper-5 .footer-list li a {
  color: #111827;
}

.footer-bottom-5 .footer-bottom-wrapper-5 .footer-list li a:hover {
  color: var(--theme);
}

.footer-section-4 {
  position: relative;
}

.footer-section-4 .gt-line-shape-animation {
  height: 280px;
  position: absolute;
  bottom: -130px;
  left: 0;
  right: 0;
  z-index: -1;
}

.footer-section-4 .container {
  max-width: 1631px;
}

.footer-section-4 .footer-top-wrapper-4 {
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
  padding-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .footer-section-4 .footer-top-wrapper-4 {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.footer-section-4 .footer-top-wrapper-4 .footer-left p {
  font-size: 16px;
  margin-top: 27px;
}

.footer-section-4 .footer-top-wrapper-4 .footer-left p b {
  color: var(--theme);
  font-weight: 400;
}

.footer-section-4 .footer-top-wrapper-4 .content {
  display: flex;
  align-items: end;
  gap: 100px;
}

@media (max-width: 991px) {
  .footer-section-4 .footer-top-wrapper-4 .content {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.footer-section-4 .footer-top-wrapper-4 .content .title {
  font-size: 48px;
  font-weight: 400;
}

@media (max-width: 991px) {
  .footer-section-4 .footer-top-wrapper-4 .content .title {
    font-size: 42px;
  }
}

@media (max-width: 470px) {
  .footer-section-4 .footer-top-wrapper-4 .content .title {
    font-size: 38px;
  }
}

.footer-section-4 .footer-top-wrapper-4 .content .title span {
  font-family: "Instrument Serif", serif;
  font-style: italic;
}

.footer-section-4 .footer-top-wrapper-4 .content .theme-btn-main {
  background-color: var(--white);
}

.footer-section-4 .footer-top-wrapper-4 .content .theme-btn-main .theme-btn {
  color: #111827;
}

.footer-section-4 .footer-top-wrapper-4 .content .theme-btn-main .theme-btn-arrow-left,
.footer-section-4 .footer-top-wrapper-4 .content .theme-btn-main .theme-btn-arrow-right {
  background-color: var(--theme);
  color: var(--white);
}

.footer-widget-wrapper-4 {
  padding: 60px 0 150px;
}

@media (max-width: 575px) {
  .footer-widget-wrapper-4 {
    padding-bottom: 50px;
  }
}

.footer-widget-wrapper-4 .footer-content {
  max-width: 535px;
}

.footer-widget-wrapper-4 .footer-content .contact-details-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 575px) {
  .footer-widget-wrapper-4 .footer-content .contact-details-items {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: start;
  }
}

.footer-widget-wrapper-4 .footer-content .contact-details-items .content span {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  display: inline-block;
  margin-bottom: 10px;
}

.footer-widget-wrapper-4 .footer-content .contact-details-items .content p {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}

.footer-widget-wrapper-4 .footer-content form {
  position: relative;
  margin-top: 38px;
}

.footer-widget-wrapper-4 .footer-content form input {
  width: 100%;
  border: 1px solid rgba(37, 99, 235, 0.15);
  background-color: transparent;
  padding: 22px 30px;
  border-radius: 100px;
  line-height: 1;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--text);
  padding-right: 70px;
}

.footer-widget-wrapper-4 .footer-content form input::placeholder {
  color: var(--text);
}

.footer-widget-wrapper-4 .footer-content form .email-btn {
  background: var(--theme);
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  border-radius: 50%;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: 6px;
}

.footer-widget-wrapper-4 .footer-content form .email-btn:hover {
  background-color: var(--theme);
}

.footer-widget-wrapper-4 .footer-widget-items .widget-head {
  margin-bottom: 18px;
}

.footer-widget-wrapper-4 .footer-widget-items .widget-head h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.footer-widget-wrapper-4 .footer-widget-items .gt-list-area li {
  transition: all 0.4s ease-in-out;
  font-size: 16px;
  font-weight: 500;
  font-family: "Urbanist", sans-serif;
}

.footer-widget-wrapper-4 .footer-widget-items .gt-list-area li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-widget-wrapper-4 .footer-widget-items .gt-list-area li a {
  color: #fff;
}

.footer-widget-wrapper-4 .footer-widget-items .gt-list-area li:hover {
  margin-left: 5px;
}

.footer-widget-wrapper-4 .footer-widget-items .gt-list-area li:hover a {
  color: var(--theme);
}

.footer-widget-wrapper-4 .gt-list-wrap {
  display: flex;
  align-items: center;
  gap: 130px;
}

@media (max-width: 1399px) {
  .footer-widget-wrapper-4 .gt-list-wrap {
    gap: 80px;
  }
}

.footer-widget-wrapper-4 .footer-contact ul li:not(:last-child) {
  margin-bottom: 20px;
}

.footer-widget-wrapper-4 .footer-contact ul li a {
  display: flex;
  align-items: center;
  gap: 16px;
  font-style: italic;
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }

  .section-title br {
    display: none;
  }
}

.section-title .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 400;
  font-family: "Instrument Serif", serif;
  color: var(--white);
  font-style: italic;
}

.section-title h2 {
  color: var(--header);
}

.section-title h2 .style-font {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
}

.section-title h2 .style-color {
  color: #6B7280;
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .section-title-area {
    margin-bottom: 0;
  }

  .section-title-area br {
    display: none;
  }
}

.section-title-area .section-title {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.section-title-2 {
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .section-title-2 {
    margin-bottom: 0;
  }

  .section-title-2 br {
    display: none;
  }
}

.section-title-2 .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title-2 .title {
  font-size: 100px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 100%;
}

@media (max-width: 1399px) {
  .section-title-2 .title {
    font-size: 80px;
  }
}

@media (max-width: 1199px) {
  .section-title-2 .title {
    font-size: 65px;
  }
}

@media (max-width: 991px) {
  .section-title-2 .title {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .section-title-2 .title {
    font-size: 42px;
  }
}

@media (max-width: 470px) {
  .section-title-2 .title {
    font-size: 38px;
  }
}

@media (max-width: 500px) {
  .section-title-2 .title {
    font-size: 32px;
  }
}

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

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

.section-bg-2 {
  background-color: #EBF0FF !important;
}

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

.section-padding {
  padding: 120px 0;
}

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

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

.section-padding-2 {
  padding: 60px 0;
}

/*---------------------------------------
05. Sections
---------------------------------------*/
.hero-1 {
  padding: 250px 0 30px;
  padding-left: 150px;
  padding-right: 65px;
  position: relative;
  border-bottom: 1px solid rgba(37, 99, 235, 0.06);
  border-top: none;
  background: #ffffff;
  overflow: hidden;
}

.hero-1 .hero-line {
  position: absolute;
  top: 10.2%;
  bottom: 0;
  right: 30%;
}

@media (max-width: 1899px) {
  .hero-1 .hero-line {
    display: none;
  }
}

.hero-1 .hero-line img {
  height: 100%;
}

@media (max-width: 1899px) {
  .hero-1 {
    padding-left: 60px;
  }
}

@media (max-width: 1399px) {
  .hero-1 {
    padding: 180px 0 30px;
    padding-left: 60px;
    padding-right: 50px;
  }
}

@media (max-width: 1199px) {
  .hero-1 {
    padding: 200px 0 30px;
    padding-left: 90px;
    padding-right: 50px;
  }
}

@media (max-width: 991px) {
  .hero-1 {
    padding: 190px 0 30px;
    padding-left: 50px;
    padding-right: 30px;
  }
}

@media (max-width: 767px) {
  .hero-1 {
    padding: 170px 0 30px;
    padding-left: 30px;
    padding-right: 20px;
  }
}

@media (max-width: 575px) {
  .hero-1 {
    padding: 150px 0 30px;
    padding-left: 20px;
    padding-right: 15px;
    padding-top: 150px;
  }
}

.hero-1 .hero-circle {
  position: absolute;
  top: 16%;
  left: 42%;
  z-index: 1;
  opacity: 0.55;
  mix-blend-mode: normal;
}

@media (max-width: 1199px) {
  .hero-1 .hero-circle {
    left: 10%;
    opacity: 0.5;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-circle {
    display: none;
  }
}

.hero-1 .hero-circle::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 100px;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.22) 0%, rgba(37, 99, 235, 0.10) 40%, rgba(37, 99, 235, 0.03) 70%, transparent 100%);
  border-radius: 50%;
  z-index: -1;
  filter: blur(18px);
}

.hero-1 .hero-circle img {
  animation: cir36 20s linear infinite;
  filter: hue-rotate(210deg) saturate(0.4) brightness(2.2) contrast(0.6);
}

.hero-1 .hero-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 145px;
  margin-top: 170px;
}

@media (max-width: 1399px) {
  .hero-1 .hero-list {
    padding-right: 50px;
  }
}

@media (max-width: 1199px) {
  .hero-1 .hero-list {
    padding-right: 30px;
    margin-top: 100px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-list {
    margin-top: 50px;
  }
}

.hero-1 .hero-list ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 767px) {
  .hero-1 .hero-list ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}

.hero-1 .hero-list ul li {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6B7280;
  transition: all 0.4s ease-in-out;
}

.hero-1 .hero-list ul li:hover {
  color: #2563EB;
}

.hero-1 .hero-list ul li a {
  color: #6B7280;
}

.hero-1 .hero-list ul li a:hover {
  color: #2563EB;
}

@media (max-width: 1199px) {
  .hero-1 .hero-content {
    text-align: center;
  }
}

.hero-1 .hero-content p {
  font-size: 18px;
  font-weight: 500;
  color: #6B7280;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.hero-1 .hero-content h1 {
  letter-spacing: -0.02em;
}

@media (max-width: 1199px) {
  .hero-1 .hero-content h1 {
    line-height: 100%;
  }
}

.hero-1 .hero-content h1 span {
  color: var(--theme);
  font-family: "Urbanist", sans-serif;
  font-style: normal;
  font-size: inherit;
  letter-spacing: -0.03em;
  margin-bottom: 0;
  display: block;
  font-weight: 800;
  background: linear-gradient(135deg, #2563EB, #3B82F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 1199px) {
  .hero-1 .hero-content h1 span {
    margin-bottom: 0;
  }
}

.hero-1 .hero-content .hero-button {
  display: flex;
  align-items: center;
  margin-top: 35px;
  gap: 20px;
}

@media (max-width: 1199px) {
  .hero-1 .hero-content .hero-button {
    justify-content: center;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-content .hero-button {
    text-align: center;
    flex-wrap: wrap;
  }
}

.hero-1 .hero-right-items {
  max-width: 100%;
  margin-left: auto;
  padding-top: 40px;
}

@media (max-width: 1199px) {
  .hero-1 .hero-right-items {
    margin: 0 auto;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-right-items {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .hero-1 .hero-right-items {
    margin-top: 20px;
  }
}

.hero-1 .hero-right-items .hero-small-slider {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-end;
}

.hero-1 .hero-right-items .small-thumb {
  max-width: 130px;
  height: 220px;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15), 0 4px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: visible;
}

.hero-1 .hero-right-items .small-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.hero-1 .hero-right-items .small-thumb.active {
  max-width: 240px;
}

.hero-1 .hero-right-items .text {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: 385px;
  margin-top: 130px;
  line-height: 150%;
}

@media (max-width: 1199px) {
  .hero-1 .hero-right-items .text {
    margin-top: 70px;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-right-items .text {
    margin-top: 40px;
  }
}

.hero-1 .hero-right-items .text b {
  font-weight: 500;
  color: #111827;
}

.hero-1 .hero-right-items .sign {
  margin-top: 30px;
}

.hero-section-2 .brand-section {
  padding: 30px 17px;
}

.hero-section-2 .brand-section .brand-box-1 {
  background: rgba(37, 99, 235, 0.06);
}

.hero-2 {
  padding: 200px 50px 115px;
  padding-right: 120px;
  position: relative;
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

@media (max-width: 1600px) {
  .hero-2 {
    padding: 180px 50px 115px;
  }
}

@media (max-width: 1399px) {
  .hero-2 {
    padding: 150px 40px 115px;
  }
}

.hero-2 .hero-line {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 33%;
}

@media (max-width: 1899px) {
  .hero-2 .hero-line {
    right: 37%;
  }
}

@media (max-width: 1600px) {
  .hero-2 .hero-line {
    right: 40%;
  }
}

@media (max-width: 1399px) {
  .hero-2 .hero-line {
    display: none;
  }
}

.hero-2 .hero-line img {
  height: 100%;
}

.hero-2 .hero-content h1 {
  font-size: 200px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

@media (max-width: 1899px) {
  .hero-2 .hero-content h1 {
    font-size: 160px;
  }
}

@media (max-width: 1600px) {
  .hero-2 .hero-content h1 {
    font-size: 120px;
  }
}

@media (max-width: 1399px) {
  .hero-2 .hero-content h1 {
    font-size: 130px;
  }
}

@media screen and (max-width: 1300px) {
  .hero-2 .hero-content h1 {
    font-size: 110px;
  }
}

@media (max-width: 1199px) {
  .hero-2 .hero-content h1 {
    font-size: 100px;
  }
}

@media (max-width: 991px) {
  .hero-2 .hero-content h1 {
    font-size: 80px;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .hero-2 .hero-content h1 {
    font-size: 60px;
  }
}

@media (max-width: 575px) {
  .hero-2 .hero-content h1 {
    font-size: 45px;
  }
}

@media (max-width: 470px) {
  .hero-2 .hero-content h1 {
    font-size: 38px;
  }
}

.hero-2 .hero-content h1 .text-1 {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1199px) {
  .hero-2 .hero-content h1 .text-1 {
    display: initial;
  }
}

@media (max-width: 1199px) {
  .hero-2 .hero-content h1 .text-1 img {
    display: none;
  }
}

.hero-2 .hero-content h1 .text-2 {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1199px) {
  .hero-2 .hero-content h1 .text-2 {
    display: initial;
  }
}

.hero-2 .hero-content h1 .text-2 img {
  border-radius: 100px;
}

@media (max-width: 1600px) {
  .hero-2 .hero-content h1 .text-2 img {
    width: 250px;
  }
}

@media screen and (max-width: 1300px) {
  .hero-2 .hero-content h1 .text-2 img {
    width: 220px;
  }
}

@media (max-width: 1199px) {
  .hero-2 .hero-content h1 .text-2 img {
    display: none;
  }
}

.hero-2 .hero-content h1 .text-3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1199px) {
  .hero-2 .hero-content h1 .text-3 {
    display: initial;
  }
}

.hero-2 .hero-content h1 .text-3 img {
  border-radius: 100px;
}

@media (max-width: 1199px) {
  .hero-2 .hero-content h1 .text-3 img {
    display: none;
  }
}

.hero-2 .hero-right-items {
  max-width: 425px;
  margin-left: auto;
}

@media (max-width: 1199px) {
  .hero-2 .hero-right-items {
    margin-left: initial;
  }
}

@media (max-width: 991px) {
  .hero-2 .hero-right-items {
    margin: 40px auto 0;
    text-align: center;
  }
}

.hero-2 .hero-right-items .text {
  color: var(--white);
  margin-bottom: 30px;
}

.hero-2 .hero-right-items .sign {
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
  padding-bottom: 50px;
}

.hero-2 .hero-right-items .hero-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 42px;
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
  padding-bottom: 48px;
}

@media (max-width: 767px) {
  .hero-2 .hero-right-items .hero-counter {
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
  }
}

.hero-2 .hero-right-items .hero-counter .counter-text p {
  color: var(--white);
  margin-top: 5px;
}

.hero-2 .hero-right-items .hero-counter .counter-text p br {
  display: block;
}

.hero-2 .hero-right-items .hero-list {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 47px;
}

@media (max-width: 991px) {
  .hero-2 .hero-right-items .hero-list {
    margin-top: 30px;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
}

.hero-2 .hero-right-items .hero-list ul li {
  text-transform: uppercase;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}

.hero-2 .hero-right-items .hero-list ul li:not(:last-child) {
  margin-bottom: 15px;
}

.hero-3 {
  padding: 60px 40px 60px;
  margin: 0 30px;
  border-radius: 20px;
  position: relative;
  z-index: 9;
  margin-top: 120px;
}

@media (max-width: 1600px) {
  .hero-3 {
    margin: 0 28px;
    padding-left: 28px;
    padding-right: 28px;
    margin-top: 120px;
  }
}

@media (max-width: 1399px) {
  .hero-3 {
    margin: 0 25px;
    padding-left: 25px;
    padding-right: 25px;
    margin-top: 110px;
  }
}

@media (max-width: 1199px) {
  .hero-3 {
    margin: 0 18px;
    padding-left: 18px;
    padding-right: 18px;
    margin-top: 82px;
  }
}

.hero-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, #101010 0%, rgba(255, 255, 255, 0) 55%);
  border-radius: 20px;
  z-index: -1;
}

.hero-3 .hero-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 767px) {
  .hero-3 .hero-list li {
    flex-wrap: wrap;
  }
}

.hero-3 .hero-list li:not(:last-child) {
  margin-bottom: 10px;
}

.hero-3 .hero-list li a {
  border: 1px solid rgba(37, 99, 235, 0.15);
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  color: var(--white);
  text-transform: uppercase;
  border-radius: 20px;
  padding: 9px 14px;
  line-height: 1;
  transition: all 0.4s ease-in-out;
}

.hero-3 .hero-list li a:hover {
  background-color: var(--theme);
  border-color: var(--theme);
}

.hero-3 .hero-list li:nth-of-type(2) {
  margin-left: 20px;
}

@media (max-width: 575px) {
  .hero-3 .hero-list li:nth-of-type(2) {
    margin-left: 0;
  }
}

.hero-3 .hero-title {
  font-size: 120px;
  letter-spacing: -0.01em;
  font-size: 120px;
  font-weight: 600;
  margin-top: 320px;
}

@media (max-width: 1399px) {
  .hero-3 .hero-title {
    font-size: 90px;
    margin-top: 280px;
  }
}

@media (max-width: 1199px) {
  .hero-3 .hero-title {
    font-size: 75px;
    margin-top: 250px;
  }
}

@media (max-width: 991px) {
  .hero-3 .hero-title {
    font-size: 65px;
    margin-top: 230px;
  }
}

@media (max-width: 767px) {
  .hero-3 .hero-title {
    font-size: 52px;
    margin-top: 190px;
  }
}

@media (max-width: 575px) {
  .hero-3 .hero-title {
    font-size: 40px;
    margin-top: 150px;
  }
}

.hero-3 .hero-title span {
  font-weight: 400;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  line-height: 110%;
}

.hero-3 .hero-info-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}

@media (max-width: 767px) {
  .hero-3 .hero-info-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.animation-infinite {
  animation: ShapeAnim 50s linear infinite;
  height: 280px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

@keyframes ShapeAnim {
  0% {
    background-position: top left;
  }

  100% {
    background-position: top left 3000px;
  }
}

.animation-infinite-rtl {
  animation: ShapeAnimRTL 50s linear infinite;
  height: 635px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
  background-size: cover;
}

@keyframes ShapeAnimRTL {
  0% {
    background-position: top right;
  }

  100% {
    background-position: top right 3000px;
  }
}

.hero-4 {
  padding: 150px 0 200px;
  position: relative;
}

@media (max-width: 1399px) {
  .hero-4 {
    padding-top: 180px;
  }
}

.hero-4 .rain {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero-4 .rain.back-row {
  display: none;
  z-index: 1;
  bottom: 60px;
  opacity: 0.5;
}

.hero-4 .back-row-toggle .rain.back-row {
  display: block;
}

.hero-4 .drop {
  position: absolute;
  bottom: 100%;
  width: 15px;
  height: 120px;
  pointer-events: none;
  animation: drop 0.5s linear infinite;
}

@keyframes drop {
  0% {
    transform: translateY(0vh);
  }

  75% {
    transform: translateY(90vh);
  }

  100% {
    transform: translateY(90vh);
  }
}

.hero-4 .stem {
  width: 1px;
  height: 60%;
  margin-left: 7px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.25));
  animation: stem 0.5s linear infinite;
}

@keyframes stem {
  0% {
    opacity: 1;
  }

  65% {
    opacity: 1;
  }

  75% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.hero-4 .splat-toggle .splat {
  display: block;
}

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

  80% {
    opacity: 1;
    transform: scale(0);
  }

  90% {
    opacity: 0.5;
    transform: scale(1);
  }

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

.hero-4 .toggles {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.hero-4 .toggle {
  position: absolute;
  left: 20px;
  width: 50px;
  height: 50px;
  line-height: 51px;
  box-sizing: border-box;
  text-align: center;
  font-family: sans-serif;
  font-size: 10px;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.2);
  color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.hero-4 .toggle:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

.hero-4 .toggle:active {
  background-color: rgba(255, 255, 255, 0.3);
}

.hero-4 .toggle.active {
  background-color: rgba(255, 255, 255, 0.4);
}

.hero-4 .splat-toggle {
  top: 20px;
}

.hero-4 .back-row-toggle {
  top: 90px;
  line-height: 12px;
  padding-top: 14px;
}

.hero-4 .single-toggle {
  top: 160px;
}

.hero-4 .single-toggle .drop {
  display: none;
}

.hero-4 .single-toggle .drop:nth-child(10) {
  display: block;
}

.hero-4 .line-2 {
  height: 635px;
  position: absolute;
  top: -70px;
  left: 0;
  right: 0;
  z-index: -1;
}

.hero-4 .gt-line-shape-animation {
  height: 280px;
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  z-index: -1;
}

.hero-4 .container {
  max-width: 1650px;
}

.hero-4 .hero-content {
  position: relative;
  z-index: 99;
}

@media (max-width: 991px) {
  .hero-4 .hero-content {
    text-align: center;
  }
}

.hero-4 .hero-content .hero-sub {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  color: #6B7280;
  letter-spacing: 10px;
  margin-bottom: 15px;
}

@media (max-width: 470px) {
  .hero-4 .hero-content .hero-sub {
    font-size: 14px;
  }
}

.hero-4 .hero-content .title {
  letter-spacing: -0.01em;
  font-size: 110px;
  line-height: 100%;
}

@media (max-width: 1600px) {
  .hero-4 .hero-content .title {
    font-size: 88px;
  }
}

@media (max-width: 1399px) {
  .hero-4 .hero-content .title {
    font-size: 78px;
  }
}

@media (max-width: 1199px) {
  .hero-4 .hero-content .title {
    font-size: 65px;
  }
}

@media (max-width: 991px) {
  .hero-4 .hero-content .title {
    font-size: 78px;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .hero-4 .hero-content .title {
    font-size: 62px;
  }
}

@media (max-width: 575px) {
  .hero-4 .hero-content .title {
    font-size: 52px;
  }
}

@media (max-width: 470px) {
  .hero-4 .hero-content .title {
    font-size: 40px;
  }
}

.hero-4 .hero-content .title b {
  font-style: italic;
  font-weight: 400;
}

.hero-4 .hero-content p {
  font-size: 20px;
  font-weight: 600;
  max-width: 595px;
  margin-top: 40px;
}

@media (max-width: 1199px) {
  .hero-4 .hero-content p {
    font-size: 17px;
    margin-top: 32px;
  }
}

@media (max-width: 991px) {
  .hero-4 .hero-content p {
    margin: 30px auto 0;
  }
}

@media (max-width: 470px) {
  .hero-4 .hero-content p {
    font-size: 15px;
    margin-top: 25px;
  }
}

.hero-4 .hero-content p b {
  font-weight: 400;
  color: var(--white);
}

.hero-4 .hero-content .hero-button {
  display: flex;
  align-items: center;
  margin-top: 50px;
  gap: 20px;
}

@media (max-width: 991px) {
  .hero-4 .hero-content .hero-button {
    margin-top: 40px;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero-4 .hero-content .hero-button {
    flex-wrap: wrap;
  }
}

.hero-4 .hero-image {
  margin-left: -270px;
  position: relative;
  z-index: 99;
}

@media (max-width: 1399px) {
  .hero-4 .hero-image {
    margin-left: -100px;
  }

  .hero-4 .hero-image img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 991px) {
  .hero-4 .hero-image {
    margin-left: 0;
    max-width: 500px;
    margin-top: 80px;
    margin: 0 auto;
  }
}

.hero-4 .hero-image .bg-circle {
  position: absolute;
  top: -40px;
  right: 0;
  z-index: -1;
}

@media (max-width: 991px) {
  .hero-4 .hero-image .bg-circle {
    top: 0;
  }
}

.about-wrapper .about-image {
  max-width: 660px;
  position: relative;
}

.about-wrapper .about-image .about-circle {
  position: absolute;
  bottom: -40px;
  left: -20%;
  z-index: -1;
  animation: cir36 10s linear infinite;
}

@media (max-width: 1199px) {
  .about-wrapper .about-image .about-circle {
    display: none;
  }
}

.about-wrapper .about-image img {
  width: 100%;
  height: 100%;
}

.about-wrapper .about-content .text {
  margin-top: 25px;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 49px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-content .text {
    font-size: 18px;
  }
}

@media (max-width: 1199px) {
  .about-wrapper .about-content .text {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .about-wrapper .about-content .text {
    font-size: 16px;
  }
}

.about-wrapper .about-content .about-counter-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: end;
}

@media (max-width: 1199px) {
  .about-wrapper .about-content .about-counter-items {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }
}

.about-wrapper .about-content .about-counter-items .content h2 {
  font-size: 120px;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.about-wrapper .about-content .about-counter-items .content h2 .plus {
  font-weight: 300;
  font-size: 40px;
}

.about-wrapper .about-content .about-counter-items .about-small {
  border-radius: 20px;
}

.about-wrapper .about-content .about-counter-items .about-small img {
  border-radius: 20px;
}

.about-wrapper-2 .section-title-area {
  gap: 70px;
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
  padding-bottom: 60px;
  margin-bottom: 60px;
}

.about-wrapper-2 .section-title-area .about-info p {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-top: 20px;
}

.about-wrapper-2 .section-title-area .about-info p b {
  font-weight: 700;
  color: var(--white);
}

.about-wrapper-2 .section-title-area h2 {
  letter-spacing: -0.02em;
}

.about-wrapper-2 .about-top-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .about-wrapper-2 .about-top-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.about-wrapper-2 .about-top-items .about-counter h2 {
  font-size: 120px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-wrapper-2 .about-top-items .about-counter h2 .plus {
  font-size: 40px;
  font-weight: 300;
}

.about-wrapper-2 .about-top-items .content-box {
  max-width: 690px;
}

.about-wrapper-2 .about-top-items .content-box h2 {
  font-family: "Instrument Serif", serif;
  font-size: 36px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 14px;
}

.about-wrapper-2 .about-top-items .content-box .theme-btn-main {
  margin-top: 50px;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .about-top-items .about-vec {
    display: none;
  }
}

.about-wrapper-2 .about-video-banner {
  border-radius: 20px;
  margin-top: 60px;
  position: relative;
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-video-banner {
    height: 550px;
  }
}

.about-wrapper-2 .about-video-banner img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.about-wrapper-2 .about-video-banner .video-circle {
  width: 130px;
  height: 130px;
  line-height: 130px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.06);
  text-align: center;
  z-index: 2;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(20px);
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-video-banner .video-circle {
    display: none;
  }
}

.about-wrapper-2 .about-video-banner .video-circle .text-circle {
  animation: cir36 10s linear infinite;
}

.about-wrapper-2 .about-video-banner .video-circle .text-circle img {
  width: initial;
  height: initial;
}

.about-wrapper-2 .about-video-banner .video-circle .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  color: var(--theme);
  text-align: center;
  width: 58.5px;
  height: 58.5px;
  line-height: 58.5px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  z-index: 9;
  font-size: 16px;
}

.about-wrapper-2 .about-video-banner .video-circle .video-btn:hover {
  background-color: var(--theme);
  color: var(--white);
}

.about-wrapper-2 .about-video-banner .video-circle img {
  margin-left: 0;
}

.about-wrapper-2 .about-video-banner .incrase-box {
  background-color: var(--theme);
  padding: 30px;
  position: absolute;
  bottom: 40px;
  left: 40px;
  border-radius: 8px;
  padding-top: 22px;
  max-width: 336px;
  width: 100%;
}

@media (max-width: 575px) {
  .about-wrapper-2 .about-video-banner .incrase-box {
    display: none;
  }
}

.about-wrapper-2 .about-video-banner .incrase-box span {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  display: inline-block;
}

.about-wrapper-2 .about-video-banner .incrase-box p {
  color: var(--white);
  font-size: 100px;
  font-weight: 600;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: -8px;
  margin-top: 40px;
}

.about-wrapper-3 {
  margin-bottom: 60px;
}

.about-wrapper-3 .about-image {
  border-radius: 20px;
  max-width: 658px;
  position: relative;
}

.about-wrapper-3 .about-image .video-circle {
  width: 124px;
  height: 124px;
  line-height: 124px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.06);
  text-align: center;
  z-index: 2;
  position: absolute;
  left: 35px;
  bottom: 35px;
  backdrop-filter: blur(20px);
}

@media (max-width: 1199px) {
  .about-wrapper-3 .about-image .video-circle {
    right: initial;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.about-wrapper-3 .about-image .video-circle .text-circle {
  animation: cir36 10s linear infinite;
}

.about-wrapper-3 .about-image .video-circle .text-circle img {
  width: initial;
  height: initial;
}

.about-wrapper-3 .about-image .video-circle .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  z-index: 9;
  font-size: 16px;
}

.about-wrapper-3 .about-image .video-circle .video-btn:hover {
  background-color: var(--white);
  color: var(--body);
}

.about-wrapper-3 .about-image .video-circle img {
  margin-left: 0;
}

.about-wrapper-3 .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.about-wrapper-3 .about-content {
  margin-left: 30px;
}

@media (max-width: 1199px) {
  .about-wrapper-3 .about-content {
    margin-left: 0;
  }
}

.about-wrapper-3 .about-content .section-title h2 {
  font-size: 42px;
}

@media (max-width: 575px) {
  .about-wrapper-3 .about-content .section-title h2 {
    font-size: 36px;
  }
}

@media (max-width: 470px) {
  .about-wrapper-3 .about-content .section-title h2 {
    font-size: 28px;
  }
}

.about-wrapper-3 .about-content .text {
  font-size: 16px;
  margin-top: 20px;
}

.about-wrapper-3 .about-content .about-list-items {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .about-wrapper-3 .about-content .about-list-items {
    flex-wrap: wrap;
    justify-content: start;
    gap: 30px;
  }
}

.about-wrapper-3 .about-content .about-list-items .list-items ul {
  margin-bottom: 50px;
}

.about-wrapper-3 .about-content .about-list-items .list-items ul li {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-wrapper-3 .about-content .about-list-items .list-items ul li:not(:last-child) {
  margin-bottom: 10px;
}

.about-wrapper-3 .about-content .about-list-items .about-counter-items {
  background-color: #F0F4FF;
  padding: 35px 20px;
  border-radius: 8px;
  max-width: 220px;
  width: 100%;
}

.about-wrapper-3 .about-content .about-list-items .about-counter-items p {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.about-wrapper-3 .about-content .about-list-items .about-counter-items h2 {
  color: var(--theme);
  font-size: 90px;
  font-weight: 700;
  line-height: 1;
}

.about-wrapper-3 .about-content .about-list-items .about-counter-items .plus {
  font-weight: 400;
  font-size: 44px;
  position: relative;
  top: -30px;
}

.about-video-banner-about-page {
  position: relative;
}

@media (max-width: 1199px) {
  .about-video-banner-about-page {
    height: 550px;
  }
}

.about-video-banner-about-page img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.about-video-banner-about-page .video-circle {
  width: 130px;
  height: 130px;
  line-height: 130px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.06);
  text-align: center;
  z-index: 2;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(20px);
}

@media (max-width: 1199px) {
  .about-video-banner-about-page .video-circle {
    display: none;
  }
}

.about-video-banner-about-page .video-circle .text-circle {
  animation: cir36 10s linear infinite;
}

.about-video-banner-about-page .video-circle .text-circle img {
  width: initial;
  height: initial;
}

.about-video-banner-about-page .video-circle .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  color: var(--theme);
  text-align: center;
  width: 58.5px;
  height: 58.5px;
  line-height: 58.5px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  z-index: 9;
  font-size: 16px;
}

.about-video-banner-about-page .video-circle .video-btn:hover {
  background-color: var(--theme);
  color: var(--white);
}

.about-video-banner-about-page .video-circle img {
  margin-left: 0;
}

.about-video-banner-about-page .incrase-box {
  background-color: var(--theme);
  padding: 30px;
  position: absolute;
  bottom: 40px;
  left: 240px;
  border-radius: 8px;
  padding-top: 22px;
  max-width: 336px;
  width: 100%;
}

@media (max-width: 1399px) {
  .about-video-banner-about-page .incrase-box {
    left: 50px;
  }
}

@media (max-width: 575px) {
  .about-video-banner-about-page .incrase-box {
    display: none;
  }
}

.about-video-banner-about-page .incrase-box span {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  display: inline-block;
}

.about-video-banner-about-page .incrase-box p {
  color: var(--white);
  font-size: 100px;
  font-weight: 600;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: -8px;
  margin-top: 40px;
}

.about-page-style-3 .section-title-area {
  border-bottom: none;
  padding-bottom: 40px;
  align-items: start;
}

.about-page-style-3 .section-title-area .section-title h2 {
  font-size: 45px;
}

@media (max-width: 1199px) {
  .about-page-style-3 .section-title-area .section-title h2 {
    font-size: 41px;
  }
}

@media (max-width: 767px) {
  .about-page-style-3 .section-title-area .section-title h2 {
    font-size: 39px;
  }
}

@media (max-width: 575px) {
  .about-page-style-3 .section-title-area .section-title h2 {
    font-size: 36px;
  }
}

.about-page-style-3 .section-title-area .section-title .sec-content {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: 50px;
}

@media (max-width: 1199px) {
  .about-page-style-3 .section-title-area .section-title .sec-content {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.about-page-style-3 .section-title-area .section-title .sec-content p {
  max-width: 810px;
}

@media (max-width: 1399px) {
  .about-page-style-3 .section-title-area .section-title .sec-content p {
    max-width: 600px;
  }
}

.choose-us-section {
  background-color: #272727;
  border-radius: 16px;
  margin: 0 30px;
}

@media (max-width: 1399px) {
  .choose-us-section {
    margin: 0 25px;
  }
}

@media (max-width: 1199px) {
  .choose-us-section {
    margin: 0 20px;
  }
}

.choose-us-section .about-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-top: 60px;
}

@media (max-width: 767px) {
  .choose-us-section .about-text {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
  }
}

.choose-us-section .about-text a {
  text-decoration: underline;
  text-transform: capitalize;
}

.choose-us-section .about-text a:hover {
  color: var(--theme);
}

.choose-us-section .section-title {
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .choose-us-section .section-title {
    margin-bottom: 30px;
  }
}

.counter-wrapper {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1199px) {
  .counter-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .counter-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .counter-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.counter-wrapper .counter-box {
  border-radius: 10px;
  padding: 30px;
  transition: all 0.4s ease-in-out;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

@media (max-width: 1399px) {
  .counter-wrapper .counter-box {
    padding: 25px;
  }
}

@media (max-width: 575px) {
  .counter-wrapper .counter-box {
    max-width: initial;
  }
}

.counter-wrapper .counter-box .text {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  display: inline-block;
}

.counter-wrapper .counter-box h2 {
  font-size: 72px;
  font-weight: 600;
  color: var(--theme);
  line-height: 1;
  margin-top: 50px;
}

@media (max-width: 1399px) {
  .counter-wrapper .counter-box h2 {
    font-size: 60px;
    margin-top: 25px;
  }
}

.counter-wrapper .counter-box p {
  font-size: 18px;
  margin-top: 15px;
}

.video-banner {
  border-radius: 20px;
  margin-top: 60px;
  position: relative;
}

@media (max-width: 1199px) {
  .video-banner {
    height: 500px;
  }
}

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

.video-banner .video-circle {
  width: 208px;
  height: 208px;
  line-height: 208px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.06);
  text-align: center;
  z-index: 2;
  position: absolute;
  right: 180px;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(20px);
}

@media (max-width: 991px) {
  .video-banner .video-circle {
    right: initial;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.video-banner .video-circle .text-circle {
  animation: cir36 10s linear infinite;
}

.video-banner .video-circle .text-circle img {
  width: initial;
  height: initial;
}

.video-banner .video-circle .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  width: 94px;
  height: 94px;
  line-height: 94px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  z-index: 9;
}

.video-banner .video-circle .video-btn:hover {
  background-color: var(--white);
  color: var(--body);
}

.video-banner .video-circle img {
  margin-left: 0;
}

.choose-us-section-2 {
  background: linear-gradient(91.27deg, #FAFBFB 31.78%, rgba(250, 251, 251, 0.7) 99.22%);
  border-radius: 20px;
  margin: 0 30px;
  padding: 35px;
}

@media (max-width: 1399px) {
  .choose-us-section-2 {
    margin: 0 25px;
  }
}

@media (max-width: 1199px) {
  .choose-us-section-2 {
    margin: 0 20px;
    padding: 28px;
  }
}

.choose-us-wrapper-2 {
  position: relative;
  z-index: 9;
}

.choose-us-wrapper-2 .choose-line {
  position: absolute;
  top: 0;
  bottom: -10%;
  right: -10%;
  opacity: 0.1;
  z-index: -1;
}

.choose-us-wrapper-2 .choose-line img {
  width: 100%;
  height: 100%;
}

.choose-us-wrapper-2 .choose-us-image {
  border-radius: 16px;
  border: 1px solid rgba(37, 99, 235, 0.08);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 30px;
  max-width: 634px;
}

@media (max-width: 1199px) {
  .choose-us-wrapper-2 .choose-us-image {
    max-width: initial;
  }

  .choose-us-wrapper-2 .choose-us-image img {
    max-width: 500px;
  }
}

.choose-us-wrapper-2 .choose-us-image img {
  animation: cir36 10s linear infinite;
  width: 100%;
  height: 100%;
}

.choose-us-wrapper-2 .choose-us-content .section-title .sub-title {
  color: var(--theme);
}

.choose-us-wrapper-2 .choose-us-content .section-title h2 {
  color: #111827;
  font-size: 48px;
  letter-spacing: -2px;
  font-weight: 500;
}

@media (max-width: 1600px) {
  .choose-us-wrapper-2 .choose-us-content .section-title h2 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .choose-us-wrapper-2 .choose-us-content .section-title h2 {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .choose-us-wrapper-2 .choose-us-content .section-title h2 {
    font-size: 30px;
  }
}

.choose-us-wrapper-2 .choose-us-content .theme-btn-main {
  margin-top: 30px;
}

.choose-us-wrapper-2 .choose-us-content .about-conter-items {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1399px) {
  .choose-us-wrapper-2 .choose-us-content .about-conter-items {
    margin-top: 30px;
  }
}

@media (max-width: 1199px) {
  .choose-us-wrapper-2 .choose-us-content .about-conter-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .choose-us-wrapper-2 .choose-us-content .about-conter-items {
    display: block;
  }
}

.choose-us-wrapper-2 .choose-us-content .about-conter-items .counter-box {
  max-width: 300px;
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1399px) {
  .choose-us-wrapper-2 .choose-us-content .about-conter-items .counter-box {
    padding: 25px;
  }
}

@media (max-width: 575px) {
  .choose-us-wrapper-2 .choose-us-content .about-conter-items .counter-box {
    margin-bottom: 25px;
    max-width: initial;
  }
}

.choose-us-wrapper-2 .choose-us-content .about-conter-items .counter-box .sub-text {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  color: #111827;
}

.choose-us-wrapper-2 .choose-us-content .about-conter-items .counter-box h2 {
  font-weight: 600;
  color: var(--theme);
  margin-top: 50px;
  line-height: 1;
}

@media (max-width: 1399px) {
  .choose-us-wrapper-2 .choose-us-content .about-conter-items .counter-box h2 {
    font-size: 60px;
    margin-top: 25px;
  }
}

.choose-us-wrapper-2 .choose-us-content .about-conter-items .counter-box p {
  font-size: 18px;
  color: #111827;
  margin-top: 15px;
}

.choose-us-wrapper-2 .choose-us-content .about-conter-items .about-vide-bg {
  position: relative;
  height: 270px;
  overflow: hidden;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .choose-us-wrapper-2 .choose-us-content .about-conter-items .about-vide-bg {
    flex-basis: 100%;
    width: 100%;
    height: 450px;
  }
}

@media (max-width: 575px) {
  .choose-us-wrapper-2 .choose-us-content .about-conter-items .about-vide-bg {
    height: 400px;
  }
}

.choose-us-wrapper-2 .choose-us-content .about-conter-items .about-vide-bg img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.choose-us-wrapper-2 .choose-us-content .about-conter-items .about-vide-bg:hover img {
  transform: scale(1.1) rotate(2deg);
}

.choose-us-wrapper-3 .about-left-items {
  max-width: 651px;
}

.choose-us-wrapper-3 .about-left-items .about-thumb {
  height: 488px;
  border-radius: 20px;
}

.choose-us-wrapper-3 .about-left-items .about-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.choose-us-wrapper-3 .about-left-items .about-bottom-content {
  background: #FFFDF5;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 30px;
  margin-top: 30px;
  border-radius: 20px;
}

@media (max-width: 575px) {
  .choose-us-wrapper-3 .about-left-items .about-bottom-content {
    flex-wrap: wrap;
    padding: 30px;
  }
}

.choose-us-wrapper-3 .about-left-items .about-bottom-content .about-counter {
  padding-top: 5px;
  padding-bottom: 10px;
}

.choose-us-wrapper-3 .about-left-items .about-bottom-content .about-counter .sub-text {
  background-color: var(--theme);
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--header);
  padding: 5px 8px;
  line-height: 1;
  border-radius: 17px;
  margin-bottom: 45px;
}

.choose-us-wrapper-3 .about-left-items .about-bottom-content .about-counter h2 {
  color: #111827;
  font-size: 48px;
  font-weight: 600;
}

.choose-us-wrapper-3 .about-left-items .about-bottom-content .about-counter p {
  font-weight: 500;
  color: #111827;
  font-family: "Urbanist", sans-serif;
  font-size: 15px;
}

.choose-us-wrapper-3 .about-left-items .about-bottom-content .about-line {
  width: 1px;
  height: 245px;
  background: #F0ECDF;
  display: inline-block;
}

@media (max-width: 575px) {
  .choose-us-wrapper-3 .about-left-items .about-bottom-content .about-line {
    display: none;
  }
}

.choose-us-wrapper-3 .about-left-items .about-bottom-content .content {
  max-width: 375px;
  padding-top: 5px;
  padding-bottom: 10px;
}

@media (max-width: 1399px) {
  .choose-us-wrapper-3 .about-left-items .about-bottom-content .content {
    max-width: 300px;
  }
}

.choose-us-wrapper-3 .about-left-items .about-bottom-content .content p {
  color: #111827;
  line-height: 162.5%;
  margin-bottom: 10px;
  font-size: 16px;
}

@media (max-width: 1399px) {
  .choose-us-wrapper-3 .about-left-items .about-bottom-content .content p {
    margin-bottom: 15px;
  }
}

.choose-us-wrapper-3 .choose-us-content .section-title h2 {
  letter-spacing: -1px;
}

.choose-us-wrapper-3 .choose-us-content .choose-icon-items {
  display: flex;
  align-items: center;
  gap: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
  padding: 30px 0;
  margin-top: 25px;
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .choose-us-wrapper-3 .choose-us-content .choose-icon-items {
    gap: 30px;
  }
}

@media (max-width: 1199px) {
  .choose-us-wrapper-3 .choose-us-content .choose-icon-items {
    flex-wrap: wrap;
  }
}

.choose-us-wrapper-3 .choose-us-content .choose-icon-items .icon-items {
  max-width: 210px;
}

.choose-us-wrapper-3 .choose-us-content .choose-icon-items .icon-items .content {
  margin-top: 15px;
}

.choose-us-wrapper-3 .choose-us-content .choose-icon-items .icon-items .content .title {
  font-size: 24px;
  font-weight: 700;
}

.choose-us-wrapper-3 .choose-us-content .choose-icon-items .icon-items .content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  margin-top: 4px;
}

.choose-us-wrapper-3 .choose-us-content .award-items-box p {
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  font-family: "Urbanist", sans-serif;
  margin-top: 18px;
}

@media (max-width: 1399px) {
  .choose-us-wrapper-3 .choose-us-content .award-items-box p {
    font-size: 14px;
  }
}

.choose-us-wrapper-3 .choose-us-content .award-items-box:hover img {
  -webkit-animation: gelatine 0.6s;
  animation: gelatine 0.6s;
}

.choose-us-wrapper-3 .choose-us-content .about-small-image {
  max-width: 470px;
  width: 100%;
  height: 206px;
  border-radius: 20px;
  position: relative;
}

.choose-us-wrapper-3 .choose-us-content .about-small-image .video-circle {
  width: 124px;
  height: 124px;
  line-height: 124px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.06);
  text-align: center;
  z-index: 2;
  position: absolute;
  right: 180px;
  top: 50%;
  transform: translateY(-50%);
  backdrop-filter: blur(20px);
}

@media (max-width: 1199px) {
  .choose-us-wrapper-3 .choose-us-content .about-small-image .video-circle {
    right: initial;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.choose-us-wrapper-3 .choose-us-content .about-small-image .video-circle .text-circle {
  animation: cir36 10s linear infinite;
}

.choose-us-wrapper-3 .choose-us-content .about-small-image .video-circle .text-circle img {
  width: initial;
  height: initial;
}

.choose-us-wrapper-3 .choose-us-content .about-small-image .video-circle .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  z-index: 9;
  font-size: 16px;
}

.choose-us-wrapper-3 .choose-us-content .about-small-image .video-circle .video-btn:hover {
  background-color: var(--white);
  color: var(--body);
}

.choose-us-wrapper-3 .choose-us-content .about-small-image .video-circle img {
  margin-left: 0;
}

.choose-us-wrapper-3 .choose-us-content .about-small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.work-process-wrapper-3 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  position: relative;
}

@media (max-width: 1399px) {
  .work-process-wrapper-3 {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .work-process-wrapper-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .work-process-wrapper-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 470px) {
  .work-process-wrapper-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.work-process-wrapper-3 .line-1 {
  position: absolute;
  left: 200px;
  right: 0;
  text-align: center;
  top: 33%;
  transform: translateY(-50%);
  z-index: -1;
  max-width: 1000px;
}

@media (max-width: 1399px) {
  .work-process-wrapper-3 .line-1 {
    display: none;
  }
}

.work-process-wrapper-3 .line-1 img {
  width: 100%;
}

.work-process-wrapper-3 .work-process-items-3 {
  margin-top: 30px;
}

.work-process-wrapper-3 .work-process-items-3 .icon {
  width: 104px;
  height: 104px;
  line-height: 104px;
  text-align: center;
  border-radius: 50%;
  background-color: rgb(39, 39, 39);
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.work-process-wrapper-3 .work-process-items-3 .icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--theme);
  top: 100%;
  left: 0;
  border-radius: 50%;
  transition: all 0.4s ease;
  z-index: -1;
}

.work-process-wrapper-3 .work-process-items-3 .content {
  text-align: center;
  margin-top: 18px;
}

.work-process-wrapper-3 .work-process-items-3 .content .title {
  font-size: 24px;
}

@media (max-width: 1199px) {
  .work-process-wrapper-3 .work-process-items-3 .content .title {
    font-size: 20px;
  }
}

.work-process-wrapper-3 .work-process-items-3 .content p {
  font-size: 16px;
  font-weight: 500;
  color: rgb(121, 121, 121);
  margin-top: 10px;
}

@media (max-width: 1199px) {
  .work-process-wrapper-3 .work-process-items-3 .content p br {
    display: none;
  }
}

.work-process-wrapper-3 .work-process-items-3:hover .icon img {
  animation: wobble 1.5s ease-in-out;
}

.work-process-wrapper-3 .work-process-items-3.active .icon::before {
  top: 0;
}

.choose-us-wrapper-33 .choose-us-image {
  position: relative;
  border-radius: 12px;
  height: 810px;
}

@media (max-width: 991px) {
  .choose-us-wrapper-33 .choose-us-image {
    height: 580px;
  }
}

@media (max-width: 575px) {
  .choose-us-wrapper-33 .choose-us-image {
    height: 480px;
  }
}

.choose-us-wrapper-33 .choose-us-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.choose-us-wrapper-33 .choose-us-image .grap-shape {
  position: absolute;
  bottom: 30px;
  right: 30px;
}

@media (max-width: 767px) {
  .choose-us-wrapper-33 .choose-us-image .grap-shape {
    max-width: 200px;
    right: 15px;
    bottom: 15px;
  }
}

@media (max-width: 1199px) {
  .choose-us-wrapper-33 .choose-us-content {
    margin-left: 0;
  }
}

.choose-us-wrapper-33 .choose-us-content .section-title h2 {
  letter-spacing: -2px;
}

.choose-us-wrapper-33 .choose-us-content .choose-list {
  margin-top: 30px;
  max-width: 570px;
}

.choose-us-wrapper-33 .choose-us-content .choose-list li {
  display: flex;
  gap: 20px;
  padding: 26px 30px;
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
  transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
  .choose-us-wrapper-33 .choose-us-content .choose-list li {
    flex-wrap: wrap;
  }
}

.choose-us-wrapper-33 .choose-us-content .choose-list li .icon {
  max-width: 80px;
  width: 100%;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  background-color: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
  .choose-us-wrapper-33 .choose-us-content .choose-list li .icon {
    height: 70px;
    max-width: 70px;
    line-height: 70px;
  }

  .choose-us-wrapper-33 .choose-us-content .choose-list li .icon img {
    width: 30px;
  }
}

.choose-us-wrapper-33 .choose-us-content .choose-list li .content h3 {
  color: var(--header);
  text-transform: capitalize;
  font-weight: 700;
}

.choose-us-wrapper-33 .choose-us-content .choose-list li .content p {
  color: var(--header);
  margin-top: 10px;
  max-width: 415px;
  font-size: 16px;
  font-weight: 400;
}

.choose-us-wrapper-33 .choose-us-content .choose-list li.active {
  background-color: var(--white);
  box-shadow: 0 4px 30px 0 rgba(41, 15, 28, 0.1);
  border-radius: 8px;
}

.choose-us-wrapper-33 .choose-us-content .choose-list li.active h3 {
  color: #111827;
}

.choose-us-wrapper-33 .choose-us-content .choose-list li.active p {
  color: #111827;
}

.choose-us-wrapper-33 .choose-us-content .choose-list li.active .icon {
  background-color: var(--theme);
}

.choose-us-wrapper-33 .choose-us-content .choose-list li.active .icon img {
  -webkit-animation: gelatine 0.6s;
  animation: gelatine 0.6s;
}

.choose-us-section-4 {
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 20px;
  margin: 0 60px;
}

@media (max-width: 1899px) {
  .choose-us-section-4 {
    margin: 0 40px;
  }
}

@media (max-width: 1600px) {
  .choose-us-section-4 {
    margin: 0 30px;
  }
}

@media (max-width: 1399px) {
  .choose-us-section-4 {
    margin: 0 25px;
  }
}

@media (max-width: 1199px) {
  .choose-us-section-4 {
    margin: 0 20px;
  }
}

.award-section-4 {
  border-radius: 20px;
  margin: 0 60px;
  padding-bottom: 0 !important;
}

@media (max-width: 1899px) {
  .award-section-4 {
    margin: 0 35px;
  }
}

@media (max-width: 1600px) {
  .award-section-4 {
    margin: 0 30px;
  }
}

@media (max-width: 1399px) {
  .award-section-4 {
    margin: 0 25px;
  }
}

@media (max-width: 1199px) {
  .award-section-4 {
    margin: 0 20px;
  }
}

@media (max-width: 991px) {
  .award-section-4 {
    padding-bottom: 80px !important;
  }
}

.award-wrapper-4 {
  position: relative;
}

.award-wrapper-4 .award-content ul {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
}

.award-wrapper-4 .award-content ul li {
  display: flex;
  align-items: center;
  gap: 80px;
}

.award-wrapper-4 .award-content .award-list-items {
  display: flex;
  align-items: center;
  gap: 85px;
}

@media (max-width: 1199px) {
  .award-wrapper-4 .award-content .award-list-items {
    gap: 40px;
  }
}

.award-wrapper-4 .award-content .award-list-items.bb-bottom span {
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
}

.award-wrapper-4 .award-content .award-list-items span {
  width: 100%;
  display: inline-block;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 0;
}

.award-wrapper-4 .award-image {
  margin-top: 50px;
}

@media (max-width: 991px) {
  .award-wrapper-4 .award-image {
    display: none;
  }
}

.why-choose-us-wrapper-5 .section-title h2 {
  font-size: 48px;
}

@media (max-width: 991px) {
  .why-choose-us-wrapper-5 .section-title h2 {
    font-size: 44px;
  }
}

@media (max-width: 767px) {
  .why-choose-us-wrapper-5 .section-title h2 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .why-choose-us-wrapper-5 .section-title h2 {
    font-size: 36px;
  }
}

.why-choose-us-wrapper-5 .thumb {
  margin-top: 30px;
  border-radius: 10px;
}

.why-choose-us-wrapper-5 .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.why-choose-us-wrapper-5 .choose-us-content {
  margin-top: 30px;
  margin-left: 40px;
}

@media (max-width: 1199px) {
  .why-choose-us-wrapper-5 .choose-us-content {
    margin-left: 0;
  }
}

.why-choose-us-wrapper-5 .choose-us-content .theme-btn-main {
  background-color: transparent;
  border: 1px solid rgba(37, 99, 235, 0.15);
  margin-top: 40px;
}

.why-choose-us-wrapper-5 .choose-us-content .theme-btn-main .theme-btn-arrow-left,
.why-choose-us-wrapper-5 .choose-us-content .theme-btn-main .theme-btn-arrow-right {
  background-color: var(--theme);
  color: var(--white);
}

.why-choose-us-wrapper-5 .choose-us-content .about-conter-items {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1399px) {
  .why-choose-us-wrapper-5 .choose-us-content .about-conter-items {
    margin-top: 30px;
  }
}

@media (max-width: 1199px) {
  .why-choose-us-wrapper-5 .choose-us-content .about-conter-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .why-choose-us-wrapper-5 .choose-us-content .about-conter-items {
    display: block;
  }
}

.why-choose-us-wrapper-5 .choose-us-content .about-conter-items .counter-box {
  max-width: 300px;
  background-color: #F0F4FF;
  border-radius: 8px;
  padding: 30px;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1399px) {
  .why-choose-us-wrapper-5 .choose-us-content .about-conter-items .counter-box {
    padding: 25px;
  }
}

@media (max-width: 575px) {
  .why-choose-us-wrapper-5 .choose-us-content .about-conter-items .counter-box {
    margin-bottom: 25px;
    max-width: initial;
  }
}

.why-choose-us-wrapper-5 .choose-us-content .about-conter-items .counter-box .sub-text {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  color: #111827;
}

.why-choose-us-wrapper-5 .choose-us-content .about-conter-items .counter-box h2 {
  font-weight: 600;
  color: var(--theme);
  margin-top: 50px;
  line-height: 1;
}

@media (max-width: 1399px) {
  .why-choose-us-wrapper-5 .choose-us-content .about-conter-items .counter-box h2 {
    font-size: 60px;
    margin-top: 25px;
  }
}

.why-choose-us-wrapper-5 .choose-us-content .about-conter-items .counter-box p {
  font-size: 18px;
  color: #111827;
  margin-top: 15px;
}

.why-choose-us-wrapper-5 .choose-us-content .about-conter-items .about-vide-bg {
  position: relative;
  height: 270px;
  overflow: hidden;
  border-radius: 8px;
}

@media (max-width: 767px) {
  .why-choose-us-wrapper-5 .choose-us-content .about-conter-items .about-vide-bg {
    flex-basis: 100%;
    width: 100%;
    height: 450px;
  }
}

@media (max-width: 575px) {
  .why-choose-us-wrapper-5 .choose-us-content .about-conter-items .about-vide-bg {
    height: 400px;
  }
}

.why-choose-us-wrapper-5 .choose-us-content .about-conter-items .about-vide-bg img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.why-choose-us-wrapper-5 .choose-us-content .about-conter-items .about-vide-bg:hover img {
  transform: scale(1.1) rotate(2deg);
}

.service-section .section-title-area .client-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-section .section-title-area .client-info .content h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}

.service-section .section-title-area .client-info .content p {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.service-section .service-box-style .block .service-acc-content.current {
  display: block;
}

.service-section .service-box-style .block .service-acc-content.current h4 {
  color: #111827;
}

.service-section .service-box-style .block .service-acc-btn.active .icon:before {
  content: "\f00d";
}

.service-section .service-box-style .block .service-acc-btn.active .icon {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}

.service-section .service-box-style .block .service-acc-btn.active h3 {
  color: #111827;
}

.service-section .service-box-style .block .service-acc-btn.active {
  color: var(--theme);
}

.service-section .service-box-style .block .service-acc-btn.active .number {
  color: var(--theme);
}

.service-section .service-box-style .block:last-child {
  margin-bottom: 0;
}

.service-box-style {
  margin-top: 30px;
}

.service-box-style .service-list-wrap {
  position: relative;
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
  padding: 50px 75px;
  position: relative;
}

.service-box-style .service-list-wrap .service-box {
  position: absolute;
  bottom: 0;
  left: 0;
}

@media (max-width: 1199px) {
  .service-box-style .service-list-wrap .service-box {
    display: none;
  }
}

@media (max-width: 575px) {
  .service-box-style .service-list-wrap {
    padding: 40px 10px;
  }
}

.service-box-style .service-list-wrap.active-block {
  background-color: #F0F4FF;
  border-bottom: 1px solid #F0F4FF;
  border-radius: 20px;
}

.service-box-style .service-list-wrap .service-acc-btn {
  position: relative;
  padding-left: 275px;
  cursor: pointer;
}

@media (max-width: 1399px) {
  .service-box-style .service-list-wrap .service-acc-btn {
    padding-left: 200px;
  }
}

@media (max-width: 1199px) {
  .service-box-style .service-list-wrap .service-acc-btn {
    padding-left: 90px;
  }
}

@media (max-width: 575px) {
  .service-box-style .service-list-wrap .service-acc-btn {
    padding-left: 20px;
  }
}

.service-box-style .service-list-wrap .service-acc-btn .number {
  display: inline-block;
  font-size: 18px;
  font-weight: 800;
  font-family: "Urbanist", sans-serif;
  color: #6B7280;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 575px) {
  .service-box-style .service-list-wrap .service-acc-btn .number {
    top: -30px;
    left: 20px;
  }
}

.service-box-style .service-list-wrap .service-acc-btn .icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 40px;
  color: var(--header);
  border: 1px solid rgba(37, 99, 235, 0.15);
  text-align: center;
}

.service-box-style .service-list-wrap .service-acc-btn h3 {
  font-size: 30px;
  font-weight: 600;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .service-box-style .service-list-wrap .service-acc-btn h3 {
    font-size: 25px;
  }
}

.service-box-style .service-list-wrap .service-acc-btn h3 a {
  color: var(--header);
}

.service-box-style .service-list-wrap .service-acc-btn h3 a:hover {
  color: var(--theme);
}

.service-box-style .service-list-wrap .service-acc-content {
  margin-top: 35px;
  display: none;
  position: relative;
}

@media (max-width: 575px) {
  .service-box-style .service-list-wrap .service-acc-content {
    margin-top: 25px;
  }
}

.service-box-style .service-list-wrap .service-wrap {
  display: flex;
  gap: 100px;
  width: 100%;
  padding-left: 275px;
}

@media (max-width: 1399px) {
  .service-box-style .service-list-wrap .service-wrap {
    padding-left: 200px;
  }
}

@media (max-width: 1199px) {
  .service-box-style .service-list-wrap .service-wrap {
    padding-left: 90px;
  }
}

@media (max-width: 991px) {
  .service-box-style .service-list-wrap .service-wrap {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .service-box-style .service-list-wrap .service-wrap {
    padding-left: 20px;
  }
}

.service-box-style .service-list-wrap .service-wrap .item-text h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111827;
}

.service-box-style .service-list-wrap .service-wrap .item-text .text {
  max-width: 465px;
}

.service-box-style .service-list-wrap .service-wrap .item-text .text p {
  font-size: 20px;
  line-height: 155.556%;
  font-weight: 500;
  color: #111827;
}

@media (max-width: 575px) {
  .service-box-style .service-list-wrap .service-wrap .item-text .text p {
    font-size: 16px;
  }
}

.service-box-style .service-list-wrap .service-wrap .item-text ul li {
  color: #111827;
  font-family: "Urbanist", sans-serif;
}

.service-box-style .service-list-wrap .service-wrap .item-text ul li:not(:last-child) {
  margin-bottom: 10px;
}

.service-box-style .service-list-wrap .service-wrap .item-text ul li i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--theme);
}

.service-box-style .service-list-wrap.style-two .service-acc-btn {
  padding-left: 70px;
}

.service-box-style .service-list-wrap.style-two .number {
  top: 6px;
}

.service-box-style .service-list-wrap.style-two .service-wrap {
  padding-left: 70px;
}

@media (max-width: 575px) {
  .service-box-style .service-list-wrap.style-two .service-wrap {
    padding-left: 20px;
  }
}

.service-box-style .service-list-wrap.style-two .service-thumb {
  border-radius: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 170px;
}

@media (max-width: 1399px) {
  .service-box-style .service-list-wrap.style-two .service-thumb {
    display: none;
  }
}

.service-box-style .service-list-wrap.style-two .service-thumb img {
  border-radius: 10px;
}

.service-box-style .service-list-wrap.accordion.block .service-thumb {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.service-box-style .service-list-wrap.active-block .service-thumb {
  opacity: 1 !important;
  visibility: visible !important;
}

.service-section-2 .section-title {
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
  padding-bottom: 60px;
}

.service-box-items-2 {
  margin-top: 60px;
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
  padding-bottom: 60px;
  background-color: #111827;
}

.service-box-items-2 .service-content {
  margin-right: 10px;
}

@media (max-width: 1199px) {
  .service-box-items-2 .service-content {
    margin-right: 0;
  }
}

.service-box-items-2 .service-content p {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #6B7280;
}

@media (max-width: 1600px) {
  .service-box-items-2 .service-content p {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .service-box-items-2 .service-content p {
    font-size: 16px;
  }
}

.service-box-items-2 .service-content .title {
  font-size: 65px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 40px;
  line-height: 115%;
}

@media (max-width: 1600px) {
  .service-box-items-2 .service-content .title {
    font-size: 48px;
  }
}

@media (max-width: 991px) {
  .service-box-items-2 .service-content .title {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .service-box-items-2 .service-content .title {
    font-size: 32px;
  }
}

.service-box-items-2 .service-content .title:hover a {
  color: var(--theme);
}

.service-box-items-2 .service-content .service-list {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 64px;
}

@media (max-width: 991px) {
  .service-box-items-2 .service-content .service-list {
    margin-top: 25px;
  }
}

.service-box-items-2 .service-content .service-list ul li {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  color: #6B7280;
}

.service-box-items-2 .service-content .service-list ul li:not(:last-child) {
  margin-bottom: 15px;
}

.service-box-items-2 .service-content .title-2 {
  font-size: 24px;
  font-weight: 500;
  color: #6B7280;
  max-width: 481px;
  margin-top: 90px;
}

@media (max-width: 1600px) {
  .service-box-items-2 .service-content .title-2 {
    font-size: 18px;
    line-height: 130%;
  }
}

@media (max-width: 991px) {
  .service-box-items-2 .service-content .title-2 {
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .service-box-items-2 .service-content .title-2 {
    font-size: 16px;
  }
}

.service-box-items-2 .service-content .list-items {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .service-box-items-2 .service-content .list-items {
    margin-top: 25px;
  }
}

@media (max-width: 767px) {
  .service-box-items-2 .service-content .list-items {
    flex-wrap: wrap;
  }
}

.service-box-items-2 .service-content .list-items li a {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 13px;
  border-radius: 35px;
  display: inline-block;
  line-height: 1;
  transition: all 0.4s ease-in-out;
}

.service-box-items-2 .service-content .list-items li a:hover {
  background-color: var(--theme);
  border-color: var(--theme);
}

.service-box-items-2 .service-thumb {
  height: 626px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .service-box-items-2 .service-thumb {
    height: 500px;
  }
}

.service-box-items-2 .service-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 20px;
}

.service-box-items-2 .service-thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.service-box-items-2:hover .service-thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.service-box-items-2:hover .service-thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.service-section-3 {
  position: relative;
}

.service-section-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  left: 30px;
  background-color: var(--bg);
  border-radius: 16px;
  width: calc(100% - 60px);
}

@media (max-width: 1600px) {
  .service-section-3::before {
    width: 100%;
    left: 0;
  }
}

.service-section-3 .array-button {
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 999;
}

.service-section-3 .array-button .array-prev,
.service-section-3 .array-button .array-next {
  border-radius: 100px;
  background-color: var(--white);
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  border-radius: 50%;
  color: #111827;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.service-section-3 .array-button .array-prev:hover,
.service-section-3 .array-button .array-next:hover {
  background-color: var(--theme);
  color: var(--white);
}

.service-section-3 .array-button .swiper-dot .swiper-pagination-bullet {
  background-color: #6B7280;
}

.service-section-3 .array-button .swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
}

.service-box-items-3 {
  margin-top: 30px;
  background-color: #F0F4FF;
  border-radius: 10px;
  padding: 30px;
  position: relative;
  z-index: 9;
}

.service-box-items-3 .shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.service-box-items-3::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  -webkit-transform: scale(1, 0.3);
  transform: scale(1, 0.3);
  background-color: var(--theme);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
  border-radius: 10px;
}

.service-box-items-3 span {
  color: #6B7280;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 25px;
  display: inline-block;
}

.service-box-items-3 h3 {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 24px;
  text-transform: capitalize;
}

.service-box-items-3 h3 a {
  color: #111827;
}

.service-box-items-3 p {
  color: #111827;
}

.service-box-items-3 .feature-info-box {
  background-color: var(--white);
  margin-top: 55px;
  border-radius: 7px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1399px) {
  .service-box-items-3 .feature-info-box {
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
  }
}

.service-box-items-3 .feature-info-box ul {
  display: flex;
  align-items: center;
}

@media (max-width: 1199px) {
  .service-box-items-3 .feature-info-box ul {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.service-box-items-3 .feature-info-box ul li {
  border-radius: 50px;
  border: 1px solid #E6E8EB;
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  font-family: "Urbanist", sans-serif;
  padding: 0 12px;
  height: 30px;
  line-height: 28px;
  transition: all 0.4s ease-in-out;
}

.service-box-items-3 .feature-info-box ul li:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}

.service-box-items-3 .feature-info-box .icon {
  display: inline-block;
  width: 43px;
  height: 43px;
  line-height: 43px;
  border-radius: 50%;
  background-color: #111827;
  text-align: center;
  color: var(--white);
}

.service-box-items-3.active .shape-1 {
  opacity: 1;
  visibility: visible;
}

.service-box-items-3.active h6,
.service-box-items-3.active h3,
.service-box-items-3.active p,
.service-box-items-3.active span {
  color: var(--white);
}

.service-box-items-3.active h3 a {
  color: var(--white);
}

.service-box-items-3.active::before {
  opacity: 1;
  transform: scale(1, 1);
}

.service-box-items-3.active .icon {
  background-color: var(--theme) !important;
}

.service-box-items-3:hover .shape-1 {
  opacity: 1;
  visibility: visible;
}

.service-box-items-3:hover h6,
.service-box-items-3:hover h3,
.service-box-items-3:hover p,
.service-box-items-3:hover span {
  color: var(--white);
}

.service-box-items-3:hover h3 a {
  color: var(--white);
}

.service-box-items-3:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}

.service-box-items-3:hover .icon {
  background-color: var(--theme) !important;
}

.service-wrapper-3 {
  margin-right: -40%;
}

@media (max-width: 1600px) {
  .service-wrapper-3 {
    margin-right: -35%;
  }
}

@media (max-width: 1399px) {
  .service-wrapper-3 {
    margin-right: -55%;
  }
}

@media (max-width: 575px) {
  .service-wrapper-3 {
    margin-right: 0;
  }
}

.service-section-4 .section-title-area {
  align-items: end;
  justify-content: space-between;
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
  padding-bottom: 50px;
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .service-section-4 .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    text-align: center;
  }
}

.service-section-4 .section-title .title {
  font-size: 200px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 95%;
}

@media (max-width: 1899px) {
  .service-section-4 .section-title .title {
    font-size: 160px;
  }
}

@media (max-width: 1600px) {
  .service-section-4 .section-title .title {
    font-size: 120px;
  }
}

@media (max-width: 1399px) {
  .service-section-4 .section-title .title {
    font-size: 130px;
  }
}

@media screen and (max-width: 1300px) {
  .service-section-4 .section-title .title {
    font-size: 110px;
  }
}

@media (max-width: 1199px) {
  .service-section-4 .section-title .title {
    font-size: 100px;
  }
}

@media (max-width: 991px) {
  .service-section-4 .section-title .title {
    font-size: 80px;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .service-section-4 .section-title .title {
    font-size: 60px;
  }
}

@media (max-width: 575px) {
  .service-section-4 .section-title .title {
    font-size: 45px;
  }
}

@media (max-width: 470px) {
  .service-section-4 .section-title .title {
    font-size: 38px;
  }
}

.service-section-4 .section-title .title .text-1 {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1199px) {
  .service-section-4 .section-title .title .text-1 {
    display: initial;
  }
}

@media (max-width: 1199px) {
  .service-section-4 .section-title .title .text-1 img {
    display: none;
  }
}

.service-section-4 .section-title .title .text-2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-family: "Instrument Serif", serif;
  letter-spacing: 0.15em;
  font-style: italic;
}

@media (max-width: 1199px) {
  .service-section-4 .section-title .title .text-2 {
    display: initial;
  }
}

.service-section-4 .section-title .title .text-2 img {
  border-radius: 100px;
}

@media (max-width: 1600px) {
  .service-section-4 .section-title .title .text-2 img {
    width: 250px;
  }
}

@media screen and (max-width: 1300px) {
  .service-section-4 .section-title .title .text-2 img {
    width: 220px;
  }
}

@media (max-width: 1199px) {
  .service-section-4 .section-title .title .text-2 img {
    display: none;
  }
}

.service-section-4 .section-title .title .text-3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1199px) {
  .service-section-4 .section-title .title .text-3 {
    display: initial;
  }
}

.service-section-4 .section-title .title .text-3 img {
  border-radius: 100px;
}

@media (max-width: 1199px) {
  .service-section-4 .section-title .title .text-3 img {
    display: none;
  }
}

.service-section-4 .top-content {
  max-width: 275px;
  margin-left: auto;
}

@media (max-width: 1199px) {
  .service-section-4 .top-content {
    margin-left: initial;
    margin: 0 auto;
  }
}

@media (max-width: 1600px) {
  .service-section-4 .top-content .arrow-icon {
    max-width: 200px;
  }

  .service-section-4 .top-content .arrow-icon img {
    width: 100%;
    height: 100%;
  }
}

.service-section-4 .top-content .content {
  margin-top: 45px;
}

.service-section-4 .top-content .content h3 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 6px;
}

.service-section-4 .top-content .content h3 span {
  font-weight: 400;
  font-family: "Instrument Serif", serif;
  font-style: italic;
}

.service-section-4 .service-box-style .block .service-acc-content.current {
  display: block;
}

.service-section-4 .service-box-style .block .service-acc-content.current h4 {
  color: #111827;
}

.service-section-4 .service-box-style .block .service-acc-btn.active .icon:before {
  content: "\f00d";
}

.service-section-4 .service-box-style .block .service-acc-btn.active .icon {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}

.service-section-4 .service-box-style .block .service-acc-btn.active h3 {
  color: #111827;
}

.service-section-4 .service-box-style .block .service-acc-btn.active {
  color: var(--theme);
}

.service-section-4 .service-box-style .block .service-acc-btn.active .number {
  color: var(--theme);
}

.service-section-4 .service-box-style .block:last-child {
  margin-bottom: 0;
}

.services-details-section {
  position: relative;
  padding-top: 180px !important;
}

@media (max-width: 1199px) {
  .services-details-section {
    padding-bottom: 0px !important;
  }
}

.services-details-section .title-area {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 120px;
  margin-bottom: 120px;
}

@media (max-width: 1199px) {
  .services-details-section .title-area {
    padding-bottom: 100px;
    margin-bottom: 100px;
  }
}

@media (max-width: 991px) {
  .services-details-section .title-area {
    padding-bottom: 80px;
    margin-bottom: 80px;
  }
}

.services-details-section h1 {
  color: var(--white);
  font-size: 110px;
  position: relative;
  z-index: 9;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 116%;
  font-weight: 600;
}

.services-details-section h1 span {
  font-weight: 400;
  font-family: "Instrument Serif", serif;
  font-style: italic;
}

@media (max-width: 1399px) {
  .services-details-section h1 {
    font-size: 80px;
  }
}

@media (max-width: 991px) {
  .services-details-section h1 {
    font-size: 70px;
  }
}

@media (max-width: 767px) {
  .services-details-section h1 {
    font-size: 55px;
  }
}

@media (max-width: 575px) {
  .services-details-section h1 {
    font-size: 50px;
  }
}

@media (max-width: 470px) {
  .services-details-section h1 {
    font-size: 40px;
  }
}

.services-details-section .light-bg {
  position: absolute;
  left: 17%;
  top: -6%;
  z-index: -1;
}

.services-details-section .bg-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.services-details-section .bg-line img {
  width: 100%;
}

@media (max-width: 1199px) {
  .services-details-section {
    padding-top: 100px;
  }
}

@media (max-width: 991px) {
  .services-details-section {
    padding-top: 80px;
  }
}

.service-details-wrapper .service-details-image-top {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 50px;
}

.service-details-wrapper .service-details-image-top img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.service-details-wrapper .details-top-item {
  display: flex;
  align-items: center;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 100px;
}

@media (max-width: 1399px) {
  .service-details-wrapper .details-top-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .service-details-wrapper .details-top-item {
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
  }
}

.service-details-wrapper .details-top-item .left-content h2 {
  font-weight: 600;
  font-size: 65px;
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .service-details-wrapper .details-top-item .left-content h2 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .service-details-wrapper .details-top-item .left-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .service-details-wrapper .details-top-item .left-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .service-details-wrapper .details-top-item .left-content h2 {
    font-size: 25px;
  }
}

.service-details-wrapper .details-top-item .left-content p {
  max-width: 788px;
  font-size: 18px;
  font-weight: 400;
  margin-top: 10px;
}

@media (max-width: 1399px) {
  .service-details-wrapper .details-top-item .left-content p {
    font-size: 16px;
    max-width: 565px;
  }
}

.service-details-wrapper .details-top-item .details-list li {
  font-size: 18px;
  font-weight: 500;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.service-details-wrapper .details-top-item .details-list li:first-child {
  border-top: 1px solid rgba(37, 99, 235, 0.08);
}

@media (max-width: 1399px) {
  .service-details-wrapper .details-top-item .details-list li {
    font-size: 16px;
  }
}

.service-details-wrapper .details-top-item .details-list li i {
  margin-right: 5px;
}

.service-details-wrapper .service-details-image {
  overflow: hidden;
  border-radius: 10px;
}

.service-details-wrapper .service-details-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.service-details-wrapper .service-concept-item {
  position: relative;
  margin-top: 80px;
}

@media (max-width: 1399px) {
  .service-details-wrapper .service-concept-item {
    margin-top: 30px;
  }
}

.service-details-wrapper .service-concept-item .service-count-left h2 {
  font-size: 280px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0;
}

@media (max-width: 1399px) {
  .service-details-wrapper .service-concept-item .service-count-left h2 {
    font-size: 100px;
  }
}

.service-details-wrapper .service-concept-item .service-count-left p {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.03em;
  max-width: 238px;
}

@media (max-width: 1399px) {
  .service-details-wrapper .service-concept-item .service-count-left p {
    font-size: 16px;
  }
}

.service-details-wrapper .service-concept-item .service-count-left .details-thumb {
  margin-top: 50px;
  max-width: 600px;
  border-radius: 10px;
}

@media (max-width: 1399px) {
  .service-details-wrapper .service-concept-item .service-count-left .details-thumb {
    margin-top: 30px;
  }
}

.service-details-wrapper .service-concept-item .service-count-left .details-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border-radius: 10px;
}

.service-details-wrapper .service-concept-item h2 {
  font-size: 72px;
  font-weight: 600;
  margin-bottom: 50px;
}

@media (max-width: 1399px) {
  .service-details-wrapper .service-concept-item h2 {
    font-size: 45px;
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .service-details-wrapper .service-concept-item h2 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .service-details-wrapper .service-concept-item h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .service-details-wrapper .service-concept-item h2 {
    font-size: 25px;
  }
}

.service-details-wrapper .service-concept-item .service-concept-box {
  background-color: var(--white);
  padding: 38px 30px;
  margin-bottom: 30px;
  margin-left: 80px;
  border-radius: 8px;
  padding-top: 33px;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1600px) {
  .service-details-wrapper .service-concept-item .service-concept-box {
    padding: 35px 30px;
  }
}

@media (max-width: 1399px) {
  .service-details-wrapper .service-concept-item .service-concept-box {
    margin-left: 0;
    padding: 30px;
    margin-bottom: 30px;
  }
}

.service-details-wrapper .service-concept-item .service-concept-box h3 {
  font-size: 32px;
  font-weight: 600;
  color: #111827;
  text-transform: capitalize;
}

@media (max-width: 1600px) {
  .service-details-wrapper .service-concept-item .service-concept-box h3 {
    font-size: 28px;
  }
}

@media (max-width: 1399px) {
  .service-details-wrapper .service-concept-item .service-concept-box h3 {
    font-size: 20px;
  }
}

.service-details-wrapper .service-concept-item .service-concept-box p {
  max-width: 680px;
  font-size: 18px;
  font-weight: 400;
  color: rgb(3, 7, 13);
  margin-top: 15px;
}

@media (max-width: 1600px) {
  .service-details-wrapper .service-concept-item .service-concept-box p {
    font-size: 16px;
  }
}

.service-details-wrapper .service-concept-item .service-concept-box.active {
  background-color: var(--theme);
}

.service-details-wrapper .service-concept-item .service-concept-box.active h3 {
  color: var(--white);
}

.service-details-wrapper .service-concept-item .service-concept-box.active p {
  color: var(--white);
}

.service-details-wrapper .service-concept-item .number-list {
  position: absolute;
  left: 46%;
  transform: translateX(-50%);
  display: grid;
  gap: 180px;
  top: 310px;
}

@media (max-width: 1600px) {
  .service-details-wrapper .service-concept-item .number-list {
    left: 52%;
  }
}

@media (max-width: 1399px) {
  .service-details-wrapper .service-concept-item .number-list {
    display: none;
  }
}

.service-details-wrapper .service-concept-item .number-list::before {
  position: absolute;
  content: "";
  background-color: rgba(255, 255, 255, 0.2);
  width: 1px;
  height: 100%;
  left: 25px;
  top: 0;
}

.service-details-wrapper .service-concept-item .number-list .number {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--theme);
  font-size: 20px;
  font-weight: 600;
  position: relative;
  z-index: 9;
  color: var(--white);
}

.service-visual-item p {
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 400;
}

@media (max-width: 1399px) {
  .service-visual-item p {
    margin-top: 30px;
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .service-visual-item p {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.service-visual-item .service-visual-image {
  overflow: hidden;
  border-radius: 10px;
}

.service-visual-item .service-visual-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.service-visual-section {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 991px) {
  .service-visual-section {
    padding-top: 80px;
    margin-top: 80px;
  }
}

.details-icon-box-item {
  border-radius: 16px;
  padding: 64px 40px;
  background-color: #F0F4FF;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
  .details-icon-box-item {
    padding: 30px;
  }
}

.details-icon-box-item .content {
  margin-top: 30px;
}

.details-icon-box-item .content .title {
  color: #111827;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

@media (max-width: 1199px) {
  .details-icon-box-item .content .title {
    font-size: 22px;
  }
}

.details-icon-box-item .content p {
  color: #4B4B4B;
  font-size: 18px;
}

.details-icon-box-item:hover {
  background-color: #272727;
}

.details-icon-box-item:hover .content .title {
  color: #fff;
}

.details-icon-box-item:hover .content p {
  color: #fff;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.marque-section {
  background-color: var(--theme);
  padding: 14px 0;
}

.marque-section .text {
  color: var(--white);
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 60px;
}

.marque-section .text-3 {
  text-transform: uppercase;
  font-size: 80px;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 50px;
}

.marque-section .text-4 {
  font-size: 96px;
  font-weight: 600;
  color: transparent;
  font-size: 96.552px;
  font-weight: 600;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--header);
  transition: all 0.4s ease-in-out;
  line-height: 1;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 50px;
}

@media (max-width: 767px) {
  .marque-section .text-4 {
    font-size: 60px;
  }
}

.marque-section .text-4:hover {
  color: var(--header);
}

.marque-section .marquee {
  gap: 60px;
  --duration: 20s !important;
}

.marque-section .marquee-group {
  gap: 60px;
}

.marquee {
  position: relative;
  --duration: 100s;
  --gap: 0px;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 0;
}

.marquee .marquee-group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  min-width: 100%;
  animation: scroll var(--duration) linear infinite;
}

.marquee .marquee-group .icon-box {
  background: rgba(37, 99, 235, 0.06);
  border: 1.13258px solid rgba(37, 99, 235, 0.12);
  backdrop-filter: blur(18.1212px);
  border-radius: 9.78671px;
  width: 123px;
  height: 123px;
  line-height: 123px;
  text-align: center;
  border-radius: 10px;
}

.marque-section-2 .marquee {
  gap: 60px;
  --duration: 30s !important;
}

.marque-section-2 .marquee-group {
  gap: 70px;
}

@media (max-width: 767px) {
  .marque-section-2 .marquee-group {
    gap: 40px;
  }
}

.marque-section-2 .marquee-group .text-2 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 125px;
  letter-spacing: -7.20707px;
  line-height: 1;
  color: var(--theme);
  display: flex;
  align-items: center;
  gap: 70px;
}

@media (max-width: 767px) {
  .marque-section-2 .marquee-group .text-2 {
    font-size: 80px;
    letter-spacing: -4.5px;
    gap: 40px;
  }
}

.powerful-feature-section .section-title {
  margin-bottom: 60px;
}

.powerful-feature-section .marquee {
  --duration: 30s;
}

@media (max-width: 1899px) {
  .powerful-feature-section .marquee {
    gap: 30px !important;
  }
}

.powerful-feature-section .marquee-group {
  gap: 0 !important;
}

@media (max-width: 1899px) {
  .powerful-feature-section .marquee-group {
    gap: 30px !important;
  }
}

.powerful-feature-section .marquee-2 {
  margin-top: 35px;
}

.powerful-feature-section .marquee-2 .marquee-group {
  animation: scrollLTR var(--duration) linear infinite;
}

@keyframes scrollLTR {
  0% {
    transform: translateX(calc(-100% - var(--gap)));
  }

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

.testimonial-box-style-1 {
  margin-top: 30px;
  padding: 30px;
  background-color: #F0F4FF;
  border-radius: 10px;
}

.testimonial-box-style-1 .quote-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  margin-bottom: 40px;
}

.testimonial-box-style-1 h3 {
  font-size: 22px;
  font-weight: 600;
  color: #111827;
  opacity: 0.8;
  line-height: 125%;
  letter-spacing: -1px;
  font-style: italic;
}

@media (max-width: 1600px) {
  .testimonial-box-style-1 h3 {
    font-size: 20px;
    line-height: 135%;
  }
}

@media (max-width: 575px) {
  .testimonial-box-style-1 h3 {
    font-size: 18px;
  }
}

.testimonial-box-style-1 .client-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: end;
  border-top: 1px solid #DFDCD2;
  margin-top: 30px;
  padding-top: 30px;
}

@media (max-width: 767px) {
  .testimonial-box-style-1 .client-info-item {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.testimonial-box-style-1 .client-info-item .client-info h4 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
}

@media (max-width: 1600px) {
  .testimonial-box-style-1 .client-info-item .client-info h4 {
    font-size: 18px;
  }
}

.testimonial-box-style-1 .client-info-item .client-info span {
  font-weight: 400;
  color: #111827;
  font-size: 16px;
}

.testimonial-box-style-1 .client-info-item .star {
  color: var(--theme);
  font-size: 16px;
}

.testimonial-box-style-1.style-2 {
  background-color: #111827;
}

.testimonial-box-style-1.style-2 h3 {
  color: var(--white);
  opacity: 0.8;
}

.testimonial-box-style-1.style-2 .client-info-item {
  border-top: 1px solid rgba(223, 220, 210, 0.12);
}

.testimonial-box-style-1.style-2 .client-info-item .client-info h4 {
  color: var(--white);
}

.testimonial-box-style-1.style-2 .client-info-item .client-info span {
  color: var(--white);
}

.testimonial-box-style-1.style-2 .client-info-item .star {
  color: var(--theme);
}

.testimonial-section {
  position: relative;
  margin: 0 30px;
}

.testimonial-section .light-bg {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 1199px) {
  .testimonial-section .light-bg {
    display: none;
  }
}

.testimonial-box-area-2 {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.testimonial-box-area-2 ul li .testi-box-one {
  background: #F0F4FF;
  box-shadow: 8px 8px 32px rgba(36, 12, 135, 0.07);
  border-radius: 16px;
  padding: 32px 40px;
  max-width: 415px;
}

.testimonial-box-area-2 ul li .testi-box-one .client-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.testimonial-box-area-2 ul li .testi-box-one .client-info .info-content .name {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  line-height: 1;
}

.testimonial-box-area-2 ul li .testi-box-one .client-info .info-content p {
  font-size: 14px;
  font-weight: 400;
  color: #4B4B4B;
}

.testimonial-box-area-2 ul li .testi-box-one .star {
  color: var(--theme);
  font-size: 16px;
  margin-bottom: 10px;
}

.testimonial-box-area-2 ul li .testi-box-one .text {
  font-size: 18px;
  font-weight: 500;
  color: #111827;
  font-style: italic;
}

.testimonial-box-area-2 ul li:not(:last-child) {
  margin-bottom: 24px;
}

.testimonial-box-area-2 .testi-box-two {
  max-width: 393px;
  background: #F0F4FF;
  border-radius: 16px;
}

.testimonial-box-area-2 .testi-box-two .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 16px 16px 0px 0px;
}

.testimonial-box-area-2 .testi-box-two .content {
  padding: 32px 32px;
  padding-top: 28px;
}

.testimonial-box-area-2 .testi-box-two .content .text {
  font-size: 18px;
  font-weight: 500;
  color: #111827;
  font-style: italic;
}

.testimonial-box-area-2 .testi-box-two .content .info-content {
  margin-top: 10px;
}

.testimonial-box-area-2 .testi-box-two .content .info-content .name {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  line-height: 1;
  margin-bottom: 5px;
  display: inline-block;
}

.testimonial-box-area-2 .testi-box-two .content .info-content p {
  font-size: 14px;
  font-weight: 400;
  color: #4B4B4B;
  line-height: 1;
}

.testimonial-box-area-2 .testi-box-two .content .info-content .star {
  color: var(--theme);
  font-size: 16px;
  margin-top: 10px;
}

.testi-card-two {
  margin-top: 30px;
  background: #F0F4FF;
  border-radius: 16px;
  max-width: 757px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.testi-card-two .thumb {
  border-radius: 16px;
  max-width: 361px;
}

.testi-card-two .thumb img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
}

.testi-card-two .content {
  max-width: 330px;
}

.testi-card-two .content .quote-icon {
  margin-bottom: 27px;
}

.testi-card-two .content .text {
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: #111827;
  line-height: 160%;
}

.testi-card-two .content .info-content {
  margin-top: 70px;
}

.testi-card-two .content .info-content .name {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  line-height: 1;
  margin-bottom: 5px;
  display: inline-block;
}

.testi-card-two .content .info-content p {
  font-size: 14px;
  font-weight: 400;
  color: #4B4B4B;
  line-height: 1;
  margin-top: 5px;
}

.testi-card-two .content .info-content .star {
  color: var(--theme);
  font-size: 16px;
  margin-top: 10px;
}

.testimonial-section-2 .marquee {
  --duration: 30s;
  gap: 40px;
}

.testimonial-section-3 {
  position: relative;
}

.testimonial-section-3 .array-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1290px;
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateY(-50%);
  z-index: 9;
}

@media (max-width: 1399px) {
  .testimonial-section-3 .array-button {
    left: 25px;
    right: 25px;
  }
}

@media (max-width: 767px) {
  .testimonial-section-3 .array-button {
    display: none;
  }
}

.testimonial-section-3 .array-button .array-prev,
.testimonial-section-3 .array-button .array-next {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  color: #111827;
  transition: all 0.4s ease-in-out;
}

.testimonial-section-3 .array-button .array-prev:hover,
.testimonial-section-3 .array-button .array-next:hover {
  background-color: var(--theme);
  color: var(--white);
}

.tetsimonial-box-items-3 {
  margin-top: 30px;
  background-color: transparent;
  padding: 50px 50px;
  text-align: center;
  opacity: 0.2;
  position: relative;
  z-index: 999;
  border-radius: 20px;
  transition: all 0.5s ease;
  transform: scale(0.95);
}

@media (max-width: 1600px) {
  .tetsimonial-box-items-3 {
    padding: 40px 50px;
  }
}

@media (max-width: 1199px) {
  .tetsimonial-box-items-3 {
    padding: 40px 40px;
  }
}

@media (max-width: 575px) {
  .tetsimonial-box-items-3 {
    padding: 28px;
  }
}

.tetsimonial-box-items-3 .quote-icon {
  margin-bottom: 35px;
}

.tetsimonial-box-items-3 .text {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 154%;
  color: #fff;
}

@media (max-width: 1600px) {
  .tetsimonial-box-items-3 .text {
    font-size: 22px;
  }
}

@media (max-width: 1399px) {
  .tetsimonial-box-items-3 .text {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .tetsimonial-box-items-3 .text {
    font-size: 18px;
  }
}

.tetsimonial-box-items-3 .client-info {
  margin-top: 30px;
}

.tetsimonial-box-items-3 .client-info .thumb {
  margin-bottom: 15px;
}

.tetsimonial-box-items-3 .client-info span {
  color: #fff;
  font-size: 16px;
}

.tetsimonial-box-items-3 .client-info p {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.testimonial-slider-3 {
  margin-left: -15%;
  margin-right: -15%;
}

@media (max-width: 767px) {
  .testimonial-slider-3 {
    margin-left: 30px;
    margin-right: 30px;
  }
}

.swiper-slide.swiper-slide-active .tetsimonial-box-items-3 {
  opacity: 1;
  background-color: #F0F4FF;
  transform: scale(1);
}

.swiper-slide.swiper-slide-active .tetsimonial-box-items-3 .text {
  color: #111827;
}

.swiper-slide.swiper-slide-active .tetsimonial-box-items-3 span {
  color: #111827;
}

.swiper-slide.swiper-slide-active .tetsimonial-box-items-3 p {
  color: #111827;
}

.testimonial-section-3 .section-title-area {
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
  padding-bottom: 60px;
}

.testimonial-section-3 .section-title-area .client-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-section-3 .section-title-area .client-info .content h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}

.testimonial-section-3 .section-title-area .client-info .content p {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.testimonial-section-4 .marquee {
  --duration: 40s;
}

.testimonial-section-4 .marquee .testi-text {
  font-size: 170px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 1199px) {
  .testimonial-section-4 .marquee .testi-text {
    font-size: 100px;
  }
}

.testimonial-section-4 .marquee .testi-text.style-2 {
  font-weight: 400;
  font-family: "Instrument Serif", serif;
  font-style: italic;
}

.testimonial-wrapper-4 {
  margin-top: 100px;
}

.testimonial-wrapper-4 .testimonial-items-2 .testi-box-2 .quote-icon {
  margin-bottom: 80px;
}

.testimonial-wrapper-4 .testimonial-items-2 .testi-box-2 p {
  font-size: 29px;
  text-transform: capitalize;
  font-weight: 700;
  font-family: "Urbanist", sans-serif;
  color: #fff;
  font-style: italic;
  line-height: 150%;
}

@media (max-width: 575px) {
  .testimonial-wrapper-4 .testimonial-items-2 .testi-box-2 p {
    font-size: 22px;
  }
}

.testimonial-wrapper-4 .testimonial-items-2 .array-button {
  gap: 15px;
  margin-top: 48px;
  display: flex;
  align-items: center;
}

.testimonial-wrapper-4 .testimonial-items-2 .array-button .array-prev,
.testimonial-wrapper-4 .testimonial-items-2 .array-button .array-next {
  width: 44px;
  height: 44px;
  line-height: 44px;
  border: none;
  background-color: transparent;
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 50%;
  color: var(--white);
  font-size: 14px;
  transition: all 0.4s ease-in-out;
}

.testimonial-wrapper-4 .testimonial-items-2 .array-button .array-prev:hover,
.testimonial-wrapper-4 .testimonial-items-2 .array-button .array-next:hover {
  background-color: var(--theme);
  color: var(--white);
}

.testimonial-wrapper-4 .testimonial-right-items {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  margin-left: 60px;
  position: relative;
  padding-left: 75px;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-4 .testimonial-right-items {
    padding-left: 40px;
    margin-left: 30px;
  }
}

@media (max-width: 1199px) {
  .testimonial-wrapper-4 .testimonial-right-items {
    border-left: none;
    margin-left: 0;
    padding-left: 0;
  }
}

.testimonial-wrapper-4 .testimonial-right-items .testimonial-client-slider {
  margin-right: -45%;
}

@media (max-width: 1199px) {
  .testimonial-wrapper-4 .testimonial-right-items .testimonial-client-slider {
    margin-right: 0;
  }
}

@media (max-width: 470px) {
  .testimonial-wrapper-4 .testimonial-right-items .testimonial-client-slider {
    text-align: center;
  }
}

.testimonial-wrapper-4 .testimonial-right-items .testi-slider-box {
  opacity: 0.1;
}

.testimonial-wrapper-4 .testimonial-right-items::before {
  position: absolute;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  width: 1000%;
  z-index: -1;
}

.testimonial-wrapper-4 .testimonial-right-items .client-image {
  margin-top: 85px;
}

.testimonial-wrapper-4 .testimonial-right-items .info-content {
  margin-top: 30px;
}

.testimonial-wrapper-4 .testimonial-right-items .info-content .name {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}

.testimonial-wrapper-4 .testimonial-right-items .info-content p {
  text-transform: capitalize;
  font-size: 14px;
  color: #fff;
}

.testimonial-wrapper-4 .testimonial-right-items .number-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 105px;
}

@media (max-width: 470px) {
  .testimonial-wrapper-4 .testimonial-right-items .number-item {
    justify-content: center;
  }
}

.testimonial-wrapper-4 .testimonial-right-items .number-item p {
  font-size: 14px;
  color: #fff;
}

.testimonial-wrapper-4 .testimonial-right-items .number-item span {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.testimonial-wrapper-4 .testimonial-right-items .number-item .line {
  height: 1px;
  width: 96px;
  background-color: #fff;
  margin-left: 15px;
}

.testimonial-wrapper-4 .testimonial-right-items .swiper-slide.swiper-slide-active .testi-slider-box {
  opacity: 1;
}

.client-testimonial__main {
  position: relative;
}

.client-testimonial__warpper {
  gap: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-start;
  margin-right: 60px;
}

@media (max-width: 1399px) {
  .client-testimonial__warpper {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 30px;
    margin-right: 0;
  }
}

@media (max-width: 991px) {
  .client-testimonial__warpper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .client-testimonial__warpper {
    grid-template-columns: repeat(1, 1fr);
  }
}

.testimonial-section-about {
  margin: 0 60px;
  border-radius: 20px;
  background-position: top center !important;
}

@media (max-width: 1899px) {
  .testimonial-section-about {
    margin: 0 35px;
  }
}

@media (max-width: 1600px) {
  .testimonial-section-about {
    margin: 0 30px;
  }
}

@media (max-width: 1399px) {
  .testimonial-section-about {
    margin: 0 25px;
  }
}

@media (max-width: 1199px) {
  .testimonial-section-about {
    margin: 0 20px;
  }
}

.testimonial-section-about .section-title {
  margin-bottom: 90px;
}

.testimonial-section-about .section-title h2 {
  font-size: 48px;
}

@media (max-width: 991px) {
  .testimonial-section-about .section-title h2 {
    font-size: 44px;
  }
}

@media (max-width: 767px) {
  .testimonial-section-about .section-title h2 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .testimonial-section-about .section-title h2 {
    font-size: 36px;
  }
}

.testimonial-box-style-5 {
  margin-top: 30px;
  padding: 30px;
  background-color: #F0F4FF;
  border-radius: 10px;
  position: relative;
  z-index: 99;
}

.testimonial-box-style-5 .quote-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  margin-bottom: 40px;
}

.testimonial-box-style-5 h3 {
  font-size: 22px;
  font-weight: 600;
  color: #111827;
  opacity: 0.8;
  line-height: 125%;
  letter-spacing: -1px;
  font-style: italic;
}

@media (max-width: 1600px) {
  .testimonial-box-style-5 h3 {
    font-size: 20px;
    line-height: 135%;
  }
}

@media (max-width: 575px) {
  .testimonial-box-style-5 h3 {
    font-size: 18px;
  }
}

.testimonial-box-style-5 .client-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: end;
  border-top: 1px solid #DFDCD2;
  margin-top: 30px;
  padding-top: 30px;
}

@media (max-width: 767px) {
  .testimonial-box-style-5 .client-info-item {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.testimonial-box-style-5 .client-info-item .client-info h4 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
}

@media (max-width: 1600px) {
  .testimonial-box-style-5 .client-info-item .client-info h4 {
    font-size: 18px;
  }
}

.testimonial-box-style-5 .client-info-item .client-info span {
  font-weight: 400;
  color: #111827;
  font-size: 16px;
}

.testimonial-box-style-5 .client-info-item .star {
  color: var(--theme);
  font-size: 16px;
}

.testimonial-box-style-5.style-2 {
  background-color: #111827;
  margin-top: 400px;
}

@media (max-width: 1199px) {
  .testimonial-box-style-5.style-2 {
    margin-top: 30px;
  }
}

.testimonial-box-style-5.style-2 h3 {
  color: var(--white);
  opacity: 0.8;
}

.testimonial-box-style-5.style-2 .client-info-item {
  border-top: 1px solid rgba(223, 220, 210, 0.12);
}

.testimonial-box-style-5.style-2 .client-info-item .client-info h4 {
  color: var(--white);
}

.testimonial-box-style-5.style-2 .client-info-item .client-info span {
  color: var(--white);
}

.testimonial-box-style-5.style-2 .client-info-item .star {
  color: var(--theme);
}

.testimonial-box-style-5.style-3 {
  margin-top: 400px;
}

@media (max-width: 1199px) {
  .testimonial-box-style-5.style-3 {
    margin-top: 30px;
  }
}

.pricing-box-items {
  background-color: #F0F4FF;
  border-radius: 8px;
  padding: 40px 30px;
  transition: all 0.4s ease-in-out;
}

.pricing-box-items .pricing-header {
  margin-bottom: 30px;
}

.pricing-box-items .pricing-header span {
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  display: inline-block;
  margin-bottom: 20px;
  color: #111827;
}

.pricing-box-items .pricing-header h3 {
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 25px;
  color: #111827;
}

@media (max-width: 1399px) {
  .pricing-box-items .pricing-header h3 {
    font-size: 55px;
  }
}

.pricing-box-items .pricing-header h3 sub {
  font-size: 16px;
  font-weight: 500;
  color: #475569;
  letter-spacing: initial;
  margin-left: 0;
}

.pricing-box-items .pricing-header p {
  color: #475569;
  font-size: 16px;
}

.pricing-box-items .pricing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  padding: 0 30px;
  border-radius: 48px;
  background: #2563EB;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-in-out;
}

.pricing-box-items .pricing-btn .content-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

.pricing-box-items .pricing-btn .default-content,
.pricing-box-items .pricing-btn .hover-content {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateY(0);
  white-space: nowrap;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.pricing-box-items .pricing-btn .default-content {
  transform: translate(-50%, -50%) translateY(0);
  opacity: 1;
}

.pricing-box-items .pricing-btn .hover-content {
  transform: translate(-50%, -50%) translateY(30px);
  opacity: 0;
}

.pricing-box-items .pricing-btn:hover {
  background: var(--theme);
}

.pricing-box-items .pricing-btn:hover .default-content {
  transform: translate(-50%, -50%) translateY(-30px);
  opacity: 0;
}

.pricing-box-items .pricing-btn:hover .hover-content {
  transform: translate(-50%, -50%) translateY(0);
  opacity: 1;
}

.pricing-box-items .pricing-list {
  margin-top: 30px;
  padding: 30px;
  background-color: var(--white);
  border-radius: 8px;
}

.pricing-box-items .pricing-list h4 {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

@media (max-width: 1199px) {
  .pricing-box-items .pricing-list h4 {
    letter-spacing: inherit;
  }
}

.pricing-box-items .pricing-list ul {
  margin-top: 20px;
}

.pricing-box-items .pricing-list ul li {
  color: #6B7280;
  font-size: 16px;
  font-weight: 500;
  line-height: 162.5%;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-box-items .pricing-list ul li i {
  font-size: 18px;
  color: #6B7280;
}

.pricing-box-items .pricing-list ul li:not(:last-child) {
  margin-bottom: 15px;
}

.pricing-box-items.active {
  background-color: var(--theme);
}

.pricing-box-items.active .pricing-header {
  margin-bottom: 30px;
}

.pricing-box-items.active .pricing-header span,
.pricing-box-items.active .pricing-header h3,
.pricing-box-items.active .pricing-header p,
.pricing-box-items.active .pricing-header sub {
  color: var(--white) !important;
}

.pricing-box-items.active .pricing-btn {
  background-color: var(--white);
  color: #111827;
}

.pricing-box-items.active .pricing-btn:hover {
  background-color: #111827;
  color: var(--header);
}

.pricing-box-items.active .pricing-list {
  background: rgb(255, 255, 255);
  backdrop-filter: blur(20px);
}

.pricing-box-items.active .pricing-list ul {
  margin-top: 20px;
}

.pricing-box-items.active .pricing-list ul li i {
  color: var(--theme);
}

.pricing-box-items:hover {
  transform: translateY(-10px);
}

.pricing-wrap {
  margin-left: -45px;
}

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

@media (max-width: 1199px) {
  .pricing-content-one {
    text-align: center;
    margin-bottom: 30px;
  }
}

.pricing-content-one .pricing-toggle-wrapper {
  display: inline-flex;
  align-items: center;
  height: 60px;
  line-height: 60px;
  background: #1E40AF;
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 70px;
  padding: 7px;
  border-radius: 70px;
  margin-top: 50px;
}

@media (max-width: 1199px) {
  .pricing-content-one .pricing-toggle-wrapper {
    margin-top: 20px;
  }
}

.pricing-content-one .pricing-toggle-wrapper .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ddd;
  transition: 0.4s;
  border-radius: 34px;
}

.pricing-content-one .pricing-toggle-wrapper .slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.pricing-content-one .pricing-toggle-wrapper input:checked+.slider {
  background-color: var(--theme);
}

.pricing-content-one .pricing-toggle-wrapper input:checked+.slider:before {
  transform: translateX(26px);
}

.pricing-content-one .pricing-toggle-wrapper .toggle-label {
  padding: 0;
  height: 47px;
  line-height: 47px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  border-radius: 66.667px;
  cursor: pointer;
  transition: 0.3s;
}

.pricing-content-one .pricing-toggle-wrapper .toggle-label.active {
  background: var(--theme);
}

.pricing-content-one .price {
  transition: opacity 0.3s ease;
}

.pricing-content-one .price.fade-out {
  opacity: 0;
}

.pricing-content-one .price.fade-in {
  opacity: 1;
}

.pricing-content-one .pricing-shape {
  margin-top: 40px;
  animation: rounded 5s linear infinite;
}

@media (max-width: 1199px) {
  .pricing-content-one .pricing-shape {
    display: none;
  }
}

.sec-line-shape img {
  width: 100%;
}

.project-section .section-title {
  margin-left: 180px;
  margin-bottom: 70px;
}

@media (max-width: 1199px) {
  .project-section .section-title {
    margin-left: 0;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .project-section .section-title {
    margin-bottom: 30px;
  }
}

.project-section .section-title h2 {
  text-transform: uppercase;
  font-size: 200px;
  line-height: 0.9;
}

@media (max-width: 1600px) {
  .project-section .section-title h2 {
    font-size: 170px;
  }
}

@media (max-width: 1399px) {
  .project-section .section-title h2 {
    font-size: 140px;
  }
}

@media (max-width: 1199px) {
  .project-section .section-title h2 {
    line-height: 110%;
    font-size: 125px;
  }
}

@media (max-width: 991px) {
  .project-section .section-title h2 {
    font-size: 111px;
  }
}

@media (max-width: 767px) {
  .project-section .section-title h2 {
    font-size: 90px;
  }
}

@media (max-width: 575px) {
  .project-section .section-title h2 {
    font-size: 80px;
  }
}

@media (max-width: 470px) {
  .project-section .section-title h2 {
    font-size: 60px;
  }
}

.project-section .work-title .last {
  display: inline-block;
  transition: all 0.3s ease;
  margin-left: 290px;
}

@media (max-width: 991px) {
  .project-section .work-title .last {
    margin-left: 150px;
  }
}

@media (max-width: 767px) {
  .project-section .work-title .last {
    margin-left: 0;
  }
}

.project-section .work-title .last .work-title .first,
.project-section .work-title .last .work-title .last {
  display: inline-block;
  will-change: transform;
}

.project-section .container-fluid {
  max-width: 1680px;
}

.project-wrapper {
  margin: 0 30px;
}

@media (max-width: 1399px) {
  .project-wrapper {
    margin: 0 25px;
  }
}

@media (max-width: 1199px) {
  .project-wrapper {
    margin: 0 20px;
  }
}

.project-wrapper .text-items {
  margin-left: 255px;
  margin-bottom: 100px;
  margin-top: 30px;
}

@media (max-width: 1600px) {
  .project-wrapper .text-items {
    margin-left: 150px;
  }
}

@media (max-width: 1199px) {
  .project-wrapper .text-items {
    max-width: 400px;
    margin-bottom: 40px;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .project-wrapper .text-items {
    text-align: center;
    margin: 30px auto 0;
  }
}

.project-wrapper .text-items p {
  color: #B1B1B1;
}

.project-wrapper .text-items .news-btn {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  font-family: "Urbanist", sans-serif;
  color: var(--white);
  overflow: hidden;
  text-transform: capitalize;
  margin-top: 18px;
}

.project-wrapper .text-items .news-btn i {
  margin-left: 7px;
}

.project-wrapper .text-items .news-btn .text {
  position: relative;
  display: inline-block;
  height: 22px;
  overflow: hidden;
}

.project-wrapper .text-items .news-btn .text-default,
.project-wrapper .text-items .news-btn .text-hover {
  display: block;
  transition: transform 0.4s ease;
}

.project-wrapper .text-items .news-btn .text-hover {
  position: absolute;
  left: 0;
  top: 100%;
  color: var(--theme);
}

.project-wrapper .text-items .news-btn:hover .text-default {
  transform: translateY(-100%);
}

.project-wrapper .text-items .news-btn:hover .text-hover {
  transform: translateY(-100%);
}

.project-wrapper .text-items .news-btn i {
  transition: transform 0.4s ease;
}

.project-box-items {
  margin-top: 30px;
}

.project-box-items.style-max-width {
  max-width: 578px;
}

@media (max-width: 767px) {
  .project-box-items.style-max-width {
    max-width: initial;
  }
}

.project-box-items.style-left-auto {
  margin-left: auto;
}

@media (max-width: 767px) {
  .project-box-items.style-left-auto {
    margin-left: initial;
  }
}

.project-box-items.style-height-one {
  margin-top: 170px;
}

@media (max-width: 1199px) {
  .project-box-items.style-height-one {
    margin-top: 70px;
  }
}

.project-box-items.style-height-two {
  margin-top: 80px;
}

@media (max-width: 1199px) {
  .project-box-items.style-height-two {
    margin-top: 40px;
  }
}

.project-box-items .thumb {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .project-box-items .thumb {
    height: 500px;
  }
}

.project-box-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.project-box-items .content {
  margin-top: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .project-box-items .content {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.project-box-items .content .title {
  font-size: 30px;
  font-weight: 600;
  text-transform: capitalize;
}

.project-box-items .content .title a:hover {
  color: var(--theme);
}

.project-box-items .content ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-box-items .content ul li a {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 13px;
  border-radius: 35px;
  display: inline-block;
  line-height: 1;
  transition: all 0.4s ease-in-out;
}

.project-box-items .content ul li a:hover {
  background-color: var(--theme);
  border-color: var(--theme);
}

.project-box-items-2 {
  max-width: 795px;
  margin-top: 80px;
}

@media (max-width: 1199px) {
  .project-box-items-2 {
    margin-top: 30px;
  }
}

@media (min-width: 1200px) {
  .project-box-items-2.style-auto {
    margin-left: auto;
  }
}

.project-box-items-2 .thumb {
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}

@media (max-width: 1199px) {
  .project-box-items-2 .thumb {
    height: 500px;
  }
}

.project-box-items-2 .thumb .arrow-icon {
  display: inline-block;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  border-radius: 20px;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transition: all 0.4s ease-in-out;
}

.project-box-items-2 .thumb .arrow-icon:hover {
  background-color: var(--white);
  color: #000;
}

.project-box-items-2 .thumb::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(181.38deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.8) 98.83%);
  z-index: 9;
  border-radius: 20px;
}

.project-box-items-2 .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 20px;
}

.project-box-items-2 .thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.project-box-items-2 .thumb .content-items {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  z-index: 99;
  background: rgba(37, 99, 235, 0.06);
  padding: 30px;
  display: flex;
  border-radius: 10px;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .project-box-items-2 .thumb .content-items {
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 25px;
  }
}

@media (max-width: 991px) {
  .project-box-items-2 .thumb .content-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.project-box-items-2 .thumb .content-items .content .title {
  font-size: 32px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .project-box-items-2 .thumb .content-items .content .title {
    font-size: 23px;
  }
}

.project-box-items-2 .thumb .content-items .content .title a {
  color: var(--white);
}

.project-box-items-2 .thumb .content-items .content .title a:hover {
  color: var(--theme);
}

.project-box-items-2 .thumb .content-items .content .tag-items {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.project-box-items-2 .thumb .content-items .content .tag-items a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  background: rgba(37, 99, 235, 0.06);
  border-radius: 48px;
  padding: 3px 14px;
}

.project-box-items-2 .thumb .content-items .content .tag-items a:hover {
  background-color: var(--theme);
}

.project-box-items-2 .thumb .content-items .year-text {
  display: inline-block;
  line-height: 1;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
}

@media (max-width: 1199px) {
  .project-box-items-2 .thumb .content-items .year-text {
    font-size: 20px;
  }
}

.project-box-items-2:hover .thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.project-box-items-2:hover .thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.project-box-items-2:hover .thumb .arrow-icon {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.project-wrapper-3 .section-title {
  margin-left: 70px;
}

@media (max-width: 1199px) {
  .project-wrapper-3 .section-title {
    margin-left: 0;
  }
}

.project-wrapper-3 .section-title p {
  color: #B1B1B1;
  font-size: 18px;
  font-weight: 500;
  max-width: 270px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.project-wrapper-3 .project-box-items-3 li {
  border-radius: 12px;
  background-color: var(--white);
  box-shadow: 0 4px 30px 0 rgba(41, 15, 28, 0.1);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 35px;
}

@media (max-width: 767px) {
  .project-wrapper-3 .project-box-items-3 li {
    display: block;
  }
}

.project-wrapper-3 .project-box-items-3 li:not(:last-child) {
  margin-bottom: 30px;
}

.project-wrapper-3 .project-box-items-3 li .thumb {
  max-width: 330px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .project-wrapper-3 .project-box-items-3 li .thumb {
    max-width: initial;
    margin-bottom: 15px;
  }
}

.project-wrapper-3 .project-box-items-3 li .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.project-wrapper-3 .project-box-items-3 li .thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.project-wrapper-3 .project-box-items-3 li .content {
  position: relative;
}

.project-wrapper-3 .project-box-items-3 li .content span {
  color: var(--theme);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 10px;
  display: inline-block;
}

.project-wrapper-3 .project-box-items-3 li .content h3 {
  color: #111827;
  font-size: 32px;
  font-weight: 600;
  text-transform: capitalize;
}

@media (max-width: 1399px) {
  .project-wrapper-3 .project-box-items-3 li .content h3 {
    font-size: 26px;
  }
}

@media (max-width: 1199px) {
  .project-wrapper-3 .project-box-items-3 li .content h3 {
    font-size: 24px;
  }
}

.project-wrapper-3 .project-box-items-3 li .content h3 a {
  color: #111827;
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.project-wrapper-3 .project-box-items-3 li .content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.project-wrapper-3 .project-box-items-3 li .content .icon {
  display: inline-block;
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  border-radius: 50%;
  background-color: #111827;
  color: var(--white);
  font-size: 18px;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .project-wrapper-3 .project-box-items-3 li .content .icon {
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-size: 16px;
    margin-top: 12px;
  }
}

.project-wrapper-3 .project-box-items-3 li .content .icon:hover {
  background-color: var(--theme);
  color: var(--white);
}

.project-wrapper-3 .project-box-items-3 li:hover .thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.project-wrapper-3 .project-box-items-3 li:hover .thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.project-thumb-style-4 {
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

@media (max-width: 1199px) {
  .project-thumb-style-4 {
    margin-top: 30px;
    height: 500px;
  }
}

.project-thumb-style-4 img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 10px;
}

.project-thumb-style-4 img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.project-thumb-style-4 .content {
  background: rgba(37, 99, 235, 0.06);
  border-radius: 10px;
  padding: 18px 50px;
  position: absolute;
  bottom: -70px;
  left: 30px;
  right: 30px;
  z-index: 8;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 1199px) {
  .project-thumb-style-4 .content {
    left: 20px;
    right: 20px;
    padding: 18px 20px;
  }
}

.project-thumb-style-4 .content span {
  font-size: 16px;
  color: #fff;
  display: inline-block;
  margin-bottom: 12px;
}

.project-thumb-style-4 .content .title {
  text-transform: capitalize;
  max-width: 350px;
  line-height: 125%;
}

.project-thumb-style-4 .content .title a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.project-thumb-style-4 .content .title a:hover {
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.project-thumb-style-4 .content .arrow-icon {
  display: inline-block;
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  margin-top: 25px;
}

.project-thumb-style-4 .content .arrow-icon:hover {
  background-color: var(--white);
  color: #000;
}

.project-thumb-style-4:hover img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.project-thumb-style-4:hover img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.project-thumb-style-4:hover .content {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}

@media (max-width: 1199px) {
  .project-thumb-style-4:hover .content {
    bottom: 20px;
  }
}

.project-section-4 .theme-btn-main {
  background-color: var(--white);
}

.project-section-4 .theme-btn-main .theme-btn {
  color: #000;
}

.project-section-4 .theme-btn-main .theme-btn-arrow-left,
.project-section-4 .theme-btn-main .theme-btn-arrow-right {
  background-color: var(--theme);
  color: #fff;
}

.project-section-4 .project-text {
  color: #6B7280;
  text-transform: capitalize;
  text-align: center;
  margin-top: 90px;
}

.project-section-4 .project-text a {
  color: var(--white);
  text-decoration: underline;
}

.award-winning-section .section-title {
  margin-bottom: 40px;
}

.award-winning-area .award-winning-box-items {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 15px;
}

@media (max-width: 991px) {
  .award-winning-area .award-winning-box-items {
    display: block;
  }
}

.award-winning-area .award-winning-box-items .text-items {
  color: var(--theme);
  border: 1px solid rgba(37, 99, 235, 0.15);
  font-size: 70px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  max-width: 476px;
  border-radius: 100px;
  padding: 30px 26px;
}

@media (max-width: 991px) {
  .award-winning-area .award-winning-box-items .text-items {
    max-width: initial;
    margin-bottom: 30px;
    font-size: 50px;
  }
}

.award-winning-area .award-winning-box-items .text-items.style-2 .marquee {
  gap: 30px;
}

.award-winning-area .award-winning-box-items .text-items.style-2 .marquee-group {
  animation: scrollLTR var(--duration) linear infinite;
}

.award-winning-area .award-winning-box-items .thumb {
  max-width: 919px;
  height: 120px;
}

@media (max-width: 991px) {
  .award-winning-area .award-winning-box-items .thumb {
    margin-bottom: 20px;
  }
}

.award-winning-area .award-winning-box-items .thumb img {
  border-radius: 100px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-box-items-5 {
  max-width: 750px;
  margin-top: 80px;
}

@media (max-width: 1199px) {
  .project-box-items-5 {
    margin-top: 30px;
  }
}

@media (min-width: 1200px) {
  .project-box-items-5.style-auto {
    margin-left: auto;
  }
}

.project-box-items-5 .thumb {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

@media (max-width: 1199px) {
  .project-box-items-5 .thumb {
    height: 500px;
  }
}

.project-box-items-5 .thumb .arrow-icon {
  display: inline-block;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  border-radius: 50%;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transition: all 0.4s ease-in-out;
}

.project-box-items-5 .thumb .arrow-icon:hover {
  background-color: var(--white);
  color: #111827;
}

.project-box-items-5 .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 10px;
}

.project-box-items-5 .thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.project-box-items-5 .content-items {
  z-index: 99;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .project-box-items-5 .content-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.project-box-items-5 .content-items .content .title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}

@media (max-width: 1199px) {
  .project-box-items-5 .content-items .content .title {
    font-size: 23px;
  }
}

.project-box-items-5 .content-items .content .title a:hover {
  color: var(--theme);
}

.project-box-items-5 .content-items .content .tag-items {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.project-box-items-5 .content-items .content .tag-items a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 48px;
  padding: 3px 14px;
}

.project-box-items-5 .content-items .content .tag-items a:hover {
  background-color: var(--theme);
  color: var(--white);
  border-color: var(--theme);
}

.project-box-items-5 .content-items .year-text {
  display: inline-block;
  line-height: 1;
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 1199px) {
  .project-box-items-5 .content-items .year-text {
    font-size: 20px;
  }
}

.project-box-items-5:hover .thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.project-box-items-5:hover .thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.project-box-items-5:hover .thumb .arrow-icon {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.project-details-wrapper .project-details-top-item .top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1399px) {
  .project-details-wrapper .project-details-top-item .top-content {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.project-details-wrapper .project-details-top-item .top-content h2 {
  font-size: 120px;
  font-weight: 600;
}

@media (max-width: 1399px) {
  .project-details-wrapper .project-details-top-item .top-content h2 {
    font-size: 60px;
  }
}

@media (max-width: 991px) {
  .project-details-wrapper .project-details-top-item .top-content h2 {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .project-details-wrapper .project-details-top-item .top-content h2 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .project-details-wrapper .project-details-top-item .top-content h2 {
    font-size: 30px;
  }
}

.project-details-wrapper .project-details-top-item .top-content p {
  font-size: 18px;
  font-weight: 500;
  max-width: 397px;
}

@media (max-width: 1399px) {
  .project-details-wrapper .project-details-top-item .top-content p {
    font-size: 16px;
  }
}

.project-details-wrapper .project-details-top-item .project-details-info-item {
  display: flex;
  align-items: center;
  gap: 90px;
  margin-top: 50px;
}

@media (max-width: 1399px) {
  .project-details-wrapper .project-details-top-item .project-details-info-item {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 60px;
  }
}

@media (max-width: 991px) {
  .project-details-wrapper .project-details-top-item .project-details-info-item {
    gap: 30px;
  }
}

.project-details-wrapper .project-details-top-item .project-details-info-item .content {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding-right: 180px;
}

@media (max-width: 1399px) {
  .project-details-wrapper .project-details-top-item .project-details-info-item .content {
    padding-right: 0;
    border-right: none;
  }
}

.project-details-wrapper .project-details-top-item .project-details-info-item .content.style-2 {
  border-right: none;
  padding-right: 0;
}

.project-details-wrapper .project-details-top-item .project-details-info-item .content span {
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 15px;
}

.project-details-wrapper .project-details-top-item .project-details-info-item .content p {
  font-size: 18px;
  font-weight: 600;
}

.project-details-wrapper .project-details-top-item .project-details-image {
  overflow: hidden;
  margin-top: 50px;
  margin-bottom: 100px;
  border-radius: 12px;
}

@media (max-width: 1399px) {
  .project-details-wrapper .project-details-top-item .project-details-image {
    margin-bottom: 30px;
    margin-top: 30px;
  }
}

.project-details-wrapper .project-details-top-item .project-details-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.project-details-wrapper .project-details-top-item .left-text h2 {
  font-size: 72px;
  font-weight: 600;
}

@media (max-width: 1600px) {
  .project-details-wrapper .project-details-top-item .left-text h2 {
    font-size: 60px;
  }
}

@media (max-width: 1399px) {
  .project-details-wrapper .project-details-top-item .left-text h2 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .project-details-wrapper .project-details-top-item .left-text h2 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .project-details-wrapper .project-details-top-item .left-text h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .project-details-wrapper .project-details-top-item .left-text h2 {
    font-size: 25px;
  }
}

.project-details-wrapper .project-details-top-item .details-content p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .project-details-wrapper .project-details-top-item .details-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.project-details-wrapper .project-details-top-item .details-content .details-list {
  max-width: 320px;
  width: 100%;
}

.project-details-wrapper .project-details-top-item .details-content .details-list li {
  font-size: 18px;
  font-weight: 500;
  border-top: 1px solid rgba(37, 99, 235, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

@media (max-width: 1399px) {
  .project-details-wrapper .project-details-top-item .details-content .details-list li {
    font-size: 16px;
  }
}

.project-details-wrapper .project-details-top-item .details-content .details-list li i {
  margin-right: 5px;
}

.project-details-wrapper .project-details-top-item .details-image-item {
  margin-top: 100px;
  margin-bottom: 100px;
}

@media (max-width: 1399px) {
  .project-details-wrapper .project-details-top-item .details-image-item {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.project-details-wrapper .project-details-top-item .details-image-item .thumb {
  overflow: hidden;
  border-radius: 12px;
}

.project-details-wrapper .project-details-top-item .details-image-item .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.project-details-wrapper .project-details-top-item .details-box {
  margin-top: 30px;
  background-color: var(--bg);
  padding: 40px 30px;
  border-radius: 12px;
}

.project-details-wrapper .project-details-top-item .details-box .number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 100px;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 120px;
  background-color: var(--theme);
}

@media (max-width: 1399px) {
  .project-details-wrapper .project-details-top-item .details-box .number {
    margin-bottom: 90px;
  }
}

.project-details-wrapper .project-details-top-item .details-box h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.project-details-wrapper .project-details-top-item .details-box p {
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 1600px) {
  .project-details-wrapper .project-details-top-item .details-box p {
    font-size: 15px;
  }
}

@media (max-width: 1399px) {
  .project-details-wrapper .project-details-top-item .details-box p {
    font-size: 16px;
  }
}

.project-details-wrapper .project-details-top-item .details-bottom-content {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin-top: 100px;
}

@media (max-width: 1399px) {
  .project-details-wrapper .project-details-top-item .details-bottom-content {
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
  }
}

.project-details-wrapper .project-details-top-item .details-bottom-content .right-content p {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
  max-width: 682px;
}

@media (max-width: 1399px) {
  .project-details-wrapper .project-details-top-item .details-bottom-content .right-content p {
    font-size: 16px;
  }
}

.project-details-wrapper .project-details-top-item .slider-button {
  border-top: 1px solid rgba(37, 99, 235, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 50px;
  padding: 15px 0;
}

.project-details-wrapper .project-details-top-item .slider-button span {
  font-weight: 500;
}

.project-details-wrapper .project-details-top-item .slider-button img {
  filter: brightness(0) invert(1);
}

.project-details-wrapper .project-details-top-item .slider-button .cmn-next,
.project-details-wrapper .project-details-top-item .slider-button .cmn-prev {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  transition: all 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-radius: 8px;
}

.project-details-wrapper .project-details-top-item .slider-button .cmn-next i,
.project-details-wrapper .project-details-top-item .slider-button .cmn-prev i {
  transition: all 0.4s;
}

.project-details-wrapper .project-details-top-item .slider-button .cmn-next:hover,
.project-details-wrapper .project-details-top-item .slider-button .cmn-prev:hover {
  background: var(--theme);
  border-color: var(--theme);
}

.project-details-wrapper .project-details-top-item .slider-button .cmn-next:hover i,
.project-details-wrapper .project-details-top-item .slider-button .cmn-prev:hover i {
  color: var(--white);
}

.project-details-wrapper .project-details-top-item .slider-button .previus-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
}

.project-section-6 .project-nav .project-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .project-section-6 .project-nav .project-top {
    flex-wrap: wrap;
    gap: 25px;
  }
}

.project-section-6 .project-nav .project-top h2 {
  font-size: 170px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

@media (max-width: 1399px) {
  .project-section-6 .project-nav .project-top h2 {
    font-size: 90px;
  }
}

@media (max-width: 991px) {
  .project-section-6 .project-nav .project-top h2 {
    font-size: 80px;
  }
}

@media (max-width: 767px) {
  .project-section-6 .project-nav .project-top h2 {
    font-size: 65px;
  }
}

@media (max-width: 575px) {
  .project-section-6 .project-nav .project-top h2 {
    font-size: 55px;
  }
}

.project-section-6 .project-nav .nav {
  display: flex;
  margin-bottom: -30px;
  gap: 8px;
}

@media (max-width: 1199px) {
  .project-section-6 .project-nav .nav {
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
}

.project-section-6 .project-nav .nav li .nav-link {
  transition: all 0.4s ease-in-out;
  padding: 9px 15px;
  border-radius: 100px;
  border: 1px solid rgb(3, 7, 13);
  line-height: 1;
  color: var(--header);
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
  position: relative;
  letter-spacing: -0.03em;
}

.project-section-6 .project-nav .nav li .nav-link.active {
  position: relative;
  border-radius: 100px;
  background: var(--header);
  color: var(--white);
  border: 1px solid var(--header);
}

.project-details-section .details-thumbs {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
}

.project-details-section .details-thumbs img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.team-list-items {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.team-list-items .team-title {
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 9;
  border-bottom: 1px solid rgba(37, 99, 235, 0.08);
}

@media (max-width: 470px) {
  .team-list-items .team-title {
    display: grid;
    justify-content: center;
    gap: 20px;
    text-align: center;
  }
}

.team-list-items .team-title .title {
  font-size: 40px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1;
  opacity: 0.25;
}

@media (max-width: 1399px) {
  .team-list-items .team-title .title {
    font-size: 25px;
  }
}

@media (max-width: 1199px) {
  .team-list-items .team-title .title {
    font-size: 22px;
  }
}

.team-list-items .team-title .text {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 51px;
  line-height: 51px;
  border-radius: 100px;
  padding: 0 17px;
  transform: rotate(12deg);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05), 0 8px 30px rgba(0, 0, 0, 0.6);
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
  .team-list-items .team-title .text {
    font-size: 14px;
    height: 48px;
    line-height: 48px;
    padding: 0 14px;
  }
}

.team-list-items .team-title .social-icon {
  gap: 5px;
}

.team-list-items .team-title .social-icon a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  text-align: center;
}

.team-list-items .team-title .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
  border-color: var(--theme);
}

.team-list-items .team-title.active::after {
  left: 0;
  width: 100%;
}

.team-list-items .team-title.active .title {
  opacity: 1;
}

.team-list-items .team-title.active .title a {
  color: var(--white);
}

.team-list-items .team-title.active .text {
  opacity: 1;
  visibility: visible;
}

.team-list-items .team-title.active .icon {
  background-color: var(--white);
  color: var(--theme);
}

.gt-team-one-image-outer {
  position: relative;
  height: 100%;
  margin-top: 30px;
}

.gt-team-one-image-outer::before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #101010 64.42%);
  width: 100%;
  height: 210px;
  z-index: 9;
}

.gt-team-one-image-outer::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: "";
  background: rgba(37, 99, 235, 0.5);
  filter: blur(117px);
  width: 446px;
  height: 400px;
  z-index: -1;
}

.gt-team-one_images-outer {
  position: relative;
  height: 100%;
}

.gt-team-one-image {
  position: absolute;
  left: 110px;
  top: 0px;
  opacity: 0;
  display: block;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -webkit-transform: rotate(-5deg) translateX(0px);
  transform: rotate(-5deg) translateX(0px);
}

@media (max-width: 991px) {
  .gt-team-one-image {
    display: none;
    position: static;
    max-width: 445px;
  }
}

.gt-team-one-image.active {
  opacity: 1;
  -webkit-transform: rotate(0deg) translateX(0px);
  transform: rotate(0deg) translateX(0px);
}

@media (max-width: 991px) {
  .gt-team-one-image.active {
    display: block;
  }
}

.gt-team-one-image img {
  width: 100%;
  height: 100%;
}

.team-section-3 {
  position: relative;
}

.team-section-3 .circle-line {
  position: absolute;
  bottom: 120px;
  left: 0;
}

@media (max-width: 991px) {
  .team-section-4 .content {
    order: 2;
  }
}

.team-section-4 .content p {
  color: #B1B1B1;
}

.team-section-4 .content .news-btn {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  font-family: "Urbanist", sans-serif;
  color: var(--white);
  overflow: hidden;
  text-transform: capitalize;
  margin-top: 18px;
}

.team-section-4 .content .news-btn i {
  margin-left: 7px;
}

.team-section-4 .content .news-btn .text {
  position: relative;
  display: inline-block;
  height: 22px;
  overflow: hidden;
}

.team-section-4 .content .news-btn .text-default,
.team-section-4 .content .news-btn .text-hover {
  display: block;
  transition: transform 0.4s ease;
}

.team-section-4 .content .news-btn .text-hover {
  position: absolute;
  left: 0;
  top: 100%;
  color: var(--theme);
}

.team-section-4 .content .news-btn:hover .text-default {
  transform: translateY(-100%);
}

.team-section-4 .content .news-btn:hover .text-hover {
  transform: translateY(-100%);
}

.team-section-4 .content .news-btn i {
  transition: transform 0.4s ease;
}

.team-thumb-4 {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-top: 10px;
}

@media (max-width: 1199px) {
  .team-thumb-4 {
    margin-top: 30px;
  }
}

.team-thumb-4 img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-thumb-4 img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.team-thumb-4 .team-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 30px;
  background: rgba(37, 99, 235, 0.06);
  border-radius: 0px 0px 10px 10px;
  z-index: 88;
  padding-top: 25px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.team-thumb-4 .team-content .title {
  font-size: 24px;
  text-transform: capitalize;
}

.team-thumb-4 .team-content .title a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.team-thumb-4 .team-content .title a:hover {
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.team-thumb-4 .team-content p {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.team-thumb-4:hover img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.team-thumb-4:hover img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.team-thumb-4:hover .team-content {
  opacity: 1;
  visibility: visible;
}

.team-section-4 {
  position: relative;
}

.team-section-4 .team-left {
  position: absolute;
  top: -100px;
  left: 0;
}

.team-section-4 .team-right {
  position: absolute;
  bottom: -100px;
  right: 0;
}

@media (max-width: 991px) {
  .team-section-5 .section-title-area {
    justify-content: center;
    text-align: center;
  }
}

.team-section-5 .section-title-area .content p {
  max-width: 471px;
}

@media (max-width: 991px) {
  .team-section-5 .section-title-area .content p {
    margin: 0 auto;
  }
}

.team-section-5 .section-title-area .content .news-btn {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
  color: var(--white);
  overflow: hidden;
  text-transform: capitalize;
  margin-top: 20px;
}

.team-section-5 .section-title-area .content .news-btn i {
  margin-left: 7px;
}

.team-section-5 .section-title-area .content .news-btn .text {
  position: relative;
  display: inline-block;
  height: 22px;
  overflow: hidden;
}

.team-section-5 .section-title-area .content .news-btn .text-default,
.team-section-5 .section-title-area .content .news-btn .text-hover {
  display: block;
  transition: transform 0.4s ease;
}

.team-section-5 .section-title-area .content .news-btn .text-hover {
  position: absolute;
  left: 0;
  top: 100%;
  color: var(--theme);
}

.team-section-5 .section-title-area .content .news-btn:hover .text-default {
  transform: translateY(-100%);
}

.team-section-5 .section-title-area .content .news-btn:hover .text-hover {
  transform: translateY(-100%);
}

.team-section-5 .section-title-area .content .news-btn i {
  transition: transform 0.4s ease;
}

.team-image-items-5 {
  margin-top: 30px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .team-image-items-5 {
    height: 500px;
  }
}

.team-image-items-5 img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-image-items-5 img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.team-image-items-5 .team-content {
  background: rgba(37, 99, 235, 0.06);
  border-radius: 10px;
  padding: 30px 20px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
  .team-image-items-5 .team-content {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.team-image-items-5 .team-content .content p {
  font-weight: 600;
  margin-bottom: 4px;
  color: rgb(255, 255, 255);
}

.team-image-items-5 .team-content .content .title {
  font-size: 24px;
}

.team-image-items-5 .team-content .content .title a {
  color: var(--white);
}

.team-image-items-5 .team-content .left-items {
  display: flex;
  align-items: center;
  gap: 60px;
}

@media (max-width: 1399px) {
  .team-image-items-5 .team-content .left-items {
    gap: 20px;
  }
}

.team-image-items-5 .team-content .left-items .social-icon {
  gap: 10px;
}

.team-image-items-5 .team-content .left-items .social-icon a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 14px;
}

.team-image-items-5 .team-content .left-items .social-icon a:hover {
  background-color: var(--theme);
  color: #fff;
}

.team-image-items-5 .team-content .left-items .icon {
  display: inline-block;
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--white);
  transition: all 0.4s ease-in-out;
}

.team-image-items-5 .team-content .left-items .icon:hover {
  background-color: var(--white);
  color: #111827;
}

.team-image-items-5:hover img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.team-image-items-5:hover img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.team-image-items-5:hover .team-content {
  opacity: 1;
  visibility: visible;
}

.team-details-wrapper .team-details-thumb {
  border-radius: 12px;
}

@media (max-width: 1600px) {
  .team-details-wrapper .team-details-thumb {
    height: 860px;
  }

  .team-details-wrapper .team-details-thumb img {
    object-fit: cover;
  }
}

@media (max-width: 991px) {
  .team-details-wrapper .team-details-thumb {
    height: 500px;
  }

  .team-details-wrapper .team-details-thumb img {
    object-fit: initial;
  }
}

.team-details-wrapper .team-details-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.team-details-wrapper .team-details-content {
  margin-left: 50px;
}

@media (max-width: 1399px) {
  .team-details-wrapper .team-details-content {
    margin-left: 0;
  }
}

.team-details-wrapper .team-details-content h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 13px;
}

@media (max-width: 1399px) {
  .team-details-wrapper .team-details-content h2 {
    font-size: 35px;
  }
}

.team-details-wrapper .team-details-content span {
  border: 1px solid rgba(255, 255, 25, 0.12);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  padding: 2px 10px;
  display: inline-block;
  margin-bottom: 25px;
}

@media (max-width: 1399px) {
  .team-details-wrapper .team-details-content span {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.team-details-wrapper .team-details-content p {
  font-size: 18px;
  font-weight: 400;
  margin-top: 15px;
}

@media (max-width: 1399px) {
  .team-details-wrapper .team-details-content p {
    font-size: 16px;
  }
}

.team-details-wrapper .team-details-content .team-info-content {
  border-top: 1px solid rgba(255, 255, 25, 0.12);
  padding-top: 25px;
  margin-top: 25px;
}

.team-details-wrapper .team-details-content .team-info-content h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}

.team-details-wrapper .team-details-content .team-info-content a {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

@media (max-width: 1399px) {
  .team-details-wrapper .team-details-content .team-info-content a {
    font-size: 16px;
  }
}

.team-details-wrapper .team-details-content .team-info-content .text {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
  border: none;
  padding: 0;
}

@media (max-width: 1399px) {
  .team-details-wrapper .team-details-content .team-info-content .text {
    font-size: 16px;
  }
}

.team-details-wrapper .team-details-content .team-info-content .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.team-details-wrapper .team-details-content .team-info-content .social-icon a {
  color: var(--header);
  width: 37px;
  height: 37px;
  line-height: 37px;
  text-align: center;
  border-radius: 100px;
  border: 1px solid var(--header);
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.team-details-wrapper .team-details-content .team-info-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}

.team-contact-items {
  background: var(--bg);
  padding: 120px 60px;
  border-radius: 16px;
}

@media (max-width: 1199px) {
  .team-contact-items {
    padding: 50px;
  }
}

@media (max-width: 767px) {
  .team-contact-items {
    padding: 40px 30px;
  }
}

@media (max-width: 575px) {
  .team-contact-items {
    padding: 30px;
  }
}

.team-contact-items .team-left-items h2 {
  font-size: 72px;
  font-weight: 600;
  margin-bottom: 25px;
}

@media (max-width: 1399px) {
  .team-contact-items .team-left-items h2 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .team-contact-items .team-left-items h2 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .team-contact-items .team-left-items h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .team-contact-items .team-left-items h2 {
    font-size: 25px;
  }
}

.team-contact-items .team-left-items p {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 460px;
}

@media (max-width: 1399px) {
  .team-contact-items .team-left-items p {
    font-size: 16px;
  }
}

.team-contact-items .team-right-items {
  margin-left: 80px;
}

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

.team-contact-items .team-right-items .contact-form-box {
  margin-top: 30px;
}

.team-contact-items .team-right-items .contact-form-box .form-clt input,
.team-contact-items .team-right-items .contact-form-box .form-clt textarea {
  outline: none;
  width: 100%;
  color: var(--header);
  padding: 16px 25px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-transform: capitalize;
  color: var(--header);
  font-size: 16px;
  border-radius: 12px;
}

.team-contact-items .team-right-items .contact-form-box .form-clt input::placeholder,
.team-contact-items .team-right-items .contact-form-box .form-clt textarea::placeholder {
  color: var(--header);
}

.team-contact-items .team-right-items .contact-form-box .form-clt textarea {
  padding-bottom: 120px;
}

.team-contact-items .team-right-items .contact-form-box .form-clt .form .single-select {
  padding: 19px 25px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
  height: initial;
  line-height: initial;
  text-transform: capitalize;
  color: var(--header);
  border-radius: 12px;
  font-size: 16px;
}

.team-contact-items .team-right-items .contact-form-box .form-clt .form .single-select .current {
  color: var(--header);
}

.team-contact-items .team-right-items .contact-form-box .form-clt .form .single-select::after {
  border-bottom: 2px solid var(--header);
  border-right: 2px solid var(--header);
  width: 8px;
  height: 8px;
  right: 12px;
}

.team-contact-items .team-right-items .contact-form-box .form-clt .form .single-select .list {
  width: 100%;
  color: #111827;
}

.team-contact-items .team-right-items .contact-form-box .thems-btn2 {
  display: inline-block;
  background-color: var(--theme);
  color: var(--white);
  border-radius: 12px;
  padding: 18px 30px;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

.team-contact-items .team-right-items .contact-form-box .thems-btn2 i {
  margin-left: 5px;
}

.team-contact-items .team-right-items .contact-form-box .thems-btn2:hover {
  background-color: #111827;
}

.team-contact-section .slider-button {
  border-top: 1px solid rgba(37, 99, 235, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 30px;
  padding: 15px 0;
}

.team-contact-section .slider-button span {
  font-weight: 500;
}

.team-contact-section .slider-button .icon-gird {
  filter: brightness(0) invert(1);
}

.team-contact-section .slider-button .cmn-next,
.team-contact-section .slider-button .cmn-prev {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  transition: all 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.team-contact-section .slider-button .cmn-next i,
.team-contact-section .slider-button .cmn-prev i {
  color: var(--white);
  transition: all 0.4s;
}

.team-contact-section .slider-button .cmn-next:hover,
.team-contact-section .slider-button .cmn-prev:hover {
  background: var(--theme);
  border-color: var(--theme);
}

.team-contact-section .slider-button .cmn-next:hover i,
.team-contact-section .slider-button .cmn-prev:hover i {
  color: var(--white);
}

.team-contact-section .slider-button .previus-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
}

.news-section {
  margin: 0 60px;
  border-radius: 16px;
  margin-bottom: 120px;
}

@media (max-width: 1899px) {
  .news-section {
    margin: 0 35px;
    margin-bottom: 120px;
  }
}

@media (max-width: 1600px) {
  .news-section {
    margin: 0 30px;
    margin-bottom: 120px;
  }
}

@media (max-width: 1399px) {
  .news-section {
    margin: 0 25px;
    margin-bottom: 120px;
  }
}

@media (max-width: 1199px) {
  .news-section {
    margin: 0 20px;
    margin-bottom: 100px;
  }
}

@media (max-width: 991px) {
  .news-section {
    margin-bottom: 80px;
  }
}

@media (max-width: 991px) {
  .news-section .text-items {
    order: 2;
  }
}

.news-section .text-items p {
  color: #B1B1B1;
}

.news-section .text-items .news-btn {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  font-family: "Urbanist", sans-serif;
  color: var(--white);
  overflow: hidden;
  text-transform: capitalize;
  margin-top: 18px;
}

.news-section .text-items .news-btn i {
  margin-left: 7px;
}

.news-section .text-items .news-btn .text {
  position: relative;
  display: inline-block;
  height: 22px;
  overflow: hidden;
}

.news-section .text-items .news-btn .text-default,
.news-section .text-items .news-btn .text-hover {
  display: block;
  transition: transform 0.4s ease;
}

.news-section .text-items .news-btn .text-hover {
  position: absolute;
  left: 0;
  top: 100%;
  color: var(--theme);
}

.news-section .text-items .news-btn:hover .text-default {
  transform: translateY(-100%);
}

.news-section .text-items .news-btn:hover .text-hover {
  transform: translateY(-100%);
}

.news-section .text-items .news-btn i {
  transition: transform 0.4s ease;
}

@media (max-width: 991px) {
  .news-section .section-title {
    order: 1;
  }
}

.news-section .section-title-area {
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
  padding-bottom: 60px;
}

.news-section.news-section-4 .section-title-area {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 30px;
}

.news-box-items {
  margin-top: 60px;
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
  padding-bottom: 60px;
  background-color: #272727;
}

.news-box-items .thumb {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  height: 170px;
}

.news-box-items .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 6px;
}

.news-box-items .thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.news-box-items .content {
  margin-left: 30px;
}

@media (max-width: 1199px) {
  .news-box-items .content {
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  .news-box-items .content {
    margin-top: 30px;
  }
}

.news-box-items .content .title {
  font-size: 30px;
  font-weight: 500;
  text-transform: capitalize;
}

@media (max-width: 1399px) {
  .news-box-items .content .title {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .news-box-items .content .title {
    font-size: 21px;
  }
}

.news-box-items .content .title a:hover {
  color: var(--theme);
}

.news-box-items .content ul {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 1199px) {
  .news-box-items .content ul {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.news-box-items .content ul li .client-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.news-box-items .content ul li .client-info .client-content .name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.news-box-items .content ul li .client-info .client-content p {
  font-size: 14px;
  font-weight: 500;
}

.news-box-items .content ul li .news-line {
  height: 60px;
  width: 1px;
  background-color: rgba(136, 136, 136, 0.2);
}

@media (max-width: 1199px) {
  .news-box-items .content ul li .news-line {
    display: none;
  }
}

.news-box-items .content ul li span {
  border-radius: 4px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 10px;
  line-height: 1;
  color: var(--white);
  margin-right: 10px;
  line-height: 1;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}

.news-box-items .content ul li span.color-2 {
  border-radius: 4px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
}

@media (max-width: 1199px) {
  .news-box-items .content ul li:nth-child(2) {
    display: none;
  }
}

.news-box-items:hover .thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.news-box-items:hover .thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

@media (max-width: 991px) {
  .news-section-2 .section-title-area {
    justify-content: center;
    text-align: center;
  }
}

.news-section-2 .section-title-area .content p {
  max-width: 471px;
}

@media (max-width: 991px) {
  .news-section-2 .section-title-area .content p {
    margin: 0 auto;
  }
}

.news-section-2 .section-title-area .content .news-btn {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
  color: var(--white);
  overflow: hidden;
  text-transform: capitalize;
  margin-top: 20px;
}

.news-section-2 .section-title-area .content .news-btn i {
  margin-left: 7px;
}

.news-section-2 .section-title-area .content .news-btn .text {
  position: relative;
  display: inline-block;
  height: 22px;
  overflow: hidden;
}

.news-section-2 .section-title-area .content .news-btn .text-default,
.news-section-2 .section-title-area .content .news-btn .text-hover {
  display: block;
  transition: transform 0.4s ease;
}

.news-section-2 .section-title-area .content .news-btn .text-hover {
  position: absolute;
  left: 0;
  top: 100%;
  color: var(--theme);
}

.news-section-2 .section-title-area .content .news-btn:hover .text-default {
  transform: translateY(-100%);
}

.news-section-2 .section-title-area .content .news-btn:hover .text-hover {
  transform: translateY(-100%);
}

.news-section-2 .section-title-area .content .news-btn i {
  transition: transform 0.4s ease;
}

.news-wrapper-2 {
  margin-left: -10%;
  margin-right: -10%;
}

@media (max-width: 1199px) {
  .news-wrapper-2 {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.news-box-items-2 {
  margin-top: 30px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 20px;
  padding: 20px;
}

.news-box-items-2 .thumb {
  overflow: hidden;
  position: relative;
}

.news-box-items-2 .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 10px;
}

.news-box-items-2 .thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.news-box-items-2 .content {
  margin-top: 25px;
  padding-bottom: 10px;
}

.news-box-items-2 .content ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.news-box-items-2 .content ul li a {
  font-size: 16px;
  font-weight: 500;
  background-color: var(--theme);
  color: var(--white);
  padding: 8px 13px;
  border-radius: 35px;
  display: inline-block;
  line-height: 1;
  transition: all 0.4s ease-in-out;
}

.news-box-items-2 .content ul li p {
  color: rgb(121, 121, 121);
  font-size: 16px;
}

.news-box-items-2 .content ul li p span {
  color: rgba(121, 121, 121, 0.7);
}

.news-box-items-2 .content .title {
  font-size: 24px;
  font-weight: 600;
  margin-top: 15px;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
  .news-box-items-2 .content .title {
    font-size: 21px;
  }
}

@media (max-width: 575px) {
  .news-box-items-2 .content .title {
    font-size: 18px;
  }
}

.news-box-items-2 .content .title a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  transition: all 0.4s ease-in-out;
}

.news-box-items-2 .content .title a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.news-box-items-2 .content .news-btn {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
  color: var(--white);
  overflow: hidden;
  text-transform: capitalize;
  margin-top: 20px;
}

.news-box-items-2 .content .news-btn i {
  margin-left: 7px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  background-color: var(--theme);
  text-align: center;
}

.news-box-items-2 .content .news-btn .text {
  position: relative;
  display: inline-block;
  height: 30px;
  overflow: hidden;
}

.news-box-items-2 .content .news-btn .text-default,
.news-box-items-2 .content .news-btn .text-hover {
  display: block;
  transition: transform 0.4s ease;
}

.news-box-items-2 .content .news-btn .text-hover {
  position: absolute;
  left: 0;
  top: 100%;
  color: var(--white);
}

.news-box-items-2 .content .news-btn:hover .text-default {
  transform: translateY(-100%);
}

.news-box-items-2 .content .news-btn:hover .text-hover {
  transform: translateY(-100%);
}

.news-box-items-2 .content .news-btn i {
  transition: transform 0.4s ease;
}

.news-box-items-2:hover .thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.news-box-items-2:hover .thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.news-section-3 .section-title-area .text-items p {
  color: #B1B1B1;
}

.news-section-3 .section-title-area .text-items .news-btn {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  font-family: "Urbanist", sans-serif;
  color: var(--white);
  overflow: hidden;
  text-transform: capitalize;
  margin-top: 18px;
}

.news-section-3 .section-title-area .text-items .news-btn i {
  margin-left: 7px;
}

.news-section-3 .section-title-area .text-items .news-btn .text {
  position: relative;
  display: inline-block;
  height: 22px;
  overflow: hidden;
}

.news-section-3 .section-title-area .text-items .news-btn .text-default,
.news-section-3 .section-title-area .text-items .news-btn .text-hover {
  display: block;
  transition: transform 0.4s ease;
}

.news-section-3 .section-title-area .text-items .news-btn .text-hover {
  position: absolute;
  left: 0;
  top: 100%;
  color: var(--theme);
}

.news-section-3 .section-title-area .text-items .news-btn:hover .text-default {
  transform: translateY(-100%);
}

.news-section-3 .section-title-area .text-items .news-btn:hover .text-hover {
  transform: translateY(-100%);
}

.news-section-3 .section-title-area .text-items .news-btn i {
  transition: transform 0.4s ease;
}

.news-left-items {
  margin-top: 30px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  padding: 15px;
  border-radius: 20px;
}

.news-left-items .thumb {
  overflow: hidden;
  position: relative;
  z-index: 9;
  border-radius: 10px;
}

.news-left-items .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 10px;
}

.news-left-items .thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.news-left-items .content {
  padding: 23px 15px 15px;
}

.news-left-items .content ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.news-left-items .content ul li {
  color: #B1B1B1;
  font-size: 14px;
}

.news-left-items .content ul li a {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  background-color: var(--theme);
  padding: 0 10px;
  height: 26px;
  line-height: 26px;
  border-radius: 18px;
}

.news-left-items .content ul li a:hover {
  background-color: var(--theme);
}

.news-left-items .content h3 {
  font-size: 32px;
  font-weight: 600;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .news-left-items .content h3 {
    font-size: 24px;
  }
}

.news-left-items .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--header);
}

.news-left-items .content h3 a:hover {
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
  color: var(--theme);
}

.news-left-items .content .link-btn {
  color: var(--header);
  margin-top: 20px;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.news-left-items .content .link-btn i {
  margin-right: 0;
  margin-left: 5px;
}

.news-left-items .content .link-btn:hover {
  color: var(--theme);
}

.news-left-items:hover .thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.news-left-items:hover .thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.news-right-list {
  margin-top: 30px;
}

.news-right-list li:not(:last-child) {
  margin-bottom: 30px;
}

.news-right-list li .news-box-style-4 {
  border: 1px solid rgba(37, 99, 235, 0.15);
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 30px;
  border-radius: 20px;
}

@media (max-width: 575px) {
  .news-right-list li .news-box-style-4 {
    gap: 18px;
  }
}

.news-right-list li .news-box-style-4 .thumb {
  max-width: 293px;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 9;
  height: 245px;
  border-radius: 10px;
}

@media (max-width: 1399px) {
  .news-right-list li .news-box-style-4 .thumb {
    height: 227px;
  }
}

@media (max-width: 1199px) {
  .news-right-list li .news-box-style-4 .thumb {
    height: 222px;
  }
}

@media (max-width: 575px) {
  .news-right-list li .news-box-style-4 .thumb {
    height: 200px;
  }
}

.news-right-list li .news-box-style-4 .thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  object-fit: cover;
  border-radius: 10px;
}

.news-right-list li .news-box-style-4 .thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.news-right-list li .news-box-style-4 .content ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.news-right-list li .news-box-style-4 .content ul li {
  color: #B1B1B1;
  font-size: 14px;
}

.news-right-list li .news-box-style-4 .content ul li:not(:last-child) {
  margin-bottom: 0;
}

.news-right-list li .news-box-style-4 .content ul li a {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  background-color: var(--theme);
  padding: 0 10px;
  height: 26px;
  line-height: 26px;
  border-radius: 18px;
}

.news-right-list li .news-box-style-4 .content ul li a:hover {
  background-color: var(--theme);
}

.news-right-list li .news-box-style-4 .content h3 {
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .news-right-list li .news-box-style-4 .content h3 {
    font-size: 20px;
  }
}

@media (max-width: 470px) {
  .news-right-list li .news-box-style-4 .content h3 {
    font-size: 18px;
  }
}

.news-right-list li .news-box-style-4 .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--header);
}

.news-right-list li .news-box-style-4 .content h3 a:hover {
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
  color: var(--theme);
}

.news-right-list li .news-box-style-4 .content .link-btn {
  color: var(--header);
  margin-top: 20px;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.news-right-list li .news-box-style-4 .content .link-btn i {
  margin-right: 0;
  margin-left: 5px;
}

.news-right-list li .news-box-style-4 .content .link-btn:hover {
  color: var(--theme);
}

.news-right-list li .news-box-style-4:hover .thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.news-right-list li .news-box-style-4:hover .thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

/* ==============================
   Border Line Wrapper
================================= */
.new-border-line {
  width: 100%;
}

/* ==============================
   Common Border Style
================================= */
.new-border-line span {
  display: block;
  width: 100%;
  height: 1px;
}

/* ==============================
   Spacing Between Borders
================================= */
.new-border-line span:not(:last-child) {
  margin-bottom: 5px;
  /* gap between lines */
}

/* ==============================
   Optional: Different Colors
================================= */
.border-style-1 {
  background-color: rgba(255, 255, 255, 0.15);
}

.border-style-2 {
  background-color: rgba(255, 255, 255, 0.1);
}

.border-style-3 {
  background-color: rgba(255, 255, 255, 0.15);
}

.news-box-image-3 {
  margin-top: 30px;
}

.news-box-image-3 .thumb-1 {
  border-radius: 20px;
}

@media (max-width: 1399px) {
  .news-box-image-3 .thumb-1 {
    height: 100%;
  }
}

@media (max-width: 1199px) {
  .news-box-image-3 .thumb-1 {
    height: initial;
    height: 500px;
  }
}

.news-box-image-3 .thumb-1 img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.news-content-3 {
  margin-left: 30px;
  margin-top: 30px;
}

@media (max-width: 1199px) {
  .news-content-3 {
    margin-left: 0;
  }
}

.news-content-3 .content {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 60px 0;
}

.news-content-3 .content .title {
  font-size: 30px;
  font-weight: 500;
  text-transform: capitalize;
}

@media (max-width: 1399px) {
  .news-content-3 .content .title {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .news-content-3 .content .title {
    font-size: 21px;
  }
}

.news-content-3 .content .title a:hover {
  color: var(--theme);
}

.news-content-3 .content ul {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 1199px) {
  .news-content-3 .content ul {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.news-content-3 .content ul li .client-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.news-content-3 .content ul li .client-info .client-content .name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.news-content-3 .content ul li .client-info .client-content p {
  font-size: 14px;
  font-weight: 500;
}

.news-content-3 .content ul li .news-line {
  height: 60px;
  width: 1px;
  background-color: rgba(136, 136, 136, 0.2);
}

@media (max-width: 1199px) {
  .news-content-3 .content ul li .news-line {
    display: none;
  }
}

.news-content-3 .content ul li span {
  border-radius: 4px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 10px;
  line-height: 1;
  color: var(--white);
  margin-right: 10px;
  line-height: 1;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}

.news-content-3 .content ul li span.color-2 {
  border-radius: 4px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
}

@media (max-width: 1199px) {
  .news-content-3 .content ul li:nth-child(2) {
    display: none;
  }
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 {
  margin-bottom: 30px;
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-image {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-image::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
  pointer-events: none;
  border-radius: 12px;
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-image img {
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  object-fit: cover;
  transition: all 1s;
  border-radius: 12px;
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .gt-date-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 15px;
}

@media (max-width: 1199px) {
  .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .gt-date-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .gt-date-list li i {
  margin-right: 10px;
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .news-title {
  margin-bottom: 10px;
  font-size: 32px;
  line-height: 138%;
}

@media (max-width: 1199px) {
  .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .news-title {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .news-title {
    font-size: 25px;
  }
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .news-title a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .news-title a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4 .gt-news-content .theme-btn-main {
  margin-top: 24px;
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4:hover .gt-news-image:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.gt-news-standard-wrapper .gt-news-standard-items .gt-news-card-items-4:hover .gt-news-image img {
  transform: scale(1.2);
}

.news-details-area .blog-post-details .single-blog-post .post-featured-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.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: 10px;
}

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

@media (max-width: 767px) {
  .news-details-area .blog-post-details .single-blog-post .post-content p {
    font-size: 14px;
  }
}

.news-details-area .blog-post-details .single-blog-post .post-content h2 {
  margin-bottom: 20px;
  font-size: 42px;
}

@media (max-width: 575px) {
  .news-details-area .blog-post-details .single-blog-post .post-content h2 {
    font-size: 25px;
  }
}

.news-details-area .blog-post-details .single-blog-post .post-content h2 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(--theme);
  border-radius: 8px;
}

.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;
  color: #fff;
}

.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%;
  border-radius: 8px;
}

.news-details-area .blog-post-details .tag-share-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(37, 99, 235, 0.08);
  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;
  border-radius: 4px;
  font-size: 16px;
}

@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(--header);
}

.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: var(--bg);
  border-radius: 8px;
}

@media (min-width: 1200px) {
  .news-details-area .blog-post-details .comments-area {
    padding: 35px;
  }
}

@media (max-width: 767px) {
  .news-details-area .blog-post-details .comments-area {
    padding: 32px;
  }
}

@media (max-width: 575px) {
  .news-details-area .blog-post-details .comments-area {
    padding: 28px;
  }
}

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

@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 rgba(37, 99, 235, 0.08);
}

.news-details-area .blog-post-details .comments-area .blog-single-comment.bb-none {
  border: none;
}

@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 h4 {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 20px;
}

.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;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--header);
  font-size: 16px;
}

.news-details-area .blog-post-details .comment-form-wrap {
  background-color: var(--bg);
  border-radius: 8px;
  padding: 50px 40px;
  margin-top: 40px;
}

@media (min-width: 1200px) {
  .news-details-area .blog-post-details .comment-form-wrap {
    padding: 35px;
  }
}

@media (max-width: 767px) {
  .news-details-area .blog-post-details .comment-form-wrap {
    padding: 32px;
  }
}

@media (max-width: 575px) {
  .news-details-area .blog-post-details .comment-form-wrap {
    padding: 28px;
  }
}

.news-details-area .blog-post-details .comment-form-wrap h3 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 700;
}

@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: none;
  padding: 16px 20px;
  font-weight: 400;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
}

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

.gt-main-sideber .gt-single-sideber-widget {
  margin-bottom: 30px;
  background-color: var(--bg);
  padding: 30px;
  border-radius: 14px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form {
  width: 100%;
  position: relative;
}

.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form input {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 16px;
  font-weight: 400;
  padding: 16px 20px;
  width: 100%;
  color: var(--text);
  border-radius: 6px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form button {
  position: absolute;
  right: -2px;
  top: 0;
  width: 58px;
  border-radius: 6px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme);
  color: var(--header);
  text-align: center;
  transition: all 0.3s ease-in-out;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.gt-main-sideber .gt-single-sideber-widget .gt-search-widget form button:hover {
  background-color: var(--header);
  color: var(--white);
}

.gt-main-sideber .gt-single-sideber-widget .gt-widget-title {
  margin-bottom: 20px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-widget-title h3 {
  font-weight: 600;
  font-size: 22px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-widget-title span {
  font-weight: 600;
  font-size: 22px;
  font-family: "Urbanist", sans-serif;
}

.gt-main-sideber .gt-single-sideber-widget .amenities-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}

.gt-main-sideber .gt-single-sideber-widget .amenities-list li:not(:last-child) {
  margin-bottom: 20px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-category-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 25px;
  font-family: "Urbanist", sans-serif;
  line-height: 1;
  text-transform: capitalize;
  border-radius: 8px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-category-list li a {
  color: var(--header);
}

.gt-main-sideber .gt-single-sideber-widget .gt-category-list li i {
  transition: all 0.4s ease-in-out;
  color: var(--header);
}

.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:not(:last-child) {
  margin-bottom: 20px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-category-list li span b {
  font-weight: 400;
  color: var(--theme);
}

.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover {
  background-color: var(--theme);
}

.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover a {
  color: var(--header);
}

.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover i,
.gt-main-sideber .gt-single-sideber-widget .gt-category-list li:hover span {
  color: var(--header);
}

.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-thumb {
  position: relative;
  overflow: hidden;
  max-width: 110px;
  width: 100%;
  border-radius: 8px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-thumb::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
  pointer-events: none;
  border-radius: 8px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-thumb img {
  border-radius: 8px;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  object-fit: cover;
  transition: all 1s;
  width: 100%;
  height: 100%;
}

.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items:not(:last-child) {
  margin-bottom: 20px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content .title {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  font-family: "Urbanist", sans-serif;
  display: inline-block;
}

.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content .title a:hover {
  color: var(--theme);
}

.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items .gt-recent-content ul li {
  color: var(--text);
  font-size: 14px;
}

.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items:hover .gt-recent-thumb:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.gt-main-sideber .gt-single-sideber-widget .gt-recent-post-area .gt-recent-items:hover .gt-recent-thumb img {
  transform: scale(1.2);
}

.gt-main-sideber .gt-single-sideber-widget .tagcloud a {
  display: inline-block;
  padding: 12px 18px;
  line-height: 1;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: "Urbanist", sans-serif;
  margin-right: 10px;
  margin-bottom: 10px;
  text-transform: capitalize;
  border-radius: 4px;
  font-size: 16px;
}

.gt-main-sideber .gt-single-sideber-widget .tagcloud a:last-child {
  margin-right: 0;
}

.gt-main-sideber .gt-single-sideber-widget .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--header);
}

.brand-section {
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 120px;
  padding-bottom: 120px;
}

@media (max-width: 1199px) {
  .brand-section {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (max-width: 991px) {
  .brand-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.brand-section .title {
  color: #111827;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
  line-height: 157%;
  margin-bottom: 55px;
}

@media (max-width: 1199px) {
  .brand-section .title {
    font-size: 35px;
    line-height: 142%;
  }
}

@media (max-width: 991px) {
  .brand-section .title {
    font-size: 33px;
  }
}

@media (max-width: 767px) {
  .brand-section .title {
    font-size: 29px;
  }
}

@media (max-width: 575px) {
  .brand-section .title {
    font-size: 26px;
  }
}

.brand-section .title span {
  display: inline-block;
  height: 45px;
  line-height: 44px;
  border-radius: 10px;
  background-color: var(--theme);
  padding: 0 12px;
}

@media (max-width: 1199px) {
  .brand-section .title span {
    height: initial;
    line-height: initial;
    padding: 0;
    border-radius: 0px;
    background-color: transparent;
  }
}

.brand-section .title span .font-style {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.brand-box-1 {
  height: 100px;
  line-height: 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 10px;
  z-index: 9;
}

.brand-box-1::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 1px solid var(--theme);
  border-left: 1px solid var(--theme);
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  border-radius: 10px;
}

.brand-box-1::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 1px solid var(--theme);
  border-right: 1px solid var(--theme);
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  border-radius: 10px;
}

.brand-box-1 .brand-img-1 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-box-1 .brand-img-1 img {
  transition: all 0.6s ease;
  transform: translateY(0);
}

.brand-box-1 .brand-img-1:last-child img {
  transform: translateY(-350%);
  opacity: 0;
}

.brand-box-1:hover .brand-img-1:first-child img {
  transform: translateY(100%);
  opacity: 0;
}

.brand-box-1:hover .brand-img-1:last-child img {
  transform: translateY(0);
  opacity: 1;
}

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

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

.faq-image-1 {
  border-radius: 16px;
  position: relative;
  height: 100%;
}

@media (max-width: 991px) {
  .faq-image-1 {
    height: initial;
  }
}

.faq-image-1 .incrase-box {
  background-color: var(--theme);
  padding: 30px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-radius: 8px;
  padding-top: 22px;
  max-width: 336px;
  width: 100%;
}

@media (max-width: 575px) {
  .faq-image-1 .incrase-box {
    display: none;
  }
}

.faq-image-1 .incrase-box span {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  display: inline-block;
}

.faq-image-1 .incrase-box p {
  color: var(--white);
  font-size: 100px;
  font-weight: 600;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: -8px;
  margin-top: 40px;
}

.faq-image-1 img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.faq-content-1 {
  background-color: #F0F4FF;
  border-radius: 16px;
  padding: 120px 48px;
  padding-right: 90px;
}

@media (max-width: 1199px) {
  .faq-content-1 {
    padding: 100px 40px;
  }
}

@media (max-width: 991px) {
  .faq-content-1 {
    padding: 80px 30px;
  }
}

.faq-content-1 .section-title .sub-title {
  color: #111827;
}

.faq-content-1 .section-title h2 {
  color: #111827;
}

.faq-content-1 .accordion-box {
  position: relative;
  margin-top: 30px;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  padding-top: 30px;
}

@media (max-width: 767px) {
  .faq-content-1 .accordion-box {
    margin-top: 30px;
  }
}

.faq-content-1 .accordion-box .block {
  position: relative;
  background-color: transparent;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(37, 99, 235, 0.06);
  margin-bottom: 30px;
  line-height: 1;
  padding-bottom: 32px;
  padding-left: 66px;
}

@media (max-width: 767px) {
  .faq-content-1 .accordion-box .block {
    padding-left: 40px;
  }
}

.faq-content-1 .accordion-box .block .acc-btn {
  position: relative;
  font-size: 24px;
  color: #111827;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-transform: capitalize;
}

@media (max-width: 470px) {
  .faq-content-1 .accordion-box .block .acc-btn {
    font-size: 20px;
  }
}

.faq-content-1 .accordion-box .block .acc-btn .number {
  color: var(--text);
  font-family: "Urbanist", sans-serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -3px;
  margin-left: -50px;
  margin-right: 15px;
}

.faq-content-1 .accordion-box .block .acc-btn .icon {
  position: absolute;
  right: 0;
  top: 0;
  height: 35px;
  font-size: 18px;
  line-height: 18px;
  color: #111827;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-content-1 .accordion-box .block .acc-content {
  position: relative;
  display: none;
  margin-top: 22px;
}

@media (max-width: 470px) {
  .faq-content-1 .accordion-box .block .acc-content {
    margin-top: 10px;
  }
}

.faq-content-1 .accordion-box .block .acc-content .content {
  position: relative;
}

.faq-content-1 .accordion-box .block .acc-content .content .text {
  line-height: 175%;
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  max-width: 455px;
}

@media (max-width: 1199px) {
  .faq-content-1 .accordion-box .block .acc-content .content .text {
    font-size: 14px;
  }
}

@media (max-width: 470px) {
  .faq-content-1 .accordion-box .block .acc-content .content .text {
    font-size: 13px;
  }
}

.faq-content-1 .accordion-box .block .acc-content.current {
  display: block;
}

.faq-content-1 .accordion-box .block .acc-btn.active .icon:before {
  content: "\f062";
  color: var(--theme);
}

.faq-content-1 .accordion-box .block .acc-btn.active {
  color: var(--theme);
}

.faq-content-1 .accordion-box .block .acc-btn.active .number {
  color: var(--theme);
}

.faq-content-1 .accordion-box .block:last-child {
  margin-bottom: 0;
}

.faq-wrapper-2 .faq-content .text {
  max-width: 420px;
  margin-top: 20px;
}

.faq-wrapper-2 .faq-content .news-btn {
  display: inline-flex;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  font-family: "Urbanist", sans-serif;
  color: var(--white);
  overflow: hidden;
  text-transform: capitalize;
  margin-top: 15px;
}

.faq-wrapper-2 .faq-content .news-btn i {
  margin-left: 7px;
}

.faq-wrapper-2 .faq-content .news-btn .text {
  position: relative;
  display: inline-block;
  height: 22px;
  overflow: hidden;
}

.faq-wrapper-2 .faq-content .news-btn .text-default,
.faq-wrapper-2 .faq-content .news-btn .text-hover {
  display: block;
  transition: transform 0.4s ease;
}

.faq-wrapper-2 .faq-content .news-btn .text-hover {
  position: absolute;
  left: 0;
  top: 100%;
  color: var(--theme);
}

.faq-wrapper-2 .faq-content .news-btn:hover .text-default {
  transform: translateY(-100%);
}

.faq-wrapper-2 .faq-content .news-btn:hover .text-hover {
  transform: translateY(-100%);
}

.faq-wrapper-2 .faq-content .news-btn i {
  transition: transform 0.4s ease;
}

.faq-wrapper-2 .accordion-box {
  position: relative;
  max-width: 870px;
  margin-left: auto;
}

@media (max-width: 1199px) {
  .faq-wrapper-2 .accordion-box {
    margin-left: initial;
    max-width: initial;
  }
}

.faq-wrapper-2 .accordion-box .block {
  position: relative;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 17px;
  line-height: 1;
  border-radius: 8px;
}

.faq-wrapper-2 .accordion-box .block .acc-btn {
  position: relative;
  font-size: 24px;
  color: #6B7280;
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  padding: 28.5px 25px;
}

@media (max-width: 1399px) {
  .faq-wrapper-2 .accordion-box .block .acc-btn {
    padding-right: 60px;
    line-height: 1.4;
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .faq-wrapper-2 .accordion-box .block .acc-btn {
    padding: 25px 20px;
    padding-right: 80px;
  }
}

@media (max-width: 470px) {
  .faq-wrapper-2 .accordion-box .block .acc-btn {
    font-size: 18px;
  }
}

.faq-wrapper-2 .accordion-box .block .acc-btn .icon {
  position: absolute;
  right: 30px;
  top: 22px;
  width: 35px;
  height: 35px;
  font-size: 16px;
  line-height: 35px;
  background-color: rgba(37, 99, 235, 0.1);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 50%;
  color: var(--theme);
  text-align: center;
}

@media (max-width: 1399px) {
  .faq-wrapper-2 .accordion-box .block .acc-btn .icon {
    right: 18px;
  }
}

.faq-wrapper-2 .accordion-box .block .acc-btn .icon::before {
  color: var(--theme);
}

.faq-wrapper-2 .accordion-box .block .acc-content {
  position: relative;
  display: none;
  padding: 30px 25px;
  border-top: 1px solid rgba(37, 99, 235, 0.1);
}

@media (max-width: 470px) {
  .faq-wrapper-2 .accordion-box .block .acc-content {
    margin-top: 10px;
  }
}

.faq-wrapper-2 .accordion-box .block .acc-content .content {
  position: relative;
}

.faq-wrapper-2 .accordion-box .block .acc-content .content .text {
  line-height: 175%;
  font-size: 17px;
  font-weight: 400;
  color: var(--white);
  max-width: 810px;
  letter-spacing: -0.02em;
  opacity: 0.8;
}

@media (max-width: 1199px) {
  .faq-wrapper-2 .accordion-box .block .acc-content .content .text {
    font-size: 14px;
  }
}

@media (max-width: 470px) {
  .faq-wrapper-2 .accordion-box .block .acc-content .content .text {
    font-size: 13px;
  }
}

.faq-wrapper-2 .accordion-box .block .acc-content.current {
  display: block;
}

.faq-wrapper-2 .accordion-box .block .acc-btn.active .icon:before {
  content: "\f00d";
}

.faq-wrapper-2 .accordion-box .block:last-child {
  margin-bottom: 0;
}

.faq-wrapper-2 .active-block .acc-btn {
  color: var(--white) !important;
}

.faq-wrapper-2 .active-block .icon {
  background-color: var(--theme) !important;
  color: var(--white) !important;
}

.faq-wrapper-2 .active-block .icon::before {
  color: var(--white) !important;
}

.faq-wrapper-5 .section-title-area {
  justify-content: start;
  gap: 420px;
  margin-bottom: 45px;
}

@media (max-width: 1399px) {
  .faq-wrapper-5 .section-title-area {
    gap: 30px;
  }
}

.faq-wrapper-5 .faq-image {
  margin-top: 30px;
  height: 750px;
}

@media (max-width: 1600px) {
  .faq-wrapper-5 .faq-image {
    height: 741px;
  }
}

@media (max-width: 991px) {
  .faq-wrapper-5 .faq-image {
    height: 560px;
  }
}

@media (max-width: 767px) {
  .faq-wrapper-5 .faq-image {
    height: 530px;
  }
}

@media (max-width: 575px) {
  .faq-wrapper-5 .faq-image {
    height: 480px;
  }
}

.faq-wrapper-5 .faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-wrapper-5 .grt-faq-content-1 .accordion-box {
  position: relative;
  border-top: 1px solid rgba(37, 99, 235, 0.08);
}

@media (max-width: 1199px) {
  .faq-wrapper-5 .grt-faq-content-1 .accordion-box {
    margin-left: 0;
  }
}

.faq-wrapper-5 .grt-faq-content-1 .accordion-box .block {
  position: relative;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  line-height: 1;
  border-radius: 0;
  padding: 29px 0;
}

@media (max-width: 991px) {
  .faq-wrapper-5 .grt-faq-content-1 .accordion-box .block {
    padding: 25px 0;
  }
}

.faq-wrapper-5 .grt-faq-content-1 .accordion-box .block .acc-btn {
  position: relative;
  font-size: 24px;
  color: var(--header);
  font-weight: 600;
  font-family: "Urbanist", sans-serif;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

@media (max-width: 1399px) {
  .faq-wrapper-5 .grt-faq-content-1 .accordion-box .block .acc-btn {
    padding-right: 40px;
    line-height: 1.4;
    font-size: 20px;
  }
}

@media (max-width: 470px) {
  .faq-wrapper-5 .grt-faq-content-1 .accordion-box .block .acc-btn {
    font-size: 18px;
  }
}

.faq-wrapper-5 .grt-faq-content-1 .accordion-box .block .acc-btn .icon {
  position: absolute;
  right: 0;
  top: -7px;
  width: 35px;
  height: 35px;
  font-size: 16px;
  line-height: 35px;
  background-color: var(--theme);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 50%;
  color: var(--white);
  text-align: center;
}

.faq-wrapper-5 .grt-faq-content-1 .accordion-box .block .acc-content {
  position: relative;
  display: none;
  margin-top: 30px;
}

@media (max-width: 470px) {
  .faq-wrapper-5 .grt-faq-content-1 .accordion-box .block .acc-content {
    margin-top: 10px;
  }
}

.faq-wrapper-5 .grt-faq-content-1 .accordion-box .block .acc-content .content {
  position: relative;
}

.faq-wrapper-5 .grt-faq-content-1 .accordion-box .block .acc-content .content .text {
  line-height: 175%;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  opacity: 0.8;
  max-width: 877px;
}

@media (max-width: 1600px) {
  .faq-wrapper-5 .grt-faq-content-1 .accordion-box .block .acc-content .content .text {
    font-size: 16px;
  }
}

@media (max-width: 1199px) {
  .faq-wrapper-5 .grt-faq-content-1 .accordion-box .block .acc-content .content .text {
    font-size: 14px;
  }
}

@media (max-width: 470px) {
  .faq-wrapper-5 .grt-faq-content-1 .accordion-box .block .acc-content .content .text {
    font-size: 13px;
  }
}

.faq-wrapper-5 .grt-faq-content-1 .accordion-box .block .acc-content.current {
  display: block;
}

.faq-wrapper-5 .grt-faq-content-1 .accordion-box .block .acc-btn.active .icon:before {
  content: "\f00d";
  color: var(--white);
}

.faq-wrapper-5 .grt-faq-content-1 .accordion-box .block .acc-btn.active {
  color: var(--header);
}

.faq-wrapper-5 .grt-faq-content-1 .accordion-box .block:last-child {
  margin-bottom: 0;
}

.lets-talk-section {
  padding-bottom: 80px;
  padding-top: 50px;
}

@media (max-width: 1199px) {
  .lets-talk-section {
    padding-top: 80px;
  }
}

.lets-talk-section .title {
  text-align: center;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  font-size: 200px;
  letter-spacing: -6.1112px;
  line-height: 1;
}

.lets-talk-section .title span {
  font-weight: 400;
  font-style: italic;
  font-family: "Instrument Serif", serif;
}

@media (max-width: 1899px) {
  .lets-talk-section .title {
    font-size: 170px;
  }
}

@media (max-width: 1399px) {
  .lets-talk-section .title {
    font-size: 130px;
  }
}

@media (max-width: 1199px) {
  .lets-talk-section .title {
    letter-spacing: initial;
  }
}

@media (max-width: 991px) {
  .lets-talk-section .title {
    font-size: 100px;
  }
}

@media (max-width: 767px) {
  .lets-talk-section .title {
    font-size: 80px;
  }
}

@media (max-width: 575px) {
  .lets-talk-section .title {
    font-size: 60px;
  }
}

.lets-talk-section .lets-talk-content .theme-btn-main {
  background: rgba(37, 99, 235, 0.06);
  color: var(--white);
  margin-top: 30px;
}

.lets-talk-section .lets-talk-content .theme-btn-main .theme-btn-arrow-left,
.lets-talk-section .lets-talk-content .theme-btn-main .theme-btn-arrow-right {
  background: var(--theme);
  color: var(--white);
}

.lets-talk-section .lets-talk-content .theme-btn-main .btn-title {
  color: var(--white);
}

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

.image-distortion canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.cta-wrapper-3 {
  text-align: center;
}

.cta-wrapper-3 h2 {
  font-size: 150px;
  font-weight: 700;
  letter-spacing: -3.41px;
  text-transform: uppercase;
}

@media (max-width: 1399px) {
  .cta-wrapper-3 h2 {
    font-size: 115px;
  }
}

@media (max-width: 991px) {
  .cta-wrapper-3 h2 {
    letter-spacing: initial;
    font-size: 100px;
  }
}

@media (max-width: 767px) {
  .cta-wrapper-3 h2 {
    font-size: 77px;
  }
}

@media (max-width: 575px) {
  .cta-wrapper-3 h2 {
    font-size: 60px;
  }
}

.cta-wrapper-3 h2 .img-1 {
  position: relative;
  top: -15px;
  left: 15px;
}

@media (max-width: 991px) {
  .cta-wrapper-3 h2 .img-1 {
    display: none;
  }
}

.cta-wrapper-3 h2 .img-1 img {
  border-radius: 10px;
}

.cta-wrapper-3 .theme-btn-main {
  background: rgba(37, 99, 235, 0.06);
  color: var(--white);
  margin-top: 30px;
}

.cta-wrapper-3 .theme-btn-main .theme-btn-arrow-left,
.cta-wrapper-3 .theme-btn-main .theme-btn-arrow-right {
  background: var(--theme);
  color: var(--white);
}

.cta-wrapper-3 .theme-btn-main .btn-title {
  color: var(--white);
}

.lets-talk-section-2 {
  margin: 0 60px;
  border-radius: 20px;
  padding: 100px 0;
}

@media (max-width: 1899px) {
  .lets-talk-section-2 {
    margin: 0 35px;
  }
}

@media (max-width: 1600px) {
  .lets-talk-section-2 {
    margin: 0 30px;
  }
}

@media (max-width: 1399px) {
  .lets-talk-section-2 {
    margin: 0 25px;
  }
}

@media (max-width: 1199px) {
  .lets-talk-section-2 {
    margin: 0 20px;
  }
}

@media (max-width: 991px) {
  .lets-talk-section-2 .lets-talk-content-2 {
    text-align: center;
  }
}

.lets-talk-section-2 .lets-talk-content-2 .theme-btn-main {
  background: rgba(37, 99, 235, 0.06);
  color: var(--white);
  margin-top: 50px;
}

.lets-talk-section-2 .lets-talk-content-2 .theme-btn-main .theme-btn-arrow-left,
.lets-talk-section-2 .lets-talk-content-2 .theme-btn-main .theme-btn-arrow-right {
  background: var(--theme);
  color: var(--white);
}

.lets-talk-section-2 .lets-talk-content-2 .theme-btn-main .btn-title {
  color: var(--white);
}

.lets-talk-section-2 {
  position: relative;
  margin-bottom: 120px;
}

.lets-talk-section-2 .like-image {
  position: absolute;
  bottom: 0;
  right: 160px;
}

@media (max-width: 1399px) {
  .lets-talk-section-2 .like-image {
    right: 30px;
  }
}

@media (max-width: 991px) {
  .lets-talk-section-2 .like-image {
    display: none;
  }
}

.lets-deal-wrapper {
  text-align: center;
}

.lets-deal-wrapper .theme-btn-main {
  background: rgba(37, 99, 235, 0.06);
  color: var(--white);
  margin-top: 30px;
}

.lets-deal-wrapper .theme-btn-main .theme-btn-arrow-left,
.lets-deal-wrapper .theme-btn-main .theme-btn-arrow-right {
  background: var(--theme);
  color: var(--white);
}

.lets-deal-wrapper .theme-btn-main .btn-title {
  color: var(--white);
}

.contact-wrapper .contact-image {
  border-radius: 20px;
  margin-right: 20px;
  position: relative;
}

@media (max-width: 1199px) {
  .contact-wrapper .contact-image {
    margin-right: 0;
  }
}

@media (max-width: 991px) {
  .contact-wrapper .contact-image {
    height: 500px;
  }
}

.contact-wrapper .contact-image .contact-us {
  background-color: var(--white);
  border-radius: 10px;
  position: absolute;
  bottom: 40px;
  left: 40px;
  max-width: 336px;
  padding: 30px;
}

@media (max-width: 1199px) {
  .contact-wrapper .contact-image .contact-us {
    left: 25px;
    bottom: 25px;
    right: 25px;
  }
}

.contact-wrapper .contact-image .contact-us h2 {
  font-size: 48px;
  font-weight: 600;
  color: #0F172A;
}

@media (max-width: 1199px) {
  .contact-wrapper .contact-image .contact-us h2 {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .contact-wrapper .contact-image .contact-us h2 {
    font-size: 28px;
  }
}

.contact-wrapper .contact-image .contact-us p {
  font-size: 16px;
  color: #6B7280;
  margin-top: 15px;
}

.contact-wrapper .contact-image .contact-us .number-center {
  font-size: 16px;
  font-weight: 600;
  color: var(--theme);
  display: inline-block;
  height: 54px;
  line-height: 54px;
  border: 1px solid var(--theme);
  border-radius: 70px;
  padding: 0 25px;
  margin-top: 28px;
}

.contact-wrapper .contact-image .contact-us .number-center i {
  margin-right: 4px;
}

.contact-wrapper .contact-image .contact-us .number-center:hover {
  background-color: var(--theme);
  color: var(--white);
}

.contact-wrapper .contact-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.contact-wrapper .contact-box-items {
  margin-left: 20px;
}

@media (max-width: 1199px) {
  .contact-wrapper .contact-box-items {
    margin-left: 0;
  }
}

.contact-wrapper .contact-box-items .text {
  margin-top: 25px;
  max-width: 420px;
}

.contact-wrapper .contact-form-box {
  margin-top: 35px;
}

.contact-wrapper .contact-form-box .form-clt input,
.contact-wrapper .contact-form-box .form-clt textarea {
  outline: none;
  width: 100%;
  color: #6B7280;
  padding-bottom: 20px;
  border: none;
  background: transparent;
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
}

.contact-wrapper .contact-form-box .form-clt input::placeholder,
.contact-wrapper .contact-form-box .form-clt textarea::placeholder {
  color: #6B7280;
}

.contact-wrapper .contact-form-box .form-clt textarea {
  padding-bottom: 120px;
}

.contact-wrapper .contact-form-box .form-clt .form .single-select {
  border: none;
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
  background-color: transparent;
  width: 100%;
  height: initial;
  line-height: initial;
  text-transform: capitalize;
  color: #6B7280;
  padding-bottom: 20px;
  border-radius: 0;
}

.contact-wrapper .contact-form-box .form-clt .form .single-select .current {
  color: #6B7280;
}

.contact-wrapper .contact-form-box .form-clt .form .single-select::after {
  border-bottom: 2px solid var(--header);
  border-right: 2px solid var(--header);
  width: 8px;
  height: 8px;
  right: 12px;
}

.contact-wrapper .contact-form-box .form-clt .form .single-select .list {
  width: 100%;
}

.contact-wrapper .contact-form-box .theme-btn-main {
  margin-top: 20px;
}

.contact-us-card-item {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 30px;
}

.contact-us-card-item .contact-image {
  border-radius: 12px;
}

.contact-us-card-item .contact-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.contact-us-card-item .contact-content {
  margin-top: 30px;
}

.contact-us-card-item .contact-content h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}

@media (max-width: 1399px) {
  .contact-us-card-item .contact-content h2 {
    font-size: 28px;
  }
}

.contact-us-card-item .contact-content span {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 10px;
}

.contact-us-card-item .contact-content h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 10px;
}

@media (max-width: 1399px) {
  .contact-us-card-item .contact-content h3 {
    font-size: 22px;
  }
}

.contact-us-card-item .contact-content h3 a {
  color: var(--header);
}

.contact-us-card-item .contact-content .thems-btn {
  margin-top: 15px;
  background-color: var(--theme);
  width: 100%;
  text-align: center;
  padding: 18px 30px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--white);
  display: inline-block;
  width: 100%;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
}

.contact-us-card-item .contact-content .thems-btn:hover {
  background-color: #fff;
  color: #0F172A;
}

.contact-map-wrapper .contact-map iframe {
  width: 100%;
  height: 686px;
  border-radius: 12px;
}

@media (max-width: 1399px) {
  .contact-map-wrapper .contact-map iframe {
    height: 580px;
  }
}

@media (max-width: 991px) {
  .contact-map-wrapper .contact-map iframe {
    height: 550px;
  }
}

@media (max-width: 767px) {
  .contact-map-wrapper .contact-map iframe {
    height: 450px;
  }
}

@media (max-width: 575px) {
  .contact-map-wrapper .contact-map iframe {
    height: 350px;
  }
}

.contact-map-wrapper .contact-from-box {
  background-color: var(--bg);
  padding: 70px 60px;
  margin-left: 30px;
  border-radius: 12px;
}

@media (max-width: 1399px) {
  .contact-map-wrapper .contact-from-box {
    margin-left: 0;
    padding: 30px;
  }
}

.contact-map-wrapper .contact-from-box h2 {
  font-size: 48px;
  margin-bottom: 32px;
}

@media (max-width: 1399px) {
  .contact-map-wrapper .contact-from-box h2 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}

.contact-map-wrapper .contact-from-box .form-clt input,
.contact-map-wrapper .contact-from-box .form-clt textarea {
  outline: none;
  width: 100%;
  padding: 16px 25px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-transform: capitalize;
  color: var(--header);
  font-size: 16px;
  border-radius: 8px;
}

.contact-map-wrapper .contact-from-box .form-clt input::placeholder,
.contact-map-wrapper .contact-from-box .form-clt textarea::placeholder {
  color: var(--header);
}

.contact-map-wrapper .contact-from-box .form-clt textarea {
  padding-bottom: 120px;
}

.contact-map-wrapper .contact-from-box .form-clt .form .single-select {
  padding: 19px 25px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
  height: initial;
  line-height: initial;
  text-transform: capitalize;
  color: var(--header);
  font-size: 16px;
  border-radius: 8px;
}

.contact-map-wrapper .contact-from-box .form-clt .form .single-select .current {
  color: var(--header);
}

.contact-map-wrapper .contact-from-box .form-clt .form .single-select::after {
  border-bottom: 2px solid var(--header);
  border-right: 2px solid var(--header);
  width: 8px;
  height: 8px;
  right: 12px;
}

.contact-map-wrapper .contact-from-box .form-clt .form .single-select .list {
  width: 100%;
  color: #0F172A;
}

.contact-map-wrapper .contact-from-box .thems-btn {
  background-color: var(--theme);
  width: 100%;
  text-align: center;
  padding: 18px 30px;
  border-radius: 8px;
  font-weight: 600;
  color: var(--white);
  display: inline-block;
  width: 100%;
  transition: all 0.4s ease-in-out;
  text-transform: capitalize;
}

.contact-map-wrapper .contact-from-box .thems-btn:hover {
  background-color: #fff;
  color: #0F172A;
}

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

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(37, 99, 235, 0.1);
  border-radius: 5px;
}

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

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

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.gt-slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.gt-brand-slide-element {
  width: auto;
  display: inline-block;
}

.p-relative {
  position: relative;
}

/* ================================
   Split Text Styles
================================ */
.split-title .word {
  display: inline-block;
  white-space: nowrap;
}

/* char animation */
.split-title .char {
  display: inline-block;
  transform-origin: left center;
  clip-path: inset(0 100% 0 0);
  opacity: 0;
}

.body-bg-2 {
  background-color: #F5F8FF;
}

.array-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.array-buttons .array-prev,
.array-buttons .array-next {
  transition: all 0.4s ease-in-out;
}

.array-buttons .array-prev:hover,
.array-buttons .array-next:hover {
  color: var(--theme);
}

.page-nav-wrap {
  margin-top: 50px;
}

.page-nav-wrap ul li {
  display: inline-block;
}

.page-nav-wrap ul li.active .page-numbers {
  background-color: var(--theme);
  color: var(--header);
}

.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}

.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  border-radius: 0;
  background: var(--bg);
  color: var(--white);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border-radius: 50%;
  font-family: "Urbanist", sans-serif;
}

@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}

.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
  color: var(--white);
  transition: all 0.4s ease-in-out;
}

.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--header);
}

.page-nav-wrap ul li .page-numbers:hover i {
  color: var(--header);
}

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

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

.swiper-dot {
  position: relative;
}

.swiper-dot .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  transition: 0.6s;
  background-color: #0F172A;
  opacity: 1;
  border-radius: 8px;
}

.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 5px;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
}

.jump-anim,
.studio-text {
  display: inline-block;
}

.p-relative {
  position: relative;
}

.tp-clip-anim {
  position: relative;
  overflow: hidden;
}

.tp-clip-anim .mask {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  opacity: 0;
  animation: reveal 1s forwards;
}

.tp-clip-anim .mask-1 {
  clip-path: inset(0 88.8% 0 0%);
  animation-delay: 0.1s;
}

.tp-clip-anim .mask-2 {
  clip-path: inset(0 77.7% 0 11.1%);
  animation-delay: 0.2s;
}

.tp-clip-anim .mask-3 {
  clip-path: inset(0 66.6% 0 22.2%);
  animation-delay: 0.3s;
}

.tp-clip-anim .mask-4 {
  clip-path: inset(0 55.5% 0 33.3%);
  animation-delay: 0.4s;
}

.tp-clip-anim .mask-5 {
  clip-path: inset(0 44.4% 0 44.4%);
  animation-delay: 0.5s;
}

.tp-clip-anim .mask-6 {
  clip-path: inset(0 33.3% 0 55.5%);
  animation-delay: 0.6s;
}

.tp-clip-anim .mask-7 {
  clip-path: inset(0 22.2% 0 66.6%);
  animation-delay: 0.7s;
}

.tp-clip-anim .mask-8 {
  clip-path: inset(0 11.1% 0 77.7%);
  animation-delay: 0.8s;
}

.tp-clip-anim .mask-9 {
  clip-path: inset(0 0% 0 88.8%);
  animation-delay: 0.9s;
}

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

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

.tp-clip-anim {
  width: 100%;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  position: relative;
}

.tp-clip-anim .tp-anim-img {
  opacity: 0;
  width: 100%;
  height: 100%;
}

.tp-clip-anim .mask {
  background-size: cover;
  background-position: center;
  transform: scale(1.005);
}

.tp-clip-anim>* {
  grid-area: 1/1/2/2;
  width: 100%;
  height: 100%;
  max-height: 100%;
}

.container-1680 {
  max-width: 1680px;
}

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

/*# sourceMappingURL=main.css.map */
/* ============================================
   WHITE & BLUE LUXURY THEME OVERRIDES
   ============================================ */

/* --- Footer: Dark Navy Background for Contrast --- */
.footer-section {
  background-color: #0F172A;
}

.footer-section-2 {
  background-color: #0F172A;
}

.footer-section-4 {
  background-color: #0F172A;
}

.footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom .footer-bottom-wrapper p {
  color: rgba(255, 255, 255, 0.87);
}

.footer-bottom .footer-bottom-wrapper p b {
  color: var(--theme);
}

.footer-bottom .footer-bottom-wrapper .footer-list li a {
  color: rgba(255, 255, 255, 0.87);
}

.footer-bottom .footer-bottom-wrapper .footer-list li {
  color: rgba(223, 220, 210, 1);
}

.footer-widget-wrapper .footer-widget-items .widget-head span {
  color: #fff;
}

.footer-widget-wrapper .footer-widget-items .footer-content p {
  color: rgba(255, 255, 255, 0.9);
}

.footer-widget-wrapper .footer-widget-items .gt-list-area li a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-widget-wrapper .footer-widget-items .gt-list-area li:hover a {
  color: var(--theme);
}

.footer-widget-wrapper .footer-widget-items .social-icon a {
  background-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.footer-widget-wrapper .footer-widget-items .social-icon a:hover {
  background-color: var(--theme);
}

.footer-widget-wrapper .footer-form-3 .subscribe-text {
  color: #fff;
}

.footer-widget-wrapper .footer-form-3 form input {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  border: none;
}

.footer-widget-wrapper .footer-form-3 form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer-widget-wrapper .footer-form-3 .sq-checkbox {
  color: rgba(255, 255, 255, 0.7);
}

.footer-widget-wrapper .footer-form-3 .sq-checkbox .box {
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
}

.footer-section-4 .footer-top-wrapper-4 {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.footer-section-4 .footer-top-wrapper-4 .content .title,
.footer-section-4 .footer-top-wrapper-4 .footer-left p {
  color: rgba(255, 255, 255, 0.9);
}

.footer-widget-wrapper-4 .footer-content .contact-details-items .content span,
.footer-widget-wrapper-4 .footer-content .contact-details-items .content p,
.footer-widget-wrapper-4 .footer-widget-items .widget-head h3,
.footer-widget-wrapper-4 .footer-widget-items .gt-list-area li a {
  color: #fff;
}

.footer-widget-wrapper-4 .footer-content form input {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

.footer-widget-wrapper-4 .footer-content form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* --- Header: Transparent → Glass on scroll --- */
.header-section {
  background-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  border-bottom: 1px solid rgba(37, 99, 235, 0.06);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header-section.sticky {
  background-color: #ffffff !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(37, 99, 235, 0.08);
}

.header-section .navbar-nav .nav-link {
  color: #1E293B !important;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.3s ease;
}

.header-section .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2563EB, #60A5FA);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.header-section .navbar-nav .nav-link:hover::after,
.header-section .navbar-nav .nav-link.active::after {
  width: 20px;
}

.header-section .navbar-nav .nav-link:hover,
.header-section .navbar-nav .nav-link.active {
  color: #2563EB !important;
}

.header-section .menu-right-info a {
  color: #1E293B;
  transition: color 0.3s ease;
}

.header-section .menu-right-info a:hover {
  color: #2563EB;
}

.header-section .sidebar__toggle span {
  background-color: #1E293B;
  transition: background-color 0.3s ease;
  border-radius: 2px;
}

.header-section .sidebar__toggle:hover span {
  background-color: #2563EB;
}

/* --- Submenus: Premium Dropdown --- */
.header-section .sub-menu {
  background-color: #ffffff !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(37, 99, 235, 0.04);
  border: 1px solid rgba(37, 99, 235, 0.06);
  border-radius: 12px !important;
  padding: 8px !important;
  overflow: hidden;
}

.header-section .sub-menu li a {
  color: #374151 !important;
  padding: 8px 16px !important;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-weight: 500;
}

.header-section .sub-menu li a:hover {
  color: #2563EB !important;
  background-color: #F0F4FF;
}

.header-section .sub-menu.has-homemenu {
  background-color: #ffffff !important;
  border-radius: 16px !important;
  padding: 16px !important;
}

.header-section .homemenu-content .hometitle {
  color: #1E293B !important;
  font-weight: 600;
}

.header-section .homemenu .homemenu-thumb {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.08);
}

/* --- Offcanvas Menu: White & Blue --- */
.offcanvas-menu {
  background-color: #ffffff !important;
}

.offcanvas-menu .action-title {
  color: #1F2937;
}

.offcanvas-menu .off-contact-info .info-title {
  color: #111827;
}

.offcanvas-menu .off-contact-info .contact-details .sub-info {
  color: #2563EB;
}

.offcanvas-menu .off-contact-info .contact-details p,
.offcanvas-menu .off-contact-info .contact-details p a {
  color: #4B5563;
}

.offcanvas-menu .social-icon-list .follow-title {
  color: #111827;
}

.offcanvas-menu .social-icon a {
  color: #1F2937 !important;
  background-color: #F0F4FF !important;
}

.offcanvas-menu .social-icon a:hover {
  background-color: #2563EB !important;
  color: #fff !important;
}

.offcanvas-overlay {
  background: rgba(0, 0, 0, 0.3);
}

/* --- Mobile Menu: White BG --- */
.mobile-menu-area {
  background-color: #ffffff;
}

.mobile-menu-area .mobile-topbar {
  background-color: #ffffff;
}

.mobile-menu-area .bars span {
  background-color: #1F2937;
}

.mobile-menu-area .main-header__search {
  color: #1F2937;
}

.mobile-menu-main {
  background-color: #ffffff !important;
}

.mobile-menu-main .menu-list ul li a {
  color: #1F2937 !important;
  border-bottom-color: #E5E7EB !important;
}

.mobile-menu-main .menu-list ul li a:hover {
  color: #2563EB !important;
}

.mobile-menu-main .menu-list ul li a i {
  color: #2563EB;
}

.mobile-menu-main .close-mobile-menu i {
  color: #1F2937;
}

.mobile-menu-main .off-contact-info .info-title {
  color: #111827;
}

.mobile-menu-main .off-contact-info .contact-details .sub-info {
  color: #2563EB;
}

.mobile-menu-main .off-contact-info .contact-details p,
.mobile-menu-main .off-contact-info .contact-details p a {
  color: #4B5563;
}

.mobile-menu-main .social-icon-list .follow-title {
  color: #111827;
}

.mobile-menu-main .social-icon a {
  color: #1F2937 !important;
  background-color: #F0F4FF !important;
}

.mobile-menu-main .social-icon a:hover {
  background-color: #2563EB !important;
  color: #fff !important;
}

/* --- Search Popup: Light --- */
.search-wrap {
  background-color: rgba(255, 255, 255, 0.97) !important;
}

.search-wrap .search-form input {
  color: #111827;
  border-bottom-color: #CBD5E1;
}

.search-wrap .search-form input::placeholder {
  color: #9CA3AF;
}

.search-wrap .search-close {
  color: #111827;
}

/* --- Hero Section: handled in main hero styles above --- */

/* --- Section Title Colors on White BG --- */
.section-title span {
  color: #2563EB;
}

.section-title h2 {
  color: #111827;
}

.section-content p {
  color: #4B5563;
}

/* --- Breadcrumb: Light Luxury Theme --- */
.breadcrumb-wrapper {
  background-color: transparent;
}

/* --- General Body & Text Fixes --- */
body {
  color: #4B5563;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #111827;
}

a {
  color: #2563EB;
}

/* --- Cards & Boxes on White BG --- */
.feature-card,
.service-card,
.pricing-card {
  border: 1px solid #E5E7EB;
}

/* --- Buttons: Blue Theme --- */
.theme-btn-main {
  background-color: #2563EB;
}

.theme-btn-main .theme-btn {
  color: #ffffff;
}

.theme-btn-main:hover {
  background-color: #1D4ED8;
}

.bg-black-style {
  background-color: #2563EB !important;
  color: #fff !important;
}

.bg-white-style {
  background-color: #ffffff !important;
  border: 1px solid #E5E7EB !important;
}

.bg-white-style .theme-btn {
  color: #111827 !important;
}

/* --- Marque/Ticker Text --- */
.marque-item .marque-title {
  color: #111827;
  -webkit-text-stroke-color: rgba(37, 99, 235, 0.2);
}

/* --- Testimonial Section --- */
.testimonial-wrapper {
  background-color: #F8FAFF;
}

/* --- FAQ Accordion --- */
.faq-content .accordion-button {
  color: #111827;
  background-color: #F8FAFF;
}

.faq-content .accordion-button:not(.collapsed) {
  color: #2563EB;
  background-color: #EBF5FF;
}

.faq-content .accordion-body {
  color: #4B5563;
}

/* --- CTA Section: Blue Gradient --- */
.cta-section {
  background: linear-gradient(135deg, #1E40AF 0%, #2563EB 100%);
}

.cta-section h2,
.cta-section p,
.cta-section .cta-title {
  color: #ffffff;
}

/* --- Counter/Stats Boxes --- */
.counter-box {
  background-color: #F0F4FF;
  border: 1px solid #DBEAFE;
}

/* --- News/Blog Cards --- */
.news-card {
  border: 1px solid #E5E7EB;
  background-color: #ffffff;
}

/* --- Contact Form --- */
.contact-form input,
.contact-form textarea {
  border-color: #E5E7EB;
  color: #111827;
  background-color: #F8FAFF;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9CA3AF;
}

/* --- Brand/Client Section --- */
.brand-section {
  background-color: #F8FAFF;
}

/* --- Footer Area 3 Light BG fix --- */
.footer-area-3 {
  background-color: #F0F4FF;
}

.footer-area-3::before {
  background: rgba(37, 99, 235, 0.12);
}

/* --- Subtle hover effects --- */
.service-card:hover,
.feature-card:hover,
.pricing-card:hover {
  border-color: #2563EB;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.1);
}

/* --- Scrollbar luxury feel --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #F0F4FF;
}

::-webkit-scrollbar-thumb {
  background: #2563EB;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #1D4ED8;
}

/* --- Input Text Fix (was white on white) --- */
input,
textarea,
select {
  color: #111827 !important;
}

input:focus,
textarea:focus {
  color: #111827 !important;
}

input::placeholder,
textarea::placeholder {
  color: #9CA3AF !important;
}

/* --- Typography base fix: heading colors --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #111827 !important;
}

/* --- Restore white text in dark sections --- */
.footer-section h1,
.footer-section h2,
.footer-section h3,
.footer-section h4,
.footer-section h5,
.footer-section h6,
.footer-section-2 h1,
.footer-section-2 h2,
.footer-section-2 h3,
.footer-section-4 h1,
.footer-section-4 h2,
.footer-section-4 h3,
.footer-section-4 h4,
.footer-section-4 h5,
.footer-section-4 h6 {
  color: #ffffff !important;
}

.breadcrumb-wrapper h1,
.breadcrumb-wrapper h2,
.breadcrumb-wrapper h3 {
  color: #0F172A !important;
}

.breadcrumb-wrapper p,
.breadcrumb-wrapper span,
.breadcrumb-wrapper a,
.breadcrumb-wrapper .breadcrumb-item {
  color: #475569 !important;
}

.breadcrumb-wrapper .breadcrumb-item.active {
  color: #2563EB !important;
}

.cta-section h1,
.cta-section h2,
.cta-section h3,
.cta-section h4,
.cta-section h5,
.cta-section h6 {
  color: #ffffff !important;
}

/* --- Offcanvas/Sidebar Toggle bars on white header --- */
.sidebar__toggle span,
.offcanvas-btn span,
.bars span {
  background-color: #1F2937 !important;
}

/* --- Ensure nav links readable on white --- */
.navbar-nav>.nav-item>.nav-link {
  color: #1F2937 !important;
}

.navbar-nav>.nav-item>.nav-link:hover,
.navbar-nav>.nav-item>.nav-link.active {
  color: #2563EB !important;
}

/* --- Theme btn white text on blue bg --- */
.theme-btn-main .theme-btn-arrow-left,
.theme-btn-main .theme-btn-arrow-right {
  color: #ffffff;
}

/* --- Section backgrounds for visual rhythm --- */
.section-padding:nth-child(even) {
  background-color: #F8FAFF;
}

/* --- Team section cards --- */
.team-card {
  border: 1px solid #E5E7EB;
  background: #ffffff;
}

.team-card:hover {
  border-color: #2563EB;
}

/* --- Project/Portfolio overlay text stays white --- */
.project-card .project-content h3,
.project-card .project-content p,
.project-card .project-content a,
.portfolio-card .portfolio-content h3,
.portfolio-card .portfolio-content a {
  color: #ffffff !important;
}

/* --- Light bg sections inputs --- */
.footer-area-3 input,
.footer-area-3 h2,
.footer-area-3 p,
.footer-area-3 span,
.footer-area-3 li,
.footer-area-3 li a {
  color: #111827 !important;
}

.footer-area-3 input::placeholder {
  color: #9CA3AF !important;
}

/* --- Logo: AUXA logo (no filter on header - already dark blue) --- */
.header-section .navbar-brand img,
.header-section .logo img,
.mobile-menu-area .logo img,
.mobile-menu-main .logo img,
.offcanvas-menu .logo img {
  filter: none;
  max-height: 38px;
  width: auto;
}

/* Footer logo: invert to white for dark bg */
.footer-section .footer-logo img,
.footer-section-2 .footer-logo img,
.footer-section-4 .footer-logo img {
  filter: brightness(0) invert(1);
  max-height: 38px;
  width: auto;
}

/* ============================================
   IMAGE COLOR FIXES - White/Red to Blue theme
   ============================================ */

/* Brand logos: white on transparent → make dark */
.brand-box-1 .brand-img-1 img {
  filter: brightness(0) saturate(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.brand-box-1:hover .brand-img-1 img {
  filter: brightness(0) saturate(100%) invert(30%) sepia(95%) saturate(2000%) hue-rotate(215deg) brightness(95%);
  opacity: 1;
}

/* Hero Globe: handled in main hero styles above */

/* Star icons in marquee-section-2: Orange → Blue */
.marque-section-2 .marquee-group .text-2 img {
  filter: hue-rotate(220deg) saturate(1.5) brightness(0.9);
}

/* Star icons in marquee-section (white stars on blue bg - keep white) */
.marque-section .text img {
  filter: none;
}

/* Hero line decoration */
.hero-1 .hero-line img {
  filter: brightness(0) saturate(100%) invert(30%) sepia(95%) saturate(2000%) hue-rotate(215deg) brightness(95%);
  opacity: 0.15;
}

/* Sign image in hero - ensure visible on light bg */
.hero-right-items .sign img {
  filter: brightness(0) saturate(100%);
}

/* ============================================
   EXTRAORDINARY LUXURY ENHANCEMENTS
   ============================================ */

/* --- Hero Section Depth & Richness --- */
.hero-1 .hero-content {
  position: relative;
  z-index: 2;
}

.hero-1 .hero-content h1,
.hero-1 .hero-content .hero-main-title {
  color: #0F172A !important;
  font-size: 76px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-main-title span {
  display: block;
  background: linear-gradient(135deg, #2563EB, #3B82F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: "Urbanist", sans-serif;
  font-style: normal;
  font-size: inherit;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
}

.hero-1 .hero-right-items {
  position: relative;
  z-index: 2;
}

.hero-1 .hero-right-items .text {
  color: #475569;
}

.hero-1 .hero-right-items .text b {
  color: #1E293B !important;
}

/* --- Hero Background --- */
.hero-section-1 {
  position: relative;
}

.hero-1 {
  background: linear-gradient(160deg, #eef1ff 0%, #e8ecff 30%, #f0edff 55%, #eef2ff 80%, #f5f3ff 100%) !important;
}

/* --- EST Badge --- */
.hero-est-badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.hero-est-badge .est-text {
  font-size: 13px;
  font-weight: 700;
  color: #2563EB;
  letter-spacing: 0.08em;
  border: 1.5px solid rgba(37, 99, 235, 0.3);
  border-radius: 6px;
  padding: 5px 14px;
  text-transform: uppercase;
}

.hero-est-badge .est-line {
  display: inline-block;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, #2563EB, #3B82F6);
  position: relative;
  border-radius: 2px;
}

.hero-est-badge .est-line::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2563EB;
}

/* --- Hero Subtitle --- */
.hero-subtitle {
  font-size: 15px;
  font-weight: 500;
  color: #6B7280;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  text-transform: none !important;
}

/* --- Hero Description --- */
.hero-desc {
  font-size: 16px;
  font-weight: 400;
  color: #64748B;
  line-height: 1.7;
  max-width: 420px;
  margin-top: 20px;
  margin-bottom: 0;
  text-transform: none !important;
}

/* --- Decorative Line --- */
.hero-deco-line {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 25px;
  margin-bottom: 5px;
}

.deco-line-bar {
  display: inline-block;
  width: 140px;
  height: 2.5px;
  background: linear-gradient(90deg, #2563EB, #3B82F6);
  border-radius: 2px;
}

.deco-line-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2563EB;
  margin-left: -1px;
}

/* --- Hero Filled Button --- */
.hero-btn-filled {
  background: linear-gradient(135deg, #2563EB, #1D4ED8) !important;
  border: none !important;
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.35);
}

.hero-btn-filled:hover {
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.5);
  transform: translateY(-1px);
}

.hero-btn-filled .theme-btn {
  color: #fff !important;
}

.hero-btn-filled .theme-btn-arrow-right {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
}

.hero-btn-filled .theme-btn-arrow-right i {
  color: #fff !important;
}

/* --- Thumb Arrow Icons --- */
.small-thumb {
  position: relative;
}

.thumb-arrow {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #2563EB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
  z-index: 3;
  transition: all 0.3s;
  border: 3px solid #eef2ff;
}

.small-thumb:hover .thumb-arrow {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

/* --- Floating Spheres --- */
.hero-float-sphere {
  position: absolute;
  border-radius: 50%;
  z-index: 3;
  pointer-events: none;
}

.hero-float-sphere-blue {
  width: 30px;
  height: 30px;
  background: radial-gradient(circle at 30% 30%, #93c5fd, #2563EB, #1e3a8a);
  top: 20%;
  left: 35%;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5), inset 0 -2px 4px rgba(0, 0, 0, 0.2);
  animation: floatSphere 4s ease-in-out infinite;
}

.hero-float-sphere-silver {
  width: 18px;
  height: 18px;
  background: radial-gradient(circle at 30% 30%, #fff, #e2e8f0, #94a3b8);
  bottom: 22%;
  right: 20%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12), inset 0 -2px 3px rgba(0, 0, 0, 0.1);
  animation: floatSphere 5s ease-in-out infinite reverse;
}

@keyframes floatSphere {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@media (max-width: 767px) {
  .hero-float-sphere {
    display: none;
  }
}

/* --- Hero Colorful Spheres (8 bubbles) --- */
.hero-sphere {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  backdrop-filter: blur(8px);
}

/* Large blue - top right */
.hero-sphere-1 {
  top: 12%;
  right: 5%;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(96, 165, 250, 0.06));
  border: 1px solid rgba(37, 99, 235, 0.1);
  animation: heroSphereA 5s ease-in-out infinite;
}

/* Medium purple - bottom right */
.hero-sphere-2 {
  bottom: 18%;
  right: 12%;
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(139, 92, 246, 0.07));
  border: 1px solid rgba(168, 85, 247, 0.1);
  animation: heroSphereB 4s ease-in-out infinite;
}

/* Small pink - center right */
.hero-sphere-3 {
  top: 35%;
  right: 25%;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.18), rgba(244, 114, 182, 0.06));
  border: 1px solid rgba(236, 72, 153, 0.1);
  animation: heroSphereC 3.5s ease-in-out infinite;
}

/* Tiny teal - top left */
.hero-sphere-4 {
  top: 18%;
  left: 8%;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.22), rgba(45, 212, 191, 0.08));
  border: 1px solid rgba(20, 184, 166, 0.12);
  animation: heroSphereD 4.5s ease-in-out infinite;
}

/* Medium indigo - bottom left */
.hero-sphere-5 {
  bottom: 25%;
  left: 4%;
  width: 95px;
  height: 95px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.14), rgba(129, 140, 248, 0.05));
  border: 1px solid rgba(99, 102, 241, 0.08);
  animation: heroSphereE 6s ease-in-out infinite;
}

/* Small amber - bottom center */
.hero-sphere-6 {
  bottom: 12%;
  left: 38%;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(251, 191, 36, 0.06));
  border: 1px solid rgba(245, 158, 11, 0.1);
  animation: heroSphereF 3s ease-in-out infinite;
}

/* Tiny cyan - top center */
.hero-sphere-7 {
  top: 8%;
  left: 45%;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.25), rgba(34, 211, 238, 0.08));
  border: 1px solid rgba(6, 182, 212, 0.14);
  animation: heroSphereG 3.8s ease-in-out infinite;
}

/* Medium rose - center left */
.hero-sphere-8 {
  top: 55%;
  left: 18%;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.14), rgba(251, 113, 133, 0.05));
  border: 1px solid rgba(244, 63, 94, 0.08);
  animation: heroSphereH 5.5s ease-in-out infinite;
}

@keyframes heroSphereA {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(-22px, 20px) scale(1.08);
  }

  50% {
    transform: translate(18px, -24px) scale(0.93);
  }

  75% {
    transform: translate(-12px, -14px) scale(1.05);
  }
}

@keyframes heroSphereB {

  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  33% {
    transform: translate(20px, -28px) scale(1.12) rotate(8deg);
  }

  66% {
    transform: translate(-24px, 16px) scale(0.88) rotate(-5deg);
  }
}

@keyframes heroSphereC {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-18px, 22px) scale(1.18);
  }
}

@keyframes heroSphereD {

  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  25% {
    transform: translate(14px, -12px) scale(1.22) rotate(15deg);
  }

  50% {
    transform: translate(-10px, 16px) scale(0.82) rotate(-10deg);
  }

  75% {
    transform: translate(12px, 8px) scale(1.1) rotate(5deg);
  }
}

@keyframes heroSphereE {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(28px, -20px) scale(1.06);
  }

  66% {
    transform: translate(-18px, 24px) scale(0.94);
  }
}

@keyframes heroSphereF {

  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  50% {
    transform: translate(22px, -20px) scale(1.28) rotate(20deg);
  }
}

@keyframes heroSphereG {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(-12px, 14px) scale(1.3);
  }

  50% {
    transform: translate(10px, -18px) scale(0.78);
  }

  75% {
    transform: translate(-14px, -10px) scale(1.15);
  }
}

@keyframes heroSphereH {

  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  33% {
    transform: translate(-20px, -22px) scale(1.1) rotate(-8deg);
  }

  66% {
    transform: translate(24px, 14px) scale(0.9) rotate(6deg);
  }
}

@media (max-width: 991px) {
  .hero-sphere-1 {
    width: 90px;
    height: 90px;
  }

  .hero-sphere-5 {
    width: 65px;
    height: 65px;
  }

  .hero-sphere-3,
  .hero-sphere-7 {
    display: none;
  }
}

@media (max-width: 575px) {

  .hero-sphere-1,
  .hero-sphere-2,
  .hero-sphere-5,
  .hero-sphere-8 {
    display: none;
  }

  .hero-sphere-4,
  .hero-sphere-6 {
    opacity: 0.5;
  }
}

/* --- Hero Bottom Row --- */
.hero-bottom-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 50px;
  position: relative;
  z-index: 2;
  padding-top: 25px;
  border-top: 1px solid rgba(37, 99, 235, 0.08);
}

@media (max-width: 991px) {
  .hero-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-top: 35px;
  }
}

/* --- Trusted Text --- */
.hero-trusted-line {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 18px;
}

.hero-trusted-text {
  font-size: 14px;
  font-weight: 700;
  color: #2563EB;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  margin-right: 10px;
}

.hero-trusted-line .deco-line-bar {
  width: 60px;
}

.hero-trusted-line .deco-line-dot {
  width: 8px;
  height: 8px;
}

/* --- Brand Logos --- */
.hero-brand-logos {
  display: flex;
  align-items: center;
  gap: 35px;
  flex-wrap: wrap;
}

.hero-brand-logos span {
  font-size: 16px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s;
}

.hero-brand-logos span:hover {
  color: #2563EB;
}

@media (max-width: 575px) {
  .hero-brand-logos {
    gap: 20px;
  }

  .hero-brand-logos span {
    font-size: 13px;
  }
}

/* --- Tagline Card --- */
.hero-tagline-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 24px 30px;
  max-width: 380px;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero-tagline-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563EB;
  font-size: 18px;
}

.hero-tagline-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 5px;
}

.hero-tagline-content p {
  font-size: 14px;
  font-weight: 400;
  color: #64748B;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 575px) {
  .hero-tagline-card {
    padding: 16px 20px;
  }
}

/* --- Responsive Hero Heading --- */
@media (max-width: 1899px) {
  .hero-1 .hero-content h1 {
    font-size: 66px;
  }
}

@media (max-width: 1399px) {
  .hero-1 .hero-content h1 {
    font-size: 56px;
  }
}

@media (max-width: 1199px) {
  .hero-1 .hero-content h1 {
    font-size: 48px;
    text-align: center;
  }

  .hero-subtitle,
  .hero-est-badge,
  .hero-desc {
    text-align: center;
  }

  .hero-est-badge {
    justify-content: center;
  }

  .hero-deco-line {
    justify-content: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-content h1 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .hero-1 .hero-content h1 {
    font-size: 34px;
  }

  .hero-deco-line .deco-line-bar {
    width: 80px;
  }
}

/* --- Section Title Luxury Styling --- */
.section-title .sub-title,
.section-title .section-sub-title {
  color: #2563EB !important;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* --- Card Luxury Styling --- */
.feature-card-item,
.service-card-item,
.feature-card,
.service-card {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.feature-card-item::before,
.service-card-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563EB, #60A5FA, #2563EB);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card-item:hover::before,
.service-card-item:hover::before {
  opacity: 1;
}

.feature-card-item:hover,
.service-card-item:hover,
.feature-card:hover,
.service-card:hover {
  border-color: rgba(37, 99, 235, 0.15);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.08), 0 4px 20px rgba(0, 0, 0, 0.03);
  transform: translateY(-4px);
}

/* --- About Section Enhancement --- */
.about-wrapper {
  position: relative;
}

.about-wrapper .about-image {
  border-radius: 16px;
  overflow: hidden;
}

.about-wrapper .about-image img {
  border-radius: 16px;
}

/* --- Counter/Stats Luxury --- */
.about-wrapper .about-content .about-counter-items .content h2 {
  background: linear-gradient(135deg, #1E40AF, #2563EB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Pricing Cards Enhancement --- */
.pricing-card-items {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.pricing-card-items:hover {
  border-color: #2563EB;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.1);
  transform: translateY(-6px);
}

.pricing-card-items.active {
  background: linear-gradient(145deg, #1E40AF 0%, #2563EB 100%);
  border-color: transparent;
}

.pricing-card-items.active h2,
.pricing-card-items.active h3,
.pricing-card-items.active p,
.pricing-card-items.active span,
.pricing-card-items.active li {
  color: #ffffff !important;
}

/* --- Testimonial Luxury --- */
.testimonial-card-items,
.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.06);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.testimonial-card-items:hover,
.testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.08);
}

/* --- Testimonial Cards Theme Match --- */
.testimonial-section {
  background: #ffffff !important;
}

.testimonial-box-style-1 {
  background-color: #F0F4FF !important;
  border: 1px solid rgba(37, 99, 235, 0.06);
  border-radius: 16px !important;
}

.testimonial-box-style-1.style-2 {
  background: linear-gradient(145deg, #1E40AF 0%, #2563EB 100%) !important;
  border-color: transparent;
}

.testimonial-box-style-1.style-2 h3 {
  color: #ffffff !important;
  opacity: 0.9;
}

.testimonial-box-style-1.style-2 .client-info-item {
  border-top-color: rgba(255, 255, 255, 0.15) !important;
}

/* Light testimonial cards */
.testimonial-box-style-1 .client-info-item {
  border-top: 1px solid rgba(37, 99, 235, 0.1) !important;
}

.testimonial-box-style-1 h3 {
  color: #1E293B !important;
  opacity: 1 !important;
}

.testimonial-box-style-1 .client-info-item .client-info h4 {
  color: #0F172A !important;
}

.testimonial-box-style-1 .client-info-item .client-info span {
  color: #64748B !important;
}

.testimonial-box-style-1 .client-info-item .star {
  color: #2563EB !important;
}

.testimonial-box-style-1 .quote-icon {
  background-color: #2563EB !important;
}

/* Blue gradient testimonial cards */
.client-testimonial__item.testimonial-box-style-1.style-2 {
  background: linear-gradient(145deg, #1E40AF 0%, #2563EB 100%) !important;
}

.client-testimonial__item.testimonial-box-style-1.style-2 h3 {
  color: #ffffff !important;
  opacity: 0.95 !important;
}

.client-testimonial__item.testimonial-box-style-1.style-2 .client-info-item {
  border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.client-testimonial__item.testimonial-box-style-1.style-2 .client-info-item .client-info h4 {
  color: #000000 !important;
}

.client-testimonial__item.testimonial-box-style-1.style-2 .client-info-item .client-info span {
  color: rgba(0, 0, 0, 0.7) !important;
}

.client-testimonial__item.testimonial-box-style-1.style-2 .client-info-item .star {
  color: #fbbf24 !important;
}

.client-testimonial__item.testimonial-box-style-1.style-2 .client-info-item .star i {
  color: #fbbf24 !important;
}

.client-testimonial__item.testimonial-box-style-1.style-2 .quote-icon {
  background-color: rgba(255, 255, 255, 0.15) !important;
}

.client-testimonial__item.testimonial-box-style-1.style-2 .quote-icon img {
  filter: brightness(0) invert(1);
}

/* Light bg image tint */
.testimonial-section .light-bg img {
  filter: hue-rotate(200deg) saturate(0.5) brightness(1.2);
  opacity: 0.5;
}

/* --- FAQ Luxury --- */
.faq-content .accordion-item {
  border: 1px solid rgba(37, 99, 235, 0.08) !important;
  border-radius: 12px !important;
  margin-bottom: 12px;
  overflow: hidden;
  background: #ffffff;
}

.faq-content .accordion-button {
  background: #ffffff !important;
  color: #111827 !important;
  font-weight: 600;
  border-radius: 12px !important;
}

.faq-content .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE) !important;
  color: #1E40AF !important;
}

/* --- CTA Section Luxury --- */
.cta-section,
.cta-area {
  background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 50%, #1E40AF 100%) !important;
  position: relative;
  overflow: hidden;
}

.cta-section::before,
.cta-area::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Let's Talk Section --- */
.lets-talk-section {
  position: relative;
}

.lets-talk-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 64, 175, 0.88)) !important;
  z-index: 1;
}

.lets-talk-section .container {
  position: relative;
  z-index: 2;
}

.lets-talk-section .title {
  color: #ffffff !important;
}

.lets-talk-section .title span {
  color: #ffffff !important;
  opacity: 0.9;
}

.lets-talk-section .theme-btn-main {
  background: #ffffff !important;
  border-color: #ffffff !important;
}

.lets-talk-section .theme-btn-main .theme-btn {
  color: #1E40AF !important;
}

.lets-talk-section .theme-btn-main .theme-btn-arrow-left,
.lets-talk-section .theme-btn-main .theme-btn-arrow-right {
  background: #2563EB !important;
  color: #ffffff !important;
}

.lets-talk-section .theme-btn-main .theme-btn-arrow-left i,
.lets-talk-section .theme-btn-main .theme-btn-arrow-right i {
  color: #ffffff !important;
}

/* --- Team Cards Luxury --- */
.team-card-items,
.team-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.06);
  transition: all 0.4s ease;
}

.team-card-items:hover,
.team-card:hover {
  box-shadow: 0 16px 50px rgba(37, 99, 235, 0.1);
  transform: translateY(-4px);
}

/* --- News/Blog Cards Luxury --- */
.news-card-items {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.news-card-items:hover {
  box-shadow: 0 16px 50px rgba(37, 99, 235, 0.08);
  transform: translateY(-4px);
}

/* --- News Section Full Theme Match --- */
.news-section {
  background: #F0F4FF !important;
}

.news-box-items {
  background-color: #ffffff !important;
  border: 1px solid rgba(37, 99, 235, 0.08) !important;
  border-radius: 16px !important;
  padding: 30px !important;
  border-bottom: 1px solid rgba(37, 99, 235, 0.08) !important;
}

.news-box-items .content .title {
  color: #0F172A !important;
}

.news-box-items .content .title a {
  color: #0F172A !important;
}

.news-box-items .content .title a:hover {
  color: #2563EB !important;
}

.news-box-items .content ul li .client-info .client-content .name {
  color: #0F172A !important;
}

.news-box-items .content ul li .client-info .client-content p {
  color: #64748B !important;
}

.news-box-items .content ul li span {
  color: #475569 !important;
}

.news-box-items .content ul li span.color-2 {
  color: #2563EB !important;
}

.news-box-items .content ul li .news-line {
  background: rgba(37, 99, 235, 0.15) !important;
}

.news-section .text-items p {
  color: #64748B !important;
}

.news-section .text-items .news-btn {
  color: #2563EB !important;
}

.news-section .text-items .news-btn .text-default {
  color: #2563EB !important;
}

.news-section .section-title-area {
  border-bottom-color: rgba(37, 99, 235, 0.1) !important;
}

/* --- Contact Form Luxury --- */
.contact-form-items {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
  padding: 40px;
}

.contact-form-items input,
.contact-form-items textarea {
  border: 1px solid rgba(37, 99, 235, 0.1) !important;
  border-radius: 12px !important;
  background: #F8FAFF !important;
  color: #111827 !important;
  transition: all 0.3s ease;
}

.contact-form-items input:focus,
.contact-form-items textarea:focus {
  border-color: #2563EB !important;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
  background: #ffffff !important;
}

/* --- Brand Section Enhancement --- */
.brand-section {
  background: linear-gradient(180deg, #ffffff 0%, #F8FAFF 100%) !important;
}

.brand-box-1 {
  background: #ffffff;
  transition: all 0.3s ease;
}

.brand-box-1:hover {
  background: #F8FAFF;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.06);
}

/* --- Breadcrumb Luxury Light --- */
.breadcrumb-wrapper {
  background: linear-gradient(160deg, #eef1ff 0%, #e8ecff 30%, #f0edff 55%, #eef2ff 80%, #f5f3ff 100%) !important;
  position: relative;
  overflow: hidden;
}

.breadcrumb-wrapper::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -6%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, rgba(96, 165, 250, 0.08) 40%, transparent 70%);
  pointer-events: none;
  animation: breadcrumbOrb1 6s ease-in-out infinite;
}

.breadcrumb-wrapper::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -4%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.14) 0%, rgba(139, 92, 246, 0.06) 45%, transparent 70%);
  pointer-events: none;
  animation: breadcrumbOrb2 8s ease-in-out infinite;
}

@keyframes breadcrumbOrb1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(-40px, 30px) scale(1.1);
  }

  50% {
    transform: translate(30px, -20px) scale(0.92);
  }

  75% {
    transform: translate(-15px, -25px) scale(1.06);
  }
}

@keyframes breadcrumbOrb2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(40px, -30px) scale(1.12);
  }

  66% {
    transform: translate(-25px, 35px) scale(0.9);
  }
}

/* --- Marque Section Blue Bar Enhancement --- */
.marque-section {
  background: linear-gradient(90deg, #1E40AF, #2563EB, #3B82F6, #2563EB, #1E40AF) !important;
  background-size: 200% 100% !important;
  animation: marquee-bg-shift 8s ease infinite;
}

@keyframes marquee-bg-shift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* --- Section Dividers - Subtle Gradient Lines --- */
.section-padding {
  position: relative;
}

/* --- Helping/Counter Section --- */
.helping-section {
  background: linear-gradient(160deg, #F0F4FF, #E8EFFE, #F5F8FF);
}

/* ============================================
   FULL PAGE THEME MATCHING - White & Blue Luxury
   ============================================ */

/* --- Global Section Backgrounds --- */
.section-bg {
  background-color: #F0F4FF !important;
}

.section-bg-2 {
  background-color: #EBF0FF !important;
}

/* --- Style Font (italic serif headings) --- */
.style-font {
  color: #2563EB !important;
}

.style-color {
  color: #2563EB !important;
}

/* --- All Section Titles --- */
.section-title h2 {
  color: #0F172A !important;
}

.section-title .sub-title img {
  filter: brightness(0) saturate(100%) invert(25%) sepia(98%) saturate(2000%) hue-rotate(215deg) brightness(96%);
}

/* --- Brand Section --- */
.brand-section {
  background: linear-gradient(180deg, #eef1ff 0%, #F8FAFF 50%, #ffffff 100%) !important;
  border-bottom: 1px solid rgba(37, 99, 235, 0.06);
}

.brand-section .title {
  color: #0F172A !important;
}

/* --- About Section --- */
.about-section {
  background: #ffffff;
}

.about-wrapper .about-image img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.1);
}

.about-wrapper .about-content .theme-btn-main {
  border-color: rgba(37, 99, 235, 0.15) !important;
}

.about-wrapper .about-content .about-counter-items .content p {
  color: #64748B;
}

.about-wrapper .about-content .about-counter-items .about-small {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.1);
}

.about-wrapper .about-content .about-counter-items .about-small img {
  border-radius: 16px;
}

/* --- Marquee Section (Blue Bar) --- */
.marque-section .text {
  color: #ffffff !important;
}

.marque-section .text img {
  filter: brightness(0) invert(1);
}

/* --- Marquee Section 2 (Light BG) --- */
.marque-section-2 {
  background-color: #F0F4FF !important;
}

.marque-section-2 .text-2 {
  color: #1E40AF !important;
  -webkit-text-stroke-color: #1E40AF !important;
}

.marque-section-2 .text-2 img {
  filter: brightness(0) saturate(100%) invert(25%) sepia(98%) saturate(2000%) hue-rotate(215deg) brightness(96%);
}

/* --- Service Section --- */
.service-section {
  background: linear-gradient(180deg, #ffffff 0%, #F8FAFF 100%);
}

.service-list-wrap {
  border-color: rgba(37, 99, 235, 0.1) !important;
}

.service-acc-btn {
  color: #0F172A !important;
}

.service-acc-btn .number {
  color: #2563EB !important;
}

.service-acc-btn h3 {
  color: #0F172A !important;
}

.service-acc-btn .icon {
  color: #2563EB !important;
}

.service-acc-btn.active {
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE) !important;
}

.service-acc-content .service-wrap {
  background: #F8FAFF;
  border-radius: 12px;
}

.service-acc-content .item-text h4 {
  color: #0F172A;
}

.service-acc-content .item-text ul li {
  color: #475569;
}

.service-acc-content .item-text ul li i {
  color: #2563EB !important;
}

/* --- Choose Us / Counter Section --- */
.choose-us-section {
  background: linear-gradient(180deg, #F8FAFF 0%, #ffffff 100%);
}

.counter-box {
  background: #ffffff !important;
  border: 1px solid rgba(37, 99, 235, 0.08) !important;
  border-radius: 16px !important;
  transition: all 0.4s ease;
}

.counter-box:hover {
  border-color: rgba(37, 99, 235, 0.15) !important;
  box-shadow: 0 16px 50px rgba(37, 99, 235, 0.1);
  transform: translateY(-4px);
}

.counter-box .text {
  color: #2563EB !important;
  font-weight: 600;
}

.counter-box h2 {
  color: #0F172A !important;
  background: linear-gradient(135deg, #1E40AF, #2563EB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.counter-box p {
  color: #64748B;
}

.about-text {
  color: #475569;
}

.about-text a {
  color: #2563EB !important;
  font-weight: 600;
}

/* --- Video Banner --- */
.video-banner img {
  border-radius: 20px;
}

.video-circle .video-btn {
  background: #2563EB !important;
  color: #ffffff !important;
}

.video-circle .video-btn i {
  color: #ffffff !important;
}

/* --- Project Section --- */
.project-section {
  background: linear-gradient(180deg, #ffffff 0%, #F8FAFF 100%) !important;
}

.project-section .section-title h2 .last {
  color: #2563EB !important;
}

.project-box-items {
  border-radius: 16px;
  overflow: hidden;
}

.project-box-items .content {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 64, 175, 0.8)) !important;
}

.project-box-items .content .title a {
  color: #ffffff !important;
}

.project-box-items .content ul li a {
  color: rgba(255, 255, 255, 0.8) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.project-wrapper .text-items p {
  color: #64748B;
}

.project-wrapper .text-items .news-btn .text {
  color: #2563EB !important;
}

/* --- FAQ Section --- */
.faq-section {
  background: linear-gradient(180deg, #F0F4FF 0%, #E8ECFF 100%) !important;
}

.faq-image-1 img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.12);
}

.faq-image-1 .incrase-box {
  background: #ffffff !important;
  border: 1px solid rgba(37, 99, 235, 0.08);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.1);
  border-radius: 16px;
}

.faq-image-1 .incrase-box span {
  color: #475569;
}

.faq-image-1 .incrase-box p {
  color: #2563EB !important;
  font-weight: 800;
}

.faq-content-1 .accordion-box .accordion .acc-btn {
  color: #0F172A;
}

.faq-content-1 .accordion-box .accordion .acc-btn .number {
  color: #2563EB !important;
}

.faq-content-1 .accordion-box .accordion .acc-btn .icon {
  color: #2563EB !important;
}

.faq-content-1 .accordion-box .accordion.active-block .acc-btn.active {
  color: #1E40AF;
}

.faq-content-1 .accordion-box .accordion .acc-content .text {
  color: #64748B;
}

/* --- Pricing Section --- */
.pricing-section {
  background: #ffffff;
}

.pricing-box-items {
  background: #ffffff !important;
  border: 1px solid rgba(37, 99, 235, 0.08) !important;
  border-radius: 20px !important;
  transition: all 0.4s ease;
}

.pricing-box-items:hover {
  border-color: rgba(37, 99, 235, 0.15) !important;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.1);
  transform: translateY(-4px);
}

.pricing-box-items.active {
  background: linear-gradient(145deg, #1E40AF 0%, #2563EB 100%) !important;
  border-color: transparent !important;
}

.pricing-box-items.active .pricing-header span,
.pricing-box-items.active .pricing-header h3,
.pricing-box-items.active .pricing-header p,
.pricing-box-items.active .pricing-list h4,
.pricing-box-items.active .pricing-list ul li {
  color: #ffffff !important;
}

.pricing-box-items.active .pricing-btn {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}

.pricing-box-items .pricing-header span {
  color: #2563EB;
  font-weight: 600;
}

.pricing-box-items .pricing-header h3 {
  color: #0F172A;
}

.pricing-box-items .pricing-header p {
  color: #64748B;
}

.pricing-box-items .pricing-btn {
  background: #0F172A !important;
  color: #ffffff !important;
  border-radius: 50px !important;
  transition: all 0.3s ease;
}

.pricing-box-items .pricing-btn:hover {
  background: #2563EB !important;
}

.pricing-box-items .pricing-list h4 {
  color: #0F172A;
}

.pricing-box-items .pricing-list ul li {
  color: #475569;
}

.pricing-box-items .pricing-list ul li i {
  color: #2563EB !important;
}

.pricing-box-items.active .pricing-list ul li i {
  color: #93c5fd !important;
}

.pricing-toggle-wrapper .toggle-label {
  color: #64748B;
  cursor: pointer;
  transition: all 0.3s;
}

.pricing-toggle-wrapper .toggle-label.active {
  color: #2563EB;
  font-weight: 700;
}

/* --- News / Blog Section --- */
.news-card-items .content .title a {
  color: #0F172A !important;
}

.news-card-items .content .title a:hover {
  color: #2563EB !important;
}

.news-card-items .content .date,
.news-card-items .content span {
  color: #64748B;
}

.news-card-items .thumb {
  border-radius: 12px;
  overflow: hidden;
}

/* --- Footer Luxury --- */
footer,
.footer-section {
  background: linear-gradient(180deg, #0B1120 0%, #0F172A 100%) !important;
}

.footer-section .footer-widget h3,
.footer-section .footer-widget h4 {
  color: #ffffff !important;
}

.footer-section .footer-widget p,
.footer-section .footer-widget a,
.footer-section .footer-widget li {
  color: rgba(255, 255, 255, 0.6) !important;
}

.footer-section .footer-widget a:hover {
  color: #60A5FA !important;
}

.footer-section .footer-bottom {
  border-top: 1px solid rgba(37, 99, 235, 0.15) !important;
}

/* --- Global Button Styles --- */
.theme-btn-main.bg-white-style {
  border: 1px solid rgba(37, 99, 235, 0.15) !important;
  background: #ffffff !important;
}

.theme-btn-main.bg-white-style .theme-btn {
  color: #0F172A !important;
}

.theme-btn-main.bg-white-style:hover {
  border-color: #2563EB !important;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.12);
}

.theme-btn-main.bg-white-style .theme-btn-arrow-left,
.theme-btn-main.bg-white-style .theme-btn-arrow-right {
  background: #2563EB !important;
  color: #ffffff !important;
}

.theme-btn-main.bg-white-style .theme-btn-arrow-left i,
.theme-btn-main.bg-white-style .theme-btn-arrow-right i {
  color: #ffffff !important;
}

.theme-btn-main.bg-black-style {
  background: #0F172A !important;
}

.theme-btn-main.bg-black-style .theme-btn {
  color: #ffffff !important;
}

.theme-btn-main.bg-black-style:hover {
  background: #2563EB !important;
}

.theme-btn-main.border-style {
  border: 1px solid rgba(37, 99, 235, 0.2) !important;
}

.theme-btn-main.border-style .theme-btn {
  color: #0F172A !important;
}

.theme-btn-main.border-style:hover {
  border-color: #2563EB !important;
}

.theme-btn-main.border-style .theme-btn-arrow-left,
.theme-btn-main.border-style .theme-btn-arrow-right {
  color: #2563EB !important;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2563EB, #3B82F6);
  border-radius: 10px;
}

/* --- Selection Color --- */
::selection {
  background: #2563EB;
  color: #ffffff;
}

/* --- Process Shape / Pricing Shape --- */
.pricing-shape img,
.process-shape img {
  filter: brightness(0) saturate(100%) invert(25%) sepia(98%) saturate(2000%) hue-rotate(215deg) brightness(96%) opacity(0.15);
}

/* --- Client Info Enhancement --- */
.client-info {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.06);
  padding: 8px;
  ;
}

.client-info .content h2 {
  color: #2563EB !important;
}

.client-info .content p {
  color: #64748B;
}

/* --- hero-new (Project Section BG fix) --- */
.hero-new {
  background: linear-gradient(180deg, #ffffff 0%, #F8FAFF 100%) !important;
}

/* --- Project/Portfolio Cards --- */
.project-card-items {
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.project-card-items:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* --- Smooth Selection Color --- */
::selection {
  background: rgba(37, 99, 235, 0.15);
  color: #1E40AF;
}

/* --- Button Micro-interactions --- */
.theme-btn-main {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.theme-btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
}

/* --- Smooth Page Feel --- */
html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   HERO FLOATING ORBS + GRID (Visible!)
   ============================================ */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Large blue orb - top right */
.hero-orb-1 {
  top: -10%;
  right: -8%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, rgba(96, 165, 250, 0.08) 40%, transparent 70%);
  animation: heroFloat1 12s ease-in-out infinite;
}

/* Indigo orb - bottom left */
.hero-orb-2 {
  bottom: -15%;
  left: -8%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(59, 130, 246, 0.06) 45%, transparent 70%);
  animation: heroFloat2 15s ease-in-out infinite;
}

/* Small purple-blue orb - center */
.hero-orb-3 {
  top: 35%;
  left: 40%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, rgba(99, 102, 241, 0.04) 50%, transparent 70%);
  animation: heroFloat3 18s ease-in-out infinite;
}

@keyframes heroFloat1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(-40px, 25px) scale(1.06);
  }

  66% {
    transform: translate(25px, -20px) scale(0.96);
  }
}

@keyframes heroFloat2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(35px, -30px) scale(1.04);
  }

  66% {
    transform: translate(-20px, 35px) scale(0.94);
  }
}

@keyframes heroFloat3 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-50px, 35px) scale(1.1);
  }
}

/* Grid overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.045) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 20%, transparent 100%);
}

/* Responsive */
@media (max-width: 991px) {
  .hero-orb-1 {
    width: 400px;
    height: 400px;
  }

  .hero-orb-2 {
    width: 300px;
    height: 300px;
  }

  .hero-orb-3 {
    display: none;
  }
}

@media (max-width: 575px) {
  .hero-orb-1 {
    width: 250px;
    height: 250px;
  }

  .hero-orb-2 {
    width: 200px;
    height: 200px;
  }

  .hero-grid {
    background-size: 40px 40px;
  }
}

/* ============================================
   ABOUT PAGE - White & Blue Theme
   ============================================ */

/* --- Breadcrumb on About/Inner Pages - Light Luxury --- */
.breadcrumb-wrapper .page-heading h1 {
  color: #0F172A !important;
  text-shadow: none;
}

.breadcrumb-wrapper .page-heading h1 span {
  background: linear-gradient(135deg, #2563EB, #3B82F6) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items .title {
  background: linear-gradient(135deg, #1E40AF, #2563EB, #3B82F6) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  opacity: 1;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items ul li {
  color: #475569 !important;
  font-weight: 500;
}

/* --- Breadcrumb Grid Pattern --- */
.breadcrumb-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 10%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 10%, transparent 100%);
}

/* --- Breadcrumb Floating Spheres (8 colorful bubbles) --- */
.breadcrumb-sphere {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  backdrop-filter: blur(8px);
}

/* Large blue - top right */
.breadcrumb-sphere-1 {
  top: 15%;
  right: 6%;
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(96, 165, 250, 0.08));
  border: 1px solid rgba(37, 99, 235, 0.12);
  animation: sphereA 5s ease-in-out infinite;
}

/* Medium purple - bottom right */
.breadcrumb-sphere-2 {
  bottom: 20%;
  right: 15%;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(139, 92, 246, 0.08));
  border: 1px solid rgba(168, 85, 247, 0.12);
  animation: sphereB 4s ease-in-out infinite;
}

/* Small pink - top center-right */
.breadcrumb-sphere-3 {
  top: 30%;
  right: 28%;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.18), rgba(244, 114, 182, 0.06));
  border: 1px solid rgba(236, 72, 153, 0.1);
  animation: sphereC 3.5s ease-in-out infinite;
}

/* Tiny teal - top left area */
.breadcrumb-sphere-4 {
  top: 22%;
  left: 12%;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.22), rgba(45, 212, 191, 0.08));
  border: 1px solid rgba(20, 184, 166, 0.12);
  animation: sphereD 4.5s ease-in-out infinite;
}

/* Medium indigo - center left */
.breadcrumb-sphere-5 {
  top: 55%;
  left: 5%;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(129, 140, 248, 0.06));
  border: 1px solid rgba(99, 102, 241, 0.1);
  animation: sphereE 6s ease-in-out infinite;
}

/* Small amber/orange - bottom center */
.breadcrumb-sphere-6 {
  bottom: 15%;
  left: 35%;
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(251, 191, 36, 0.06));
  border: 1px solid rgba(245, 158, 11, 0.1);
  animation: sphereF 3s ease-in-out infinite;
}

/* Tiny cyan - top right area */
.breadcrumb-sphere-7 {
  top: 12%;
  right: 35%;
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.25), rgba(34, 211, 238, 0.08));
  border: 1px solid rgba(6, 182, 212, 0.15);
  animation: sphereG 3.8s ease-in-out infinite;
}

/* Medium rose - bottom left */
.breadcrumb-sphere-8 {
  bottom: 30%;
  left: 22%;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.14), rgba(251, 113, 133, 0.05));
  border: 1px solid rgba(244, 63, 94, 0.08);
  animation: sphereH 5.5s ease-in-out infinite;
}

/* --- Sphere Animations (Fast & Varied) --- */
@keyframes sphereA {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(-20px, 18px) scale(1.08);
  }

  50% {
    transform: translate(15px, -22px) scale(0.94);
  }

  75% {
    transform: translate(-10px, -12px) scale(1.04);
  }
}

@keyframes sphereB {

  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  33% {
    transform: translate(18px, -25px) scale(1.12) rotate(8deg);
  }

  66% {
    transform: translate(-22px, 15px) scale(0.9) rotate(-5deg);
  }
}

@keyframes sphereC {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-15px, 20px) scale(1.15);
  }
}

@keyframes sphereD {

  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  25% {
    transform: translate(12px, -10px) scale(1.2) rotate(15deg);
  }

  50% {
    transform: translate(-8px, 15px) scale(0.85) rotate(-10deg);
  }

  75% {
    transform: translate(10px, 8px) scale(1.1) rotate(5deg);
  }
}

@keyframes sphereE {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(25px, -18px) scale(1.06);
  }

  66% {
    transform: translate(-15px, 22px) scale(0.95);
  }
}

@keyframes sphereF {

  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  50% {
    transform: translate(20px, -18px) scale(1.25) rotate(20deg);
  }
}

@keyframes sphereG {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(-10px, 12px) scale(1.3);
  }

  50% {
    transform: translate(8px, -15px) scale(0.8);
  }

  75% {
    transform: translate(-12px, -8px) scale(1.15);
  }
}

@keyframes sphereH {

  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }

  33% {
    transform: translate(-18px, -20px) scale(1.1) rotate(-8deg);
  }

  66% {
    transform: translate(22px, 12px) scale(0.92) rotate(6deg);
  }
}

/* --- Responsive: hide some on smaller screens --- */
@media (max-width: 991px) {
  .breadcrumb-sphere-1 {
    width: 80px;
    height: 80px;
  }

  .breadcrumb-sphere-5 {
    width: 60px;
    height: 60px;
  }

  .breadcrumb-sphere-3,
  .breadcrumb-sphere-7 {
    display: none;
  }
}

@media (max-width: 575px) {

  .breadcrumb-sphere-1,
  .breadcrumb-sphere-2,
  .breadcrumb-sphere-5,
  .breadcrumb-sphere-8 {
    display: none;
  }

  .breadcrumb-sphere-4,
  .breadcrumb-sphere-6 {
    opacity: 0.6;
  }

  .breadcrumb-grid {
    background-size: 40px 40px;
  }
}

/* --- Breadcrumb Badge --- */
.breadcrumb-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37, 99, 235, 0.06);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 50px;
  padding: 8px 20px 8px 14px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.breadcrumb-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563EB;
  display: inline-block;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

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

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.breadcrumb-badge .badge-text {
  font-size: 13px;
  font-weight: 600;
  color: #2563EB !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* --- Breadcrumb Title "About auxa" Luxury Gradient Text --- */
.breadcrumb-wrapper .page-heading .breadcrumb-items .title {
  position: relative;
  z-index: 1;
}

/* --- Breadcrumb Subtle Divider --- */
.breadcrumb-wrapper .page-heading .breadcrumb-items ul li:nth-child(2) {
  color: rgba(37, 99, 235, 0.3) !important;
}

/* --- Override Bootstrap text-white on breadcrumb --- */
.breadcrumb-wrapper .page-heading h1.text-white {
  color: #0F172A !important;
}

/* --- About Video Banner --- */
.about-video-banner-about-page {
  margin: 0 60px;
}

@media (max-width: 1199px) {
  .about-video-banner-about-page {
    margin: 0 20px;
  }
}

.about-video-banner-about-page img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.12);
}

.about-video-banner-about-page .incrase-box {
  background: linear-gradient(135deg, #1E40AF, #2563EB) !important;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
}

.about-video-banner-about-page .incrase-box span {
  color: rgba(255, 255, 255, 0.85) !important;
}

.about-video-banner-about-page .incrase-box p {
  color: #ffffff !important;
}

/* --- Work Process Section 3 (About Page) --- */
.work-process-section-3 {
  background: linear-gradient(180deg, #ffffff 0%, #F8FAFF 100%) !important;
}

.about-page-style-3 .section-title h2 {
  color: #0F172A !important;
}

.about-page-style-3 .section-title h2 .style-font {
  color: #2563EB !important;
}

.about-page-style-3 .section-title h2 .style-color {
  color: #2563EB !important;
}

.about-page-style-3 .sec-content p {
  color: #64748B;
}

.about-page-style-3 .about-info p {
  color: #475569;
}

.about-page-style-3 .about-info p b {
  color: #0F172A !important;
}

.work-process-wrapper-3 .work-process-items-3 .icon {
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE) !important;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.work-process-wrapper-3 .work-process-items-3 .icon img {
  filter: brightness(0) saturate(100%) invert(25%) sepia(98%) saturate(2000%) hue-rotate(215deg) brightness(96%);
}

.work-process-wrapper-3 .work-process-items-3 .icon::before {
  background: linear-gradient(135deg, #1E40AF, #2563EB) !important;
}

.work-process-wrapper-3 .work-process-items-3.active .icon {
  background: linear-gradient(135deg, #1E40AF, #2563EB) !important;
  border-color: transparent;
}

.work-process-wrapper-3 .work-process-items-3.active .icon img,
.work-process-wrapper-3 .work-process-items-3:hover .icon img {
  filter: brightness(0) invert(1);
}

.work-process-wrapper-3 .work-process-items-3 .content .title {
  color: #0F172A !important;
}

.work-process-wrapper-3 .work-process-items-3 .content p {
  color: #64748B !important;
}

.work-process-wrapper-3 .line-1 img {
  filter: brightness(0) saturate(100%) invert(25%) sepia(98%) saturate(2000%) hue-rotate(215deg) brightness(96%);
  opacity: 0.15;
}

/* --- Testimonial Section About Page --- */
.testimonial-section-about {
  background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 50%, #1E40AF 100%) !important;
  border-radius: 20px;
}

.testimonial-section-about .section-title h2 {
  color: #ffffff !important;
}

.testimonial-section-about .section-title .sub-title {
  color: rgba(255, 255, 255, 0.8) !important;
}

.testimonial-section-about .section-title .sub-title img {
  filter: brightness(0) invert(1) !important;
}

.testimonial-section-about .section-title h2 .style-font {
  color: #60A5FA !important;
}

.testimonial-section-about .section-title h2 .style-color {
  color: #93C5FD !important;
}

.testimonial-box-style-5 {
  background-color: rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px !important;
}

.testimonial-box-style-5 h3 {
  color: rgba(255, 255, 255, 0.9) !important;
}

.testimonial-box-style-5 .quote-icon {
  background: linear-gradient(135deg, #2563EB, #3B82F6) !important;
}

.testimonial-box-style-5 .quote-icon img {
  filter: brightness(0) invert(1);
}

.testimonial-box-style-5 .client-info-item .client-info h4 {
  color: #ffffff !important;
}

.testimonial-box-style-5 .client-info-item .client-info span {
  color: rgba(255, 255, 255, 0.6) !important;
}

.testimonial-box-style-5 .client-info-item .star i {
  color: #FBBF24 !important;
}

.testimonial-box-style-5.style-2,
.testimonial-box-style-5.style-3 {
  background-color: rgba(255, 255, 255, 0.12) !important;
}

/* --- Why Choose Us Section 5 --- */
.why-choose-us-section-5 {
  background: #ffffff !important;
}

.why-choose-us-section-5 .section-title h2 {
  color: #0F172A !important;
}

.why-choose-us-section-5 .section-title h2 .style-font {
  color: #2563EB !important;
}

.why-choose-us-section-5 .section-title .sub-title {
  color: #2563EB !important;
}

.why-choose-us-section-5 .section-title .sub-title img {
  filter: brightness(0) saturate(100%) invert(25%) sepia(98%) saturate(2000%) hue-rotate(215deg) brightness(96%);
}

.why-choose-us-section-5 .choose-us-content .text {
  color: #64748B;
}

.why-choose-us-section-5 .thumb img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.1);
}

.why-choose-us-section-5 .about-conter-items .counter-box {
  background: #F8FAFF !important;
  border: 1px solid rgba(37, 99, 235, 0.08) !important;
  border-radius: 16px !important;
}

.why-choose-us-section-5 .about-conter-items .counter-box .sub-text {
  color: #2563EB !important;
}

.why-choose-us-section-5 .about-conter-items .counter-box h2 {
  background: linear-gradient(135deg, #1E40AF, #2563EB) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.why-choose-us-section-5 .about-conter-items .counter-box p {
  color: #64748B;
}

.why-choose-us-section-5 .about-vide-bg img {
  border-radius: 16px;
}

/* --- Team Section 5 --- */
.team-section-5 {
  background: linear-gradient(180deg, #F8FAFF 0%, #ffffff 100%) !important;
}

.team-section-5 .section-title h2 {
  color: #0F172A !important;
}

.team-section-5 .section-title h2 .style-font {
  color: #2563EB !important;
}

.team-section-5 .section-title .sub-title {
  color: #2563EB !important;
}

.team-section-5 .section-title .sub-title img {
  filter: brightness(0) saturate(100%) invert(25%) sepia(98%) saturate(2000%) hue-rotate(215deg) brightness(96%);
}

.team-section-5 .content p {
  color: #64748B;
}

.team-section-5 .news-btn .text {
  color: #2563EB !important;
}

.team-image-items-5 {
  border-radius: 16px;
  overflow: hidden;
}

.team-image-items-5 .team-content {
  background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.85) 100%);
}

.team-image-items-5 .team-content .content p {
  color: rgba(255, 255, 255, 0.7) !important;
}

.team-image-items-5 .team-content .content .title a {
  color: #ffffff !important;
}

.team-image-items-5 .team-content .left-items .social-icon a {
  color: rgba(255, 255, 255, 0.7) !important;
}

.team-image-items-5 .team-content .left-items .social-icon a:hover {
  color: #60A5FA !important;
}

.team-image-items-5 .team-content .left-items .icon {
  color: #ffffff !important;
  background: rgba(37, 99, 235, 0.3);
  border-radius: 50%;
}

/* --- Marquee Section (About page stars) --- */
.marque-section .text-4 {
  color: #ffffff !important;
}

.marque-section .text-4 img {
  filter: brightness(0) invert(1);
}

/* --- Sec Line Shape --- */
.sec-line-shape img {
  filter: brightness(0) saturate(100%) invert(25%) sepia(98%) saturate(2000%) hue-rotate(215deg) brightness(96%);
  opacity: 0.1;
}

/* --- Let's Deal Section --- */
.lets-deal-section {
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 50%, #EFF6FF 100%) !important;
}

.lets-deal-section .section-title h2 {
  color: #0F172A !important;
}

.lets-deal-section .section-title h2 .style-font {
  color: #2563EB !important;
}

.lets-deal-section .section-title .sub-title {
  color: #2563EB !important;
}

.lets-deal-section .section-title .sub-title img {
  filter: brightness(0) saturate(100%) invert(25%) sepia(98%) saturate(2000%) hue-rotate(215deg) brightness(96%);
}

/* --- Footer Section 3 (About/Inner Pages) --- */
.footer-section-3 {
  background: #ffffff !important;
}

.footer-section-3 .footer-area-3 {
  background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 100%) !important;
  border-radius: 20px;
}

.footer-section-3 .footer-area-3::before {
  background: rgba(96, 165, 250, 0.08);
}

.footer-section-3 .footer-area-3 h2,
.footer-section-3 .footer-area-3 h3,
.footer-section-3 .footer-area-3 p,
.footer-section-3 .footer-area-3 span,
.footer-section-3 .footer-area-3 li,
.footer-section-3 .footer-area-3 li a {
  color: rgba(255, 255, 255, 0.8) !important;
}

.footer-section-3 .footer-area-3 .footer-left-item h2 {
  color: #ffffff !important;
}

.footer-section-3 .footer-area-3 .footer-left-item h2 span {
  color: #60A5FA !important;
}

.footer-section-3 .footer-area-3 .widget-head h3 {
  color: #ffffff !important;
}

.footer-section-3 .footer-area-3 .gt-list-area li a {
  color: rgba(255, 255, 255, 0.6) !important;
}

.footer-section-3 .footer-area-3 .gt-list-area li a:hover {
  color: #60A5FA !important;
}

.footer-section-3 .footer-area-3 .social-icon a {
  color: rgba(255, 255, 255, 0.6) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.footer-section-3 .footer-area-3 .social-icon a:hover {
  color: #60A5FA !important;
  border-color: #60A5FA !important;
}

.footer-section-3 .footer-area-3 .footer-left-item form input {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}

.footer-section-3 .footer-area-3 .footer-left-item form input::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

.footer-section-3 .footer-area-3 .email-btn {
  background: linear-gradient(135deg, #2563EB, #3B82F6) !important;
  color: #ffffff !important;
}

.footer-section-3 .footer-area-3 .footer-logo img {
  filter: brightness(0) invert(1);
}

.footer-section-3 .footer-area-3 .footer-header-item p {
  color: rgba(255, 255, 255, 0.5) !important;
}

.footer-section-3 .footer-bottom-5 {
  background: transparent;
}

.footer-section-3 .footer-bottom-wrapper-5 {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section-3 .footer-bottom-wrapper-5 p {
  color: rgba(255, 255, 255, 0.6) !important;
}

.footer-section-3 .footer-bottom-wrapper-5 .footer-list a {
  color: rgba(255, 255, 255, 0.6) !important;
}

.footer-section-3 .footer-bottom-wrapper-5 .footer-list a:hover {
  color: #60A5FA !important;
}

/* --- Header Inner (About Page) --- */
.header-3 {
  background: #ffffff;
  border-bottom: 1px solid rgba(37, 99, 235, 0.06);
}

.header-3.sticky {
  background: #ffffff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
}

.header-3 .navbar-nav>.nav-item>.nav-link {
  color: #1F2937 !important;
}

.header-3 .navbar-nav>.nav-item>.nav-link:hover,
.header-3 .navbar-nav>.nav-item>.nav-link.active {
  color: #2563EB !important;
}

/* --- Testi Image inside heading --- */
.testimonial-section-about .testi-iimg img {
  border-radius: 50px;
}

/* ============================================
   SERVICE PAGE - White & Blue Theme
   ============================================ */

/* --- About Section 2 (Video Banner on Service Page) --- */
.about-section-2 {
  background: #ffffff !important;
}

.about-wrapper-2 .about-video-banner img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.1);
}

.about-wrapper-2 .about-video-banner .incrase-box {
  background: linear-gradient(135deg, #1E40AF, #2563EB) !important;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
}

.about-wrapper-2 .about-video-banner .incrase-box span {
  color: rgba(255, 255, 255, 0.85) !important;
}

.about-wrapper-2 .about-video-banner .incrase-box p {
  color: #ffffff !important;
}

/* --- Counter Wrapper (Service Page Stats) --- */
.counter-wrapper {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.counter-wrapper .counter-box.service-box-1 {
  background: #F8FAFF !important;
  border: 1px solid rgba(37, 99, 235, 0.08) !important;
  border-radius: 16px !important;
}

.counter-wrapper .counter-box.service-box-1 .text {
  color: #2563EB !important;
  font-weight: 600;
}

.counter-wrapper .counter-box.service-box-1 h2 {
  background: linear-gradient(135deg, #1E40AF, #2563EB) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.counter-wrapper .counter-box.service-box-1 p {
  color: #64748B;
}

/* --- Service Section 2 (Service Cards) --- */
.service-section-2 {
  background: #ffffff !important;
}

.service-box-items-2 {
  background-color: #ffffff !important;
  border-bottom: 1px solid rgba(37, 99, 235, 0.08) !important;
}

.service-box-items-2 .service-content p {
  color: #2563EB !important;
}

.service-box-items-2 .service-content .title {
  color: #0F172A !important;
}

.service-box-items-2 .service-content .title a {
  color: #0F172A !important;
}

.service-box-items-2 .service-content .title:hover a {
  color: #2563EB !important;
}

.service-box-items-2 .service-content .service-list ul li {
  color: #475569 !important;
}

.service-box-items-2 .service-content .title-2 {
  color: #64748B !important;
}

.service-box-items-2 .service-content .list-items li a {
  color: #0F172A !important;
  border: 1px solid rgba(37, 99, 235, 0.15) !important;
  background: transparent;
  transition: all 0.3s ease;
}

.service-box-items-2 .service-content .list-items li a:hover {
  background: #2563EB !important;
  border-color: #2563EB !important;
  color: #ffffff !important;
}

.service-box-items-2 .service-thumb img {
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.08);
}

/* --- Powerful Feature Section --- */
.powerful-feature-section {
  background: linear-gradient(180deg, #F0F4FF 0%, #E8ECFF 100%) !important;
}

.powerful-feature-section .section-title h2 {
  color: #0F172A !important;
}

.powerful-feature-section .section-title .sub-title {
  color: #2563EB !important;
}

.powerful-feature-section .section-title .sub-title img {
  filter: brightness(0) saturate(100%) invert(25%) sepia(98%) saturate(2000%) hue-rotate(215deg) brightness(96%);
}

.powerful-feature-section .icon-box {
  background: #ffffff !important;
  border: 1px solid rgba(37, 99, 235, 0.06);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.powerful-feature-section .icon-box:hover {
  border-color: rgba(37, 99, 235, 0.15);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
}

/* --- FAQ Section 2 (Service Page) --- */
.faq-section-2 {
  background: #ffffff !important;
}

.faq-wrapper-2 .faq-content .section-title h2 {
  color: #0F172A !important;
}

.faq-wrapper-2 .faq-content .section-title h2 .style-font {
  color: #2563EB !important;
}

.faq-wrapper-2 .faq-content .section-title .sub-title {
  color: #2563EB !important;
}

.faq-wrapper-2 .faq-content .section-title .sub-title img {
  filter: brightness(0) saturate(100%) invert(25%) sepia(98%) saturate(2000%) hue-rotate(215deg) brightness(96%);
}

.faq-wrapper-2 .faq-content .text {
  color: #64748B !important;
}

.faq-wrapper-2 .faq-content .news-btn {
  color: #2563EB !important;
}

.faq-wrapper-2 .faq-content .news-btn .text-default,
.faq-wrapper-2 .faq-content .news-btn .text-hover {
  color: #2563EB !important;
}

.faq-wrapper-2 .accordion-box .block {
  border: 1px solid rgba(37, 99, 235, 0.1) !important;
  background: #F8FAFF !important;
  border-radius: 12px !important;
}

.faq-wrapper-2 .accordion-box .block .acc-btn {
  color: #0F172A !important;
}

.faq-wrapper-2 .accordion-box .block .acc-btn .icon {
  background-color: rgba(37, 99, 235, 0.1) !important;
  color: #2563EB !important;
}

.faq-wrapper-2 .accordion-box .block .acc-btn .icon::before {
  color: #2563EB !important;
}

.faq-wrapper-2 .accordion-box .block .acc-content {
  border-top: 1px solid rgba(37, 99, 235, 0.08) !important;
}

.faq-wrapper-2 .accordion-box .block .acc-content .content .text {
  color: #64748B !important;
  opacity: 1 !important;
}

.faq-wrapper-2 .active-block {
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE) !important;
  border-color: rgba(37, 99, 235, 0.15) !important;
}

.faq-wrapper-2 .active-block .acc-btn {
  color: #1E40AF !important;
}

.faq-wrapper-2 .active-block .icon {
  background-color: #2563EB !important;
  color: #ffffff !important;
}

.faq-wrapper-2 .active-block .icon::before {
  color: #ffffff !important;
}

/* --- CTA Section 3 (Service Page) --- */
.cta-section-3 {
  background: #ffffff !important;
}

.cta-wrapper-3 h2 {
  color: #0F172A !important;
}

.cta-wrapper-3 h2 .style-font {
  color: #2563EB !important;
}

.cta-wrapper-3 .section-title .sub-title {
  color: #2563EB !important;
}

.cta-wrapper-3 .section-title .sub-title img {
  filter: brightness(0) saturate(100%) invert(25%) sepia(98%) saturate(2000%) hue-rotate(215deg) brightness(96%);
}

.cta-wrapper-3 .theme-btn-main {
  background: linear-gradient(135deg, #1E40AF, #2563EB) !important;
  color: #ffffff !important;
}

.cta-wrapper-3 .theme-btn-main .theme-btn {
  color: #ffffff !important;
}

.cta-wrapper-3 .theme-btn-main .theme-btn-arrow-left,
.cta-wrapper-3 .theme-btn-main .theme-btn-arrow-right {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}

.cta-wrapper-3 .theme-btn-main:hover {
  background: linear-gradient(135deg, #2563EB, #3B82F6) !important;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
}

.cta-wrapper-3 h2 .img-1 img {
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
}

/* ============================================
   SERVICE DETAIL PAGE - White & Blue Luxury
   ============================================ */

/* --- Hero Image --- */
.service-detail-hero {
  margin-top: -40px;
  position: relative;
  z-index: 5;
}

.service-detail-hero-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.12);
  max-height: 550px;
}

.service-detail-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Overview Section --- */
.service-detail-overview {
  background: #ffffff;
}

.service-detail-label {
  font-size: 13px;
  font-weight: 700;
  color: #2563EB;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid rgba(37, 99, 235, 0.2);
  border-radius: 6px;
  padding: 5px 14px;
  display: inline-block;
  margin-bottom: 20px;
}

.service-detail-heading {
  font-size: 44px;
  font-weight: 700;
  color: #0F172A !important;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (max-width: 991px) {
  .service-detail-heading {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .service-detail-heading {
    font-size: 28px;
  }
}

.service-detail-desc p {
  font-size: 18px;
  line-height: 1.8;
  color: #475569;
}

.service-detail-features {
  margin-top: 35px;
}

.service-detail-features h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0F172A !important;
  margin-bottom: 5px;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #F8FAFF;
  border: 1px solid rgba(37, 99, 235, 0.06);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.service-feature-item:hover {
  border-color: rgba(37, 99, 235, 0.15);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
  transform: translateY(-2px);
}

.service-feature-item i {
  color: #2563EB;
  font-size: 14px;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-feature-item span {
  font-size: 15px;
  font-weight: 500;
  color: #1E293B !important;
}

/* --- Process Section --- */
.service-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

@media (max-width: 991px) {
  .service-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .service-process-grid {
    grid-template-columns: 1fr;
  }
}

.service-process-card {
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 16px;
  padding: 30px 25px;
  position: relative;
  transition: all 0.4s ease;
  text-align: center;
}

.service-process-card:hover {
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.1);
  transform: translateY(-6px);
}

.service-process-card .process-number {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #2563EB, #3B82F6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 15px;
}

.service-process-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0F172A !important;
  margin-bottom: 10px;
}

.service-process-card p {
  font-size: 15px;
  color: #64748B;
  line-height: 1.6;
}

.service-process-card .process-arrow {
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #2563EB, #3B82F6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.service-process-card .process-arrow i {
  color: #ffffff;
  font-size: 12px;
}

@media (max-width: 991px) {
  .service-process-card .process-arrow {
    display: none;
  }
}

/* --- Why Choose Section --- */
.service-detail-why {
  background: #ffffff;
}

.service-detail-why-img {
  position: relative;
  border-radius: 20px;
  overflow: visible;
}

.service-detail-why-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.1);
}

.service-detail-stat {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: linear-gradient(135deg, #1E40AF, #2563EB);
  border-radius: 16px;
  padding: 20px 30px;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
}

.service-detail-stat span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8) !important;
  display: block;
}

.service-detail-stat p {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1;
  margin-top: 5px;
}

@media (max-width: 575px) {
  .service-detail-stat {
    right: 10px;
    bottom: 15px;
    padding: 15px 20px;
  }

  .service-detail-stat p {
    font-size: 36px;
  }
}

/* --- Benefits List --- */
.service-detail-benefits {
  margin-top: 30px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(37, 99, 235, 0.06);
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon i {
  color: #2563EB;
  font-size: 18px;
}

.benefit-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0F172A !important;
  margin-bottom: 5px;
}

.benefit-text p {
  font-size: 15px;
  color: #64748B;
  line-height: 1.6;
  margin: 0;
}

/* --- Other Services Cards --- */
.other-service-card {
  display: flex;
  align-items: stretch;
  background: #ffffff;
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.other-service-card:hover {
  border-color: rgba(37, 99, 235, 0.15);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.1);
  transform: translateY(-4px);
}

.other-service-img {
  width: 220px;
  min-width: 220px;
  overflow: hidden;
}

.other-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.other-service-card:hover .other-service-img img {
  transform: scale(1.05);
}

.other-service-content {
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.other-service-num {
  font-size: 13px;
  font-weight: 700;
  color: #2563EB !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.other-service-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 8px 0 10px;
}

.other-service-content h3 a {
  color: #0F172A !important;
  transition: color 0.3s ease;
}

.other-service-content h3 a:hover {
  color: #2563EB !important;
}

.other-service-content p {
  font-size: 15px;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 15px;
}

.other-service-content .news-btn {
  color: #2563EB !important;
  font-weight: 600;
  font-size: 15px;
}

.other-service-content .news-btn .text-default,
.other-service-content .news-btn .text-hover {
  color: #2563EB !important;
}

@media (max-width: 767px) {
  .other-service-card {
    flex-direction: column;
  }

  .other-service-img {
    width: 100%;
    min-width: 100%;
    height: 200px;
  }
}

/* ============================================
  HERO WOW UPGRADE - LUXURY LIGHT THEME
============================================ */
.hero-1 {
  overflow: hidden;
  background: radial-gradient(circle at 85% 12%, rgba(59, 130, 246, 0.16), transparent 28%),
    radial-gradient(circle at 10% 95%, rgba(14, 165, 233, 0.1), transparent 35%),
    linear-gradient(135deg, #f8fbff 0%, #f2f6ff 48%, #f7f5ff 100%) !important;
}

.hero-est-badge .est-text {
  border-radius: 999px;
  padding: 7px 16px;
  letter-spacing: 0.12em;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
}

.hero-1 .hero-content .hero-main-title {
  font-size: clamp(2.2rem, 4.8vw, 4.6rem);
  line-height: 1.03;
  margin-bottom: 6px;
}

.hero-main-title span {
  background: linear-gradient(110deg, #2563eb 5%, #38bdf8 50%, #6366f1 95%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: #4b5f7f;
  max-width: 560px;
}

.hero-quick-stats {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-quick-stat {
  display: inline-flex;
  flex-direction: column;
  min-width: 150px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.09);
}

.hero-quick-stat strong {
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  color: #0f172a;
}

.hero-quick-stat span {
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5171a7;
  font-weight: 600;
}

.hero-right-items .hero-small-slider {
  margin-bottom: 24px;
}

.hero-luxury-card {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.92) 5%, rgba(247, 250, 255, 0.78) 92%);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 24px 45px rgba(15, 23, 42, 0.12), 0 2px 10px rgba(59, 130, 246, 0.12);
}

.hero-luxury-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 7px 14px;
  background: rgba(37, 99, 235, 0.1);
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-luxury-card h4 {
  font-size: 24px;
  line-height: 1.35;
  color: #0b1f47;
  margin: 16px 0 18px;
  letter-spacing: -0.01em;
}

.hero-luxury-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-luxury-card ul li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #334c74;
  font-weight: 600;
  font-size: 14px;
}

.hero-luxury-card ul li i {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
  font-size: 10px;
}

@media (max-width: 1199px) {
  .hero-quick-stats {
    justify-content: center;
  }

  .hero-quick-stat {
    min-width: 165px;
  }

  .hero-luxury-card {
    max-width: 540px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .hero-desc {
    font-size: 15px;
  }

  .hero-quick-stats {
    gap: 10px;
    margin-top: 18px;
  }

  .hero-quick-stat {
    min-width: calc(50% - 5px);
    padding: 12px;
    border-radius: 14px;
  }

  .hero-quick-stat strong {
    font-size: 20px;
  }

  .hero-luxury-card {
    margin-top: 20px;
    padding: 18px;
    border-radius: 18px;
  }

  .hero-luxury-card h4 {
    font-size: 20px;
  }
}

/* ============================================
  HERO FULL REDESIGN - EXTRAORDINARY LUXURY
============================================ */
.hero-1 {
  background: radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.2), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(99, 102, 241, 0.14), transparent 45%),
    linear-gradient(132deg, #f7fbff 0%, #eff5ff 42%, #f8f5ff 100%) !important;
}

.hero-wow-wrap {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.hero-wow-left .hero-main-title {
  font-size: clamp(2.4rem, 5vw, 5.1rem);
  line-height: 1.02;
  color: #0b1225 !important;
  margin: 18px 0 20px;
  letter-spacing: -0.035em;
}

.hero-wow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.12);
  color: #1e40af;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-wow-pill i {
  font-size: 13px;
}

.hero-wow-left .hero-desc {
  margin-top: 0;
  margin-bottom: 0;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.8;
  color: #42567c;
}

.hero-wow-stats {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
}

.hero-wow-stat {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 16px 14px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.hero-wow-stat h4 {
  margin: 0;
  font-size: 29px;
  line-height: 1;
  font-weight: 800;
  color: #0b1f47;
}

.hero-wow-stat p {
  margin: 8px 0 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #5d78a4;
  font-weight: 600;
}

.hero-wow-right {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
}

.hero-showcase-card {
  width: 100%;
  max-width: 520px;
  border-radius: 30px;
  padding: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(246, 250, 255, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.98);
  box-shadow: 0 34px 70px rgba(15, 23, 42, 0.18);
}

.hero-showcase-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
}

.hero-showcase-overlay {
  position: absolute;
  left: 30px;
  bottom: 26px;
  right: 30px;
  border-radius: 20px;
  padding: 16px 18px;
  background: rgba(10, 23, 51, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-showcase-overlay span {
  display: inline-block;
  color: #93c5fd;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-showcase-overlay h4 {
  margin: 6px 0 0;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.3;
}

.hero-floating-card {
  position: absolute;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-floating-card-performance {
  top: 42px;
  left: -48px;
  padding: 16px 20px;
}

.hero-floating-card-performance p {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #4b6aa0;
  font-weight: 700;
}

.hero-floating-card-performance h5 {
  margin: 6px 0 4px;
  font-size: 34px;
  line-height: 1;
  color: #1d4ed8;
}

.hero-floating-card-performance span {
  font-size: 12px;
  color: #516991;
  font-weight: 600;
}

.hero-floating-card-award {
  right: -24px;
  bottom: 88px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
}

.hero-floating-card-award i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1d4ed8;
}

.hero-floating-card-award h6 {
  margin: 0;
  font-size: 15px;
  color: #0f234d;
}

.hero-floating-card-award p {
  margin: 2px 0 0;
  font-size: 12px;
  color: #516991;
}

.hero-service-tags {
  position: absolute;
  left: -10px;
  bottom: -20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 80%;
}

.hero-service-tags span {
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #214a86;
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12);
}

.hero-wow-brands {
  margin-top: 38px;
  position: relative;
  z-index: 3;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
}

.hero-wow-brands p {
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3762a3;
  font-weight: 700;
}

@media (max-width: 1400px) {
  .hero-wow-wrap {
    gap: 28px;
  }

  .hero-floating-card-performance {
    left: -20px;
  }
}

@media (max-width: 1199px) {
  .hero-wow-wrap {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-wow-left {
    text-align: center;
  }

  .hero-wow-pill {
    margin: 0 auto;
  }

  .hero-wow-left .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-wow-stats {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-wow-right {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
    min-height: 540px;
  }

  .hero-floating-card-performance {
    left: -8px;
  }

  .hero-floating-card-award {
    right: -6px;
  }
}

@media (max-width: 767px) {
  .hero-wow-left .hero-main-title {
    margin-top: 14px;
  }

  .hero-wow-left .hero-desc {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-wow-stats {
    grid-template-columns: 1fr;
  }

  .hero-wow-right {
    min-height: auto;
    display: block;
  }

  .hero-showcase-card img {
    height: 380px;
  }

  .hero-showcase-overlay h4 {
    font-size: 18px;
  }

  .hero-floating-card {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 12px;
  }

  .hero-service-tags {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: 100%;
    margin-top: 12px;
  }
}

/* Globe galaxy + glass premium effect */
.hero-1 .hero-circle {
  top: 14%;
  left: 43%;
  width: 600px;
  height: 600px;
  opacity: 0.88;
  pointer-events: none;
}

.hero-1 .hero-circle::after {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.06) 45%, transparent 72%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 0 30px rgba(147, 197, 253, 0.22), 0 0 70px rgba(99, 102, 241, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
}

.hero-1 .hero-circle img {
  position: absolute;
  inset: 13%;
  width: 74%;
  height: 74%;
  object-fit: contain;
  animation: cir36 26s linear infinite;
  filter: hue-rotate(205deg) saturate(0.72) brightness(2.15) contrast(0.66);
  z-index: 1;
  /* Diamond shimmer effect */
  position: relative;
}

.hero-1 .hero-circle img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.4) 0%,
      transparent 50%,
      rgba(255, 255, 255, 0.2) 100%);
  animation: diamond-shine 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes diamond-shine {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.7;
  }
}

/* Glass water effect */
.hero-1 .hero-circle::after {
  content: '';
  position: absolute;
  inset: 13%;
  background: radial-gradient(circle at 30% 30%,
      rgba(255, 255, 255, 0.3) 0%,
      transparent 60%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 2;
  pointer-events: none;
}

.hero-1 .hero-circle .hero-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.46);
  box-shadow: inset 0 0 26px rgba(147, 197, 253, 0.2), 0 0 26px rgba(99, 102, 241, 0.14);
}

.hero-1 .hero-circle .hero-orbit-1 {
  width: 88%;
  height: 88%;
  transform: translate(-50%, -50%) rotate(20deg);
  animation: heroOrbitSpin 22s linear infinite;
}

.hero-1 .hero-circle .hero-orbit-2 {
  width: 108%;
  height: 108%;
  transform: translate(-50%, -50%) rotate(-32deg);
  border-color: rgba(186, 230, 253, 0.55);
  animation: heroOrbitSpinReverse 30s linear infinite;
}

.hero-1 .hero-circle .hero-orbit-3 {
  width: 128%;
  height: 128%;
  transform: translate(-50%, -50%) rotate(62deg);
  border-color: rgba(199, 210, 254, 0.42);
  animation: heroOrbitSpin 36s linear infinite;
}

.hero-1 .hero-circle .hero-star {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff, #bfdbfe 55%, rgba(59, 130, 246, 0.1) 100%);
  box-shadow: 0 0 20px rgba(147, 197, 253, 0.8);
  z-index: 3;
}

.hero-1 .hero-circle .hero-star-1 {
  width: 10px;
  height: 10px;
  top: 5%;
  left: 56%;
  animation: heroStarFloat 4.2s ease-in-out infinite;
}

.hero-1 .hero-circle .hero-star-2 {
  width: 8px;
  height: 8px;
  right: 9%;
  top: 32%;
  animation: heroStarFloat 3.6s ease-in-out infinite reverse;
}

.hero-1 .hero-circle .hero-star-3 {
  width: 12px;
  height: 12px;
  left: 14%;
  bottom: 16%;
  animation: heroStarFloat 4.8s ease-in-out infinite;
}

.hero-1 .hero-circle .hero-star-4 {
  width: 7px;
  height: 7px;
  right: 24%;
  bottom: 6%;
  animation: heroStarFloat 3.8s ease-in-out infinite reverse;
}

@keyframes heroOrbitSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes heroOrbitSpinReverse {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes heroStarFloat {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translateY(-10px) scale(1.15);
    opacity: 1;
  }
}

@media (max-width: 1399px) {
  .hero-1 .hero-circle {
    left: 36%;
    width: 520px;
    height: 520px;
  }
}

@media (max-width: 1199px) {
  .hero-1 .hero-circle {
    left: 50%;
    transform: translateX(-50%);
    top: 7%;
    opacity: 0.72;
  }
}

/* Fix overlap + add stronger premium polish */
.hero-1 {
  isolation: isolate;
}

.hero-wow-wrap,
.hero-wow-brands {
  position: relative;
  z-index: 8;
}

.hero-wow-right {
  z-index: 9;
}

.hero-showcase-card {
  position: relative;
  overflow: hidden;
}

.hero-showcase-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 32px;
  background: conic-gradient(from 0deg, rgba(255, 255, 255, 0.65), rgba(96, 165, 250, 0.65), rgba(99, 102, 241, 0.55), rgba(255, 255, 255, 0.65));
  animation: heroBorderRotate 9s linear infinite;
  z-index: -1;
}

.hero-showcase-card::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -30%;
  width: 36%;
  height: 150%;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  transform: rotate(16deg);
  animation: heroGlassSweep 6.2s ease-in-out infinite;
  pointer-events: none;
}

.hero-1 .hero-circle {
  z-index: 10;
  left: 56%;
  top: 8%;
  opacity: 0.44;
}

.hero-showcase-card,
.hero-showcase-overlay,
.hero-floating-card,
.hero-service-tags {
  position: relative;
  z-index: 3;
}

.hero-1 .hero-circle .hero-orbit {
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.34);
}

.hero-1 .hero-circle .hero-star {
  opacity: 0.72;
}

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

  to {
    transform: rotate(360deg);
  }
}

@keyframes heroGlassSweep {
  0% {
    transform: translateX(0) rotate(16deg);
    opacity: 0;
  }

  18% {
    opacity: 0.9;
  }

  45% {
    transform: translateX(420%) rotate(16deg);
    opacity: 0;
  }

  100% {
    transform: translateX(420%) rotate(16deg);
    opacity: 0;
  }
}

@media (max-width: 1399px) {
  .hero-1 .hero-circle {
    left: 52%;
    opacity: 0.36;
  }
}

@media (max-width: 1199px) {
  .hero-1 .hero-circle {
    top: 0;
    opacity: 0.28;
  }
}

/* Orbit widgets like premium glass galaxy */
.hero-1 .hero-circle .hero-orbit {
  border-color: rgba(255, 255, 255, 0.55);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.hero-1 .hero-circle .hero-orbit-track {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: 12;
}

.hero-1 .hero-circle .hero-orbit-track-1 {
  animation: heroOrbitSpin 20s linear infinite;
}

.hero-1 .hero-circle .hero-orbit-track-2 {
  animation: heroOrbitSpinReverse 28s linear infinite;
}

.hero-1 .hero-circle .hero-orbit-track-3 {
  animation: heroOrbitSpin 34s linear infinite;
}

.hero-1 .hero-circle .orbit-glass {
  position: absolute;
  width: 120px;
  height: 80px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  box-shadow:
    0 5px 15px rgba(15, 23, 42, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 10px rgba(147, 197, 253, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transform-style: preserve-3d;
  perspective: 1000px;
  /* Position icons around the globe */
  top: 50%;
  left: 50%;
  margin-top: -40px;
  margin-left: -60px;
}

.hero-1 .hero-circle .orbit-path-1 {
  animation: orbit-clockwise 25s linear infinite;
  animation-delay: calc(var(--angle) * -0.069s);
}

.hero-1 .hero-circle .orbit-path-2 {
  animation: orbit-counter-clockwise 35s linear infinite;
  animation-delay: calc(var(--angle) * -0.097s);
}

.hero-1 .hero-circle .orbit-path-3 {
  animation: orbit-tilted-forward 28s linear infinite;
  animation-delay: calc(var(--angle) * -0.078s);
}

.hero-1 .hero-circle .orbit-path-4 {
  animation: orbit-tilted-backward 32s linear infinite;
  animation-delay: calc(var(--angle) * -0.089s);
}

.hero-1 .hero-circle .orbit-path-5 {
  animation: orbit-clockwise 40s linear infinite;
  animation-delay: calc(var(--angle) * -0.111s);
}

.hero-1 .hero-circle .orbit-path-6 {
  animation: orbit-counter-clockwise 22s linear infinite;
  animation-delay: calc(var(--angle) * -0.061s);
}

.hero-1 .hero-circle .orbit-path-7 {
  animation: orbit-tilted-forward 38s linear infinite;
  animation-delay: calc(var(--angle) * -0.106s);
}

.hero-1 .hero-circle .orbit-path-8 {
  animation: orbit-tilted-backward 30s linear infinite;
  animation-delay: calc(var(--angle) * -0.083s);
}

@keyframes orbit-clockwise {
  0% {
    transform: rotate(var(--angle)) translateX(var(--radius, 280px)) rotate(calc(var(--angle) * -1));
    z-index: 15;
  }

  25% {
    z-index: 20;
  }

  50% {
    transform: rotate(calc(var(--angle) + 180deg)) translateX(var(--radius, 280px)) rotate(calc(var(--angle) * -1 - 180deg));
    z-index: 5;
  }

  75% {
    z-index: 10;
  }

  100% {
    transform: rotate(calc(var(--angle) + 360deg)) translateX(var(--radius, 280px)) rotate(calc(var(--angle) * -1 - 360deg));
    z-index: 15;
  }
}

@keyframes orbit-counter-clockwise {
  0% {
    transform: rotate(var(--angle)) translateX(var(--radius, 280px)) rotate(calc(var(--angle) * -1));
    z-index: 15;
  }

  25% {
    z-index: 10;
  }

  50% {
    transform: rotate(calc(var(--angle) - 180deg)) translateX(var(--radius, 280px)) rotate(calc(var(--angle) * -1 + 180deg));
    z-index: 5;
  }

  75% {
    z-index: 20;
  }

  100% {
    transform: rotate(calc(var(--angle) - 360deg)) translateX(var(--radius, 280px)) rotate(calc(var(--angle) * -1 + 360deg));
    z-index: 15;
  }
}

@keyframes orbit-tilted-forward {
  0% {
    transform: rotate(var(--angle)) translateX(var(--radius, 280px)) rotateX(15deg) rotate(calc(var(--angle) * -1));
    z-index: 15;
  }

  25% {
    z-index: 20;
  }

  50% {
    transform: rotate(calc(var(--angle) + 180deg)) translateX(var(--radius, 280px)) rotateX(15deg) rotate(calc(var(--angle) * -1 - 180deg));
    z-index: 5;
  }

  75% {
    z-index: 10;
  }

  100% {
    transform: rotate(calc(var(--angle) + 360deg)) translateX(var(--radius, 280px)) rotateX(15deg) rotate(calc(var(--angle) * -1 - 360deg));
    z-index: 15;
  }
}

@keyframes orbit-tilted-backward {
  0% {
    transform: rotate(var(--angle)) translateX(var(--radius, 280px)) rotateX(-15deg) rotate(calc(var(--angle) * -1));
    z-index: 15;
  }

  25% {
    z-index: 10;
  }

  50% {
    transform: rotate(calc(var(--angle) + 180deg)) translateX(var(--radius, 280px)) rotateX(-15deg) rotate(calc(var(--angle) * -1 - 180deg));
    z-index: 5;
  }

  75% {
    z-index: 20;
  }

  100% {
    transform: rotate(calc(var(--angle) + 360deg)) translateX(var(--radius, 280px)) rotateX(-15deg) rotate(calc(var(--angle) * -1 - 360deg));
    z-index: 15;
  }
}

.hero-1 .hero-circle .orbit-glass i {
  color: #1d4ed8;
  font-size: 32px;
  text-shadow: 0 3px 10px rgba(37, 99, 235, 0.25);
}

@media (max-width: 1399px) {
  .hero-1 .hero-circle .orbit-glass {
    width: 100px;
    height: 70px;
    border-radius: 18px;
  }

  .hero-1 .hero-circle .orbit-glass i {
    font-size: 28px;
  }
}

@media (max-width: 1199px) {
  .hero-1 .hero-circle .orbit-glass {
    opacity: 0.8;
  }
}

/* Image removed: make hero text-led layout */
.hero-wow-wrap {
  grid-template-columns: 1fr;
  max-width: 900px;
}

.hero-wow-left .hero-desc {
  max-width: 760px;
}

.hero-wow-stats {
  max-width: 860px;
}

.hero-1 .hero-circle {
  left: 62%;
  top: 4%;
  opacity: 0.5;
}

@media (max-width: 1399px) {
  .hero-1 .hero-circle {
    left: 54%;
    opacity: 0.4;
  }
}