/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Nextmind - AI Agency & Technology HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. How It Work css
08. Our Facts css
09. Our Projects css
10. Real Impact css
11. CTA Box css
12. What We Do css
13. Our Testimonials css
14. Our FAQs css
15. Our Blog css
16. Footer css
17. About Us Page css
18. Services Page css
19. Service Single css
20. Blog Archive css
21. Blog Single css
22. Projects Page css
23. Project Single css
24. Team Page css
25. Team Single css
26. Testimonials Page css
27. Image Gallery css
28. Video Gallery css
29. FAQs Page css
30. Contact Us Page css
31. 404 Error Page css
32. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
  --primary-color: #ffffff;
  --secondary-color: #0a0a0a;
  --text-color: #a7aabb;
  --bg-color: #060606;
  --accent-color: #a93e17;
  --accent-secondary-color: #15399a;
  --divider-color: #ffffff0f;
  --dark-divider-color: #ffffff33;
  --error-color: rgb(230, 87, 87);
  --default-font: "Manrope", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
  position: relative;
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1em;
  color: var(--text-color);
  background: var(--bg-color);

}

::-webkit-scrollbar-track {
  background-color: var(--primary-color);
  border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar {
  width: 7px;
  background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg,
      var(--accent-color) 0.26%,
      var(--accent-secondary-color) 99.99%);
}

::selection {
  color: var(--primary-color);
  background-color: var(--accent-color);
  filter: invert(1);
}

p {
  line-height: 1.6em;
  margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2em;
  color: var(--primary-color);
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

.container {
  max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  z-index: 1;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
  /* position: relative;
    bottom: 100px; */
}

.row>* {
  padding-right: 15px;
  padding-left: 15px;
  /* position: relative;
    bottom: 100px; */
}

.row.no-gutters {
  margin-right: 0px;
  margin-left: 0px;
}

.row.no-gutters>* {
  padding-right: 0px;
  padding-left: 0px;
}

.btn-default {
  position: relative;
  display: inline-block;
  background: linear-gradient(to right,
      var(--accent-color) 0%,
      var(--accent-secondary-color) 50%,
      var(--accent-color) 100%);
  background-size: 200% auto;
  border-radius: 100px;
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  text-transform: capitalize;
  border: none;
  outline: none;
  padding: 17px 30px;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  z-index: 0;
}

.btn-default:hover {
  background-position: right center;
}

.btn-default.btn-highlighted {
  /* background: linear-gradient(var(--bg-color), var(--bg-color)) padding-box, linear-gradient(to left, var(--accent-color), var(--accent-secondary-color)) border-box; */
  /* border: 1px solid transparent; */
  border: 1px solid var(--accent-color);
  background: var(--bg-color);
  padding: 16px 30px;
}

.btn-default.btn-highlighted::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15%;
  right: 0;
  width: 0;
  height: 106%;
  /* background: linear-gradient(to left, var(--accent-color) 0%, var(--accent-secondary-color) 100%); */
  background: var(--accent-color);
  transform: skew(45deg);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.btn-default.btn-highlighted:hover::before {
  width: 100%;
  transform: skew(0deg);
  left: 0;
}

.readmore-btn {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--accent-color);
  padding-right: 34px;
}

.readmore-btn::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: url("../images/arrow-accent.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 8px auto;
  border: 1px solid var(--divider-color);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.readmore-btn:hover::after {
  border-color: var(--accent-color);
  transform: rotate(45deg);
}

.cb-cursor:before {
  background: linear-gradient(90.01deg,
      var(--accent-color) 0.26%,
      var(--accent-secondary-color) 99.99%);
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 1px solid transparent;
  border-color: transparent var(--accent-color) transparent var(--accent-secondary-color);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }

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

.section-row {
  margin-bottom: 80px;
}

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

.section-title.section-title-center {
  width: 100%;
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.section-title {
  margin-bottom: 40px;
}

.section-title h3 {
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-color);
  background: var(--divider-color);
  border: 1px solid var(--divider-color);
  border-radius: 100px;
  padding: 10px 50px;
  margin-bottom: 20px;
}

.section-title h3::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  background: url("../images/icon-sparkle.svg") no-repeat;
  background-position: left center;
  background-size: cover;
  width: 16px;
  height: 16px;
}

.section-title h3::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  background: url("../images/icon-sparkle.svg") no-repeat;
  background-position: right center;
  background-size: cover;
  width: 16px;
  height: 16px;
}

.section-title h1 {
  font-size: 50px;
  line-height: 1.1em;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  cursor: none;
}

.section-title h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 0;
  cursor: none;
}

.section-title h1 span,
.section-title h2 span {
  font-weight: 700;
  background: linear-gradient(to right,
      var(--accent-color) 0%,
      var(--accent-secondary-color) 50%,
      var(--accent-color) 100%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease-in-out;
}

.section-title h1:hover span,
.section-title h2:hover span {
  background-position: right center;
}

.section-title p {
  margin-top: 20px;
  margin-bottom: 0;
}

.section-title-content p {
  margin: 0;
}

.section-btn {
  text-align: right;
}

.section-content-btn .section-btn {
  text-align: left;
  margin-top: 30px;
}

.help-block.with-errors ul {
  margin: 0;
  text-align: left;
}

.help-block.with-errors ul li {
  color: var(--error-color);
  font-weight: 500;
  font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
}

header.main-header .header-sticky {
  position: relative;
  top: 0;
  z-index: 100;
}

header.main-header .header-sticky.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  border-radius: 0;
}

header.main-header .header-sticky.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  transform: translateY(0);
  background: var(--bg-color);
  border-bottom: 1px solid var(--divider-color);
}

