/*--------------------------------------------------------------
/*>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Common
# Custom Cursor
# Animations
# Cards
# Topbar
# Navigation
# Home Showcase
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
# Forms
# Comments
# Sidebar Popup
# Sidebar
# Footer
# Hero Slider
# About
# Contact
# Testimonials
# Package
# Services
# Service Details
# Portfolio
# Portfolio Details
# Why Choose
# Funfact
# CTA
# Gallery
# Blog Details
# Shop
# Shop Details
# Cart
# Checkout
# Work Process
# Sliding Text
# Error 404
# Boxed Home
--------------------------------------------------------------*/
:root {
  --lotech-font: "DM Sans", serif;
  --lotech-heading-font: "Yantramanav", serif;
  --lotech-text: #596171;
  --lotech-text-rgb: 89, 97, 113;
  --lotech-text-dark: #43435C;
  --lotech-text-dark-rgb: 67, 67, 92;
  --lotech-base: #00A6D9;
  --lotech-base-rgb: 73, 70, 236;
  /* NEW – two-tone gradient from #1F6DB5 (dark) to #1F6DB5 (lighter) */
  --lotech-base-gradient: linear-gradient(135deg, #00A6D9 0%, #05bfe5 100%);
  --lotech-gray: #D9D9D9;
  --lotech-gray-rgb: 217, 217, 217;
  --lotech-white: #ffffff;
  --lotech-white-rgb: 255, 255, 255;
  --lotech-black: #0E0F11;
  --lotech-black-rgb: 14, 15, 17;
  --lotech-black2: #000000;
  --lotech-black2-rgb: 0, 0, 0;
  --lotech-black3: #18191D;
  --lotech-black3-rgb: 24, 25, 29;
  --lotech-black3: #00000F;
  --lotech-black3-rgb: 0, 0, 15;
  --lotech-border-color: #ECECEC;
  --lotech-border-color-rgb: 236, 236, 236;
  --section-space: 100px;
  --lotech-letter-space: 0.1em;
  --lotech-letter-space-xl: 0.2em;
}
/* --------------------------------------------------------------
#  Hero 3 */
.hero-section {
  position: relative;
  height: 80vh; /* 80% of viewport height */
  min-height: 500px;
  overflow: hidden;
}

.hero-swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  transform: scale(1.1); /* Zoom effect on images */
  transition: transform 8s ease-in-out;
}

.swiper-slide-active .hero-bg {
  transform: scale(1); /* Reset zoom on active slide */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 144, 204, 0.3) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(10, 144, 204, 0.2) 100%
  );
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 2;
}

.hero-inner {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

.hero-text {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 0;
}

.hero-text h1 {
  font-size: 4.5rem;
  font-weight: 900;
  margin: 0 100px 30px;
  color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  position: relative;
}

.hero-text h1::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--lotech-base-gradient) , transparent);
  border-radius: 2px;
}

.hero-text p {
  font-size: 1.rem;
  margin-bottom: 40px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  max-width: 600px;
}

