/* ----------------------------------------------------------------------------------------
* Author        : Heru Suandana
* Template Name : Suka sama suka
* Version       : 2.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: #1976d2; /* Biru gelap */
  --accent-hover-color: #26c6da; /* Biru sedang saat hover */

  --accent-secondary-color: #7c3aed; /* Pink gelap */
  --accent-secondary-hover-color: #8b5cf6; /* Pink sedang saat hover */

  --gradient-accent: linear-gradient(45deg, #1976d2, #7c3aed);

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

.row > * {
  padding-right: 15px;
  padding-left: 15px;
}

.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("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("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("icon-sparkle.svg") no-repeat;
  background-position: right center;
  background-size: cover;
  width: 16px;
  height: 16px;
}

.section-title h1 {
  font-size: 70px;
  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 dengan Black Glassmorphism Effect */
header.main-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
}

header.main-header .header-sticky {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease-in-out;
}

/* Header dengan efek glassmorphism ketika sticky */
header.main-header .header-sticky.active {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  transform: translateY(0) !important;
  z-index: 1000 !important;

  /* Black Glassmorphism Effect */
  background: rgba(6, 6, 6, 0.85) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
}

/* Hide effect dengan smooth transition */
header.main-header .header-sticky.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

.navbar {
  padding: 20px 0;
  align-items: center;
  transition: padding 0.3s ease-in-out;
}

/* Padding navbar lebih kecil ketika sticky */
.header-sticky.active .navbar {
  padding: 15px 0;
}

.navbar-brand {
  padding: 0;
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.navbar-brand span {
  color: var(--primary-color) !important;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.navbar-brand:hover span {
  color: var(--accent-color) !important;
}

/* Main Menu Styling */
.main-menu .nav-menu-wrapper {
  flex: 1;
  text-align: center;
  margin: 0 20px;
}

/* Mobile: Sembunyikan navbar glassmorphism di mobile */
@media (max-width: 991px) {
  .main-menu .nav-menu-wrapper .navbar-nav {
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  .header-sticky.active .navbar-nav {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }
}

/* Desktop navbar glassmorphism background */
@media (min-width: 992px) {
  .main-menu .nav-menu-wrapper .navbar-nav {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 8px 15px;
    transition: all 0.3s ease-in-out;
  }

  /* Enhanced glassmorphism ketika header sticky */
  .header-sticky.active .navbar-nav {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  }
}

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

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

/* Styling link navbar - default primary color */
.main-menu ul li a {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  padding: 12px 18px !important;
  border-radius: 20px;
  color: var(--primary-color);
  text-transform: capitalize;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  display: block;
}

/* Hover effect - berubah ke accent color dengan background yang rapi */
.main-menu ul li a:hover,
.main-menu ul li a:focus,
.main-menu ul li a.active {
  color: var(--accent-color) !important;
  background: rgba(25, 118, 210, 0.12) !important; /* Background lebih subtle */
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.2);
}

.main-menu ul li a:focus-visible {
  box-shadow: 0 0 0 2px var(--accent-color);
  outline: none;
}

/* Submenu arrow */
.main-menu ul li.submenu > a:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 12px;
  margin-left: 8px;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu:hover > a:after {
  transform: rotate(180deg);
}

/* Dropdown submenu dengan glassmorphism */
.main-menu ul ul {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px) scale(0.95);
  padding: 0;
  margin: 0;
  list-style: none;
  width: 250px;
  border-radius: 12px;
  position: absolute;
  left: 0;
  top: calc(100% + 10px);

  /* Black Glassmorphism untuk dropdown */
  background: rgba(6, 6, 6, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);

  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: left;
}

/* Multi-level dropdown positioning */
.main-menu ul ul ul {
  left: 100%;
  top: 0;
}

/* Show dropdown on hover */
.main-menu ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  padding: 8px 0;
}

/* Dropdown arrow untuk multi-level */
.main-menu ul li.submenu ul li.submenu > a:after {
  content: "\f105";
  float: right;
  margin-left: auto;
  margin-right: 5px;
}

/* Dropdown link styling */
.main-menu ul ul li {
  margin: 0;
  padding: 0;
}

.main-menu ul ul li a {
  color: var(--primary-color) !important;
  padding: 12px 20px !important;
  margin: 2px 8px !important; /* Tambahkan margin untuk spacing */
  border-radius: 8px !important; /* Rounded untuk dropdown items */
  font-size: 15px;
  transition: all 0.3s ease-in-out;
  display: block;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
  color: var(--accent-color) !important;
  background: rgba(25, 118, 210, 0.15) !important;
  transform: translateX(3px);
  margin-left: 12px !important; /* Animasi slide ke kanan */
}

/* Header Button Styling */
.header-btn .btn-default {
  background: var(--gradient-accent);
  color: var(--primary-color);
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
  box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

.header-btn .btn-default:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
  text-decoration: none;
}

/* Mobile Menu Button */
.responsive-menu,
.navbar-toggle {
  display: none;
}

.slicknav_btn {
  background: var(--gradient-accent);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
}

.navbar-toggle a.slicknav_btn.slicknav_open {
  background: var(--accent-secondary-color);
  transform: rotate(90deg);
}

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

/* Hamburger animation */
.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);
}

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

/* Mobile Menu dengan Glassmorphism - ULANG DARI AWAL */
.slicknav_menu {
  position: absolute;
  width: 100%;
  padding: 0;
  margin: 0;
  background: rgba(6, 6, 6, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: none;
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.slicknav_menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  background: transparent;
}

.slicknav_menu ul ul {
  margin: 0;
  padding: 0;
  display: none;
  background: transparent;
}

.slicknav_menu ul ul:not(.slicknav_hidden) {
  display: block;
}

/* KUNCI: Semua menu item punya padding yang SAMA */
.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 15px 20px;
  color: var(--primary-color);
  line-height: normal;
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  transition: all 0.3s ease-in-out;
  display: block;
  text-decoration: none;
  position: relative;
}