.navbar {
  padding: 30px 0;
  align-items: center;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.main-menu .nav-menu-wrapper {
  flex: 1;
  text-align: center;
  margin: 0 20px;
}

.main-menu .nav-menu-wrapper .navbar-nav {
  background: var(--divider-color);
  border: 1px solid var(--divider-color);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 0 10px;
  position: relative;
  right: 70px;
}

.main-menu .nav-menu-wrapper>ul {
  align-items: center;
  display: inline-flex;
}

.main-menu ul li {
  margin: 0;
  position: relative;
}

.main-menu ul li a {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  padding: 13px 20px !important;
  border-radius: 100px;
  color: var(--primary-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 14px;
  margin-left: 8px;
  margin-top: 4px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
  color: var(--accent-color);
}

.main-menu ul li a:focus-visible {
  box-shadow: none;
}

.main-menu ul ul {
  visibility: hidden;
  opacity: 0;
  transform: scale(1, 0.8);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 235px;
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 100%;
  background: linear-gradient(110.01deg,
      var(--accent-color) 0.26%,
      var(--accent-secondary-color) 99.99%);
  transition: all 0.3s ease-in-out;
  text-align: left;
}

.main-menu ul li.submenu:first-child ul {
  width: 235px;
}

.main-menu ul ul ul {
  left: 100%;
  top: 0;
  text-align: left;
}

.main-menu ul li:hover>ul {
  visibility: visible;
  opacity: 1;
  transform: scale(1, 1);
  padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
  content: "\f105";
  float: right;
}

.main-menu ul ul li {
  margin: 0;
  padding: 0;
}

.main-menu ul ul li a {
  color: var(--primary-color);
  padding: 6px 20px !important;
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
  color: var(--bg-color);
  background-color: transparent;
  padding: 6px 20px 6px 23px !important;
}

.main-menu ul li.highlighted-menu {
  display: none;
}

.responsive-menu,
.navbar-toggle {
  display: none;
}




.responsive-menu {
  top: 0;
  position: relative;
}

.slicknav_btn {
  background: linear-gradient(to right,
      var(--accent-color) 0%,
      var(--accent-secondary-color) 50%,
      var(--accent-color) 100%);
  background-size: 200% auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 8px;
  transition: all 0.4s ease-in-out;
  position: relative;
  left: 80px;
}

.navbar-toggle a.slicknav_btn.slicknav_open {
  background-position: right center;
}

.slicknav_icon .slicknav_icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  width: 22px;
  background-color: var(--primary-color);
  border-radius: 6px;
  margin: 4px auto !important;
  transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
  margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
  margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
  background-color: var(--primary-color);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
  background-color: var(--primary-color);
}

.slicknav_menu {
  position: absolute;
  width: 100%;
  padding: 0;
  background: linear-gradient(110deg,
      var(--accent-color) 0%,
      var(--accent-secondary-color) 100%);
}

.slicknav_menu ul {
  margin: 5px 0;
}

.slicknav_menu ul ul {
  margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 7px 20px;
  color: var(--primary-color);
  line-height: normal;
  margin: 0;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
  background-color: transparent;
  color: var(--bg-color);
}

.slicknav_menu ul ul li a {
  padding: 7px 20px 7px 30px;
}

.slicknav_arrow {
  font-size: 0 !important;
}

.slicknav_arrow:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 12px;
  margin-left: 8px;
  color: var(--primary-color);
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
  transform: translateY(-50%) rotate(-180deg);
  color: var(--bg-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {

  padding: 120px 0 80px;
  z-index: 1;
  overflow: hidden;
}




.store-btn {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.store-btn:hover {
  opacity: 1;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #000;
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 0.6rem;
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.store-btn i {
  font-size: 1.2rem;
}

.store-btn:hover {
  background-color: #333;
  transform: scale(1.05);
}

.store-btn.apple {
  background-color: #000;
  /* Apple Black */
}

.store-btn.google {
  background-color: #34a853;
  /* Google Play Green */
}

.hero-company-slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.slider-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 400;
}

.company-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  animation: slideIn 1s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.company-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.company-logo:hover {
  transform: translateY(-8px) scale(1.05);
}

.logo-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.logo-circle::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: inherit;
  border-radius: 50%;
  filter: blur(15px);
  opacity: 0.4;
  z-index: -1;
}

.logo-circle.purple {
  background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.logo-circle.pink {
  background: linear-gradient(135deg, #ec4899, #f472b6);
}

.logo-circle.red {
  background: linear-gradient(135deg, #ef4444, #f87171);
}

.logo-circle.blue {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.logo-circle.teal {
  background: linear-gradient(135deg, #0d9488, #14b8a6);
}

.logo-text {
  color: white;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  line-height: 1.2;
}

.checkmark {
  color: white;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 2px;
}

.service-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.5px;
}

/* Hover glow effect */
.company-logo:hover .logo-circle {
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2), 0 8px 35px rgba(0, 0, 0, 0.4);
}

.company-logo:hover .logo-circle.purple {
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.6), 0 8px 35px rgba(0, 0, 0, 0.4);
}

.company-logo:hover .logo-circle.pink {
  box-shadow: 0 0 30px rgba(236, 72, 153, 0.6), 0 8px 35px rgba(0, 0, 0, 0.4);
}

.company-logo:hover .logo-circle.red {
  box-shadow: 0 0 30px rgba(239, 68, 68, 0.6), 0 8px 35px rgba(0, 0, 0, 0.4);
}

.company-logo:hover .logo-circle.blue {
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.6), 0 8px 35px rgba(0, 0, 0, 0.4);
}

.company-logo:hover .logo-circle.teal {
  box-shadow: 0 0 30px rgba(13, 148, 136, 0.6), 0 8px 35px rgba(0, 0, 0, 0.4);
}

/* Responsive design */
@media (max-width: 768px) {
  .company-logos {
    gap: 2.5rem;
  }

  .logo-circle {
    width: 70px;
    height: 70px;
  }

  .logo-text {
    font-size: 14px;
  }

  .checkmark {
    font-size: 18px;
  }

  .service-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .company-logos {
    gap: 2rem;
  }

  .logo-circle {
    width: 60px;
    height: 60px;
  }

  .logo-text {
    font-size: 12px;
  }

  .checkmark {
    font-size: 16px;
  }

  .service-label {
    font-size: 0.8rem;
  }
}

/* .hero::before{
    content: '';
    display: block;
    position: absolute;
    left: 160px;
    top: 20%;
    background: url(../images/section-bg-shape-1.png) no-repeat;
    background-position: left center;
    background-size: cover;
    width: 113px;
    height: 110px;
    animation: shape1 20s infinite linear;
    animation-direction: alternate;
    z-index: 0;
} */

@keyframes shape1 {
  from {
    transform: translateY(0) rotate(0deg);
  }

  to {
    transform: translateY(50px) rotate(360deg);
  }
}

/* .hero::after{
    content: '';
    display: block;
    position: absolute;
    right: 220px;
    top: 20%;
    background: url(../images/section-bg-shape-2.png) no-repeat;
    background-position: right center;
    background-size: cover;
    width: 82px;
    height: 110px;
    animation: shape1 20s infinite linear;
    animation-direction: alternate;
    z-index: 0;
} */

.hero.hero-bg-image {
  position: relative;
  background: url("../images/hero-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
}

.hero.hero-bg-image::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(#06060660, var(--bg-color));
  opacity: 100%;
  width: 100%;
  height: 100%;
  animation: none;
  z-index: 1;
}

.hero.hero-bg-image::after {
  display: none;
}

.hero.hero-bg-image.hero-video .hero-bg-video {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.hero.hero-bg-image.hero-video .hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .hero-content {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
  bottom: 95px;
} */

/* .hero-content::before{
    content: '';
    display: block;
    position: absolute;
    left: -28%;
    bottom: 20%;
    background: url(../images/section-bg-shape-3.png) no-repeat;
    background-position: left center;
    background-size: cover;
    width: 81px;
    height: 85px;
    animation: shape2 20s infinite linear;
    animation-direction: alternate;
    z-index: 0;
} */

@keyframes shape2 {
  from {
    transform: translateY(0) rotate(0deg);
  }

  to {
    transform: translateY(50px) rotate(-360deg);
  }
}

/* .hero-content::after{
    content: '';
    display: block;
    position: absolute;
    right: -28%;
    bottom: 20%;
    background: url(../images/section-bg-shape-4.png) no-repeat;
    background-position: right center;
    background-size: cover;
    width: 122px;
    height: 126px;
    animation: shape2 20s infinite linear;
    animation-direction: alternate;
    z-index: 0;
} */

.rotate-animation {
  animation: rotate-animation 10s infinite linear;
}

@keyframes rotate-animation {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

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

.hero-content .section-title {
  position: relative;
  z-index: 2;
}

.hero.hero-bg-image .hero-content::after,
.hero.hero-bg-image .hero-content::before {
  display: none;
}

.hero-btn {
  position: relative;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px 30px;
  z-index: 2;
}

.hero-company-slider {
  text-align: center;
  /* margin-top: -50px; */
}

.hero-company-slider p {
  font-size: 20px;
  margin-bottom: 30px;
}

.company-logo img {
  width: 100%;
  max-height: 40px;
}

/************************************/
/***       05. About Us css	      ***/
/************************************/

/* .about-us {
  padding: 80px 0 50px;
} */

.about-us .section-title.section-title-center {
  max-width: 1080px;
}

.about-us .section-title h2 span {
  /* background: var(--accent-secondary-color); */
  /* border-radius: 50%; */
  /* width: 40px; */
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}

.about-us .section-title h2 span img {
  max-width: 20px;
}

.about-us .section-title h2 span:nth-child(2) {
  background: var(--accent-color);
}

.text-effect .line {
  width: 100%;
  color: var(--dark-divider-color);
  background: linear-gradient(120deg,
      var(--primary-color),
      var(--primary-color)) no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  background-size: 0%;
}

.about-us-box {
  background: var(--secondary-color);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 30px;
}

.about-us-item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 40px;
}

.about-item-content {
  width: calc(100% - 90px);
}

.about-item-content h3 {
  font-size: 16px;
  line-height: 1.3em;
  margin-bottom: 30px;
}

.about-item-content h2 {
  font-size: 48px;
  font-weight: 300;
}

.about-us-item .icon-box {
  position: relative;
  background: var(--bg-color);
  border: 1px solid var(--divider-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-us-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(120deg,
      var(--accent-color),
      var(--accent-secondary-color)) no-repeat;
  border-radius: 50%;
  height: 100%;
  width: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.about-us-box:hover .about-us-item .icon-box::before {
  transform: scale(1);
}

.about-us-item .icon-box img {
  position: relative;
  max-width: 20px;
  z-index: 1;
}

.about-item-image {
  width: 100%;
  align-content: end;
  text-align: left;
}

.about-item-image img {
  max-height: 80px;
}

/************************************/
/***     06. Our Services css     ***/
/************************************/

.our-services {
  padding: 80px 0;
}

.service-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border: 1px solid var(--divider-color);
  background: url("../images/service-item-bg.svg"), var(--secondary-color);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 30px;
  transition: all 0.4s ease-in-out;
}

.service-item:hover {
  transform: translateY(-5px);
}

.service-item-content {
  margin-bottom: 30px;
}

.service-item-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.service-item-content p {
  margin-bottom: 0;
}

.service-item-content h3 a {
  color: inherit;
}

.service-item-image {
  width: 100%;
  text-align: center;
  align-content: center;
}

.service-item-image figure {
  display: block;
}

.service-list {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 30px;
}

.service-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-list ul li {
  border: 1px solid var(--divider-color);
  background: var(--secondary-color) url("../images/icon-sparkle.svg") no-repeat;
  background-position: left 15px center;
  background-size: 20px auto;
  line-height: 1.3em;
  border-radius: 100px;
  padding: 10px 15px 10px 45px;
}

/************************************/
/***     07. How It Work css      ***/
/************************************/

.how-it-work {
  padding: 80px 0;
}

.how-work-item {
  background: var(--secondary-color);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 40px 35px;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.how-work-item:last-child {
  margin-bottom: 0;
}

.how-work-header {
  border-right: 1px solid var(--divider-color);
  margin-right: 40px;
  padding-right: 40px;
}

.how-work-header .icon-box {
  position: relative;
  background: var(--accent-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-work-item .how-work-header .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(120deg,
      var(--accent-color),
      var(--accent-secondary-color)) no-repeat;
  border-radius: 50%;
  height: 100%;
  width: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.how-work-item:hover .how-work-header .icon-box::before {
  transform: scale(1);
}

.how-work-header .icon-box img {
  position: relative;
  max-width: 30px;
  z-index: 1;
}

.how-work-step-no {
  text-align: center;
  margin-top: 15px;
}

.how-work-step-no p {
  color: var(--primary-color);
  text-transform: uppercase;
  margin: 0;
}

.how-work-item-content {
  width: calc(100% - 150px);
}

.how-work-item-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.how-work-item-content p {
  margin: 0;
}

.how-work-video-content {
  position: sticky;
  top: 30px;
  margin-left: 15px;
}

.how-work-video {
  width: 100%;
}

.how-work-video video {
  width: 100%;
  height: 700px;
  object-fit: cover;
  border-radius: 20px;
  overflow: hidden;
}

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

.how-work-video-content .section-footer-text {
  margin: 30px 30px 0 30px;
}

.section-footer-text p {
  margin-bottom: 0;
}

.section-footer-text span {
  font-size: 14px;
  font-weight: 500;
  background: linear-gradient(to right,
      var(--accent-color) 0%,
      var(--accent-secondary-color) 50%,
      var(--accent-color) 100%);
  background-size: 200% auto;
  color: var(--primary-color);
  padding: 3px 12px;
  border-radius: 99px;
  margin-right: 10px;
  transition: all 0.4s ease-in-out;
}

.section-footer-text p:hover span {
  background-position: right center;
}

.section-footer-text p a {
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
  color: var(--primary-color);
}

/************************************/
/***       08. Our Facts css      ***/
/************************************/

.our-facts {
  padding: 80px 0;
}

.facts-item {
  background: var(--secondary-color) url("../images/facts-item-bg.svg") no-repeat;
  background-position: center center;
  background-size: cover;
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px 35px;
}

.facts-item-title {
  margin-bottom: 60px;
}

.facts-item-title h3 {
  font-size: 20px;
  text-transform: capitalize;
}

.facts-item-counter {
  margin-bottom: 60px;
}

.facts-item-counter h2 {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.facts-item-counter p {
  margin: 0;
}

.facts-item-content {
  background: var(--bg-color);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 20px;
}

.facts-item-content p {
  margin: 0;
}

/************************************/
/***     09. Our Projects css     ***/
/************************************/

.our-projects {
  padding: 80px 0 50px;
}

.our-projects .container-fluid {
  max-width: 1600px;
}

.project-item {
  position: relative;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.project-image a {
  display: block;
  cursor: none;
}

.project-image figure {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.project-image figure:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg,
      rgba(6, 6, 6, 0) 49.26%,
      rgba(6, 6, 6, 0.6) 86.32%);
  z-index: 1;
}

.project-image img {
  width: 100%;
  aspect-ratio: 1 / 1.352;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
}

.project-item:hover .project-image img {
  transform: scale(1.1);
  filter: blur(5px);
}

.project-btn {
  position: absolute;
  top: 50px;
  right: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.project-item:hover .project-btn {
  top: 30px;
  opacity: 1;
  visibility: visible;
}

.project-btn a {
  position: relative;
  display: block;
  background: linear-gradient(to right,
      var(--accent-color) 0%,
      var(--accent-secondary-color) 50%,
      var(--accent-color) 100%);
  background-size: 200% auto;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.project-btn a:hover {
  background-position: right center;
}

.project-btn a img {
  width: 100%;
  max-width: 20px;
  transition: all 0.3s ease-in-out;
}

.project-btn a:hover {
  transform: rotate(45deg);
}

.project-content {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
  z-index: 2;
}

.project-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.project-content h3 a {
  color: inherit;
}

.project-content p {
  padding-left: 25px;
  background: url("../images/icon-sparkle.svg") no-repeat;
  background-position: left center;
  background-size: 18px auto;
  text-transform: capitalize;
  margin: 0;
}

/************************************/
/***      10. Real Impact css     ***/
/************************************/

.real-impacts {
  padding: 80px 0;
}

.real-impact-item {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.real-impact-image {
  border: 1px solid var(--divider-color);
  background: var(--secondary-color) url("../images/real-impact-image-bg.svg") no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 40px;
}

.real-impact-image h3 {
  font-size: 20px;
  line-height: 1.3em;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.impact-chatbot-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.chatbot-item {
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  border: 1px solid var(--divider-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.real-impact-image .chatbot-item img {
  width: 100%;
  max-width: 30px;
}

.real-impact-image figure img {
  aspect-ratio: 1 / 0.57;
  object-fit: cover;
  border: 1px solid var(--divider-color);
  border-radius: 20px;
}

.real-impact-content.highlighted-content {
  background-color: var(--secondary-color);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
}

.customer-review-images {
  display: inline-flex;
  margin-right: 15px;
}

.customer-image {
  margin-left: -14px;
}

.customer-image:first-child {
  margin: 0;
}

.customer-image figure {
  display: block;
  width: 40px;
  border-radius: 50%;
}

.customer-image img {
  width: 100%;
  max-width: 40px;
  border-radius: 50%;
}

.real-impact-content p {
  margin: 0;
}

/************************************/
/***        11. CTA Box css       ***/
/************************************/

.cta-box {
  padding: 80px 0;
}

.cta-box-box {
  position: relative;
  background: var(--secondary-color) url("../images/cta-box-bg.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 120px 0;
}

/* .cta-box-box::before{
    content: '';
    display: block;
    position: absolute;
    left: 60px;
    top: 60px;
    background: url(../images/section-bg-shape-1.png) no-repeat;
    background-position: left top;
    background-size: cover;
    width: 113px;
    height: 110px;
    animation: shape1 20s infinite linear;
    animation-direction: alternate;
    z-index: 0;
} */

/* .cta-box-box::after{
    content: '';
    display: block;
    position: absolute;
    right: 60px;
    bottom: 80px;
    background: url(../images/section-bg-shape-2.png) no-repeat;
    background-position: right bottom;
    background-size: cover;
    width: 82px;
    height: 110px;
    animation: shape1 20s infinite linear;
    animation-direction: alternate;
    z-index: 0;
} */

.cta-box-content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.cta-box-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/************************************/
/***      12. What We Do css      ***/
/************************************/

/* .what-we-do {
  padding: 80px 0;
  } */

.what-we-box {
  background: var(--secondary-color) url("../images/what-we-do-box-bg.svg");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 50px 45px;
  text-align: center;
  margin-right: 15px;
}

.what-we-box h3 {
  font-size: 20px;
  line-height: 1.3em;
  margin-bottom: 50px;
}

.what-we-img img {
  width: 100%;
}

.what-we-img-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.what-we-img-list ul li {
  width: auto;
  line-height: 1.3em;
  border: 1px solid var(--divider-color);
  background: var(--secondary-color) url(../images/icon-sparkle-gradient.svg) no-repeat;
  background-position: left 15px center;
  background-size: 20px auto;
  border-radius: 100px;
  padding: 10px 15px 10px 45px;
}

.what-we-do-content {
  margin-left: 15px;
}

.what-we-do-body {
  margin-bottom: 40px;
}

.what-we-do-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.what-we-do-body ul li {
  position: relative;
  line-height: normal;
  border: 1px solid var(--divider-color);
  background: var(--secondary-color);
  border-radius: 100px;
  padding: 10px 15px 10px 45px;
}

.what-we-do-body ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  top: 12px;
  left: 15px;
  font-weight: 900;
  font-size: 18px;
  color: var(--accent-color);
}

/************************************/
/***   13. Our Testimonial css    ***/
/************************************/

.our-testimonials {
  padding: 80px 0;
}

.testimonials-box {
  background: var(--secondary-color) url("../images/testimonials-box-bg.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 80px;
  overflow: hidden;
}

.testimonials-content,
.testimonial-slider {
  width: 50%;
}

.testimonials-body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 60px;
}

.testimonials-counter-item h2 {
  color: var(--accent-color);
  font-size: 48px;
  margin-bottom: 5px;
}

.testimonials-counter-item p {
  text-transform: capitalize;
  margin: 0;
}

.testimonial-slider {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 25px auto;
}

.testimonial-slider::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--divider-color);
  border-radius: 20px;
  transform: rotate(-9deg);
  z-index: 0;
}

.testimonial-slider .swiper {
  position: relative;
  background: linear-gradient(136.83deg,
      var(--accent-color) 2.01%,
      var(--accent-secondary-color) 97.82%);
  border: 1px solid var(--secondary-color);
  border-radius: 20px;
  padding: 30px 30px 90px 30px;
  z-index: 1;
}

.testimonial-slider .swiper-wrapper {
  cursor: none;
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
  gap: 10px;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  display: inline-block;
  margin-right: 15px;
}

.author-image figure {
  border-radius: 50%;
  display: block;
}

.author-image img {
  width: 100%;
  max-width: 50px;
  border-radius: 50%;
}

.author-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.author-content p {
  color: var(--primary-color);
  text-transform: capitalize;
  margin-bottom: 0;
}

.testimonial-quotes-img img {
  width: 100%;
  max-width: 30px;
}

.testimonial-content p {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.testimonial-slider .testimonial-pagination {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet {
  position: relative;
  height: 10px;
  width: 10px;
  background: var(--primary-color);
  opacity: 1;
  margin: 0 10px;
  transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 0;
  width: 0;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--primary-color);
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active:before {
  border: 1px solid var(--primary-color);
  height: 22px;
  width: 22px;
}

/************************************/
/***        14. Our FAQs css      ***/
/************************************/

.our-faqs {
  padding: 80px 0;
}

.faqs-content {
  position: sticky;
  top: 30px;
  margin-right: 30px;
}

.faq-accordion .accordion-item {
  position: relative;
  background: var(--secondary-color);
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 0;
  overflow: hidden;
}

.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.333em;
  background: transparent;
  color: var(--primary-color);
  padding: 20px 50px 20px 20px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: "\f107";
  font-family: "FontAwesome";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-accordion .accordion-item .accordion-body {
  border-top: 1px solid var(--divider-color);
  padding: 20px;
}

.faq-accordion .accordion-item .accordion-body p {
  margin: 0;
}

/************************************/
/***       15. Our Blog css       ***/
/************************************/

.our-blog {
  padding: 80px 0 130px;
}

.post-item {
  position: relative;
  background: var(--secondary-color) url("../images/post-item-bg.svg") no-repeat;
  background-position: center center;
  background-size: cover;
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 40px 35px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.post-meta {
  margin-bottom: 20px;
}

.post-meta ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.post-meta ul li {
  line-height: normal;
  text-transform: capitalize;
}

.post-meta ul li a {
  color: inherit;
}

.post-meta ul li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 5px;
}

.post-item-content {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.post-item-content h2 {
  font-size: 20px;
  line-height: 1.4em;
  margin-bottom: 15px;
}

.post-item-content h2 a {
  color: inherit;
}

.post-item-content p {
  margin: 0;
}

/************************************/
/***        16. Footer css        ***/
/************************************/

.main-footer {
  background: url("../images/footer-bg.png") no-repeat;
  background-position: bottom center;
  background-size: auto;
  border-top: 1px solid var(--divider-color);
  padding: 100px 0 0;
}

.main-footer .section-row {
  /* border-bottom: 1px solid var(--divider-color); */
  padding-bottom: 80px;
}

.footer-logo img {
  width: 100%;
  max-width: 202px;
}

.footer-contact-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-contact-box .footer-links {
  width: calc(50% - 15px);
}

.footer-links h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.footer-links p {
  margin-bottom: 2px;
}

.footer-links p:last-child {
  margin-bottom: 0;
}

.footer-links p a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.footer-links p a:hover {
  color: var(--accent-color);
}

.footer-privacy-policy {
  margin-left: 20px;
}

.footer-newsletter-form .form-group {
  display: flex;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 15px;
}

.footer-newsletter-form .form-group .form-control {
  width: 70%;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4em;
  color: var(--text-color);
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  padding: 0;
}

.footer-newsletter-form .form-group .form-control::placeholder {
  color: var(--text-color);
}

.footer-newsletter-form .form-group .newsletter-btn {
  width: 30%;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--primary-color);
  background: transparent;
  border: none;
  text-align: right;
  padding: 0;
  transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover {
  color: var(--accent-color);
}

.footer-newsletter-form .form-group .newsletter-btn i {
  font-size: 18px;
  color: var(--accent-color);
  margin-left: 8px;
}

.footer-copyright-text {
  border-top: 1px solid var(--divider-color);
  text-align: center;
  margin-top: 80px;
  padding: 60px 0;
}

.footer-copyright-text p {
  margin: 0;
}

/************************************/
/***     17. About Us Page css    ***/
/************************************/

.page-header {
  position: relative;
  background: url("../images/page-header-bg.png") no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 265px 0 80px;
  z-index: 1;
}

/* .page-header::before{
    content: '';
    display: block;
    position: absolute;
    left: 160px;
    bottom: 20%;
    background: url('../images/section-bg-shape-1.png') no-repeat;
    background-position: left center;
    background-size: cover;
    width: 113px;
    height: 110px;
    animation: shape1 20s infinite linear;
    animation-direction: alternate;
    z-index: 0;
} */

@keyframes shape1 {
  from {
    transform: translateY(0) rotate(0deg);
  }

  to {
    transform: translateY(50px) rotate(360deg);
  }
}

/* .page-header::after{
    content: '';
    display: block;
    position: absolute;
    right: 220px;
    top: 40%;
    background: url('../images/section-bg-shape-2.png') no-repeat;
    background-position: right center;
    background-size: cover;
    width: 82px;
    height: 110px;
    animation: shape1 20s infinite linear;
    animation-direction: alternate;
    z-index: 0;
} */

.page-header-box {
  position: relative;
  text-align: center;
  z-index: 1;
  position: relative;
  bottom: 120px;
}
@media (max-width: 1024px) {
  .page-header-box {
    bottom: 80px; /* Less gap for tablets */
  }
}

/* Mobile view (480px and below) */
@media (max-width: 768px) {
  .page-header-box {
    bottom: 40px; /* Even less gap for mobiles */
  }
}

/* Extra small devices (375px and below) */
@media (max-width: 480px) {
  .page-header-box {
    bottom: 20px; /* Almost no offset on very small screens */
  }
}

.page-header-box h1 {
  font-size: 70px;
  display: inline-block;
  line-height: 1.2em;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  cursor: none;
}

.page-header-box h1 span {
  font-weight: 700;
  background: linear-gradient(to right,
      var(--accent-color) 0%,
      var(--accent-secondary-color) 50%,
      var(--accent-color) 100%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease-in-out;
}

.page-header-box h1:hover span {
  background-position: right center;
}

.page-header-box ol {
  margin: 0;
  padding: 0;
  justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  text-transform: capitalize;
  color: var(--text-color);
}

.page-header-box ol li.breadcrumb-item a {
  color: inherit;
}

.page-header-box ol li.breadcrumb-item.active {
  color: var(--text-color);
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
  content: "/";
  color: var(--text-color);
}

.our-approach {
  padding: 80px 0;
}

.approach-item {
  position: relative;
  display: flex;
  margin-bottom: 40px;
}

.approach-item:last-child {
  margin-bottom: 0;
}

.approach-item:after {
  content: "";
  display: block;
  position: absolute;
  left: 40px;
  bottom: -80px;
  border-left: 1px solid var(--divider-color);
  width: 1px;
  height: 100%;
}

.approach-item:last-child:after {
  display: none;
}

.approach-item .icon-box {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--accent-color);
  border-radius: 50%;
  margin-right: 40px;
}

.approach-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(120deg,
      var(--accent-color) 0,
      var(--accent-secondary-color) 100%);
  border-radius: 50%;
  height: 100%;
  width: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.approach-item:hover .icon-box::before {
  transform: scale(1);
}

.approach-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 40px;
  z-index: 1;
}

.approach-item-content {
  width: calc(100% - 120px);
}

.approach-item-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.approach-item-content p {
  margin-bottom: 0;
}

.approach-image {
  position: relative;
  margin-left: 15px;
}

.approach-image figure {
  display: block;
  border-radius: 20px;
}

.approach-image img {
  width: 100%;
  aspect-ratio: 1 / 0.604;
  object-fit: cover;
  border-radius: 20px;
}

.approach-counter-box {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  --webkit-backdrop-filter: blur(20px);
  padding: 20px;
  overflow: hidden;
  z-index: 1;
}

.approach-counter-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--secondary-color);
  opacity: 21%;
  height: 100%;
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.approach-counter-item {
  position: relative;
  border-right: 1px solid var(--divider-color);
  margin-right: 15px;
  padding-right: 15px;
  z-index: 1;
}

.approach-counter-item:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.approach-counter-item h2 {
  font-size: 48px;
  margin-bottom: 5px;
}

.approach-counter-item p {
  color: var(--primary-color);
  margin-bottom: 0;
}

.our-solution {
  padding: 80px 0;
}

.our-solution-content {
  position: sticky;
  top: 20px;
  margin-right: 15px;
}

.our-solution-content .section-title {
  margin-bottom: 0;
}

.solution-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.solution-item {
  width: calc(50% - 15px);
  padding: 20px;
}

.solution-item:nth-child(4n - 3),
.solution-item:nth-child(4n - 4) {
  background: url("../images/solution-item-bg.svg") no-repeat;
  background-position: center center;
  background-size: cover;
  border: 1px solid var(--divider-color);
  border-radius: 20px;
}

.solution-item .icon-box {
  position: relative;
  background: var(--accent-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.solution-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-color) no-repeat;
  border-radius: 50%;
  height: 100%;
  width: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.solution-item:hover .icon-box::before {
  transform: scale(1);
}

.solution-item .icon-box img {
  position: relative;
  max-width: 30px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.solution-item:hover .icon-box img {
  filter: brightness(0) invert(0);
}

.solution-item-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.solution-item-content p {
  margin-bottom: 0;
}

.our-team {
  padding: 80px 0 50px;
}

.team-item {
  position: relative;
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.team-image figure,
.team-image a {
  display: block;
  cursor: none;
}

.team-image img {
  width: 100%;
  aspect-ratio: 1 / 1.424;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

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

.team-body {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  border: 1px solid var(--divider-color);
  background: var(--secondary-color) url("../images/team-body-bg.svg") no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
  text-align: center;
  padding: 20px;
  overflow: hidden;
  z-index: 1;
}

.team-content h3 {
  font-size: 20px;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.team-content h3 a {
  color: inherit;
}

.team-content p {
  text-transform: capitalize;
  margin-bottom: 0;
}

.team-social-list {
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

.team-item:hover .team-social-list {
  height: 38px;
  opacity: 1;
  visibility: visible;
  margin-top: 10px;
}

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

.team-social-list ul li {
  display: inline-block;
  margin-right: 10px;
}

.team-social-list ul li:last-child {
  margin: 0;
}

.team-social-list ul li a {
  background: var(--bg-color);
  border: 1px solid var(--divider-color);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.team-social-list ul li a:hover {
  background: var(--primary-color);
}

.team-social-list ul li a i {
  font-size: 18px;
  line-height: normal;
  background: linear-gradient(90deg,
      var(--accent-color) 0%,
      var(--accent-secondary-color) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.our-faqs.about-our-faqs {
  padding: 80px 0 160px;
}

/************************************/
/***    18. Services Page css     ***/
/************************************/

.page-services {
  padding: 80px 0 50px;
}

/************************************/
/***    19. Service Single css    ***/
/************************************/

.page-service-single {
  padding: 80px 0 160px;
}

.page-single-sidebar {
  position: sticky;
  top: 30px;
  margin-right: 15px;
}

.page-catagery-list {
  background: var(--secondary-color) url("../images/sidebar-catagery-list-bg.svg") no-repeat;
  background-position: center center;
  background-size: cover;
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  margin-bottom: 60px;
  overflow: hidden;
}

.page-catagery-list h3 {
  font-size: 20px;
  text-transform: capitalize;
  color: var(--primary-color);
  border-bottom: 1px solid var(--divider-color);
  padding: 30px;
}

.page-catagery-list ul {
  list-style: none;
  margin: 0;
  padding: 30px;
}

.page-catagery-list ul li {
  border-bottom: 1px solid var(--divider-color);
  line-height: 1.5em;
  padding-bottom: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}

.page-catagery-list ul li:last-child {
  margin: 0;
  padding: 0;
  border-bottom: none;
}

.page-catagery-list ul li a {
  position: relative;
  display: block;
  text-transform: capitalize;
  color: var(--primary-color);
  padding-right: 30px;
  transition: all 0.3s ease-in-out;
}

.page-catagery-list ul li a:hover {
  color: var(--accent-color);
}

.page-catagery-list ul li a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background: url("../images/arrow-accent.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 8px auto;
  border: 1px solid var(--divider-color);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.page-catagery-list ul li a:hover:before {
  border-color: var(--accent-color);
  transform: rotate(45deg);
}

.sidebar-cta-box {
  position: relative;
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
}

.sidebar-cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/sidebar-cta-box.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 30%;
  width: 100%;
  height: 100%;
}

.sidebar-cta-logo,
.sidebar-cta-content,
.sidebar-cta-contact {
  position: relative;
  z-index: 1;
}

.sidebar-cta-logo {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg,
      var(--accent-color) 0%,
      var(--accent-secondary-color) 100%);
  border-radius: 50%;
  margin-bottom: 30px;
}

.sidebar-cta-logo img {
  width: 100%;
  max-width: 48px;
}

.sidebar-cta-content {
  margin-bottom: 40px;
}

.sidebar-cta-content h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.sidebar-cta-content p {
  margin: 0;
}

.sidebar-cta-contact ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-cta-contact ul li {
  width: 100%;
  margin-bottom: 20px;
}

.sidebar-cta-contact ul li:last-child {
  margin-bottom: 0;
}

.sidebar-cta-contact ul li a {
  display: inline-flex;
  align-items: center;
  line-height: 1.4em;
  color: var(--text-color);
  background: var(--divider-color);
  backdrop-filter: blur(10px);
  --webkit-backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
}

.sidebar-cta-contact ul li a:hover {
  color: var(--primary-color);
}

.sidebar-cta-contact ul li a img {
  width: 100%;
  max-width: 20px;
  margin-right: 10px;
}

.page-single-image {
  margin-bottom: 40px;
}

.page-single-image figure {
  display: block;
  border-radius: 20px;
}

.page-single-image img {
  width: 100%;
  aspect-ratio: 1 / 0.598;
  object-fit: cover;
  border-radius: 20px;
}

.service-entry {
  margin-bottom: 60px;
}

.service-entry p {
  margin-bottom: 20px;
}

.service-entry p:last-child {
  margin-bottom: 0;
}

.service-entry h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
}

.service-entry h2 span {
  font-weight: 700;
  background: linear-gradient(to right,
      var(--accent-color) 0%,
      var(--accent-secondary-color) 50%,
      var(--accent-color) 100%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease-in-out;
}

.service-entry h2:hover span {
  background-position: right center;
}

.service-entry ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.service-entry ul li {
  position: relative;
  width: calc(33.33% - 20px);
  line-height: 1.25em;
  background-color: var(--secondary-color);
  border: 1px solid var(--divider-color);
  border-radius: 100px;
  padding: 10px 15px 10px 45px;
}

.service-entry ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  top: 12px;
  left: 15px;
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
}

.service-solution-box,
.service-impact-box,
.service-innovation-box,
.building-smarter-box {
  margin-top: 60px;
}

.service-solution-steps {
  margin-top: 40px;
}

.service-impact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  border: 1px solid var(--divider-color);
  background: var(--secondary-color) url("../images/service-impact-list-bg.svg") no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
  margin-top: 40px;
  padding: 40px;
}

.service-impact-item {
  width: calc(33.33% - 20px);
}

.service-impact-item .icon-box {
  position: relative;
  background: var(--accent-color);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.service-impact-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(120deg,
      var(--accent-color) 0,
      var(--accent-secondary-color) 100%) no-repeat;
  border-radius: 50%;
  height: 100%;
  width: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.service-impact-item:hover .icon-box::before {
  transform: scale(1);
}

.service-impact-item .icon-box img {
  position: relative;
  max-width: 40px;
  z-index: 1;
}

.service-impact-item-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.service-innovation-list {
  margin-top: 40px;
}

.building-steps-image {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.building-smarter-steps,
.building-smarter-image {
  width: calc(50% - 15px);
}

.building-step-item {
  display: flex;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.building-step-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.building-step-no {
  margin-right: 30px;
}

.building-step-no h2 {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}

.building-step-item:hover .building-step-no h2 {
  color: var(--accent-color);
}

.building-step-content h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.building-smarter-image figure {
  display: block;
  border-radius: 20px;
  height: 100%;
}

.building-smarter-image img {
  width: 100%;
  aspect-ratio: 1 / 0.68;
  object-fit: cover;
  border-radius: 20px;
}

/************************************/
/***     20. Blog Archive css     ***/
/************************************/

.page-blog {
  padding: 80px 0 160px;
}

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

.page-pagination ul {
  justify-content: center;
  padding: 0;
  margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  background: var(--divider-color);
  color: var(--primary-color);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  font-weight: 600;
  line-height: 1em;
  transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
  background: var(--accent-color);
}

/************************************/
/***     21. Blog Single css      ***/
/************************************/

.page-single-post {
  padding: 80px 0 160px;
}

.post-single-meta ol li {
  font-size: 18px;
  color: var(--primary-color);
  margin-right: 15px;
}

.post-single-meta ol li:last-child {
  margin-right: 0;
}

.post-single-meta ol li i {
  font-size: 18px;
  color: var(--primary-color);
  margin-right: 5px;
}

.post-image {
  position: relative;
  margin-bottom: 30px;
}

.post-image figure {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  aspect-ratio: 1 / 0.5;
  object-fit: cover;
  border-radius: 20px;
}

.post-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.post-entry {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.post-entry:after {
  content: "";
  display: block;
  clear: both;
}

.post-entry a {
  color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
  font-weight: 300;
  line-height: 1.2em;
  margin: 0 0 0.477em;
}

.post-entry h1 {
  font-size: 70px;
}

.post-entry h2 {
  font-size: 48px;
}

.post-entry h3 {
  font-size: 40px;
}

.post-entry h4 {
  font-size: 30px;
}

.post-entry h5 {
  font-size: 24px;
}

.post-entry h6 {
  font-size: 20px;
}

.post-entry p {
  margin-bottom: 20px;
}

.post-entry p:last-child {
  margin-bottom: 0;
}

.post-entry p strong {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
}

.post-entry ol {
  margin: 0 0 30px;
}

.post-entry ul {
  padding: 0;
  margin: 20px 0 20px;
  padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
  color: var(--text-color);
  margin-bottom: 15px;
}

.post-entry ul li:last-child {
  margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
  margin-top: 20px;
  margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
  margin-bottom: 0;
}

.post-entry blockquote {
  background: url("../images/icon-blockquote.svg"), var(--secondary-color);
  background-repeat: no-repeat;
  background-position: 30px 30px;
  background-size: 45px;
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 30px 30px 30px 90px;
  margin-bottom: 30px;
}

.post-entry blockquote p {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5em;
  color: var(--primary-color);
}

.post-entry blockquote p:last-child {
  margin-bottom: 0;
}

.tag-links {
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.post-tags .tag-links a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1em;
  background: linear-gradient(to right,
      var(--accent-color) 0%,
      var(--accent-secondary-color) 50%,
      var(--accent-color) 100%);
  background-size: 200% auto;
  color: var(--white-color);
  border-radius: 100px;
  padding: 12px 20px;
  transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
  background-position: right center;
}

.post-social-sharing {
  text-align: right;
}

.post-social-sharing ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-social-sharing ul li {
  display: inline-block;
  margin-right: 10px;
}

.post-social-sharing ul li:last-child {
  margin-right: 0;
}

.post-social-sharing ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(to right,
      var(--accent-color) 0%,
      var(--accent-secondary-color) 50%,
      var(--accent-color) 100%);
  background-size: 200% auto;
  color: var(--primary-color);
  border-radius: 100px;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
  background-position: right center;
}

.post-social-sharing ul li a i {
  font-size: 18px;
  color: inherit;
}

/************************************/
/***     22. Projects Page css    ***/
/************************************/

.page-projects {
  padding: 80px 0 130px;
}

/************************************/
/***    23. Project Details css   ***/
/************************************/

.page-project-single {
  padding: 80px 0 160px;
}

.project-category {
  border: 1px solid var(--divider-color);
  background: var(--secondary-color) url("../images/sidebar-catagery-list-bg.svg") no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 30px;
  overflow: hidden;
}

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

.project-category-list ul li {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5em;
  text-transform: capitalize;
  color: var(--primary-color);
  border-bottom: 1px solid var(--divider-color);
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.project-category-list ul li span {
  font-size: 16px;
  font-weight: 400;
}

.category-social-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 20px;
}

.category-social-link h3 {
  font-size: 20px;
}

.category-social-link ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-social-link ul li a {
  background: var(--bg-color);
  border: 1px solid var(--divider-color);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.category-social-link ul li a:hover {
  background: var(--primary-color);
}

.category-social-link ul li a i {
  font-size: 18px;
  line-height: normal;
  background: linear-gradient(90deg,
      var(--accent-color) 0%,
      var(--accent-secondary-color) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.project-entry {
  margin-bottom: 60px;
}

.project-entry p {
  margin-bottom: 20px;
}

.project-entry p:last-child {
  margin-bottom: 0;
}

.project-entry h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
}

.project-entry h2 span {
  font-weight: 700;
  background: linear-gradient(to right,
      var(--accent-color) 0%,
      var(--accent-secondary-color) 50%,
      var(--accent-color) 100%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease-in-out;
}

.project-entry h2:hover span {
  background-position: right center;
}

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

.project-entry ul li {
  position: relative;
  line-height: 1.5em;
  padding-left: 30px;
  margin-bottom: 15px;
}

.project-entry ul li:last-child {
  margin-bottom: 0;
}

.project-entry ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
}

.project-challenge-box,
.project-solution-box {
  margin-top: 60px;
}

.project-challenge-list {
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  margin-top: 40px;
  padding: 30px;
}

.project-solution-counters {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 60px;
  margin-top: 40px;
}

.solution-counter-item {
  width: calc(25% - 45px);
}

.solution-counter-item h2 {
  margin-bottom: 5px;
}

/************************************/
/***      24. Team Page css       ***/
/************************************/

.page-team {
  padding: 80px 0 130px;
}

/************************************/
/***     25. Team Single css      ***/
/************************************/

.page-team-single {
  padding: 80px 0 160px;
}

.team-single-image {
  margin-bottom: 60px;
}

.team-single-image figure {
  display: block;
  border-radius: 20px;
}

.team-single-image img {
  width: 100%;
  aspect-ratio: 1 / 1.29;
  object-fit: cover;
  border-radius: 20px;
}

.team-member-info,
.team-expertise-box,
.team-guideline-box {
  margin-bottom: 60px;
}

.team-member-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px 80px;
}

.member-info-box {
  position: relative;
  width: calc(62% - 40px);
}

.member-info-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: -40px;
  background-color: var(--divider-color);
  width: 1px;
  height: 100%;
}

.member-info-box .section-title h3 {
  font-size: 16px;
  letter-spacing: 0;
  text-transform: capitalize;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  margin-bottom: 10px;
}

.member-info-box .section-title h3::before,
.member-info-box .section-title h3::after {
  display: none;
}

.member-contact-list {
  width: calc(38% - 40px);
}

.member-social-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.member-social-links ul li {
  display: inline-block;
  border-radius: 50%;
  margin-right: 15px;
}

.member-social-links ul li:last-child {
  margin: 0;
}

.member-social-links ul li a {
  width: 36px;
  height: 36px;
  background: linear-gradient(to right,
      var(--accent-color) 0%,
      var(--accent-secondary-color) 50%,
      var(--accent-color) 100%);
  background-size: 200% auto;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  transition: all 0.4s ease-in-out;
}

.member-social-links ul li:hover a {
  background-position: right center;
}

.member-social-links ul li a i {
  font-size: 18px;
  color: inherit;
}

.member-contact-item {
  margin-bottom: 30px;
}

.member-contact-item:last-child {
  margin-bottom: 0;
}

.member-contact-item h3 {
  font-size: 20px;
  display: inline-block;
  text-transform: capitalize;
  background: linear-gradient(90deg,
      var(--accent-color) 0%,
      var(--accent-secondary-color) 100%);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.member-contact-item p {
  margin-bottom: 0;
}

.member-contact-item p a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.member-contact-item p a:hover {
  color: var(--accent-color);
}

.team-expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
}

.skills-progress-bar {
  width: calc(50% - 15px);
}

.skills-progress-bar .skill-data {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.skills-progress-bar .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: capitalize;
}

.skills-progress-bar .skillbar .skill-progress {
  position: relative;
  width: 100%;
  height: 16px;
  border: 1px solid var(--divider-color);
  background: var(--secondary-color);
  border-radius: 100px;
  overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg,
      var(--accent-color) 0%,
      var(--accent-secondary-color) 100%);
  border-radius: 100px;
}

.team-guideline-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.team-guideline-list ul li {
  position: relative;
  width: calc(50% - 15px);
  line-height: 1.25em;
  background-color: var(--secondary-color);
  border: 1px solid var(--divider-color);
  border-radius: 100px;
  padding: 10px 15px 10px 40px;
}

.team-guideline-list ul li::before {
  content: "\f058";
  position: absolute;
  font-family: "Font Awesome 6 Free";
  top: 10px;
  left: 15px;
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
}

.team-contact-form .contact-form {
  border: 1px solid var(--divider-color);
  border-radius: 20px;
}

/************************************/
/***   26. Testimonials Page css  ***/
/************************************/

.page-testimonials {
  padding: 80px 0 50px;
}

.page-testimonials .testimonial-item {
  position: relative;
  border: 1px solid var(--divider-color);
  background: var(--secondary-color) url("../images/testimonial-item-bg.svg") no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 30px 25px;
  overflow: hidden;
}

.page-testimonials .testimonial-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(136.83deg,
      var(--accent-color) 2.01%,
      var(--accent-secondary-color) 97.82%);
  border-radius: 999px 999px 0 0;
  height: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.page-testimonials .testimonial-item.active:before,
.page-testimonials .testimonial-item:hover:before {
  border-radius: 0;
  height: 100%;
}

.page-testimonials .testimonial-item .testimonial-content,
.page-testimonials .testimonial-item .testimonial-header {
  position: relative;
  z-index: 1;
}

/************************************/
/***     27. Image Gallery css    ***/
/************************************/

/* .page-gallery {
  padding: 80px 0 130px;
} */

.page-gallery-box .photo-gallery {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
  cursor: none;
}

.page-gallery-box .photo-gallery figure {
  display: block;
  border-radius: 20px;
}

.page-gallery-box .photo-gallery img {
  width: 100%;
  aspect-ratio: 1 / 0.829;
  object-fit: cover;
  border-radius: 20px;
}

/************************************/
/***    28. Video Gallery css     ***/
/************************************/

/* .page-video-gallery {
  padding: 80px 0 130px;
} */

.video-gallery-image {
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.video-gallery-image a {
  position: relative;
  display: block;
  cursor: none;
}

.video-gallery-image a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--secondary-color);
  border-radius: 20px;
  opacity: 0%;
  visibility: hidden;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
  opacity: 40%;
  visibility: visible;
  transform: scale(1);
}

.video-gallery-image a::after {
  content: "\f04b";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  font-size: 20px;
  background: linear-gradient(136.83deg,
      var(--accent-color) 2.01%,
      var(--accent-secondary-color) 97.82%);
  color: var(--primary-color);
  border-radius: 50%;
  height: 60px;
  width: 60px;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.video-gallery-image:hover a::after {
  opacity: 1;
  visibility: visible;
}

.video-gallery-image img {
  width: 100%;
  /* aspect-ratio: 1 / 0.829; */
  object-fit: cover;
  border-radius: 20px;
}

/************************************/
/***      29. FAQs Page css       ***/
/************************************/

.page-faqs {
  padding: 80px 0 160px;
}

.page-faqs .page-faq-accordion {
  margin-bottom: 60px;
}

.page-faqs .page-faq-accordion:last-child {
  margin-bottom: 0px;
}

/************************************/
/***    30. Contact Us Page css   ***/
/************************************/

/* .page-contact-us {
  padding: 80px 0 110px;
} */

.conatct-us-form {
  display: flex;
  flex-wrap: wrap;
  border-radius: 40px;
  border: 1px solid var(--divider-color);
  overflow: hidden;
}

.contact-form {
  background: var(--secondary-color) url("../images/contact-form-bg.png") no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 40px;
}

.contact-form form .form-control {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--text-color);
  background-color: var(--secondary-color);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 17px 20px;
  outline: none;
  box-shadow: none;
}

.contact-form form .form-control::placeholder {
  color: var(--text-color);
}

.contact-form form .btn-default {
  width: 100%;
  padding: 17px;
}

.conatct-us-form .contact-form,
.google-map-iframe {
  width: 50%;
}

.google-map-iframe iframe {
  width: 100%;
  height: 100%;
}

.contact-info-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 160px;
  margin-bottom: 30px;
}

.contact-info-item {
  position: relative;
  width: calc(25% - 22.5px);
  border: 1px solid var(--divider-color);
  background: var(--secondary-color) url("../images/contact-info-item-bg.png") no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
  text-align: center;
  padding: 30px;
  overflow: hidden;
}

.contact-info-item .icon-box,
.contact-info-content {
  position: relative;
  z-index: 1;
}

.contact-info-item .icon-box {
  position: relative;
  background: var(--accent-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
}

.contact-info-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(120deg,
      var(--accent-color),
      var(--accent-secondary-color)) no-repeat;
  border-radius: 50%;
  height: 100%;
  width: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box::before {
  transform: scale(1);
}

.contact-info-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 30px;
  z-index: 1;
}

.contact-info-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.contact-info-content p {
  margin-bottom: 2px;
}

.contact-info-content p:last-child {
  margin-bottom: 0;
}

.contact-info-content p a {
  color: inherit;
}

/************************************/
/***    31. 404 Error Page css    ***/
/************************************/

.error-page {
  padding: 80px 0 160px;
}

.error-page-image {
  text-align: center;
  margin-bottom: 30px;
}

.error-page-image img {
  width: 100%;
  max-width: 45%;
}

.error-page-content {
  text-align: center;
}

.error-page-content .section-title {
  margin-bottom: 15px;
}

/************************************/
/***      32. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1600px) {
  .our-projects .container-fluid {
    max-width: 100%;
  }
}

@media only screen and (max-width: 1440px) {
  .hero::before {
    left: 30px;
  }

  .hero::after {
    right: 30px;
  }

  .hero-content::before {
    left: -20%;
  }

  .hero-content::after {
    right: -20%;
  }

  .page-header::before {
    left: 30px;
  }

  .page-header::after {
    right: 30px;
  }
}

@media only screen and (max-width: 1024px) {
  .hero-content::before {
    left: -5%;
  }

  .hero-content::after {
    right: -5%;
  }
}

@media only screen and (max-width: 991px) {
  .navbar {
    padding: 20px 0;
  }

  .slicknav_nav li,
  .slicknav_nav ul {
    display: block;
  }

  .responsive-menu,
  .navbar-toggle {
    display: block;
  }



  .btn-default {
    padding: 14px 20px;
  }

  .btn-default.btn-highlighted {
    padding: 13px 20px;
  }

  .section-row {
    margin-bottom: 40px;
  }

  .section-title.section-title-center {
    max-width: 100%;
  }

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

  .section-title h3 {
    padding: 10px 30px;
    margin-bottom: 15px;
  }

  .section-title h3::before {
    left: 10px;
  }

  .section-title h3::after {
    right: 10px;
  }

  .section-title h1 {
    font-size: 50px;
  }

  .section-title h2 {
    font-size: 38px;
  }

  .section-title p {
    margin-top: 15px;
  }

  .section-title p span {
    font-size: 18px;
  }

  .section-title-content {
    margin-top: 15px;
  }

  .section-btn {
    text-align: left;
    margin-top: 15px;
  }

  .section-content-btn .section-btn {
    margin-top: 15px;
  }

  .hero {
    background-size: 165% auto;
    padding: 150px 0 40px;
  }

  .hero::before {
    width: 80px;
    height: 77px;
    opacity: 30%;
  }

  .hero::after {
    width: 52px;
    height: 80px;
    opacity: 30%;
  }

  .hero-content::before {
    left: 5%;
    width: 51px;
    height: 55px;
    opacity: 30%;
  }

  .hero-content::after {
    right: 5%;
    width: 72px;
    height: 76px;
    opacity: 30%;
  }

  .hero-btn {
    margin-top: 30px;
  }

  .hero-company-slider {
    margin-top: 40px;
  }

  .hero-company-slider p {
    margin-bottom: 20px;
  }

  .about-us {
    padding: 40px 0 10px;
  }

  .about-us-box {
    padding: 20px;
  }

  .about-us-item {
    gap: 20px;
    margin-bottom: 30px;
  }

  .about-item-content {
    width: calc(100% - 60px);
  }

  .about-item-content h3 {
    margin-bottom: 20px;
  }

  .about-item-content h2 {
    font-size: 38px;
  }

  .our-services {
    padding: 40px 0;
  }

  .service-item {
    display: block;
    padding: 20px;
  }

  .service-item-content {
    margin-bottom: 20px;
  }

  .service-list {
    margin-top: 10px;
  }

  .service-list ul {
    gap: 15px 12px;
  }

  .service-list ul li {
    background-size: 18px auto;
    padding: 8px 15px 8px 40px;
  }

  .how-it-work {
    padding: 40px 0;
  }

  .how-work-content {
    margin-bottom: 30px;
  }

  .how-work-item {
    padding: 30px;
    margin-bottom: 30px;
  }

  .how-work-header {
    margin-right: 30px;
    padding-right: 30px;
  }

  .how-work-item-content {
    width: calc(100% - 130px);
  }

  .how-work-video-content {
    position: initial;
    top: 0px;
    margin-left: 0;
  }

  .how-work-video video {
    height: 500px;
  }

  .our-facts {
    padding: 40px 0;
  }

  .facts-item {
    padding: 30px 25px;
  }

  .facts-item-counter,
  .facts-item-title {
    margin-bottom: 40px;
  }

  .facts-item-counter h2 {
    font-size: 38px;
  }

  .facts-item-content {
    padding: 15px;
  }

  .our-facts .section-footer-text {
    margin-top: 10px;
  }

  .our-projects {
    padding: 40px 0 10px;
  }

  .project-image img {
    aspect-ratio: 1 / 1.1;
  }

  .project-content {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .project-btn {
    right: 20px;
  }

  .project-item:hover .project-btn {
    top: 20px;
  }

  .project-btn a {
    width: 50px;
    height: 50px;
  }

  .project-btn a img {
    max-width: 16px;
  }

  .real-impacts {
    padding: 40px 0 10px;
  }

  .real-impact-image {
    padding: 30px;
    margin-bottom: 20px;
  }

  .real-impact-image h3 {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .impact-chatbot-list {
    gap: 10px;
  }

  .real-impact-image .chatbot-item img {
    max-width: 24px;
  }

  .cta-box {
    padding: 40px 0;
  }

  .cta-box-box {
    padding: 50px 20px;
  }

  .cta-box-box::before {
    left: 30px;
    top: 30px;
    width: 80px;
    height: 77px;
    opacity: 30%;
  }

  .cta-box-box::after {
    right: 30px;
    width: 52px;
    height: 80px;
    opacity: 30%;
  }

  .what-we-do {
    padding: 40px 0;
  }

  .what-we-box {
    padding: 40px 35px;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .what-we-box h3 {
    margin-bottom: 30px;
  }

  .what-we-img-list ul li {
    padding: 8px 15px 8px 40px;
  }

  .what-we-do-content {
    margin-left: 0;
  }

  .what-we-do-body {
    margin-bottom: 30px;
  }

  .what-we-do-body ul {
    gap: 20px;
  }

  .what-we-do-body ul li {
    padding: 8px 15px 8px 40px;
  }

  .what-we-do-body ul li::before {
    font-size: 16px;
  }

  .our-testimonials {
    padding: 40px 0;
  }

  .testimonials-box {
    padding: 50px 20px;
  }

  .testimonials-content,
  .testimonial-slider {
    width: 100%;
  }

  .testimonials-content {
    margin-bottom: 30px;
  }

  .testimonials-counter-item h2 {
    font-size: 38px;
  }

  .testimonial-header {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .testimonial-content p {
    font-size: 16px;
  }

  .our-faqs {
    padding: 40px 0;
  }

  .faqs-content {
    padding-left: 0;
    position: static;
    margin: 0 0 30px;
  }

  .faq-accordion .accordion-item {
    margin-bottom: 20px;
  }

  .faq-accordion .accordion-header .accordion-button {
    padding: 15px 45px 15px 15px;
  }

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    font-size: 20px;
    right: 15px;
  }

  .faq-accordion .accordion-item .accordion-body {
    padding: 15px;
  }

  .our-blog {
    padding: 50px 0 20px;
  }

  .post-item {
    padding: 30px;
  }

  .post-item-content {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .main-footer {
    padding: 50px 0 0;
  }

  .main-footer .section-row {
    padding-bottom: 40px;
  }

  .footer-contact-box {
    gap: 20px;
  }

  .footer-contact-box .footer-links {
    width: calc(50% - 10px);
  }

  .footer-privacy-policy {
    margin: 30px 0 0;
  }

  .footer-copyright-text {
    margin-top: 40px;
    padding: 30px 0;
  }

  .page-header {
    padding: 170px 0 40px;
  }

  .page-header::before {
    width: 80px;
    height: 77px;
    opacity: 30%;
  }

  .page-header::after {
    width: 52px;
    height: 80px;
    opacity: 30%;
  }

  .page-header-box h1 {
    font-size: 50px;
    margin-bottom: 10px;
  }

  .our-approach {
    padding: 40px 0;
  }

  .approach-item-list {
    margin-bottom: 30px;
  }

  .approach-item:after {
    left: 30px;
    bottom: -60px;
  }

  .approach-item .icon-box {
    width: 60px;
    height: 60px;
    margin-right: 20px;
  }

  .approach-item .icon-box img {
    max-width: 30px;
  }

  .approach-item-content {
    width: calc(100% - 80px);
  }

  .approach-image {
    margin-left: 0;
  }

  .approach-counter-item h2 {
    font-size: 38px;
  }

  .our-solution {
    padding: 40px 0;
  }

  .our-solution-content {
    position: initial;
    margin: 0 0 30px 0;
  }

  .solution-item .icon-box {
    margin-bottom: 30px;
  }

  .our-team {
    padding: 40px 0 10px;
  }

  .team-image img {
    aspect-ratio: 1 / 1.2;
  }

  .team-body {
    padding: 15px;
  }

  .our-faqs.about-our-faqs {
    padding: 40px 0 80px;
  }

  .page-services {
    padding: 40px 0 10px;
  }

  .page-service-single {
    padding: 40px 0 80px;
  }

  .page-single-sidebar {
    position: initial;
    margin: 0 0 30px 0;
  }

  .page-catagery-list {
    margin-bottom: 30px;
  }

  .page-catagery-list h3,
  .page-catagery-list ul {
    padding: 20px;
  }

  .page-catagery-list ul li {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .sidebar-cta-box {
    padding: 20px;
  }

  .sidebar-cta-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .sidebar-cta-logo img {
    max-width: 34px;
  }

  .sidebar-cta-content {
    margin-bottom: 30px;
  }

  .sidebar-cta-content h3 .sidebar-cta-contact ul li {
    margin-bottom: 15px;
  }

  .page-single-image {
    margin-bottom: 30px;
  }

  .service-entry {
    margin-bottom: 40px;
  }

  .service-entry p {
    margin-bottom: 15px;
  }

  .service-entry h2 {
    font-size: 38px;
    margin-bottom: 15px;
  }

  .service-entry ul {
    gap: 20px;
  }

  .service-entry ul li {
    width: calc(33.33% - 13.33px);
    padding: 8px 15px 8px 40px;
    font-size: 14px;
  }

  .service-entry ul li::before {
    font-size: 16px;
    top: 9px;
  }

  .service-solution-box,
  .service-impact-box,
  .service-innovation-box,
  .building-smarter-box {
    margin-top: 40px;
  }

  .service-solution-steps {
    margin-top: 30px;
  }

  .service-impact-list {
    padding: 30px;
    margin-top: 30px;
  }

  .service-impact-item .icon-box {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
  }

  .service-impact-item .icon-box img {
    max-width: 30px;
  }

  .service-impact-item-content h3 {
    margin-bottom: 10px;
  }

  .service-innovation-list {
    margin-top: 30px;
  }

  .building-steps-image {
    margin-top: 30px;
  }

  .building-step-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .building-step-no {
    margin-right: 20px;
  }

  .building-step-no h2 {
    margin-bottom: 0;
  }

  .page-blog {
    padding: 40px 0 80px;
  }

  .page-pagination {
    margin-top: 10px;
  }

  .page-single-post {
    padding: 40px 0 80px;
  }

  .post-image {
    margin-bottom: 20px;
  }

  .post-image figure,
  .post-image img {
    border-radius: 20px;
  }

  .post-entry h1,
  .post-entry h2,
  .post-entry h3,
  .post-entry h4,
  .post-entry h5,
  .post-entry h6 {
    margin: 0 0 0.45em;
  }

  .post-entry h2 {
    font-size: 38px;
  }

  .post-entry p {
    margin-bottom: 15px;
  }

  .post-entry ol li,
  .post-entry ul li {
    margin-bottom: 10px;
  }

  .post-entry blockquote {
    background-position: 20px 20px;
    background-size: 40px;
    padding: 20px 20px 20px 70px;
    margin-bottom: 20px;
  }

  .post-entry blockquote p {
    font-size: 18px;
  }

  .post-tags {
    margin-bottom: 20px;
  }

  .post-tags .tag-links a {
    padding: 12px 15px;
  }

  .post-social-sharing ul {
    text-align: left;
  }

  .page-projects {
    padding: 40px 0 50px;
  }

  .page-project-single {
    padding: 40px 0 80px;
  }

  .project-category {
    margin-bottom: 30px;
    padding: 20px;
  }

  .project-category-list ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .project-entry {
    margin-bottom: 40px;
  }

  .project-entry h2 {
    font-size: 38px;
    margin-bottom: 15px;
  }

  .project-entry p {
    margin-bottom: 15px;
  }

  .project-entry ul li {
    padding-left: 25px;
    margin-bottom: 10px;
  }

  .project-entry ul li::before {
    font-size: 16px;
  }

  .project-challenge-box,
  .project-solution-box {
    margin-top: 40px;
  }

  .project-challenge-list {
    margin-top: 30px;
    padding: 20px;
  }

  .project-solution-counters {
    gap: 30px 40px;
    margin-top: 30px;
  }

  .solution-counter-item {
    width: calc(25% - 30px);
  }

  .solution-counter-item h2 {
    margin-bottom: 5px;
  }

  .page-team {
    padding: 40px 0 50px;
  }

  .page-team-single {
    padding: 40px 0 80px;
  }

  .team-single-image {
    margin-bottom: 30px;
  }

  .team-single-image img {
    aspect-ratio: 1 / 0.8;
    object-position: top center;
  }

  .team-member-info,
  .team-expertise-box,
  .team-guideline-box {
    margin-bottom: 40px;
  }

  .team-expertise-list {
    gap: 30px;
  }

  .team-guideline-list ul {
    gap: 20px;
  }

  .team-guideline-list ul li {
    width: calc(50% - 10px);
    font-size: 14px;
    padding: 8px 15px 8px 40px;
  }

  .team-guideline-list ul li::before {
    font-size: 16px;
  }

  .page-testimonials {
    padding: 40px 0 10px;
  }

  .page-testimonials .testimonial-item {
    padding: 20px;
  }

  .page-gallery {
    padding: 40px 0 50px;
  }

  .page-video-gallery {
    padding: 40px 0 50px;
  }

  .page-faqs {
    padding: 40px 0 80px;
  }

  .page-faqs .page-faq-accordion {
    margin-bottom: 40px;
  }

  .page-contact-us {
    padding: 40px 0 80px;
  }

  .conatct-us-form {
    border-radius: 26px;
  }

  .conatct-us-form .contact-form,
  .google-map-iframe {
    width: 100%;
  }

  .contact-form {
    padding: 30px;
  }

  .contact-form form .form-control {
    padding: 12px 15px;
    border-radius: 14px;
  }

  .google-map-iframe iframe {
    height: 450px;
  }

  .contact-info-list {
    margin-top: 80px;
  }

  .contact-info-item {
    width: calc(50% - 15px);
    padding: 20px;
  }

  .contact-info-item .icon-box {
    margin: 0 auto 30px;
  }

  .error-page {
    padding: 40px 0 80px;
  }

  .error-page-image {
    margin-bottom: 20px;
  }

  .error-page-image img {
    max-width: 80%;
  }
}

@media only screen and (max-width: 767px) {
  .section-row {
    margin-bottom: 30px;
  }

  .section-title h3 {
    font-size: 12px;
  }

  .section-title h1 {
    font-size: 30px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .section-title p {
    margin-top: 10px;
  }

  .section-title p span {
    font-size: 16px;
  }

  .section-title-content {
    margin-top: 10px;
  }

  .hero-company-slider p {
    font-size: 18px;
  }

  .about-item-content h2 {
    font-size: 26px;
  }

  .service-item-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .service-list ul {
    gap: 10px;
  }

  .service-list ul li {
    background-position: left 10px top 10px;
    background-size: 16px auto;
    padding: 8px 10px 8px 30px;
  }

  .how-work-item {
    display: block;
    padding: 20px;
    margin-bottom: 20px;
  }

  .how-work-header {
    border-right: none;
    border-bottom: 1px solid var(--divider-color);
    margin: 0 0 20px 0;
    padding: 0 0 20px 0;
  }

  .how-work-step-no {
    text-align: left;
    margin-top: 10px;
  }

  .how-work-item-content {
    width: 100%;
  }

  .how-work-item-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .how-work-video video {
    height: 350px;
  }

  .how-work-video-content .section-footer-text {
    margin: 20px 0px 0 0px;
  }

  .facts-item {
    padding: 20px;
  }

  .facts-item-counter,
  .facts-item-title {
    margin-bottom: 30px;
  }

  .facts-item-title h3 {
    font-size: 18px;
  }

  .facts-item-counter h2 {
    font-size: 26px;
  }

  .facts-item-content {
    border-radius: 12px;
    padding: 10px;
  }

  .section-footer-text span {
    margin-right: 5px;
  }

  .project-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .real-impact-image {
    padding: 20px;
    margin-bottom: 15px;
  }

  .real-impact-image h3 {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .real-impact-content.highlighted-content {
    border-radius: 12px;
    padding: 15px;
  }

  .cta-box-box {
    padding: 50px 15px;
  }

  .what-we-box {
    padding: 25px 15px;
  }

  .what-we-box h3 {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .what-we-img-list ul {
    gap: 15px;
  }

  .what-we-img-list ul li {
    font-size: 14px;
    background-position: left 10px center;
    background-size: 18px auto;
    padding: 8px 15px 8px 35px;
  }

  .what-we-img-list ul li img {
    max-width: 16px;
  }

  .what-we-do-body ul {
    gap: 15px;
  }

  .what-we-do-body ul li {
    font-size: 14px;
    padding: 8px 15px 8px 30px;
  }

  .what-we-do-body ul li::before {
    font-size: 14px;
    left: 10px;
  }

  .testimonials-body {
    gap: 20px;
  }

  .testimonials-counter-item h2 {
    font-size: 26px;
  }

  .testimonials-counter-item p {
    font-size: 14px;
  }

  .testimonial-slider {
    margin: 10px 0;
  }

  .testimonial-slider::before {
    transform: rotate(-6deg);
  }

  .testimonial-slider .swiper {
    padding: 20px 20px 50px 20px;
  }

  .author-image {
    margin-right: 10px;
  }

  .author-content h3 {
    font-size: 18px;
    margin-bottom: 3px;
  }

  .author-content p {
    font-size: 14px;
  }

  .testimonial-quotes-img img {
    max-width: 25px;
  }

  .testimonial-slider .testimonial-pagination {
    bottom: 20px;
    left: 20px;
  }

  .faq-accordion .accordion-header .accordion-button {
    font-size: 16px;
    padding: 12px 40px 12px 12px;
  }

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    font-size: 18px;
    right: 12px;
  }

  .faq-accordion .accordion-item .accordion-body {
    padding: 12px;
  }

  .post-item {
    padding: 20px;
  }

  .post-meta {
    margin-bottom: 15px;
  }

  .post-meta ul li i {
    font-size: 16px;
  }

  .post-item-content h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }

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

  .about-footer {
    margin-bottom: 30px;
  }

  .footer-contact-box .footer-links {
    width: 100%;
  }

  .footer-links h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer-newsletter-form .form-group .newsletter-btn {
    width: 35%;
  }

  .footer-copyright-text {
    margin-top: 30px;
    padding: 15px 0;
  }

  .page-header-box h1 {
    font-size: 30px;
  }

  .approach-item {
    margin-bottom: 30px;
  }

  .approach-item:after {
    left: 25px;
    bottom: -50px;
  }

  .approach-item .icon-box {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }

  .approach-item .icon-box img {
    max-width: 26px;
  }

  .approach-item-content {
    width: calc(100% - 65px);
  }

  .approach-item-content h3 {
    font-size: 18px;
  }

  .approach-image img {
    aspect-ratio: 1 / 0.8;
  }

  .approach-counter-box {
    left: 15px;
    bottom: 15px;
    border-radius: 14px;
    padding: 15px;
  }

  .approach-counter-item h2 {
    font-size: 26px;
  }

  .approach-counter-item p {
    font-size: 14px;
  }

  .solution-item-list {
    gap: 20px;
  }

  .solution-item:nth-child(4n - 1) {
    background: url("../images/solution-item-bg.svg") no-repeat;
    background-size: cover;
    background-position: center center;
    border: 1px solid var(--divider-color);
    border-radius: 20px;
  }

  .solution-item:nth-child(4n - 4) {
    background: transparent;
    border: none;
    border-radius: 0;
  }

  .solution-item {
    width: 100%;
  }

  .page-catagery-list h3 {
    font-size: 18px;
  }

  .sidebar-cta-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .sidebar-cta-content {
    margin-bottom: 20px;
  }

  .sidebar-cta-contact ul li {
    margin-bottom: 15px;
  }

  .sidebar-cta-contact ul li a {
    padding: 6px 14px;
  }

  .sidebar-cta-contact ul li a img {
    max-width: 16px;
  }

  .page-single-image {
    margin-bottom: 20px;
  }

  .service-entry h2 {
    font-size: 26px;
  }

  .service-entry ul li {
    width: auto;
  }

  .service-impact-list {
    padding: 20px;
  }

  .service-impact-item {
    width: 100%;
  }

  .service-impact-item .icon-box {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
  }

  .service-impact-item .icon-box img {
    max-width: 26px;
  }

  .service-impact-item-content h3 {
    font-size: 18px;
  }

  .building-smarter-steps,
  .building-smarter-image {
    width: 100%;
  }

  .building-step-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .building-step-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .building-smarter-image figure {
    height: auto;
  }

  .post-single-meta ol li {
    font-size: 16px;
  }

  .post-single-meta ol li i {
    font-size: 16px;
  }

  .post-image img {
    aspect-ratio: 1 / 0.7;
  }

  .post-entry blockquote {
    background-position: 15px 15px;
    padding: 60px 15px 15px 15px;
  }

  .post-entry blockquote p {
    font-size: 18px;
  }

  .post-entry h2 {
    font-size: 26px;
  }

  .tag-links {
    font-size: 18px;
  }

  .project-category-list ul li,
  .category-social-link h3 {
    font-size: 18px;
  }

  .project-entry h2 {
    font-size: 26px;
  }

  .project-challenge-list {
    padding: 12px;
    border-radius: 12px;
  }

  .solution-counter-item {
    width: calc(50% - 20px);
  }

  .solution-counter-item h2 {
    font-size: 30px;
  }

  .team-single-image img {
    aspect-ratio: 1 / 1.15;
    object-position: center center;
  }

  .member-info-box,
  .member-contact-list {
    width: 100%;
  }

  .member-info-box::before {
    width: 100%;
    height: 1px;
    top: auto;
    right: auto;
    left: 0;
    bottom: -20px;
  }

  .member-contact-item {
    margin-bottom: 20px;
  }

  .member-contact-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .skills-progress-bar {
    width: 100%;
  }

  .skills-progress-bar .skill-data {
    margin-bottom: 10px;
  }

  .skills-progress-bar .skill-data .skill-title,
  .skills-progress-bar .skill-data .skill-no {
    font-size: 18px;
  }

  .team-guideline-list ul li {
    width: 100%;
    padding: 8px 10px 8px 30px;
  }

  .team-guideline-list ul li::before {
    font-size: 14px;
    left: 10px;
    top: 9px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .google-map-iframe iframe {
    height: 350px;
  }

  .contact-info-item {
    width: 100%;
  }

  .contact-info-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.special-features {
  padding: 100px 0;
  /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
  /* position: relative;
  bottom: 180px; */
  overflow: hidden;
}

.special-features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.section-title h3 {
  font-size: 18px;
  /* color: #6c5ce7; */
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
}

.section-title h2 {
  font-size: 48px;
  font-weight: 700;
  color: #c7cacb;
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-title h2 span {
  background: linear-gradient(135deg, #e78d5c, #a29bfe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title::after {
  content: "";
  /* position: absolute;
  bottom: -20px;
  left: 20%; */
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  border-radius: 2px;
}

.feature-item {
  /* background: rgba(255, 255, 255, 0.95); */
  border-radius: 20px;
  padding: 40px 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(108, 92, 231, 0.05) 0%,
      rgba(162, 155, 254, 0.05) 50%,
      rgba(116, 75, 162, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-item:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(108, 92, 231, 0.2);
}

.icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  /* background: linear-gradient(135deg, #6c5ce7, #a29bfe); */
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  /* box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3); */
}

.feature-item:hover .icon-box {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 15px 35px rgba(108, 92, 231, 0.4);
}

.icon-box i {
  font-size: 32px;
  color: white;
  transition: all 0.3s ease;
}

.feature-item:hover .icon-box i {
  transform: scale(1.2);
}

.feature-item-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.feature-item-content h3 {
  font-size: 20px;
  font-weight: 700;
  /* color: #2d3436; */
  margin-bottom: 15px;
  transition: all 0.3s ease;
  line-height: 1.3;
}

.feature-item:hover .feature-item-content h3 {
  color: #6c5ce7;
  transform: translateY(-2px);
}

.feature-item-content p {
  font-size: 15px;
  /* color: #636e72; */
  line-height: 1.7;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-item-content p {
  color: #2d3436;
}

/* Animated background shapes */
.feature-item::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,
      rgba(108, 92, 231, 0.1) 0%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}

.feature-item:hover::after {
  opacity: 1;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.2;
  }

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

/* Responsive design */
@media (max-width: 991px) {
  .section-title h2 {
    font-size: 36px;
  }

  .feature-item {
    padding: 30px 20px;
  }

  .icon-box {
    width: 70px;
    height: 70px;
  }

  .icon-box i {
    font-size: 28px;
  }

  .feature-item-content h3 {
    font-size: 18px;
  }

  .feature-item-content p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .special-features {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .section-title {
    margin-bottom: 50px;
  }
}

/* Loading animation */
.feature-item {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.feature-item:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-item:nth-child(4) {
  animation-delay: 0.4s;
}

.feature-item:nth-child(5) {
  animation-delay: 0.5s;
}

.feature-item:nth-child(6) {
  animation-delay: 0.6s;
}

.feature-item:nth-child(7) {
  animation-delay: 0.7s;
}

.feature-item:nth-child(8) {
  animation-delay: 0.8s;
}

.feature-item:nth-child(9) {
  animation-delay: 0.9s;
}

.feature-item:nth-child(10) {
  animation-delay: 1s;
}

.feature-item:nth-child(11) {
  animation-delay: 1.1s;
}

.feature-item:nth-child(12) {
  animation-delay: 1.2s;
}

.feature-item:nth-child(13) {
  animation-delay: 1.3s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.welcome-sabka {
  background-color: #000000;
  padding: 20px 0;
  color: #ffffff;
}

.welcome-sabka .section-title h3 {
  color: #ffffff;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.welcome-sabka .section-title h2 {
  color: #ffffff;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.welcome-sabka .section-title h2 span {
  color: #ff4a4a;
}

.welcome-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.welcome-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(255, 74, 74, 0.2);
}

.welcome-content h3 {
  color: #ff4a4a;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.welcome-content p {
  color: #cccccc;
  font-size: 16px;
  margin: 0;
}

.welcome-features {
  text-align: center;
  margin-top: 40px;
}

.welcome-features ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.welcome-features li {
  background: rgb(214 203 203 / 10%);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.welcome-features li:hover {
  background: #ff4a4a;
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .welcome-sabka {
    padding: 60px 0;
  }

  .welcome-sabka .section-title h2 {
    font-size: 28px;
  }

  .welcome-item {
    padding: 20px;
  }

  .welcome-content h3 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .welcome-sabka .section-title h2 {
    font-size: 24px;
  }

  .welcome-features ul {
    flex-direction: column;
    align-items: center;
  }

  .welcome-features li {
    width: 80%;
    text-align: center;
  }
}

/*
        .new-dark-section {
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
            color: #ffffff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .new-dark-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-title h3 {
            color: #00d4ff;
            font-size: 18px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            opacity: 0.9;
        }

        .section-title h2 {
            color: #ffffff;
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .section-title h2 span {
            background: linear-gradient(45deg, #00d4ff, #0099cc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .new-content-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 40px 30px;
            margin-bottom: 40px;
            height: 100%;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            backdrop-filter: blur(10px);
        }

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

        .new-content-item:hover::before {
            left: 100%;
        }

        .new-content-item:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(0, 212, 255, 0.3);
            box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
            background: rgba(255, 255, 255, 0.08);
        }

        .new-content-item h4 {
            color: #00d4ff;
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
            transition: color 0.3s ease;
        }

        .new-content-item:hover h4 {
            color: #ffffff;
            text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
        }

        .new-content-item p {
            color: #cccccc;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .new-content-item:hover p {
            color: #ffffff;
            transform: translateX(5px);
        }

        .new-content-item p:last-child {
            margin-bottom: 0;
        }

        .section-footer-text {
            text-align: center;
            margin-top: 80px;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .section-footer-text p {
            font-size: 24px;
            font-weight: 300;
            color: #ffffff;
            position: relative;
            display: inline-block;
        }

        .section-footer-text p::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(45deg, #00d4ff, #0099cc);
            transition: width 0.5s ease;
        }

        .section-footer-text:hover p::after {
            width: 100%;
        }

        /* Enhanced row spacing */
/* .section-row {
            margin-bottom: 60px;
        }

        .row.content-row {
            margin-bottom: 40px;
        } */

/* Responsive adjustments */
/* @media (max-width: 768px) {
            .new-dark-section {
                padding: 60px 0;
            }

            .section-title {
                margin-bottom: 50px;
            }

            .section-title h2 {
                font-size: 36px;
            }

            .new-content-item {
                margin-bottom: 30px;
                padding: 30px 20px;
            }

            .new-content-item h4 {
                font-size: 20px;
            }

            .section-footer-text {
                margin-top: 50px;
            }

            .section-footer-text p {
                font-size: 20px;
            }
        } */

/* Animation classes */
/* .fadeInUp {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fadeInUp[data-wow-delay="0.2s"] { animation-delay: 0.2s; }
        .fadeInUp[data-wow-delay="0.4s"] { animation-delay: 0.4s; }
        .fadeInUp[data-wow-delay="0.6s"] { animation-delay: 0.6s; }
        .fadeInUp[data-wow-delay="0.8s"] { animation-delay: 0.8s; }
        .fadeInUp[data-wow-delay="1s"] { animation-delay: 1s; }
        .fadeInUp[data-wow-delay="1.2s"] { animation-delay: 1.2s; } */

.new-dark-section {
  /* background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%); */
  color: #ffffff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.new-dark-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%);
  pointer-events: none;
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
}

.section-title h3 {
  color: #00d4ff;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.section-title h2 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title h2 span {
  /* background: linear-gradient(45deg, #00d4ff, #0099cc); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.new-content-item {
  /* background: rgba(255, 255, 255, 0.05); */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 40px 30px;
  margin-bottom: 40px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
}

.new-content-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(0, 212, 255, 0.1),
      transparent);
  transition: left 0.6s ease;
}

.new-content-item:hover::before {
  left: 100%;
}

.new-content-item:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.item-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.item-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.item-icon i {
  font-size: 20px;
  color: #ffffff;
}

.new-content-item:hover .item-icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.new-content-item h4 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  transition: color 0.3s ease;
}

.new-content-item:hover h4 {
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Statistics List */
.stats-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.stats-list li {
  align-items: center;
  margin-bottom: 15px;
  color: #cccccc;
  font-size: 16px;
  line-height: 1.6;
  transition: all 0.3s ease;
  padding-left: 30px;
  position: relative;
}

.stats-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.new-content-item:hover .stats-list li::before {
  width: 12px;
  height: 12px;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.new-content-item:hover .stats-list li {
  color: #ffffff;
  transform: translateX(10px);
}

/* Feature List with Icons */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  color: #cccccc;
  font-size: 16px;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.feature-list li i {
  color: #00d4ff;
  margin-right: 12px;
  margin-top: 2px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.new-content-item:hover .feature-list li {
  color: #ffffff;
  transform: translateX(5px);
}

.new-content-item:hover .feature-list li i {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.7);
}

/* Number badges */
.number-badge {
  display: inline-block;
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  color: #ffffff;
  font-weight: bold;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 20px;
  margin-right: 10px;
  min-width: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.new-content-item:hover .number-badge {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

/* Highlight text */
.highlight-text {
  background: linear-gradient(45deg,
      rgba(0, 212, 255, 0.2),
      rgba(0, 153, 204, 0.2));
  padding: 2px 8px;
  border-radius: 4px;
  border-left: 3px solid #00d4ff;
  margin: 15px 0;
  color: #ffffff;
  font-style: italic;
  transition: all 0.3s ease;
}

.new-content-item:hover .highlight-text {
  background: linear-gradient(45deg,
      rgba(0, 212, 255, 0.3),
      rgba(0, 153, 204, 0.3));
  transform: translateX(5px);
}

/* Standard text for mixed content */
.standard-text {
  color: #cccccc;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.new-content-item:hover .standard-text {
  color: #ffffff;
}

.section-footer-text {
  text-align: center;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-footer-text p {
  font-size: 24px;
  font-weight: 300;
  color: #ffffff;
  position: relative;
  display: inline-block;
}

.section-footer-text p::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  transition: width 0.5s ease;
}

.section-footer-text:hover p::after {
  width: 100%;
}

/* Enhanced row spacing */
.section-row {
  margin-bottom: 60px;
}

.row.content-row {
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .new-dark-section {
    padding: 60px 0;
  }

  .section-title {
    margin-bottom: 50px;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .new-content-item {
    margin-bottom: 30px;
    padding: 30px 20px;
  }

  .new-content-item h4 {
    font-size: 20px;
  }

  .section-footer-text {
    margin-top: 50px;
  }

  .section-footer-text p {
    font-size: 20px;
  }

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

  .item-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/* Animation classes */
.fadeInUp {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUp[data-wow-delay="0.2s"] {
  animation-delay: 0.2s;
}

.fadeInUp[data-wow-delay="0.4s"] {
  animation-delay: 0.4s;
}

.fadeInUp[data-wow-delay="0.6s"] {
  animation-delay: 0.6s;
}

.fadeInUp[data-wow-delay="0.8s"] {
  animation-delay: 0.8s;
}

.fadeInUp[data-wow-delay="1s"] {
  animation-delay: 1s;
}

.fadeInUp[data-wow-delay="1.2s"] {
  animation-delay: 1.2s;
}

/* Custom styles for Video Gallery heading */
.page-video-gallery .section-title {
  margin-bottom: 60px;

}

.page-video-gallery .section-title h3 {
  color: #007bff;
  /* Customize the small heading color */
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.page-video-gallery .section-title h2 {
  font-size: 48px;
  font-weight: 700;
  color: #d0d0d0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-video-gallery .section-title h2 span {
  color: #ff6b35;
  /* Highlight color for the span */
}

.page-video-gallery .section-title p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-video-gallery .section-title h2 {
    font-size: 36px;
  }

  .page-video-gallery .section-title {
    margin-bottom: 40px;
  }
}

/* Center the navbar */
.main-menu {
  justify-content: center !important;
}

.nav-menu-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.navbar-nav {
  margin: 0 auto !important;
}

/* App Store Buttons Styling */



.video-gallery-image {
  width: 100%;
  max-width: 300px;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.video-gallery-image a {
  display: block;
  width: 100%;
  /* height: 100%; */
  position: relative;
  text-decoration: none;
}

.video-gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-gallery-image .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  transition: all 0.3s ease;
}

.video-gallery-image:hover .play-btn {
  background: rgba(0, 0, 0, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
}

.wow {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wow[data-wow-delay="0.1s"] {
  animation-delay: 0.1s;
}

.wow[data-wow-delay="0.15s"] {
  animation-delay: 0.15s;
}

.wow[data-wow-delay="0.2s"] {
  animation-delay: 0.2s;
}

.wow[data-wow-delay="0.25s"] {
  animation-delay: 0.25s;
}

.wow[data-wow-delay="0.3s"] {
  animation-delay: 0.3s;
}

.wow[data-wow-delay="0.35s"] {
  animation-delay: 0.35s;
}

.wow[data-wow-delay="0.4s"] {
  animation-delay: 0.4s;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-content {
    text-align: center !important;
  }

  .section-title {
    text-align: center !important;
  }

  .app-section-title {
    text-align: center !important;
  }

  .hero-btn {
    text-align: center !important;
  }

  .hero-app-buttons {
    justify-content: center;
  }

  .hero-store-btn {
    min-width: 140px !important;
  }

  .video-gallery-image {
    height: 200px !important;
  }

  .col-lg-4 {
    margin-top: 30px !important;
  }
}




@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.mb-5 {
  margin-bottom: 3rem;
}

.wow {
  visibility: visible;
  animation-name: fadeInUp;
}
















/* Tablet Media Queries - Revised to show all content */
/*
.right-logo {
  position: absolute;
  top: -50px;

  right: 20px;
  z-index: 999;
}

.right-logo img {
  max-height: 150px;
  object-fit: contain;
  width: 150px;
}

@media (max-width: 767px) {
  .right-logo {
    top: -15px;
    right: 10px;
  }

  .right-logo img {
    max-height: 80px;
    width: 100px;
  }
} */



.feature-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  background-color: #000000;
  /* optional: matches dark background */
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 0 1px rgb(0, 0, 0);
  /* optional border-like effect */
  min-height: 250px;
  /* force consistent height */
}

.feature-item-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .how-it-work {
    padding-left: 15px !important;
    padding-right: 15px !important;
    text-align: center;
  }

  .how-work-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .how-work-item {
    width: 100%;
    margin-bottom: 20px;
  }

  .section-title h2 {
    font-size: 22px;
  }
}

.how-it-work {
  text-align: center;
  padding-left: 0;
  /* Removed fixed padding */
}





/* .app-store-links img {
            position: relative;
            top: 30px;
            height: 40px;
            margin-top: 0.5rem;
        } */

/* Video styling */


.play-button {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* font-size: 2rem; */
  color: white;
}

.video-caption {
  margin-top: 0.5rem;
  text-align: center;
}

.video-gallery-image {
  position: relative;
  overflow: hidden;
}

.video-gallery-image figure img {
  width: 100%;
  display: block;
}

.video-overlay-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  opacity: 0;
  transition: 0.3s ease;
}

.video-gallery-image:hover .video-overlay-info {
  opacity: 1;
}

.video-overlay-info h5 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.video-overlay-info span {
  font-size: 14px;
  display: block;
  margin-top: 4px;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime img {
  width: 100%;
  display: block;
  transition: 0.3s ease;
}

.overlay-text {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.8);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.4s ease;
  text-align: center;
}

.image-anime:hover .overlay-text {
  top: 0;
}

.overlay-text h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

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

.slider-container {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: calc(100% * 2);
  /* 12 projects (6 original + 6 duplicates) for seamless loop */
}

.project-slide {
  flex: 0 0 16.666%;
  /* 100% / 6 = 16.666% for 6 projects visible */
  padding: 0 10px;
  box-sizing: border-box;
}

.project-item {
  height: 100%;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .project-slide {
    flex: 0 0 25%;
    /* 4 slides visible */
  }
}

@media (max-width: 768px) {
  .project-slide {
    flex: 0 0 50%;
    /* 2 slides visible */
  }

  .section-title h2 {
    font-size: 28px;
  }

  .container-fluid {
    padding: 0 15px;
  }
}

@media (max-width: 576px) {
  .project-slide {
    flex: 0 0 100%;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .project-content {
    padding: 15px;
  }

  .project-image {
    height: 500px;
  }

  .project-content p {
    padding-right: 300px;
    font-size: 14px;
    line-height: 1.6;

  }
}



@media (max-width: 767px) {
    .post-item {
        margin: 0 auto;
        top: 50px;
    }
    .app-store-links {
        flex-direction: column;
        gap: 15px;
    }
    .get-app-text {
        font-size: 14px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .post-item {
        top: 100px;
        max-width: 350px;
    }
}

@media (min-width: 992px) {
    .post-item {
        max-width: 400px;
    }
}













.our-platform .post-meta ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.our-platform .post-meta ul li {
    line-height: normal;
    text-transform: capitalize;
}

.our-platform .post-meta ul li a {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
}

.our-platform .post-meta ul li a span {
    color: var(--dark-divider-color);
    font-size: 16px;
    margin-left: 4px;
}

.our-platform .post-meta ul li i {
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 5px;
}


.our-platform .visit-btn {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--accent-color);
    padding-right: 34px;
}

.our-platform .visit-btn::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    background: url('../images/arrow-accent.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 8px auto;
    border: 1px solid var(--divider-color);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    transition: all 0.3s ease-in-out;
}

.our-platform .visit-btn:hover::after {
    border-color: var(--accent-color);
    transform: rotate(45deg);
}

.our-platform .demo-video-card {
    position: relative;
    border-radius: 15px;
    padding: 8px;
    background: linear-gradient(to right,
            var(--accent-color) 0%,
            var(--accent-secondary-color) 50%,
            var(--accent-color) 100%);
}

.our-platform .demo-video-card .video-section {
    display: block;
    background: var(--secondary-color);
    border-radius: 12px;
    overflow: hidden;
    color: var(--divider-color);
}

.our-platform .video-section {
    display: inline-block;

}

.our-platform .video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;

}

.our-platform .video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.our-platform .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background: linear-gradient(to right, var(--accent-color) 0%, var(--accent-secondary-color) 90%, var(--accent-color) 100%);
    font-size: 20px;
    padding: 10px;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Responsive for Mobile */
@media (max-width: 600px) {
    .our-platform .video-section {
        /* width: 90%; */
        height: auto;
        /* margin-right: 0; */
    }

    .our-platform .video-thumbnail {
        height: auto;
    }
}

.our-platform .video-heading {
    font-size: 1rem;
    font-weight: bold;
    color: white;
    /* Adjust based on background */
    margin-bottom: 5px;
}





/* @media (max-width: 768px) {
    .navbar .navbar-toggle {
       position: relative;
       left: 120px;
    }



} */

    .main-header {
        position: relative;
    }

    .header-sticky {
        position: sticky;
        top: 0;
        z-index: 1000;

        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .navbar-brand img {
        width: 190px;
    }

    .right-logo {
        position: absolute;
        top: -50px;
        right: 20px;
        z-index: 998;
        /* Reduced z-index to be below navbar toggle */
        pointer-events: none;
        /* Prevents interference with navbar toggle */
    }

    .right-logo img {
        max-height: 150px;
        object-fit: contain;
        width: 150px;
    }

    .right-logo a {
        pointer-events: auto;
        /* Re-enable pointer events only for the link */
    }

    /* Ensure navbar toggle has higher z-index */
    .navbar-toggler {
        z-index: 1001;
        position: relative;
    }

    /* Custom responsive menu styles */
    .responsive-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #000000;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .responsive-menu.active {
        display: block;
    }

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

    .responsive-menu li {
        border-bottom: 1px solid #575454;
    }

    .responsive-menu a {
        display: block;
        padding: 15px 20px;
        text-decoration: none;
        color: #ba2929;
    }

    .responsive-menu a:hover {
        background-color: #4b2106;
    }

    @media (max-width: 991px) {
        .main-menu {
            display: none;
        }

        .navbar-toggle {
            display: block;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
            position: relative;
            top: 17px;
        }

        .navbar-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background: #821a1a;
            margin: 5px 0;
            transition: 0.3s;
        }
    }

    @media (min-width: 992px) {
        .navbar-toggle {
            display: none;
        }

        .responsive-menu {
            display: none !important;
        }
    }

    @media (max-width: 767px) {
        .right-logo {
            top: 0px;
            right: 35px;
        }

        .right-logo img {
            max-height: 80px;
            width: 100px;
        }

        .navbar-brand img {
            width: 140px;
        }
    }

      .hero {

            min-height: 100vh;
            background-image: url('../images/hero-bg-shape.png');
            /* your background */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            /* optional overlay */
            z-index: 1;
        }

        .hero .container {
            position: relative;
            z-index: 2;
            /* ensures content is above overlay */
        }

        /* Coming Soon Modal Styles */
        .coming-soon-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(31, 30, 30, 0.5);
        }

        .coming-soon-content {
            background-color: rgb(37, 37, 37);
            margin: 15% auto;
            padding: 30px;
            border-radius: 15px;
            width: 90%;
            max-width: 400px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .coming-soon-content h2 {
            color: #5b5bdd;
            margin-bottom: 15px;
        }

        .coming-soon-content p {
            color: #666;
            margin-bottom: 20px;
        }

        .close-btn {
            background: #35259f;
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .close-btn:hover {
            background: #2a1f7f;
        }
.company-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px; /* adjust height */
    padding: 10px;
    border-radius: 8px;
}

.company-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain; /* keeps logo ratio */
}
/************************************/
/***   33. 14-inch Screen CSS    ***/
/************************************/

@media only screen and (min-width: 1200px) and (max-width: 1440px) {
  /* General adjustments */
  .container {
    max-width: 1140px;
  }

  /* Header adjustments */
  .navbar {
    padding: 20px 0;
  }

  .main-menu .nav-menu-wrapper .navbar-nav {
    right: 50px;
  }

  .main-menu ul li a {
    padding: 13px 15px !important;
    font-size: 15px;
  }

  /* Hero section */
  .hero {
    padding: 100px 0 60px;
  }

  .hero-content {
    max-width: 720px;
  }

  .section-title h1 {
    font-size: 42px;
  }

  .section-title h2 {
    font-size: 40px;
  }

  /* About section */
  .about-us-item {
    gap: 30px;
  }

  .about-item-content h2 {
    font-size: 36px;
  }

  /* Services section */
  .service-item {
    padding: 25px;
  }

  .service-item-content h3 {
    font-size: 18px;
  }

  /* How it works */
  .how-work-item {
    padding: 30px 25px;
  }

  .how-work-header {
    margin-right: 25px;
    padding-right: 25px;
  }

  .how-work-item-content {
    width: calc(100% - 140px);
  }

  .how-work-video video {
    height: 550px;
  }

  /* Facts section */
  .facts-item {
    padding: 30px 25px;
  }

  .facts-item-counter h2 {
    font-size: 36px;
  }

  /* Projects section */
  .project-content {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .project-content h3 {
    font-size: 18px;
  }

  /* Testimonials */
  .testimonials-box {
    padding: 60px;
  }

  .testimonials-counter-item h2 {
    font-size: 36px;
  }

  /* CTA Box */
  .cta-box-box {
    padding: 80px 0;
  }

  /* What we do */
  .what-we-box {
    padding: 40px 30px;
  }

  .what-we-box h3 {
    font-size: 18px;
  }

  /* FAQ section */
  .faq-accordion .accordion-header .accordion-button {
    font-size: 17px;
    padding: 18px 45px 18px 18px;
  }

  /* Blog section */
  .post-item {
    padding: 30px 25px;
  }

  .post-item-content h2 {
    font-size: 18px;
  }

  /* Footer adjustments */
  .footer-contact-box {
    gap: 25px;
  }

  .footer-contact-box .footer-links {
    width: calc(50% - 12.5px);
  }

  /* Page header */
  .page-header {
    padding: 200px 0 60px;
  }

  .page-header-box h1 {
    font-size: 56px;
  }

  /* Approach section */
  .approach-item .icon-box {
    width: 70px;
    height: 70px;
    margin-right: 30px;
  }

  .approach-item-content {
    width: calc(100% - 100px);
  }

  /* Solution section */
  .solution-item {
    padding: 18px;
  }

  .solution-item .icon-box {
    width: 55px;
    height: 55px;
    margin-bottom: 30px;
  }

  .solution-item .icon-box img {
    max-width: 28px;
  }

  /* Team section */
  .team-body {
    padding: 18px;
  }

  /* Special features */
  .special-features {
    padding: 80px 0;
  }

  .section-title h2 {
    font-size: 40px;
  }

  .feature-item {
    padding: 30px 20px;
  }

  .icon-box {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .icon-box i {
    font-size: 28px;
  }

  .feature-item-content h3 {
    font-size: 18px;
  }

  /* Welcome section */
  .welcome-sabka .section-title h2 {
    font-size: 32px;
  }

  .welcome-content h3 {
    font-size: 24px;
  }

  /* New dark section */
  .new-dark-section {
    padding: 80px 0;
  }

  .section-title h2 {
    font-size: 40px;
  }

  .new-content-item {
    padding: 30px 25px;
  }

  .new-content-item h4 {
    font-size: 20px;
  }

  /* Video gallery */
  .video-gallery-image {
    height: 220px;
  }

  /* Company logos in hero */
  .company-logos {
    gap: 3rem;
  }

  .logo-circle {
    width: 80px;
    height: 80px;
  }

  .logo-text {
    font-size: 14px;
  }

  .service-label {
    font-size: 0.9rem;
  }

  /* App store buttons */
  .hero-btn {
    gap: 12px 25px;
  }

  .store-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  /* Right logo positioning */
  .right-logo {
    top: -40px;
    right: 15px;
  }

  .right-logo img {
    max-height: 130px;
    width: 130px;
  }

  /* Navigation menu adjustments */
  .main-menu .nav-menu-wrapper .navbar-nav {
    padding: 0 8px;
  }

  .main-menu ul li a {
    padding: 12px 12px !important;
    font-size: 14px;
  }

  /* Section spacing adjustments */
  .section-row {
    margin-bottom: 60px;
  }

  /* Form elements */
  .contact-form form .form-control {
    padding: 15px 18px;
  }

  .btn-default {
    padding: 15px 25px;
    font-size: 15px;
  }

  .btn-default.btn-highlighted {
    padding: 14px 25px;
  }

  /* Card and box elements */
  .about-us-box,
  .service-item,
  .facts-item,
  .post-item {
    padding: 25px;
  }

  /* Typography scaling */
  p {
    font-size: 15px;
  }

  .readmore-btn {
    font-size: 15px;
  }

  /* Grid adjustments for better fit */
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* Modal and overlay elements */
  .coming-soon-content {
    margin: 10% auto;
    padding: 25px;
  }

  /* Animation optimizations */
  .feature-item:hover {
    transform: translateY(-8px) scale(1.02);
  }

  /* Ensure proper text wrapping */
  .section-title h1,
  .section-title h2 {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Optimize images and media */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Improve touch targets for smaller screens */
  .btn-default,
  .store-btn,
  .readmore-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Additional optimizations for 1366x768 specifically */
@media only screen and (min-width: 1200px) and (max-width: 1366px) {
  .container {
    max-width: 1100px;
  }

  .hero-content {
    max-width: 680px;
  }

  .section-title h1 {
    font-size: 38px;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .company-logos {
    gap: 2.5rem;
  }

  .logo-circle {
    width: 75px;
    height: 75px;
  }

  .right-logo {
    top: -30px;
  }

  .right-logo img {
    max-height: 120px;
    width: 120px;
  }
}

/* Optimizations for 1440x900 */
@media only screen and (min-width: 1440px) and (max-width: 1440px) {
  .container {
    max-width: 1200px;
  }

  .hero-content {
    max-width: 760px;
  }
}