/* Enhanced Button Styling */
.hero-btn {
  position: relative;
  background: linear-gradient(135deg, var(--lotech-base, #00A6D9), #05BFE5);
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 700;
  color: var(--lotech-white, #ffffff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1rem;
  border: 2px solid transparent;
  box-shadow: 0 8px 25px rgba(10, 144, 204, 0.4);
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.hero-btn:hover {
  background: var(--lotech-white, #ffffff);
  color: var(--lotech-black, #0E0F11);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(10, 144, 204, 0.6);
  border-color: var(--lotech-base, #00A6D9);
}

.hero-btn:hover::before {
  left: 100%;
}

/* Enhanced arrow animations */
/* first arrow */
.hero-btn span i {
  position: absolute;
  left: 8px; /* bottom-left corner */
  bottom: 8px;
  transition: all 0.2s ease-out;
  font-size: 12px;
}

/* second arrow (animated one) */
.hero-btn span i:last-child {
  left: -20px; /* start slightly off to the left */
  bottom: -20px;
  transform: translate(0, 0);
  opacity: 0;
  transition: all 0.6s ease-out;
}

.hero-btn:hover span i:last-child {
  left: 8px; /* move to bottom-left corner on hover */
  bottom: 8px;
  opacity: 1;
  transform: translate(0, 0);
}

/* Swiper Pagination Customization */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--lotech-base, #00A6D9);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(10, 144, 204, 0.8);
}

/* Scroll Down Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: white;
  text-align: center;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-scroll-indicator::after {
  content: '';
  width: 2px;
  height: 30px;
  background: white;
  display: block;
  margin: 0 auto;
  border-radius: 1px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Floating Elements Animation */
.hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-floating-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero-floating-element:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.hero-floating-element:nth-child(2) {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.hero-floating-element:nth-child(3) {
  width: 40px;
  height: 40px;
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Stats Section Enhancement */
.hero-stats {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 80px;
  z-index: 2;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  margin: 0 20px;
  max-width: 1200px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-item h3 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-stat-item p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .hero-section {
    height: 500px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
    margin: 0 20px 20px;
  }

  .hero-text p {
    font-size: 1.1rem;
    margin: 0 20px 30px;
  }

  .hero-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    bottom: 20px;
    padding: 20px;
  }

  .hero-stat-item h3 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 450px;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }
}
/*--------------------------------------------------------------
# Success metrix
--------------------------------------------------------------*/
.success-metrics {
  padding: 10px 0 40px;
  background: #ffffff;
}

.metric-item-wrapper {
  text-align: center;
  padding: 0 15px;
  margin-bottom: 30px;
}

.metric-item {
  cursor: pointer;
  transition: transform 0.3s ease;
  padding: 10px 0;
}

.metric-item:hover {
  transform: translateY(-4px);
}

/* === VALUE (Numbers) === */
.metric-value {
  margin-bottom: 12px;
  line-height: 1;
  perspective: 1000px;
}

.value-text {
  display: inline-block;
  font-weight: 800;
  color: #0E0F11;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform-origin: center;
}

/* Default black */
.value-text.percentage,
.value-text.number {
  font-size: 3.8rem;
}

/* On hover: Zoom + Gradient Color */
.metric-item:hover .value-text {
  color: transparent;
  background: linear-gradient(135deg, #00A6D9 0%, #05BFE5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: scale(1.25);
  filter: drop-shadow(0 2px 4px rgba(10, 144, 204, 0.2));
}

/* Smaller number text for non-percentage */
.value-text.number {
  font-size: 3.2rem;
}

/* === LABEL WITH ANIMATED UNDERLINE === */
.metric-label {
  position: relative;
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: #596171;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0;
  padding-bottom: 8px;
  transition: color 0.3s ease;
}

.label-text {
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.underline {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--lotech-base, #00A6D9);
  transition: width 0.4s ease, left 0.4s ease;
  transform: translateX(-50%);
}

/* Hover: Change label color + grow line */
.metric-item:hover .label-text {
  color: var(--lotech-base, #00A6D9);
}

.metric-item:hover .underline {
  width: 70%;
  left: 50%;
  transform: translateX(-50%);
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .value-text.percentage { font-size: 3.2rem; }
  .value-text.number { font-size: 2.8rem; }
  .metric-label { font-size: 0.95rem; }
}

@media (max-width: 768px) {
  .success-metrics { padding: 10px 0; }
  .value-text.percentage { font-size: 2.8rem; }
  .value-text.number { font-size: 2.5rem; }
  .metric-item:hover .value-text { transform: scale(1.1); }
}

@media (max-width: 576px) {
  .value-text.percentage { font-size: 2.5rem; }
  .value-text.number { font-size: 2.2rem; }
  .metric-label { font-size: 0.85rem; }
  .metric-item-wrapper { padding: 0 8px; }
  .metric-item:hover .underline { width: 50%; }
}

/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/
.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-120 {
  margin-top: 120px;
}

.mt--60 {
  margin-top: -60px;
}

.mt--120 {
  margin-top: -120px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb--60 {
  margin-bottom: -60px;
}

.mb--120 {
  margin-bottom: -120px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-142 {
  padding-top: 142px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-30 {
  padding-right: 30px;
}

.social {
  position: relative;
  border-top: 1px solid var(--lotech-border-color, #ECECEC);
}
.social__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .social__list {
    flex-direction: column;
  }
}
.social__list li {
  position: relative;
}
@media (max-width: 767px) {
  .social__list li {
    width: 100%;
  }
}
.social__list li a {
  font-size: 32px;
  color: var(--lotech-black, #0E0F11);
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 50px 0;
}
@media (max-width: 1199px) {
  .social__list li a {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .social__list li a {
    font-size: 24px;
    gap: 10px;
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .social__list li a {
    justify-content: center;
  }
}
.social__list li a i {
  color: var(--lotech-text, #596171);
  position: relative;
  top: 4px;
  transition: all 0.3s ease;
}
.social__list li a:hover {
  color: var(--lotech-base, #00A6D9);
}
.social__list li a:hover i {
  color: var(--lotech-base, #00A6D9);
  animation: bounceIn 1s linear;
  animation-duration: 1s;
}
.social__list li + li {
  position: relative;
}
.social__list li + li::before {
  position: absolute;
  left: -36%;
  top: 0;
  width: 1px;
  height: 100%;
  content: "";
  background-color: var(--lotech-border-color, #ECECEC);
}
@media (max-width: 1199px) {
  .social__list li + li::before {
    left: -20%;
  }
}
@media (max-width: 991px) {
  .social__list li + li::before {
    left: -15%;
  }
}
@media (max-width: 767px) {
  .social__list li + li::before {
    width: 100%;
    height: 1px;
    left: 0;
  }
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
  font-family: var(--lotech-font, "DM Sans", serif);
  color: var(--lotech-text, #596171);
  font-size: 16px;
  line-height: 1.625;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--lotech-base, #00A6D9);
  transition: all 400ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--lotech-heading-font, "Yantramanav", serif);
  color: var(--lotech-black, #0E0F11);
}
@media (max-width: 575px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

@media (max-width: 575px) {
  p br {
    display: none;
  }
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.background-base {
  background-color: var(--lotech-base, #00A6D9);
}

.background-gray {
  background-color: var(--lotech-gray, #D9D9D9);
}

.background-black {
  background-color: var(--lotech-black, #0E0F11);
}

.background-black-2 {
  background-color: var(--lotech-black2, #000000);
}
/* 
.lotech-text {
  color: var(--lotech-text, #596171);
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.section-space {
  padding-top: var(--section-space, 50px);
  padding-bottom: var(--section-space, 50px);
}
@media (max-width: 767px) {
  .section-space {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.section-space-top {
  padding-top: var(--section-space, 50px);
}
@media (max-width: 767px) {
  .section-space-top {
    padding-top: 30px;
  }
}

.section-space-bottom {
  padding-bottom: var(--section-space, 50px);
}.,,.
@media (max-width: 767px) {
  .section-space-bottom {
    padding-bottom: 30px;
  }
}

.container-fluid,
.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1326px;
  }
}
.row {
  --bs-gutter-x: 24px;
}

.gutter-y-24 {
  --bs-gutter-y: 24px;
}

.gutter-x-24 {
  --bs-gutter-x: 24px;
}

.gutter-y-10 {
  --bs-gutter-y: 10px;
}

.gutter-y-15 {
  --bs-gutter-y: 15px;
}

.gutter-y-20 {
  --bs-gutter-y: 20px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

.gutter-y-40 {
  --bs-gutter-y: 40px;
}

.gutter-y-50 {
  --bs-gutter-y: 50px;
}

.gutter-y-60 {
  --bs-gutter-y: 60px;
}

.fix {
  overflow: hidden;
}

.logo-retina img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.lotech-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--lotech-base, #00A6D9);
  font-family: var(--lotech-heading-font, "Yantramanav", serif);
  color: var(--lotech-white, #ffffff);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  padding: 17px 32px;
  transition: 0.5s ease-in-out;
  text-transform: capitalize;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.lotech-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11px;
  height: 11px;
  position: relative;
  overflow: hidden;
  font-size: 10px;
  margin-left: 10px;
}
.lotech-btn__icon i {
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.2s ease-out;
}
.lotech-btn__icon i:last-child {
  left: -13px;
  bottom: -13px;
  transform: translate(0, 0);
  opacity: 0;
  transition: all 0.6s ease-out;
}
.lotech-btn::after {
  content: "";
  background-color: var(--lotech-black, #0E0F11);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.7s;
  z-index: -1;
}
.lotech-btn:hover {
  background-color: var(--lotech-black, #0E0F11);
  color: var(--lotech-white, #ffffff);
}
.lotech-btn:hover .lotech-btn__icon i:first-child {
  transform: translate(16px, -16px);
}
.lotech-btn:hover .lotech-btn__icon i:last-child {
  opacity: 1;
  visibility: visible;
  transform: translate(13px, -13px);
}
.lotech-btn:hover::after {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}

.lotech-ratings {
  display: flex;
  align-items: center;
  gap: 5px;
}
.lotech-ratings__icon {
  display: inline-flex;
  font-size: 16px;
  color: var(--lotech-base, #00A6D9);
  transition: all 500ms ease;
}
.lotech-ratings__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.tabs-box .tabs-content .tab:not(.active-tab) {
  display: none;
}

.bootstrap-select .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0;
}
.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
  background-color: var(--lotech-base, #00A6D9);
}

.tns-outer .tns-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.tns-outer .tns-controls button {
  width: 45px;
  height: 45px;
  border: 2px solid #f4f4f4;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--lotech-text, #596171);
  border-radius: 50%;
  margin-left: 5px;
  margin-right: 5px;
}

.block-title {
  margin-top: -8px;
  margin-bottom: 50px;
}
.block-title__decor {
  width: 21px;
  height: 14px;
  background-image: url(../images/shapes/leaf-1-1.png);
  background-repeat: no-repeat;
  background-position: top center;
  display: inline-block;
  line-height: 1;
  margin-bottom: -5px;
  position: relative;
  top: -7px;
}
.block-title p {
  margin: 0;
  color: var(--lotech-text, #596171);
  font-size: 16px;
  line-height: 1;
  margin-bottom: 7px;
}
@media (min-width: 768px) {
  .block-title p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .block-title p {
    font-size: 20px;
  }
}
.block-title h3 {
  margin: 0;
  font-size: 35px;
  color: var(--lotech-black, #0E0F11);
}
@media (min-width: 768px) {
  .block-title h3 {
    font-size: 42px;
  }
}
@media (min-width: 992px) {
  .block-title h3 {
    font-size: 50px;
  }
}

.ul-list-one {
  margin-bottom: 0;
}
.ul-list-one li {
  position: relative;
  padding-left: 45px;
  font-size: 16px;
  font-weight: 500;
  color: var(--lotech-black, #0E0F11);
}
@media (min-width: 481px) {
  .ul-list-one li {
    font-size: 20px;
  }
}
.ul-list-one li::before {
  content: "\e907";
  color: var(--lotech-base, #00A6D9);
  font-size: 26px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "azino-icon";
}

.preloader {
  position: fixed;
  background-color: var(--lotech-black, #0E0F11);
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}
.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/* scroll to top */

.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  background-color: var(--lotech-black, #0E0F11);
  z-index: 99;
  opacity: 0;
  padding: 6px;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.scroll-top--active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top::after {
  position: absolute;
  content: "\e919";
  font-family: "Flaticon" !important;
  text-align: center;
  line-height: 50px;
  font-size: 12px;
  transform: rotate(-45deg);
  color: var(--lotech-base, #00A6D9);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.scroll-top__circle path {
  stroke: var(--lotech-base, #00A6D9);
  stroke-width: 4;
  fill: none;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}



.lotech-btn {
  background: linear-gradient(135deg, #00A6D9 0%, #05BFE5 100%);
  padding: 8px 22px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid var(--lotech-base);
}

.lotech-btn:hover {
  background-color: var(--lotech--base, #88d5f8);
  color: var(--lotech-black, #0E0F11);
}

.lotech-btn span i {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 12px;
  transition: all 0.2s ease-out;

}

.lotech-btn span i:last-child {
  left: -20px;
  bottom: -20px;
  transform: translate(0, 0);
  opacity: 0;
  transition: all 0.6s ease-out;
}

.lotech-btn:hover span i:last-child {
  left: 0;
  bottom: 0;
  opacity: 1;
  transform: translate(0, 0);
}
/* post paginations */
.post-pagination {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 767px) {
  .post-pagination {
    gap: 12px;
  }
}
.post-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: RGBA(var(--lotech-base-rgb, 73, 70, 236), 0.1);
  font-family: var(--lotech-font, "DM Sans", serif);
  color: var(--lotech-text-dark, #43435C);
  font-size: 16px;
  text-align: center;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1;
  border-radius: 50%;
  overflow: hidden;
  transition: all 400ms ease;
}
.post-pagination a svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
@media (max-width: 575px) {
  .post-pagination a {
    width: 55px;
    height: 55px;
  }
}
.post-pagination a .post-pagination__icon {
  display: inline-flex;
  font-size: 19px;
  color: var(--lotech-black, #0E0F11);
  transition: all 400ms ease;
}
.post-pagination a .post-pagination__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.post-pagination a:hover {
  color: var(--lotech-white, #ffffff);
  background-color: var(--lotech-black, #0E0F11);
}
.post-pagination a:hover .post-pagination__icon {
  color: var(--lotech-white, #ffffff);
  animation: slideLeft 400ms;
}
.post-pagination a:hover .post-pagination__icon--right {
  animation: slideRight 400ms;
}
.post-pagination li.active a {
  color: var(--lotech-white, #ffffff);
  background-color: var(--lotech-base, #00A6D9);
}
.post-pagination li.active a .post-pagination__icon {
  color: var(--lotech-white, #ffffff);
  animation-play-state: paused;
}

.pagination-box {
  padding: 20px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid RGBA(var(--lotech-black-rgb, 14, 15, 17), 0.1);
  border-bottom: 1px solid RGBA(var(--lotech-black-rgb, 14, 15, 17), 0.1);
}
.pagination-box__prev, .pagination-box__next {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pagination-box__btn {
  width: 47px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: RGBA(var(--lotech-base-rgb, 73, 70, 236), 0.1);
  overflow: hidden;
  transition: all 500ms ease;
}
.pagination-box__btn:hover {
  background-color: var(--lotech-base, #00A6D9);
}
.pagination-box__icon {
  display: inline-flex;
  font-size: 17px;
  color: var(--lotech-text, #596171);
  transition: all 500ms ease;
}
.pagination-box__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.pagination-box__btn:hover .pagination-box__icon {
  color: var(--lotech-white, #ffffff);
}
.pagination-box__prev .pagination-box__btn:hover .pagination-box__icon {
  animation: slideLeft 400ms;
}
.pagination-box__next .pagination-box__btn:hover .pagination-box__icon {
  animation: slideRight 400ms;
}
.pagination-box__text {
  color: var(--lotech-text, #596171);
  transition: all 500ms ease;
}
.pagination-box__text:hover {
  color: var(--lotech-base, #00A6D9);
}

.lotech-owl__carousel--with-shadow .owl-stage-outer {
  overflow: visible;
}
.lotech-owl__carousel--with-shadow .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}
.lotech-owl__carousel--with-shadow .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.lotech-owl__carousel--basic-nav.owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.lotech-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  border: none;
  outline: none;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  opacity: 1;
  background-color: var(--lotech-base, #00A6D9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 0;
  color: var(--lotech-white, #ffffff);
  transition: all 500ms ease;
}
.lotech-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
  color: var(--lotech-white, #ffffff);
  background-color: var(--lotech-black, #0E0F11);
}
.lotech-owl__carousel--basic-nav.owl-carousel .owl-nav button.owl-prev {
  background-color: var(--lotech-black, #0E0F11);
}
.lotech-owl__carousel--basic-nav.owl-carousel .owl-nav button.owl-prev i {
  display: inline-block;
  transform: rotate(180deg);
}
.lotech-owl__carousel--basic-nav.owl-carousel .owl-nav button.owl-prev:hover {
  color: var(--lotech-white, #ffffff);
  background-color: var(--lotech-base, #00A6D9);
}
.lotech-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}
.lotech-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
  display: block;
  border-radius: 50%;
  background-color: var(--lotech-border-color, #ECECEC);
  border: none;
  position: relative;
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.lotech-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span::after {
  width: 22px;
  height: 22px;
  position: absolute;
  content: "";
  left: -8px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  border: 1px solid var(--lotech-base, #00A6D9);
  transform: scale(0);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.lotech-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span, .lotech-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
  background-color: var(--lotech-base, #00A6D9);
}
.lotech-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span::after, .lotech-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span::after {
  transform: scale(1);
}
.lotech-owl__carousel--basic-nav.owl-carousel .owl-dots.disabled {
  display: none;
}
.lotech-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled + .owl-dots {
  margin-top: 50px;
}
.lotech-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled {
  display: none;
}

/* custom cursor */
.custom-cursor-two {
  position: absolute;
  top: 0;
  left: 0;
  padding: 3px 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background-color: var(--lotech-white, #ffffff);
  opacity: 0;
  transition: all 500ms ease;
  z-index: 11;
  pointer-events: none;
}
.custom-cursor-two__icon {
  font-size: 22px;
  color: var(--lotech-black, #0E0F11);
  display: inline-block;
}
.custom-cursor-two__icon--left {
  position: relative;
  top: -3px;
  transform: rotate(-180deg);
}

.custom-cursor-two-hover:hover + .custom-cursor-two {
  opacity: 1;
}

.sec-title {
  position: relative;
  line-height: 1;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .sec-title {
    padding-bottom: 25px;
    margin-top: -2px;
  }
}
.sec-title__tagline {
  margin: 0;
  color: var(--lotech-base, #00A6D9);
  text-transform: uppercase;
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  line-height: 1em;
  margin-bottom: 17px;
}
.sec-title__tagline.bw-split-text > div {
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to left, rgba(var(--lotech-base-rgb, 73, 70, 236), 0.2) 50%, var(--lotech-base, #00A6D9) 50%);
}
.sec-title__title {
  margin: 0;
  font-size: 32px;
  line-height: 42px;
  text-transform: capitalize;
  font-weight: 700;
  margin: 0;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .sec-title__title {
    font-size: 36px;
    line-height: 42px;
  }
}
.sec-title__title.bw-split-text > div {
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to left, rgba(var(--lotech-black-rgb, 14, 15, 17), 0.1) 50%, var(--lotech-black, #0E0F11) 50%);
}

.ui-datepicker .ui-datepicker-header {
  background-image: none;
  background-color: var(--lotech-black, #0E0F11);
  color: var(--lotech-white, #ffffff);
  font-family: var(--lotech-font, "DM Sans", serif);
}

.ui-datepicker-calendar th span {
  font-family: var(--lotech-font, "DM Sans", serif);
}
.ui-datepicker-calendar td {
  background-color: var(--lotech-gray, #D9D9D9);
  background-image: none;
  font-family: var(--lotech-font, "DM Sans", serif);
  color: var(--lotech-text, #596171);
}
.ui-datepicker-calendar td a {
  border-color: var(--lotech-border-color, #ECECEC);
  background-color: var(--lotech-gray, #D9D9D9);
  background-image: none;
}
.ui-datepicker-calendar .ui-state-default,
.ui-datepicker-calendar .ui-widget-content .ui-state-default,
.ui-datepicker-calendar .ui-widget-header .ui-state-default {
  border-color: var(--lotech-border-color, #ECECEC);
  background-color: var(--lotech-gray, #D9D9D9);
  background-image: none;
  color: var(--lotech-text, #596171);
  padding: 10px 5px;
  text-align: center;
  line-height: 1em;
}
.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-content .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-header .ui-state-default:hover {
  color: var(--lotech-white, #ffffff);
  background-color: var(--lotech-base, #00A6D9);
}
.ui-datepicker-calendar .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-content .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-header .ui-state-highlight {
  color: var(--lotech-white, #ffffff);
  background-color: var(--lotech-base, #00A6D9);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-image: none;
  background-color: var(--lotech-white, #ffffff);
  color: var(--lotech-black, #0E0F11);
}
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background-color: var(--lotech-base, #00A6D9);
  color: var(--lotech-white, #ffffff);
  top: 2px;
}

.ui-datepicker .ui-datepicker-prev:hover {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next:hover {
  right: 2px;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  background: var(--lotech-base, #00A6D9);
  box-shadow: var(--lotech-base, #00A6D9) 0 1px 3px 0 inset;
  color: var(--lotech-white, #ffffff);
  font-weight: 700;
}

.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  background: var(--lotech-base, #00A6D9) !important;
  color: var(--lotech-white, #ffffff) !important;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--lotech-base, #00A6D9);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}
.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--lotech-base, #00A6D9);
  opacity: 0.3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 999991;
}
.custom-cursor__hover {
  background-color: var(--lotech-base, #00A6D9);
  opacity: 0.4;
}
.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: 0.4;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes bubbleMover {
  0% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
  }
  30% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  50% {
    -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
    transform: translateY(50px) translateX(100px) rotate(45deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }
  80% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}
@keyframes cloudMove {
  0% {
    background-position: 1920px 100%;
  }
  100% {
    background-position: 0 100%;
  }
}
@keyframes startIconOne {
  0% {
    transform: scale(1) rotate(0);
  }
  100% {
    transform: scale(0.5) rotate(45deg);
  }
}
@keyframes iconTranslateX {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}
@-webkit-keyframes widths {
  0% {
    width: 0%;
  }
  50% {
    width: 97%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}
@keyframes widths {
  0% {
    width: 0%;
  }
  50% {
    width: 97%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}
@keyframes shapeMover {
  0%, 100% {
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
  }
  50% {
    transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
  }
}
@keyframes banner3Shake {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }
  30% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  60% {
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
    transform: rotate3d(1, 0, 0, 0deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }
}
@keyframes squareMover {
  0%, 100% {
    -webkit-transform: translate(0, 0) rotate(0);
    transform: translate(0, 0) rotate(0);
  }
  20%, 60% {
    -webkit-transform: translate(20px, 40px) rotate(180deg);
    transform: translate(20px, 40px) rotate(180deg);
  }
  30%, 80% {
    -webkit-transform: translate(40px, 60px) rotate(0deg);
    transform: translate(40px, 60px) rotate(0deg);
  }
}
@keyframes treeMove {
  0%, 100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
  25%, 75% {
    -webkit-transform: rotate(5deg) translateX(15px);
    transform: rotate(5deg) translateX(15px);
  }
  50% {
    -webkit-transform: rotate(10deg) translateX(30px);
    transform: rotate(10deg) translateX(30px);
  }
}
@keyframes treeMove2 {
  0%, 100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
  25%, 75% {
    -webkit-transform: rotate(-10deg) translateX(0);
    transform: rotate(-10deg) translateX(0);
  }
  50% {
    -webkit-transform: rotate(10deg) translateX(0);
    transform: rotate(10deg) translateX(0);
  }
}
@keyframes treeMove3 {
  0%, 100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
  25%, 75% {
    -webkit-transform: rotate(-10deg) translateX(0);
    transform: rotate(-3deg) translateX(0);
  }
  50% {
    -webkit-transform: rotate(3deg) translateX(0);
    transform: rotate(3deg) translateX(0);
  }
}
@keyframes leafMove {
  0%, 100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
  25%, 75% {
    transform: rotate(-2deg) translateX(5px);
  }
  50% {
    transform: rotate(-4deg) translateX(10px);
  }
}
@keyframes messageMove {
  0%, 100% {
    transform: translateX(0);
  }
  25%, 75% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(10px);
  }
}
@keyframes textRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes flowerRotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  25%, 75% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(10deg);
  }
}
@keyframes zump {
  0%, 100% {
    transform: translateY(0);
  }
  25%, 75% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(-5px);
  }
}
@-webkit-keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}
@keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}
@keyframes videoZoom {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
    border-width: 3px;
  }
  40% {
    opacity: 1;
    border-width: 1px;
  }
  65% {
    border-width: 1px;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0;
    border-width: 1px;
  }
}
@keyframes moveHorizontal {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  50% {
    -webkit-transform: translate3d(15px, 0, 0);
    transform: translate3d(15px, 0, 0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes zumpX {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-30px);
  }
}
@keyframes zumpY {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-30px);
  }
}
@keyframes zumpXtwo {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(30px);
  }
}
@keyframes zoom-hover {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 120%;
    height: 120%;
    opacity: 0;
  }
}
@keyframes zoomsIn {
  100%, 0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
}
@keyframes shrinkAnim {
  0%, 100% {
    transform: rotate(0deg);
    transform-origin: 0 50%;
  }
  10% {
    transform: rotate(2deg);
  }
  20%, 40%, 60% {
    transform: rotate(-4deg);
  }
  30%, 50%, 70% {
    transform: rotate(4deg);
  }
  80% {
    transform: rotate(-2deg);
  }
  90% {
    transform: rotate(2deg);
  }
}
@keyframes shrinkAnim2 {
  0%, 100% {
    transform: rotate(0deg);
    transform-origin: 100% 50%;
  }
  10% {
    transform: rotate(2deg);
  }
  20%, 40%, 60% {
    transform: rotate(-4deg);
  }
  30%, 50%, 70% {
    transform: rotate(4deg);
  }
  80% {
    transform: rotate(-2deg);
  }
  90% {
    transform: rotate(2deg);
  }
}
@keyframes rollInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes vibrant {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes blinkAnim {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@keyframes movebounce2 {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-15px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes movebounce3 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes shapeMove {
  0%, 100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(10px);
  }
}
@keyframes rotated {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

@keyframes iconTranslateY {
  49% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes zumpXtwo {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(5px);
  }
}
@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes shadows {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--lotech-white-rgb, 255, 255, 255), 0.2), 0 0 0 30px rgba(var(--lotech-white-rgb, 255, 255, 255), 0.2), 0 0 0 50px rgba(var(--lotech-white-rgb, 255, 255, 255), 0.2);
  }
  100% {
    box-shadow: 0 0 0 30px rgba(var(--lotech-white-rgb, 255, 255, 255), 0.2), 0 0 0 50px rgba(var(--lotech-white-rgb, 255, 255, 255), 0.2), 0 0 0 70px rgba(var(--lotech-white-rgb, 255, 255, 255), 0);
  }
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@keyframes wobble-horizontal-on-hover {
  16.65% {
    transform: translateX(8px);
  }
  33.3% {
    transform: translateX(-6px);
  }
  49.95% {
    transform: translateX(4px);
  }
  66.6% {
    transform: translateX(-2px);
  }
  83.25% {
    transform: translateX(1px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes text-scrolling {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes text-scrolling-two {
  from {
    transform: translate(-100%, 0);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes shapes {
  0% {
    width: 0%;
    opacity: 1;
  }
  100% {
    width: 74%;
  }
}
@keyframes slideTop {
  49% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes slideBottom {
  49% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes slideLeft {
  49% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes slideRight {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}
/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
.video-one {
  position: relative;
}
.video-one__wrapper {
  position: relative;
  padding: 230px 0;
}
.video-one__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.video-one__bg::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--lotech-black, #0E0F11);
  opacity: 0.5;
}
.video-one .video-popup {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  transition: all 500ms ease;
  position: relative;
  z-index: 1;
}
.video-one .video-popup i {
  background-color: transparent;
  border: 1px solid rgba(var(--lotech-white-rgb, 255, 255, 255), 0.2);
  border-radius: 50%;
  z-index: 2;
  width: 140px;
  height: 140px;
  transition: all 500ms ease;
  font-size: 35px;
  color: var(--lotech-white, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-one .video-popup .ripple {
  content: "";
  border: 1px solid rgba(var(--lotech-white-rgb, 255, 255, 255), 0.5);
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: calc(100% + 25px);
  height: calc(100% + 25px);
  border-radius: 50%;
  animation: videoZoom 3s linear infinite;
  animation-delay: 0s;
  animation-delay: 0.55s;
}
.video-one .video-popup .ripple::after {
  content: "";
  border: 1px solid rgba(var(--lotech-white-rgb, 255, 255, 255), 0.5);
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: calc(100% + 50px);
  height: calc(100% + 50px);
  border-radius: 50%;
  animation: videoZoom 1.5s linear infinite;
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.video-one .video-popup:hover i {
  color: var(--lotech-base, #00A6D9);
  border-color: var(--lotech-base, #00A6D9);
}

.video-space {
  height: 100vh;
  width: 100vw;
  display: grid;
  place-content: center;
  position: relative;
}

.video-two {
  position: relative;
  background-color: var(--lotech-black, #0E0F11);
  padding: 143px 0 320px;
}
@media (max-width: 767px) {
  .video-two {
    padding: 100px 0 270px;
  }
  .video-two .text-end {
    text-align: left !important;
  }
}
.video-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--lotech-black, #0E0F11);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.5;
}
.video-two__shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto;
}
@media (max-width: 1199px) {
  .video-two__shape {
    display: none;
  }
}
.video-two .container {
  position: relative;
}
.video-two__btn {
  width: 145px;
  height: 145px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
  margin-top: 42px;
}
.video-two__btn .video-popup {
  font-size: 24px;
  color: var(--lotech-white, #ffffff);
  transition: all 500ms ease;
  position: relative;
  z-index: 10;
}
.video-two__btn .video-popup:hover {
  color: var(--lotech-base, #00A6D9);
}
.video-two__btn .curved-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 145px;
  height: 145px;
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: textRotate 15s linear 0s forwards infinite alternate;
}
.video-two__btn .curved-circle--item {
  width: 145px !important;
  height: 145px !important;
}
.video-two__btn .curved-circle--item span {
  text-transform: uppercase;
  font-size: 14px;
  color: var(--lotech-white, #ffffff);
  letter-spacing: 0.4em;
}
.video-two__title {
  margin: 0;
  text-transform: uppercase;
  color: var(--lotech-white, #ffffff);
  font-size: 40px;
  line-height: 1.2em;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .video-two__title {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  .video-two__title {
    font-size: 60px;
    margin-bottom: 35px;
  }
}
.video-two__link::before {
  background-color: var(--lotech-base, #00A6D9);
}

.team-one {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 767px) {
  .team-one {
    padding: 80px 0;
  }
}
.team-one__bottom {
  margin-top: 45px;
  padding: 30px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 19px;
  border-top: 1px solid RGBA(var(--lotech-black3-rgb, 24, 25, 29), 0.1);
  border-bottom: 1px solid RGBA(var(--lotech-black3-rgb, 24, 25, 29), 0.1);
}
.team-one__bottom__title {
  margin: 0;
  font-weight: 700;
  font-size: 32px;
  text-transform: capitalize;
  text-align: center;
  line-height: 1.3125;
}
.team-one__bottom__btn {
  width: 47px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: var(--lotech-base, #00A6D9);
  border-radius: 50%;
  overflow: hidden;
  transition: all 500ms ease;
}
.team-one__bottom__btn:hover {
  background-color: var(--lotech-black, #0E0F11);
}
.team-one__bottom__btn__icon {
  display: inline-flex;
  font-size: 17px;
  color: var(--lotech-white, #ffffff);
}
.team-one__bottom__btn__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.team-one__bottom__btn:hover .team-one__bottom__btn__icon {
  animation: slideRight 400ms;
}

.team-card {
  position: relative;
  z-index: 1;
}
.team-card:hover {
  border-color: rgba(var(--lotech-base-rgb, 73, 70, 236), 0.2);
}
.team-card:hover .team-card__social {
  border-color: rgba(var(--lotech-text-rgb, 89, 97, 113), 0.2);
}
.team-card__image {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.team-card__image::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  background-color: rgba(var(--lotech-black-rgb, 14, 15, 17), 0.5);
  transition: all 0.5s;
}
.team-card__image img {
  width: 100%;
  height: auto;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.team-card:hover .team-card__image:after {
  height: 100%;
}
.team-card:hover .team-card__image img {
  transform: rotate(1deg) scale(1.05);
}
.team-card:hover .team-card__social a {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.team-card__social {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  gap: 2px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.team-card__social a {
  width: 40px;
  height: 40px;
  font-size: 16px;
  background-color: var(--lotech-base, #00A6D9);
  color: var(--lotech-white, #ffffff);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
}
.team-card__social a:nth-child(1) {
  transition: all 0.4s;
  transform: translate3d(-50px, 0, 0);
}
.team-card__social a:nth-child(2) {
  transition: all 0.55s;
  transform: translate3d(-50px, 0, 0);
}
.team-card__social a:nth-child(3) {
  transition: all 0.7s;
  transform: translate3d(-50px, 0, 0);
}
.team-card__social a:nth-child(4) {
  transition: all 0.85s;
  transform: translate3d(-50px, 0, 0);
}
.team-card__social a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.team-card__social a:hover {
  color: var(--lotech-white, #ffffff);
}
.team-card__social a:hover i {
  animation: iconTranslateX 0.4s forwards;
}
.team-card__content {
  position: relative;
  text-align: center;
  padding: 26px 14px 0;
}
.team-card__title {
  margin: 0;
  font-size: 32px;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 9px;
}
.team-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.team-card__title a:hover {
  background-size: 100% 1px;
}
.team-card__title a:hover {
  color: var(--lotech-base, #00A6D9);
}
.team-card__designation {
  margin: 0;
  line-height: 1;
}

.team-two {
  padding: 100px 0 77px;
  position: relative;
}
@media (max-width: 767px) {
  .team-two {
    padding: 60px 0 40px;
  }
}
.team-two__content {
  position: relative;
  max-width: 520px;
}
@media (max-width: 991px) {
  .team-two__content {
    max-width: 100%;
    margin: 0 0 40px;
  }
}
.team-two__content .sec-title {
  padding-bottom: 9px;
}
.team-two__content__text {
  margin: 0 0 112px;
}
@media (max-width: 991px) {
  .team-two__content__text {
    margin-bottom: 35px;
  }
}
.team-two__content img {
  width: 100px;
  height: 93px;
  position: absolute;
  animation: shrinkAnim 3s ease 0s infinite;
  bottom: 0;
  right: 0;
}
@media (max-width: 991px) {
  .team-two__content img {
    display: none;
  }
}
.team-two__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 28px;
  margin: 0 0 44px;
}
.team-two__item a {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.team-two__item__title {
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 0 10px;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 2px no-repeat;
  transition: all 500ms ease;
}
.team-two__item:hover .team-two__item__title {
  color: var(--lotech-base, #00A6D9);
  background-size: 100% 2px;
}
.team-two__item__designation {
  color: var(--lotech-text, #596171);
  margin: 0;
  line-height: 1;
}
.team-two__item__rm {
  transition: all 500ms ease;
  width: 47px;
  height: 47px;
  background-color: rgba(var(--lotech-base-rgb, 73, 70, 236), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--lotech-black, #0E0F11);
  border-radius: 50%;
  overflow: hidden;
}
.team-two__item__rm__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  position: relative;
  overflow: hidden;
}
.team-two__item__rm__icon i {
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.2s ease-out;
}
.team-two__item__rm__icon i:last-child {
  left: -15px;
  bottom: -15px;
  transform: translate(0, 0);
  opacity: 0;
  transition: all 0.6s ease-out;
}
.team-two__item:hover .team-two__item__rm {
  background-color: var(--lotech-base, #00A6D9);
  color: var(--lotech-white, #ffffff);
}
.team-two__item:hover .team-two__item__rm .team-two__item__rm__icon i:first-child {
  transform: translate(16px, -16px);
}
.team-two__item:hover .team-two__item__rm .team-two__item__rm__icon i:last-child {
  opacity: 1;
  visibility: visible;
  transform: translate(15px, -15px);
}
.team-two__item__divider {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(var(--lotech-black-rgb, 14, 15, 17), 0.2);
}
.team-two__item:hover .team-two__item__divider {
  background-color: var(--lotech-base, #00A6D9);
  animation: widths 2s infinite;
}
.team-two__item__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 244px;
  height: 270px;
  opacity: 0;
  margin: -80px 0 0 -55px;
  overflow: hidden;
  pointer-events: none;
  z-index: 99;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: opacity 0.3s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.team-two__item:hover .team-two__item__image {
  opacity: 1;
}

.team-three {
  padding: 120px 0 0;
  position: relative;
}
@media (max-width: 767px) {
  .team-three {
    padding: 80px 0 0;
  }
}
.team-three--page {
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .team-three--page {
    padding-bottom: 80px;
  }
}
.team-three__btn {
  position: relative;
  text-align: center;
  margin-top: 48px;
}
.team-three .team-card__image {
  border-radius: 50%;
  transition: all 300ms ease;
}
.team-three .team-card:hover .team-card__image {
  border-radius: 0;
}

.team-details__image img {
  max-width: 100%;
  height: auto;
}
.team-details__content {
  margin-top: -8px;
  max-width: 650px;
}
@media (max-width: 1199px) {
  .team-details__content {
    max-width: 100%;
  }
}
.team-details__about__title {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3125;
  text-transform: capitalize;
}
.team-details__about__text {
  margin-bottom: 25px;
}
.team-details__skill {
  margin-bottom: 30px;
}
.team-details__progress + .team-details__progress {
  margin-top: 20px;
}
.team-details__progress__title {
  margin-bottom: 9px;
  font-family: var(--lotech-font, "DM Sans", serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--lotech-text, #596171);
  line-height: 1.625;
}
.team-details__progress__bar {
  position: relative;
  width: 100%;
  height: 5px;
  background-color: var(--lotech-text, #596171);
}
.team-details__progress__bar__inner {
  position: absolute;
  height: 100%;
  width: 0px;
  top: 0;
  left: 0;
  background-color: var(--lotech-base, #00A6D9);
  transition: all 800ms linear;
}
.team-details__progress__number {
  position: absolute;
  bottom: calc(100% + 9px);
  right: 0;
  font-family: var(--lotech-font, "DM Sans", serif);
  font-size: 16px;
  color: var(--lotech-text, #596171);
  font-weight: 500;
  line-height: 1.625;
}
@media (max-width: 575px) {
  .team-details__progress__number {
    font-size: 15px;
  }
}
.team-details__identity {
  margin-bottom: 30px;
}
.team-details__name {
  margin-bottom: 7px;
  font-size: 25px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.318;
}
.team-details__designation {
  margin: 0;
  font-weight: 500;
  text-transform: capitalize;
}
.team-details__social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.team-details__social a {
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  font-size: 16px;
  color: var(--lotech-white, #ffffff);
  background-color: var(--lotech-base, #00A6D9);
  overflow: hidden;
  z-index: 1;
  transition: all 500ms ease;
}
.team-details__social a::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--lotech-black, #0E0F11);
  border-radius: inherit;
  z-index: -1;
  transition: all 500ms ease;
}
.team-details__social a:hover::after {
  width: 100%;
  height: 100%;
}
.team-details__social a svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.team-details__bottom {
  margin-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--lotech-border-color, #ECECEC);
}
.team-details__bottom__text {
  margin: 0;
}
.team-details__info {
  margin: 47px 0 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
}
@media (max-width: 1199px) {
  .team-details__info {
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .team-details__info {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.team-details__info li {
  display: flex;
  align-items: center;
  gap: 15px;
}
.team-details__info__icon-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--lotech-base, #00A6D9);
  border-radius: 50%;
  overflow: hidden;
  transition: all 500ms ease;
}
li:hover .team-details__info__icon-box {
  background-color: var(--lotech-base, #00A6D9);
}
.team-details__info__icon {
  display: inline-flex;
  font-size: 16px;
  color: var(--lotech-base, #00A6D9);
}
.team-details__info__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
li:hover .team-details__info__icon {
  color: var(--lotech-white, #ffffff);
  animation: slideBottom 400ms;
}
.team-details__info a {
  font-size: 16px;
  color: var(--lotech-text, #596171);
  font-weight: 500;
  line-height: 1.625;
}
.team-details__info a:hover {
  color: var(--lotech-base, #00A6D9);
}

.blog-one {
  padding: 120px 0 110px;
  position: relative;
}
@media (max-width: 767px) {
  .blog-one {
    padding: 80px 0 70px;
  }
}
.blog-one__btn {
  position: relative;
  text-align: right;
  margin: 80px 0 0;
}
@media (max-width: 767px) {
  .blog-one__btn {
    margin: 0 0 45px;
    text-align: left;
  }
}
.blog-one__btn .lotech-btn {
  padding: 17px 46px;
}

.blog-card {
  position: relative;
}
.blog-card__image {
  position: relative;
  overflow: hidden;
  margin: 0 0 25px;
}
.blog-card__image a {
  display: block;
  width: 100%;
  position: relative;
}
.blog-card__image img {
  transition: 0.5s;
  background-size: cover;
  width: 100%;
}
.blog-card__image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  visibility: hidden;
  height: 100%;
  width: 0;
  transition: 1s;
  overflow: hidden;
}
.blog-card:hover .blog-card__image img:nth-child(2) {
  width: 100%;
  visibility: visible;
}
.blog-card__date {
  background-color: var(--lotech-black, #0E0F11);
  display: inline-block;
  text-align: center;
  font-size: 16px;
  font-family: var(--lotech-heading-font, "Yantramanav", serif);
  color: var(--lotech-white, #ffffff);
  text-transform: capitalize;
  font-weight: 500;
  padding: 11px 17px 10px;
  line-height: 1.2em;
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 2;
  transition: all 300ms ease;
}
.blog-card__date::after {
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 10px 5px 0 5px;
  border-color: var(--lotech-black, #0E0F11) transparent transparent transparent;
  content: "";
  transition: all 300ms ease;
  position: absolute;
  left: 10px;
  bottom: -10px;
}
.blog-card:hover .blog-card__date {
  background-color: var(--lotech-base, #00A6D9);
}
.blog-card:hover .blog-card__date::after {
  border-top-color: var(--lotech-base, #00A6D9);
}
.blog-card__content {
  position: relative;
  padding: 0 0 0;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  margin-bottom: 11px;
  
}
.blog-card__meta li {
  color: var(--lotech-text, #596171);
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.blog-card__meta li i {
  font-size: 18px;
  color: var(--lotech-base, #00A6D9);
  margin-right: 8px;
}
.blog-card__meta li a {
  display: flex;
  align-items: center;
  color: inherit;
  transition: all 500ms ease;
}
.blog-card__meta li a:hover {
  color: var(--lotech-base, #00A6D9);
  text-shadow: 0 0 1px currentColor;
}
.blog-card__title {
  margin: 0;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 10px;
}
.blog-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card__title a:hover {
  background-size: 100% 1px;
}
.blog-card__title a:hover {
  color: var(--lotech-base, #00A6D9);
}
.blog-card__author {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--lotech-text, #596171);
  font-size: 16px;
  line-height: 1.2;
  text-transform: capitalize;
}
.blog-card__author a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card__author a:hover {
  background-size: 100% 1px;
}
.blog-card__author a:hover {
  color: var(--lotech-base, #00A6D9);
}

.blog-two {
  padding: 120px 0 110px;
  position: relative;
}
@media (max-width: 767px) {
  .blog-two {
    padding: 80px 0 70px;
  }
}
.blog-two__btn {
  position: relative;
  text-align: right;
  margin: 80px 0 0;
}
@media (max-width: 767px) {
  .blog-two__btn {
    margin: 0 0 45px;
    text-align: left;
  }
}
.blog-two__btn .lotech-btn {
  padding: 17px 46px;
}

.blog-card-two {
  position: relative;
}
.blog-card-two__image {
  position: relative;
  overflow: hidden;
  margin: 0;
}
.blog-card-two__image a {
  display: block;
  width: 100%;
  position: relative;
}
.blog-card-two__image img {
  transition: 0.5s;
  background-size: cover;
  width: 100%;
}
.blog-card-two__image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  object-fit: cover;
  height: 100%;
  width: 100%;
  transition: 0.5s;
  overflow: hidden;
}
.blog-card-two:hover .blog-card-two__image img:nth-child(2) {
  transform: scale(0);
}
.blog-card-two__date {
  display: inline-block;
  text-align: center;
  font-size: 24px;
  color: var(--lotech-text, #596171);
  text-transform: capitalize;
  font-weight: 500;
  padding: 0;
  line-height: 1.2em;
  position: absolute;
  bottom: 0;
  left: -54px;
  z-index: 2;
  transition: all 300ms ease;
  transform: rotate(180deg);
  white-space: nowrap;
  writing-mode: vertical-rl;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card-two__date {
    left: -44px;
  }
}
.blog-card-two:hover .blog-card-two__date {
  color: var(--lotech-base, #00A6D9);
}
.blog-card-two__content {
  position: relative;
  padding: 22px 0 0 30px;
  margin-left: 47px;
  border-left: 1px solid var(--lotech-border-color, #ECECEC);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card-two__content {
    padding: 22px 0 0 20px;
    margin-left: 37px;
  }
}
.blog-card-two__meta {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  flex-wrap: wrap;
  margin-bottom: 22px;
  margin-left: -30px;
  padding-left: 30px;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--lotech-border-color, #ECECEC);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card-two__meta {
    margin-left: -20px;
    padding-left: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
.blog-card-two__meta li {
  color: var(--lotech-text, #596171);
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.blog-card-two__meta li i {
  font-size: 18px;
  color: var(--lotech-base, #00A6D9);
  margin-right: 8px;
}
.blog-card-two__meta li a {
  display: flex;
  align-items: center;
  color: inherit;
  transition: all 500ms ease;
}
.blog-card-two__meta li a:hover {
  color: var(--lotech-base, #00A6D9);
  text-shadow: 0 0 1px currentColor;
}
.blog-card-two__title {
  margin: 0;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 12px;
}
.blog-card-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card-two__title a:hover {
  background-size: 100% 1px;
}
.blog-card-two__title a:hover {
  color: var(--lotech-base, #00A6D9);
}
.blog-card-two__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--lotech-black, #0E0F11);
  font-family: var(--lotech-heading-font, "Yantramanav", serif);
  text-transform: capitalize;
}
.blog-card-two__btn__text {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card-two__btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11px;
  height: 11px;
  position: relative;
  overflow: hidden;
  font-size: 10px;
}
.blog-card-two__btn__icon i {
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.2s ease-out;
}
.blog-card-two__btn__icon i:last-child {
  left: -13px;
  bottom: -13px;
  transform: translate(0, 0);
  opacity: 0;
  transition: all 0.6s ease-out;
}
.blog-card-two__btn:hover {
  color: var(--lotech-base, #00A6D9);
}
.blog-card-two__btn:hover .blog-card-two__btn__text {
  background-size: 100% 1px;
}
.blog-card-two__btn:hover .blog-card-two__btn__icon i:first-child {
  transform: translate(16px, -16px);
}
.blog-card-two__btn:hover .blog-card-two__btn__icon i:last-child {
  opacity: 1;
  visibility: visible;
  transform: translate(13px, -13px);
}

.blog-three {
  padding: 70px 0 90px;
  position: relative;
}
@media (max-width: 767px) {
  .blog-three {
    padding: 40px 0 20px;
  }
}
.blog-three__btn {
  position: relative;
  text-align: right;
  margin: 80px 0 0;
}
@media (max-width: 767px) {
  .blog-three__btn {
    margin: 0 0 45px;
    text-align: left;
  }
}
/* .blog-three__btn .lotech-btn {
  padding: 17px 46px;
} */
.blog-three__btn .lotech-btn {
  background: linear-gradient(135deg, #00A6D9 0%, #05BFE5 100%);
  padding: 8px 26px;
  border-radius: 8px;
  /* font-weight: bold; */
  font-size: 15px;
  /* border: 1px solid black; */
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--lotech-white, #ffffff);
}

.blog-three__btn .lotech-btn:hover {
  background-color: var(--lotech-base, #88d5f8);
  color: var(--lotech-black, #0E0F11);
}

.blog-three__btn .lotech-btn span i {
  position: absolute;
  bottom: 0;
  right: 95px;
  transition: all 0.4s ease-out;
}

.blog-three__btn .lotech-btn span i:last-child {
  right: -20px;
  bottom: -20px;
  transform: translate(0, 0);
  opacity: 0;
  transition: all 0.6s ease-out;
}

.blog-three__btn .lotech-btn:hover span i:last-child {
  left: 0;
  bottom: 0;
  opacity: 1;
  transform: translate(0, 0);
}

.blog-card-three {
  position: relative;
  z-index: 2;
  padding: 0 30px 25px;
}
@media (max-width: 1199px) {
  .blog-card-three {
    padding: 0 25px 25px;
  }
}
.blog-card-three::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 8px);
  content: "";
  background-image: linear-gradient(119deg, #f6efff 0%, #ebf6f8 100%);
  z-index: -1;
  clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
}
.blog-card-three__image {
  position: relative;
  overflow: hidden;
  margin: 0 0 23px;
}
.blog-card-three__image a {
  display: block;
  width: 100%;
  position: relative;
}
.blog-card-three__image img {
  transition: 0.5s;
  object-fit: cover;
  width: 100%;
}
.blog-card-three__image img:nth-child(2) {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  transform: scale(1.5);
  opacity: 0;
  z-index: 1;
}
.blog-card-three:hover .blog-card-three__image img:nth-child(2) {
  transform: scale(1);
  opacity: 1;
  transition: all 1000ms ease;
}
.blog-card-three__content {
  position: relative;
  padding: 0 0 0;
}
.blog-card-three__meta {
  display: flex;
  align-items: center;
  gap: 21px;
  margin: 0;
  margin-bottom: 11px;
}
@media (max-width: 1199px) {
  .blog-card-three__meta {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
}
.blog-card-three__meta li {
  color: var(--lotech-text, #596171);
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.blog-card-three__meta li i {
  margin-right: 8px;
}
.blog-card-three__meta li a {
  display: flex;
  align-items: center;
  color: inherit;
  transition: all 500ms ease;
}
.blog-card-three__meta li a:hover {
  color: var(--lotech-base, #00A6D9);
  text-shadow: 0 0 1px currentColor;
}
.blog-card-three__title {
  margin: 0;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 20px;
}
.blog-card-three__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card-three__title a:hover {
  background-size: 100% 1px;
}
.blog-card-three__title a:hover {
  color: var(--lotech-base, #00A6D9);
}
.blog-card-three__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--lotech-black, #0E0F11);
  font-family: var(--lotech-heading-font, "Yantramanav", serif);
  text-transform: capitalize;
}
.blog-card-three__btn__text {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card-three__btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11px;
  height: 11px;
  position: relative;
  overflow: hidden;
  font-size: 10px;
}
.blog-card-three__btn__icon i {
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.2s ease-out;
}
.blog-card-three__btn__icon i:last-child {
  left: -13px;
  bottom: -13px;
  transform: translate(0, 0);
  opacity: 0;
  transition: all 0.6s ease-out;
}
.blog-card-three__btn:hover {
  color: var(--lotech-base, #00A6D9);
}
.blog-card-three__btn:hover .blog-card-three__btn__text {
  background-size: 100% 1px;
}
.blog-card-three__btn:hover .blog-card-three__btn__icon i:first-child {
  transform: translate(16px, -16px);
}
.blog-card-three__btn:hover .blog-card-three__btn__icon i:last-child {
  opacity: 1;
  visibility: visible;
  transform: translate(13px, -13px);
}

.blog-card-list {
  position: relative;
  border-bottom: 1px solid var(--lotech-border-color, #ECECEC);
  padding: 0 0 40px;
  margin: 0 0 40px;
}
.blog-card-list__image {
  position: relative;
  overflow: hidden;
  margin: 0 0 26px;
}
.blog-card-list__image img {
  transition: 0.5s;
  background-size: cover;
  width: 100%;
}
.blog-card-list__image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  visibility: hidden;
  height: 100%;
  width: 0;
  transition: 1s;
  overflow: hidden;
}
.blog-card-list:hover .blog-card-list__image img:nth-child(2) {
  width: 100%;
  visibility: visible;
}
.blog-card-list__date {
  width: 59px;
  height: 54px;
  background-color: var(--lotech-base, #00A6D9);
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-size: 12px;
  font-family: var(--lotech-font, "DM Sans", serif);
  color: var(--lotech-white, #ffffff);
  padding: 0;
  line-height: 1.2em;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  text-transform: capitalize;
  font-weight: 400;
  flex-direction: column;
}
.blog-card-list__date span {
  font-size: 24px;
  font-weight: 400;
  display: block;
  margin-bottom: 6px;
}
.blog-card-list__content {
  position: relative;
  padding: 0;
}
.blog-card-list__meta {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  margin-bottom: 18px;
}
.blog-card-list__meta li {
  color: var(--lotech-text, #596171);
  font-size: 12px;
  font-weight: 500;
  text-transform: capitalize;
  display: flex;
  align-items: center;
}
.blog-card-list__meta li i {
  color: var(--lotech-base, #00A6D9);
  margin-right: 10px;
}
.blog-card-list__meta li a {
  display: flex;
  align-items: center;
  color: inherit;
  transition: all 500ms ease;
}
.blog-card-list__meta li a:hover {
  color: var(--lotech-base, #00A6D9);
}
.blog-card-list__title {
  margin: 0;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.4px;
  margin-bottom: 14px;
  font-weight: 700;
}
.blog-card-list__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card-list__title a:hover {
  background-size: 100% 1px;
}
.blog-card-list__title a:hover {
  color: var(--lotech-base, #00A6D9);
  text-shadow: 0 0 1px currentColor;
}
.blog-card-list__text {
  line-height: 28px;
  margin: 0 0 22px;
}
.blog-card-list .lotech-btn {
  font-size: 15px;
  padding: 15px 22px;
  font-weight: 700;
}
.blog-card-list .lotech-btn i {
  position: relative;
  top: 3px;
  font-size: 20px;
  margin: 0 0 0 24px;
  padding-left: 13px;
  border-left: 1px solid rgba(var(--lotech-white-rgb, 255, 255, 255), 0.2);
  transform: none !important;
}

/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.topbar {
  position: relative;
  z-index: 9;
  border-bottom: 1px solid rgba(var(--lotech-black-rgb, 14, 15, 17), 0.1);
  padding: 19px 0;
}
@media (max-width: 767px) {
  .topbar {
    padding: 10px 0;
  }
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .topbar__inner {
    justify-content: center;
  }
}
.topbar__toggler {
  display: flex;
  align-items: center;
  gap: 17px;
  color: var(--lotech-text, #596171);
}
@media (max-width: 767px) {
  .topbar__toggler {
    display: none;
  }
}
.topbar__toggler i {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(var(--lotech-black-rgb, 14, 15, 17), 0.1);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0 11px;
  flex-shrink: 0;
  position: relative;
  border-radius: 50%;
  font-style: normal;
  transition: all 500ms ease;
}
.topbar__toggler span {
  display: block;
  width: 12px;
  height: 1px;
  position: relative;
  background-color: var(--lotech-black, #0E0F11);
  transition: all 500ms ease;
  border-radius: 8px;
}
.topbar__toggler span:nth-child(2) {
  margin-left: 4px;
}
.topbar__toggler:hover {
  color: var(--lotech-base, #00A6D9);
}
.topbar__toggler:hover i {
  border-color: var(--lotech-base, #00A6D9);
}
.topbar__toggler:hover span {
  background-color: var(--lotech-base, #00A6D9);
  transition: all 500ms ease;
  margin-left: 4px;
}
.topbar__toggler:hover span:nth-child(2) {
  margin-left: 0;
}
.topbar__logo {
  position: relative;
}
@media (min-width: 1200px) {
  .topbar__logo {
    margin-left: 9%;
  }
}
.topbar__social {
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: 18px;
}
@media (max-width: 767px) {
  .topbar__social {
    display: none;
  }
}
.topbar__social__text {
  margin: 0;
  padding-right: 11px;
  border-right: 1px solid rgba(var(--lotech-black-rgb, 14, 15, 17), 0.1);
}
.topbar__social a {
  font-size: 18px;
  color: rgba(var(--lotech-text-rgb, 89, 97, 113), 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
}
.topbar__social a:hover {
  color: var(--lotech-base, #00A6D9);
}

.topbar-two {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 5;
  border-bottom: 1px solid rgba(var(--lotech-white-rgb, 255, 255, 255), 0.1);
  padding: 0;
}
@media (max-width: 767px) {
  .topbar-two {
    display: none;
  }
}
.topbar-two__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
}
.topbar-two__info {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 20px;
}
.topbar-two__info__item {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--lotech-heading-font, "Yantramanav", serif);
  color: var(--lotech-white, #ffffff);
}
.topbar-two__info__item i {
  font-size: 14px;
  display: inline-block;
  margin-right: 6px;
}
.topbar-two__info__item a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar-two__info__item a:hover {
  background-size: 100% 1px;
}
@media (max-width: 991px) {
  .topbar-two__info__item:nth-child(3) {
    display: none;
  }
}
.topbar-two__social {
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: 18px;
}
@media (max-width: 767px) {
  .topbar-two__social {
    display: none;
  }
}
.topbar-two__social__text {
  margin: 0;
  padding-right: 11px;
  color: var(--lotech-white, #ffffff);
  border-right: 1px solid rgba(var(--lotech-white-rgb, 255, 255, 255), 0.1);
}
.topbar-two__social a {
  font-size: 18px;
  color: var(--lotech-white, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
}
.topbar-two__social a:hover {
  color: var(--lotech-black, #0E0F11);
}

.topbar-four {
  position: relative;
  border-bottom: 1px solid var(--lotech-border-color, #ECECEC);
}
.topbar-four .container {
  max-width: 1350px;
}
.topbar-four__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 52px;
  padding: 29px 0;
}
@media (max-width: 1199px) {
  .topbar-four__inner {
    gap: 30px;
    padding: 20px 0;
  }
}
@media (max-width: 767px) {
  .topbar-four__inner {
    justify-content: center;
    padding: 15px 0;
  }
}
.topbar-four__logo {
  position: relative;
}
.topbar-four__search {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 632px;
  width: 100%;
  height: 55px;
  border: 1px solid var(--lotech-base, #00A6D9);
  border-radius: 10px;
  margin-left: auto;
}
@media (max-width: 767px) {
  .topbar-four__search {
    display: none;
  }
}
.topbar-four__search form {
  width: 100%;
  position: relative;
}
.topbar-four__search__category {
  position: relative;
}
.topbar-four__search__category::after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 33px;
  content: "";
  background-color: var(--lotech-border-color, #ECECEC);
}
.topbar-four__search__category .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 165px !important;
  font-family: var(--lotech-font, "DM Sans", serif);
}
.topbar-four__search__category .bootstrap-select > .dropdown-toggle::after {
  display: none;
}
.topbar-four__search__category .bootstrap-select .dropdown-menu {
  border: none;
}
.topbar-four__search__category .bootstrap-select > .dropdown-toggle {
  position: relative;
  height: 55px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: transparent !important;
  margin: 0;
  padding: 0;
  padding-left: 20px;
  padding-right: 20px;
  color: var(--lotech-black, #0E0F11) !important;
  font-size: 16px;
  line-height: 55px;
  font-weight: 400;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}
.topbar-four__search__category .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 3px;
  bottom: 0;
  right: 28px;
  font-family: "Flaticon" !important;
  content: "\e909";
  font-weight: normal;
  font-size: 14px;
  color: var(--lotech-text, #596171);
}
.topbar-four__search__category .bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--lotech-border-color, #ECECEC);
}
.topbar-four__search__category .bootstrap-select .dropdown-menu > li > a {
  font-size: 16px;
  font-weight: 400;
  padding: 10px 30px;
  color: var(--lotech-black, #0E0F11);
  background-color: var(--lotech-gray, #D9D9D9);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.topbar-four__search__category .bootstrap-select .dropdown-menu > li:hover > a,
.topbar-four__search__category .bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--lotech-base, #00A6D9);
  color: var(--lotech-white, #ffffff);
  border-color: var(--lotech-base, #00A6D9);
}
.topbar-four__search input[type=search] {
  height: 53px;
  font-size: 16px;
  font-weight: 400;
  color: var(--lotech-text, #596171);
  text-transform: capitalize;
  border: none;
  background: transparent;
  outline: none;
  padding: 0 30px;
  width: 100%;
}
.topbar-four__search button[type=submit] {
  margin: 0;
  border: none;
  outline: none;
  box-shadow: none;
  line-height: 53px;
  padding: 0;
  background-color: transparent;
  position: absolute;
  right: 25px;
  font-size: 20px;
  color: var(--lotech-black, #0E0F11);
  transition: all 300ms ease;
}
.topbar-four__search button[type=submit]:hover {
  color: var(--lotech-base, #00A6D9);
}
.topbar-four__info {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1199px) {
  .topbar-four__info {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .topbar-four__info {
    gap: 0;
  }
}
@media (max-width: 767px) {
  .topbar-four__info {
    display: none;
  }
}
.topbar-four__info__item {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--lotech-text, #596171);
  text-transform: capitalize;
  display: flex;
  align-items: center;
}
.topbar-four__info__item i {
  margin-right: 8px;
  color: var(--lotech-base, #00A6D9);
  position: relative;
  top: -1px;
}
.topbar-four__info__item span {
  margin: 0 4px;
}
.topbar-four__info__item a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar-four__info__item a:hover {
  background-size: 100% 1px;
}
.topbar-four__info__item a:hover {
  color: var(--lotech-base, #00A6D9);
}
.topbar-four__info__currency, .topbar-four__info__language {
  position: relative;
  display: flex;
  align-items: center;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .topbar-four__info__currency, .topbar-four__info__language {
    display: none;
  }
}
.topbar-four__info__currency > a, .topbar-four__info__language > a {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--lotech-text, #596171);
  text-transform: capitalize;
}
.topbar-four__info__currency > a i, .topbar-four__info__language > a i {
  margin-right: 8px;
  position: relative;
  top: -1px;
  color: var(--lotech-base, #00A6D9);
}
.topbar-four__info__currency > a::after, .topbar-four__info__language > a::after {
  position: relative;
  right: 0;
  top: 1px;
  font-size: 14px;
  font-weight: normal;
  font-family: "Flaticon" !important;
  content: "\e909";
  color: currentColor;
  margin-left: 8px;
}
.topbar-four__info__currency > a:hover, .topbar-four__info__language > a:hover {
  color: var(--lotech-base, #00A6D9);
}
.topbar-four__info__currency__dropdown, .topbar-four__info__language__dropdown {
  position: absolute;
  left: 0;
  top: calc(100% + 15px);
  width: 110px;
  background-color: var(--lotech-gray, #D9D9D9);
  padding: 18px 20px;
  z-index: 99;
  display: none;
}
.topbar-four__info__currency__dropdown a, .topbar-four__info__language__dropdown a {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--lotech-text, #596171);
  line-height: 12px;
  padding-right: 17px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--lotech-border-color, #ECECEC);
}
.topbar-four__info__currency__dropdown a:hover, .topbar-four__info__language__dropdown a:hover {
  color: var(--lotech-base, #00A6D9);
}
.topbar-four__info__currency__dropdown a:last-child, .topbar-four__info__language__dropdown a:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
/* # Navigation
--------------------------------------------------------------*/
.main-header {
  position: relative;
  z-index: 9;
}
.main-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .main-header__inner {
    padding: 15px 0;
  }
}
.main-header__btn {
  padding: 9px 32px;
}
@media (max-width: 767px) {
  .main-header__btn {
    padding: 9px 18px;
  }
}
.main-header__right {
  display: flex;
  align-items: center;
}
@media (max-width: 1199px) {
  .main-header__right {
    width: 100%;
  }
}
.main-header__cart, .main-header__search {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--lotech-black-rgb, 14, 15, 17), 0.05);
  border-radius: 50%;
  font-size: 14px;
  color: var(--lotech-black, #0E0F11);
  transition: all 500ms ease;
  line-height: 1em;
  margin-right: 22px;
}
@media (max-width: 767px) {
  .main-header__cart, .main-header__search {
    margin-right: 15px;
  }
}
.main-header__cart:hover, .main-header__search:hover {
  color: var(--lotech-white, #ffffff);
  background-color: var(--lotech-base, #00A6D9);
}
.main-header--two {
  position: relative;
  left: 0;
  top: 60px;
  z-index: 9;
  width: 100%;
  border: none;
  padding: 0;
  border-bottom: 1px solid rgba(var(--lotech-white-rgb, 255, 255, 255), 0.1);
}
@media (max-width: 767px) {
  .main-header--two {
    top: 0;
  }
}
.main-header--two.sticky-header--cloned {
  background-color: var(--lotech-black, #0E0F11);
  border: none;
  box-shadow: 0px 3px 18px rgba(var(--lotech-white-rgb, 255, 255, 255), 0.07);
}
.main-header--two.sticky-header--cloned .main-menu .main-menu__list > li.current > a,
.main-header--two.sticky-header--cloned .main-menu .main-menu__list > li:hover > a {
  color: var(--lotech-base, #00A6D9);
}
.main-header--two .main-menu {
  margin-left: 115px;
}
@media (max-width: 1199px) {
  .main-header--two .main-menu {
    margin-left: 0;
  }
}
.main-header--two .main-menu .main-menu__list > li > a {
  color: var(--lotech-white, #ffffff);
}
.main-header--two .main-menu .main-menu__list > li.current > a,
.main-header--two .main-menu .main-menu__list > li:hover > a {
  color: var(--lotech-black, #0E0F11);
}
.main-header--two .mobile-nav__btn span {
  background-color: var(--lotech-white, #ffffff);
}
.main-header--two .topbar__toggler {
  color: var(--lotech-white, #ffffff);
}
.main-header--two .topbar__toggler i {
  border: none;
  background-color: rgba(var(--lotech-white-rgb, 255, 255, 255), 0.2);
}
.main-header--two .topbar__toggler i span {
  background-color: var(--lotech-white, #ffffff);
}
.main-header--two .topbar__toggler:hover i {
  background-color: var(--lotech-white, #ffffff);
}
.main-header--two .topbar__toggler:hover i span {
  background-color: var(--lotech-base, #00A6D9);
}
.main-header--two .main-header__cart,
.main-header--two .main-header__search {
  color: var(--lotech-white, #ffffff);
  background-color: rgba(var(--lotech-white-rgb, 255, 255, 255), 0.2);
  margin-right: 15px;
}
@media (max-width: 1199px) {
  .main-header--two .main-header__search {
    margin-right: 0;
  }
}
.main-header--two .main-header__cart:hover,
.main-header--two .main-header__search:hover {
  color: var(--lotech-base, #00A6D9);
  background-color: var(--lotech-white, #ffffff);
}
.main-header--two .main-header__right {
  margin-left: auto;
}
@media (max-width: 1199px) {
  .main-header--two .mobile-nav__btn {
    margin-left: auto;
    margin-right: 25px;
  }
}
.main-header--three { 
  background-color: var(--lotech-white, #ffffff);
  position: relative;
  z-index: 999;
  width: 100%;
  border: 2px solid #0850b6ff; /* Added border */
}
/* ✅ Updated Selector */ 
.main-header--three.main-header--three--sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--lotech-white, #ffffff);
  box-shadow: 0px 3px 18px rgba(var(--lotech-white-rgb, 255, 255, 255), 0.07);
  animation: slideDown 0.5s ease forwards;
  z-index: 9999;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.main-header--three--reduced {
  opacity: 0.9;
  transition: opacity 0.7s ease;
}

.main-header--three--hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.main-header--three::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  content: "";
  background-color: #ffffff;
  z-index: -1;
}

@media (max-width: 1199px) {
  .main-header--three::after { display: none; }
}
/* When sticky, shrink the logo */
.main-header--three--sticky .main-header__logo img {
  height: 62px !important ; /* Adjust to match your navbar height */
  width: 85px !important;
  /* margin-right: 10px; */
  transition: height, width 0.3s ease-in-out;
}

/* Default Logo Size (before scroll) */
.main-header--three .main-header__logo img {
  height: 100px; /* Your original logo height */
  width: 120px;
  transition: height 0.3s ease-in-out;
}
/* ---------- SMALL SCREENS (tablet & below) ---------- */
@media (max-width: 991px) {
  .main-header--three .main-header__logo img {
    height: 80px;           /* medium size */
    width: 95px;
    background-color: var(--lotech-base, #00A6D9);
  }
}
.main-header--three--sticky .main-header__motto {
  font-size: 10px !important;
  line-height: 1 !important;
  transition: font-size 0.3s ease-in-out;
  color: var(--lotech-white, #ffffff);
}
@media (max-width: 991px) {
.main-header--three--sticky .main-header__motto {
  font-size: 10px !important;
  line-height: 1 !important;
  transition: font-size 0.3s ease-in-out;
  color: var(--lotech-black);
  margin-left: 5px;
}
}
/* @media (max-width: 991px) {
  .main-header__motto {
    font-size: 5px;
  }
} */
/* ---------- VERY SMALL SCREENS (mobile) ---------- */
@media (max-width: 576px) {
  .main-header--three .main-header__logo img {
    height: 70px;           /* tiny size */
    width: 80px;
  }
}

.main-header--three::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 28.5%;
  height: 100%;
  content: "";
  background: linear-gradient(135deg, #1A74EE 0%, #1987eeff 100%);
  clip-path: polygon(90% 0, 100% 40%, 90% 100%, 0 100%, 0 0);
}

@media (max-width: 1699px) {
  .main-header--three::before {
    width: 22.5%;
    clip-path: polygon(82% 0, 100% 47%, 82% 100%, 0 100%, 0 0);
  }
}

@media (max-width: 1450px) {
  .main-header--three::before { width: 24.5%; }
}

@media (max-width: 1299px) {
  .main-header--three::before {
    width: 21%;
    clip-path: polygon(78% 0, 100% 40%, 90% 100%, 0 100%, 0 0);
  }
}

@media (max-width: 1199px) {
  .main-header--three::before { display: none; }
}

.main-header--three__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 11px 0;
  z-index: 2;
  transition: opacity 0.7s ease, visibility 0.3s ease;
}

@media (max-width: 1199px) {
  .main-header--three__topbar { display: none; }
}

.main-header--three__topbar::after {
  position: absolute;
  left: -75px;
  top: 0;
  width: 630px;
  height: 47px;
  content: "";
  background: linear-gradient(135deg, #1A74EE 0%, #1987eeff 100%);
  z-index: -1;
  clip-path: polygon(0 0, 92% 0, 100% 100%, 8% 100%);
}

.main-header--three__topbar__info {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 20px;
}

.main-header--three__topbar__info__item {
  position: relative;
  font-size: 16px;
  color: var(--lotech-white, #ffffff);
}

.main-header--three__topbar__info__item i {
  font-size: 14px;
  color:  var(--lotech-white, #ffffff);
  display: inline-block;
  margin-right: 6px;
}

.main-header--three__topbar__info__item a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.main-header--three__topbar__info__item a:hover {
  background-size: 100% 1px;
}

@media (max-width: 991px) {
  .main-header--three__topbar__info__item:nth-child(3) { display: none; }
}

.main-header--three__topbar__social {
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: 18px;
  margin-right: -8px;
}

@media (max-width: 767px) {
  .main-header--three__topbar__social { display: none; }
}

.main-header--three__topbar__social__text {
  margin: 0;
  padding-right: 11px;
  color: var(--lotech-black, #0E0F11);
  border-right: 1px solid rgba(var(--lotech-white-rgb, 255, 255, 255), 0.1);
}

.main-header--three__topbar__social a {
  font-size: 18px;
  color: var(--lotech-black, #0E0F11);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
}

.main-header--three__topbar__social a:hover {
  color: var(--lotech-base, #00A6D9);
}

.main-header--three .main-header__inner {
  display: block;
  position: relative;
  padding: 0 0 0 300px;
}

@media (max-width: 1199px) {
  .main-header--three .main-header__inner {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 180px;
  }
}

@media (max-width: 767px) {
  .main-header--three .main-header__inner { padding-left: 180px}
  
}

.main-header--three .main-header__logo {
  position: flex;
  flex-direction: column;
  position: absolute;
  left: 0px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  /* align-items: center; */
  transition: opacity 0.7s ease, visibility 0.3s ease;
}
/* .main-header--three .main-header__logo ::after {
  max-height: 10px;
} */
 .main-header__motto {
  margin-top: 5px;
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 600 ;
  color: var(--lotech-white, #ffffff) ;
  text-align: center ;
  text-transform: uppercase ;
  letter-spacing: 0.05em ;
  line-height: 1 ;
  /* white-space: nowrap ; */
  font-style:italic;
  z-index: 9999 !important;
}
@media (max-width: 991px) {
 .main-header__motto {
  margin: 4px 0 10px -5px;
  font-size: 13px;
  font-weight: 600 ;
  color: var(--lotech-black) ;
  text-align: center ;
  text-transform: uppercase ;
  letter-spacing: 0.05em ;
  line-height: 1 ;
  /* white-space: nowrap ; */
  font-style:italic;
  z-index: 9999 !important;
}
}
.main-header--three__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  background-color: var(--lotech-white, #ffffff)
}
@media (max-width: 1399px) {
  .main-header--three .main-menu .main-menu__list > li + li { margin-left: 22px; }
}

.main-header--three .main-menu .main-menu__list > li > a {
  color: var(--lotech-white, #ffffffff);
}

.main-header--three .main-menu .main-menu__list > li.current > a,
.main-header--three .main-menu .main-menu__list > li:hover > a {
  color: var(--lotech-base, #00A6D9);
}

.main-header--three .mobile-nav__btn span {
  background-color: var(--lotech-black, #0E0F11);
}

.main-header--three .main-header__right { flex-shrink: 0; }

.main-header--three .mobile-nav__btn {
  width: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
}

@media (min-width: 1200px) {
  .main-header--three .mobile-nav__btn { display: none; }
}

@media (max-width: 1199px) {
  .main-header--three .mobile-nav__btn {
    margin-left: auto;
    margin-right: 20px;
  }
}

.main-header--three .main-header__search {
  width: 50px;
  height: 50px;
  color: var(--lotech-white, #ffffff);
  background-color: rgba(var(--lotech-white-rgb, 255, 255, 255), 0.2);
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .main-header--three .main-header__search { margin-right: 0; }
}

.main-header--three .main-header__search:hover {
  color: var(--lotech-base, #00A6D9);
  background-color: var(--lotech-white, #ffffff);
}

@media (max-width: 767px) {
  .main-header--three .lotech-btn { display: none; }
}

.main-header--three .lotech-btn {
  background: linear-gradient(135deg, #1A74EE 0%, #1987eeff 100%);
  padding: 9px 34px 8px 24px;
  border-radius: 8px;
  font-weight: bold;
  color: var(--lotech-white, #ffffff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative; /* Ensure relative positioning for absolute children */
  transition: all 0.3s ease;
}

.main-header--three .lotech-btn:hover {
  background-color: var(--lotech-white, #ffffff);
  color: var(--lotech-black, #0E0F11);
}

.main-header--three .lotech-btn::after {
  background-color: var(--lotech-white, #ffffff);
}

.main-header--three .lotech-btn span {
  display: inline;
  align-items: center;
  justify-content: center;
  position: relative; /* Container for absolute positioning of icons */
  width: 100%; /* Ensure span takes full width for centering */
}

.main-header--three .lotech-btn span i {
  position: absolute;
  right: 2px; /* Align to the right side */
  bottom: 2px;
  transition: all 0.2s ease-out;
  font-size: 12px; /* Adjust size if needed */
  margin-left: 5px; /* Space between text and first arrow */
}

.main-header--three .lotech-btn span i:last-child {
  right: -20px; /* Start off-screen to the right */
  bottom: -20px;
  transform: translate(0, 0);
  opacity: 0;
  transition: all 0.6s ease-out;
}

.main-header--three .lotech-btn:hover span i:last-child {
  right: 2px; /* Move to the right edge on hover */
  bottom: 2px;
  opacity: 1;
  transform: translate(0, 0);
}



/* ==============================================
   MAIN NAVIGATION (with gradient background shape)
   ============================================== */

.main-menu {
  position: relative;
  z-index: 2;
}

.main-menu .main-menu__list,
.main-menu .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: none;
  position: relative; /* Needed for ::before background */
}

@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list ul {
    display: flex;
  }
}

/* ---------- Gradient Background Behind Menu ---------- */
.main-menu .main-menu__list::before {
  position: absolute;
  left: -75px;
  top: 20px;
  width: 635px;
  height: 69px;
  content: "";
  background: linear-gradient(135deg, #1A74EE 0%, #1987EE 100%);
  clip-path: polygon(0% 90%, 90% 90%, 99% 10%, 8% 10%);
  z-index: -1;
  border-radius: 6px;
  transition: all 0.4s ease;
  opacity: 0.95;
}

/* Keep it visible only on desktop */
@media (max-width: 1199px) {
  .main-menu .main-menu__list::before {
    display: none;
  }
}

/* ---------- Menu Links ---------- */
.main-menu .main-menu__list > li {
  padding-top: 32px;
  padding-bottom: 17px;
  position: relative;
}

/* spacing between items */
.main-menu .main-menu__list > li + li {
  margin-left: 32px;
}

/* ---- Ensure anchor is a block container and hides overflow so the slide animation is visible ---- */
.main-menu .main-menu__list > li > a {
  display: inline-block;             /* needed so transforms on child pseudo/children clip properly */
  overflow: hidden;                  /* hide the sliding text when it moves */
 padding: 8px 2px;
  line-height: 1.3;
  margin-bottom: -11px;                   /* avoids unexpected vertical offsets */
  font-size: 16px;
  color: #f7f9fd;
  font-weight: 700;
  font-family: var(--lotech-heading-font, "Yantramanav", serif);
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  transition: color 0.25s ease;
}

/* Sliding duplicate text that comes down */
.main-menu .main-menu__list > li > a::before {
  content: attr(data-title);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  color: currentColor;
  transform: translateY(-120%); /* start above */
  transition: transform 0.38s cubic-bezier(.22,.9,.35,1), opacity 0.28s;
  will-change: transform, opacity;
  pointer-events: none;
  display: inline-block;
  width: 100%;
}

/* Original visible text that will move up when hovered */
.main-menu .main-menu__list > li > a span {
  display: inline-block;
  position: relative;
  z-index: 3;
  transform: translateY(0%);
  transition: transform 0.38s cubic-bezier(.22,.9,.35,1);
  will-change: transform;
}

/* Hover / active: bring ::before down and push span up */
.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a {
  color: #ffffff !important;
}

.main-menu .main-menu__list > li.current > a::before,
.main-menu .main-menu__list > li:hover > a::before {
  transform: translateY(0%); /* slide into place */
  opacity: 1;
}

.main-menu .main-menu__list > li.current > a span,
.main-menu .main-menu__list > li:hover > a span {
  transform: translateY(-110%); /* move old text up and out */
}

/* keep underline working as before (no change) */
.main-menu .main-menu__list > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  height: 2px;
  width: 100%;
  background: #ffffff;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.28s cubic-bezier(.22, .9, .35, 1), opacity 0.28s;
  opacity: 0;
  z-index: 5;
  pointer-events: none;
  border-radius: 2px;
  will-change: transform, opacity;
}

.main-menu .main-menu__list > li:hover > a::after,
.main-menu .main-menu__list > li.current > a::after {
  transform: scaleX(1);
  opacity: 1;
}

/* ensure the background gradient sits behind everything */
.main-menu .main-menu__list::before {
  z-index: -1 !important;
}


/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/

/* Mobile Responsive Header */
@media (max-width: 1199px) {
  .main-header--three__topbar {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .main-header--three__topbar__info {
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .main-header__nav {
    display: none;
  }
  
  .main-header__right {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .desktop-only {
    display: none !important;
  }
  
  .main-header--three__bottom {
    justify-content: flex-end;
    /* background-color: var(--lotech-base); */
  }
}

@media (max-width: 768px) {
  .main-header--three__topbar {
    display: none !important;
  }
  
  .main-header__logo img {
    max-height: 40px;
    width: auto;
  }
  
  .main-header__inner {
    padding: 10px 0;
  }
  
  .mobile-nav__wrapper {
    display: block;
  }
  
  .sidebar-one {
    display: none;
  }
}

@media (max-width: 576px) {
  .main-header__logo img {
    max-height: 70px;
    width: 80px;
  }
  
  .container {
    padding: 0 15px;
    
  }
  
  .mobile-nav__content {
    width: 85%;
  }
}

/* Mobile Nav Toggle Animation */
.mobile-nav__btn {
  display: none;
}

@media (max-width: 991px) {
  .mobile-nav__btn {
    display: flex;
    flex-direction: column;
    width: 24px;
    height: 18px;
    cursor: pointer;
    position: relative;
  }
  
  .mobile-nav__btn span {
    display: block;
    height: 2px;
    width: 100%;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
  }
  
  /* .mobile-nav__btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-nav__btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-nav__btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  } */
}

/* Mobile Nav Overlay */
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}

.mobile-nav__wrapper.expanded {
  visibility: visible;
  opacity: 1;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.mobile-nav__content {
  position: absolute;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100%;
  background: #fff;
  padding: 30px;
  overflow-y: auto;
  transition: left 0.5s ease;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  left: 0;
}

/* Hide sidebar on mobile */
@media (max-width: 768px) {
  .sidebar-one {
    display: none;
  }
  
  .sidebar-desktop-only {
    display: none;
  }
}




/* 
.mobile-nav__btn span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--lotech-white, #ffffff);
  margin: 4px 0;
  transition: all 0.3s ease;
}

.mobile-nav__btn span:nth-child(1) {
  transform-origin: top left;
}

.mobile-nav__btn span:nth-child(3) {
  transform-origin: bottom left;
}

.mobile-nav__btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav__btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-nav__btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
} */

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(-100%);
  transform-origin: left center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  visibility: hidden;
  position: fixed;
}
.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}
.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  flex: 0 0 100%;
}
.mobile-nav__wrapper .home-showcase {
  margin-bottom: -1px;
  margin-top: 0;
  border-bottom: 1px solid RGBA(var(--lotech-white-rgb, 255, 255, 255), 0.1);
}
.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: transparent;
  box-shadow: none;
}
.mobile-nav__wrapper .home-showcase__title {
  color: var(--lotech-white, #ffffff);
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}
.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--lotech-black, #0E0F11);
  opacity: 0.3;
  cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--lotech-black2, #000000);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}
.mobile-nav__content .main-menu__nav {
  display: block;
  padding: 0;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--lotech-white, #ffffff);
  cursor: pointer;
  transition: all 500ms ease;
}
.mobile-nav__close:hover {
  color: var(--lotech-base, #00A6D9);
}

/* ✅ CORRECTED — Mobile Nav Styling */
.mobile-nav__content .mobile-nav__list,
.mobile-nav__content .mobile-nav__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .mobile-nav__list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.mobile-nav__content .mobile-nav__list li:last-child {
  border-bottom: none;
}

.mobile-nav__content .mobile-nav__list li > a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 12px;
  font-family: var(--lotech-font, "DM Sans", serif);
  text-transform: uppercase;
  font-weight: 500;
  height: 46px;
  letter-spacing: 0.1em;
  align-items: center;
  transition: 350ms;
  padding: 0 5px;
}

/* ✅ Active link */
.mobile-nav__content .mobile-nav__list li a.expanded {
  color: #00A6D9;
}

.mobile-nav__social {
  display: flex;
  align-items: center;
}
.mobile-nav__social a {
  font-size: 16px;
  color: var(--lotech-white, #ffffff);
  transition: 500ms;
}
.mobile-nav__social a + a {
  margin-left: 20px;
}
.mobile-nav__social a:hover {
  color: var(--lotech-base, #00A6D9);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
.mobile-nav__contact li {
  color: var(--lotech-white, #ffffff);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}
.mobile-nav__contact li + li {
  margin-top: 15px;
}
.mobile-nav__contact li a {
  color: inherit;
  transition: 500ms;
}
.mobile-nav__contact li a:hover {
  color: var(--lotech-base, #00A6D9);
}
.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--lotech-base, #00A6D9);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  margin-right: 10px;
  color: var(--lotech-white, #ffffff);
}

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
  display: none;
} */

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  /* top: 170.08px; */
  /* margin-bottom: 170.08px; */
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: var(--lotech-black, #0E0F11);
}
@media (max-width: 1399px) {
  .page-header {
    padding-top: 70px;
    padding-bottom: 80px;
  }
}


@media (max-width: 991px) {
  .page-header {
    padding-top: 60px;
    padding-bottom: 62px;
  }
}

@media (max-width: 430px) {
  .page-header {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}
.page-header__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-header__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(14, 15, 17, 0.9) 0%, rgba(14, 15, 17, 0) 100%);
}
.page-header .container {
  position: relative;
  z-index: 1;
}
.page-header__title {
  margin-bottom: 0px;
  font-size: 96px;
  color: var(--lotech-white, #ffffff);
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.104;
}
@media (max-width: 1399px) {
  .page-header__title {
    margin-bottom: 15px;
    font-size: 70px;
  }
}
@media (max-width: 991px) {
  .page-header__title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .page-header__title {
    font-size: 50px;
  }
}
@media (max-width: 430px) {
  .page-header__title {
    font-size: 40px;
  }
}

/* ✅ Breadcrumb base styles - unchanged except organized */
.lotech-breadcrumb { 
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px 0;
  flex-wrap: wrap;
}

.lotech-breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--lotech-white, #ffffff);
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.25;
}

@media (max-width: 991px) {
  .lotech-breadcrumb li {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .lotech-breadcrumb li {
    font-size: 17px;
  }
}

.lotech-breadcrumb li:not(:last-of-type)::after {
  content: "/";
  position: relative;
  top: -1px;
  margin-left: 8px;
  margin-right: 8px;
  font-size: 21px;
}

@media (max-width: 991px) {
  .lotech-breadcrumb li:not(:last-of-type)::after {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .lotech-breadcrumb li:not(:last-of-type)::after {
    font-size: 18px;
  }
}

.lotech-breadcrumb li span,
.lotech-breadcrumb li a {
  display: inline-flex;
}

.lotech-breadcrumb li:not(:first-child) span {
  color: var(--lotech-base, #00A6D9);
}

.lotech-breadcrumb li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.lotech-breadcrumb li a:hover {
  background-size: 100% 1px;
  color: var(--lotech-base, #00A6D9);
}

.breadcrumb-motto {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  
  background: var(--lotech-base, #00A6D9);
  color: #ffffff;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 24px 12px 40px; 
  z-index: 10;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 10% 100%, 0 50%);  
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}


/* ✅ Mobile improvements */
@media (max-width: 768px) {
  .breadcrumb-motto {
    font-size: 17px;
    padding: 7px 20px 10px 24px;
    /* right: 50%; */
    top: auto;
    bottom: 15px;
    transform: translateX(50%);
    clip-path: polygon(0 2, 100% 0, 100% 100%, 0 100%);
    border-radius: 6px;
  }
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
  position: relative;
}
.google-map iframe {
  position: relative;
  display: block;
  border: none;
  height: 400px;
  width: 100%;
  mix-blend-mode: luminosity;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .google-map iframe {
    height: 300px;
  }
}
.google-map__contact {
  overflow: hidden;
  background-color: var(--lotech-black, #0E0F11);
}

.contact-map {
  position: relative;
  overflow: hidden;
  margin-bottom: -1px;
  z-index: 1;
}

/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/
.client-carousel {
  position: relative;
  padding: 80px 0 115px;
}
@media (max-width: 767px) {
  .client-carousel {
    padding: 60px 0;
  }
}
.client-carousel__title {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 50px;
  z-index: 2;
}
.client-carousel__title::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 1px;
  width: calc(50% - 116px);
  content: "";
  background-color: var(--lotech-border-color, #ECECEC);
}
.client-carousel__title::after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 1px;
  width: calc(50% - 116px);
  content: "";
  background-color: var(--lotech-border-color, #ECECEC);
}
.client-carousel__one__item {
  text-align: center;
}
.client-carousel__one__item img {
  /* -webkit-filter: grayscale(100%);
  filter: grayscale(100%); */
  transition: all 500ms ease;
  max-width: 100%;
  width: auto !important; 
  margin: 0 auto;
  opacity: 1;
}
.client-carousel__one__item:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  opacity: 1;
  scale: 1.20;
}
.client-carousel--two {
  background-color: transparent;
  padding: 0 0 50px;
}
@media (max-width: 767px) {
  .client-carousel--two {
    padding-bottom: 60px;
  }
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
.form-one__group {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px 24px;
  margin: 0;
}
@media (min-width: 576px) {
  .form-one__group {
    grid-template-columns: repeat(2, 1fr);
  }
}
.form-one__group {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px 24px;
  margin: 0;
}
@media (min-width: 576px) {
  .form-one__group {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Base form style (common for both light & dark themes) */
.form-one__control {
  border: none;
  width: auto;
  height: auto;
  border-radius: 8px;
  padding: 0;
  position: relative;
  font-weight: 800;
  margin-bottom: -2px;
}

.form-one__control label {
  display: block;
  line-height: 1;
  font-size: 14px;
  margin: 0 0 12px;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.form-one__control__icon {
  position: absolute;
  bottom: 17px;
  right: 20px;
  font-size: 16px;
  transition: all 0.3s ease;
  color: #999;
}

.form-one__control--full {
  grid-column-start: 1;
  grid-column-end: -1;
}

.form-one input,
.form-one textarea,
.form-one .bootstrap-select > .dropdown-toggle {
  display: block;
  width: 100%;
  height: 50px;
  border-radius: 8px;
  outline: none;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 16px;
  font-weight: 400;
  transition: all 0.4s ease;
  border: 1px solid transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-one input:focus,
.form-one textarea:focus,
.form-one .bootstrap-select > .dropdown-toggle:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10, 144, 204, 0.15);
}

.form-one textarea {
  height: 144px;
  padding-top: 15px;
  margin-bottom: 30px;
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

/* Form group hover effects */
.form-one__control:hover label {
  color: var(--lotech-base, #00A6D9);
}

.form-one__control:hover .form-one__control__icon {
  color: var(--lotech-base, #00A6D9);
  transform: scale(1.1);
}

/* Floating label effect */
.form-one__control--floating {
  position: relative;
}

.form-one__control--floating label {
  position: absolute;
  top: 16px;
  left: 25px;
  margin: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  background: transparent;
  padding: 0 8px;
  z-index: 1;
}

.form-one__control--floating input:focus + label,
.form-one__control--floating textarea:focus + label,
.form-one__control--floating input:not(:placeholder-shown) + label,
.form-one__control--floating textarea:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 12px;
  color: var(--lotech-base, #00A6D9);
  background: inherit;
}

/* Success and error states */
.form-one__control--success input,
.form-one__control--success textarea {
  border-color: #28a745;
}

.form-one__control--error input,
.form-one__control--error textarea {
  border-color: #dc3545;
}

.form-one__control__message {
  font-size: 12px;
  margin-top: 6px;
  display: block;
}

.form-one__control--success .form-one__control__message {
  color: #28a745;
}

.form-one__control--error .form-one__control__message {
  color: #dc3545;
}

/* Form animations */
@keyframes formShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.form-one__control--error input,
.form-one__control--error textarea {
  animation: formShake 0.5s ease;
}

/* Loading state */
.form-one__control--loading .form-one__control__icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ========== DARK THEME ENHANCEMENTS ========== */
.form-one--dark input,
.form-one--dark textarea {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.form-one--dark input:focus,
.form-one--dark textarea:focus {
  border-color: var(--lotech-base, #00A6D9);
  border-width: 2px;
  box-shadow: 0 8px 20px rgba(10, 144, 204, 0.25);
  background-color: rgba(10, 144, 204, 0.05);
}

.form-one--dark input::placeholder,
.form-one--dark textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-one--dark .form-one__control:hover label {
  color: var(--lotech-base, #00A6D9);
  text-shadow: 0 0 10px rgba(10, 144, 204, 0.3);
}

/* ========== LIGHT THEME ENHANCEMENTS ========== */
.form-one--light input,
.form-one--light textarea {
  background-color: #ffffff;
  color: #000000;
  border: 2px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.form-one--light input:focus,
.form-one--light textarea:focus {
  border-color: var(--lotech-base, #00A6D9);
  border-width: 2px;
  box-shadow: 0 8px 25px rgba(10, 144, 204, 0.15);
  background-color: #ffffff;
}

.form-one--light input::placeholder,
.form-one--light textarea::placeholder {
  color: #777777;
}

.form-one--light .form-one__control:hover label {
  color: var(--lotech-base, #00A6D9);
}

/* Enhanced button styling */
.form-one button.lotech-btn {
  margin-top: 0px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.form-one button.lotech-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(10, 144, 204, 0.3);
}

.form-one button.lotech-btn:active {
  transform: translateY(-1px);
}

/* Form section styling */
.form-one__section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.form-one--dark .form-one__section {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.form-one__section-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--lotech-base, #00A6D9);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive improvements */
@media (max-width: 768px) {
  .form-one input,
  .form-one textarea {
    height: 48px;
    font-size: 15px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .form-one textarea {
    height: 120px;
  }
  
  .form-one__control {
    margin-bottom: -6px;
  }
}
/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/
.comments-one {
  padding-top: 51px;
}
.comments-one__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.comments-one__card {
  display: grid;
  grid-template-columns: 86px auto;
  grid-gap: 23px;
}
@media (max-width: 767px) {
  .comments-one__card {
    grid-template-columns: auto;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .comments-one__card {
    grid-template-columns: auto;
  }
}
.comments-one__card:nth-child(even) {
  padding-left: 70px;
}
@media (max-width: 767px) {
  .comments-one__card:nth-child(even) {
    padding-left: 50px;
  }
}
@media (max-width: 575px) {
  .comments-one__card:nth-child(even) {
    padding-left: 0px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .comments-one__card:nth-child(even) {
    padding-left: 50px;
  }
}
.comments-one__card:not(:last-child) {
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid RGBA(var(--lotech-black-rgb, 14, 15, 17), 0.1);
}
.comments-one__card__image {
  width: 86px;
}
.comments-one__card__image img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
}
.comments-one__card__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px 40px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .comments-one__card__content {
    flex-direction: column;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .comments-one__card__content {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.comments-one__card__name {
  margin-bottom: 9px;
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.416;
}
.comments-one__card__date {
  margin-bottom: 10px;
  text-transform: capitalize;
}
.comments-one__card__text {
  margin-bottom: 0;
}
.comments-one__card__reply {
  flex-shrink: 0;
  padding: 5px 14.5px;
  font-family: var(--lotech-font, "DM Sans", serif);
  font-weight: 400;
  color: var(--lotech-text, #596171);
  background-color: transparent;
  border: 1px solid RGBA(var(--lotech-black-rgb, 14, 15, 17), 0.1);
}

.comments-form {
  margin-top: 43px;
}
@media (max-width: 575px) {
  .comments-form {
    margin-top: 51px;
  }
}

.comments-one__title,
.comments-form__title {
  margin-bottom: 38px;
  font-weight: 700;
  font-size: 32px;
  text-transform: capitalize;
  line-height: 1.3125;
}

/*--------------------------------------------------------------
# Sidebar Popup
--------------------------------------------------------------*/
.sidebar-one {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(100%);
  transform-origin: right center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}
.sidebar-one.active {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}
.sidebar-one.active .sidebar-one__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}
.sidebar-one__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--lotech-black2, #000000);
  opacity: 0.5;
  cursor: url(../images/close.png), auto;
}
.sidebar-one__close {
  position: absolute;
  right: 25px;
  top: 20px;
  font-size: 16px;
  color: var(--lotech-white, #ffffff);
  transition: all 0.4s ease;
  cursor: pointer;
}
.sidebar-one__close:hover {
  color: var(--lotech-base, #00A6D9);
}
.sidebar-one__content {
  width: 350px;
  background-color: var(--lotech-black2, #000000);
  z-index: 10;
  position: relative;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  padding-top: 40px;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  scrollbar-width: none;
}
.sidebar-one__text {
  color: var(--lotech-gray, #D9D9D9);
  margin: 35px 0 30px;
  line-height: 28px;
}
.sidebar-one__title {
  color: var(--lotech-white, #ffffff);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 18px;
}
.sidebar-one__info {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar-one__info li {
  position: relative;
  padding: 0 0 0 28px;
  margin-bottom: 10px;
  color: var(--lotech-gray, #D9D9D9);
}
.sidebar-one__info li span {
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 15px;
  color: var(--lotech-base, #00A6D9);
  line-height: inherit;
}
.sidebar-one__info li a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  color: inherit;
}
.sidebar-one__info li a:hover {
  background-size: 100% 1px;
}
.sidebar-one__info li a:hover {
  color: var(--lotech-base, #00A6D9);
}
.sidebar-one__social {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 25px 0 40px;
}
.sidebar-one__social a {
  width: 37px;
  height: 37px;
  background-color: RGBA(var(--lotech-white-rgb, 255, 255, 255), 0.08);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--lotech-white, #ffffff);
}
.sidebar-one__social a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.sidebar-one__social a:hover {
  background-color: var(--lotech-base, #00A6D9);
  color: var(--lotech-white, #ffffff);
}
.sidebar-one__social a:hover i {
  animation: iconTranslateY 0.4s forwards;
}
.sidebar-one__newsletter {
  position: relative;
}
.sidebar-one__newsletter input[type=text] {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  height: 60px;
  background-color: RGBA(var(--lotech-white-rgb, 255, 255, 255), 0.08);
  color: var(--lotech-gray, #D9D9D9);
  font-size: 16px;
  font-weight: 400;
  padding-left: 30px;
  padding-right: 50px;
  transition: all 500ms ease;
  border-radius: 8px;
}
.sidebar-one__newsletter button[type=submit] {
  background-color: transparent;
  width: auto;
  height: auto;
  border: none;
  outline: none;
  color: var(--lotech-white, #ffffff);
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: all 500ms ease;
}
.sidebar-one__newsletter button[type=submit]:hover {
  color: var(--lotech-base, #00A6D9);
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.contact-info-wrapper .sidebar__contact {
  padding: 20px;
  margin-top: 20px;
  border-radius: 5px ;
}

.contact-info-wrapper .sidebar__title {
  margin-bottom: 5px 20px;
  font-size: 24px;
  font-weight: 700;
  color: var(--lotech-black, #0E0F11);
}

.contact-info-wrapper .sidebar__contact__list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px; /* Reduced overall gap */
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-info-wrapper .sidebar__contact__list li {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 200px; /* Ensure items don't get too narrow */
}

/* Target specific list items using :nth-child */
.contact-info-wrapper .sidebar__contact__list li:nth-child(1) {
  margin-left: 0; /* Narrower gap after Contact Phone */
  margin-bottom: 10px;
}

.contact-info-wrapper .sidebar__contact__list li:nth-child(2) {
  margin-right: 38px; /* Narrower gap before Contact Mail */
  margin-bottom: 25px;
}

.contact-info-wrapper .sidebar__contact__icon {
  font-size: 20px;
  color: var(--lotech-base, #00A6D9);
  margin-right: 10px;
}

.contact-info-wrapper .sidebar__contact__content {
  display: flex;
  flex-direction: column;
}

.contact-info-wrapper .sidebar__contact__title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: var(--lotech-black, #0E0F11);
}

.contact-info-wrapper .sidebar__contact__text {
  font-size: 14px;
  color: var(--lotech-text, #596171);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-wrapper .sidebar__contact__text:hover {
  color: var(--lotech-base, #00A6D9);
}

@media (max-width: 767px) {
  .contact-info-wrapper .sidebar__contact__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px; /* Slightly larger gap for vertical stacking */
  }

  .contact-info-wrapper .sidebar__contact__list li {
    width: 100%;
    min-width: unset;
  }

  .contact-info-wrapper .sidebar__contact__list li:nth-child(1),
  .contact-info-wrapper .sidebar__contact__list li:nth-child(2) {
    margin-right: 0;
    margin-left: 0; /* Reset margins for vertical layout */
  }
}
@media (max-width: 991px) {
  .sidebar__contact--mobile-center {
    margin-left: 5px !important;
    margin-right: 20px !important;
    max-width: 400px;
    width: 100%;
  }
}
/*--------------------------------------------------------------
# Contact Info */

.contact-info.section-space-bottom {
  padding-bottom: 20px;
}

.contact-info .row {
  margin: 80px;
}

.contact-info__card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 200px; /* Fixed height for all cards */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(48, 208, 248, 0.4);
}

.contact-info__card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(48, 208, 248, 0.6);
}

.contact-info__card__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--lotech-black, #0E0F11);
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact-info__card__title i {
  margin-right: 10px;
  color: var(--lotech-base, #00A6D9);
  font-size: 24px;
}

.contact-info__card__text {
  font-size: 16px;
  color: var(--lotech-text, #596171);
  margin-bottom: 5px;
  flex-grow: 1; /* Allows text to push list downward */
}

.contact-info__card__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-info__card__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: var(--lotech-text, #596171);
  margin-bottom: 8px;
}

.contact-info__card__list li a {
  color: var(--lotech-base, #00A6D9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info__card__list li a:hover {
  color: var(--lotech-base, #00A6D9);
}

.contact-info__card__list li button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--lotech-base, #00A6D9);
  font-size: 16px;
  transition: color 0.3s ease;
}

.contact-info__card__list li button:hover {
  color: var(--lotech-dark, #005566);
}

.contact-info__card__list--address li {
  font-size: 14px;
  color: var(--lotech-text, #596171);
}

@media (max-width: 767px) {
  .contact-info__card {
    height: auto; /* Allow height to adjust for content on mobile */
    min-height: 180px; /* Ensure a minimum height */
    margin-top: 30px;
  }

  .contact-info .row {
    margin: 0 5px 0 5px; /* Adjust margins for mobile */
  }

  .col-lg-4.col-md-6 {
    margin-bottom: 20px; /* Add spacing between stacked cards */
  }
}
.sidebar__single {
  padding: 24px 30px 30px;
  background: linear-gradient(119.31deg, #F6EFFF 0%, #EBF6F8 100%);
}
@media (max-width: 375px) {
  .sidebar__single {
    padding: 20px 26px 26px;
  }
}
.sidebar__single + .sidebar__single {
  margin-top: 30px;
}
.sidebar__title {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.416;
}
.sidebar__form .form-one__group {
  grid-gap: 15px;
}

/* Base input and textarea styles */
.sidebar__form .form-one input[type=text],
.sidebar__form .form-one input[type=tel],
.sidebar__form .form-one input[type=email],
.sidebar__form .form-one textarea,
.sidebar__form .form-one .bootstrap-select > .dropdown-toggle {
  width: 100%;
  padding: 14px 19px;
  font-size: 15px;
  font-weight: 500;
  color: var(--lotech-black, #0E0F11);
  background-color: var(--lotech-white, #ffffff);
  border: 1.5px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: all 0.3s ease;
}

/* Bold gray placeholder */
.sidebar__form .form-one input::placeholder,
.sidebar__form .form-one textarea::placeholder {
  color: #666;
  font-weight: 600;
  opacity: 1; /* ensures visibility across browsers */
}

/* On focus */
.sidebar__form .form-one input:focus,
.sidebar__form .form-one textarea:focus,
.sidebar__form .form-one .bootstrap-select > .dropdown-toggle:focus {
  border-color: var(--lotech-base, #00A6D9);
  box-shadow: 0 0 0 2px rgba(10, 144, 204, 0.15);
  color: var(--lotech-black, #0E0F11);
}

/* Textarea adjustments */
.sidebar__form .form-one textarea {
  height: 120px;
  resize: none;
  margin-bottom: 15px;
}

/* Smooth hover feedback */
.sidebar__form .form-one input:hover,
.sidebar__form .form-one textarea:hover {
  border-color: #999;
}

.sidebar__search {
  position: relative;
  height: 50px;
}
.sidebar__search input[type=search],
.sidebar__search input[type=text] {
  padding-left: 19px;
  padding-right: 46px;
  outline: none;
  border: 0;
  font-size: 16px;
  color: RGBA(var(--lotech-text-rgb, 89, 97, 113), 0.7);
  font-weight: 400;
  width: 100%;
  height: 100%;
  background-color: var(--lotech-white, #ffffff);
  border: 1px solid transparent;
  transition: all 400ms ease;
}
@media (max-width: 390px) {
  .sidebar__search input[type=search],
  .sidebar__search input[type=text] {
    padding-right: 36px;
  }
}
.sidebar__search input[type=search]:focus,
.sidebar__search input[type=text]:focus {
  color: var(--lotech-black, #0E0F11);
  border-color: var(--lotech-base, #00A6D9);
}
.sidebar__search button[type=submit] {
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: auto;
  font-size: 16px;
  color: var(--lotech-black4, #00000F);
  transition: all 400ms ease;
  z-index: 2;
}
@media (max-width: 390px) {
  .sidebar__search button[type=submit] {
    right: 19px;
  }
}
.sidebar__search button[type=submit]:hover {
  color: var(--lotech-base, #00A6D9);
}
.sidebar__search button[type=submit] svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.sidebar__contact__list {
  margin: 0;
}
.sidebar__contact__list li + li {
  margin-top: 17px;
}
.sidebar__contact__list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.sidebar__contact__icon {
  display: inline-flex;
  flex-shrink: 0;
  font-size: 24px;
  color: var(--lotech-base, #00A6D9);
}
.sidebar__contact__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.sidebar__contact__title {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.625;
  text-transform: capitalize;
}
.sidebar__contact__text {
  color: var(--lotech-text, #596171);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.sidebar__contact__text:hover {
  background-size: 100% 1px;
}
.sidebar__contact__text:hover {
  color: var(--lotech-base, #00A6D9);
}

.blog-sidebar__single {
  padding: 24px 30px 30px;
  background: linear-gradient(119.31deg, #F6EFFF 0%, #EBF6F8 100%);
}
@media (max-width: 375px) {
  .blog-sidebar__single {
    padding: 20px 26px 26px;
  }
}
.blog-sidebar__single + .blog-sidebar__single {
  margin-top: 30px;
}
.blog-sidebar__title {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.416;
}
.blog-sidebar__search {
  position: relative;
  height: 50px;
}
.blog-sidebar__search input[type=search],
.blog-sidebar__search input[type=text] {
  padding-left: 20px;
  padding-right: 46px;
  outline: none;
  border: 0;
  font-size: 14px;
  color: RGBA(var(--lotech-text-rgb, 89, 97, 113), 0.6);
  font-weight: 400;
  width: 100%;
  height: 100%;
  background-color: var(--lotech-white, #ffffff);
  border: 1px solid transparent;
  transition: all 400ms ease;
}
@media (max-width: 390px) {
  .blog-sidebar__search input[type=search],
  .blog-sidebar__search input[type=text] {
    padding-right: 36px;
  }
}
.blog-sidebar__search input[type=search]:focus,
.blog-sidebar__search input[type=text]:focus {
  color: var(--lotech-black, #0E0F11);
  border-color: var(--lotech-base, #00A6D9);
}
.blog-sidebar__search button[type=submit] {
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: auto;
  font-size: 16px;
  color: var(--lotech-black4, #00000F);
  transition: all 400ms ease;
  z-index: 2;
}
@media (max-width: 390px) {
  .blog-sidebar__search button[type=submit] {
    right: 19px;
  }
}
.blog-sidebar__search button[type=submit]:hover {
  color: var(--lotech-base, #00A6D9);
}
.blog-sidebar__search button[type=submit] svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.blog-sidebar__categories-box {
  margin: 0;
}
.blog-sidebar__categories-box li + li {
  margin-top: 10px;
}
.blog-sidebar__categories-box li a {
  position: relative;
  padding: 12px 30px;
  font-size: 16px;
  color: var(--lotech-text, #596171);
  text-transform: capitalize;
  font-weight: 400;
  line-height: 1.625;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--lotech-white, #ffffff);
  overflow: hidden;
  transition: all 500ms ease;
  z-index: 1;
}
@media (max-width: 575px) {
  .blog-sidebar__categories-box li a {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.blog-sidebar__categories-box li a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: var(--lotech-base, #00A6D9);
  transition: all 500ms ease;
}
.blog-sidebar__categories-box li a:hover {
  color: var(--lotech-white, #ffffff);
}
.blog-sidebar__categories-box li a:hover::after {
  left: 0;
  width: 100%;
}
.blog-sidebar__categories-box li a .blog-sidebar__categories__icon {
  display: inline-flex;
  font-size: 18px;
  color: RGBA(var(--lotech-text-rgb, 89, 97, 113), 0.4);
  transition: all 500ms ease;
}
.blog-sidebar__categories-box li a .blog-sidebar__categories__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.blog-sidebar__categories-box li a:hover .blog-sidebar__categories__icon {
  color: var(--lotech-white, #ffffff);
}
.blog-sidebar__social__link {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-sidebar__social__link a {
  width: 60px;
  height: 60px;
  position: relative;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--lotech-white, #ffffff);
  font-size: 19px;
  color: RGBA(var(--lotech-text-rgb, 89, 97, 113), 0.4);
  overflow: hidden;
  z-index: 1;
  transition: all 500ms ease;
}
@media (max-width: 575px) {
  .blog-sidebar__social__link a {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
}
.blog-sidebar__social__link a svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.blog-sidebar__social__link a::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--lotech-base, #00A6D9);
  border-radius: inherit;
  z-index: -1;
  transition: all 500ms ease;
}
.blog-sidebar__social__link a:hover {
  color: var(--lotech-white, #ffffff);
}
.blog-sidebar__social__link a:hover::after {
  width: 100%;
  height: 100%;
}
.blog-sidebar__instagram__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  grid-gap: 13px;
}
.blog-sidebar__instagram__gallery img {
  width: 100%;
  display: block;
}
.blog-sidebar__instagram__image {
  display: block;
  position: relative;
  -webkit-perspective: 1700px;
  -moz-perspective: 1700px;
  perspective: 1700px;
  -webkit-perspective-origin: 0 50%;
  -moz-perspective-origin: 0 50%;
  perspective-origin: 0 50%;
}
.blog-sidebar__instagram__overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  background-color: RGBA(var(--lotech-base-rgb, 73, 70, 236), 0.8);
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: rotateY(-90deg);
  -moz-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
  -webkit-transition: -webkit-transform 0.5s, opacity 0.1s 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.1s 0.3s;
  transition: transform 0.5s, opacity 0.1s 0.3s;
}
.blog-sidebar__instagram__image:hover .blog-sidebar__instagram__overlay {
  opacity: 1;
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transition: -webkit-transform 0.5s, opacity 0.1s;
  -moz-transition: -moz-transform 0.5s, opacity 0.1s;
  transition: transform 0.5s, opacity 0.1s;
}
.blog-sidebar__instagram__icon {
  display: inline-flex;
  font-size: 20px;
  color: var(--lotech-white, #ffffff);
  transition: all 500ms ease;
}
.blog-sidebar__instagram__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.blog-sidebar__instagram__btn {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 20px;
  background-color: var(--lotech-base, #00A6D9);
  font-size: 16px;
  color: var(--lotech-white, #ffffff);
  text-transform: capitalize;
  line-height: 1.625;
  transition: all 500ms ease;
}
.blog-sidebar__instagram__btn:hover {
  background-color: var(--lotech-white, #ffffff);
  color: var(--lotech-black, #0E0F11);
}
.blog-sidebar__instagram__btn__icon {
  display: inline-flex;
  font-size: 16px;
  color: var(--lotech-white, #ffffff);
  transition: all 500ms ease;
}
.blog-sidebar__instagram__btn__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.blog-sidebar__instagram__btn:hover .blog-sidebar__instagram__btn__icon {
  color: var(--lotech-black, #0E0F11);
}

.service-sidebar {
  position: relative;
}
.service-sidebar__single + .service-sidebar__single {
  margin-top: 30px;
}
.service-sidebar__nav {
  margin: 0;
  padding: 0;
}
.service-sidebar__nav li {
  position: relative;
  z-index: 1;
  font-size: 24px;
  font-weight: 500;
  color: var(--lotech-black, #0E0F11);
  text-transform: uppercase;
  background-color: var(--lotech-gray, #D9D9D9);
  padding: 19px 30px;
  transition: all 400ms ease;
}
.service-sidebar__nav li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  height: 17px;
  margin: auto;
  background-color: var(--lotech-base, #00A6D9);
  transition: all 400ms ease;
}
.service-sidebar__nav li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--lotech-base, #00A6D9);
  transform: scalex(0);
  transform-style: preserve-3d;
  transition: transform 0.4s ease-in-out;
  transform-origin: right center;
  z-index: -1;
}
.service-sidebar__nav li a {
  color: inherit;
  display: inline-block;
  transition: none;
}
.service-sidebar__nav li.current, .service-sidebar__nav li:hover {
  color: var(--lotech-white, #ffffff);
  border-color: var(--lotech-base, #00A6D9);
}
.service-sidebar__nav li.current::after, .service-sidebar__nav li:hover::after {
  background-color: var(--lotech-white, #ffffff);
}
.service-sidebar__nav li.current::before, .service-sidebar__nav li:hover::before {
  transform: scalex(1);
  transform-origin: left center;
}
.service-sidebar__nav li + li {
  border-top: 1px solid var(--lotech-border-color, #ECECEC);
}
.service-sidebar__contact {
  padding: 149px 25px 144px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.service-sidebar__contact::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--lotech-black-rgb, 14, 15, 17), 0.8);
}
.service-sidebar__contact__left-triangle {
  position: absolute;
  z-index: 1;
  left: 20px;
  top: 20px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 41px 47px 0 0;
  border-color: var(--lotech-base, #00A6D9) transparent transparent transparent;
  transform: rotate(0deg);
}
.service-sidebar__contact__right-triangle {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 20px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 0 41px 47px;
  border-color: transparent transparent var(--lotech-base, #00A6D9) transparent;
  transform: rotate(0deg);
}
.service-sidebar__contact__icon {
  position: relative;
  z-index: 1;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  width: 72px;
  height: 72px;
  background-color: var(--lotech-white, #ffffff);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 500ms ease;
  margin-bottom: 36px;
}
.service-sidebar__contact__icon i {
  color: var(--lotech-base, #00A6D9);
  font-size: 36px;
  transition: color 500ms ease, transform 500ms ease;
  transform: scale(1);
}
.service-sidebar__contact:hover .service-sidebar__contact__icon {
  background-color: var(--lotech-base, #00A6D9);
}
.service-sidebar__contact:hover .service-sidebar__contact__icon i {
  transform: scale(0.9);
  color: var(--lotech-white, #ffffff);
}
.service-sidebar__contact__number {
  position: relative;
  z-index: 1;
  color: var(--lotech-white, #ffffff);
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: -0.9px;
  margin-bottom: 0;
}
.service-sidebar__contact__number span {
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: -0.48px;
  font-weight: 600;
  display: block;
  line-height: 1;
  margin-bottom: 9px;
}
.service-sidebar__contact__number a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-sidebar__contact__number a:hover {
  background-size: 100% 1px;
}
.service-sidebar__contact__number a:hover {
  color: var(--lotech-base, #00A6D9);
}

.portfolio-details-sidebar__single {
  padding: 24px 30px 30px;
  background: linear-gradient(119.31deg, #F6EFFF 0%, #EBF6F8 100%);
}
@media (max-width: 375px) {
  .portfolio-details-sidebar__single {
    padding: 20px 26px 26px;
  }
}
.portfolio-details-sidebar__single + .portfolio-details-sidebar__single {
  margin-top: 30px;
}
.portfolio-details-sidebar__title {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.416;
}
.portfolio-details-sidebar__project {
  background: var(--lotech-base, #00A6D9);
}
.portfolio-details-sidebar__project .portfolio-details-sidebar__title {
  color: var(--lotech-white, #ffffff);
}
.portfolio-details-sidebar__project__list {
  margin: 0;
}
.portfolio-details-sidebar__project__list li + li {
  margin-top: 15px;
}
.portfolio-details-sidebar__project__title {
  display: block;
  margin-bottom: 5px;
  color: RGBA(var(--lotech-white-rgb, 255, 255, 255), 0.7);
  text-transform: capitalize;
}
.portfolio-details-sidebar__project__text {
  display: block;
  color: var(--lotech-white, #ffffff);
}
.portfolio-details-sidebar__project a.portfolio-details-sidebar__project__text {
  display: inline;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.portfolio-details-sidebar__project a.portfolio-details-sidebar__project__text:hover {
  background-size: 100% 1px;
}
.portfolio-details-sidebar__social {
  margin-top: 35px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.portfolio-details-sidebar__social a {
  width: 60px;
  height: 60px;
  position: relative;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: RGBA(var(--lotech-white-rgb, 255, 255, 255), 0.05);
  font-size: 19px;
  color: RGBA(var(--lotech-white-rgb, 255, 255, 255), 0.5);
  overflow: hidden;
  z-index: 1;
  transition: all 500ms ease;
}
@media (max-width: 575px) {
  .portfolio-details-sidebar__social a {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
}
.portfolio-details-sidebar__social a svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.portfolio-details-sidebar__social a::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--lotech-white, #ffffff);
  border-radius: inherit;
  z-index: -1;
  transition: all 500ms ease;
}
.portfolio-details-sidebar__social a:hover {
  color: var(--lotech-base, #00A6D9);
}
.portfolio-details-sidebar__social a:hover::after {
  width: 100%;
  height: 100%;
}
.portfolio-details-sidebar__contact__list {
  margin: 0;
}
.portfolio-details-sidebar__contact__list li + li {
  margin-top: 17px;
}
.portfolio-details-sidebar__contact__list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.portfolio-details-sidebar__contact__icon {
  display: inline-flex;
  flex-shrink: 0;
  font-size: 24px;
  color: var(--lotech-base, #00A6D9);
}
.portfolio-details-sidebar__contact__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.portfolio-details-sidebar__contact__title {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.625;
  text-transform: capitalize;
}
.portfolio-details-sidebar__contact__text {
  color: var(--lotech-text, #596171);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.portfolio-details-sidebar__contact__text:hover {
  background-size: 100% 1px;
}
.portfolio-details-sidebar__contact__text:hover {
  color: var(--lotech-base, #00A6D9);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.main-footer {
  position: relative;
  background-color: var(--lotech-black, #0E0F11);
  padding-top: 117px;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .main-footer {
    padding-top: 77px;
  }
}
.main-footer .container {
  position: relative;
}
.main-footer__bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #181A1D;
  border-radius: 10px 10px 0 0;
  padding: 22px 40px;
  margin-top: 82px;
}
@media (max-width: 767px) {
  .main-footer__bottom {
    margin-top: 42px;
  }
}
@media (max-width: 767px) {
  .main-footer__bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 20px;
    padding: 18px 20px;
  }
}
.main-footer__copyright {
  margin: 0;
  color: rgba(var(--lotech-white-rgb, 255, 255, 255), 0.7);
}
.main-footer__social {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-footer__social a {
  color: var(--lotech-white, #ffffff);
  font-size: 18px;
  opacity: 0.3;
}
.main-footer__social a:hover {
  opacity: 1;
}

.footer-widget {
  margin-bottom: 33px;
}
.footer-widget--about {
  position: relative;
  max-width: 416px;
}
.footer-widget__logo {
  display: inline-flex;
  margin-bottom: 19px;
}
.footer-widget__text {
  margin: 0;
  color: var(--lotech-border-color, #ECECEC);
  margin-bottom: 43px;
}
.footer-widget__title {
  font-size: 24px;
  font-weight: bold;
  color: var(--lotech-white, #ffffff);
  text-transform: capitalize;
  margin: 0;
  margin-top: 8px;
  margin-bottom: 16px;
}
.footer-widget__links {
  padding: 0;
  margin: 0 0 -13px;
}
.footer-widget__links li {
  text-transform: capitalize;
  position: relative;
  margin: 0 0 16px;
}
.footer-widget__links li a {
  color: rgba(var(--lotech-white-rgb, 255, 255, 255), 0.7);
  position: relative;
}
.footer-widget__links li a::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--lotech-base, #00A6D9);
  border-radius: 50%;
  transition: all 400ms ease;
  visibility: hidden;
  opacity: 0;
}
.footer-widget__links li a:hover {
  color: var(--lotech-base, #00A6D9);
  padding-left: 16px;
}
.footer-widget__links li a:hover::before {
  visibility: visible;
  opacity: 1;
}
.footer-widget__newsletter {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-widget__newsletter input[type=text] {
  width: 100%;
  display: block;
  outline: none;
  border: none;
  border: 1px solid rgba(var(--lotech-white-rgb, 255, 255, 255), 0.1);
  height: 50px;
  background-color: transparent;
  color: rgba(var(--lotech-text-rgb, 89, 97, 113), 0.8);
  font-size: 14px;
  font-weight: 400;
  padding-left: 20px;
  padding-right: 20px;
  transition: all 500ms ease;
}
.footer-widget__newsletter input[type=text]:focus {
  color: var(--lotech-text, #596171);
}
.footer-widget__newsletter .lotech-btn {
  position: relative;
  flex-shrink: 0;
  padding: 12px 13.5px;
}
.footer-widget__newsletter .lotech-btn:hover {
  background-color: var(--lotech-white, #ffffff);
  color: var(--lotech-black, #0E0F11);
}
.footer-widget__newsletter .lotech-btn::after {
  background-color: var(--lotech-white, #ffffff);
}
.footer-widget__newsletter-text {
  font-size: 14px;
  color: rgba(var(--lotech-white-rgb, 255, 255, 255), 0.7);
  margin: 24px 0 0;
  position: relative;
}
.footer-widget__newsletter-text::before {
  width: 6px;
  height: 6px;
  content: "";
  position: relative;
  top: -1px;
  background-color: var(--lotech-white, #ffffff);
  border-radius: 50%;
  margin-right: 7px;
  background-color: rgba(var(--lotech-white-rgb, 255, 255, 255), 0.7);
  display: inline-block;
}
.footer-widget__newsletter-text span {
  color: var(--lotech-white, #ffffff);
}
.footer-widget--contact {
  position: relative;
}
.footer-widget__info {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-widget__info li {
  font-size: 16px;
  line-height: 26px;
  color: rgba(var(--lotech-white-rgb, 255, 255, 255), 0.7);
  position: relative;
  padding-left: 25px;
  margin: 0 0 16px;
}
.footer-widget__info li i {
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 12px;
  transition: all 300ms ease;
}
.footer-widget__info li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.footer-widget__info li a:hover {
  background-size: 100% 1px;
}
.footer-widget__info li a:hover {
  color: var(--lotech-base, #00A6D9);
}
.footer-widget__info li a + a {
  margin-top: 10px;
}
.footer-widget__instagram {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.footer-widget__instagram a {
  width: 95px;
  height: 90px;
  display: block;
  position: relative;
}
.footer-widget__instagram a::after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  content: "";
  width: 40px;
  height: 40px;
  background-color: var(--lotech-base, #00A6D9);
  border-radius: 50%;
  font-size: 14px;
  color: var(--lotech-white, #ffffff);
  content: "\f16d";
  font-family: "Font Awesome 5 Brands";
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
  transition: 0.3s ease-in-out;
}
.footer-widget__instagram a:hover::after {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.footer-widget__instagram a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-widget__social {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 40px;
}
.footer-widget__social__title {
  margin: 0 10px 0 0;
  color: var(--lotech-white, #ffffff);
}
.footer-widget__social a {
  width: 40px;
  height: 40px;
  font-size: 14px;
  color: var(--lotech-white, #ffffff);
  background-color: var(--lotech-black3, #18191D);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
}
.footer-widget__social a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.footer-widget__social a:hover {
  background-color: var(--lotech-base, #00A6D9);
  color: var(--lotech-white, #ffffff);
}
.footer-widget__social a:hover i {
  animation: iconTranslateY 0.4s forwards;
}

.main-footer-two {
  position: relative;
  background-color: var(--lotech-black, #0E0F11);
  padding-top: 237px;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .main-footer-two {
    padding-top: 210px;
  }
}
.main-footer-two .container {
  position: relative;
}
.main-footer-two .footer-widget--about {
  max-width: 307px;
}
.main-footer-two .footer-widget__text {
  margin-bottom: 23px;
}
.main-footer-two .footer-widget__newsletter {
  gap: 0;
}
.main-footer-two .footer-widget__newsletter input[type=text] {
  border: none;
  background-color: var(--lotech-black3, #18191D);
}
.main-footer-two .footer-widget__newsletter .lotech-btn {
  padding: 12px 0;
  font-size: 26px;
  width: 55px;
  height: 50px;
  display: flex;
  align-content: center;
  justify-content: center;
  line-height: 1;
}
.main-footer-two .footer-widget__links li a:hover {
  padding-left: 32px;
}
.main-footer-two .footer-widget__links li a::before {
  left: 13px;
}
.main-footer-two .footer-widget__links li a::after {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 13px;
  height: 1px;
  content: "";
  background-color: var(--lotech-base, #00A6D9);
  transition: all 400ms ease;
  visibility: hidden;
  opacity: 0;
}
.main-footer-two .footer-widget__links li a:hover:after {
  visibility: visible;
  opacity: 1;
}
.main-footer-two .footer-widget__info li {
  padding-left: 58px;
}
.main-footer-two .footer-widget__info li i {
  background-color: var(--lotech-black3, #18191D);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--lotech-white, #ffffff);
  top: 6px;
}
.main-footer-two .footer-widget__info li:hover i {
  background-color: var(--lotech-base, #00A6D9);
}
.main-footer-two__border {
  border-top: 1px solid rgba(var(--lotech-white-rgb, 255, 255, 255), 0.1);
  margin-top: 86px;
}
@media (max-width: 767px) {
  .main-footer-two__border {
    margin-top: 45px;
  }
}
.main-footer-two__bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
}
@media (max-width: 767px) {
  .main-footer-two__bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 20px;
    padding: 22px 0;
  }
}
.main-footer-two__copyright {
  margin: 0;
  color: rgba(var(--lotech-white-rgb, 255, 255, 255), 0.7);
}
.main-footer-two__nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  gap: 30px;
}
@media (max-width: 991px) {
  .main-footer-two__nav {
    gap: 10px;
  }
}
.main-footer-two__nav li {
  text-transform: capitalize;
  position: relative;
  margin: 0;
}
.main-footer-two__nav li a {
  color: rgba(var(--lotech-white-rgb, 255, 255, 255), 0.7);
  position: relative;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.main-footer-two__nav li a:hover {
  background-size: 100% 1px;
}
.main-footer-two__nav li a:hover {
  color: var(--lotech-base, #00A6D9);
}

.main-footer-three {
  position: relative;
  background-color: var(--lotech-black, #0E0F11);
  padding-top: 280px;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .main-footer-three {
    padding-top: 220px;
  }
}
.main-footer-three .container {
  position: relative;
}
.main-footer-three .footer-widget--about {
  max-width: 100%;
  border-right: 1px solid rgba(var(--lotech-white-rgb, 255, 255, 255), 0.1);
  margin-right: 30px;
  padding-bottom: 47px;
}
@media (max-width: 1399px) {
  .main-footer-three .footer-widget--about {
    margin-right: 5px;
  }
}
@media (max-width: 1199px) {
  .main-footer-three .footer-widget--about {
    margin-right: 0;
    border: none;
    padding-bottom: 0;
  }
}
.main-footer-three .footer-widget__text {
  margin-bottom: 23px;
  color: rgba(var(--lotech-white-rgb, 255, 255, 255), 0.7);
}
.main-footer-three .footer-widget__links li a:hover {
  padding-left: 28px;
}
.main-footer-three .footer-widget__links li a::before {
  left: 13px;
}
.main-footer-three .footer-widget__links li a::after {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 13px;
  height: 1px;
  content: "";
  background-color: var(--lotech-base, #00A6D9);
  transition: all 400ms ease;
  visibility: hidden;
  opacity: 0;
}
.main-footer-three .footer-widget__links li a:hover:after {
  visibility: visible;
  opacity: 1;
}
.main-footer-three .footer-widget--contact {
  border-right: 1px solid rgba(var(--lotech-white-rgb, 255, 255, 255), 0.1);
  margin-right: 30px;
}
@media (max-width: 1399px) {
  .main-footer-three .footer-widget--contact {
    margin-right: 1px;
  }
}
@media (max-width: 1199px) {
  .main-footer-three .footer-widget--contact {
    margin-right: 0;
    border: none;
  }
}
.main-footer-three .footer-widget__info li {
  padding-left: 45px;
}
.main-footer-three .footer-widget__info li i {
  background-color: var(--lotech-black3, #18191D);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--lotech-white, #ffffff);
  top: -2px;
  margin-right: 0;
} 
 
.main-footer-three .footer-widget__info li:hover i {
  background-color: var(--lotech-base, #00A6D9);
}
.main-footer-three .footer-widget--links {
  border-right: 1px solid rgba(var(--lotech-white-rgb, 255, 255, 255), 0.1);
  margin-right: 30px;
}
@media (max-width: 1399px) {
  .main-footer-three .footer-widget--links {
    margin-right: 5px;
  }
}
@media (max-width: 1199px) {
  .main-footer-three .footer-widget--links {
    margin-right: 0;
    border: none;
  }
}
.main-footer-three .footer-widget__newsletter {
  gap: 0;
  display: block;
}
.main-footer-three .footer-widget__newsletter .footer-widget__text {
  margin: 15px 0 22px;
}
.main-footer-three .footer-widget__newsletter input[type=text] {
  border: none;
  background-color: var(--lotech-black3, #18191D);
}
.main-footer-three .footer-widget__newsletter .lotech-btn {
  padding: 17px 0;
  font-size: 16px;
  width: 112px;
  height: 50px;
  font-weight: 700;
  font-family: var(--lotech-heading-font, "Yantramanav", serif);
  text-transform: capitalize;
  display: flex;
  align-content: center;
  justify-content: center;
  line-height: 1;
}
.main-footer-three__bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-footer-three__bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.main-footer-three__copyright {
  color: #ffffff;
  margin: 0 25px;
  font-size: 15px;
}

.main-footer-three__bottom-links {
  color: #ffffff;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-right: 25px;
}

.keradion-link {
  color: #4188DE !important; /* Different color for Keradion Technology */
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.keradion-link:hover {
  color: #00A6D9 !important;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-footer-three__bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .main-footer-three__copyright,
  .main-footer-three__bottom-links {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .main-footer-three__bottom {
    padding: 15px 0;
  }
  
  .main-footer-three__copyright,
  .main-footer-three__bottom-links {
    font-size: 12px;
  }
}
/* .main-footer-three__bottom {
  position: relative;
  background-color: var(--lotech-black3, #18191D);
  text-align: center;
  padding: 17px 0;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .main-footer-three__bottom {
    margin-top: 45px;
  }
}
.main-footer-three__copyright {
  margin: 0;
  color: rgba(var(--lotech-white-rgb, 255, 255, 255), 0.7);
} */

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/
.hero-banner-one {
  position: relative;
  background-image: linear-gradient(124deg, #f6efff 0%, #ebf6f8 100%);
  padding: 261px 0 425px;
  margin-bottom: -325px;
}
@media (max-width: 767px) {
  .hero-banner-one {
    padding: 201px 0 390px;
  }
}
.hero-banner-one__shape {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0.3;
  mix-blend-mode: multiply;
}
.hero-banner-one__content {
  position: relative;
}
.hero-banner-one__title {
  font-size: 96px;
  font-weight: 500;
  line-height: 106px;
  text-transform: capitalize;
  margin: 0 0 19px;
}
@media (max-width: 1300px) {
  .hero-banner-one__title {
    font-size: 90px;
    line-height: 102px;
  }
}
@media (max-width: 1199px) {
  .hero-banner-one__title {
    font-size: 70px;
    line-height: 80px;
    margin-bottom: 12px;
  }
}
@media (max-width: 767px) {
  .hero-banner-one__title {
    font-size: 50px;
    line-height: 58px;
  }
}
.hero-banner-one__title span {
  color: var(--lotech-base, #00A6D9);
}
.hero-banner-one__text {
  font-size: 24px;
  line-height: 34px;
  max-width: 750px;
  margin: 0 0 30px;
}
@media (max-width: 767px) {
  .hero-banner-one__text {
    font-size: 20px;
    line-height: 30px;
  }
}
.hero-banner-one__circle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  width: 148px;
  height: 148px;
  border: 1px solid rgba(var(--lotech-base-rgb, 73, 70, 236), 0.1);
  border-radius: 50%;
}
@media (max-width: 767px) {
  .hero-banner-one__circle {
    margin: 40px 0 0;
  }
}
.hero-banner-one__circle__logo {
  width: 74px;
  height: 74px;
  border: 1px solid rgba(var(--lotech-base-rgb, 73, 70, 236), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
}
.hero-banner-one__circle__logo img {
  width: 28px;
  height: 28px;
}
.hero-banner-one__circle .curved-circle {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 125px !important;
  height: 125px !important;
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  animation: textRotate 15s linear 0s forwards infinite alternate;
}
.hero-banner-one__circle .curved-circle .curved-circle--item {
  width: 125px !important;
  height: 125px !important;
}
.hero-banner-one__circle .curved-circle span {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  color: var(--lotech-black, #0E0F11);
  letter-spacing: 1.5px;
}

.hero-banner-two {
  position: relative;
  padding: 260px 0 120px;
  background-color: var(--lotech-base, #00A6D9);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1920 1007" xmlns="http://www.w3.org/2000/svg"><path d="M1920 1006.41V0H0V1007C669 947.317 935 942.237 1920 1006.41Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1920 1007" xmlns="http://www.w3.org/2000/svg"><path d="M1920 1006.41V0H0V1007C669 947.317 935 942.237 1920 1006.41Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center bottom;
  mask-position: center bottom;
  -webkit-mask-size: cover;
  mask-size: cover;
}
@media (max-width: 1199px) {
  .hero-banner-two {
    padding: 200px 0 120px;
  }
}
@media (max-width: 767px) {
  .hero-banner-two {
    padding: 130px 0 120px;
  }
}
.hero-banner-two__shape {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-banner-two__shape-two {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: left top;
  background-repeat: no-repeat;
}
.hero-banner-two__content {
  position: relative;
}
.hero-banner-two__sub-title {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: var(--lotech-white, #ffffff);
  text-transform: uppercase;
  background-color: rgba(var(--lotech-white-rgb, 255, 255, 255), 0.2);
  border-radius: 60px;
  line-height: 1;
  padding: 20px 32px;
  margin: 0 0 22px;
  position: relative;
}
@media (max-width: 500px) {
  .hero-banner-two__sub-title {
    padding: 20px 20px;
  }
}
.hero-banner-two__sub-title span {
  width: 172px;
  height: 8px;
  display: inline-block;
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
  animation: sbwidths 4s linear infinite;
  background: var(--lotech-white, #ffffff);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 172 8" xmlns="http://www.w3.org/2000/svg"><path d="M171.697 4.35355C171.892 4.15829 171.892 3.84171 171.697 3.64645L168.515 0.464466C168.32 0.269204 168.003 0.269204 167.808 0.464466C167.612 0.659728 167.612 0.976311 167.808 1.17157L170.636 4L167.808 6.82843C167.612 7.02369 167.612 7.34027 167.808 7.53553C168.003 7.7308 168.32 7.7308 168.515 7.53553L171.697 4.35355ZM1.34326 3.5C1.06712 3.5 0.843262 3.72386 0.843262 4C0.843262 4.27614 1.06712 4.5 1.34326 4.5V3.5ZM171.343 3.5L1.34326 3.5V4.5L171.343 4.5V3.5Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 172 8" xmlns="http://www.w3.org/2000/svg"><path d="M171.697 4.35355C171.892 4.15829 171.892 3.84171 171.697 3.64645L168.515 0.464466C168.32 0.269204 168.003 0.269204 167.808 0.464466C167.612 0.659728 167.612 0.976311 167.808 1.17157L170.636 4L167.808 6.82843C167.612 7.02369 167.612 7.34027 167.808 7.53553C168.003 7.7308 168.32 7.7308 168.515 7.53553L171.697 4.35355ZM1.34326 3.5C1.06712 3.5 0.843262 3.72386 0.843262 4C0.843262 4.27614 1.06712 4.5 1.34326 4.5V3.5ZM171.343 3.5L1.34326 3.5V4.5L171.343 4.5V3.5Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center right;
  mask-position: center right;
  -webkit-mask-size: cover;
  mask-size: cover;
}
@media (max-width: 500px) {
  .hero-banner-two__sub-title span {
    width: 90px;
  }
}
@keyframes sbwidths {
  0% {
    width: 10%;
  }
  100% {
    width: 172px;
    @media (max-width: 500px) {
      .hero-banner-two__sub-title {
        width: 90px;
      }
    }
  }
}
.hero-banner-two__title {
  font-size: 128px;
  font-weight: 900;
  line-height: 118px;
  color: var(--lotech-white, #ffffff);
  text-transform: capitalize;
  margin: 0 0 1px;
}
@media (max-width: 1300px) {
  .hero-banner-two__title {
    font-size: 90px;
    line-height: 102px;
  }
}
@media (max-width: 1199px) {
  .hero-banner-two__title {
    font-size: 70px;
    line-height: 80px;
  }
}
@media (max-width: 767px) {
  .hero-banner-two__title {
    font-size: 50px;
    line-height: 58px;
  }
}
.hero-banner-two__title span {
  color: var(--lotech-base, #00A6D9);
}
.hero-banner-two__text {
  font-size: 24px;
  line-height: 34px;
  color: RGBA(var(--lotech-white-rgb, 255, 255, 255), 0.7);
  margin: 0 0 43px;
}
@media (max-width: 767px) {
  .hero-banner-two__text {
    font-size: 20px;
    line-height: 30px;
  }
}
.hero-banner-two__btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 767px) {
  .hero-banner-two__btn {
    flex-direction: column;
    align-items: flex-start;
  }
}
.hero-banner-two__btn .lotech-btn {
  background-color: transparent;
  border: 1px solid var(--lotech-white, #ffffff);
  border-radius: 60px;
  padding: 16px 45px;
}
.hero-banner-two__btn .lotech-btn:hover {
  border-color: var(--lotech-black, #0E0F11);
}
.hero-banner-two__btn .video-popup {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--lotech-white, #ffffff);
  font-family: var(--lotech-heading-font, "Yantramanav", serif);
  font-weight: 700;
  font-size: 16px;
  transition: all 500ms ease;
}
.hero-banner-two__btn .video-popup i {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid rgba(var(--lotech-white-rgb, 255, 255, 255), 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin: auto;
  transition: all 500ms ease;
  position: relative;
}
.hero-banner-two__btn .video-popup:hover {
  color: var(--lotech-black, #0E0F11);
}
.hero-banner-two__btn .video-popup:hover i {
  border-color: var(--lotech-black, #0E0F11);
  color: var(--lotech-black, #0E0F11);
}
.hero-banner-two__image {
  position: relative;
  z-index: 2;
  text-align: right;
  padding-right: 39px;
}
@media (max-width: 1199px) {
  .hero-banner-two__image {
    padding-right: 0px;
  }
}
@media (max-width: 991px) {
  .hero-banner-two__image {
    margin-top: 45px;
    max-width: 512px;
    padding-right: 39px;
  }
}
@media (max-width: 767px) {
  .hero-banner-two__image {
    padding-right: 0px;
  }
}
.hero-banner-two__image__bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  z-index: -1;
}
.hero-banner-two__image img {
  max-width: 100%;
  height: auto;
  animation: movebounce2 3s linear 0s infinite;
}
@media (min-width: 1400px) {
  .hero-banner-two__image {
    margin-left: 14px;
  }
}

.slider-one {
  position: relative;
  /* margin-bottom: 150px;
  top: 150px; */
}
/* @media (max-width: 1199px) {
  .slider-one {
    margin-bottom: 86px;
    top: 86px;
  }
} */
.slider-one__carousel {
  position: relative;
  width: 100%;
}
.slider-one__carousel.owl-carousel .owl-nav {
  margin: 0;
  padding: 0;
}
@media (max-width: 1300px) {
  .slider-one__carousel.owl-carousel .owl-nav {
    display: none;
  }
}
.slider-one__carousel.owl-carousel .owl-nav .owl-prev {
  position: absolute;
  margin: auto 0;
  padding: 0;
  left: 50px;
  top: 43%;
  transform: translateY(-50%) rotate(90deg);
  background-color: transparent;
  border: none;
  outline: none;
  z-index: 1;
  font-size: 26px;
  color: var(--lotech-white, #ffffff);
  line-height: 1;
  transition: all 0.4s ease;
}
.slider-one__carousel.owl-carousel .owl-nav .owl-prev:hover {
  color: var(--lotech-base, #00A6D9);
}
.slider-one__carousel.owl-carousel .owl-nav .owl-next {
  position: absolute;
  margin: auto 0;
  padding: 0;
  left: 50px;
  top: 57%;
  transform: translateY(-50%) rotate(90deg);
  background-color: transparent;
  border: none;
  outline: none;
  z-index: 1;
  font-size: 26px;
  color: var(--lotech-white, #ffffff);
  line-height: 1;
  transition: all 0.4s ease;
}
.slider-one__carousel.owl-carousel .owl-nav .owl-next:hover {
  color: var(--lotech-base, #00A6D9);
}
.slider-one__carousel .owl-dots {
  left: 60px;
  margin: auto 0;
  position: absolute;
  text-align: left;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
}
@media (max-width: 1300px) {
  .slider-one__carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: auto;
    left: 0;
    top: auto;
    bottom: 40px;
    width: 100%;
  }
}
.slider-one__carousel .owl-dots .owl-dot {
  display: block;
  margin: 10px 0;
}
@media (max-width: 1300px) {
  .slider-one__carousel .owl-dots .owl-dot {
    margin: 0 5px;
  }
}
.slider-one__carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
  background-color: var(--lotech-white, #ffffff);
  border: none;
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.slider-one__carousel .owl-dots .owl-dot:hover span,
.slider-one__carousel .owl-dots .owl-dot.active span {
  background-color: var(--lotech-base, #00A6D9);
}
.slider-one__item {
  background-color: var(--lotech-black, #0E0F11);
  position: relative;
  z-index: 3;
  padding-top: 158px;
  padding-bottom: 157px;
}
@media (max-width: 767px) {
  .slider-one__item {
    padding-top: 110px;
    padding-bottom: 127px;
  }
}
.slider-one__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translatex(50%) scalex(2);
  filter: blur(10px);
  overflow: hidden;
}
.slider-one__bg::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--lotech-black-rgb, 14, 15, 17), 0.7);
}
.slider-one__shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(-100%) translateX(-100%);
}
@media (max-width: 1400px) {
  .slider-one__shape {
    display: none;
  }
}
.slider-one__content {
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.slider-one__title {
  color: var(--lotech-white, #ffffff);
  font-size: 96px;
  line-height: 106px;
  font-weight: 700;
  text-transform: capitalize;
  overflow: hidden;
  margin: 0 0 15px;
  opacity: 0;
  transition: transform 1100ms ease, opacity 1100ms ease;
  transform: scale(1.2) translateY(200px);
}
@media (max-width: 991px) {
  .slider-one__title {
    font-size: 80px;
    line-height: 90px;
  }
}
@media (max-width: 767px) {
  .slider-one__title {
    font-size: 42px;
    line-height: 55px;
  }
}
.slider-one__text {
  color: var(--lotech-border-color, #ECECEC);
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  overflow: hidden;
  margin: 0 0 42px;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: scale(1.2) translateY(200px);
}
@media (max-width: 991px) {
  .slider-one__text br {
    display: none;
  }
}
@media (max-width: 767px) {
  .slider-one__text {
    font-size: 18px;
    line-height: 30px;
  }
}
.slider-one__btn {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 5;
  gap: 15px;
  overflow: hidden;
  opacity: 0;
  transition: transform 1300ms ease, opacity 1300ms ease;
  transform: scale(1.2) translateY(200px);
}
.slider-one__layer {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 43%;
  overflow: hidden;
  opacity: 0;
  display: inline-block;
  padding-left: 29px;
  background-color: var(--lotech-base, #00A6D9);
  clip-path: polygon(0 0, 100% 0, 100% 63%, 46% 100%);
  transition: transform 1000ms ease, opacity 1000ms ease;
  transition-delay: 0s, 0s;
  transform: translatey(-50%) scaley(2);
  filter: blur(10px);
}
@media (max-width: 1199px) {
  .slider-one__layer {
    display: none;
  }
}
.slider-one__layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 64%, 44% 100%);
}
.slider-one .active .slider-one__bg {
  opacity: 1;
  transform: translatex(0) scalex(1);
  filter: blur(0);
  transition: all 1000ms ease;
}
.slider-one .active .slider-one__shape {
  opacity: 1;
  transform: translatex(0) translateY(0);
  transition: all 1200ms ease;
}
.slider-one .active .slider-one__title {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 1300ms;
}
.slider-one .active .slider-one__text {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 1500ms;
}
.slider-one .active .slider-one__btn {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 1700ms;
}
.slider-one .active .slider-one__layer {
  opacity: 1;
  transform: translatey(0) scaley(1);
  filter: blur(0);
  transition-delay: 1900ms;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-one {
  position: relative;
  padding: 0 0 120px;
}
@media (max-width: 767px) {
  .about-one {
    padding: 0 0 80px;
  }
}
.about-one--page {
  padding: 70px 0px 0px;
}
@media (max-width: 767px) {
  .about-one--page {
    padding: 40px 0px 0px;
  }
}
.about-one__content {
  position: relative;
  padding: 0;
}
.about-one__content .sec-title {
  padding-bottom: 20px;
}
.about-one__content__btn {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 43px 0 0;
}
@media (max-width: 574px) {
  .about-one__content__btn {
    flex-direction: column;
    align-items: flex-start;
  }
}
.about-one__content__author {
  position: relative;
  display: flex;
  align-items: center;
  gap: 25px;
}
.about-one__content__author img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 400ms ease;
}
.about-one__content__author__name {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 3px;
}
.about-one__content__author__text {
  margin: 0;
}
.about-one__box {
  position: relative;
  padding: 30px 0 0 41px;
  margin: 0 0 10px;
}
.about-one__box__icon {
  position: absolute;
  left: 0;
  top: 32px;
  width: 24px;
  height: 24px;
  background-color: var(--lotech-base, #00A6D9);
  color: var(--lotech-white, #ffffff);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-one__box__title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 10px;
}
.about-one__box__text {
  margin: 0;
}
.about-one__image {
  position: relative;
  z-index: 2;
  padding: 100px 50px 0;
  display: inline-block;
}
@media (max-width: 1199px) {
  .about-one__image {
    margin: 0;
  }
}
.about-one__image img {
  max-width: 100%;
  height: auto;
}
.about-one__image__experiance {
  position: absolute;
  z-index: 1;
  left: -80px;
  bottom: 40px;
  background-color: var(--lotech-black, #0E0F11);
  max-width: 170px;
  padding: 3px 15px 15px;
  text-align: left;
}
@media (max-width: 1199px) {
  .about-one__image__experiance {
    left: 0;
    bottom: 0;
  }
}
.about-one__image__experiance__count {
  display: flex;
  align-items: center;
  color: var(--lotech-white, #ffffff);
  font-weight: 700;
  font-size: 40px;
  margin: 0;
}
.about-one__image__experiance__text {
  margin: 0;
  padding: 0 0 0 18px;
  color: rgba(var(--lotech-white-rgb, 255, 255, 255), 0.6);
  font-family: var(--lotech-heading-font, "Yantramanav", serif);
  position: relative;
}
.about-one__image__experiance__text::before {
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 36px;
  content: "";
  background-color: var(--lotech-base, #00A6D9);
}
@media (max-width: 1199px) {
  .about-one .text-end {
    text-align: left !important;
  }
}

.about-two {
  position: relative;
  padding: 0 0 60px;
}
@media (max-width: 767px) {
  .about-two {
    padding: 0 0 60px;
  }
}
.about-two__image {
  position: relative;
  z-index: 1;
  max-width: 565px;
}
.about-two__image::after {
  position: absolute;
  left: 180px;
  top: 10px;
  width: 363px;
  height: 363px;
  content: "";
  border: 30px solid var(--lotech-base, #00A6D9);
  z-index: -1;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .about-two__image::after {
    display: none;
  }
}
.about-two__image img {
  max-width: 100%;
  height: auto;
}
.about-two__image__two {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .about-two__image__two {
    right: 25px;
  }
}
@media (max-width: 767px) {
  .about-two__image__two {
    display: none;
  }
}
.about-two__image__two img {
  max-width: 100%;
  height: auto;
  border: 5px solid var(--lotech-white, #ffffff);
  transform: rotate(12deg);
}
.about-two__content {
  position: relative;
  padding: 0;
}
@media (max-width: 1199px) {
  .about-two__content {
    padding: 35px 0 0;
  }
}
.about-two__content .sec-title {
  padding-bottom: 28px;
}
.about-two__content__heading {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 0 15px;
}
.about-two__content__heading span {
  color: var(--lotech-base, #00A6D9);
}
.about-two__content__text {
  margin: 0 0 19px;
}
@media (min-width: 1400px) {
  .about-two__content__text {
    margin-right: 48px;
  }
}
.about-two__content__list {
  margin: 0 0 44px;
  padding: 0;
  list-style: none;
  gap: 10px;
}
.about-two__content__list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: capitalize;
  font-weight: 700;
  color: var(--lotech-black, #0E0F11);
  font-family: var(--lotech-heading-font, "Yantramanav", serif);
  margin: 0 0 16px;
}
.about-two__content__list li i {
  line-height: 1;
  position: relative;
  display: inline-block;
  transition: all 0.6s ease;
}
.about-two__content__list li:hover i {
  color: var(--lotech-base, #00A6D9);
  transform: rotateY(180deg);
}
.about-two__content__btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 400px) {
  .about-two__content__btn {
    gap: 10px;
  }
}
.about-two__content__author {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  height: 58px;
}
.about-two__content__author > img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
}
.about-two__content__author__content {
  position: relative;
}
.about-two__content__author__content img {
  height: 37px;
}
.about-two__content__author__text {
  margin: 4px 0 0;
}
.about-two--package {
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .about-two--package {
    padding-bottom: 80px;
  }
}

.about-three {
  position: relative;
  background-image: linear-gradient(119deg, #f6efff 0%, #ebf6f8 100%);
  padding: 80px 100px 20px ;

}
@media (max-width: 767px) {
  .about-three {
    padding: 50px 0;
  }
}
.about-three__shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-three__content {
  position: relative;
  padding: 0;
}
@media (min-width: 1400px) {
  .about-three__content {
    max-width: 731px;
  }
}
@media (max-width: 1199px) {
  .about-three__content {
    margin: 0 0 40px;
  }
}
.about-three__content .sec-title {
  padding-bottom: 7px;
}
.about-three__content__text {
  color: var(--lotech-black, #0E0F11);
  font-size: 22px;
  line-height: 24px;
  font-weight: 450;
  margin: 0 0 35px;
}
@media (max-width: 767px) {
  .about-three__content__text {
    font-size: 18px;
    line-height: 28px;
  }
}
.about-three__content__list {
  margin: 30px 0 40px;
  padding: 0;
  list-style: none;
  gap: 10px;
}
@media (max-width: 767px) {
  .about-three__content__list {
    margin-top: 10px;
  }
}
.about-three__content__list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: capitalize;
  font-weight: 700;
  color: var(--lotech-black, #0E0F11);
  font-family: var(--lotech-heading-font, "Yantramanav", serif);
  margin: 0 0 16px;
}
.about-three__content__list li i {
  line-height: 1;
  position: relative;
  display: inline-block;
  transition: all 0.6s ease;
}
.about-three__content__list li:hover i {
  color: var(--lotech-base, #00A6D9);
  transform: rotateY(180deg);
}
.about-three__content__btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 500px) {
  .about-three__content__btn {
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.about-three__box {
  position: relative;
  max-width: 220px;
}
@media (max-width: 767px) {
  .about-three__box {
    margin-bottom: 30px;
  }
}
.about-three__box__top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}
.about-three__box__icon {
  width: 49px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: var(--lotech-black, #0E0F11);
  border-radius: 50%;
  color: var(--lotech-white, #ffffff);
  font-size: 26px;
  overflow: hidden;
}
.about-three__box__icon i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.about-three__box:hover .about-three__box__icon {
  background-color: var(--lotech-base, #00A6D9);
}
.about-three__box:hover .about-three__box__icon i {
  animation: iconTranslateX 0.4s forwards;
}
.about-three__box__title {
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  max-width: 130px;
  margin: 0;
}
.about-three__box__text {
  margin: 0;
}
.about-three__info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-three__info__icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--lotech-base, #00A6D9);
  background-color: var(--lotech-white, #ffffff);
  transition: all 400ms ease;
}
.about-three__info:hover .about-three__info__icon {
  background-color: var(--lotech-base, #00A6D9);
  color: var(--lotech-white, #ffffff);
}
.about-three__info__title {
  margin: 0 0 8px;
  color: var(--lotech-black, #0E0F11);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.about-three__info__number {
  font-size: 24px;
  font-weight: 700;
  color: var(--lotech-base, #00A6D9);
  margin: 0;
}
.about-three__info__number a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.about-three__info__number a:hover {
  background-size: 100% 1px;
}
.about-three__info__number a:hover {
  color: var(--lotech-base, #00A6D9);
}
.about-three__image {
  position: relative;
  margin: 0 0 0 0;
}
@media (max-width: 1199px) {
  .about-three__image {
    margin-left: 48px;
  }
}
@media (max-width: 991px) {
  .about-three__image {
    margin-left: 38px;
  }
}
@media (max-width: 767px) {
  .about-three__image {
    margin: 0;
  }
}
.about-three__image img {
  min-height: 490px;
  object-fit: cover;
  max-width: 100%;
}
.about-three__circle {
  position: absolute;
  left: -72px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  width: 148px;
  height: 148px;
  background-color: var(--lotech-base, #00A6D9);
  border-radius: 50%;
}
@media (max-width: 1199px) {
  .about-three__circle {
    left: 0;
  }
}
.about-three__circle .count-box {
  width: 74px;
  height: 74px;
  background-color: var(--lotech-white, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  font-family: var(--lotech-heading-font, "Yantramanav", serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--lotech-base, #00A6D9);
}
.about-three__circle .count-box img {
  width: 28px;
  height: 28px;
}
.about-three__circle .curved-circle {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 125px !important;
  height: 125px !important;
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  animation: textRotate 15s linear 0s forwards infinite alternate;
}
.about-three__circle .curved-circle .curved-circle--item {
  width: 125px !important;
  height: 125px !important;
}
.about-three__circle .curved-circle span {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  color: var(--lotech-white, #ffffff);
  letter-spacing: 5.5px;
}
/*---------------------------------------------------------------
# Future Plan
---------------------------------------------------------------*/
/* === Organizational Structure Section === */
.org-structure-section {
  padding: 60px 0 10px;
  background: #f8f9fa;
}

.org-structure__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
  object-fit: cover;
}

.org-structure__image img:hover {
  transform: scale(1.035);
}

.org-structure__content {
  padding: 0 15px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.org-structure__text {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #444;
  margin-bottom: 74px;
  text-align: justify;
}

.org-structure__btn {
  align-self: flex-start;
  background: linear-gradient(135deg, #00A6D9 0%, #4188DE 100%);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 166, 217, 0.3);
}

.org-structure__btn:hover {
  background: linear-gradient(135deg, #0088b3 0%, #2a6cc7 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 166, 217, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
  .org-structure__content {
    padding: 0 15px;
  }
}

@media (max-width: 767px) {
  .org-structure-section {
    padding: 40px 0 10px;
  }
  .org-structure__content {
    text-align: center;
  }
  .org-structure__text {
    text-align: center;
  }
  .org-structure__btn {
    align-self: center;
  }
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-one {
  position: relative;
  z-index: 2;
  margin-bottom: -120px;
}
.contact-one__bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: calc(100% - 115px);
  z-index: -1;
  background-image: linear-gradient(119deg, #f6efff 0%, #ebf6f8 100%);
  clip-path: polygon(0 0, 100% 0, 89% 100%, 0 100%);
}
@media (max-width: 1199px) {
  .contact-one__bg {
    width: 100%;
    clip-path: none;
  }
}
.contact-one__wrapper {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .contact-one__wrapper {
    padding: 80px 0;
  }
}
.contact-one__wrapper .sec-title {
  padding-bottom: 5px;
}
.contact-one__wrapper__text {
  font-size: 24px;
  line-height: 34px;
  margin: 0 0 46px;
}
@media (max-width: 767px) {
  .contact-one__wrapper__text {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 32px;
  }
}
.contact-one__form {
  position: relative;
}
.contact-one__image {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding-top: 72px;
}
.contact-one__image::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--lotech-base, #00A6D9);
  z-index: -1;
  clip-path: polygon(2% 0, 100% 6%, 100% 100%, 0 100%);
}
@media (min-width: 1400px) {
  .contact-one__image {
    margin-left: 10px;
  }
}
.contact-one__image img {
  min-height: 655px;
  max-width: 100%;
  object-fit: cover;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}
@media (max-width: 1199px) {
  .contact-one__image img {
    min-height: inherit;
  }
}

.contact-two {
  position: relative;
  margin-bottom: -200px;
}
.contact-two__wrapper {
  position: relative;
  background-color: #18191D;
  z-index: 2;
}
.contact-two__box {
  position: relative;
  background: linear-gradient(135deg, #00A6D9 0%, #05BFE5 100%);
  text-align: center;
  margin-right: -24px;
  padding: 52px 30px 51px;
}

@media (max-width: 991px) {
  .contact-two__box {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .contact-two__box {
    padding: 20px 5px 20px;
    margin: 0 5px;
  }
}

@media (max-width: 576px) {
  .contact-two__box {
    padding: 15px 0px 10px;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .contact-two__box {
    padding: 15px 0px 10px;
    margin: 0;
  }
}

.contact-two__box__icon {
  width: 106px;
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  background-color: rgba(var(--lotech-white-rgb, 255, 255, 255), 0.1);
  font-size: 46px;
  color: var(--lotech-white, #ffffff);
  clip-path: polygon(0 9%, 100% 0, 100% 91%, 0% 100%);
  transition: all 0.4s ease;
}

@media (max-width: 768px) {
  .contact-two__box__icon {
    width: 90px;
    height: 100px;
    font-size: 40px;
    margin-bottom: 18px;
  }
}

@media (max-width: 576px) {
  .contact-two__box__icon {
    width: 90px;
    height: 100px;
    font-size: 40px;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .contact-two__box__icon {
    width: 90px;
    height: 100px;
    font-size: 40px;
    margin-bottom: 12px;
  }
}

.contact-two__box__icon i {
  display: inline-block;
  transition: all 0.6s ease;
}

.contact-two__box:hover .contact-two__box__icon {
  background-color: var(--lotech-white, #ffffff);
  color: var(--lotech-base, #00A6D9);
  clip-path: polygon(0 0%, 100% 0, 100% 100%, 0% 100%);
}

.contact-two__box:hover .contact-two__box__icon i {
  transform: rotateY(180deg);
}

.contact-two__box__title {
  color: var(--lotech-white, #ffffff);
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 10px;
}

@media (max-width: 768px) {
  .contact-two__box__title {
    font-size: 28px;
    margin-bottom: 8px;
  }
}

@media (max-width: 576px) {
  .contact-two__box__title {
    font-size: 24px;
    margin-bottom: 6px;
  }
}

@media (max-width: 480px) {
  .contact-two__box__title {
    font-size: 20px;
    margin-bottom: 5px;
  }
}

.contact-two__box__text {
  color: var(--lotech-white, #ffffff);
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 768px) {
  .contact-two__box__text {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .contact-two__box__text {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .contact-two__box__text {
    font-size: 16px;
  }
}

.contact-two__box__text a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.contact-two__box__text a:hover {
  background-size: 100% 1px;
}
.contact-two .contact-one__form {
  padding: 50px 85px;
}
@media (max-width: 1199px) {
  .contact-two .contact-one__form {
    padding: 50px 50px;
  }
}
@media (max-width: 767px) {
  .contact-two .contact-one__form {
    padding: 50px 20px;
  }
}
/* .contact-two .contact-one__form .lotech-btn {
  margin-top: 10px;
} */
 .contact-two .contact-one__form .lotech-btn {
  background-color: var(--lotech-base, #00A6D9);
  padding: 8px 22px;
  border-radius: 8px;
  font-weight: bold;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--lotech-white, #ffffff);
}

.contact-two .contact-one__form .lotech-btn:hover {
  background-color: var(--lotech-white, #ffffff);
  color: var(--lotech-black, #0E0F11);
}

.contact-two .contact-one__form .lotech-btn span i {
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.2s ease-out;
}

.contact-two .contact-one__form .lotech-btn span i:last-child {
  left: -20px;
  bottom: -20px;
  transform: translate(0, 0);
  opacity: 0;
  transition: all 0.6s ease-out;
}

.contact-two .contact-one__form .lotech-btn:hover span i:last-child {
  left: 0;
  bottom: 0;
  opacity: 1;
  transform: translate(0, 0);
}
.contact-two .form-one .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  height: 60px;
}
.contact-two .form-one .bootstrap-select > .dropdown-toggle,
.contact-two .form-one input[type=text],
.contact-two .form-one input[type=tel],
.contact-two .form-one input[type=email],
.contact-two .form-one textarea {
  height: 60px;
  background-color: transparent;
  border: 1px solid rgba(var(--lotech-white-rgb, 255, 255, 255), 0.1);
}

.contact {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .contact {
    padding: 80px 0;
  }
}
.contact__content {
  position: relative;
  width: 100%;
}
@media (max-width: 991px) {
  .contact__content {
    margin-bottom: 30px;
  }
}
.contact__info {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-top: 1px solid var(--lotech-border-color, #ECECEC);
  padding: 25px 0 22px;
}
.contact__info__icon {
  width: 60px;
  height: 60px;
  background-color: var(--lotech-gray, #D9D9D9);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
  font-size: 24px;
  color: var(--lotech-base, #00A6D9);
  transition: all 300ms ease;
}
.contact__info__icon::after {
  position: absolute;
  content: "";
  background-color: var(--lotech-base, #00A6D9);
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 25px;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: -1;
  transition: all 500ms ease;
}
.contact__info:hover .contact__info__icon {
  color: var(--lotech-white, #ffffff);
}
.contact__info:hover .contact__info__icon::after {
  height: 100%;
}
.contact__info__title {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin: -4px 0 8px;
}
.contact__info__text {
  margin: 0;
}
.contact__info__text a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.contact__info__text a:hover {
  background-size: 100% 1px;
}
.contact__info__text a:hover {
  color: var(--lotech-base, #00A6D9);
}
.contact__info__text br {
  display: block;
}
.contact .contact-one__form {
  position: relative;
  background-color: var(--lotech-gray, #D9D9D9);
  padding: 50px;
}
@media (max-width: 767px) {
  .contact .contact-one__form {
    padding: 40px 25px;
  }
}
.contact__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.1;
}
.contact .form-one .bootstrap-select > .dropdown-toggle,
.contact .form-one input[type=text],
.contact .form-one input[type=tel],
.contact .form-one input[type=email],
.contact .form-one textarea {
  background-color: var(--lotech-white, #ffffff);
  height: 60px;
}
.contact .form-one textarea {
  height: 153px;
}
.contact .contact-one__form .lotech-btn {
  margin-top: 20px;
  padding: 9px 21px;
}
.contact .contact-one__form .lotech-btn i {
  font-size: 20px;
  margin: 0 0 0 15px;
  position: relative;
  top: 3px;
  transform: none;
}
.contact .form-one__group {
  gap: 20px;
}

 
.contact-three {
  background-color: var(--lotech-white, #ffffff);
}
.contact-three__wrapper .sec-title {
  padding: 40px 0 10px 0px;
}
.contact-three__wrapper__text {
  font-size: 22px;
  line-height: 32px;
  margin: 0 0 41px;
}
@media (max-width: 767px) {
  .contact-three__wrapper__text {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 32px;
  }
}
.contact-three__form {
  position: relative;
}
.contact-three__image img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials-one {
  position: relative;
}
.testimonials-one .owl-carousel {
  position: relative;
}
.testimonials-one .owl-carousel .owl-nav {
  position: absolute;
  right: 0;
  bottom: -10px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.testimonials-one .owl-carousel .owl-nav button {
  width: 44px;
  height: 44px;
  background-color: rgba(var(--lotech-base-rgb, 73, 70, 236), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--lotech-black, #0E0F11);
  border-radius: 50%;
  overflow: hidden;
  transition: all 500ms ease;
}
.testimonials-one .owl-carousel .owl-nav button i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.testimonials-one .owl-carousel .owl-nav button:hover {
  color: var(--lotech-white, #ffffff);
  background-color: var(--lotech-base, #00A6D9);
}
.testimonials-one .owl-carousel .owl-nav button:first-child:hover i {
  animation: slideLeft 500ms;
}
.testimonials-one .owl-carousel .owl-nav button:last-child:hover i {
  animation: slideRight 500ms;
}
.testimonials-one__image {
  position: relative;
  background-image: linear-gradient(124deg, #f6efff 0%, #ebf6f8 100%);
  width: 550px;
  margin-left: auto;
  text-align: right;
  padding-right: 65px;
}
@media (max-width: 991px) {
  .testimonials-one__image {
    margin: 55px 0 0;
  }
}
@media (max-width: 575px) {
  .testimonials-one__image {
    margin: 65px 0 0;
    width: 100%;
  }
}
.testimonials-one__image::after {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  width: calc(100% - 50px);
  height: calc(100% + 30px);
  top: -15px;
  content: "";
  background-color: var(--lotech-base, #00A6D9);
  z-index: -1;
  clip-path: polygon(39% 0%, 100% 0%, 61% 100%, 0% 100%);
}
.testimonials-one__image img {
  max-width: 100%;
  margin-top: -48px;
  animation: movebounce2 3s linear 0s infinite;
}

.testimonials-card {
  position: relative;
}
.testimonials-card__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 25px;
}
@media (max-width: 575px) {
  .testimonials-card__top {
    flex-direction: column;
    align-items: flex-start;
  }
}
.testimonials-card__author {
  position: relative;
  min-height: 70px;
  padding: 12px 0 0 86px;
}
.testimonials-card__quote {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--lotech-base, #00A6D9);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
.testimonials-card__quote img {
  width: 40px !important;
  height: 30px;
}
.testimonials-card__name {
  margin: 0;
  text-transform: capitalize;
  color: var(--lotech-black, #0E0F11);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 14px;
}
.testimonials-card__designation {
  margin: 0;
  line-height: 1;
}
.testimonials-card__rating {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #FFD076;
  font-size: 22px;
  letter-spacing: 4px;
}
.testimonials-card__content {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: var(--lotech-black, #0E0F11);
  font-family: var(--lotech-heading-font, "Yantramanav", serif);
  border-bottom: 1px solid var(--lotech-border-color, #ECECEC);
  margin-bottom: 35px;
  padding-bottom: 20px;
}
.testimonials-card__logo {
  position: relative;
}
.testimonials-card__logo img {
  max-width: 145px;
  height: auto;
}

.testimonials-two {
  position: relative;
  padding-top: 70px;
}
@media (max-width: 767px) {
  .testimonials-two {
    padding-top: 40px;
  }
}
.testimonials-two__item {
  position: relative;
  z-index: 2;
  border: 1px solid var(--lotech-border-color, #ECECEC);
  padding: 0 23px 23px;
}
.testimonials-two__item::after {
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
  width: 340px;
  height: 100%;
  content: "";
  transition: all 500ms ease;
  background-image: linear-gradient(119deg, #f6efff 0%, #ebf6f8 100%);
  clip-path: polygon(39% 0%, 100% 0%, 61% 100%, 0% 100%);
}
.testimonials-two__item__author {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 0 23px;
}
.testimonials-two__item__author::after {
  position: absolute;
  z-index: -1;
  left: -24px;
  top: 14px;
  width: 0;
  height: 69px;
  content: "";
  transition: all 500ms ease;
  background-color: var(--lotech-base, #00A6D9);
  clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
}
.testimonials-two__item__author::before {
  position: absolute;
  z-index: -1;
  left: -24px;
  top: 14px;
  width: 320px;
  height: 69px;
  content: "";
  transition: all 500ms ease;
  background-image: linear-gradient(119deg, #f6efff 0%, #ebf6f8 100%);
  clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
}
.testimonials-two__item:hover .testimonials-two__item__author::after {
  width: 320px;
}
.testimonials-two__item__thumb {
  width: 66px;
  height: 97px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 87%, 0 100%);
}
.testimonials-two__item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials-two__item__name {
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1;
  margin-bottom: 14px;
  transition: all 300ms ease;
}
.testimonials-two__item__designation {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  text-transform: capitalize;
  margin: 0;
  transition: all 300ms ease;
}
.testimonials-two__item:hover .testimonials-two__item__designation, .testimonials-two__item:hover .testimonials-two__item__name {
  color: var(--lotech-white, #ffffff);
}
.testimonials-two__item__content {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: var(--lotech-black, #0E0F11);
  margin-bottom: 22px;
}
.testimonials-two__item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(var(--lotech-black-rgb, 14, 15, 17), 0.1);
  padding: 24px 0 0;
}
.testimonials-two__item__quote {
  width: 68px;
  height: 52px;
  position: relative;
}
.testimonials-two__item__rating {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* color: #FF6006; */
  font-size: 22px;
  letter-spacing: 4px;
}
.testimonials-two__item__rating span {
  color: inherit;
}
.testimonials-two .owl-carousel .owl-dots {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 65px;
}
.testimonials-two .owl-carousel .owl-dots button {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background-color: rgba(var(--lotech-black-rgb, 14, 15, 17), 0.1);
  border: none;
  position: relative;
  margin: 0;
  transition: all 300ms ease;
}
.testimonials-two .owl-carousel .owl-dots button::after {
  width: 24px;
  height: 24px;
  position: absolute;
  content: "";
  left: -8px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  border: 1px solid var(--lotech-base, #00A6D9);
  transform: scale(0);
  transition: all 300ms ease;
}
.testimonials-two .owl-carousel .owl-dots button span {
  display: none;
}
.testimonials-two .owl-carousel .owl-dots button:hover, .testimonials-two .owl-carousel .owl-dots button.active {
  background-color: var(--lotech-base, #00A6D9);
}
.testimonials-two .owl-carousel .owl-dots button.active:after {
  transform: scale(1);
}

.testimonials-three {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .testimonials-three {
    padding: 80px 0;
  }
}
.testimonials-three .sec-title {
  padding-bottom: 34px;
}
.testimonials-three .owl-carousel {
  position: relative;
}
.testimonials-three .owl-carousel .owl-nav {
  position: absolute;
  right: 0;
  bottom: -10px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.testimonials-three .owl-carousel .owl-nav button {
  width: 44px;
  height: 44px;
  background-color: rgba(var(--lotech-base-rgb, 73, 70, 236), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--lotech-black, #0E0F11);
  border-radius: 50%;
  overflow: hidden;
  transition: all 500ms ease;
}
.testimonials-three .owl-carousel .owl-nav button i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.testimonials-three .owl-carousel .owl-nav button:hover {
  color: var(--lotech-white, #ffffff);
  background-color: var(--lotech-base, #00A6D9);
}
.testimonials-three .owl-carousel .owl-nav button:hover i {
  animation: iconTranslateX 0.4s forwards;
}
.testimonials-three__item {
  position: relative;
}
.testimonials-three__item__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 25px;
}
@media (max-width: 575px) {
  .testimonials-three__item__top {
    flex-direction: column;
    align-items: flex-start;
  }
}
.testimonials-three__item__author {
  position: relative;
  min-height: 70px;
  padding: 12px 0 0 86px;
}
.testimonials-three__item__quote {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--lotech-base, #00A6D9);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
.testimonials-three__item__quote img {
  width: 40px !important;
  height: 30px;
}
.testimonials-three__item__name {
  margin: 0;
  text-transform: capitalize;
  color: var(--lotech-black, #0E0F11);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 14px;
}
.testimonials-three__item__designation {
  margin: 0;
  line-height: 1;
}
.testimonials-three__item__rating {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #FFD076;
  font-size: 22px;
  letter-spacing: 4px;
}
.testimonials-three__item__content {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: var(--lotech-black, #0E0F11);
  font-family: var(--lotech-heading-font, "Yantramanav", serif);
  border-bottom: 1px solid var(--lotech-border-color, #ECECEC);
  margin-bottom: 35px;
  padding-bottom: 20px;
}
.testimonials-three__item__logo {
  position: relative;
}
.testimonials-three__item__logo img {
  max-width: 145px;
  height: auto;
}
.testimonials-three__image {
  position: relative;
  width: 550px;
  margin-left: auto;
  text-align: right;
  padding-right: 15px;
  margin-top: -184px;
}
@media (max-width: 1199px) {
  .testimonials-three__image {
    margin-top: -160px;
  }
}
@media (max-width: 991px) {
  .testimonials-three__image {
    margin: 55px 0 0;
  }
}
@media (max-width: 575px) {
  .testimonials-three__image {
    margin: 65px 0 0;
    width: 100%;
  }
}
.testimonials-three__image::after {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: calc(100% - 63px);
  top: 29px;
  content: "";
  background-color: rgba(var(--lotech-base-rgb, 73, 70, 236), 0.1);
  z-index: -1;
  clip-path: polygon(0% 44%, 100% 0%, 100% 100%, 0% 100%);
}
.testimonials-three__image img {
  max-width: 100%;
  animation: movebounce2 3s linear 0s infinite;
}
.testimonials-three__image svg {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 30px;
  z-index: -1;
  width: calc(100% - 20px);
}
.testimonials-three__image svg path {
  stroke-dasharray: 100;
  animation: dash 5s linear infinite;
}
@keyframes dash {
  to {
    stroke-dashoffset: 1000;
  }
}

.testimonials-four {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  background-color: var(--lotech-black, #0E0F11);
}
.testimonials-four__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.15;
}
.testimonials-four__shape {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: auto;
}
.testimonials-four__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 40px;
  position: relative;
  z-index: 1;
}
.testimonials-four__top::before {
  position: absolute;
  height: 1px;
  width: calc(50% - 196px);
  top: 0;
  bottom: 0;
  margin: auto;
  left: 78px;
  content: "";
  background-color: rgba(var(--lotech-border-color-rgb, 236, 236, 236), 0.2);
}
@media (max-width: 767px) {
  .testimonials-four__top::before {
    display: none;
  }
}
.testimonials-four__top::after {
  position: absolute;
  height: 1px;
  width: calc(50% - 196px);
  top: 0;
  bottom: 0;
  margin: auto;
  right: 78px;
  content: "";
  background-color: rgba(var(--lotech-border-color-rgb, 236, 236, 236), 0.2);
}
@media (max-width: 767px) {
  .testimonials-four__top::after {
    display: none;
  }
}
.testimonials-four__top__title {
  font-size: 24px;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  color: var(--lotech-white, #ffffff);
  font-weight: 700;
  margin: 0 0;
}
.testimonials-four__next, .testimonials-four__prev {
  background-color: transparent;
  border: 1px solid rgba(var(--lotech-border-color-rgb, 236, 236, 236), 0.75);
  border-radius: 50%;
  color: var(--lotech-base, #00A6D9);
  font-size: 16px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}
.testimonials-four__next:hover, .testimonials-four__prev:hover {
  border-color: var(--lotech-base, #00A6D9);
  background-color: var(--lotech-base, #00A6D9);
  color: var(--lotech-white, #ffffff);
}
.testimonials-four__wrapper {
  margin-left: -100px;
}
@media (max-width: 1199px) {
  .testimonials-four__wrapper {
    margin: 0 15px;
  }
}
.testimonials-four .testimonials-card__rating {
  justify-content: flex-start;
}

/*--------------------------------------------------------------
# Package
--------------------------------------------------------------*/
.package-one {
  padding-top: 120px;
  position: relative;
}
@media (max-width: 767px) {
  .package-one {
    padding-top: 80px;
  }
}
.package-one__item {
  position: relative;
  z-index: 2;
  border: 1px solid var(--lotech-border-color, #ECECEC);
  padding: 43px 49px 49px;
  transition: all 400ms ease;
}
@media (max-width: 1399px) {
  .package-one__item {
    padding: 43px 29px 49px;
  }
}
.package-one__item::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-image: linear-gradient(119deg, #f6efff 0%, #ebf6f8 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1, 0);
  z-index: -1;
  transition: transform 500ms ease;
  transform-origin: bottom center;
}
.package-one__item:hover {
  border-color: transparent;
}
.package-one__item:hover::after {
  transform-origin: top center;
  transform: scale(1, 1);
}
.package-one__item__title {
  text-transform: capitalize;
  font-weight: 700;
  font-size: 32px;
  margin: 0 0 21px;
}
.package-one__item__text {
  display: inline-block;
  border: 1px solid rgba(var(--lotech-black-rgb, 14, 15, 17), 0.1);
  color: var(--lotech-base, #00A6D9);
  text-transform: capitalize;
  margin: 0 0 21px;
  padding: 1px 19.5px;
}
.package-one__item__price {
  display: flex;
  align-items: baseline;
  font-weight: 700;
  font-size: 52px;
  gap: 12px;
  margin: 0 0 32px;
}
.package-one__item__price span {
  display: inline-block;
  font-size: 16px;
}
.package-one__item__list {
  margin: 0 0 55px;
  padding: 0;
  list-style: none;
  min-height: 198px;
}
.package-one__item__list li {
  position: relative;
  margin: 17px 0 0;
  padding-left: 18px;
}
.package-one__item__list li::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  width: 7px;
  height: 7px;
  background-color: var(--lotech-black, #0E0F11);
  border-radius: 50%;
}
.package-one__item .lotech-btn {
  padding: 9px 45px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.service-one {
  position: relative;
  background-image: linear-gradient(124deg, #f6efff 0%, #ebf6f8 100%);
  padding: 40px 0;
}
@media (max-width: 767px) {
  .service-one {
    padding: 20px 0;
  }
}
.service-one--page .service-one__carousel.owl-carousel .owl-dots .owl-dot span {
  background-color: rgba(var(--lotech-black-rgb, 14, 15, 17), 0.3);
}
.service-one__carousel {
  position: relative;
}
.service-one__item {
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: all 500ms ease;
  background-color: var(--lotech-white, #ffffff);
  padding: 27px 30px 21px;
  box-shadow: 0 4px 15px rgba(10, 144, 204, 0.4);
}

.service-one__item:hover {
  box-shadow: 0 8px 25px rgba(10, 144, 204, 0.5);
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .service-one__item {
    padding: 27px 26px 21px;
    border-radius: 8px;
  }
}
.service-one__item__icon {
  position: relative;
  z-index: 1;
  font-size: 48px;
  line-height: 48px;
  color: var(--lotech-base, #00A6D9);
  transition: all 300ms ease;
  margin: 0 0 19px;
}
.service-one__item__title {
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 10px 17px;
}
.service-one__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-one__item__title a:hover {
  background-size: 100% 1px;
}
.service-one__item__text {
  transition: all 300ms ease;
  margin: 0 10px 20px;
}
.service-one__item__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--lotech-black, #0E0F11);
  font-family: var(--lotech-heading-font, "Yantramanav", serif);
  text-transform: capitalize;
}
.service-one__item__btn__text {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-one__item__btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11px;
  height: 11px;
  position: relative;
  overflow: hidden;
  font-size: 10px;
}
.service-one__item__btn__icon i {
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.2s ease-out;
}
.service-one__item__btn__icon i:last-child {
  left: -13px;
  bottom: -13px;
  transform: translate(0, 0);
  opacity: 0;
  transition: all 0.6s ease-out;
}
.service-one__item__btn:hover .service-one__item__btn__text {
  background-size: 100% 1px;
}
.service-one__item__btn:hover .service-one__item__btn__icon i:first-child {
  transform: translate(16px, -16px);
}
.service-one__item__btn:hover .service-one__item__btn__icon i:last-child {
  opacity: 1;
  visibility: visible;
  transform: translate(13px, -13px);
}
.service-one__item__hover {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform-origin: 0% 0% 0;
  border-radius: 40%;
  transition: all 0.5s;
  background-color: var(--lotech-base, #00A6D9);
  z-index: -1;
  transform: rotate(-180deg);
}
.service-one__item__hover__left {
  width: 210px;
  height: 210px;
  position: absolute;
  left: -36px;
  top: -36px;
  border-radius: 50%;
  background-color: rgba(var(--lotech-white-rgb, 255, 255, 255), 0.1);
  animation: zoomsIn 2s infinite alternate;
}
.service-one__item__hover__right {
  width: 118px;
  height: 118px;
  position: absolute;
  right: -45px;
  bottom: -45px;
  border-radius: 50%;
  background-color: rgba(var(--lotech-white-rgb, 255, 255, 255), 0.1);
  animation: zoomsIn 2s infinite alternate;
}
.service-one__item:hover .service-one__item__hover {
  transform: rotate(0deg);
  border-radius: 0;
}
.service-one__item:hover .service-one__item__icon,
.service-one__item:hover .service-one__item__title,
.service-one__item:hover .service-one__item__text,
.service-one__item:hover .service-one__item__btn {
  color: var(--lotech-white, #ffffff);
}
.service-one__text {
  position: relative;
  text-align: center;
  margin: 41px 0 0;
}
.service-one__text a {
  color: var(--lotech-black, #0E0F11);
  background: linear-gradient(to left, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  background-size: 100% 1px;
  font-family: var(--lotech-heading-font, "Yantramanav", serif);
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1;
  display: inline-block;
}
.service-one__text a:hover {
  color: var(--lotech-base, #00A6D9);
  background-size: 0% 1px;
}
.service-one--page {
  background: var(--lotech-white, #ffffff);
}
.service-one--page .service-one__item {
  background: linear-gradient(119.31deg, #F6EFFF 0%, #EBF6F8 100%);
}

/* ✅ Make Card4 wider & aligned properly */
.service-card-qa {
  transition: width 0.4s ease-in-out;
  margin-top: 20px;
}

/* Optional: Make content layout nicer inside */
.service-card-qa .service-one__item {
  display: flex;
  align-items: start;
  flex-direction: row;
  gap: 20px;
  padding: 30px 40px 0;
}

/* Adjust icon placement */
.service-card-qa .service-one__item__icon {
  font-size: 42px;
  min-width: 60px;
}

/* Allow long description to breathe */
.service-card-qa .service-one__item__text {
  flex: 1;
}

/* Mobile responsive: goes full width naturally */
@media (max-width: 768px) {
  .service-card-qa {
    margin-top: 0;
  }
}



.service-two {
  position: relative;
  padding: 120px 0 40px;
}
@media (max-width: 767px) {
  .service-two {
    padding: 80px 0 20px;
  }
}
.service-two--page {
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .service-two--page {
    padding-bottom: 80px;
  }
}
.service-two__item {
  position: relative;
  z-index: 2;
  transition: all 500ms ease;
  text-align: center;
  border: 1px solid rgba(var(--lotech-black-rgb, 14, 15, 17), 0.1);
  padding: 45px 15px 52px;
  overflow: hidden;
}
.service-two__item__hover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.service-two__item__hover__item {
  width: 25%;
  height: 100%;
  bottom: 0;
  position: absolute;
  transform: translateY(-100%);
  background-color: var(--lotech-base, #00A6D9);
  transition: all 0.5s ease 0s;
  transition-delay: 0s;
  opacity: 0;
}
.service-two__item__hover__item:nth-child(1) {
  left: 0;
  transition-delay: 0.105s;
}
.service-two__item__hover__item:nth-child(2) {
  left: 25%;
  transition-delay: 0.15s;
}
.service-two__item__hover__item:nth-child(3) {
  left: 50%;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.service-two__item__hover__item:nth-child(4) {
  left: 75%;
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}
.service-two__item:hover {
  border-color: var(--lotech-base, #00A6D9);
}
.service-two__item:hover .service-two__item__hover__item {
  transform: translateY(0px);
  opacity: 1;
}
.service-two__item__title {
  font-size: 24px;
  text-transform: capitalize;
  font-weight: 700;
  margin: 0 0 17px;
}
.service-two__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-two__item__title a:hover {
  background-size: 100% 1px;
}
.service-two__item:hover .service-two__item__title {
  color: var(--lotech-white, #ffffff);
}
.service-two__item__text {
  transition: all 300ms ease;
  margin: 0 0 39px;
}
.service-two__item:hover .service-two__item__text {
  color: var(--lotech-white, #ffffff);
}
.service-two__item__icon {
  font-size: 80px;
  line-height: 80px;
  color: var(--lotech-base, #00A6D9);
  transition: all 300ms ease;
  margin: 0 0 42px;
}
.service-two__item:hover .service-two__item__icon {
  color: var(--lotech-white, #ffffff);
}
.service-two__item__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--lotech-black, #0E0F11);
  font-family: var(--lotech-heading-font, "Yantramanav", serif);
  text-transform: capitalize;
}
.service-two__item__btn__text {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-two__item__btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 26px;
  z-index: 1;
}
.service-two__item__btn__icon i {
  width: 26px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.service-two__item__btn__icon::after {
  position: absolute;
  right: -14px;
  top: -3px;
  width: 32px;
  height: 32px;
  content: "";
  border: 1px solid currentColor;
  border-radius: 50%;
  z-index: -1;
}
.service-two__item__btn:hover .service-two__item__btn__text {
  background-size: 100% 1px;
}
.service-two__item__btn:hover i {
  animation: iconTranslateX 0.4s forwards;
}
.service-two__item:hover .service-two__item__btn {
  color: var(--lotech-white, #ffffff);
}

.service-three {
  position: relative;
  padding: 120px 0 30px;
}
@media (max-width: 767px) {
  .service-three {
    padding: 80px 0 0;
  }
}
.service-three--page {
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .service-three--page {
    padding-bottom: 80px;
  }
}
.service-three__item {
  position: relative;
  z-index: 2;
  transition: all 500ms ease;
  border: 1px solid rgba(var(--lotech-black-rgb, 14, 15, 17), 0.1);
  border-radius: 10px;
  padding: 29px 29px;
  overflow: hidden;
}
.service-three__item__hover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.service-three__item__hover__item {
  width: 25%;
  height: 100%;
  bottom: 0;
  position: absolute;
  transform: translateY(-100%);
  background-color: var(--lotech-base, #00A6D9);
  transition: all 0.5s ease 0s;
  transition-delay: 0s;
  opacity: 0;
}
.service-three__item__hover__item:nth-child(1) {
  left: 0;
  transition-delay: 0.105s;
}
.service-three__item__hover__item:nth-child(2) {
  left: 25%;
  transition-delay: 0.15s;
}
.service-three__item__hover__item:nth-child(3) {
  left: 50%;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.service-three__item__hover__item:nth-child(4) {
  left: 75%;
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}
.service-three__item:hover {
  border-color: var(--lotech-base, #00A6D9);
}
.service-three__item:hover .service-three__item__hover__item {
  transform: translateY(0px);
  opacity: 1;
}
.service-three__item__icon {
  font-size: 42px;
  line-height: 70px;
  color: var(--lotech-base, #00A6D9);
  transition: all 300ms ease;
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  overflow: hidden;
  background-color: rgba(var(--lotech-base-rgb, 73, 70, 236), 0.1);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 70 70" xmlns="http://www.w3.org/2000/svg"><path d="M0 5C0 2.23858 2.23858 0 5 0H51.6897C54.4511 0 56.6897 2.23858 56.6897 5V9.7069C56.6897 12.4683 58.9282 14.7069 61.6897 14.7069H65C67.7614 14.7069 70 16.9455 70 19.7069V65C70 67.7614 67.7614 70 65 70H11.3081C9.8735 70 8.50803 69.3838 7.55888 68.3081L1.25081 61.159C0.444783 60.2455 0 59.0691 0 57.8509V5Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 70 70" xmlns="http://www.w3.org/2000/svg"><path d="M0 5C0 2.23858 2.23858 0 5 0H51.6897C54.4511 0 56.6897 2.23858 56.6897 5V9.7069C56.6897 12.4683 58.9282 14.7069 61.6897 14.7069H65C67.7614 14.7069 70 16.9455 70 19.7069V65C70 67.7614 67.7614 70 65 70H11.3081C9.8735 70 8.50803 69.3838 7.55888 68.3081L1.25081 61.159C0.444783 60.2455 0 59.0691 0 57.8509V5Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.service-three__item__icon i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.service-three__item:hover .service-three__item__icon {
  background-color: var(--lotech-white, #ffffff);
}
.service-three__item:hover .service-three__item__icon i {
  animation: iconTranslateX 0.4s forwards;
}
.service-three__item__title {
  font-size: 24px;
  text-transform: capitalize;
  font-weight: 700;
  margin: 0 0 15px;
}
.service-three__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-three__item__title a:hover {
  background-size: 100% 1px;
}
.service-three__item:hover .service-three__item__title {
  color: var(--lotech-white, #ffffff);
}
.service-three__item__text {
  transition: all 300ms ease;
  margin: 0 0 22px;
}
.service-three__item:hover .service-three__item__text {
  color: var(--lotech-white, #ffffff);
}
.service-three__item__btn {
  position: relative;
  transition: all 500ms ease;
  width: 32px;
  height: 32px;
  background-color: rgba(var(--lotech-base-rgb, 73, 70, 236), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--lotech-black, #0E0F11);
  border-radius: 50%;
  overflow: hidden;
}
.service-three__item__btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11px;
  height: 11px;
  position: relative;
  overflow: hidden;
}
.service-three__item__btn__icon i {
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.2s ease-out;
}
.service-three__item__btn__icon i:last-child {
  left: -11px;
  bottom: -11px;
  transform: translate(0, 0);
  opacity: 0;
  transition: all 0.6s ease-out;
}
.service-three__item__btn:hover .service-three__item__btn__icon i:first-child {
  transform: translate(12px, -12px);
}
.service-three__item__btn:hover .service-three__item__btn__icon i:last-child {
  opacity: 1;
  visibility: visible;
  transform: translate(11px, -11px);
}
.service-three__item:hover .service-three__item__btn {
  background-color: var(--lotech-white, #ffffff);
  color: var(--lotech-base, #00A6D9);
}

.service-four {
  position: relative;
  padding: 70px 0;
}
@media (max-width: 767px) {
  .service-four {
    padding: 40px 0;
  }
}
.service-four__btn {
  position: relative;
  text-align: right;
  margin: 80px 0 0;
}
@media (max-width: 767px) {
  .service-four__btn {
    margin: 0 0 45px;
    text-align: left;
  }
}
.service-four__btn .lotech-btn {
  padding: 17px 46px;
}
.service-four__item {
  position: relative;
  z-index: 2;
  background-color: var(--lotech-white, #ffffff);
  border: 1px solid rgba(var(--lotech-black-rgb, 14, 15, 17), 0.1);
  padding: 24px 50px 29px 28px;
  transition: all 500ms ease;
  overflow: hidden;

  /* Add smooth edges */
  border-radius: 8px; /* Adjust the value as needed for roundness */

  /* Add shadow effect */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Adjust for shadow depth */
  
}
@media (max-width: 1399px) {
  .service-four__item {
    padding-left: 22px;
  }
}
@media (max-width: 1199px) {
  .service-four__item {
    padding-left: 20px;
  }
}
.service-four__item__hover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.service-four__item__hover__item {
  width: 25%;
  height: 100%;
  bottom: 0;
  position: absolute;
  transform: translateY(-100%);
  background-color: var(--lotech-base, #00A6D9);
  transition: all 0.5s ease 0s;
  transition-delay: 0s;
  opacity: 0;
}
.service-four__item__hover__item:nth-child(1) {
  left: 0;
  transition-delay: 0.105s;
}
.service-four__item__hover__item:nth-child(2) {
  left: 25%;
  transition-delay: 0.15s;
}
.service-four__item__hover__item:nth-child(3) {
  left: 50%;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.service-four__item__hover__item:nth-child(4) {
  left: 75%;
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}
.service-four__item:hover {
  border-color: var(--lotech-base, #00A6D9);
}
.service-four__item:hover .service-four__item__hover__item {
  transform: translateY(0px);
  opacity: 1;
}
.service-four__item__image {
  position: absolute;
  right: 0;
  top: 0;
  width: 256px;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  clip-path: polygon(100% 0, 100% 100%, 88% 100%, 0 35%, 26% 0);
  backdrop-filter: var(--lotech-black3),
    brightness(0.9);
}
@media (max-width: 1399px) {
  .service-four__item__image {
    width: 220px;
  }
}
@media (max-width: 1199px) {
  .service-four__item__image {
    width: 180px;
  }
}
.service-four__item__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black backdrop */
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1; /* Behind text but over image */
}
.service-four__item:hover .service-four__item__backdrop {
  opacity: 1;
}
.service-four__item__content {
  position: absolute;
  top: 20px; /* Adjust top positioning */
  left: 20px;
  right: 20px;
  z-index: 2; /* On top of backdrop and image */
  color: var(--lotech-white, #ffffff); /* White text for visibility */
  transition: all 300ms ease;
}
.service-four__item__icon {
  font-size: 48px;
  line-height: 90px;
  color: var(--lotech-base, #00A6D9);
  transition: all 300ms ease;
  margin: 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  overflow: hidden;
  background-color: rgba(var(--lotech-base-rgb, 73, 70, 236), 0.1);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 90 90" xmlns="http://www.w3.org/2000/svg"><path d="M0 5C0 2.23858 2.23858 0 5 0H67.8867C70.6481 0 72.8867 2.23858 72.8867 5V13.9089C72.8867 16.6703 75.1253 18.9089 77.8867 18.9089H85C87.7614 18.9089 90 21.1474 90 23.9089V85C90 87.7614 87.7614 90 85 90H13.8943C12.4597 90 11.0942 89.3838 10.1451 88.3081L1.25081 78.2279C0.444782 77.3144 0 76.1381 0 74.9198V5Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 90 90" xmlns="http://www.w3.org/2000/svg"><path d="M0 5C0 2.23858 2.23858 0 5 0H67.8867C70.6481 0 72.8867 2.23858 72.8867 5V13.9089C72.8867 16.6703 75.1253 18.9089 77.8867 18.9089H85C87.7614 18.9089 90 21.1474 90 23.9089V85C90 87.7614 87.7614 90 85 90H13.8943C12.4597 90 11.0942 89.3838 10.1451 88.3081L1.25081 78.2279C0.444782 77.3144 0 76.1381 0 74.9198V5Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.service-four__item__icon i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.service-four__item:hover .service-four__item__icon {
  background-color: var(--lotech-white, #ffffff);
}
.service-four__item:hover .service-four__item__icon i {
  animation: iconTranslateY 0.4s forwards;
}
.service-four__item__title {
  margin: 0 0 18px;
  transition: all 300ms ease;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase; /* Uppercase the title */
}
@media (max-width: 574px) {
  .service-four__item__title {
    font-size: 23px;
  }
}
.service-four__item:hover .service-four__item__title {
  color: var(--lotech-white, #ffffff);
}
.service-four__item__text {
  transition: all 300ms ease;
  margin: 0;
  color: var(--lotech-black, #0E0F11);
}
.service-four__item:hover .service-four__item__text {
  color: var(--lotech-white, #ffffff);
}
.service-four__item__rm {
  transition: all 500ms ease;
  width: 60px;
  height: 60px;
  background-color: var(--lotech-white, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--lotech-base, #00A6D9);
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  right: 88px;
  bottom: 0;
  opacity: 0;
  transform: translateY(0);
  z-index: 1;
  transition: all 500ms ease-in-out 200ms;
  transition-delay: 200ms;
}
@media (max-width: 1399px) {
  .service-four__item__rm {
        right: 40px;
        bottom: 10px;
  }
}
.service-four__item__rm__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  position: relative;
  overflow: hidden;
}
.service-four__item__rm__icon i {
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.2s ease-out;
}
.service-four__item__rm__icon i:last-child {
  left: -17px;
  bottom: -17px;
  transform: translate(0, 0);
  opacity: 0;
  transition: all 0.6s ease-out;
}
.service-four__item__rm:hover .service-four__item__rm__icon i:first-child {
  transform: translate(17px, -17px);
}
.service-four__item__rm:hover .service-four__item__rm__icon i:last-child {
  opacity: 1;
  visibility: visible;
  transform: translate(17px, -17px);
}
.service-four__item:hover .service-four__item__rm {
  opacity: 1;
  transform: translateY(-29px);
  transition-delay: 300ms;
}
.service-about {
  position: relative;
  background-color: var(--lotech-gray, #D9D9D9);
  padding: 120px 0;
}
@media (max-width: 767px) {
  .service-about {
    padding: 80px 0;
  }
}
.service-about .sec-title {
  padding-bottom: 30px;
}
.service-about__image {
  position: relative;
}
.service-about__image img {
  width: 100%;
  height: auto;
}
.service-about__text {
  letter-spacing: -0.48px;
  text-transform: capitalize;
  margin: 33px 0 0;
}
@media (max-width: 1199px) {
  .service-about__text br {
    display: none;
  }
}

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .service-details {
    padding: 80px 0;
  }
}
.service-details__thumbnail {
  margin-bottom: 29px;
}
.service-details__thumbnail img {
  width: 100%;
  display: block;
}
.service-details__title {
  margin-bottom: 23px;
  display: flex;
  align-items: center;
  gap: 17px;
}
.service-details__title__icon {
  display: inline-flex;
  flex-shrink: 0;
  font-size: 55px;
  color: var(--lotech-base, #00A6D9);
}
.service-details__title__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.service-details__title__title {
  margin: 0;
  font-weight: 700;
  font-size: 32px;
  text-transform: capitalize;
  line-height: 1.3125;
}
@media (max-width: 430px) {
  .service-details__title__title {
    font-size: 30px;
  }
}
.service-details__text {
  margin-bottom: 16px;
}
.service-details__image-wrapper {
  padding-top: 26px;
  margin-bottom: 43px;
}
.service-details__meta {
  padding-top: 26px;
}
.service-details__image img {
  width: 100%;
  display: block;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio-one {
  padding: 70px 0;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .portfolio-one {
    padding: 40px 0;
  }
}

/* NAVIGATION ARROWS */
.portfolio-one__carousel-nav {
  position: relative;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: 35px 0 0;
}
@media (max-width: 767px) {
  .portfolio-one__carousel-nav {
    justify-content: flex-start;
    margin: 0 0 40px;
  }
}
.portfolio-one__carousel-nav a {
  width: 44px;
  height: 44px;
  background-color: rgba(0, 166, 217, 0.1); /* #00A6D9 with 10% opacity */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #0E0F11;
  border-radius: 50%;
  overflow: hidden;
  transition: all 500ms ease;
}
.portfolio-one__carousel-nav a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.portfolio-one__carousel-nav a:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #00A6D9 0%, #4188DE 100%);
  box-shadow: 0 4px 12px rgba(0, 166, 217, 0.3);
}
.portfolio-one__carousel-nav a:hover i {
  animation: iconTranslateX 0.4s forwards;
}

/* PORTFOLIO ITEM OVERLAY */
.portfolio-one__item {
  position: relative;
  overflow: hidden;
}
.portfolio-one__item::before {
  background-image: linear-gradient(180deg, rgba(0, 10, 30, 0) 0%, rgb(14, 15, 17) 100%);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  transition: all 800ms ease;
}
.portfolio-one__item:hover::before {
  opacity: 0;
}
.portfolio-one__item::after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  bottom: auto;
  transition: height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0.2s;
  background-image: linear-gradient(180deg, rgba(0, 10, 30, 0) 0%, #00A6D9 100%);
}
.portfolio-one__item:hover::after {
  height: 100%;
  top: auto;
  bottom: 0;
  background-image: linear-gradient(180deg, rgba(0, 10, 30, 0) 0%, #4188DE 100%);
}

/* IMAGE ZOOM */
.portfolio-one__item img {
  width: 100%;
  height: auto;
  transition: all 400ms ease;
}
.portfolio-one__item:hover img {
  transform: scale(1.05) rotate(2deg);
}

/* CONTENT */
.portfolio-one__item__content {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: transparent;
  padding: 0 30px 30px;
  transition: all 400ms ease;
}
@media (min-width: 768px) and (max-width: 991px) {
  .portfolio-one__item__content {
    padding: 0 25px 25px;
  }
}
@media (max-width: 390px) {
  .portfolio-one__item__content {
    padding: 0 25px 25px;
  }
}
.portfolio-one__item__title {
  margin: 0 0 7px;
  font-weight: 700;
  text-transform: capitalize;
  color: #ffffff;
  font-size: 24px;
}
@media (max-width: 575px) {
  .portfolio-one__item__title {
    font-size: 23px;
  }
}
.portfolio-one__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.portfolio-one__item__title a:hover {
  background-size: 100% 1px;
  color: #ffffff;
}
.portfolio-one__item__meta {
  color: #ECECEC;
  margin: 0;
}

/* READ MORE ICON (CENTER) */
.portfolio-one__item__rm {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 1;
  transition: all 0.4s ease;
  transform: translateX(100px) scale(0.1) rotate(-135deg);
  transition: transform 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  opacity: 0;
}
.portfolio-one__item__rm a {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #00A6D9 0%, #4188DE 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 166, 217, 0.4);
}
.portfolio-one__item__rm a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  position: relative;
  overflow: hidden;
  font-size: 20px;
}
.portfolio-one__item__rm a span i {
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.2s ease-out;
}
.portfolio-one__item__rm a span i:last-child {
  left: -20px;
  bottom: -20px;
  transform: translate(0, 0);
  opacity: 0;
  transition: all 0.6s ease-out;
}
.portfolio-one__item__rm a:hover span i:first-child {
  transform: translate(23px, -23px);
}
.portfolio-one__item__rm a:hover span i:last-child {
  opacity: 1;
  visibility: visible;
  transform: translate(20px, -20px);
}
.portfolio-one__item:hover .portfolio-one__item__rm {
  opacity: 1;
  transform: translateX(0px) scale(1) rotate(0);
}

/* VIEW ALL BUTTON */
.portfolio-one__btn {
  position: relative;
  margin-top: 50px;
  text-align: center;
}
.portfolio-one__btn a {
  display: inline-block;
  padding: 14px 36px;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #00A6D9 0%, #4188DE 100%);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  box-shadow: 0 6px 16px rgba(0, 166, 217, 0.3);
}
.portfolio-one__btn a:hover {
  background: linear-gradient(135deg, #0088b3 0%, #2a6cc7 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 166, 217, 0.4);
}
/*---------------------------------------- ==== VIEW ALL BUTTON ==== */
.view-all-btn {
    background: linear-gradient(135deg, #00A6D9 0%, #4188DE 100%);
  padding: 9px 7px 8px 10px;
  border-radius: 8px;
  font-weight: bold;
  color: var(--lotech-white, #ffffff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative; /* Ensure relative positioning for absolute children */
  transition: all 0.3s ease;
}

.view-all-btn:hover {
 background-color: var(--lotech-white, #ffffff);
  color: var(--lotech-black, #0E0F11);
}

/* Text stays normal */
.view-all-btn__text {
  position: relative;
  z-index: 2;
}

/* Arrow in bottom-left */
.view-all-btn__icon {
  position: absolute;
  left: 12px;
  bottom: 8px;
  z-index: 1;
  font-size: 18px;
  opacity: 0.7;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Duplicate arrow for the cool hover animation you already have */
.view-all-btn__icon i:last-child {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  transform: translate(-20px, -20px);
}

/* Hover animation (reuse your existing logic) */
.view-all-btn:hover .view-all-btn__icon i:first-child {
  transform: translate(23px, -23px);
  opacity: 0;
}
.view-all-btn:hover .view-all-btn__icon i:last-child {
  opacity: 1;
  transform: translate(20px, -20px);
}
/* Mobile Adjustments */
@media (max-width: 768px) {
  .product-card {
    flex-direction: column;
    height: auto;
    text-align: center;
  }

  .product-card__image {
    width: 100%;
    height: 180px;
  }

  .product-card__content {
    width: 100%;
  }
}

.portfolio-two {
  padding: 70px 0 40px;
  position: relative;
  counter-reset: count;
}
@media (max-width: 767px) {
  .portfolio-two {
    padding: 40px 0 30px;
  }
}
.portfolio-two__tabs {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%;
}
@media (max-width: 991px) {
  .portfolio-two__tabs {
    margin: 0 0 40px;
  }
}
.portfolio-two__tabs li {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  background-image: linear-gradient(119deg, #f6efff 0%, #ebf6f8 100%);
  width: 100%;
  counter-increment: count;
  font-family: var(--lotech-heading-font, "Yantramanav", serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--lotech-black, #0E0F11);
  text-transform: capitalize;
  padding: 29.1px 30px;
  position: relative;
  z-index: 1;
  transition: all 0.5s ease;
}
@media (max-width: 1199px) {
  .portfolio-two__tabs li {
    padding: 29.1px 20px;
  }
}
@media (max-width: 767px) {
  .portfolio-two__tabs li {
    padding: 15px 20px;
  }
}
.portfolio-two__tabs li::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  content: "";
  transition: all 0.5s ease;
  background-color: var(--lotech-base, #00A6D9);
  z-index: -1;
}
.portfolio-two__tabs li span {
  position: relative;
  left: 0;
  bottom: 0;
  top: 0;
  display: inline-block;
  line-height: 1;
}
.portfolio-two__tabs li span::before {
  content: counters(count, ".");
  position: relative;
  display: inline-block;
}
.portfolio-two__tabs li:hover, .portfolio-two__tabs li.active-btn {
  color: var(--lotech-white, #ffffff);
  border-color: var(--lotech-base, #00A6D9);
  width: calc(100% + 135px);
}
@media (max-width: 991px) {
  .portfolio-two__tabs li:hover, .portfolio-two__tabs li.active-btn {
    width: 100%;
  }
}
.portfolio-two__tabs li:hover::after, .portfolio-two__tabs li.active-btn::after {
  width: 100%;
}
.portfolio-two__tabs li:hover a, .portfolio-two__tabs li.active-btn a {
  visibility: visible;
  opacity: 1;
}
.portfolio-two__tabs li a {
  height: calc(100% + 1px);
  width: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--lotech-black, #0E0F11);
  background-color: var(--lotech-white, #ffffff);
  position: absolute;
  right: 0;
  top: -1px;
  transition: all 0.6s ease;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
}
.portfolio-two__tabs li a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.portfolio-two__tabs li a:hover i {
  animation: iconTranslateX 0.4s forwards;
}
.portfolio-two__tabs li + li {
  border-top: 1px solid var(--lotech-border-color, #ECECEC);
}
.portfolio-two__item {
  position: relative;
}
.portfolio-two__item img {
  width: 100%;
  height: auto;
  transition: all 400ms ease;
  min-height: 392px;
  object-fit: cover;
}
.portfolio-two__item::after {
  background: linear-gradient(90deg, rgba(var(--lotech-white-rgb, 255, 255, 255), 0.05) 0px, rgba(var(--lotech-white-rgb, 255, 255, 255), 0.05) 77%, rgba(var(--lotech-white-rgb, 255, 255, 255), 0.25) 92%, rgba(var(--lotech-white-rgb, 255, 255, 255), 0));
  content: "";
  height: 200%;
  left: -210%;
  opacity: 0;
  position: absolute;
  top: -50%;
  transition: all 0.5s ease 0s;
  width: 200%;
}
.portfolio-two__item:hover::after {
  left: -30%;
  opacity: 1;
  top: -20%;
  transition-duration: 0.5s, 0.5s, 0.15s;
  transition-property: left, top, opacity;
  transition-timing-function: linear;
}
.portfolio-two__item__rm {
  width: 100px;
  height: 100px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 1;
}
.portfolio-two__item__rm a {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--lotech-base, #00A6D9);
  color: var(--lotech-white, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-two__item__rm a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  position: relative;
  overflow: hidden;
  font-size: 20px;
}
.portfolio-two__item__rm a span i {
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.2s ease-out;
}
.portfolio-two__item__rm a span i:last-child {
  left: -20px;
  bottom: -20px;
  transform: translate(0, 0);
  opacity: 0;
  transition: all 0.6s ease-out;
}
.portfolio-two__item__rm a:hover span i:first-child {
  transform: translate(23px, -23px);
}
.portfolio-two__item__rm a:hover span i:last-child {
  opacity: 1;
  visibility: visible;
  transform: translate(20px, -20px);
}

.portfolio-two .fade-up {
  transform: translate3d(0, 100px, 0);
  opacity: 0;
  transition-property: opacity, transform;
  transition-timing-function: ease;
}
.portfolio-two .active-tab .fade-up {
  opacity: 1;
  transform: translateZ(0);
  transition-duration: 1.3s;
}

.portfolio-three {
  padding-top: 80px;
  position: relative;
}
@media (max-width: 767px) {
  .portfolio-three {
    padding-top: 80px;
  }
}
.portfolio-three__btn {
  position: relative;
  text-align: right;
  margin: 80px 0 0;
}
@media (max-width: 767px) {
  .portfolio-three__btn {
    margin: 0 0 45px;
    text-align: left;
  }
}
.portfolio-three__wrapper {
  display: flex;
  width: 100%;
  gap: 24px;
  box-sizing: border-box;
}
@media (max-width: 1199px) {
  .portfolio-three__wrapper {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .portfolio-three__wrapper {
    flex-direction: column;
  }
}
.portfolio-three__item {
  position: relative;
  overflow: hidden;
  flex: 1;
  overflow: hidden;
  transition: 0.3s;
  margin: 10px 0 15px 0;
  line-height: 0;
  height: 200px;
  border-radius: 8px;

}
@media (max-width: 767px) {
  .portfolio-three__item {
    height: auto;
  }
}
.portfolio-three__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.5s;
}
.portfolio-three__item.active {
  flex: 1 1 20.2%;
}
@media (max-width: 1199px) {
  .portfolio-three__item.active {
    flex: 1 1 30%;
  }
}
@media (max-width: 991px) {
  .portfolio-three__item.active {
    flex: 1 1 32%;
  }
}
.portfolio-three__item__content {
  width: 100%;
  height: 100%;
  padding: 0 50px 37px 30px;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: end;
  bottom: 0;
  left: 0;
  opacity: 0;
  transform: translateY(70%);
  background-image: linear-gradient(180deg, rgba(0, 10, 30, 0) 0%, rgb(0, 60, 234) 100%);
  border-radius: inherit;
  z-index: 1;
  transition: all 500ms ease 500ms;
  transition-delay: 500ms;
}
.portfolio-three__item.active .portfolio-three__item__content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}
.portfolio-three__item__text {
  margin: 0;
  color: var(--lotech-border-color, #ECECEC);
  text-transform: capitalize;
  opacity: 0;
  transform: translateY(-450px);
  transition: all 500ms ease-in-out 100ms;
  transition-delay: 100ms;
}
.portfolio-three__item.active .portfolio-three__item__text {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 100ms;
}
.portfolio-three__item__title {
  margin: 0 0 20px;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 24px;
  color: var(--lotech-white, #ffffff);
  opacity: 0;
  transform: translateY(-450px);
  transition: all 500ms ease-in-out 0ms;
  transition-delay: 0ms;
}
.portfolio-three__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.portfolio-three__item__title a:hover {
  background-size: 100% 1px;
}
.portfolio-three__item__title a:hover {
  color: var(--lotech-white, #ffffff);
}
.portfolio-three__item.active .portfolio-three__item__title {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 200ms;
}
.portfolio-three__item__rm {
  transition: all 500ms ease;
  width: 47px;
  height: 47px;
  background-color: var(--lotech-base, #00A6D9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--lotech-white, #ffffff);
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  right: 30px;
  bottom: 30px;
  opacity: 0;
  transform: translateY(-450px);
  z-index: 1;
  transition: all 500ms ease-in-out 200ms;
  transition-delay: 200ms;
}
.portfolio-three__item__rm__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  position: relative;
  overflow: hidden;
}
.portfolio-three__item__rm__icon i {
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.2s ease-out;
}
.portfolio-three__item__rm__icon i:last-child {
  left: -15px;
  bottom: -15px;
  transform: translate(0, 0);
  opacity: 0;
  transition: all 0.6s ease-out;
}
.portfolio-three__item__rm:hover .portfolio-three__item__rm__icon i:first-child {
  transform: translate(16px, -16px);
}
.portfolio-three__item__rm:hover .portfolio-three__item__rm__icon i:last-child {
  opacity: 1;
  visibility: visible;
  transform: translate(15px, -15px);
}
.portfolio-three__item.active .portfolio-three__item__rm {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 300ms;
}
.portfolio-three--page .portfolio-three__item:hover .portfolio-three__item__content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}
.portfolio-three--page .portfolio-three__item:hover .portfolio-three__item__text {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 100ms;
}
.portfolio-three--page .portfolio-three__item:hover .portfolio-three__item__title {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 200ms;
}
.portfolio-three--page .portfolio-three__item:hover .portfolio-three__item__rm {
  opacity: 1;
  transform: translateY(0px);
  transition-delay: 300ms;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pagination .page-btn,
.pagination .lotech-btn {
  background: linear-gradient(135deg, #00A6D9 0%, #4188DE 100%);
  color: var(--lotech-white, #ffffff);
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.pagination .page-btn.active {
  background-color: var(--lotech-black, #0E0F11);
  color: #fff;
}

.pagination .page-btn:hover,
.pagination .lotech-btn:hover {
  background-color: var(--lotech-white, #ffffff);
  color: var(--lotech-base, #00A6D9);
}

.pagination button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details__title {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 32px;
  text-transform: capitalize;
  line-height: 1.3125;
}
@media (max-width: 430px) {
  .portfolio-details__title {
    font-size: 28px;
  }
}
.portfolio-details__thumbnail {
  margin-bottom: 28px;
}
.portfolio-details__thumbnail img {
  margin-bottom: 22px;
  width: 100%;
  display: block;
}
.portfolio-details__thumbnail__tagline {
  margin: 0;
}
.portfolio-details__description {
  margin-top: 12px;
  padding-top: 23px;
  border-top: 1px solid RGBA(var(--lotech-black-rgb, 14, 15, 17), 0.1);
}
.portfolio-details__description__text {
  margin: 0;
}
.portfolio-details__content__title {
  margin-bottom: 13px;
  font-weight: 700;
  font-size: 24px;
  text-transform: capitalize;
  line-height: 1.416;
}
.portfolio-details__content__text {
  margin-bottom: 16px;
}
.portfolio-details__images {
  padding-top: 26px;
  margin-bottom: 50px;
}
.portfolio-details__image + .portfolio-details__image {
  margin-top: 30px;
}
.portfolio-details__image {
  position: relative;
}
.portfolio-details__image img {
  width: 100%;
  display: block;
}
.portfolio-details__image .video-popup {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  font-size: 20px;
  color: var(--lotech-white, #ffffff);
  background-color: var(--lotech-base, #00A6D9);
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 1;
  transition: all 500ms ease;
}
.portfolio-details__image .video-popup svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .portfolio-details__image .video-popup {
    width: 70px;
    height: 70px;
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .portfolio-details__image .video-popup {
    width: 80px;
    height: 80px;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .portfolio-details__image .video-popup {
    width: 70px;
    height: 70px;
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .portfolio-details__image .video-popup {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 390px) {
  .portfolio-details__image .video-popup {
    width: 50px;
    height: 50px;
    font-size: 14px;
  }
}
.portfolio-details__image .video-popup > span {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  border: 1px solid var(--lotech-base, #00A6D9);
  border-radius: 50%;
  z-index: -1;
  transition: all 500ms ease;
  -webkit-animation: pulse-animate 4s linear infinite;
  animation: pulse-animate 4s linear infinite;
}
.portfolio-details__image .video-popup span:nth-child(2) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.portfolio-details__image .video-popup span:nth-child(3) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.portfolio-details__image .video-popup span:nth-child(4) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
@-webkit-keyframes pulse-animate {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
    opacity: 0;
  }
}
@keyframes pulse-animate {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Why Choose
--------------------------------------------------------------*/
.why-choose-one {
  position: relative;
  padding: 0 0 120px;
  counter-reset: count;
}
@media (max-width: 767px) {
  .why-choose-one {
    padding: 0 0 80px;
  }
}
.why-choose-one .sec-title {
  padding-bottom: 35px;
}
.why-choose-one__image {
  position: relative;
}
.why-choose-one__image img {
  max-width: 100%;
  height: auto;
}
.why-choose-one__accordion {
  position: relative;
}
@media (max-width: 991px) {
  .why-choose-one__accordion {
    margin-top: 45px;
  }
}
.why-choose-one__accordion .accrodion {
  margin: 0 0 0;
  position: relative;
  background-image: linear-gradient(124deg, #f6efff 0%, #ebf6f8 100%);
  transition: all 500ms ease;
  counter-increment: count;
  z-index: 2;
}
.why-choose-one__accordion .accrodion::after {
  position: absolute;
  top: 0;
  width: 100%;
  content: "";
  background-color: var(--lotech-base, #00A6D9);
  transition: all 350ms ease;
  height: 0;
  z-index: -1;
}
.why-choose-one__accordion .accrodion + .accrodion {
  margin-top: 24px;
}
.why-choose-one__accordion .accrodion-title {
  padding: 26.6px 30px;
  padding-right: 50px;
  cursor: pointer;
}
.why-choose-one__accordion .accrodion-title h4 {
  text-transform: capitalize;
  font-weight: bold;
  color: var(--lotech-black, #0E0F11);
  font-size: 24px;
  margin: 0;
  transition: all 500ms ease;
  position: relative;
}
.why-choose-one__accordion .accrodion-title__number {
  position: relative;
  left: 0;
  bottom: 0;
  top: 0;
  display: inline-block;
  line-height: 1;
}
.why-choose-one__accordion .accrodion-title__number::before {
  content: counters(count, ".", decimal-leading-zero);
  position: relative;
  display: inline-block;
}
.why-choose-one__accordion .accrodion-title__icon {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: -26px;
  transform: translateY(-50%);
}
.why-choose-one__accordion .accrodion-title__icon::before, .why-choose-one__accordion .accrodion-title__icon::after {
  width: 4px;
  height: 20px;
  position: absolute;
  background-color: var(--lotech-black, #0E0F11);
  border-radius: 8px;
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
  transition: all 500ms ease;
  z-index: 2;
}
.why-choose-one__accordion .accrodion-title__icon::after {
  width: 20px;
  height: 4px;
}
.why-choose-one__accordion .active::after {
  height: 100%;
}
.why-choose-one__accordion .active .accrodion-title h4 {
  color: var(--lotech-white, #ffffff);
}
.why-choose-one__accordion .active .accrodion-title__icon::after {
  background-color: var(--lotech-white, #ffffff);
}
.why-choose-one__accordion .active .accrodion-title__icon::before {
  opacity: 0;
}
.why-choose-one__accordion .accrodion-content .inner {
  padding: 0 30px 23px;
  margin-top: -10px;
}
.why-choose-one__accordion .accrodion-content .inner__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--lotech-white, #ffffff);
  font-family: var(--lotech-heading-font, "Yantramanav", serif);
  text-transform: capitalize;
}
.why-choose-one__accordion .accrodion-content .inner__btn__text {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.why-choose-one__accordion .accrodion-content .inner__btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11px;
  height: 11px;
  position: relative;
  overflow: hidden;
  font-size: 10px;
}
.why-choose-one__accordion .accrodion-content .inner__btn__icon i {
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.2s ease-out;
}
.why-choose-one__accordion .accrodion-content .inner__btn__icon i:last-child {
  left: -13px;
  bottom: -13px;
  transform: translate(0, 0);
  opacity: 0;
  transition: all 0.6s ease-out;
}
.why-choose-one__accordion .accrodion-content .inner__btn:hover .inner__btn__text {
  background-size: 100% 1px;
}
.why-choose-one__accordion .accrodion-content .inner__btn:hover .inner__btn__icon i:first-child {
  transform: translate(16px, -16px);
}
.why-choose-one__accordion .accrodion-content .inner__btn:hover .inner__btn__icon i:last-child {
  opacity: 1;
  visibility: visible;
  transform: translate(13px, -13px);
}
.why-choose-one__accordion .accrodion-content p {
  margin: 0 0 25px;
  color: var(--lotech-white, #ffffff);
}

.why-choose-two {
  position: relative;
  background-color: var(--lotech-base, #00A6D9);
}
.why-choose-two__shape {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: auto;
  opacity: 0.05;
}
.why-choose-two__content {
  position: relative;
  padding: 70px 0 20px 0px;
  
}
@media (max-width: 767px) {
  .why-choose-two__content {
    padding: 40px 0;
  }
}
.why-choose-two__content .sec-title__tagline.bw-split-text > div {
  background-image: linear-gradient(to left, rgba(var(--lotech-white-rgb, 255, 255, 255), 0.2) 50%, var(--lotech-white, #ffffff) 50%);
}
.why-choose-two__content .sec-title__title.bw-split-text > div {
  background-image: linear-gradient(to left, rgba(var(--lotech-white-rgb, 255, 255, 255), 0.1) 50%, var(--lotech-white, #ffffff) 50%);
}
.why-choose-two__content .sec-title {
  padding-bottom: 7px;
}
.why-choose-two__content__text {
  color: rgba(var(--lotech-white-rgb, 255, 255, 255), 0.9);
  margin: 0 0 30px;
}
@media (min-width: 1400px) {
  .why-choose-two__content__text {
    padding-right: 95px;
  }
}
.why-choose-two__content .lotech-btn {
  background-color: transparent;
  border: 1px solid var(--lotech-white, #ffffff);
  padding: 12px 24px;
}
.why-choose-two__content .lotech-btn:hover {
  border-color: transparent;
}
.why-choose-two__item {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 15px;
}
.why-choose-two__item__count {
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--lotech-white, #ffffff);
  margin: 0;
  position: relative;
  flex-shrink: 0;
}
.why-choose-two__item__count::before {
  box-sizing: inherit;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 1px solid transparent;
  border-top-color: transparent;
  border-top-color: var(--lotech-white, #ffffff);
  top: 0;
  left: 0;
  border-top-color: var(--lotech-white, #ffffff);
  border-bottom-color: var(--lotech-white, #ffffff);
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}
.why-choose-two__item__count::after {
  box-sizing: inherit;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 0 solid transparent;
  top: 0;
  left: 0;
  border-top: 1px solid var(--lotech-white, #ffffff);
  border-left-width: 1px;
  border-right-width: 1px;
  transform: rotate(270deg);
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
}
.why-choose-two__item__text {
  margin: 0;
  font-family: var(--lotech-heading-font, "Yantramanav", serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--lotech-white, #ffffff);
  text-transform: capitalize;
}
.why-choose-two__image {
  position: absolute; /* Changed to absolute for right-side positioning */
  right: 0; /* Positions to the right edge of the parent */
  display: inline-block;
  background-color: var(--lotech-white, #ffffff);
  padding-left: 50px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 28% 100%);
}

@media (max-width: 767px) {
  .why-choose-two__image {
    position: relative; /* Reverts to relative on mobile */
    padding: 0;
    clip-path: none;
  }
}

.why-choose-two__image img {
  max-height: 535px;
  max-width: 100%;
  object-fit: cover;
  object-position: right;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 25% 100%);
}

@media (max-width: 991px) {
  /* No need for absolute positioning on mobile */
  .why-choose-two__image {
    display: none !important;   /* fallback if JS fails */
  }
}

.cta__content__btn .lotech-btn__icon{
  position: absolute;
  left: 8px; /* Align to the right side */
  bottom: 30px;
  transition: all 0.2s ease-out;
  font-size: 12px; /* Adjust size if needed */
  margin-left: 5px; /* Space between text and first arrow */
}

.cta__content__btn .lotech-btn span i:last-child {
  right: -20px; /* Start off-screen to the right */
  bottom: -20px;
  transform: translate(0, 0);
  opacity: 0;
  transition: all 0.6s ease-out;
}


.why-choose-three {
  position: relative;
  padding: 120px 0 220px;
  background-color: var(--lotech-black, #0E0F11);
  margin-bottom: -100px;
}
@media (max-width: 767px) {
  .why-choose-three {
    padding: 80px 0 180px;
  }
}
.why-choose-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--lotech-black, #0E0F11);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.3;
}
.why-choose-three__content {
  position: relative;
}
.why-choose-three__content__text {
  font-size: 15px;
  line-height: 30px;
  color: rgba(var(--lotech-white-rgb, 255, 255, 255), 0.6);
  margin: 0;
}
.why-choose-three .sec-title__title {
  color: var(--lotech-white, #ffffff);
}
.why-choose-three .sec-title {
  padding-bottom: 26px;
}
.why-choose-three__list {
  position: relative;
  background-color: var(--lotech-black2, #000000);
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  row-gap: 0;
}
@media (max-width: 991px) {
  .why-choose-three__list {
    margin: 50px 0 0;
  }
}
.why-choose-three__item {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 40px 40px 36px;
}
.why-choose-three__item:nth-child(1), .why-choose-three__item:nth-child(3) {
  border-right: 1px solid rgba(var(--lotech-white-rgb, 255, 255, 255), 0.1);
}
.why-choose-three__item:nth-child(1), .why-choose-three__item:nth-child(2) {
  border-bottom: 1px solid rgba(var(--lotech-white-rgb, 255, 255, 255), 0.1);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-choose-three__item {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 767px) {
  .why-choose-three__item {
    flex: 0 0 100%;
    max-width: 100%;
    border-bottom: 1px solid rgba(var(--lotech-white-rgb, 255, 255, 255), 0.1);
  }
}
.why-choose-three__item:hover .why-choose-three__item__icon span {
  transform: scale(0.8);
}
.why-choose-three__item__top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.why-choose-three__item__icon {
  width: 57px;
  height: 57px;
  background-color: var(--lotech-base, #00A6D9);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--lotech-white, #ffffff);
  font-size: 21px;
  margin-right: 18px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-choose-three__item__icon {
    margin-right: 12px;
  }
}
.why-choose-three__item__icon span {
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0s;
  transition-delay: 0s;
  transition-delay: 0.1s;
  transform: scale(1);
}
.why-choose-three__item__title {
  color: var(--lotech-white, #ffffff);
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}
.why-choose-three__item__text {
  color: var(--lotech-text, #596171);
  font-size: 15px;
  line-height: 30px;
  margin: 0;
}

/*--------------------------------------------------------------
# Funfact
--------------------------------------------------------------*/
.funfact-one {
  position: relative;
  padding: 0 0 116px;
}
@media (max-width: 767px) {
  .funfact-one {
    padding: 0 0 76px;
  }
}
.funfact-one__item {
  position: relative;
}
.funfact-one__item__count {
  margin: 0 0 11px;
  font-size: 96px;
  font-weight: 400;
  line-height: 1;
  transition: all 0.3s ease;
}
.funfact-one__item:hover .funfact-one__item__count {
  color: var(--lotech-base, #00A6D9);
  animation: bounceIn 1s linear;
  animation-duration: 1s;
  animation-duration: 1s;
}
.funfact-one__item__divider {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(var(--lotech-black-rgb, 14, 15, 17), 0.2);
}
.funfact-one__item:hover .funfact-one__item__divider {
  background-color: var(--lotech-base, #00A6D9);
  animation: widths 2s infinite;
}
.funfact-one__item__text {
  margin: 12px 0 0;
}

.funfact-two {
  position: relative;
  background-color: var(--lotech-base, #00A6D9);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 120px 0;
}
.funfact-two__shape {
  position: absolute;
  left: -10px;
  top: 0;
}
.funfact-two__shape img {
  animation: shapeMove 3s linear 0s infinite;
}
@media (max-width: 767px) {
  .funfact-two {
    padding: 80px 0;
  }
}
.funfact-two .sec-title {
  padding-bottom: 33px;
}
.funfact-two .sec-title__tagline,
.funfact-two .sec-title__title {
  color: var(--lotech-white, #ffffff);
}
.funfact-two__list {
  position: relative;
  background-color: var(--lotech-white, #ffffff);
  margin: 0 0 0 -7px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  row-gap: 0;
}
@media (max-width: 991px) {
  .funfact-two__list {
    margin: 50px 0 0;
  }
}
.funfact-two__list__icon {
  width: 94px;
  height: 94px;
  background-color: var(--lotech-base, #00A6D9);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.funfact-two__list__icon img {
  height: 65px;
  transform: scale(1);
  transition: 500ms ease;
}
@media (max-width: 767px) {
  .funfact-two__list__icon {
    display: none;
  }
}
.funfact-two__list:hover .funfact-two__list__icon img {
  transform: scale(0.9);
}
.funfact-two__item {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 42px 58px;
}
.funfact-two__item:nth-child(1), .funfact-two__item:nth-child(3) {
  border-right: 1px solid var(--lotech-base, #00A6D9);
}
.funfact-two__item:nth-child(1), .funfact-two__item:nth-child(2) {
  border-bottom: 1px solid var(--lotech-base, #00A6D9);
}
@media (max-width: 1199px) {
  .funfact-two__item {
    padding-left: 30px;
    padding-right: 25px;
  }
}
@media (max-width: 991px) {
  .funfact-two__item {
    padding-left: 50px;
  }
}
@media (max-width: 767px) {
  .funfact-two__item {
    padding-left: 50px;
    flex: 0 0 100%;
    max-width: 100%;
    border-bottom: 1px solid var(--lotech-base, #00A6D9);
  }
}
.funfact-two__count {
  margin: 0;
  color: var(--lotech-black, #0E0F11);
  font-size: 40px;
  font-family: var(--lotech-font, "DM Sans", serif);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0px;
}
@media (min-width: 768px) {
  .funfact-two__count {
    font-size: 50px;
  }
}
.funfact-two__text {
  margin: 0;
  font-size: 18px;
  margin: 0;
}

.funfact-three {
  position: relative;
  padding: 100px 0;
}
@media (max-width: 767px) {
  .funfact-three {
    padding: 80px 0 50px;
  }
}
.funfact-three__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--lotech-gray, #D9D9D9);
}
@media (min-width: 1400px) {
  .funfact-three__bg {
    width: calc(100% - 240px);
    left: 120px;
  }
}
.funfact-three__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  row-gap: 0;
}
@media (max-width: 767px) {
  .funfact-three__list {
    display: block;
  }
}
.funfact-three__item {
  flex: 0 0 25%;
  max-width: 25%;
  position: relative;
}
@media (max-width: 991px) {
  .funfact-three__item {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 0 30px !important;
  }
}
@media (max-width: 767px) {
  .funfact-three__item {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 0 30px !important;
    text-align: center;
  }
}
.funfact-three__item:not(:last-of-type)::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--lotech-border-color, #ECECEC);
  position: absolute;
  top: 0;
  right: 54px;
}
@media (max-width: 991px) {
  .funfact-three__item:not(:last-of-type)::before {
    right: 50px !important;
  }
}
@media (max-width: 767px) {
  .funfact-three__item:not(:last-of-type)::before {
    display: none;
  }
}
.funfact-three__item:not(:first-of-type) {
  padding-left: 37px;
}
@media (max-width: 1199px) {
  .funfact-three__item:not(:first-of-type) {
    padding-left: 0;
  }
}
.funfact-three__item:nth-child(2)::before {
  right: 16px;
}
@media (max-width: 991px) {
  .funfact-three__item:nth-child(2)::before {
    display: none;
  }
}
.funfact-three__item:nth-child(3)::before {
  right: -20px;
}
.funfact-three__item:nth-child(3) {
  padding-left: 63px;
}
@media (max-width: 1199px) {
  .funfact-three__item:nth-child(3) {
    padding-left: 40px;
  }
}
.funfact-three__item:last-child {
  padding-left: 104px;
}
@media (max-width: 1199px) {
  .funfact-three__item:last-child {
    padding-left: 70px;
  }
}
.funfact-three__item:hover .funfact-three__icon::before {
  transform: scale(0.9);
}
.funfact-three__icon {
  width: 103px;
  height: 104px;
  background-color: var(--lotech-base, #00A6D9);
  font-size: 60px;
  color: var(--lotech-white, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 13px;
}
@media (max-width: 767px) {
  .funfact-three__icon {
    margin-left: auto;
    margin-right: auto;
  }
}
.funfact-three__icon::before {
  transition: all 500ms linear;
  transition-delay: 0s;
  transition-delay: 0s;
  transition-delay: 0s;
  transition-delay: 0s;
  transition-delay: 0.1s;
  transform: scale(1);
}
.funfact-three__count {
  margin: 0;
  color: var(--lotech-black, #0E0F11);
  font-family: var(--lotech-font, "DM Sans", serif);
  font-size: 35px;
  font-weight: 500;
  line-height: 1;
}
@media (min-width: 768px) {
  .funfact-three__count {
    font-size: 40px;
  }
}
.funfact-three__text {
  margin: 0;
  color: var(--lotech-text, #596171);
  font-size: 16px;
  margin-top: 9px;
  margin-bottom: -6px;
}

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
.cta-one {
  position: relative;
  padding: 130px 0;
}
@media (max-width: 767px) {
  .cta-one {
    padding: 80px 0;
  }
}
.cta-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.cta-one__bg::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: linear-gradient(90deg, rgba(var(--lotech-black-rgb, 14, 15, 17), 0.9) 0%, rgba(var(--lotech-black-rgb, 14, 15, 17), 0.8) 39%, rgba(var(--lotech-black-rgb, 14, 15, 17), 0.3) 100%);
}
.cta-one__content {
  position: relative;
  z-index: 1;
  max-width: 750px;
}
.cta-one__tagline {
  color: var(--lotech-base, #00A6D9);
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 13px;
}
.cta-one__title {
  font-size: 48px;
  line-height: 52px;
  font-weight: 700;
  color: var(--lotech-white, #ffffff);
  margin: 0 0 4px;
}
@media (max-width: 767px) {
  .cta-one__title {
    font-size: 36px;
    line-height: 46px;
  }
}
.cta-one__text {
  font-size: 22px;
  color: rgba(var(--lotech-white-rgb, 255, 255, 255), 0.7);
  margin: 10px 40px 40px 2px;
  text-align: justify;
}
.cta-one .lotech-btn::after {
  background-color: var(--lotech-white, #ffffff);
}
.cta-one .lotech-btn:hover {
  background-color: var(--lotech-white, #ffffff);
  color: var(--lotech-black, #0E0F11);
}
.cta-one__box {
  position: relative;
  background-color: var(--lotech-white, #ffffff);
  padding: 24px 50px 30px 30px;
  border-radius: 8px;
}
@media (max-width: 991px) {
  .cta-one__box {
    margin-top: 45px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .cta-one__box {
    margin-left: -40px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cta-one__box {
    display: none !important;
  }
}
@media (max-width: 574px) {
  .cta-one__box {
   display: none !important;
  }
}
.cta-one__box__image {
  position: absolute;
  right: 0;
  top: 0;
  width: 256px;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  clip-path: polygon(100% 0, 100% 100%, 88% 100%, 0 35%, 26% 0);
}
@media (max-width: 574px) {
  .cta-one__box__image {
    width: 180px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cta-one__box__image {
    width: 180px;
  }
}
.cta-one__box__icon {
  width: 148px;
  height: 91px;
  background-color: var(--lotech-base, #00A6D9);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 32px;
  color: var(--lotech-white, #ffffff);
  font-size: 48px;
  clip-path: polygon(0 0, 100% 0, 64% 100%, 0% 100%);
  transition: all 400ms linear;
  margin: 0 0 44px;
}
.cta-one__box__title {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  position: relative;           /* above overlay */
  z-index: 3;
}
@media (max-width: 574px) {
  .cta-one__box__title { font-size: 20px; }
}

.cta-one__box__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  position: relative;
  z-index: 3;
}
.cta-one__box::before {
  z-index: 2;
}
.cta-two {
  position: relative;
  background-color: var(--lotech-black, #0E0F11);
  padding: 120px 0;
}
@media (max-width: 767px) {
  .cta-two {
    padding: 80px 0;
  }
}
.cta-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.cta-two__bg::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: linear-gradient(90deg, rgba(244, 141, 40, 0.5) 35%, rgb(244, 141, 40) 95%);
}
.cta-two__shpe-one {
  position: absolute;
  left: 0;
  top: 80px;
  width: 107px;
  height: 225px;
  background-position: left top;
  animation: movebounce3 4s linear infinite;
}
@media (max-width: 1199px) {
  .cta-two__shpe-one {
    display: none;
  }
}
.cta-two__shpe-two {
  position: absolute;
  left: 0;
  top: 100px;
  width: 107px;
  height: 225px;
  background-position: left top;
  animation: movebounce3 3s linear infinite;
}
@media (max-width: 1199px) {
  .cta-two__shpe-two {
    display: none;
  }
}
.cta-two__shpe-three {
  position: absolute;
  right: 0;
  top: 150px;
  width: 166px;
  height: 225px;
  background-position: right top;
  animation: movebounce3 4s linear infinite;
}
@media (max-width: 1199px) {
  .cta-two__shpe-three {
    display: none;
  }
}
.cta-two__shpe-four {
  position: absolute;
  right: 0;
  top: 170px;
  width: 166px;
  height: 225px;
  background-position: right top;
  animation: movebounce3 3s linear infinite;
}
@media (max-width: 1199px) {
  .cta-two__shpe-four {
    display: none;
  }
}
.cta-two__content {
  position: relative;
  z-index: 1;
}
.cta-two__content .sec-title {
  padding-bottom: 30px;
}
.cta-two__content .sec-title__tagline {
  color: var(--lotech-white, #ffffff);
}
.cta-two__content .sec-title__tagline__border {
  background-color: var(--lotech-white, #ffffff);
}
.cta-two__content .sec-title__tagline__border::after {
  background-color: var(--lotech-white, #ffffff);
}
.cta-two__content .sec-title__title {
  color: var(--lotech-white, #ffffff);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cta-two__content .sec-title__title {
    font-size: 46px;
    line-height: 56px;
  }
}
.cta-two__content .sec-title__title span {
  color: var(--lotech-white, #ffffff);
}
.cta-two__content .lotech-btn {
  background-color: var(--lotech-black, #0E0F11);
  color: var(--lotech-white, #ffffff);
}
.cta-two__content .lotech-btn::after {
  background-color: var(--lotech-white, #ffffff);
}
.cta-two__content .lotech-btn:hover {
  color: var(--lotech-base, #00A6D9);
  background-color: var(--lotech-white, #ffffff);
}

.cta-three {
  position: relative;
}
.cta-three__inner {
  position: relative;
  background-color: var(--lotech-black, #0E0F11);
  border-radius: 20px;
  overflow: hidden;
  padding: 55px;
}
@media (max-width: 767px) {
  .cta-three__inner {
    padding: 40px 25px;
  }
}
.cta-three__inner__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: lighten;
  opacity: 0.3;
}
.cta-three__sub-title {
  position: relative;
  text-transform: uppercase;
  color: var(--lotech-base, #00A6D9);
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  margin: 0 0 14px;
}
.cta-three__title {
  position: relative;
  color: var(--lotech-white, #ffffff);
  text-transform: uppercase;
  font-size: 45px;
  font-weight: 700;
  letter-spacing: -1.29px;
  margin: 0 0 11px;
}
@media (max-width: 767px) {
  .cta-three__title {
    font-size: 35px;
  }
}
.cta-three__title span {
  font-weight: 500;
}
.cta-three__text {
  position: relative;
  color: var(--lotech-white, #ffffff);
  text-transform: capitalize;
  font-weight: 500;
  line-height: 30px;
  margin: 0 0 40px;
}
@media (max-width: 1199px) {
  .cta-three__text {
    max-width: 425px;
  }
  .cta-three__text br {
    display: none;
  }
}
@media (max-width: 991px) {
  .cta-three__text {
    max-width: 100%;
  }
}
.cta-three__btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cta-three__btn img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.cta-three__image {
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: right;
}
@media (max-width: 991px) {
  .cta-three__image {
    display: none;
  }
}
.cta-three__image img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 1199px) {
  .cta-three__image img {
    max-width: 80%;
  }
}
.cta-three__star {
  position: absolute;
  right: 18%;
  top: 42px;
  width: 84px;
  height: 89px;
  animation: startIconOne 1.8s infinite alternate;
}
@media (max-width: 767px) {
  .cta-three__star {
    right: 20px;
    top: 20px;
  }
}

.cta-four {
  position: relative;
  padding: 60px 0;
}
.cta-four__item {
  position: relative;
  background-color: var(--accent-color);
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cta-four__item {
    padding-left: 20px;
  }
}
.cta-four__item::after {
  background: rgba(var(--lotech-white-rgb, 255, 255, 255), 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  transition: all 400ms linear;
}
.cta-four__item:hover::after {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 400ms linear;
}
.cta-four__item::before {
  background: rgba(var(--lotech-white-rgb, 255, 255, 255), 0.3);
  bottom: 50%;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 51%;
  opacity: 1;
  pointer-events: none;
  transition: all 400ms linear;
}
.cta-four__item:hover::before {
  bottom: 0;
  top: 0;
  opacity: 0;
  transition: all 400ms linear;
}
.cta-four__item__image {
  position: absolute;
  right: -2px;
  bottom: -2px;
  text-align: right;
}
.cta-four__item__image img {
  max-width: 100%;
  height: auto;
  transition: all 400ms linear;
  transform: scale(1);
}
@media (max-width: 1199px) {
  .cta-four__item__image img {
    max-width: 90%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cta-four__item__image img {
    max-width: 80%;
  }
}
.cta-four__item:hover .cta-four__item__image img {
  transform: scale(0.97);
}
.cta-four__item__sub-title {
  display: inline-block;
  background-color: var(--lotech-base, #00A6D9);
  color: var(--lotech-white, #ffffff);
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  text-transform: capitalize;
  line-height: 26px;
  padding: 0 10.5px;
  margin: 0 0 13px;
}
.cta-four__item__title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.48px;
  margin: 0 0 8px;
}
@media (max-width: 1199px) {
  .cta-four__item__title {
    font-size: 22px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .cta-four__item__title {
    font-size: 20px;
    line-height: 30px;
  }
}
.cta-four__item__text {
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 500;
  margin: 0 0 18px;
}
.cta-four__item__rm {
  font-weight: 500;
  color: var(--lotech-black, #0E0F11);
  font-size: 16px;
  text-transform: capitalize;
  display: inline-block;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  margin-bottom: -2px;
}
.cta-four__item__rm:hover {
  background-size: 100% 1px;
}
.cta-four__item__rm i {
  color: var(--lotech-base, #00A6D9);
  display: inline-block;
  margin-left: 7px;
  font-size: 14px;
  position: relative;
  top: 2px;
}
.cta-four__item__rm:hover {
  color: var(--lotech-base, #00A6D9);
  text-shadow: 0 0 1px currentColor;
}

.cta-five {
  position: relative;
  padding: 0 0 60px;
}
.cta-five__item {
  position: relative;
  background-color: var(--lotech-base, #00A6D9);
  border-radius: 20px;
  padding: 40px 40px 0;
  min-height: 406px;
}
.cta-five__item::after {
  background: rgba(var(--lotech-white-rgb, 255, 255, 255), 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  transition: all 400ms linear;
}
.cta-five__item:hover::after {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 400ms linear;
}
.cta-five__item::before {
  background: rgba(var(--lotech-white-rgb, 255, 255, 255), 0.3);
  bottom: 50%;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  z-index: 1;
  top: 51%;
  opacity: 1;
  pointer-events: none;
  transition: all 400ms linear;
}
.cta-five__item:hover::before {
  bottom: 0;
  top: 0;
  opacity: 0;
  transition: all 400ms linear;
}
.cta-five__item__sub-title {
  position: relative;
  z-index: 2;
  border: 1px solid var(--lotech-white, #ffffff);
  border-radius: 100px;
  line-height: 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--lotech-white, #ffffff);
  text-transform: capitalize;
  display: inline-block;
  padding: 0 9px;
  margin: 0 0 17px;
}
.cta-five__item__title {
  position: relative;
  z-index: 2;
  margin: 0 0 7px;
  font-size: 30px;
  font-weight: 700;
  color: var(--lotech-white, #ffffff);
  text-transform: uppercase;
  letter-spacing: -0.6px;
}
.cta-five__item__text {
  position: relative;
  z-index: 2;
  font-size: 16px;
  font-weight: 700;
  color: var(--lotech-white, #ffffff);
  text-transform: capitalize;
  margin: 0 0 24px;
}
.cta-five__item__rm {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 16px;
  font-weight: 500;
  color: var(--lotech-white, #ffffff);
  text-transform: capitalize;
}
.cta-five__item__rm span {
  display: inline-block;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 400ms ease;
}
.cta-five__item__rm i {
  position: relative;
  width: 30px;
  height: 30px;
  background-color: var(--lotech-white, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--lotech-base, #00A6D9);
  border-radius: 50%;
}
.cta-five__item__rm:hover span {
  background-size: 100% 1px;
}
.cta-five__item__image {
  position: relative;
  text-align: center;
  line-height: 1;
  position: absolute;
  padding: 0 15px;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 1199px) {
  .cta-five__item__image img {
    max-width: 100%;
  }
}
.cta-five__item--two {
  position: relative;
  overflow: hidden;
}
.cta-five__item--two .cta-five__item__image {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
}
.cta-five__item--two .cta-five__item__image::after {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background-image: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}
.cta-five__item--two .cta-five__item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-six {
  position: relative;
  padding: 0 0 60px;
}
.cta-six__inner {
  position: relative;
  background-color: rgba(var(--lotech-base-rgb, 73, 70, 236), 0.1);
  border: 1px dashed var(--lotech-base, #00A6D9);
  border-radius: 10px;
  padding: 0px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-six__text {
  padding: 25px 0;
  position: relative;
}
@media (max-width: 991px) {
  .cta-six__text {
    padding-bottom: 0;
  }
}
.cta-six__sub-title {
  position: relative;
  display: inline-block;
  background-color: var(--lotech-base, #00A6D9);
  color: var(--lotech-white, #ffffff);
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  text-transform: capitalize;
  line-height: 24px;
  padding: 0 10.5px;
  margin: 0 0 21px;
}
.cta-six__title {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  font-weight: 600;
}
.cta-six__middle {
  color: var(--lotech-white, #ffffff);
  -webkit-text-stroke: 1px var(--lotech-base, #00A6D9);
  font-size: 70px;
  font-weight: 800;
  position: relative;
}
@media (min-width: 1200px) {
  .cta-six__middle {
    padding-left: 50px;
  }
}
.cta-six__coupone {
  font-size: 14px;
  color: var(--lotech-black, #0E0F11);
  display: flex;
  align-items: center;
  gap: 13px;
}
@media (max-width: 1199px) {
  .cta-six__coupone {
    margin: -40px 0 20px;
  }
}
@media (max-width: 991px) {
  .cta-six__coupone {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .cta-six__coupone {
    margin-bottom: 20px;
  }
}
.cta-six__coupone span {
  font-size: 24px;
  color: var(--lotech-base, #00A6D9);
  font-weight: 600;
  display: inline-block;
}

.cta-seven {
  position: relative;
  padding: 60px 0;
}
.cta-seven__inner {
  position: relative;
  background-color: var(--lotech-black, #0E0F11);
  border-radius: 20px;
  overflow: hidden;
  padding: 60px 65px 57px;
}
@media (max-width: 767px) {
  .cta-seven__inner {
    padding: 40px 25px;
  }
}
.cta-seven__inner::after {
  background: rgba(var(--lotech-white-rgb, 255, 255, 255), 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  transition: all 400ms linear;
}
.cta-seven__inner:hover::after {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 400ms linear;
}
.cta-seven__inner::before {
  background: rgba(var(--lotech-white-rgb, 255, 255, 255), 0.3);
  bottom: 50%;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 51%;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
  transition: all 400ms linear;
}
.cta-seven__inner:hover::before {
  bottom: 0;
  top: 0;
  opacity: 0;
  transition: all 400ms linear;
}
.cta-seven__inner__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cta-seven__inner__bg::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: linear-gradient(90deg, rgb(33, 34, 38) 22%, rgba(235, 62, 50, 0) 100%);
}
.cta-seven__sub-title {
  position: relative;
  display: inline-block;
  background-color: var(--lotech-base, #00A6D9);
  color: var(--lotech-white, #ffffff);
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  text-transform: capitalize;
  line-height: 24px;
  padding: 0 10.5px;
  margin: 0 0 19px;
}
.cta-seven__title {
  position: relative;
  color: var(--lotech-white, #ffffff);
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.6px;
  margin: 0 0 16px;
}
.cta-seven__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 29px;
}
.cta-seven__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--lotech-white, #ffffff);
  text-transform: capitalize;
  font-weight: 700;
}
.cta-seven__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 991px) {
  .cta-seven__btn {
    justify-content: flex-start;
    margin: 30px 0 0;
  }
}
.cta-seven__btn .lotech-btn {
  background-color: var(--lotech-white, #ffffff);
  border-radius: 10px;
  color: var(--lotech-base, #00A6D9);
  padding: 15px 21px;
}
.cta-seven__btn .lotech-btn i {
  font-size: 15px;
  margin-right: 10px;
}
.cta-seven__btn .lotech-btn:hover {
  background-color: var(--lotech-base, #00A6D9);
  color: var(--lotech-white, #ffffff);
}
.cta-seven__btn .lotech-btn::after {
  background-color: var(--lotech-base, #00A6D9);
}

.car-showcase {
  position: relative;
  padding: 0 120px 120px;
}
@media (max-width: 1700px) {
  .car-showcase {
    padding: 0 30px 120px;
  }
}
@media (max-width: 1199px) {
  .car-showcase {
    padding: 0 15px 120px;
  }
}
@media (max-width: 767px) {
  .car-showcase {
    padding-bottom: 80px;
  }
}
.car-showcase__inner {
  position: relative;
  z-index: 1;
  background-color: var(--lotech-gray, #D9D9D9);
  text-align: center;
  padding: 14px 50px 12px;
}
@media (max-width: 1199px) {
  .car-showcase__inner {
    padding: 14px 30px 12px;
  }
}
@media (max-width: 767px) {
  .car-showcase__inner {
    padding: 14px 20px 12px;
  }
}
.car-showcase__inner::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 77.6%;
  height: 100%;
  content: "";
  background-color: var(--lotech-base, #00A6D9);
  clip-path: polygon(0 0, 72% 0, 100% 100%, 0% 100%);
  z-index: -1;
}
.car-showcase__inner img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  animation: movebounce2 3s linear 0s infinite;
}
.car-showcase__name {
  position: absolute;
  left: 55px;
  top: 52px;
  width: 81%;
  height: 37%;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}
.car-showcase__blop {
  position: absolute;
  right: 102px;
  top: 50px;
  width: 331px;
  height: 356px;
  z-index: -1;
}
@media (max-width: 1700px) {
  .car-showcase__blop {
    right: 50px;
    top: 30px;
  }
}
@media (max-width: 1300px) {
  .car-showcase__blop {
    display: none;
  }
}
.car-showcase--about {
  padding-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery-page {
  background-color: var(--lotech-white, #ffffff);
}
.gallery-page--filter .post-pagination {
  margin-top: 50px;
}
.gallery-page__filter {
  margin-bottom: 50px;
}
.gallery-page__filter__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px;
}
.gallery-page__filter__list li {
  cursor: pointer;
  padding: 9px 28px;
}
.gallery-page__filter__list li.active {
  color: var(--lotech-white, #ffffff);
  background-color: var(--lotech-black, #0E0F11);
}
.gallery-page__card {
  position: relative;
  overflow: hidden;
}
.gallery-page__card img {
  width: 100%;
  display: block;
  transform: scale(1);
  transition: transform 500ms ease, opacity 500ms ease;
  opacity: 1;
}
.gallery-page__card__hover {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 10, 30, 0) 0%, #003CEA 100%);
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: rotateY(-90deg);
  -moz-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
  -webkit-transition: -webkit-transform 0.5s, opacity 0.1s 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.1s 0.3s;
  transition: transform 0.5s, opacity 0.1s 0.3s;
}
.gallery-page__card__hover .img-popup {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--lotech-base, #00A6D9);
  font-size: 14px;
  color: var(--lotech-white, #ffffff);
}
.gallery-page__card__hover .img-popup:hover {
  background-color: var(--lotech-white, #ffffff);
  color: var(--lotech-base, #00A6D9);
  transform: rotate(45deg);
}
.gallery-page__card__hover .img-popup svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.gallery-page__card:hover img {
  transform: scale(1.05);
}
.gallery-page__card:hover .gallery-page__card__hover {
  opacity: 1;
  -webkit-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transition: -webkit-transform 0.5s, opacity 0.1s;
  -moz-transition: -moz-transform 0.5s, opacity 0.1s;
  transition: transform 0.5s, opacity 0.1s;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog-details__title {
  margin-bottom: 38px;
  font-weight: 700;
  font-size: 32px;
  text-transform: capitalize;
  line-height: 1.3125;
}
.blog-details__thumbnail {
  margin-bottom: 16px;
}
.blog-details__thumbnail img {
  margin-bottom: 22px;
  width: 100%;
  display: block;
}
.blog-details__thumbnail__title {
  margin-bottom: 11px;
}
.blog-details__description__text {
  margin: 0;
}
.blog-details__description__text + .blog-details__description__text {
  margin-top: 15px;
}
.blog-details__content__text {
  margin: 0;
}
.blog-details__content__info {
  margin-bottom: 38px;
}
.blog-details__content__info li + li {
  margin-top: 10px;
}
.blog-details__content__info li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.blog-details__content__info__left {
  flex: 0 0 200px;
  display: inline-block;
  font-weight: 700;
  color: var(--lotech-black, #0E0F11);
}
@media (max-width: 767px) {
  .blog-details__content__info__left {
    flex: 0 0 130px;
  }
}
@media (max-width: 430px) {
  .blog-details__content__info__left {
    flex: 0 0 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-details__content__info__left {
    flex: 0 0 130px;
  }
}
.blog-details__content__quote {
  margin-bottom: 34px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 18px;
  color: var(--lotech-black, #0E0F11);
  font-weight: 700;
  line-height: 1.555;
}
.blog-details__content__quote__icon {
  font-size: 50px;
  color: var(--lotech-base, #00A6D9);
  line-height: 1;
}
.blog-details__content__inner {
  margin: 42px 0px 43px;
}
.blog-details__content__image img {
  width: 100%;
  display: block;
}
.blog-details__content__list {
  margin: 35px 0px 37px;
}
.blog-details__content__list li + li {
  margin-top: 10px;
}
.blog-details__content__list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.blog-details__content__list__icon {
  position: relative;
  top: 5px;
  display: inline-flex;
  font-size: 15px;
  color: var(--lotech-black, #0E0F11);
}
.blog-details__content__list__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.blog-details__meta {
  margin-bottom: 50px;
}
.blog-details__tags {
  margin-bottom: 42px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
}
.blog-details__tags__title {
  margin: 0;
  flex-shrink: 0;
  font-family: var(--lotech-font, "DM Sans", serif);
  font-weight: 700;
  font-size: 16px;
  text-transform: capitalize;
  line-height: 1.625;
}
.blog-details__tags__box {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.blog-details__tags__box a {
  color: var(--lotech-text, #596171);
}
.blog-details__tags__box a:hover {
  color: var(--lotech-base, #00A6D9);
}
.blog-details__tags__box a:not(:last-of-type)::after {
  content: ",";
  position: relative;
  top: -1px;
  margin-right: 6px;
  font-size: 16px;
  color: var(--lotech-text, #596171);
}
.blog-details__card {
  padding: 50px;
  display: flex;
  align-items: flex-start;
  gap: 48px;
  background: linear-gradient(119.31deg, #F6EFFF 0%, #EBF6F8 100%);
}
@media (max-width: 767px) {
  .blog-details__card {
    padding: 40px;
    gap: 40px;
  }
}
@media (max-width: 575px) {
  .blog-details__card {
    padding: 30px;
    flex-direction: column;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-details__card {
    padding: 40px;
    gap: 40px;
  }
}
.blog-details__card__info {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 767px) {
  .blog-details__card__info {
    flex-direction: column;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-details__card__info {
    flex-direction: column;
  }
}
.blog-details__card__image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  flex-shrink: 0;
}
.blog-details__card__name {
  margin-bottom: 10px;
  font-family: var(--lotech-font, "DM Sans", serif);
  font-weight: 700;
  font-size: 24px;
  text-transform: capitalize;
  line-height: 1.416;
}
.blog-details__card__text {
  margin: 0;
}
.blog-details__card__social {
  width: 50px;
  height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  font-size: 18px;
  color: var(--lotech-black, #0E0F11);
  background-color: var(--lotech-white, #ffffff);
  overflow: hidden;
  z-index: 1;
  transition: all 500ms ease;
}
.blog-details__card__social::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--lotech-base, #00A6D9);
  border-radius: inherit;
  z-index: -1;
  transition: all 500ms ease;
}
.blog-details__card__social:hover {
  color: var(--lotech-white, #ffffff);
}
.blog-details__card__social:hover::after {
  width: 100%;
  height: 100%;
}
.blog-details__card__social svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-details .comment-one__content {
    flex-direction: column;
    justify-content: flex-start;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .blog-details__form .form-one__group {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-details__form .form-one__group {
    grid-template-columns: 1fr;
  }
}

/*--------------------------------------------------------------
# Shop
--------------------------------------------------------------*/
.product__showing {
  position: relative;
  margin-bottom: 26px;
  padding: 25px 0;
  border-top: 1px solid var(--lotech-border-color, #ECECEC);
  border-bottom: 1px solid var(--lotech-border-color, #ECECEC);
  z-index: 2;
}
.product__showing__left {
  display: flex;
  align-items: center;
  gap: 25px 20px;
}
@media (max-width: 991px) {
  .product__showing__left {
    justify-content: space-between;
  }
}
@media (max-width: 575px) {
  .product__showing__left {
    flex-direction: column;
  }
}
.product__showing__btn-box {
  display: flex;
  align-items: center;
  gap: 15px;
}
.product__showing__grid, .product__showing__list {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.product__showing__grid {
  background-color: var(--lotech-base, #00A6D9);
  font-size: 16px;
  color: var(--lotech-white, #ffffff);
  transition: all 500ms ease;
}
.product__showing__grid:hover {
  background-color: var(--lotech-black, #0E0F11);
}
.product__showing__grid svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.product__showing__list {
  background-color: RGBA(var(--lotech-base-rgb, 73, 70, 236), 0.1);
}
.product__showing__list:hover {
  background-color: var(--lotech-base, #00A6D9);
}
.product__showing__list__inner {
  display: block;
  width: 18px;
}
.product__showing__list__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--lotech-black, #0E0F11);
  margin: 4px 0;
  transition: all 500ms ease;
}
.product__showing__list:hover .product__showing__list__line {
  background-color: var(--lotech-white, #ffffff);
}
.product__showing__text {
  margin-bottom: 0;
}
.product__showing__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px 20px;
}
@media (max-width: 991px) {
  .product__showing__right {
    justify-content: space-between;
  }
}
@media (max-width: 575px) {
  .product__showing__right {
    flex-direction: column;
  }
}
.product__showing__sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  font-family: var(--lotech-font, "DM Sans", serif);
  position: relative;
  display: block;
  width: 100%;
  min-width: 270px !important;
  background-color: RGBA(var(--lotech-base-rgb, 73, 70, 236), 0.1);
  border-radius: 0px;
}
@media (max-width: 575px) {
  .product__showing__sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    min-width: 290px !important;
  }
}
.product__showing__sort .bootstrap-select > .dropdown-toggle::after {
  display: none;
}
.product__showing__sort .bootstrap-select .dropdown-menu {
  border: none;
}
.product__showing__sort .bootstrap-select > .dropdown-toggle {
  position: relative;
  height: 50px;
  outline: none !important;
  border-radius: inherit;
  border: 0;
  background-color: transparent !important;
  margin: 0;
  padding: 0;
  padding-left: 20px;
  padding-right: 35px;
  font-family: var(--lotech-font, "DM Sans", serif);
  color: var(--lotech-text, #596171) !important;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 50px;
  font-weight: 500;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}
.product__showing__sort .bootstrap-select > .dropdown-toggle > .filter-option {
  text-align: left;
}
@media (max-width: 767px) {
  .product__showing__sort .bootstrap-select > .dropdown-toggle > .filter-option {
    text-align: left;
  }
}
.product__showing__sort .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 20px;
  color: var(--lotech-black, #0E0F11);
}
.product__showing__sort .bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--lotech-gray, #D9D9D9);
}
.product__showing__sort .bootstrap-select .dropdown-menu > li > a {
  font-size: 15px;
  font-weight: 500;
  padding: 10px 20px 11px;
  font-family: var(--lotech-font, "DM Sans", serif);
  color: var(--lotech-black, #0E0F11);
  background-color: RGBA(var(--lotech-base-rgb, 73, 70, 236), 0.1);
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.product__showing__sort .bootstrap-select .dropdown-menu > li:hover > a,
.product__showing__sort .bootstrap-select .dropdown-menu > li.selected > a {
  background-color: var(--lotech-base, #00A6D9);
  color: var(--lotech-white, #ffffff);
  border-color: var(--lotech-base, #00A6D9);
}
.product__showing__filter {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 15px 25px;
  background-color: var(--lotech-base, #00A6D9);
  transition: all 500ms ease;
}
.product__showing__filter:hover {
  background-color: var(--lotech-black, #0E0F11);
}
.product__showing__filter__icon {
  display: inline-flex;
  font-size: 14px;
  color: var(--lotech-white, #ffffff);
}
.product__showing__filter__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.product__showing__filter__text {
  font-size: 16px;
  font-weight: 400;
  color: var(--lotech-white, #ffffff);
  line-height: 1.25;
  text-transform: capitalize;
}
.product__card {
  border: 1px solid var(--lotech-border-color, #ECECEC);
}
.product__card__image {
  position: relative;
  overflow: hidden;
}
.product__card__image::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  background-color: RGBA(var(--lotech-black-rgb, 14, 15, 17), 0.7);
  z-index: 1;
  transition: all 500ms ease;
}
.product__card__image img {
  width: 100%;
  display: block;
}
.product__card:hover .product__card__image::after {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}
.product__card__cart-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: var(--lotech-base, #00A6D9);
  border-radius: 50%;
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 150px);
  font-size: 22px;
  color: var(--lotech-white, #ffffff);
  z-index: 11;
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
}
.product__card__cart-btn:hover {
  color: var(--lotech-black, #0E0F11);
  background-color: var(--lotech-white, #ffffff);
}
.product__card__cart-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.product__card:hover .product__card__cart-btn {
  transform: translate(-50%, -50%);
  opacity: 1;
  visibility: visible;
}
.product__card__category {
  position: absolute;
  top: 20px;
  left: 20px;
  display: inline-block;
  padding: 10px 21.5px;
  font-size: 16px;
  color: var(--lotech-white, #ffffff);
  line-height: 1.25;
  background-color: var(--lotech-black, #0E0F11);
  z-index: 11;
}
.product__card:hover .product__card__category {
  color: var(--lotech-white, #ffffff);
  background-color: var(--lotech-base, #00A6D9);
}
.product__card__content {
  padding: 22px 29px 30px;
}
@media (max-width: 375px) {
  .product__card__content {
    padding: 17px 25px 25px;
  }
}
.product__card__title {
  margin-bottom: 20px;
  font-size: 23px;
  line-height: 1.625;
  font-weight: 700;
  text-transform: capitalize;
}
.product__card__title:hover {
  color: var(--lotech-base, #00A6D9);
}
.product__card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.product__card__title a:hover {
  background-size: 100% 1px;
}
.product__card__inner {
  display: flex;
  align-items: center;
  gap: 15px 30px;
  margin-bottom: 25px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .product__card__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 450px) {
  .product__card__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.product__card__price {
  display: flex;
  align-items: flex-end;
  gap: 9px;
}
.product__card__price__new {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.product__card__price__old {
  margin: 0;
  font-size: 16px;
  line-height: 1;
  color: var(--lotech-text, #596171);
  font-weight: 500;
  text-decoration: line-through;
}
.product__card__review {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product__card__review__box {
  display: flex;
  align-items: center;
  gap: 5px;
}
.product__card__review__icon {
  display: inline-flex;
  font-size: 14px;
  color: var(--lotech-base, #00A6D9);
}
.product__card__review__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.product__card__review__text {
  margin: 0;
}
.product__card__btn-box {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .product__card__btn-box {
    gap: 25px;
  }
}
@media (max-width: 390px) {
  .product__card__btn-box {
    gap: 25px;
  }
}
@media (max-width: 360px) {
  .product__card__btn-box {
    gap: 17px;
  }
}
.product__card__btn-wishlist {
  padding: 12px 25px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 360px) {
  .product__card__btn-wishlist {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.product__card__btn-wishlist__icon {
  display: inline-flex;
  font-size: 16px;
}
.product__card__btn-wishlist__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.product__card__btn-circle, .product__card__btn-bookmark {
  display: inline-flex;
  font-size: 18px;
  color: var(--lotech-text, #596171);
}
.product__card__btn-circle:hover, .product__card__btn-bookmark:hover {
  color: var(--lotech-base, #00A6D9);
}
.product__card__btn-circle svg, .product__card__btn-bookmark svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.product__pagination {
  margin-top: 26px;
}
.product__pagination .pagination-box {
  gap: 40px 30px;
}
@media (max-width: 991px) {
  .product__pagination .pagination-box {
    flex-direction: column;
  }
}
.product__pagination .post-pagination {
  margin: 0;
}
.product__sidebar__item {
  padding: 24px 30px 30px;
  background: linear-gradient(119.31deg, #F6EFFF 0%, #EBF6F8 100%);
}
@media (max-width: 375px) {
  .product__sidebar__item {
    padding: 20px 26px 26px;
  }
}
.product__sidebar__item + .product__sidebar__item {
  margin-top: 30px;
}
.product__sidebar__title {
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.416;
}
.product__sidebar__search {
  position: relative;
  height: 50px;
}
.product__sidebar__search input[type=search],
.product__sidebar__search input[type=text] {
  padding-left: 20px;
  padding-right: 46px;
  outline: none;
  border: 0;
  font-size: 14px;
  color: RGBA(var(--lotech-text-rgb, 89, 97, 113), 0.6);
  font-weight: 400;
  width: 100%;
  height: 100%;
  background-color: var(--lotech-white, #ffffff);
  border: 1px solid transparent;
  transition: all 400ms ease;
}
@media (max-width: 390px) {
  .product__sidebar__search input[type=search],
  .product__sidebar__search input[type=text] {
    padding-right: 36px;
  }
}
.product__sidebar__search input[type=search]:focus,
.product__sidebar__search input[type=text]:focus {
  color: var(--lotech-black, #0E0F11);
  border-color: var(--lotech-base, #00A6D9);
}
.product__sidebar__search button[type=submit] {
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: auto;
  font-size: 16px;
  color: var(--lotech-black4, #00000F);
  transition: all 400ms ease;
  z-index: 2;
}
@media (max-width: 390px) {
  .product__sidebar__search button[type=submit] {
    right: 19px;
  }
}
.product__sidebar__search button[type=submit]:hover {
  color: var(--lotech-base, #00A6D9);
}
.product__sidebar__search button[type=submit] svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.product__sidebar__categories-box {
  margin: 0;
}
.product__sidebar__categories-box li + li {
  margin-top: 10px;
}
.product__sidebar__categories-box li a {
  position: relative;
  padding: 12px 30px;
  font-size: 16px;
  color: var(--lotech-text, #596171);
  text-transform: capitalize;
  font-weight: 400;
  line-height: 1.625;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--lotech-white, #ffffff);
  overflow: hidden;
  transition: all 500ms ease;
  z-index: 1;
}
@media (max-width: 575px) {
  .product__sidebar__categories-box li a {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.product__sidebar__categories-box li a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: var(--lotech-base, #00A6D9);
  transition: all 500ms ease;
}
.product__sidebar__categories-box li a:hover {
  color: var(--lotech-white, #ffffff);
}
.product__sidebar__categories-box li a:hover::after {
  left: 0;
  width: 100%;
}
.product__sidebar__categories-box li a .blog-sidebar__categories__icon {
  display: inline-flex;
  font-size: 18px;
  color: RGBA(var(--lotech-text-rgb, 89, 97, 113), 0.4);
  transition: all 500ms ease;
}
.product__sidebar__categories-box li a .blog-sidebar__categories__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.product__sidebar__categories-box li a:hover .blog-sidebar__categories__icon {
  color: var(--lotech-white, #ffffff);
}
.product__price-ranger .price-ranger {
  padding: 20px 21px 13px 15px;
  background-color: var(--lotech-white, #ffffff);
  border: 1px solid var(--lotech-border-color, #ECECEC);
}
.product__price-ranger .price-ranger .ui-slider .ui-slider-handle:nth-child(2) {
  display: none;
}
.product__price-ranger .price-ranger .ui-slider .ui-slider-handle:nth-child(3) {
  position: relative;
  position: absolute;
}
.product__price-ranger .price-ranger .ui-slider .ui-slider-handle:nth-child(3)::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--lotech-white, #ffffff);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.product__price-ranger #slider-range {
  margin: 0;
  background-color: transparent;
  border: 1px solid var(--lotech-base, #00A6D9);
  height: 7px;
  border-radius: 10px;
  position: relative;
}
.product__price-ranger #slider-range .ui-slider-range {
  height: 100%;
  background: var(--lotech-base, #00A6D9);
}
.product__price-ranger #slider-range .ui-slider-handle {
  position: absolute;
  top: -6.5px;
  background: var(--lotech-base, #00A6D9);
  border: 0;
  height: 18px;
  width: 18px !important;
  border-radius: 50%;
  margin-left: -2px;
  outline: medium none;
  cursor: pointer;
  z-index: 2;
}
.product__price-ranger .ranger-min-max-block {
  position: relative;
  display: block;
  margin-top: 6px;
}
.product__price-ranger .ranger-min-max-block input[type=text] {
  position: relative;
  display: inline-block;
  color: var(--lotech-text, #596171);
  font-size: 13px;
  font-weight: 500;
  width: 40px;
  line-height: 14px;
  border: none;
  outline: none;
  font-family: var(--lotech-font, "DM Sans", serif);
  padding: 0;
  text-align: center;
  background-color: transparent;
}
.product__price-ranger .ranger-min-max-block span {
  position: relative;
  display: inline-block;
  color: var(--lotech-text, #596171);
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  left: -1px;
}
.product__categories {
  padding-top: 31px;
}
.product__categories__title {
  margin-bottom: 13.5px;
}
.product__categories ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: -17px;
}
.product__categories ul li {
  position: relative;
  margin: 0 0 3.5px;
}
.product__categories ul li a {
  position: relative;
  padding: 13.5px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1;
  text-transform: capitalize;
  color: var(--lotech-text, #596171);
  font-weight: 500;
  transition: all 500ms ease;
  z-index: 1;
}
.product__categories ul li a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: var(--lotech-base, #00A6D9);
  transition: all 500ms ease;
}
.product__categories ul li a .product-categories__icon {
  display: inline-flex;
  font-size: 12px;
  color: var(--lotech-text, #596171);
  transition: all 500ms ease;
}
.product__categories ul li a .product-categories__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.product__categories ul li a:hover {
  padding-left: 15px;
  padding-right: 15px;
  color: var(--lotech-white, #ffffff);
}
.product__categories ul li a:hover::after {
  left: 0;
  width: 100%;
}
.product__categories ul li a:hover .product-categories__icon {
  color: var(--lotech-white, #ffffff);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .product--sidebar .product__showing__left {
    justify-content: space-between;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .product--sidebar .product__showing__right {
    justify-content: space-between;
  }
}

/*--------------------------------------------------------------
# Shop Details
--------------------------------------------------------------*/
.product-details {
  position: relative;
}
.product-details__image img {
  max-width: 100%;
  height: auto;
  border: 1px solid RGBA(var(--lotech-black-rgb, 14, 15, 17), 0.1);
}
.product-details__content {
  margin-top: -9px;
}
@media (max-width: 991px) {
  .product-details__content {
    margin: 0;
  }
}
.product-details__top {
  margin-bottom: 15px;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.product-details__name {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.4;
}
.product-details__price {
  margin: 0;
  font-family: var(--lotech-font, "DM Sans", serif);
  font-size: 20px;
  color: var(--lotech-base, #00A6D9);
  font-weight: 700;
}
.product-details__review {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid RGBA(var(--lotech-black-rgb, 14, 15, 17), 0.1);
}
.product-details__review a {
  font-size: 16px;
  color: var(--lotech-text, #596171);
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.25;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.product-details__review a:hover {
  background-size: 100% 1px;
}
.product-details__review a:hover {
  color: var(--lotech-base, #00A6D9);
}
.product-details__excerpt {
  margin-top: 21px;
  margin-bottom: 34px;
}
.product-details__excerpt__text {
  margin-bottom: 21px;
  font-weight: 500;
}
.product-details__excerpt__list {
  margin: 0;
}
.product-details__excerpt__list li + li {
  margin-top: 10px;
}
.product-details__excerpt__list li {
  font-size: 16px;
  color: var(--lotech-text, #596171);
  font-weight: 600;
  line-height: 1.25;
}
.product-details__excerpt__list li:last-child {
  color: var(--lotech-base, #00A6D9);
}
.product-details__quantity {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.product-details__quantity__title {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.25;
}
.product-details__quantity .quantity-box {
  border: 1px solid RGBA(var(--lotech-black-rgb, 14, 15, 17), 0.1);
  width: 153px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-details__quantity .quantity-box__input {
  border: none;
  outline: none;
  background-color: transparent;
  width: 60px;
  height: 44px;
  border-left: 1px solid RGBA(var(--lotech-black-rgb, 14, 15, 17), 0.1);
  border-right: 1px solid RGBA(var(--lotech-black-rgb, 14, 15, 17), 0.1);
  font-family: var(--lotech-font, "DM Sans", serif);
  padding: 0;
  outline: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--lotech-black, #0E0F11);
  line-height: 1;
  background-color: transparent;
  text-align: center;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  transition: all 500ms ease;
}
.product-details__quantity .quantity-box__btn {
  border: none;
  outline: none;
  background-color: transparent;
  background-color: transparent;
  padding: 0;
  width: 45px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--lotech-text, #596171);
  transition: all 500ms ease;
}
.product-details__quantity .quantity-box__btn:hover {
  color: var(--lotech-base, #00A6D9);
}
.product-details__buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.product-details__btn {
  padding: 9px 25px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.product-details__btn__icon {
  position: relative;
  top: -1px;
  display: inline-flex;
  font-size: 16px;
}
.product-details__btn__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.product-details__socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.product-details__socials__title {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.25;
}
.product-details__socials__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.product-details__socials__links a {
  width: 45px;
  height: 45px;
  position: relative;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: RGBA(var(--lotech-base-rgb, 73, 70, 236), 0.1);
  font-size: 16px;
  color: var(--lotech-black, #0E0F11);
  overflow: hidden;
  z-index: 1;
  transition: all 500ms ease;
}
.product-details__socials__links a svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.product-details__socials__links a::after {
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--lotech-base, #00A6D9);
  border-radius: inherit;
  z-index: -1;
  transition: all 500ms ease;
}
.product-details__socials__links a:hover {
  color: var(--lotech-white, #ffffff);
}
.product-details__socials__links a:hover::after {
  width: 100%;
  height: 100%;
}
.product-details__description-wrapper {
  margin-top: 50px;
}
.product-details__description {
  position: relative;
  padding-bottom: 40px;
  border-bottom: 1px solid RGBA(var(--lotech-black-rgb, 14, 15, 17), 0.1);
}
.product-details__description__title {
  margin-bottom: 21px;
  font-size: 30px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.363;
}
.product-details__description__text {
  margin-bottom: 0;
  font-weight: 500;
}
.product-details__list {
  margin-top: 26px;
  margin-bottom: 26px;
}
.product-details__list li + li {
  margin-top: 8px;
}
.product-details__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--lotech-black, #0E0F11);
  font-weight: 600;
  line-height: 1.625;
}
.product-details__list__icon {
  position: relative;
  top: 4px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 8px;
  color: var(--lotech-white, #ffffff);
  background-color: var(--lotech-base, #00A6D9);
  border-radius: 50%;
}
.product-details__list__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .product-details .comments-one__card {
    grid-template-columns: 86px auto;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .product-details .comments-one__card:nth-child(even) {
    padding-left: 50px;
  }
}
.product-details__form__top {
  margin-bottom: 40px;
}
.product-details__form__title {
  margin-bottom: 20px !important;
}
.product-details__form__ratings {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 1599px) {
  .product-details__form__ratings {
    gap: 20px;
  }
}
.product-details__form__ratings__text {
  margin-bottom: 0;
  font-family: var(--lotech-font, "DM Sans", serif);
  font-size: 20px;
  color: var(--lotech-text, #596171);
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.4;
}
.product-details__ratings {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}
.product-details__ratings__icon {
  display: inline-flex;
  font-size: 20px;
  color: var(--lotech-base, #00A6D9);
  transition: all 500ms ease;
}
.product-details__ratings__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/
.cart-page {
  position: relative;
  background-color: var(--lotech-white, #ffffff);
}
.cart-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .cart-page .table-responsive {
    margin-bottom: 30px;
  }
}
.cart-page__table {
  position: relative;
  width: 100%;
  border: none;
  margin: 0 0 24px;
}
@media (max-width: 1199px) {
  .cart-page__table {
    min-width: 1170px;
  }
}
.cart-page__table thead tr {
  border-bottom: 1px solid RGBA(var(--lotech-black-rgb, 14, 15, 17), 0.1);
}
.cart-page__table thead tr th {
  padding: 0 50px 26px;
  font-family: var(--lotech-heading-font, "Yantramanav", serif);
  font-size: 20px;
  color: var(--lotech-black, #0E0F11);
  line-height: 1;
  font-weight: 700;
  text-transform: capitalize;
  border: none;
  background-color: transparent;
  border: 0 !important;
  box-shadow: none;
}
.cart-page__table thead tr th:first-child {
  padding-left: 0;
}
.cart-page__table thead tr th:last-child {
  padding-right: 0;
  text-align: right;
}
.cart-page__table tbody tr td {
  font-family: var(--lotech-heading-font, "Yantramanav", serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--lotech-black, #0E0F11);
  text-transform: capitalize;
  line-height: normal;
  vertical-align: middle;
  border-top: none;
  box-shadow: none;
  background-color: transparent;
  border-top: 0 !important;
  border-bottom: 1px solid RGBA(var(--lotech-black-rgb, 14, 15, 17), 0.1);
  padding: 28.5px 50px;
  letter-spacing: 0;
}
.cart-page__table tbody tr td.cart-page__table__total {
  text-align: center;
}
.cart-page__table tbody tr td .cart-page__table__remove {
  margin-left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lotech-black, #0E0F11);
  font-size: 20px;
  line-height: normal;
}
.cart-page__table tbody tr td .cart-page__table__remove svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.cart-page__table tbody tr td .cart-page__table__remove:hover {
  color: var(--lotech-base, #00A6D9);
}
.cart-page__table tbody tr td:first-child {
  padding-left: 0;
}
.cart-page__table tbody tr td:last-child {
  padding-right: 0;
}
.cart-page__table .product-details__quantity {
  margin-bottom: 0;
}
.cart-page__table__meta {
  display: flex;
  align-items: center;
  gap: 30px;
}
.cart-page__table__meta__img {
  width: 110px;
  flex-shrink: 0;
}
.cart-page__table__meta__img img {
  width: 100%;
  display: block;
  border: 1px solid RGBA(var(--lotech-black-rgb, 14, 15, 17), 0.1);
}
.cart-page__table__meta__title {
  margin: 0;
  font-size: 20px;
  color: var(--lotech-black, #0E0F11);
  font-weight: 700;
  line-height: 1.5;
}
.cart-page__table__meta__title:hover {
  color: var(--lotech-base, #00A6D9);
}
.cart-page__table__meta__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.cart-page__table__meta__title a:hover {
  background-size: 100% 1px;
}
.cart-page__bottom {
  margin-top: 26px;
}
.cart-page__coupone__form {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .cart-page__coupone__form {
    flex-direction: column;
    align-items: flex-start;
  }
}
.cart-page__coupone__form input[type=text] {
  display: block;
  width: 303px;
  height: 60px;
  border: none;
  font-size: 16px;
  font-family: var(--lotech-font, "DM Sans", serif);
  color: var(--lotech-text, #596171);
  font-weight: 500;
  background-color: RGBA(var(--lotech-black-rgb, 14, 15, 17), 0.1);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  border: 1px solid transparent;
  transition: all 500ms ease;
}
.cart-page__coupone__form input[type=text]:focus {
  color: var(--lotech-black, #0E0F11);
  border-color: var(--lotech-base, #00A6D9);
}
@media (max-width: 767px) {
  .cart-page__coupone__form input[type=text] {
    width: 100%;
  }
}
@media (max-width: 375px) {
  .cart-page__coupone__form input[type=text] {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.cart-page__cart-checkout {
  max-width: 313px;
}
@media (min-width: 992px) {
  .cart-page__cart-checkout {
    margin-top: -5px;
    margin-left: auto;
  }
}
.cart-page__cart-total {
  position: relative;
  margin: 0 0 35px;
}
.cart-page__cart-total li + li {
  margin-top: 18px;
}
.cart-page__cart-total li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 20px;
  font-family: var(--lotech-font, "DM Sans", serif);
  color: var(--lotech-text, #596171);
  text-transform: capitalize;
  font-weight: 500;
  line-height: 1.3;
}
.cart-page__cart-total__amount--shipping {
  margin-bottom: 23px;
  padding-bottom: 26px;
  border-bottom: 1px solid RGBA(var(--lotech-black-rgb, 14, 15, 17), 0.1);
}
.cart-page__cart-total__amount__title {
  font-family: var(--lotech-heading-font, "Yantramanav", serif);
  color: var(--lotech-black, #0E0F11);
  font-weight: 700;
}
.cart-page__cart-total__amount__text {
  text-align: right;
}
.cart-page__button {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/
.checkout-page {
  position: relative;
  background-color: var(--lotech-white, #ffffff);
}
.checkout-page__billing-address {
  position: relative;
}
.checkout-page .notice-box {
  padding: 33px 50px;
  margin-bottom: 28px;
  background-color: var(--lotech-border-color, #ECECEC);
  font-size: 18px;
  color: var(--lotech-black, #0E0F11);
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 1199px) {
  .checkout-page .notice-box {
    padding: 23px 30px;
  }
}
@media (max-width: 430px) {
  .checkout-page .notice-box {
    padding-left: 25px;
    padding-right: 25px;
    font-size: 16px;
  }
}
.checkout-page .notice-box a {
  color: var(--lotech-base, #00A6D9);
  font-weight: 700;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.checkout-page .notice-box a:hover {
  background-size: 100% 1px;
}
.checkout-page__title {
  margin-bottom: 28px;
  font-size: 30px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.5;
}
@media (max-width: 430px) {
  .checkout-page__title {
    font-size: 28px;
  }
}
.checkout-page__billing-details {
  margin-top: 18px;
}
.checkout-page__billing-details .checkout-page__title {
  margin-bottom: 33px;
}
.checkout-page .form-one .bootstrap-select > .dropdown-toggle,
.checkout-page .form-one input[type=text],
.checkout-page .form-one input[type=tel],
.checkout-page .form-one input[type=email],
.checkout-page .form-one textarea {
  border-color: transparent;
  background-color: var(--lotech-border-color, #ECECEC);
}
.checkout-page .form-one .bootstrap-select > .dropdown-toggle:focus,
.checkout-page .form-one input[type=text]:focus,
.checkout-page .form-one input[type=tel]:focus,
.checkout-page .form-one input[type=email]:focus,
.checkout-page .form-one textarea:focus {
  border-color: var(--lotech-base, #00A6D9);
}
.checkout-page__check-box {
  position: relative;
  display: block;
  margin-top: -6px;
}
.checkout-page__check-box input[type=checkbox] {
  display: none;
}
.checkout-page__check-box label {
  position: relative;
  display: inline-block;
  padding-left: 40px;
  margin-right: 0px;
  margin-bottom: 0;
  font-family: var(--lotech-font, "DM Sans", serif);
  font-weight: 500;
  color: var(--lotech-text, #596171);
  font-size: 20px;
  line-height: 1.3;
  text-transform: none;
  cursor: pointer;
}
.checkout-page__check-box label span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  color: var(--lotech-white, #ffffff);
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-size: 12px;
  font-weight: 900;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}
.checkout-page__check-box input[type=checkbox] + label span {
  position: absolute;
  top: 1px;
  left: 0;
  width: 24px;
  height: 24px;
  background-color: var(--lotech-base, #00A6D9);
  border-radius: 50%;
  border: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.checkout-page__check-box input[type=checkbox]:checked + label span:before {
  opacity: 1;
}
.checkout-page__additional-information {
  margin-top: 121px;
}
@media (max-width: 1199px) {
  .checkout-page__additional-information {
    margin-top: 128px;
  }
}
@media (max-width: 991px) {
  .checkout-page__additional-information {
    margin-top: 30px;
  }
}
.checkout-page__additional-information .form-one textarea {
  height: 176px;
}
.checkout-page__your-order {
  position: relative;
  margin: 63px 0 0;
}
@media (max-width: 991px) {
  .checkout-page__your-order {
    margin: 30px 0 0;
  }
}
.checkout-page__your-order .checkout-page__title {
  margin-bottom: 27px;
}
.checkout-page__order-table {
  position: relative;
  width: 100%;
  border: none;
  margin: 0 0 0;
}
.checkout-page__order-table thead tr th {
  margin: 0;
  padding: 22px 0;
  font-family: var(--lotech-heading-font, "Yantramanav", serif);
  font-size: 20px;
  color: var(--lotech-black, #0E0F11);
  text-transform: capitalize;
  font-weight: 600;
  line-height: 1.5;
  border: none;
  border-top: 1px solid RGBA(var(--lotech-black-rgb, 14, 15, 17), 0.1);
  border-bottom: 1px solid RGBA(var(--lotech-black-rgb, 14, 15, 17), 0.1);
}
.checkout-page__order-table thead tr th:last-child {
  text-align: right;
}
@media (max-width: 430px) {
  .checkout-page__order-table thead tr th {
    font-size: 18px;
  }
}
.checkout-page__order-table tbody tr td {
  font-size: 20px;
  color: var(--lotech-black, #0E0F11);
  text-transform: capitalize;
  font-weight: 600;
  font-family: var(--lotech-font, "DM Sans", serif);
  line-height: 1.5;
  margin: 0;
  padding: 0 0 16px;
  border: none;
}
.checkout-page__order-table tbody tr td:last-child {
  text-align: right;
}
@media (max-width: 430px) {
  .checkout-page__order-table tbody tr td {
    font-size: 18px;
  }
}
.checkout-page__order-table tbody tr:not(:last-child) td:last-child {
  font-family: var(--lotech-font, "DM Sans", serif);
  color: var(--lotech-text, #596171);
  font-weight: 600;
}
.checkout-page__order-table tbody tr:first-child td {
  padding-top: 22px;
}
.checkout-page__order-table tbody tr:nth-child(3) td {
  padding-bottom: 20px;
}
.checkout-page__order-table tbody tr:last-child td {
  padding-top: 21px;
  border-top: 1px solid RGBA(var(--lotech-black-rgb, 14, 15, 17), 0.1);
}
.checkout-page__payment {
  background-color: var(--lotech-border-color, #ECECEC);
  padding: 37px 40px 29px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .checkout-page__payment {
    margin-top: 20px;
  }
}
@media (max-width: 575px) {
  .checkout-page__payment {
    padding: 30px 30px 22px;
  }
}
@media (max-width: 390px) {
  .checkout-page__payment {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.checkout-page__payment__item + .checkout-page__payment__item {
  margin-top: 27px;
}
.checkout-page__payment__item {
  position: relative;
}
.checkout-page__payment__title {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.5;
  cursor: pointer;
  color: var(--lotech-black, #0E0F11);
}
.checkout-page__payment__title::before {
  content: "";
  width: 24px;
  height: 24px;
  background-color: var(--lotech-white, #ffffff);
  border: 0;
  border-radius: 50%;
  margin-right: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 13px;
  position: relative;
  top: -1px;
  transition: all 500ms ease;
}
.checkout-page__payment .checkout-page__payment__item--active .checkout-page__payment__title::before {
  content: "\f00c";
  background-color: var(--lotech-base, #00A6D9);
  color: var(--lotech-white, #ffffff);
}
.checkout-page__payment__content {
  margin-top: 18px;
  margin-left: 38px;
}
.checkout-page__payment__content p {
  margin: 0;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Work Process
--------------------------------------------------------------*/
.work-process-one {
  position: relative;
  counter-reset: count;
  background-image: linear-gradient(119deg, #f6efff 0%, #ebf6f8 100%);
  padding: 70px 0;
}
@media (max-width: 767px) {
  .work-process-one {
    padding: 80px 0;
  }
}
.work-process-one__item {
  position: relative;
  counter-increment: count;
}
.work-process-one__item__draw {
  position: absolute;
  top: 40px;
  left: 62%;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(90deg, var(--lotech-base, #00A6D9), var(--lotech-base, #00A6D9) 40%, transparent 40%, transparent 100%);
  background-size: 12px 1px;
  z-index: -1;
  transition: all 0.7s;
  animation: shapes 5s linear infinite;
}
@media (max-width: 767px) {
  .work-process-one__item__draw {
    display: none;
  }
}
@media (max-width: 1199px) {
  .work-process-one__item__draw--two {
    display: none;
  }
}
.work-process-one__item__draw::after {
  content: "\e928";
  font-family: "Flaticon" !important;
  color: var(--lotech-base, #00A6D9);
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  transition: all 0.7s;
}
.work-process-one__item__icon {
  font-size: 36px;
  color: var(--lotech-base, #00A6D9);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto;
  border: 1px solid var(--lotech-base, #00A6D9);
  border-radius: 50%;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}
.work-process-one__item:hover .work-process-one__item__icon {
  color: var(--lotech-white, #ffffff);
  background-color: var(--lotech-base, #00A6D9);
  transform: scale(1.05);
}
.work-process-one__item__number {
  width: 26px;
  height: 26px;
  background-color: var(--lotech-black, #0E0F11);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--lotech-white, #ffffff);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  right: -4px;
  top: 0;
  z-index: 1;
}
.work-process-one__item__number::before {
  content: counters(count, ".", decimal-leading-zero);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-process-one__item__title {
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 19px 0 12px;
}
.work-process-one__item__text {
  margin: 13px;
}

/*--------------------------------------------------------------
# Sliding Text
--------------------------------------------------------------*/
.slide-text {
  position: relative;
  margin: 115px 0 -90px;
}
@media (max-width: 767px) {
  .slide-text {
    margin-top: 90px;
  }
}
.slide-text__one {
  background-color: var(--lotech-base, #00A6D9);
  padding: 19px 0;
  position: relative;
  white-space: nowrap;
  z-index: 2;
}
.slide-text__one__list {
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  animation: text-scrolling 22s linear infinite;
  will-change: transform;
  flex-wrap: nowrap;
}
@media (max-width: 767px) {
  .slide-text__one__list {
    animation: text-scrolling 6s linear infinite;
  }
}
.slide-text__one__list li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  letter-spacing: 0;
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: var(--lotech-white, #ffffff);
  font-family: var(--lotech-heading-font, "Yantramanav", serif);
  text-transform: uppercase;
}
.slide-text__one__list li img {
  width: 40px;
  height: 40px;
  animation: textRotate 15s linear 0s forwards infinite alternate;
  margin: 0 20px;
}
.slide-text__one__list:hover {
  animation-play-state: paused;
}
.slide-text__one__ball {
  width: 25px;
  height: 25px;
  background-color: var(--lotech-white, #ffffff);
  border-radius: 50%;
  display: inline-block;
  animation: zoomsIn 2s infinite alternate;
  margin: 0 20px;
}
.slide-text__two {
  background-color: var(--lotech-black, #0E0F11);
  overflow: hidden;
  padding: 19px 0;
  position: relative;
  top: -130px;
  left: -22px;
  z-index: 1;
  transform: rotate(4.5deg);
  width: calc(100% + 72px);
  z-index: 1;
  white-space: nowrap;
}
@media (max-width: 1399px) {
  .slide-text__two {
    transform: rotate(5.5deg);
  }
}
@media (max-width: 1199px) {
  .slide-text__two {
    transform: rotate(7.5deg);
  }
}
@media (max-width: 991px) {
  .slide-text__two {
    transform: rotate(11deg);
  }
}
@media (max-width: 767px) {
  .slide-text__two {
    transform: rotate(0);
    top: -180px;
  }
}
.slide-text__two__list {
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  animation: text-scrolling-two 22s linear infinite;
  will-change: transform;
  flex-wrap: nowrap;
}
@media (max-width: 767px) {
  .slide-text__two__list {
    animation: text-scrolling-two 6s linear infinite;
  }
}
.slide-text__two__list li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  letter-spacing: 0;
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: var(--lotech-white, #ffffff);
  font-family: var(--lotech-heading-font, "Yantramanav", serif);
  text-transform: uppercase;
}
.slide-text__two__list li img {
  width: 40px;
  height: 40px;
  animation: textRotate 15s linear 0s forwards infinite alternate;
  margin: 0 20px;
}
.slide-text__two__list:hover {
  animation-play-state: paused;
}
.slide-text__two__ball {
  width: 25px;
  height: 25px;
  background-color: var(--lotech-white, #ffffff);
  border-radius: 50%;
  display: inline-block;
  animation: zoomsIn 2s infinite alternate;
  margin: 0 20px;
}

.slide-text-two {
  position: relative;
  overflow: hidden;
  text-align: center;
}
@media (max-width: 767px) {
  .slide-text-two {
    margin: -50px 0;
  }
}
.slide-text-two::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 23%;
  height: 100%;
  background-image: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 90%);
  content: "";
}
.slide-text-two::before {
  position: absolute;
  right: 0;
  top: 0;
  width: 23%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 90%);
  content: "";
}
.slide-text-two svg {
  font-family: var(--lotech-heading-font, "Yantramanav", serif);
  width: 100%;
  height: 100%;
}
.slide-text-two svg text {
  margin: 0;
  line-height: 1;
  font-size: 7vw;
  animation: stroke 5s infinite alternate;
  stroke-width: 2;
  font-weight: 900;
  stroke: var(--lotech-base, #00A6D9);
  text-transform: uppercase;
}

@keyframes stroke {
  0% {
    fill: rgba(var(--lotech-white-rgb, 255, 255, 255), 0);
    stroke: rgba(var(--lotech-base-rgb, 73, 70, 236), 1);
    stroke-dashoffset: 25%;
    stroke-dasharray: 0 50%;
    stroke-width: 2;
  }
  70% {
    fill: rgba(var(--lotech-white-rgb, 255, 255, 255), 0);
    stroke: rgba(var(--lotech-base-rgb, 73, 70, 236), 1);
  }
  80% {
    fill: rgba(var(--lotech-white-rgb, 255, 255, 255), 0);
    stroke: rgba(var(--lotech-base-rgb, 73, 70, 236), 1);
    stroke-width: 2;
  }
  100% {
    fill: rgba(var(--lotech-base-rgb, 73, 70, 236), 1);
    stroke: rgba(var(--lotech-white-rgb, 255, 255, 255), 0);
    stroke-dashoffset: -25%;
    stroke-dasharray: 50% 0;
    stroke-width: 0;
  }
}
/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
  background-color: var(--lotech-white, #ffffff);
}
.error-404__content {
  text-align: center;
}
.error-404__image {
  margin-bottom: 35px;
  max-width: 100%;
  height: auto;
  animation: moveHorizontal 2s linear infinite;
}
.error-404__title {
  margin-bottom: 0;
  font-size: 100px;
  font-weight: 700;
  line-height: 1.255;
  text-transform: capitalize;
}
.error-404__sm-title {
  margin-bottom: 14px;
  font-size: 30px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.4;
}
.error-404__text {
  margin: 0 auto 32px;
  width: 100%;
  max-width: 653px;
}

/*--------------------------------------------------------------
# Boxed Home
--------------------------------------------------------------*/
body.boxed-wrapper {
  position: relative;
}
body.boxed-wrapper .page-wrapper {
  max-width: 1530px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--lotech-white, #ffffff);
  box-shadow: 0px 0px 100px 0px rgba(var(--lotech-black2-rgb, 0, 0, 0), 0.08);
  overflow: hidden;
}
body.boxed-wrapper .page-wrapper--top {
  overflow: visible;
}
/*# sourceMappingURL=lotech.css.map */