/* Parent menu item (yang punya submenu) */
.slicknav_nav li.slicknav_item .slicknav_row {
  padding: 15px 20px; /* SAMA seperti menu lain */
  padding-right: 50px; /* Tambah ruang untuk arrow di kanan */
}

/* Hover states */
.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
  background: rgba(25, 118, 210, 0.1);
  color: var(--accent-color);
  border-radius: 0;
}

/* Active state untuk parent menu yang terbuka */
.slicknav_nav .slicknav_open > .slicknav_row {
  background: rgba(25, 118, 210, 0.15);
  color: var(--accent-color);
  border-radius: 0;
  padding: 15px 20px; /* SAMA seperti normal state */
  padding-right: 50px; /* Ruang untuk arrow */
}

/* Submenu styling */
.slicknav_menu ul ul li a {
  padding: 12px 20px 12px 40px; /* Indented untuk submenu */
  font-size: 15px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-color);
  border-radius: 0;
}

.slicknav_menu ul ul li a:hover {
  background: rgba(25, 118, 210, 0.08);
  color: var(--accent-color);
  border-radius: 0;
}

/* Arrow styling - Simplified approach */
.slicknav_arrow {
  position: absolute !important;
  right: 20px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 20px !important;
  height: 20px !important;
  font-size: 14px !important;
  color: var(--primary-color) !important;
  transition: all 0.3s ease-out !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Arrow content - menggunakan FontAwesome jika tersedia, fallback ke Unicode */
.slicknav_arrow:before {
  /* content: "▼" !important; */
  font-family: "FontAwesome", Arial, sans-serif !important;
  font-weight: 900 !important;
  font-size: 12px !important;
  color: inherit !important;
  transition: transform 0.3s ease-out !important;
}

/* Jika FontAwesome tersedia, gunakan icon yang lebih baik */
.fa-loaded .slicknav_arrow:before {
  content: "\f107" !important;
  font-family: "FontAwesome" !important;
}

/* Arrow rotation saat menu terbuka */
.slicknav_open .slicknav_arrow {
  color: var(--accent-color) !important;
}

.slicknav_open .slicknav_arrow:before {
  transform: rotate(-180deg) !important;
}

/* Parent menu item dengan submenu */
.slicknav_nav li.slicknav_item {
  position: relative;
}

.slicknav_nav li.slicknav_item .slicknav_row {
  padding: 15px 20px; /* SAMA seperti menu lain */
  padding-right: 50px; /* Tambah ruang untuk arrow di kanan */
  position: relative;
}

/* Active state untuk parent menu yang terbuka */
.slicknav_nav .slicknav_open > .slicknav_row {
  background: rgba(25, 118, 210, 0.15);
  color: var(--accent-color);
  border-radius: 0;
  padding: 15px 20px; /* SAMA seperti normal state */
  padding-right: 50px; /* Ruang untuk arrow */
}

/* Animation untuk submenu */
@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 300px;
  }
}

.slicknav_nav ul:not(.slicknav_hidden) {
  animation: slideDown 0.3s ease-out;
}

/* Responsive breakpoints */
@media (max-width: 991px) {
  .main-menu {
    display: none;
  }

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

  .navbar {
    padding: 15px 0;
  }

  .header-sticky.active .navbar {
    padding: 12px 0;
  }

  .header-sticky.active {
    background: rgba(6, 6, 6, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 768px) {
  .navbar-brand span {
    font-size: 18px;
  }

  .slicknav_btn {
    width: 38px;
    height: 38px;
  }

  .navbar-brand img {
    width: 28px;
    height: 28px;
  }

  .navbar {
    padding: 12px 0;
  }

  .header-sticky.active .navbar {
    padding: 10px 0;
  }
}

@media (max-width: 480px) {
  .navbar-brand span {
    font-size: 16px;
  }

  .navbar-brand img {
    width: 25px;
    height: 25px;
    margin-right: 8px;
  }

  .slicknav_nav .slicknav_row,
  .slicknav_nav li a {
    padding: 14px 18px;
    font-size: 15px;
  }

  .slicknav_nav li.slicknav_item .slicknav_row {
    padding: 14px 18px;
    padding-right: 45px;
  }

  .slicknav_nav .slicknav_open > .slicknav_row {
    padding: 14px 18px;
    padding-right: 45px;
  }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Subtle hover animation untuk navbar */
.main-menu ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(25, 118, 210, 0.1);
  border-radius: 20px;
  transition: width 0.3s ease-in-out;
  z-index: -1;
}

.main-menu ul li a:hover::before {
  width: 100%;
}
/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
  position: relative;
  background: url("hero-bg-shape.png") no-repeat;
  background-position: top center;
  background-size: auto;
  padding: 340px 0 80px;
  z-index: 1;
}

.hero::before {
  content: "";
  display: block;
  position: absolute;
  left: 160px;
  top: 20%;
  background: url(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(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("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 {
  position: relative;
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.hero-content::before {
  content: "";
  display: block;
  position: absolute;
  left: -28%;
  bottom: 20%;
  background: url(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(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;
}

.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: 80px;
}

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

.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("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("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("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("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("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("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("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("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("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 160px;
}

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

.contact-info-item {
  position: relative;
  width: calc(25% - 22.5px);
  border: 1px solid var(--divider-color);
  background: var(--secondary-color) url("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;
  }

  .header-btn {
    display: none;
  }

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