/*
Theme Name: Xiomi
Author: Pixel-plus
Author URI: https://themeforest.net/user/Pixel-plus
Description: Xiomi - Portfolio HTML Template
Version: 1.0.0
*/
/*CSS Table Of Content Ends Here*/
/*
--------------------------------------------------------------
[Table of Contents]
--------------------------------------------------------------
01. Variables & Mixins
02. Typography
03. Buttons
04. About 
05. Animation 
06. Brand 
07. Contact
08. Cta
09. Feature
11. Footer
12. Header
13. Helping
14. Hero
15. Meanmenu
16. News
17. Preloader
18. Pricing
19. Section
20. Service
21. Team
22. Testimonial
--------------------------------------------------------------
*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&amp;display=swap");

:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #28E98C;
  --header: #1C1D20;
  --text: #666666;
  --border: #273536;
  --bg: #F9F9F9;
  --bg-2: #1C1D20;
  --border: 1.5px solid rgba(102, 102, 102, 0.24);
  --border-2: 1.5px solid #28E98C;
  --border-3: 1.5px solid rgba(102, 102, 102, 0.16);
  --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

.theme-btn {
  background: var(--theme);
  color: var(--header);
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  padding: 20px 30px;
  border-radius: 100px;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 2;
  line-height: 1;
  overflow: hidden;
}

.theme-btn::before {
  content: "";
  position: absolute;
  height: 100%;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: var(--header);
  z-index: -1;
  transition: all 0.4s ease-out;
  border-radius: inherit;
}

.theme-btn i,
.theme-btn img {
  margin-left: 10px;
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
}

.theme-btn:hover {
  color: var(--white);
}

.theme-btn:hover::before {
  width: 100%;
}

.theme-btn:hover i {
  transform: rotate(0);
}

@media (max-width: 767px) {
  .theme-btn {
    padding: 20px 32px;
  }

  /* HEADER */
  .header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* LOGO */
  .logo {
    display: flex;
    align-items: center;
    gap: 14px;
    overflow: visible;
    flex-shrink: 0;
  }

  /* LOGO SIZE FIX */
  .logo img {
    max-width: 100px;
    object-fit: contain;
    display: block;
  }

  /* PREVENT SHRINK ISSUES */
  .logo a {
    flex-shrink: 0;
  }

  /* RIGHT SIDE */
  .header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
  }

  /* HIDE BUTTON */
  .header-right .theme-btn {
    display: none;
  }

  /* HAMBURGER */
  .header__hamburger {
    margin-left: auto;
  }

  .header__hamburger i {
    font-size: 22px;
  }

  /* ADD SIDE SPACING */
  .header-1 .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }

  /* MAKE RAW LOGO SMALLER */
  .logo a:nth-child(3) img {
    max-width: 60px;
  }


  /* GRAPH BOX SIZE ONLY */
  #global div[style*="height:220px"] {
    height: 160px !important;
    padding: 10px 10px 25px 20px !important;
  }

  /* KEEP SVG ORIGINAL (DON’T TOUCH POSITION) */
  #global svg {
    width: 100% !important;
    height: auto !important;
  }

  /* REDUCE Y-AXIS TEXT SIZE (DON’T MOVE IT) */
  #global div[style*="translateX(-100%)"] {
    font-size: 9px !important;
  }

  /* CLEAN X-AXIS LABELS */
  #global div[style*="justify-content:space-between"] {
    font-size: 10px;
    margin-top: 8px;
    display: flex;
    justify-content: space-between;
  }


}

@media (max-width: 575px) {
  .theme-btn {
    padding: 18px 30px;
    font-size: 14px;
  }
}

.theme-btn.border-btn {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--white);
}

.theme-btn.border-btn::before,
.theme-btn.border-btn::after {
  background: var(--theme);
}

.theme-btn.border-btn img {
  transition: all 0.4s ease-in-out;
}

.theme-btn.border-btn:hover img {
  filter: grayscale(100%) brightness(300%);
}

.theme-btn.radius-btn {
  border-radius: 60px;
}

.theme-btn.radius-btn:hover i,
.theme-btn.radius-btn:hover img {
  filter: grayscale(100%) brightness(300%);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  letter-spacing: 0.5px;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--text);
  outline: none;
}

input {
  color: var(--text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 100px;
  font-weight: 800;
  line-height: 108%;
}

@media (max-width: 1600px) {
  h1 {
    font-size: 90px;
  }
}

@media (max-width: 991px) {
  h1 {
    font-size: 80px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 70px;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 60px;
  }
}

h2 {
  font-size: 48px;
  line-height: 116%;
  font-weight: 800;
}

@media (max-width: 1199px) {
  h2 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  h2 {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: 32px;
  font-weight: 800;
  line-height: 132%;
}

@media (max-width: 575px) {
  h3 {
    font-size: 25px;
  }
}

h4 {
  font-size: 24px;
  font-weight: 800;
}

@media (max-width: 1199px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
}

h6 {
  font-size: 18px;
  font-weight: 600;
  line-height: 145%;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

span {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

.about-wrapper-1 {
  position: relative;
}

@media (max-width: 1199px) {
  .about-wrapper-1 {
    margin-top: -45px;
  }
}

.about-wrapper-1 .random-shape {
  position: absolute;
  top: 12%;
  right: 3%;
}

@media (max-width: 1199px) {
  .about-wrapper-1 .random-shape {
    display: none;
  }
}

.about-wrapper-1 .star-shape {
  position: absolute;
  top: 25%;
  left: 44%;
}

@media (max-width: 1199px) {
  .about-wrapper-1 .star-shape {
    display: none;
  }
}

.about-wrapper-1 .about-images {
  position: relative;
  z-index: 9;
}

.about-wrapper-1 .about-images img {
  width: 100%;
  height: 100%;
}

.about-wrapper-1 .about-images .bg-shape {
  position: absolute;
  top: 107px;
  left: 48px;
  z-index: -1;
}

@media (max-width: 575px) {
  .about-wrapper-1 .about-images .bg-shape {
    display: none;
  }
}

.about-wrapper-1 .about-images .shape-left {
  position: absolute;
  top: 72%;
  left: -60px;
}

@media (max-width: 1199px) {
  .about-wrapper-1 .about-images .shape-left img {
    max-width: 200px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-1 .about-images .shape-left {
    display: none;
  }
}

.about-wrapper-1 .about-images .shape-right {
  position: absolute;
  top: 24%;
  right: -23%;
}

@media (max-width: 1399px) {
  .about-wrapper-1 .about-images .shape-right {
    top: 30%;
    right: -9%;
  }

  .about-wrapper-1 .about-images .shape-right img {
    max-width: 200px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-1 .about-images .shape-right {
    display: none;
  }
}

.about-wrapper-1 .about-content .section-title h2 {
  margin-bottom: 13px;
}

.about-wrapper-1 .about-content .client-reviews {
  margin-bottom: 45px;
  display: flex;
  align-items: center;
  gap: 90px;
}

@media (max-width: 1199px) {
  .about-wrapper-1 .about-content .client-reviews {
    gap: 40px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-1 .about-content .client-reviews {
    margin-top: 20px;
    margin-bottom: 30px;
    gap: 10px;
  }
}

.about-wrapper-1 .about-content .client-reviews .cr-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1199px) {
  .about-wrapper-1 .about-content .client-reviews .cr-item {
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-1 .about-content .client-reviews .cr-item {
    flex-wrap: wrap;
    gap: 0;
  }
}

.about-wrapper-1 .about-content .client-reviews .cr-item h6 {
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 575px) {
  .about-wrapper-1 .about-content .client-reviews .cr-item h6 {
    font-size: 16px;
  }
}

.about-wrapper-1 .about-content .about-button {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 575px) {
  .about-wrapper-1 .about-content .about-button {
    flex-wrap: wrap;
  }
}

.about-wrapper-1 .about-content .about-button .phone {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-wrapper-1 .about-content .about-button .phone .icon {
  width: 56px;
  height: 56px;
  border-radius: 100px;
  border: 1px solid rgba(102, 102, 102, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-2 {
  position: relative;
  z-index: 9;
}

.about-2 .star-shape {
  position: absolute;
  top: 12%;
  right: 10%;
}

@media (max-width: 1199px) {
  .about-2 .star-shape {
    display: none;
  }
}

.about-2 .star-down-shape {
  position: absolute;
  left: 9%;
  bottom: 9%;
}

@media (max-width: 1600px) {
  .about-2 .star-down-shape {
    left: 3%;
    bottom: -2%;
  }
}

@media (max-width: 1199px) {
  .about-2 .star-down-shape {
    display: none;
  }
}

@media (max-width: 1199px) {
  .about-wrapper-2 {
    margin-top: 20px;
  }
}

@media (max-width: 991px) {
  .about-wrapper-2 {
    margin-top: -20px;
  }
}

.about-wrapper-2 .about-images {
  position: relative;
  max-width: 610px;
  height: 560px;
}

@media (max-width: 575px) {
  .about-wrapper-2 .about-images {
    height: initial;
  }
}

.about-wrapper-2 .about-images img {
  width: 100%;
  height: 100%;
}

.about-wrapper-2 .about-images .bg-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-48%, -48%);
  z-index: -1;
}

.about-wrapper-2 .about-images .bg-shape img {
  width: initial;
  height: initial;
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-images .bg-shape {
    display: none;
  }
}

.about-wrapper-2 .about-images .video {
  position: relative;
  position: absolute;
  left: 0;
  top: -7%;
  width: 154px;
  height: 154px;
  line-height: 154px;
  text-align: center;
  border-radius: 100%;
  background-color: var(--black);
  z-index: 999;
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-images .video {
    width: 120px;
    height: 120px;
    line-height: 120px;
  }
}

@media (max-width: 991px) {
  .about-wrapper-2 .about-images .video {
    top: 10px;
    left: 25px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-2 .about-images .video {
    width: 90px;
    height: 90px;
    line-height: 90px;
    top: -30px;
    left: 5px;
  }
}

.about-wrapper-2 .about-images .video .video-btn {
  text-align: center;
  display: inline-block;
  line-height: 48px;
  width: 48px;
  height: 48px;
  background: var(--theme);
  border-radius: 100px;
  z-index: 999;
  position: absolute;
  z-index: 99;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-wrapper-2 .about-images .video .video-btn i {
  z-index: 99;
  position: relative;
  transform: rotate(-45deg);
}

.about-wrapper-2 .about-images .video .circle-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-wrapper-2 .about-images .video .circle-image img {
  animation: cir36 10s linear infinite;
  width: initial;
}

@media (max-width: 575px) {
  .about-wrapper-2 .about-images .video .circle-image img {
    width: 90px;
  }
}

.about-wrapper-2 .about-content .section-title p {
  margin-top: 20px;
}

.about-wrapper-2 .about-content .client-reviews {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-content .client-reviews {
    margin-top: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .about-wrapper-2 .about-content .client-reviews {
    gap: 30px;
  }
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-content .client-reviews .cr-item h2 {
    font-size: 35px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-2 .about-content .client-reviews .cr-item h2 {
    font-size: 30px;
  }
}

.about-wrapper-2 .about-content .client-reviews .cr-item h6 {
  color: var(--text);
  font-weight: 400;
}

.about-wrapper-2 .about-content .about-button {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 1199px) {
  .about-wrapper-2 .about-content .about-button {
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
}

.about-wrapper-2 .about-content .about-button .theme-btn.style-2 {
  background-color: transparent;
  border: var(--border);
  border-color: #1c1d20;
}

@media (max-width: 575px) {
  .about-wrapper-2 .about-content .about-button .theme-btn {
    padding: 18px 25px;
  }
}

.about-wrapper-3 .about-images {
  position: relative;
}

.about-wrapper-3 .about-images .circle-box {
  width: 148px;
  height: 148px;
  background: var(--header);
  border-radius: 100px;
  position: absolute;
  top: 16%;
  left: 75%;
}

.about-wrapper-3 .about-images .circle-box img {
  animation: cir36 10s linear infinite;
}

@media (max-width: 1199px) {
  .about-wrapper-3 .about-images .circle-box {
    width: 100px;
    height: 100px;
    top: 16%;
    left: 73%;
  }
}

.about-wrapper-3 .about-images img {
  width: 100%;
  height: 100%;
}

.about-wrapper-3 .about-content .section-title p {
  margin-top: 12px;
}

.about-wrapper-3 .about-content .text {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .about-wrapper-3 .about-content .text {
    margin-top: 30px;
  }
}

.about-wrapper-3 .about-content .items {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .about-wrapper-3 .about-content .items {
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .about-wrapper-3 .about-content .items {
    gap: 15px;
    flex-wrap: wrap;
  }
}

.about-wrapper-3 .about-content .items .item {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 1199px) {
  .about-wrapper-3 .about-content .items .item {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.about-wrapper-3 .about-content .items .item .icon {
  width: 56px;
  height: 56px;
  border-radius: 100px;
  background: rgba(28, 29, 32, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-wrapper-3 .about-content .about-btn {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 575px) {
  .about-wrapper-3 .about-content .about-btn {
    gap: 20px;
  }
}

.about-wrapper-3 .about-content .about-btn .video-btn {
  display: flex;
  align-items: center;
  gap: 9px;
}

.about-wrapper-3 .about-content .about-btn .video-btn span {
  margin-bottom: 0;
}

.about-wrapper-3 .about-content .about-btn .video-btn .icon {
  width: 56px;
  height: 56px;
  border-radius: 100px;
  border: var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-wrapper-3 .about-content .about-btn .video-btn .icon i {
  color: var(--theme);
}

.about-wrapper-3 .about-content .about-btn .video-btn .textx {
  font-family: Manrope;
  font-weight: 600;
}

.about-3 {
  position: relative;
}

.about-3 .scales-shape {
  position: absolute;
  right: 50px;
  bottom: 0;
}

@media (max-width: 1199px) {
  .about-3 .scales-shape {
    display: none;
  }
}

.about-3 .order-shape {
  position: absolute;
  top: 12%;
  left: 5%;
}

@media (max-width: 1199px) {
  .about-3 .order-shape {
    display: none;
  }
}

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@-webkit-keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}

@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}

.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }

  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes criss-cross-right {
  0% {
    right: -20px;
  }

  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@keyframes wave {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-25%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/*img-animation**********************/
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-bottom {
  animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes moving {
  0% {
    transform: translatey(0px);
  }

  20% {
    transform: translateX(-50px);
  }

  50% {
    transform: translatey(-40px);
  }

  100% {
    transform: translatey(0px);
  }
}

@keyframes translateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes translateY2 {
  0% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  100% {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes animate-positive {
  0% {
    width: 0;
  }
}

.contact-1 {
  position: relative;
}

.contact-1 .bottom-shape {
  position: absolute;
  left: 9%;
  bottom: 25%;
}

@media (max-width: 1199px) {
  .contact-1 .bottom-shape {
    display: none;
  }
}

.contact-1 .star-left-shape {
  position: absolute;
  top: 21%;
  left: 5%;
}

@media (max-width: 1199px) {
  .contact-1 .star-left-shape {
    display: none;
  }
}

.contact-1 .star-right-shape {
  position: absolute;
  right: 3%;
  bottom: 10%;
}

@media (max-width: 1199px) {
  .contact-1 .star-right-shape {
    display: none;
  }
}

.contact-1 .regulation-shape {
  position: absolute;
  right: 5%;
  bottom: 12%;
}

@media (max-width: 1199px) {
  .contact-1 .regulation-shape {
    display: none;
  }
}

.contact-1 .random-shape {
  position: absolute;
  left: 40%;
  bottom: 35%;
}

@media (max-width: 1199px) {
  .contact-1 .random-shape {
    display: none;
  }
}

.contact-1 .contact-wrapper {
  margin-right: 50px;
}

@media (max-width: 1199px) {
  .contact-1 .contact-wrapper {
    margin-right: 0;
  }
}

.contact-1 .contact-wrapper .section-title h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.contact-1 .contact-wrapper .section-title p {
  color: var(--white);
  margin-bottom: 30px;
}

.contact-1 .contact-wrapper .images img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.contact-1 .contact-wrapper .google-map iframe {
  width: 100%;
  height: 415px;
  border-radius: 16px;
}

@media (max-width: 1199px) {
  .contact-1 .contact-wrapper .google-map iframe {
    height: 343px;
  }
}

.contact-1 .contact-wrapper .contact-items {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 25px;
}

.contact-1 .contact-wrapper .contact-items .content h4 {
  color: var(--white);
}

.contact-1 .contact-wrapper .contact-items .content h5 {
  color: #bbbbbc;
}

.contact-1 .contact-form {
  padding: 48px 40px;
  border: var(--border-2);
  border-radius: 16px;
}

@media (max-width: 1199px) {
  .contact-1 .contact-form {
    padding: 20px;
  }
}

.contact-1 .contact-form h3 {
  color: var(--white);
  border-bottom: 1.2px solid rgba(102, 102, 102, 0.24);
  padding-bottom: 20px;
  margin-bottom: 50px;
}

.contact-1 .contact-form .contact-box input,
.contact-1 .contact-form .contact-box textarea {
  width: 100%;
  margin-bottom: 20px;
  padding: 18px 24px;
  border: var(--border);
  border-radius: 16px;
  background: transparent;
  color: var(--white);
  line-height: 1;
}

.contact-1 .contact-form .contact-box input::placeholder,
.contact-1 .contact-form .contact-box textarea::placeholder {
  color: #bdbdbe;
}

.contact-1 .contact-form .contact-box input:focus,
.contact-1 .contact-form .contact-box textarea:focus {
  border-color: var(--theme);
}

.contact-1 .contact-form .contact-box textarea {
  resize: none;
  height: 130px;
}

.contact-1 .contact-form .contact-box textarea:focus {
  border-color: var(--theme) !important;
  outline: none;
}

.contact-1 .contact-form .contact-box .ext {
  padding-bottom: 80px;
}

.contact-1 .contact-form .contact-box .theme-btn {
  margin-top: 40px;
  width: 100%;
  transition: all 0.4s ease-in-out;
}

.contact-1 .contact-form .contact-box .theme-btn:hover {
  color: var(--header);
}

.contact-1 .contact-form .contact-box .theme-btn:hover::before {
  background-color: var(--white);
  border: var(--border-2);
}

.contact-1 .google-map iframe {
  width: 100%;
  height: 583px;
}

.contact-1 .contact-item-wrapper {
  margin-top: -4px;
}

@media (max-width: 1199px) {
  .contact-1 .contact-item-wrapper {
    margin-top: 20px;
  }
}

.contact-1 .contact-item-wrapper .contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-1 .contact-item-wrapper .contact-item .icon {
  width: 56px;
  height: 56px;
  background-color: var(--bg);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-1 .contact-item-wrapper .contact-item .icon i {
  color: var(--header);
}

.contact-1 .social {
  display: flex;
  align-items: center;
  margin-top: 44px;
}

.contact-1 .social .social-list {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 20px;
}

.contact-1 .social .social-list li a {
  width: 40px;
  height: 40px;
  background-color: var(--bg);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.contact-1 .social .social-list li a:hover {
  background: var(--theme);
}

.contact-form-box {
  border-radius: 24px;
  background: var(--bg);
  backdrop-filter: blur(24px);
  padding: 48px;
}

@media (max-width: 1199px) {
  .contact-form-box {
    padding: 30px;
  }
}

.contact-form-box h3 {
  margin-bottom: 30px;
  border-bottom: var(--border-3);
  padding-bottom: 20px;
}

.contact-form-box .contact-box input,
.contact-form-box .contact-box textarea {
  width: 100%;
  background-color: var(--white);
  border: 0;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 15px;
}

.contact-form-box .contact-box textarea {
  height: 134px;
  resize: none;
  outline: none;
}

.contact-form-box .contact-box .theme-btn {
  margin-top: 30px;
  width: 100%;
}

.funfact-wrapper {
  padding: 48px 0px;
  border-radius: 8px 24px;
  background: var(--theme);
  text-align: center;
  position: relative;
  z-index: 9;
  margin-top: -115px;
}

@media (max-width: 1199px) {
  .funfact-wrapper {
    margin-top: -120px;
  }
}

@media (max-width: 991px) {
  .funfact-wrapper {
    margin-top: -148px;
  }
}

.funfact-wrapper .item h4 {
  font-size: 60px;
  line-height: 72px;
}

.error-section {
  margin-top: -32px;
}

.error-wrapper {
  text-align: center;
}

.error-wrapper .error h2 {
  color: var(--theme);
  font-size: 150px;
}

@media (max-width: 1199px) {
  .error-wrapper .error h2 {
    font-size: 140px;
  }
}

@media (max-width: 991px) {
  .error-wrapper .error h2 {
    font-size: 130px;
  }
}

@media (max-width: 575px) {
  .error-wrapper .error h2 {
    font-size: 100px;
  }
}

.error-wrapper .error-content h2 {
  font-size: 72px;
}

@media (max-width: 1199px) {
  .error-wrapper .error-content h2 {
    font-size: 60px;
  }
}

@media (max-width: 991px) {
  .error-wrapper .error-content h2 {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .error-wrapper .error-content h2 {
    font-size: 30px;
  }
}

.error-wrapper .error-content h2 span {
  color: var(--theme);
}

.error-wrapper .error-content p {
  margin-top: 22px;
}

.error-wrapper .error-btn {
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

@media (max-width: 575px) {
  .error-wrapper .error-btn {
    gap: 10px;
  }
}

.error-wrapper .error-btn .theme-btn {
  padding: 18px 30px;
}

@media (max-width: 575px) {
  .error-wrapper .error-btn .theme-btn {
    padding: 14px 22px;
  }
}

.error-wrapper .error-btn .theme-btn.style-2 {
  border: 1.5px solid var(--header);
  background-color: transparent;
}

.faq-1 {
  position: relative;
}

.faq-1 .arrow-shape {
  position: absolute;
  bottom: 0;
  left: 30%;
}

@media (max-width: 1199px) {
  .faq-1 .arrow-shape {
    display: none;
  }
}

.faq-1 .star-shape {
  position: absolute;
  bottom: 0;
  left: 9%;
}

@media (max-width: 1199px) {
  .faq-1 .star-shape {
    display: none;
  }
}

.faq-1 p {
  margin-top: 10px;
  margin-bottom: -10px;
}

.faq-1 h6 {
  color: var(--header);
  font-size: 16px;
  margin-top: 20px;
}

.faq-1 .theme-btn {
  margin-top: 20px;
}

.faq-items {
  margin-right: 50px;
  margin-top: 30px;
}

@media (max-width: 1199px) {
  .faq-items {
    margin-right: 0;
  }
}

.faq-items .accordion-item {
  border: var(--border);
  border-radius: 8px;
  box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

.faq-items .accordion-item .accordion-header .accordion-button {
  color: var(--header);
  box-shadow: none;
  background-color: var(--white);
  border-radius: 16px 16px 0 0;
  padding: 24px;
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 800;
}

@media (max-width: 1199px) {
  .faq-items .accordion-item .accordion-header .accordion-button {
    font-size: 18px;
    padding: 15px;
  }
}

.faq-items .accordion-item .accordion-header .accordion-button::after {
  content: "";
  background-image: url("../img/icon/arrow-up.svg");
  background-size: 25px;
  transition: all 0.3s ease-in-out !important;
}

.faq-items .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "";
  background-image: url("../img/icon/arrow-down.svg");
  background-size: 25px;
  transform: rotate(0);
}

.faq-items .accordion-item .accordion-header .accordion-button.collapsed {
  color: var(--header);
  padding: 24px;
  border-radius: 16px;
}

@media (max-width: 1199px) {
  .faq-items .accordion-item .accordion-header .accordion-button.collapsed {
    padding: 15px;
  }
}

.faq-items .accordion-item .accordion-collapse .accordion-body {
  padding-left: 30px;
  padding-top: 0;
  color: #252525;
}

@media (max-width: 1199px) {
  .faq-items .accordion-item .accordion-collapse .accordion-body {
    padding: 15px;
  }
}

.awards-section {
  position: relative;
}

.awards-section .trophy-shape {
  position: absolute;
  right: 24%;
  bottom: 0;
}

@media (max-width: 1199px) {
  .awards-section .trophy-shape {
    display: none;
  }
}

.awards-section .star-shape {
  position: absolute;
  bottom: 20%;
  right: 41%;
}

@media (max-width: 1199px) {
  .awards-section .star-shape {
    display: none;
  }
}

.awards-wrapper .awards-item {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  border: var(--border);
  background: var(--bg);
  transition: all 0.4s ease-in-out;
  height: 100%;
}

@media (max-width: 1199px) {
  .awards-wrapper .awards-item {
    align-items: end;
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .awards-wrapper .awards-item {
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
  }
}

.awards-wrapper .awards-item .content {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 1199px) {
  .awards-wrapper .awards-item .content {
    flex-wrap: wrap;
    gap: 15px;
  }

  .awards-wrapper .awards-item .content .icon {
    width: 100%;
  }
}

@media (max-width: 1199px) {
  .awards-wrapper .awards-item .content .text h4 {
    font-size: 20px;
  }
}

.awards-wrapper .awards-item:hover {
  border-color: var(--theme);
  background: #f6fffb;
}

.experience-section {
  position: relative;
}

.experience-section .random-shape {
  position: absolute;
  top: 17%;
  right: 11%;
}

@media (max-width: 1199px) {
  .experience-section .random-shape {
    display: none;
  }
}

.experience-section .section-title span,
.experience-section .section-title h2 {
  color: var(--white);
}

.experience-wrapper {
  margin-top: 30px;
}

.experience-wrapper .experience-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: var(--border);
  padding: 20px 0;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 767px) {
  .experience-wrapper .experience-items {
    gap: 20px;
    flex-direction: column;
    align-items: start;
  }
}

.experience-wrapper .experience-items span {
  color: #bbbbbc;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}

.experience-wrapper .experience-items h4 {
  color: var(--white);
  cursor: pointer;
}

@media (max-width: 991px) {
  .experience-wrapper .experience-items h4 {
    font-size: 20px;
  }
}

.experience-wrapper .experience-items h6 {
  color: var(--white);
  cursor: pointer;
}

@media (max-width: 991px) {
  .experience-wrapper .experience-items h6 {
    font-size: 16px;
  }
}

.experience-wrapper .experience-items:hover {
  border-color: var(--theme);
}

.experience-wrapper .experience-items:hover h4 {
  color: var(--theme);
}

.client-wrapper {
  margin-top: 80px;
  padding: 30px;
  border: var(--border);
  border-radius: 24px;
}

@media (max-width: 1199px) {
  .client-wrapper {
    padding: 20px;
  }
}

.client-wrapper .client-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .client-wrapper .client-items {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: left;
  }
}

@media (max-width: 575px) {
  .client-wrapper .client-items {
    gap: 30px;
    justify-content: center;
  }
}

.client-wrapper .client-items .client-item {
  text-align: center;
  max-width: 220px;
  width: 100%;
  position: relative;
}

@media (max-width: 991px) {
  .client-wrapper .client-items .client-item {
    max-width: 198px;
  }
}

@media (max-width: 575px) {
  .client-wrapper .client-items .client-item {
    max-width: 160px;
  }
}

.client-wrapper .client-items .client-item:not(:last-child)::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 137px;
  background: #666;
  opacity: 0.24;
  top: -30px;
  right: 0;
}

@media (max-width: 1199px) {
  .client-wrapper .client-items .client-item:not(:last-child)::before {
    height: 114px;
    top: -20px;
  }
}

@media (max-width: 991px) {
  .client-wrapper .client-items .client-item:not(:last-child)::before {
    display: none;
  }
}

.client-wrapper .client-items .client-item .number {
  color: var(--theme);
  margin-right: 16px;
}

.client-wrapper .client-items .client-item .text {
  color: #bbbcbd;
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}

.client-wrapper-2 .client-item-wrapper {
  margin-right: 50px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media (max-width: 991px) {
  .client-wrapper-2 .client-item-wrapper {
    justify-content: space-between;
  }
}

.client-wrapper-2 .client-item-wrapper .client-item {
  border: var(--border-3);
  border-radius: 16px;
  padding: 28px;
  background: rgba(102, 102, 102, 0.08);
  text-align: center;
  transition: all 0.4s ease-in-out;
}

.client-wrapper-2 .client-item-wrapper .client-item .content {
  margin: -3px;
}

.client-wrapper-2 .client-item-wrapper .client-item .content h2 {
  color: var(--white);
}

@media (max-width: 1199px) {
  .client-wrapper-2 .client-item-wrapper .client-item .content h2 {
    font-size: 40px;
  }
}

.client-wrapper-2 .client-item-wrapper .client-item .content p {
  color: #bdbdbe;
}

.client-wrapper-2 .client-item-wrapper .client-item.style-2 {
  background: none;
  border: 0;
  padding: 23px;
}

.client-wrapper-2 .client-item-wrapper .client-item.style-2 a {
  color: var(--theme);
  border-bottom: var(--border-2);
}

.client-wrapper-2 .client-item-wrapper .client-item:hover {
  border-color: var(--theme);
}

@media (max-width: 1199px) {
  .client-wrapper-2 .client-item-wrapper {
    margin-right: 0;
  }
}

.client-wrapper-2 .client-content .section-title span {
  color: var(--white);
}

.client-wrapper-2 .client-content .section-title h2 {
  color: var(--white);
}

.client-wrapper-2 .client-content p {
  color: #bbbbbc;
}

.client-wrapper-2 .icon {
  margin-top: 30px;
}

.experience-wrapper-2 {
  margin-top: 30px;
}

.experience-wrapper-2 .skill-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .experience-wrapper-2 .skill-list {
    gap: 15px;
  }
}

@media (max-width: 575px) {
  .experience-wrapper-2 .skill-list {
    gap: 10px;
  }
}

.experience-wrapper-2 .skill-list li {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--white);
  padding: 8px 24px;
  border-radius: 41.873px;
  border: 1.269px solid rgba(249, 249, 249, 0.24);
  background: rgba(102, 102, 102, 0.02);
  backdrop-filter: blur(24px);
  transition: all 0.4s ease-in-out;
}

@media (max-width: 575px) {
  .experience-wrapper-2 .skill-list li {
    padding: 8px 16px;
  }
}

.experience-wrapper-2 .skill-list li:hover {
  border-color: var(--theme);
}

.experience-wrapper-2 h6 {
  margin-top: 50px;
  text-align: center;
  color: var(--white);
}

.experience-wrapper-2 h6 .link-btn {
  color: var(--theme);
}

.work-section {
  position: relative;
}

.work-section .star-shape {
  position: absolute;
  top: 15%;
  right: 11%;
}

@media (max-width: 1199px) {
  .work-section .star-shape {
    display: none;
  }
}

.work-wrapper {
  position: relative;
  z-index: 9;
}

.work-wrapper::before {
  content: "";
  position: absolute;
  height: 1.5px;
  width: 815px;
  background-color: #dcdcdc;
  top: 32%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

@media (max-width: 1199px) {
  .work-wrapper::before {
    top: 30%;
    width: 565px;
  }
}

@media (max-width: 991px) {
  .work-wrapper::before {
    display: none;
  }
}

.work-wrapper .work-items {
  margin-top: 30px;
  text-align: center;
}

.work-wrapper .work-items .icon {
  width: 90px;
  height: 90px;
  border: var(--border-2);
  border-radius: 100px;
  background: var(--white);
  place-content: center;
  margin: 0 auto;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
  .work-wrapper .work-items .icon {
    width: 70px;
    height: 70px;
  }

  .work-wrapper .work-items .icon img {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 991px) {
  .work-wrapper .work-items .icon {
    width: 60px;
    height: 60px;
  }
}

.work-wrapper .work-items .content {
  margin-top: 20px;
}

.work-wrapper .work-items .content h4 {
  margin-bottom: 10px;
}

.work-wrapper .work-items:hover .icon {
  background: var(--theme);
}

.feature-wrapper {
  margin-top: -150px;
  position: relative;
  z-index: 9;
}

@media (max-width: 1199px) {
  .feature-wrapper {
    margin-top: -90px;
  }
}

.feature-wrapper .feature-item {
  padding: 64px 48px;
  border: var(--border);
  border-radius: 16px;
  background: var(--white);
  text-align: center;
}

@media (max-width: 1199px) {
  .feature-wrapper .feature-item {
    padding: 20px;
  }
}

.feature-wrapper .feature-item .icon {
  width: 100px;
  height: 100px;
  border: var(--border-2);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
  .feature-wrapper .feature-item .icon {
    width: 80px;
    height: 80px;
  }
}

.feature-wrapper .feature-item .content h4 {
  margin-bottom: 10px;
}

.feature-wrapper .feature-item .content h4 a:hover {
  color: var(--theme);
}

.feature-wrapper .feature-item:hover {
  border-color: var(--theme);
}

.feature-wrapper .feature-item:hover .icon {
  background: var(--theme);
}

.feature-wrapper .feature-item:hover .icon img {
  filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

.feature-wrapper .feature-item.style-2 {
  border-color: var(--theme);
}

.feature-wrapper .feature-item.style-2 .icon {
  background: var(--theme);
}

.experience-3 .section-title h2 {
  color: var(--header);
}

.experience-3 .experience-main-wrapper .content-item {
  margin-top: 30px;
  border: var(--border);
  border-radius: 16px;
}

.experience-3 .experience-main-wrapper .content-item .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
}

@media (max-width: 991px) {
  .experience-3 .experience-main-wrapper .content-item .head {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .experience-3 .experience-main-wrapper .content-item .head {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.experience-3 .experience-main-wrapper .content-item .head h4 img {
  margin-right: 24px;
}

@media (max-width: 991px) {
  .experience-3 .experience-main-wrapper .content-item .head h4 {
    font-size: 20px;
  }

  .experience-3 .experience-main-wrapper .content-item .head h4 img {
    margin-right: 10px;
  }
}

@media (max-width: 575px) {
  .experience-3 .experience-main-wrapper .content-item .head h4 {
    font-size: 16px;
  }
}

.experience-3 .experience-main-wrapper .content-item .text {
  border-top: var(--border);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .experience-3 .experience-main-wrapper .content-item .text {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .experience-3 .experience-main-wrapper .content-item .text {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.experience-3 .experience-main-wrapper .content-item .text .list li {
  margin-bottom: 10px;
}

.experience-3 .experience-main-wrapper .content-item .text .list li img {
  margin-right: 16px;
}

.experience-3 .experience-main-wrapper .content-item:hover {
  border-color: var(--theme);
}

.experience-3 .experience-main-wrapper .content-item:hover .text {
  border-color: transparent;
}

.social-media-area {
  padding: 20px 0;
}

.social-media-area h4 {
  color: var(--white);
  border-right: var(--border-3);
}

@media (max-width: 1199px) {
  .social-media-area h4 {
    border-right: 0;
  }
}

.footer-1 {
  position: relative;
}

.footer-1::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 83%;
  background-color: #3a3a3c;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 991px) {
  .footer-1::before {
    display: none;
  }
}

.footer-1 .random-shape {
  position: absolute;
  top: 20%;
  left: 9%;
}

@media (max-width: 1199px) {
  .footer-1 .random-shape {
    display: none;
  }
}

.footer-1 .star-shape {
  position: absolute;
  top: 30%;
  right: 10%;
}

@media (max-width: 1199px) {
  .footer-1 .star-shape {
    display: none;
  }
}

.footer-2 {
  position: relative;
}

.footer-2 .arrow-shape {
  position: absolute;
  top: 35%;
  right: 5%;
}

.footer-2 .arrow-shape img {
  transform: rotate(-55deg);
}

@media (max-width: 1199px) {
  .footer-2 .arrow-shape {
    display: none;
  }
}

.footer-2 .star-shape {
  position: absolute;
  bottom: 30%;
  left: 3%;
}

@media (max-width: 1199px) {
  .footer-2 .star-shape {
    display: none;
  }
}

.footer-widget-wrapper {
  padding: 70px 0 100px;
}

@media (max-width: 991px) {
  .footer-widget-wrapper {
    padding: 50px 0 80px;
  }
}

.footer-widget-wrapper.style-2 {
  padding: 0px 0 30px;
}

.footer-widget-wrapper .footer-right-margin {
  margin-left: 120px;
  position: relative;
  z-index: 9;
}

@media (max-width: 1199px) {
  .footer-widget-wrapper .footer-right-margin {
    margin-left: 50px;
  }
}

@media (max-width: 991px) {
  .footer-widget-wrapper .footer-right-margin {
    margin-left: 0;
  }
}

.footer-widget-wrapper .single-footer-widget {
  margin-top: 30px;
}

.footer-widget-wrapper .single-footer-widget .widget-head {
  margin-bottom: 20px;
}

.footer-widget-wrapper .single-footer-widget .widget-head h4 {
  color: var(--white);
}

.footer-widget-wrapper .single-footer-widget .content a,
.footer-widget-wrapper .single-footer-widget .content p {
  color: #bbbbbc;
}

.footer-widget-wrapper .single-footer-widget .list-items li {
  color: #bbbbbc;
  transition: all 0.4s ease-in-out;
}

.footer-widget-wrapper .single-footer-widget .list-items li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-widget-wrapper .single-footer-widget .list-items li a {
  color: #bbbbbc;
}

.footer-widget-wrapper .single-footer-widget .list-items li:hover {
  margin-left: 5px;
}

.footer-widget-wrapper .single-footer-widget .list-items li:hover a {
  color: var(--theme);
}

.footer-widget-wrapper .single-footer-widget .list-items.style-2 li:not(:last-child) {
  margin-bottom: 20px;
}

.footer-widget-wrapper .single-footer-widget .list-items.style-2 li a {
  color: #d2d2d2;
}

.footer-widget-wrapper .single-footer-widget .list-items.style-2 li a:hover {
  margin-left: 5px;
  color: var(--theme) !important;
}

.footer-widget-wrapper .single-footer-widget .footer-content p {
  color: #bbbbbc;
}

.footer-widget-wrapper .single-footer-widget .ph-items {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-widget-wrapper .single-footer-widget .ph-items .icon {
  width: 48px;
  height: 48px;
  background: rgba(102, 102, 102, 0.24);
  border-radius: 100px;
  text-align: center;
  display: inline-block;
  line-height: 48px;
}

.footer-widget-wrapper .single-footer-widget .ph-items .ph-item span {
  color: #d2d2d2;
}

.footer-widget-wrapper .single-footer-widget .ph-items .ph-item a {
  color: var(--white);
}

.footer-widget-wrapper .single-footer-widget .footer-address span {
  color: #bbbbbc;
  margin-bottom: 20px;
  display: inline-block;
}

.footer-widget-wrapper .single-footer-widget .footer-address h3 a {
  color: var(--theme);
}

.footer-widget-wrapper .single-footer-widget .footer-address .socials {
  margin-top: 30px;
}

.footer-widget-wrapper .single-footer-widget .footer-address .socials h5 {
  color: var(--white);
}

.footer-widget-wrapper .single-footer-widget .footer-address .socials .social-icon {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-widget-wrapper .single-footer-widget .footer-address .socials .social-icon li a {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s ease-in-out;
}

.footer-widget-wrapper .single-footer-widget .footer-address .socials .social-icon li a i {
  width: 40px;
  height: 40px;
  border: var(--border);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-widget-wrapper .single-footer-widget .footer-address .socials .social-icon li a:hover i {
  color: var(--header);
  background-color: var(--theme);
}

.footer-widget-wrapper .footer-social {
  border-top: 1.5px solid #3a3a3c;
  margin-top: 20px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-widget-wrapper .footer-social h4 {
  color: var(--white);
}

.footer-widget-wrapper .footer-social .socials-icon {
  display: flex;
  align-items: center;
}

.footer-widget-wrapper .footer-social .socials-icon li {
  margin-right: 10px;
}

.footer-widget-wrapper .footer-social .socials-icon li a {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s ease-in-out;
}

.footer-widget-wrapper .footer-social .socials-icon li a i {
  width: 40px;
  height: 40px;
  border: var(--border);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-widget-wrapper .footer-social .socials-icon li a:hover i {
  color: var(--header);
  background-color: var(--theme);
}

.footer-widget-wrapper .menu-list {
  display: flex;
  align-items: center;
  justify-content: end;
}

@media (max-width: 575px) {
  .footer-widget-wrapper .menu-list {
    justify-content: start;
  }
}

.footer-widget-wrapper .menu-list li {
  margin-inline-end: 40px;
}

@media (max-width: 575px) {
  .footer-widget-wrapper .menu-list li {
    margin-inline-end: 20px;
  }
}

.footer-widget-wrapper .menu-list li a {
  color: var(--white);
}

.footer-widget-wrapper .menu-list li a:hover {
  color: var(--theme);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1.5px solid #3a3a3c;
}

.footer-bottom .footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .footer-bottom .footer-bottom-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
}

.footer-bottom .footer-bottom-wrapper p {
  margin-right: 180px;
  color: var(--white);
}

@media (max-width: 991px) {
  .footer-bottom .footer-bottom-wrapper p {
    margin-right: 0;
  }
}

.footer-bottom .footer-bottom-wrapper p span {
  color: var(--theme);
}

.footer-bottom .footer-bottom-wrapper .footer-list {
  display: flex;
  align-items: center;
  gap: 48px;
}

@media (max-width: 767px) {
  .footer-bottom .footer-bottom-wrapper .footer-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}

.footer-bottom .footer-bottom-wrapper .footer-list li {
  color: var(--white);
}

.footer-bottom .footer-bottom-wrapper .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom .footer-bottom-wrapper .social-icon li {
  margin-right: 10px;
}

.footer-bottom .footer-bottom-wrapper .social-icon li a {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.4s ease-in-out;
}

.footer-bottom .footer-bottom-wrapper .social-icon li a i {
  width: 40px;
  height: 40px;
  border: var(--border);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom .footer-bottom-wrapper .social-icon li a:hover i {
  color: var(--header);
  background-color: var(--theme);
}

.footer-bottom .footer-bottom-wrapper.style-2 {
  justify-content: center;
}

.header-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  border-bottom: var(--border-3);
}

.header-1.header-3 {
  background-color: var(--header);
}

.header-1 .logo-2 {
  display: none;
}

.header-1 .container-fluid {
  padding: 0 60px;
}

@media (max-width: 1600px) {
  .header-1 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .header-1 .container-fluid {
    padding: 0 40px;
  }
}

@media (max-width: 1199px) {
  .header-1 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 1399px) {
  .header-1 .theme-btn {
    display: none;
  }
}

.header-1 .search-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid var(--border);
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.header-main .main-menu ul {
  margin-bottom: 0;
}

.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 40px;
}

.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}

.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li a i {
  margin-left: 4px;
  font-size: 14px;
}

.header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}

.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 115%;
  inset-inline-start: 0;
  min-width: 240px;
  background: var(--white);
  padding: 20px 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  transform: translateY(-10px);
  transition: all 0.4s ease-in-out;
  border-top: 6px solid var(--theme);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}

.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  line-height: 38px;
  padding: 0px 0px 0px 32px;
  width: 100%;
}

.header-main .main-menu ul li .submenu li a::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 2px;
  background: var(--theme);
  left: 14px;
  bottom: 18px;
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme) !important;
}

.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}

.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}

.header-main .main-menu ul li .submenu li:hover>a {
  color: var(--theme) !important;
  margin-left: 10px;
}

.header-main .main-menu ul li .submenu li:hover>a::before {
  width: 10px;
}

.header-main .main-menu ul li .submenu li:hover>a::after {
  color: var(--theme);
}

.header-main .main-menu ul li .submenu li:hover>.submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li .submenu li.has-dropdown>a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}

.header-main .main-menu ul li .has-homemenu {
  width: 800px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 14px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 0px !important;
  background-color: var(--theme);
  line-height: initial;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  background-color: var(--header);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}

.header-main .main-menu ul li:hover>a {
  color: var(--theme);
}

.header-main .main-menu ul li:hover>a::after {
  color: var(--theme);
}

.header-main .main-menu ul li:hover>.submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

.header-main .main-menu.style-2 ul li a {
  color: var(--white);
}

.header-main .header-right {
  gap: 30px;
}

@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}

.header-main .header-right .dark-icon {
  width: 48px;
  height: 48px;
  background: var(--bg);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.header-main .header-right .dark-icon:hover {
  background: var(--black);
}

.header-main .header-right .dark-icon:hover img {
  filter: invert(1);
}

.header-main .header-right .theme-btn {
  padding: 12px 30px;
  background: var(--header);
  color: var(--white);
}

.header-main .header-right .theme-btn::before {
  background: var(--theme);
}

.header-main .header-right .theme-btn.style-2 {
  padding: 16px 30px;
  color: var(--theme);
  border: var(--border-2);
}

.header-main .header-right .theme-btn.style-2::before {
  background-color: var(--white);
}

.header-main .header-right .search-icon {
  border-radius: 100px;
  background: rgba(102, 102, 102, 0.24);
  color: var(--white);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
}

.header-main .sidebar__toggle.style-2 {
  color: var(--white);
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.9s;
  background-color: var(--white);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.sticky.header-1.header-3 {
  background-color: var(--white);
}

.sticky.header-1 .header-logo {
  display: none;
}

.sticky.header-1 .logo-2 {
  display: block;
}

.sticky.header-1 .header-main .main-menu ul li a {
  color: var(--header);
}

.sticky.header-1 .header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}

.sticky.header-1 .header-main .main-menu ul li .submenu {
  color: var(--header);
}

.sticky.header-1 .header-main .main-menu ul li .submenu li a {
  color: var(--header);
}

.sticky.header-1 .header-main .sidebar__toggle {
  color: var(--header);
}

.sticky.header-1 .theme-btn.style-2 {
  color: var(--header);
  background: var(--white);
}

.sticky.header-1 .theme-btn.style-2::before {
  background: var(--theme);
}

.sticky.header-1 .search-icon {
  color: var(--header);
  border: var(--border-2);
  background: transparent;
  transition: all 0.4s ease-in-out;
}

.sticky.header-1 .search-icon:hover {
  background: var(--theme);
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}

.offcanvas__wrapper .offcanvas__content .text {
  color: var(--text);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  z-index: 9;
  cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--text);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 20px 40px;
  text-transform: capitalize !important;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--text);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.offcanvas__wrapper .offcanvas__logo {
  width: 170px;
}

.offcanvas__wrapper .offcanvas__logo img {
  width: 100%;
  height: 100%;
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}

@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}

.breadcrumb-wrapper {
  position: relative;
}

.breadcrumb-wrapper .star-shape {
  position: absolute;
  top: 36%;
  right: 20%;
}

@media (max-width: 1199px) {
  .breadcrumb-wrapper .star-shape {
    display: none;
  }
}

.breadcrumb-wrapper .page-heading {
  padding: 180px 0 100px;
  text-align: center;
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading {
    padding: 120px 0 80px;
  }
}

.breadcrumb-wrapper .page-heading h2 {
  font-size: 72px;
  line-height: 80px;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading h2 {
    font-size: 65px;
  }
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading h2 {
    font-size: 55px;
  }
}

@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading h2 {
    font-size: 45px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h2 {
    font-size: 35px;
    margin-bottom: 0;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.breadcrumb-wrapper .page-heading .breadcrumb-list li {
  color: var(--header);
}

.breadcrumb-wrapper .page-heading .breadcrumb-list li a {
  color: #868283;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--bg);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ml-50 {
  margin-left: 50px;
}

@media (max-width: 1199px) {
  .ml-50 {
    margin-left: 0;
  }
}

.ripple {
  position: relative;
}

.ripple::before,
.ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 110px;
  height: 110px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}

.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.swiper-dot {
  padding-top: 50px;
  position: relative;
}

.swiper-dot .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.6s;
  background: var(--white);
  opacity: 1;
  border-radius: 10px;
}

.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--theme);
  transition: 0.6s;
  position: relative;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 22px;
  height: 22px;
  line-height: 22px;
  top: -6px;
  left: -6px;
  border-radius: 50%;
  background: transparent;
  border-width: 3px;
  border-style: solid;
  border: 2px solid var(--theme);
  content: "";
}

.swiper-dot-2 {
  text-align: center;
  padding-top: 50px;
  position: relative;
}

.swiper-dot-2 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.6s;
  background: var(--black);
  opacity: 1;
  border-radius: 10px;
}

.swiper-dot-2 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px;
}

.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--theme);
  transition: 0.6s;
  position: relative;
}

.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 22px;
  height: 22px;
  line-height: 22px;
  top: -6px;
  left: -6px;
  border-radius: 50%;
  background: transparent;
  border-width: 3px;
  border-style: solid;
  border: 2px solid var(--theme);
  content: "";
}

.swiper-dot4 {
  text-align: center;
}

.swiper-dot4 .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  transition: 0.6s;
  background-color: var(--white);
  border: 1px solid var(--theme);
  opacity: 1;
  border-radius: 100%;
  position: relative;
}

.swiper-dot4 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
  border-radius: 30px;
}

.array-button {
  display: flex;
  align-items: center;
  gap: 15px;
}

.array-button .array-prev {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  color: var(--header);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  border: 1px solid var(--border);
}

.array-button .array-prev svg path {
  fill: var(--white);
}

.array-button .array-prev:hover {
  background: var(--theme);
}

.array-button .array-prev:hover svg path {
  fill: var(--header);
}

.array-button .array-next {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
  background: var(--theme);
}

.array-button .array-next svg path {
  fill: var(--header);
}

.array-button .array-next:hover {
  background: var(--white);
}

.array-button .array-next:hover svg path {
  fill: var(--header);
}


@media (max-width: 767px) {
  br {
    display: none;
  }
}

/* background */
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.page-nav-wrap {
  margin-top: 60px;
}

.page-nav-wrap ul li {
  display: inline-block;
}

.page-nav-wrap ul li.active .page-numbers {
  background-color: var(--theme);
  color: var(--header);
}

.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 4px;
  background: var(--bg);
  color: var(--header);
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
}

.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}

@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}

.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}

.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
}

.hero-1 {
  padding-top: 120px;
  position: relative;
}

.hero-1 .random-shape {
  position: absolute;
  top: 24%;
  left: 18%;
}

@media (max-width: 1199px) {
  .hero-1 .random-shape {
    display: none;
  }
}

.hero-1 .arrow-shape {
  position: absolute;
  top: 28%;
  left: 45.5%;
}

@media (max-width: 1199px) {
  .hero-1 .arrow-shape {
    display: none;
  }
}

.hero-1 .star-shape {
  position: absolute;
  top: 15%;
  right: 22%;
}

@media (max-width: 1199px) {
  .hero-1 .star-shape {
    display: none;
  }
}

.hero-1 .hero-info {
  display: flex;
  align-items: center;
  gap: 10px;
  gap: 20px;
  position: absolute;
  transform: rotate(-90deg) translateY(-50%);
  top: 50%;
  left: -45px;
}

@media (max-width: 1199px) {
  .hero-1 .hero-info {
    display: none;
  }
}

.hero-1 .hero-info a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  transition: all 0.4s ease-in-out;
}

.hero-1 .hero-info a.active {
  color: var(--header);
}

.hero-1 .hero-info a.active::before {
  width: 50%;
}

.hero-1 .hero-info a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--theme);
  transition: all 0.4s ease-in-out;
}

.hero-1 .hero-info a:hover {
  color: var(--header);
}

.hero-1 .hero-info a:hover::before {
  width: 50%;
}

.hero-1 .hero-images {
  position: relative;
  z-index: 9;
}

@media (max-width: 1199px) {
  .hero-1 .hero-images img {
    width: 100%;
    height: 100%;
  }
}

.hero-1 .hero-images .hero-shape {
  position: absolute;
  left: -10px;
  bottom: 48px;
  z-index: -1;
}

@media (max-width: 1199px) {
  .hero-1 .hero-images .hero-shape {
    display: none;
  }
}

.hero-1 .hero-images .hero-shape img {
  height: initial;
  width: initial;
}

.hero-1 .hero-content span {
  color: var(--header);
  font-size: 18px;
  font-weight: 600;
}

.hero-1 .hero-content span img {
  margin-right: 10px;
}

.hero-1 .hero-content h1 {
  font-size: 75px;
  margin-top: 20px;
  margin-bottom: 25px;
}

@media (max-width: 1199px) {
  .hero-1 .hero-content h1 {
    font-size: 55px;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-content h1 {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .hero-1 .hero-content h1 {
    font-size: 35px;
  }
}

.hero-1 .hero-content h1 .type-text {
  display: block;
  margin-top: 10px;
  white-space: nowrap;
  min-width: 150px;
  word-break: keep-all;
}

.hero-1 .hero-content h1 .type-text span {
  color: var(--text);
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
}

.hero-1 .hero-content p {
  letter-spacing: 0;
}

.hero-1 .hero-content .hero-btn-wrapper {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 1199px) {
  .hero-1 .hero-content .hero-btn-wrapper {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.hero-1 .hero-content .hero-btn-wrapper .video-btn {
  display: flex;
  align-items: center;
  gap: 9px;
}

.hero-1 .hero-content .hero-btn-wrapper .video-btn span {
  margin-bottom: 0;
}

.hero-1 .hero-content .hero-btn-wrapper .video-btn .icon {
  width: 56px;
  height: 56px;
  border-radius: 100px;
  border: 1px solid rgba(102, 102, 102, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-1 .hero-content .hero-btn-wrapper .video-btn .icon i {
  color: var(--theme);
}

.hero-1 .hero-content .hero-btn-wrapper .video-btn .text {
  font-size: 14px;
  font-family: Manrope;
  font-weight: 600;
  line-height: 24px;
}

.hero-2 {
  position: relative;
  padding-top: 192px;
}

.hero-2 .arrow-shape {
  position: absolute;
  bottom: 0%;
  left: 30%;
}

@media (max-width: 1199px) {
  .hero-2 .arrow-shape {
    display: none;
  }
}

.hero-2 .star-shape {
  position: absolute;
  top: 15%;
  left: 9%;
}

@media (max-width: 1199px) {
  .hero-2 .star-shape {
    display: none;
  }
}

.hero-2 .hero-title {
  text-align: center;
}

.hero-2 .hero-title span {
  color: var(--theme);
  padding: 8px 24px;
  border: var(--border-2);
  border-radius: 100px;
}

.hero-2 .hero-title h1 {
  color: var(--white);
  font-size: 72px;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .hero-2 .hero-title h1 {
    font-size: 55px;
  }
}

@media (max-width: 575px) {
  .hero-2 .hero-title h1 {
    font-size: 35px;
  }
}

.hero-2 .hero-content-wrappers {
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .hero-2 .hero-content-wrappers {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.hero-2 .hero-content-wrappers .hero-content-left {
  max-width: 530px;
}

@media (max-width: 991px) {
  .hero-2 .hero-content-wrappers .hero-content-left {
    text-align: center;
    margin: 0 auto;
  }
}

.hero-2 .hero-content-wrappers .hero-content-left .hero-btn {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (max-width: 1199px) {
  .hero-2 .hero-content-wrappers .hero-content-left .hero-btn {
    flex-wrap: wrap;
  }
}

@media (max-width: 991px) {
  .hero-2 .hero-content-wrappers .hero-content-left .hero-btn {
    justify-content: center;
  }
}

.hero-2 .hero-content-wrappers .hero-content-left .hero-btn .theme-btn {
  border: var(--border-2);
}

.hero-2 .hero-content-wrappers .hero-content-left .hero-btn .theme-btn::before {
  background-color: var(--white);
}

.hero-2 .hero-content-wrappers .hero-content-left .hero-btn .theme-btn:hover {
  border-color: var(--theme);
  color: var(--header);
}

.hero-2 .hero-content-wrappers .hero-content-left .hero-btn .social a {
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: rgba(102, 102, 102, 0.24);
  display: inline-block;
  line-height: 40px;
  text-align: center;
  margin-left: 12px;
  transition: all 0.4s ease-in-out;
}

.hero-2 .hero-content-wrappers .hero-content-left .hero-btn .social a:hover {
  color: var(--header);
  background-color: var(--theme);
}

.hero-2 .hero-content-wrappers .hero-thumb img {
  width: 100%;
  height: 100%;
}

@media (max-width: 991px) {
  .hero-2 .hero-content-wrappers .hero-thumb {
    margin: 0 auto;
  }
}

.hero-2 .hero-content-wrappers .hero-content-right {
  max-width: 306px;
  border-radius: 16px;
  border: 1.5px solid rgba(102, 102, 102, 0.24);
  background: rgba(102, 102, 102, 0.02);
  backdrop-filter: blur(24px);
}

.hero-2 .hero-content-wrappers .hero-content-right .content {
  padding: 24px;
  padding-bottom: 0;
}

.hero-2 .hero-content-wrappers .hero-content-right .content span {
  color: var(--white);
  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
}

.hero-2 .hero-content-wrappers .hero-content-right .content span img {
  margin-right: 5px;
}

.hero-2 .hero-content-wrappers .hero-content-right .content p {
  margin-top: 5px;
  color: #bbbbbc;
}

.hero-3 {
  padding: 200px 0 300px;
  position: relative;
}

@media (max-width: 1199px) {
  .hero-3 {
    padding: 165px 0 175px;
  }
}

@media (max-width: 991px) {
  .hero-3 {
    padding: 145px 0 153px;
  }
}

@media (max-width: 575px) {
  .hero-3 {
    padding: 150px 0 160px;
  }
}

.hero-3 .balance-shape {
  position: absolute;
  top: 16%;
  left: 9%;
}

@media (max-width: 1199px) {
  .hero-3 .balance-shape {
    display: none;
  }
}

.hero-3 .ruler-shape {
  position: absolute;
  top: 21%;
  right: 22%;
}

@media (max-width: 1199px) {
  .hero-3 .ruler-shape {
    display: none;
  }
}

.hero-3 .random-shape {
  position: absolute;
  left: 27%;
  bottom: 19%;
}

@media (max-width: 1199px) {
  .hero-3 .random-shape {
    display: none;
  }
}

.hero-3 .hero-info {
  display: flex;
  align-items: center;
  gap: 10px;
  gap: 20px;
  position: absolute;
  transform: rotate(-90deg);
  top: 50%;
  left: -45px;
}

@media (max-width: 1199px) {
  .hero-3 .hero-info {
    display: none;
  }
}

.hero-3 .hero-info a {
  font-family: Manrope;
  font-size: 16px;
  font-weight: 600;
  color: rgba(249, 249, 249, 0.5);
  position: relative;
  transition: all 0.4s ease-in-out;
}

.hero-3 .hero-info a.active {
  color: var(--theme);
}

.hero-3 .hero-info a.active::before {
  width: 50%;
}

.hero-3 .hero-info a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--theme);
  transition: all 0.4s ease-in-out;
}

.hero-3 .hero-info a:hover {
  color: var(--theme);
}

.hero-3 .hero-info a:hover::before {
  width: 50%;
}

.hero-3 .hero-content-wrapper span {
  color: var(--theme);
}

.hero-3 .hero-content-wrapper h1 {
  color: var(--white);
  font-size: 100px;
  margin-top: 10px;
  margin-bottom: 24px;
}

@media (max-width: 1199px) {
  .hero-3 .hero-content-wrapper h1 {
    font-size: 60px;
  }
}

@media (max-width: 991px) {
  .hero-3 .hero-content-wrapper h1 {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .hero-3 .hero-content-wrapper h1 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  .hero-3 .hero-content-wrapper h1 {
    font-size: 30px;
  }
}

.hero-3 .hero-content-wrapper p {
  color: #bbbbbc;
}

.hero-3 .hero-content-wrapper .theme-btn {
  margin-top: 40px;
  border: 1.5px solid transparent;
}

.hero-3 .hero-content-wrapper .theme-btn::before {
  background-color: var(--white);
}

.hero-3 .hero-content-wrapper .theme-btn:hover {
  border-color: var(--theme);
  color: var(--header);
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav>ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container .mean-nav>ul .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .mean-container .mean-nav>ul .homemenu-items {
    flex-wrap: wrap;
  }
}

.mean-container .mean-nav>ul .homemenu-items .homemenu {
  position: relative;
}

@media (max-width: 1199px) {
  .mean-container .mean-nav>ul .homemenu-items .homemenu {
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
    border: 1px solid var(--border);
    padding: 10px;
  }
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 12px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 0;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--header);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border) !important;
  border: none;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li>a>i {
  display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
  display: inline-block;
  font-size: 18px;
}

.mean-container .mean-nav>ul>li:first-child>a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

.marquee-container {
  overflow: hidden;
  background-color: #1e1e1e;
  padding: 30px 0;
}

.marquee-wrapper {
  display: flex;
  width: fit-content;
  animation: scroll-left 25s linear infinite;
}

.marquee-content {
  display: flex;
}

.marquee-text {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 30px;
  white-space: nowrap;
}

.marquee-text h3 {
  color: var(--white);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.news-1 {
  position: relative;
}

.news-1 .regulation-shape {
  position: absolute;
  top: 8%;
  left: 5%;
}

@media (max-width: 1199px) {
  .news-1 .regulation-shape {
    display: none;
  }
}

.news-1 .news-item {
  margin-top: 30px;
  border-radius: 16px;
  border: var(--border);
  background-color: var(--white);
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.news-1 .news-item .thumb {
  overflow: hidden;
}

.news-1 .news-item .thumb img {
  width: 100%;
  height: 100%;
  transform: 1;
  transition: all 0.4s ease-in-out;
}

.news-1 .news-item .content {
  padding: 16px 20px 30px;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
  .news-1 .news-item .content {
    padding: 16px 12px 30px;
  }
}

.news-1 .news-item .content .news-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 10px;
}

.news-1 .news-item .content .news-meta .green {
  color: var(--theme);
}

.news-1 .news-item .content .news-meta .date span {
  width: 5px;
  height: 5px;
  border-radius: 100px;
  background-color: var(--text);
  display: inline-block;
  margin-bottom: 3px;
  margin-right: 3px;
}

.news-1 .news-item .content h4 {
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .news-1 .news-item .content h4 {
    font-size: 18px;
  }
}

.news-1 .news-item .content h4:hover a {
  color: var(--theme);
}

.news-1 .news-item .content .news-btn {
  display: flex;
  align-items: center;
  gap: 12px;
}

.news-1 .news-item .content .news-btn .icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--theme);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.news-1 .news-item .content .news-btn .icon i {
  color: var(--theme);
  transform: rotate(-45deg);
}

.news-1 .news-item .content .news-btn .link-btn {
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.news-1 .news-item .content .news-btn:hover .icon {
  background-color: var(--theme);
}

.news-1 .news-item .content .news-btn:hover .icon i {
  color: var(--header);
}

.news-1 .news-item .content .news-btns {
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
}

.news-1 .news-item .content .news-btns i {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--theme);
  border-radius: 100px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
  z-index: 9;
}

.news-1 .news-item .content .news-btns a {
  font-family: Manrope;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  left: -100px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.news-1 .news-item .content .news-btns:hover i {
  background-color: var(--theme);
  color: var(--header);
}

.news-1 .news-item .content .news-btns:hover a {
  left: 0;
  opacity: 1;
  visibility: visible;
  color: var(--theme);
}

.news-1 .news-item:hover {
  border-color: var(--theme);
}

.news-1 .news-item:hover .thumb img {
  transform: scale(1.1);
}

.news-1 .news-item:hover .content {
  background: #f6fffb;
}

.news-1 .news-item:hover .news-btns i {
  background-color: var(--theme);
  color: var(--header);
}

.news-1 .news-item:hover .news-btns a {
  left: 0;
  opacity: 1;
  visibility: visible;
  color: var(--theme);
}

.news-1 .theme-btn {
  margin: 50px auto 0;
}

.news-1.style-3 .content {
  padding: 30px 30px 10px;
}

@media (max-width: 1199px) {
  .news-1.style-3 .content {
    padding: 20px 20px 10px;
  }
}

.news-1.style-3 .content h4 {
  font-size: 20px;
}

@media (max-width: 991px) {
  .news-1.style-3 .content h4 {
    font-size: 19px;
  }
}

@media (max-width: 575px) {
  .news-1.style-3 .content h4 {
    font-size: 20px;
  }
}

.news-1.style-3 .theme-btn {
  max-width: 100%;
  margin: 0;
}

.news-1.style-3:hover .content {
  background: var(--white);
}

.news-content-wrapper .news-item-2 {
  margin-top: 30px;
  padding: 16px 32px;
  border: var(--border);
  border-radius: 16px;
  background-color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

@media (max-width: 1199px) {
  .news-content-wrapper .news-item-2 {
    padding: 20px;
    flex-wrap: wrap;
    gap: 15px;
  }
}

.news-content-wrapper .news-item-2 .title {
  width: 440px;
}

.news-content-wrapper .news-item-2 .title h4 a:hover {
  color: var(--theme);
}

@media (max-width: 1199px) {
  .news-content-wrapper .news-item-2 .title h4 {
    font-size: 20px;
    width: 125%;
  }
}

@media (max-width: 575px) {
  .news-content-wrapper .news-item-2 .title h4 {
    width: 100%;
  }
}

@media (max-width: 1199px) {
  .news-content-wrapper .news-item-2 .content {
    width: 100%;
  }

  .news-content-wrapper .news-item-2 .content p br {
    display: none;
  }
}

.news-content-wrapper .news-item-2 .post-meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.news-content-wrapper .news-item-2 .post-meta .green {
  color: var(--theme);
}

.news-content-wrapper .news-item-2 .post-meta li span {
  width: 8px;
  height: 8px;
  background-color: var(--text);
  border-radius: 100px;
  margin-right: 5px;
  display: inline-block;
}

.news-content-wrapper .news-item-2 .thumb-hover {
  width: 290px;
  height: 320px;
  position: absolute;
  border-radius: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(10deg);
  inset-inline-start: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 75%;
  opacity: 0;
  transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  margin: -200px 0 0 -50px;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
  visibility: hidden;
}

.news-content-wrapper .news-item-2:hover {
  border-color: var(--theme);
  background-color: #f6fffb;
}

.news-content-wrapper .news-item-2:hover .thumb-hover {
  opacity: 1;
  visibility: visible;
}

.news-content-wrapper .news-item-2.style-2 {
  border-color: var(--theme);
  background-color: #f6fffb;
}

.main-sidebar .single-sidebar-widget {
  background: var(--bg);
  padding: 32px;
  border-radius: 16px;
}

.main-sidebar .single-sidebar-widget .wid-title h3 {
  border-bottom: var(--border);
  padding-bottom: 16px;
}

.main-sidebar .single-sidebar-widget .wid-title:not(.main-sidebar .single-sidebar-widget .wid-title:last-child) {
  margin-bottom: 24px;
}

.main-sidebar .single-sidebar-widget .search-widget form {
  width: 100%;
  position: relative;
}

.main-sidebar .single-sidebar-widget .search-widget form input {
  background-color: var(--white);
  padding: 16px 20px;
  width: 100%;
  border: none;
  color: var(--header);
  border-radius: 8px;
}

.main-sidebar .single-sidebar-widget .search-widget form button {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 18px;
  width: 44px;
  height: 44px;
  color: var(--header);
  background-color: var(--theme);
  border-radius: 100px;
  text-align: center;
  transition: all 0.4s ease-in-out;
}

.main-sidebar .single-sidebar-widget .search-widget form button:hover {
  color: var(--white);
  background-color: var(--header);
}

.main-sidebar .single-sidebar-widget .categories-items li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  font-family: Manrope;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  transition: all 0.4s ease-in-out;
  border-radius: 8px;
  padding: 16px;
  border: 1.2px solid transparent;
}

.main-sidebar .single-sidebar-widget .categories-items li a {
  color: var(--header);
}

.main-sidebar .single-sidebar-widget .categories-items li:not(:last-child) {
  margin-bottom: 20px;
}

.main-sidebar .single-sidebar-widget .categories-items li:hover {
  background-color: #f6fffb;
  border-color: var(--theme);
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 1199px) {
  .main-sidebar .single-sidebar-widget .recent-post-area .recent-item {
    flex-wrap: wrap;
  }
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-item:not(:last-child) {
  margin-bottom: 22px;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-item .thumb img {
  border-radius: 8px;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-item .content h6 a:hover {
  color: var(--theme);
}

.main-sidebar .single-sidebar-widget .tagcloud a {
  display: inline-block;
  padding: 8px 16px;
  line-height: 1;
  color: var(--text);
  background: var(--white);
  margin-right: 5px;
  text-transform: capitalize;
  margin-bottom: 10px;
  border-radius: 100px;
  border: 1.2px solid transparent;
  transition: all 0.4s ease-in-out;
}

.main-sidebar .single-sidebar-widget .tagcloud a:last-child {
  margin-right: 0;
}

.main-sidebar .single-sidebar-widget .tagcloud a:hover {
  color: var(--header);
  background: var(--theme);
  border-color: var(--theme);
}

.news-standard-wrapper {
  margin-left: 20px;
}

@media (max-width: 1199px) {
  .news-standard-wrapper {
    margin-left: 0;
  }
}

.news-standard-wrapper .news-standard-items {
  border: var(--border);
  border-radius: 16px;
}

.news-standard-wrapper .news-standard-items:not(:last-child) {
  margin-bottom: 30px;
}

.news-standard-wrapper .news-standard-items .news-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 16px 16px 0 0;
}

.news-standard-wrapper .news-standard-items .news-content {
  padding: 18px 38px 32px;
}

@media (max-width: 991px) {
  .news-standard-wrapper .news-standard-items .news-content {
    padding: 20px;
  }
}

.news-standard-wrapper .news-standard-items .news-content .news-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 10px;
}

.news-standard-wrapper .news-standard-items .news-content .news-meta .green {
  color: var(--theme);
}

.news-standard-wrapper .news-standard-items .news-content .news-meta .date span {
  width: 5px;
  height: 5px;
  border-radius: 100px;
  background-color: var(--text);
  display: inline-block;
  margin-bottom: 3px;
  margin-right: 3px;
}

.news-standard-wrapper .news-standard-items .news-content .content {
  margin-bottom: 12px;
}

.news-standard-wrapper .news-standard-items .news-content .content h3 {
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .news-standard-wrapper .news-standard-items .news-content .content h3 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .news-standard-wrapper .news-standard-items .news-content .content h3 {
    font-size: 20px;
  }
}

.news-standard-wrapper .news-standard-items .news-content .content h3:hover a {
  color: var(--theme);
}

.news-standard-wrapper .news-standard-items .news-content .news-btn {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.news-standard-wrapper .news-standard-items .news-content .news-btn .icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--theme);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.news-standard-wrapper .news-standard-items .news-content .news-btn .icon i {
  color: var(--theme);
  transform: rotate(-45deg);
}

.news-standard-wrapper .news-standard-items .news-content .news-btn .link-btn {
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.news-standard-wrapper .news-standard-items .news-content .news-btn:hover .icon {
  background-color: var(--theme);
}

.news-standard-wrapper .news-standard-items .news-content .news-btn:hover .icon i {
  color: var(--header);
}

.news-details-area {
  margin-right: 20px;
}

@media (max-width: 1199px) {
  .news-details-area {
    margin-right: 0;
  }
}

.news-details-area .single-news-post .news-thumb {
  margin-bottom: 20px;
}

.news-details-area .single-news-post .news-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.news-details-area .single-news-post .news-content .ext {
  font-size: 36px;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .news-details-area .single-news-post .news-content .ext {
    font-size: 30px;
  }
}

.news-details-area .single-news-post .news-content .news-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 10px;
}

.news-details-area .single-news-post .news-content .news-meta .green {
  color: var(--theme);
}

.news-details-area .single-news-post .news-content .news-meta .date span {
  width: 5px;
  height: 5px;
  border-radius: 100px;
  background-color: var(--text);
  display: inline-block;
  margin-bottom: 3px;
  margin-right: 3px;
}

.news-details-area .single-news-post .news-content .highlight-text {
  border: var(--border-2);
  border-radius: 18px;
  background: #f6fffb;
  padding: 24px 40px;
  margin: 30px 0;
  position: relative;
  z-index: 9;
}

@media (max-width: 1199px) {
  .news-details-area .single-news-post .news-content .highlight-text {
    padding: 20px;
  }
}

.news-details-area .single-news-post .news-content .highlight-text .qoute-shape {
  position: absolute;
  top: 15px;
  left: 43px;
}

.news-details-area .single-news-post .news-content .highlight-text .content {
  text-align: center;
}

.news-details-area .single-news-post .news-content .highlight-text .content h6 {
  font-size: 18px;
}

@media (max-width: 1199px) {
  .news-details-area .single-news-post .news-content .highlight-text .content h6 {
    font-size: 16px;
  }
}

.news-details-area .single-news-post .news-content .highlight-text .content .info {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.news-details-area .single-news-post .post-thumb {
  margin-top: 20px;
}

.news-details-area .single-news-post .post-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.news-details-area .single-news-post .post-list {
  margin-top: 20px;
}

.news-details-area .single-news-post .post-list li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.news-details-area .single-news-post .post-list li img {
  margin-right: 12px;
}

.news-details-area .single-news-post .news-list .news-item {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.news-details-area .single-news-post .news-list .news-item .content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.news-details-area .single-news-post .comments-area {
  margin-top: 40px;
}

.news-details-area .single-news-post .comments-area .comments-heading {
  margin-bottom: 10px;
}

@media (max-width: 575px) {
  .news-details-area .single-news-post .comments-area .comments-heading {
    margin-bottom: 20px;
  }
}

.news-details-area .single-news-post .comments-area .blog-single-comment {
  border-bottom: 1.2px solid rgba(102, 102, 102, 0.16);
}

@media (max-width: 575px) {
  .news-details-area .single-news-post .comments-area .blog-single-comment {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.news-details-area .single-news-post .comments-area .blog-single-comment .content .head {
  margin-bottom: 10px;
}

.news-details-area .single-news-post .comments-area .blog-single-comment .content .reply {
  border-radius: 50px;
  padding: 5px 18px;
  background-color: var(--theme);
  color: var(--header);
  font-family: Manrope;
  font-size: 16px;
  font-weight: 600;
}

.news-details-area .single-news-post .comments-area .blog-single-comment.style-2 {
  padding: 0 40px 24px;
}

@media (max-width: 1199px) {
  .news-details-area .single-news-post .comments-area .blog-single-comment.style-2 {
    padding: 0;
  }
}

.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}

.preloader .animation-preloader {
  z-index: 1000;
}

.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}

@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}

.preloader .animation-preloader .txt-loading {
  font: bold 5em "Manrope", sans-serif, "Inter", sans-serif;
  text-align: center;
  user-select: none;
}

@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}

.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme);
  position: relative;
  background: var(--theme);
  color: transparent;
  background-clip: text;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--header);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Manrope", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}

.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  background: var(--theme);
  color: transparent;
  background-clip: text;
}

.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}

.preloader .loader .row {
  height: 100%;
}

.preloader .loader .loader-section {
  padding: 0px;
}

.preloader .loader .loader-section .bg {
  background-color: #0D1919;
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(255, 255, 255, 0.9);
}

.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  animation: slideInUp 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-wrap .search-field-holder {
    width: 70%;
  }
}

@media (max-width: 575px) {
  .search-wrap .search-field-holder {
    width: 80%;
  }
}

.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  text-transform: capitalize;
  background: transparent;
  font-size: 25px;
  color: var(--theme);
  border-bottom: 2px solid var(--theme);
  text-align: center;
  letter-spacing: 2px;
}

@media (max-width: 575px) {
  .search-wrap .main-search-input {
    height: 50px;
    padding: 0 0;
    line-height: 50px;
    font-size: 18px;
  }
}

.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: var(--theme);
}

input.main-search-input::placeholder {
  color: var(--theme);
  opacity: 1;
  font-size: 25px;
}

@media (max-width: 575px) {
  input.main-search-input::placeholder {
    font-size: 18px;
  }
}

.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: var(--theme);
  cursor: pointer;
}

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--theme);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: var(--theme);
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  -o-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

.back-to-top {
  border-radius: 50%;
  background: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--header);
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 999;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top:hover {
  background: var(--white);
  color: var(--header);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.price-wrapper .price-item {
  margin-top: 30px;
  padding: 40px 32px;
  background-color: var(--white);
  border-radius: 16px;
  border: 1.5px solid transparent;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
  .price-wrapper .price-item {
    padding: 40px 30px;
  }
}

.price-wrapper .price-item .content {
  border-bottom: 1px solid #dadada;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.price-wrapper .price-item .content h3 {
  font-size: 40px;
  color: var(--theme);
  margin-top: 5px;
  margin-bottom: 10px;
}

.price-wrapper .price-item .content h3 span {
  color: var(--text);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
}

.price-wrapper .price-item .price-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--header);
  margin-bottom: 10px;
}

.price-wrapper .price-item .price-list li i {
  color: var(--white);
  background-color: var(--black);
  width: 24px;
  height: 24px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-wrapper .price-item .theme-btn {
  margin-top: 25px;
  display: block;
  background-color: transparent;
  border: 1px solid var(--theme);
  text-align: center;
}

@media (max-width: 1199px) {
  .price-wrapper .price-item .theme-btn {
    padding: 14px 10px;
  }
}

@media (max-width: 991px) {
  .price-wrapper .price-item .theme-btn {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .price-wrapper .price-item .theme-btn {
    padding: 15px;
  }
}

@media (max-width: 575px) {
  .price-wrapper .price-item .theme-btn {
    padding: 15px;
  }
}

.price-wrapper .price-item .theme-btn:hover {
  color: var(--header);
}

.price-wrapper .price-item .theme-btn:hover::before {
  background-color: var(--theme);
}

.price-wrapper .price-item:hover {
  border-color: var(--theme);
  background: #F6FFFB;
  transform: translateY(-15px);
}

.price-wrapper .price-item.style-2 {
  position: relative;
}

.price-wrapper .price-item.style-2 .content .box {
  position: absolute;
  background-color: var(--header);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 100px;
  top: 12px;
  right: 12px;
  font-size: 14px;
  font-weight: 600;
}

.project-wrapper {
  margin-top: 30px;
}

.project-wrapper .project-items .image {
  height: 500px;
}

@media (max-width: 991px) {
  .project-wrapper .project-items .image {
    height: 300px;
  }
}

@media (max-width: 575px) {
  .project-wrapper .project-items .image {
    height: 1000%;
  }
}

.project-wrapper .project-items .image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  border: var(--border);
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.project-wrapper .project-items .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px 0;
}

@media (max-width: 1199px) {
  .project-wrapper .project-items .content {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.project-wrapper .project-items .content h4 {
  margin-top: 6px;
}

@media (max-width: 1199px) {
  .project-wrapper .project-items .content h4 {
    font-size: 20px;
  }
}

.project-wrapper .project-items .content h4:hover a {
  color: var(--theme);
}

@media (max-width: 991px) {
  .project-wrapper .project-items .content h4 {
    font-size: 20px;
  }
}

.project-wrapper .project-items .content .icon a {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--theme);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--header);
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.project-wrapper .project-items .content .icon a:hover {
  background-color: var(--theme);
  transform: rotate(0);
}

.project-wrapper .project-items:hover .image img {
  border-color: var(--theme);
}

.project-items-2 {
  margin-top: 30px;
  border: var(--border);
  border-radius: 16px;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

.project-items-2 .image {
  overflow: hidden;
}

.project-items-2 .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 991px) {
  .project-items-2 .image img {
    height: 384px;
    object-fit: cover;
  }
}

.project-items-2 .images {
  height: 448px;
  overflow: hidden;
  object-fit: cover;
}

@media (max-width: 1199px) {
  .project-items-2 .images {
    height: 390px;
  }
}

.project-items-2 .images img {
  transition: all 0.4s ease-in-out;
}

.project-items-2 .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px 25px;
}

@media (max-width: 1199px) {
  .project-items-2 .content {
    gap: 15px;
    align-items: end;
  }
}

.project-items-2 .content h4 {
  margin-top: 10px;
}

@media (max-width: 1199px) {
  .project-items-2 .content h4 {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .project-items-2 .content h4 {
    font-size: 18px;
  }
}

.project-items-2 .content h4:hover a {
  color: var(--theme);
}

.project-items-2 .content .icon a {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--theme);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--header);
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.project-items-2 .content .icon a:hover {
  background-color: var(--theme);
  transform: rotate(0);
}

.project-items-2:hover {
  border: var(--border-2);
}

.project-items-2:hover .image img,
.project-items-2:hover .images img {
  transform: scale(1.05);
}

.project-items-3 {
  margin-top: 18px;
}

.project-items-3 .project-thumb {
  position: relative;
}

.project-items-3 .project-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.project-items-3 .project-thumb .content {
  background-color: var(--white);
  padding: 16px 22px;
  border: var(--border-2);
  border-radius: 16px;
  margin: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
}

.project-items-3 .project-thumb .content .icon .link-btn {
  width: 48px;
  height: 48px;
  background-color: var(--theme);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-items-3 .project-thumb .content .icon .link-btn i {
  color: var(--header);
  transform: rotate(-45deg);
}

.project-details-wrapper .project-details-images {
  margin-bottom: 30px;
}

.project-details-wrapper .project-details-images img {
  width: 100%;
  height: 100%;
  border: var(--border);
  border-radius: 16px;
}

.project-details-wrapper .project-details-content h2 {
  font-size: 40px;
  margin-top: 10px;
  margin-bottom: 15px;
}

@media (max-width: 1199px) {
  .project-details-wrapper .project-details-content h2 {
    font-size: 35px;
  }
}

.project-details-wrapper .project-details-content .list-item {
  margin-top: 20px;
  margin-bottom: 20px;
}

.project-details-wrapper .project-details-content .list-item li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.project-details-wrapper .project-details-content .list-item li img {
  margin-right: 5px;
}

.project-details-wrapper .project-details-content .list-item li h6 {
  margin-right: 5px;
}

.project-details-wrapper .project-details-content .project-thumb {
  margin-top: 30px;
}

.project-details-wrapper .project-details-content .project-thumb img {
  width: 100%;
  height: 100%;
  border: var(--border);
  border-radius: 16px;
}

.project-details-wrapper .main-sidebar .single-sidebar-widget .project-info .item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .project-details-wrapper .main-sidebar .single-sidebar-widget .project-info .item {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.project-details-wrapper .main-sidebar .single-sidebar-widget .project-info .item h6 {
  position: relative;
  width: 190px;
}

@media (max-width: 575px) {
  .project-details-wrapper .main-sidebar .single-sidebar-widget .project-info .item h6 {
    width: 150px;
  }
}

.project-details-wrapper .main-sidebar .single-sidebar-widget .project-info .item h6::before {
  position: absolute;
  content: ":";
  right: 10px;
  top: -1px;
  color: var(--text);
}

.project-details-wrapper .main-sidebar .single-sidebar-widget .social {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

@media (max-width: 1199px) {
  .project-details-wrapper .main-sidebar .single-sidebar-widget .social {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.project-details-wrapper .main-sidebar .single-sidebar-widget .social .social-list {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 20px;
}

@media (max-width: 1199px) {
  .project-details-wrapper .main-sidebar .single-sidebar-widget .social .social-list {
    margin-left: 0;
  }
}

.project-details-wrapper .main-sidebar .single-sidebar-widget .social .social-list li a {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.project-details-wrapper .main-sidebar .single-sidebar-widget .social .social-list li a:hover {
  background: var(--theme);
}

.project-details-wrapper .main-sidebar .info-sidebar-widget {
  padding: 56px 32px;
  border-radius: 16px;
}

.project-details-wrapper .main-sidebar .info-sidebar-widget .info-widget {
  text-align: center;
}

.project-details-wrapper .main-sidebar .info-sidebar-widget .info-widget .logo {
  margin-bottom: 10px;
}

.project-details-wrapper .main-sidebar .info-sidebar-widget .info-widget .content h5 {
  color: var(--text);
  font-weight: 700;
}

.project-details-wrapper .main-sidebar .info-sidebar-widget .info-widget .theme-btn {
  margin-top: 30px;
}

.project-wrapper-3 .main-box {
  padding: 0;
  gap: 30px;
  display: flex;
  align-items: center;
}

@media (max-width: 1199px) {
  .project-wrapper-3 .main-box {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 30px;
  }
}

.project-wrapper-3 .main-box .box {
  background-image: url(../img/project/9.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  width: 337px !important;
  height: 420px;
  position: relative;
  overflow: hidden;
  list-style: none;
  transition: all 0.4s ease-in-out;
  margin-top: 30px;
  overflow: hidden;
  border-radius: 16px;
}

@media (max-width: 1199px) {
  .project-wrapper-3 .main-box .box {
    width: 570px !important;
  }
}

@media (max-width: 575px) {
  .project-wrapper-3 .main-box .box {
    height: 420px;
    object-fit: cover;
  }

  .project-wrapper-3 .main-box .box .project-content {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
  }
}

.project-wrapper-3 .main-box .box .project-content {
  position: absolute;
  bottom: -100px;
  left: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  background-color: var(--white);
  padding: 20px 25px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: var(--border-2);
  border-radius: 12px;
}

.project-wrapper-3 .main-box .box .project-content h4 a {
  color: var(--header);
}

.project-wrapper-3 .main-box .box .project-content h4 a:hover {
  color: var(--theme);
}

.project-wrapper-3 .main-box .box .project-content .icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  text-align: center;
  line-height: 48px;
  border-radius: 100px;
  background: var(--theme);
  color: var(--theme);
}

.project-wrapper-3 .main-box .box .project-content .icon i {
  color: var(--header);
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
}

.project-wrapper-3 .main-box .box .project-content .icon:hover i {
  transform: rotate(0);
}

.project-wrapper-3 .main-box .box.bg-1 {
  background-image: url(../img/project/10.jpg);
}

.project-wrapper-3 .main-box .box.bg-2 {
  background-image: url(../img/project/11.jpg);
}

.project-wrapper-3 .main-box .box.active {
  width: 583px !important;
}

.project-wrapper-3 .main-box .box.active .project-content {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}

.project-3 {
  position: relative;
}

.project-3 .scale-shape {
  position: absolute;
  top: 2%;
  right: 6%;
}

@media (max-width: 1199px) {
  .project-3 .scale-shape {
    display: none;
  }
}

.project-3 .regulation-shape {
  position: absolute;
  top: 35%;
  left: 5%;
}

@media (max-width: 1199px) {
  .project-3 .regulation-shape {
    display: none;
  }
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }

  .logo {
    width: auto !important;
    justify-content: flex-start !important;
  }
}

.section-title span {
  font-size: 18px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  color: var(--header);
  background-clip: text;
  line-height: 1;
  display: inline-block;
  margin-bottom: 10px;
}

.section-title span img {
  margin-right: 10px;
}

.section-title span.style-2 {
  color: var(--theme);
  padding: 8px 24px;
  border: var(--border-2);
  border-radius: 100px;
}

@media (max-width: 991px) {
  .section-title span.style-2 {
    padding: 5px 24px;
  }
}

.section-title span.style-3 {
  color: var(--theme);
}

.section-title h2 span {
  color: var(--theme) !important;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
  margin-bottom: 0;
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
}

@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.section-title-area p {
  font-size: 16px;
  font-weight: 600;
  line-height: 175%;
  color: var(--text);
  font-style: italic;
  border-left: 1px solid #6a47ed;
  padding-left: 20px;
}

.section-title-area p.white-text {
  color: var(--white);
  border-left: 1px solid var(--white);
  font-weight: 500;
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: var(--bg);
}

.section-bg-2 {
  background-color: var(--bg-2);
}

.body-color {
  background-color: var(--body);
}

.section-padding {
  padding: 120px 0;
}

@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

.service-1 {
  position: relative;
}

.service-1 .random-shape {
  position: absolute;
  top: 23%;
  left: 6%;
}

.service-1 .random-shape.style-2 {
  top: 8%;
}

@media (max-width: 1199px) {
  .service-1 .random-shape {
    display: none;
  }
}

.service-1 .section-title span {
  color: var(--white);
}

.service-1 .section-title h2 {
  color: var(--white);
}

@media (max-width: 575px) {
  .service-1 .section-title h2 {
    font-size: 28px;
  }
}

.service-wrapper {
  margin-top: 30px;
}

.service-wrapper .services-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border: var(--border);
  border-radius: 16px;
  margin-bottom: 20px;
  overflow: hidden;
}

@media (max-width: 991px) {
  .service-wrapper .services-item {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.service-wrapper .services-item .head {
  display: flex;
  align-items: center;
  gap: 48px;
  width: 300px;
}

@media (max-width: 1199px) {
  .service-wrapper .services-item .head {
    gap: 20px;
    width: 210px;
  }
}

@media (max-width: 991px) {
  .service-wrapper .services-item .head {
    width: 100%;
  }
}

.service-wrapper .services-item .head span {
  font-family: Manrope;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}

@media (max-width: 991px) {
  .service-wrapper .services-item .head span {
    font-size: 18px;
  }
}

.service-wrapper .services-item .head h4 a {
  color: var(--white);
}

.service-wrapper .services-item .head h4 a:hover {
  color: var(--theme);
}

@media (max-width: 1199px) {
  .service-wrapper .services-item .head h4 {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .service-wrapper .services-item .head h4 {
    font-size: 18px;
  }
}

.service-wrapper .services-item .text p {
  color: #bbbcbc;
}

.service-wrapper .services-item .link-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  left: 100px;
  position: relative;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 991px) {
  .service-wrapper .services-item .link-btn {
    left: 0;
  }
}

.service-wrapper .services-item .link-btn i {
  width: 32px;
  height: 32px;
  color: var(--theme);
  border: var(--border-2);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg);
  cursor: pointer;
}

.service-wrapper .services-item .link-btn a {
  color: var(--theme);
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 991px) {
  .service-wrapper .services-item .link-btn a {
    opacity: 1;
    visibility: visible;
    color: var(--white);
  }
}

.service-wrapper .services-item:hover {
  border-color: var(--theme);
}

.service-wrapper .services-item:hover .link-btn {
  left: 0;
}

.service-wrapper .services-item:hover .link-btn i {
  background-color: var(--theme);
  color: var(--header);
}

.service-wrapper .services-item:hover .link-btn a {
  opacity: 1;
  visibility: visible;
}

.service-card-items-2 {
  margin-top: 30px;
  padding: 30px;
  border: var(--border);
  border-radius: 16px;
  background: var(--bg);
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
  .service-card-items-2 {
    padding: 20px;
  }
}

.service-card-items-2 .icon {
  width: 70px;
  height: 70px;
  border: var(--border-2);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease-in-out;
}

.service-card-items-2 .content h4 {
  margin-bottom: 9px;
}

@media (max-width: 1199px) {
  .service-card-items-2 .content h4 {
    font-size: 19px;
  }
}

.service-card-items-2 .content h4 a:hover {
  color: var(--theme);
}

.service-card-items-2.style-2 {
  height: 95%;
  place-content: center;
}

@media (max-width: 991px) {
  .service-card-items-2.style-2 {
    height: 88%;
  }
}

@media (max-width: 575px) {
  .service-card-items-2.style-2 {
    height: 91%;
  }
}

.service-card-items-2:hover {
  border-color: var(--theme);
  background-color: #f6fffb;
}

.service-card-items-2:hover .icon {
  background-color: var(--theme);
}

.service-card-items-2:hover .icon img {
  filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

.service-3 {
  position: relative;
}

.service-3 .random-shape {
  position: absolute;
  left: 12%;
  bottom: 7%;
}

@media (max-width: 1199px) {
  .service-3 .random-shape {
    display: none;
  }
}

.service-3 .service-item {
  margin-top: 30px;
  text-align: center;
  padding: 48px 37px;
  border: var(--border);
  border-radius: 16px;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
  .service-3 .service-item {
    padding: 20px;
  }
}

.service-3 .service-item .icon {
  width: 70px;
  height: 70px;
  border: var(--border-2);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  transition: all 0.4s ease-in-out;
}

.service-3 .service-item .content h4 {
  margin-bottom: 10px;
}

.service-3 .service-item .content h4 a:hover {
  color: var(--theme);
}

.service-3 .service-item .theme-btn {
  background: transparent;
}

.service-3 .service-item .theme-btn i {
  color: var(--theme);
}

.service-3 .service-item .theme-btn::before {
  background: transparent;
}

.service-3 .service-item .theme-btn:hover {
  color: var(--theme);
}

.service-3 .service-item:hover {
  border-color: var(--theme);
}

.service-3 .service-item:hover .icon {
  background: var(--theme);
}

.service-3 .service-item:hover .icon img {
  filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%);
}

.service-3 span {
  text-align: center;
  display: block;
}

.service-3 span a {
  color: var(--theme);
  font-family: Manrope;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.main-sidebar .single-sidebar-widget {
  background: var(--bg);
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 32px;
}

.main-sidebar .single-sidebar-widget .wid-title h3 {
  border-bottom: var(--border-3);
  padding-bottom: 16px;
}

.main-sidebar .single-sidebar-widget .wid-title:not(.main-sidebar .single-sidebar-widget .wid-title:last-child) {
  margin-bottom: 24px;
}

.main-sidebar .single-sidebar-widget .service-list ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white);
  font-family: Manrope;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  transition: all 0.4s ease-in-out;
  border-radius: 8px;
  padding: 16px;
  border: 1.2px solid transparent;
}

.main-sidebar .single-sidebar-widget .service-list ul li a {
  color: var(--header);
}

.main-sidebar .single-sidebar-widget .service-list ul li:not(:last-child) {
  margin-bottom: 20px;
}

.main-sidebar .single-sidebar-widget .service-list ul li:hover {
  background-color: #f6fffb;
  border-color: var(--theme);
}

.main-sidebar .single-sidebar-widget .categories-list .list-item a {
  display: inline-block;
  padding: 4px 9px;
  background: var(--white);
  margin-right: 5px;
  text-transform: capitalize;
  margin-bottom: 12px;
  color: var(--text);
  border: 1.2px solid transparent;
  border-radius: 100px;
  transition: all 0.4s ease-in-out;
}

.main-sidebar .single-sidebar-widget .categories-list .list-item a:last-child {
  margin-right: 0;
}

.main-sidebar .single-sidebar-widget .categories-list .list-item a:hover {
  color: var(--header);
  border-color: var(--theme);
  background: #f6fffb;
}

.main-sidebar .info-sidebar-widget {
  padding: 56px 32px;
  border-radius: 16px;
}

.main-sidebar .info-sidebar-widget .info-widget {
  text-align: center;
}

.main-sidebar .info-sidebar-widget .info-widget .logo {
  margin-bottom: 10px;
}

.main-sidebar .info-sidebar-widget .info-widget .content h3 {
  font-size: 28px;
}

.main-sidebar .info-sidebar-widget .info-widget .content h5 {
  color: var(--text);
  font-weight: 700;
}

.main-sidebar .info-sidebar-widget .info-widget .theme-btn {
  margin-top: 30px;
}

.service-details-post .single-service-post .service-thumb {
  margin-bottom: 30px;
}

.service-details-post .single-service-post .service-thumb img {
  width: 100%;
  height: 100%;
  border: var(--border);
  border-radius: 18px;
}

.service-details-post .single-service-post .post-content .post-list {
  margin-top: 30px;
}

.service-details-post .single-service-post .post-content .post-list .post-item {
  margin-top: 20px;
  display: flex;
  gap: 12px;
}

.service-details-post .single-service-post .post-content .post-thumb img {
  width: 100%;
  height: 100%;
  border: var(--border);
  border-radius: 18px;
}

.service-details-post .single-service-post .post-content .highlight-text {
  border: var(--border-2);
  border-radius: 18px;
  background: #f6fffb;
  padding: 24px 40px;
  margin: 30px 0;
  position: relative;
  z-index: 9;
}

.service-details-post .single-service-post .post-content .highlight-text .qoute-shape {
  position: absolute;
  top: 15px;
  left: 43px;
}

.service-details-post .single-service-post .post-content .highlight-text .content {
  text-align: center;
}

.service-details-post .single-service-post .post-content .highlight-text .content h6 {
  font-size: 18px;
}

.service-details-post .single-service-post .post-content .highlight-text .content .info {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.testimonials-1 {
  position: relative;
}

.testimonials-1 .random-shape {
  position: absolute;
  top: 28%;
  left: 7%;
}

@media (max-width: 1199px) {
  .testimonials-1 .random-shape {
    display: none;
  }
}

.testimonials-1 .section-title span,
.testimonials-1 .section-title h2 {
  color: var(--white);
}

.testimonials-1 .reviews {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  border: var(--border);
  backdrop-filter: blur(24px);
  padding: 30px;
}

@media (max-width: 575px) {
  .testimonials-1 .reviews {
    margin-top: 30px;
  }
}

.testimonials-1 .reviews h2 {
  color: var(--white);
}

.testimonials-1 .reviews .item span {
  color: #888;
}

.testimonials-1 .reviews .item .star i {
  color: #fcd554;
}

.testimonials-1 .testimonials-item {
  padding: 40px;
  border: var(--border);
  border-radius: 16px;
  transition: all 0.4s ease-in-out;
}

.testimonials-1 .testimonials-item .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.testimonials-1 .testimonials-item .head .info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonials-1 .testimonials-item .head .info .thumb img {
  border-radius: 50%;
}

.testimonials-1 .testimonials-item p {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 12px;
}

.testimonials-1 .testimonials-item .star i {
  color: #ecb014;
}

.testimonials-1 .testimonials-item:hover {
  border-color: var(--theme);
}

.testimonials-1 .testimonials-item.style-2 {
  margin-top: 50px;
}

@media (max-width: 1199px) {
  .testimonials-1 .testimonials-item.style-2 {
    margin-top: 0;
  }
}

.testimonials-2 {
  padding: 100px 0;
}

@media (max-width: 1199px) {
  .testimonials-2 {
    padding: 80px 0;
  }
}

.testimonials-2 .mxg {
  margin: 0 -500px;
}

@media (max-width: 1199px) {
  .testimonials-2 .mxg {
    margin: 0;
  }
}

.testimonials-2 .testimonials-item {
  margin-top: 30px;
  padding: 40px;
  border: var(--border);
  border-radius: 16px;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1199px) {
  .testimonials-2 .testimonials-item {
    padding: 20px;
  }
}

.testimonials-2 .testimonials-item .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.testimonials-2 .testimonials-item .head .info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonials-2 .testimonials-item .head .info .thumb img {
  border-radius: 50%;
}

@media (max-width: 1199px) {
  .testimonials-2 .testimonials-item .head .info .text h4 {
    font-size: 20px;
  }
}

@media (max-width: 1199px) {
  .testimonials-2 .testimonials-item .head .info .text span {
    font-size: 14px;
  }
}

.testimonials-2 .testimonials-item p {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 12px;
}

@media (max-width: 1199px) {
  .testimonials-2 .testimonials-item p {
    font-size: 16px;
  }
}

.testimonials-2 .testimonials-item .star i {
  color: #ecb014;
}

.testimonials-2 .testimonials-item.style-2 {
  margin-top: 50px;
}

@media (max-width: 1199px) {
  .testimonials-2 .testimonials-item.style-2 {
    margin-top: 30px;
  }
}

.testimonials-2 .swiper-slide-active .testimonials-item {
  border-color: var(--theme);
}

.testimonials-3 {
  padding-bottom: 220px;
  position: relative;
}

.testimonials-3 .scale-shape {
  position: absolute;
  top: 7%;
  left: 5%;
}

@media (max-width: 1199px) {
  .testimonials-3 .scale-shape {
    display: none;
  }
}

.testimonials-3 .orders-shape {
  position: absolute;
  right: 6%;
  bottom: 11%;
}

@media (max-width: 1199px) {
  .testimonials-3 .orders-shape {
    display: none;
  }
}

.testimonials-3 .section-title h2 {
  color: var(--white);
}

.testimonials-3 .testimonials-card-item {
  margin-top: 30px;
  padding: 16px 16px 16px 40px;
  border: var(--border-2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 64px;
}

@media (max-width: 575px) {
  .testimonials-3 .testimonials-card-item {
    padding: 20px;
    flex-wrap: wrap;
    gap: 30px;
  }
}

.testimonials-3 .testimonials-card-item .content .star {
  margin-bottom: 16px;
}

.testimonials-3 .testimonials-card-item .content .star i {
  color: #ecb014;
}

.testimonials-3 .testimonials-card-item .content p {
  font-family: Manrope;
  font-size: 20px;
  font-weight: 700;
  color: #bdbdbe;
  border-bottom: var(--border-3);
  margin-bottom: 22px;
  padding-bottom: 24px;
}

@media (max-width: 1199px) {
  .testimonials-3 .testimonials-card-item .content p {
    font-size: 16px;
  }
}

.testimonials-3 .testimonials-card-item .content .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonials-3 .testimonials-card-item .content .bottom .info h4 {
  color: var(--white);
  margin-bottom: 5px;
}

@media (max-width: 991px) {
  .testimonials-3 .testimonials-card-item .content .bottom .info h4 {
    font-size: 20px;
  }
}

.testimonials-3 .testimonials-card-item .thumb-box img {
  border-radius: 16px;
}

.testimonials-3 .thumb {
  margin-top: 30px;
  margin-left: 20px;
}

@media (max-width: 991px) {
  .testimonials-3 .thumb {
    margin-left: 0;
  }
}

.testimonials-3 .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.testimonials-3 .thumb .info {
  margin-top: 20px;
}

.testimonials-3 .thumb .info h4 {
  color: var(--white);
  margin-bottom: 2px;
}

.testimonials-3 .thumb .info span {
  color: #bbbbbc;
}

.testimonials-wrapper .testimonial-box-items {
  padding: 40px;
  border: var(--border);
  background-color: var(--bg-2);
  border-radius: 15px;
  margin: 0 40px;
}

@media (max-width: 575px) {
  .testimonials-wrapper .testimonial-box-items {
    padding: 30px;
  }
}

.testimonials-wrapper .testimonial-box-items .client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.testimonials-wrapper .testimonial-box-items .client-info .client-content h5 {
  color: var(--white);
  letter-spacing: 0.5px;
}

.testimonials-wrapper .testimonial-box-items .client-info .client-content p {
  color: var(--white);
  opacity: 0.5;
  text-transform: capitalize;
}

.testimonials-wrapper .testimonial-box-items .testi-content {
  display: flex;
  gap: 15px;
}

@media (max-width: 1199px) {
  .testimonials-wrapper .testimonial-box-items .testi-content {
    flex-wrap: wrap;
  }
}

.testimonials-wrapper .testimonial-box-items .testi-content p {
  color: var(--white);
  font-size: 18px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media (max-width: 1199px) {
  .testimonials-wrapper .testimonial-box-items .testi-content p {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .testimonials-wrapper .testimonial-box-items .testi-content p {
    font-size: 12px;
  }
}

.testimonials-wrapper .swiper-slide-active .testimonial-box-items {
  border-color: var(--theme);
}

.slide-btn {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 575px) {
  .slide-btn {
    display: none;
  }
}

.slide-btn .array-prev,
.slide-btn .array-next {
  width: 48px;
  height: 48px;
  border-radius: 100px;
}

.slide-btn .array-prev.style-2 i,
.slide-btn .array-next.style-2 i {
  color: var(--white);
}

.slide-btn .array-prev {
  border: var(--border-2);
  transition: all 0.4s ease-in-out;
}

.slide-btn .array-prev i {
  transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.slide-btn .array-prev:hover {
  background: var(--theme);
}

.slide-btn .array-prev:hover i {
  transform: rotate(0);
}

.slide-btn .array-next {
  border: var(--border-2);
  background: var(--theme);
  transition: all 0.4s ease-in-out;
}

.slide-btn .array-next i {
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out;
}

.slide-btn .array-next:hover {
  background: transparent;
}

.slide-btn .array-next:hover i {
  transform: rotate(0);
}

/*# sourceMappingURL=main.css.map */

.hero-content h1 .type-text {
  display: inline;
  font-size: inherit;
  white-space: nowrap;
}

.type-text {
  font-size: 52px !important;
}

/* ===== HERO FIX ===== */
.hero-content h1 {
  font-size: clamp(28px, 4vw, 56px) !important;
  line-height: 1.15 !important;
}

.hero-content h1 strong.type-text {
  font-size: clamp(20px, 3vw, 42px) !important;
}

/* ===== SERVICE SECTION FIX ===== */
.service-section .section-title h2 {
  color: #111 !important;
}

.services-item .head h4 a {
  color: #111 !important;
}

.services-item .head h4 a:hover {
  color: #22c55e !important;
}

/* ===== EXPERIENCE ITEMS FIX ===== */


/* ===== AWARDS LEFT SIDE FIX ===== */
.awards-section .awards-wrapper .row>.col-md-6:first-child {
  display: flex !important;
  align-items: flex-start !important;
}

/* ===== TESTIMONIALS HEADING FIX ===== */
.testimonials-section .section-title h2 {
  color: #fff !important;
}

.testimonials-section .section-title span {
  color: #22c55e !important;
}

.testimonials-section .section-title p {
  color: #aaa !important;
}

/* ===== SECTION TITLE VISIBILITY FIX ===== */
.section-bg-2 .section-title h2 {
  color: #fff !important;
}

.section-bg-2 .section-title span {
  color: #888 !important;
}


/* Hide main menu in desktop */
@media (min-width: 992px) {
  .main-menu {
    display: none !important;
  }
}

/* Remove extra spacing */
.offcanvas__content {
  padding: 0 !important;
}

/* Top alignment */
.menu-wrapper {
  padding: 15px 20px;
}

/* MENU label */
.menu-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Grid layout */
.menu-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

/* Box style */
.menu-item {
  display: block;
  padding: 12px 14px;
  background: #f5f5f5;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Hover */
.menu-item:hover {
  background: #22c55e;
  color: #fff;
  transform: translateX(3px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
}

/* ===== SERVICE SECTION FIX ===== */

.service-section {
  background: #fff !important;
}

/* Heading small label */
.service-section .section-title span {
  color: #22c55e !important;
  /* keep green accent */
  background: transparent !important;
}

/* Main heading */
.service-section .section-title h2 {
  color: #111 !important;
}

/* Service number */
.service-section .services-item .head span {
  color: #999 !important;
}

/* Service title */
.service-section .services-item h4 a {
  color: #111 !important;
}

/* Description */
.service-section .services-item p {
  color: #555 !important;
}

/* Arrow + link */
.service-section .link-btn a,
.service-section .link-btn i {
  color: #111 !important;
}

/* Hover effect (optional clean look) */
.service-section .services-item:hover h4 a {
  color: #22c55e !important;
}

.services-item .head {
  display: flex;
  align-items: center;
  gap: 15px;
}

.services-item .text {
  margin-top: 10px;
  padding-left: 35px;
}


.service-section .section-title span {
  color: #111 !important;
}


.service-section .section-title span img {
  filter: none !important;
}

/* ===== TESTIMONIAL VISIBILITY FIX ===== */

.testimonials-section {
  background: #ffffff !important;
}

/* Title */
.testimonials-section .section-title h2 {
  color: #111 !important;
}

/* Small heading */
.testimonials-section .section-title span {
  color: #22c55e !important;
}

.testimonials-section .section-title-1 span {
  color: #111 !important;
}

/* Paragraph */
.testimonials-section .section-title p {
  color: #444 !important;
}

/* Rating box */
.testimonials-section .reviews {
  background: #f8fafc;
  padding: 15px 20px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #eee;
}

/* Rating number */
.testimonials-section .reviews h2 {
  color: #111 !important;
}

/* Rating text */
.testimonials-section .reviews span {
  color: #333 !important;
}

/* Stars */
.testimonials-section .star i {
  color: #facc15 !important;
}

/* Testimonial cards */
.testimonial-box-items {
  background: #111 !important;
  border-radius: 18px;
  padding: 25px;
}

/* Name */
.testimonial-box-items h5 {
  color: #fff !important;
}

/* Role */
.testimonial-box-items .client-content p {
  color: #bbbcbd !important;
}

/* Testimonial text */
.testimonial-box-items .testi-content p {
  color: #e5e7eb !important;
}

/* Quote icon visibility */
.testimonial-box-items .icon img {
  filter: brightness(0) invert(1);
}

.hero-section {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
}

/* TEXT */
.hero-content {
  text-align: left;
}

.hero-tagline {
  display: block;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #111;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #555;
}

/* BUTTONS */
.hero-btn-wrapper {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  align-items: center;
}

/* STATS */
.hero-stats-bar {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stat .num {
  font-size: 26px;
  font-weight: 800;
  color: #22c55e;
}

.stat .label {
  font-size: 11px;
  text-transform: uppercase;
  color: #888;
}

.divider {
  width: 1px;
  height: 30px;
  background: #ccc;
}

/* IMAGE */
.hero-main-img {
  width: 100%;
  max-width: 100%;
}

/* 🔥 RESPONSIVE */
@media (max-width: 991px) {

  .hero-content {
    text-align: center;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-tagline {
    font-size: 18px;
  }

  .hero-btn-wrapper {
    justify-content: center;
  }

  .hero-stats-bar {
    justify-content: center;
  }
}

.hero-content p {
  text-align: justify;
}

/* 😂 CTA tablet responsiveness */
@media (max-width: 991px) {
  .cta-dark-section {
    text-align: center;
  }

  .cta-dark-section .section-title span,
  .cta-dark-section .section-title h2,
  .cta-dark-section .cta-desc {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }
}

/* 😂 Responsive alignment fix */
@media (max-width: 991px) {
  .contact-form-box {
    margin-left: auto;
    margin-right: auto;
    /* Center on tablets */
    max-width: 550px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .contact-form-box {
    max-width: 100%;
    padding: 16px 12px !important;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 768px) {

  .hero-content {
    text-align: center !important;
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero-content span {
    font-size: 16px !important;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 1.7;
    text-align: justify;
  }

  .hero-images img {
    width: 100%;
    height: auto;
  }

  .hero-stats-bar {
    gap: 18px !important;
  }

}

.stat-divider {
  width: 1px;
  height: 35px;
  background: linear-gradient(to bottom, transparent, #22c55e, transparent);
  opacity: 0.6;
}

@media (max-width: 576px) {
  .stat-divider {
    display: none;
  }
}

/* ===============================
   TEXT JUSTIFICATION (ONLY CHANGE)
================================= */
.about-content p {
  text-align: justify;
  line-height: 1.8;
}

@media (max-width: 576px) {

  .client-reviews {
    display: flex !important;
    justify-content: center !important;
    align-items: center;
    gap: 30px;
    text-align: center;
    flex-wrap: wrap;
    margin-top: 20px;
  }

  .client-reviews .cr-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .client-reviews h2 {
    text-align: center;
    font-size: 22px;
  }

  .client-reviews h6 {
    text-align: center;
    font-size: 12px;
  }

}

/* ===============================
   SMALL MOBILE CLEANUP
================================= */
@media (max-width: 576px) {

  .about-content {
    padding: 0 12px;
  }

  .about-content p {
    font-size: 13.5px;
    line-height: 1.6;
  }

}

/* GRAPH CARD */
.graph-card {
  width: 100%;
  max-width: 480px;
  background: #0f172a;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
}

.graph-title {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
}

/* GRAPH */
.graph-container {
  position: relative;
  height: 220px;
}

.graph-scale {
  position: absolute;
  left: -55px;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 10px;
  color: #6b7280;
  text-align: right;
}

.x-axis {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #2a2f3a;
}

.y-axis {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2px;
  height: 100%;
  background: #2a2f3a;
}

.graph-svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.graph-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: #6b7280;
  font-size: 12px;
}

/* 🔥 MOBILE RESPONSIVENESS */
@media (max-width:768px) {

  .section-title p {
    text-align: justify !important;
    padding: 0 10px;
  }

  .col-lg-6 {
    text-align: left;
  }

  .graph-card {
    margin-top: 30px;
    padding: 20px;
  }

  .graph-scale {
    left: -40px;
    font-size: 9px;
  }

  .graph-labels {
    font-size: 10px;
  }
}

/* ✅ TEXT JUSTIFY (NO DESIGN CHANGE) */
.companies-section p {
  text-align: justify;
}

/* ✅ MOBILE RESPONSIVENESS ONLY */
@media (max-width: 768px) {

  .companies-section .row {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .companies-section .col-lg-4 {
    width: 100%;
    max-width: 100%;
  }

  .companies-section .company-card,
  .companies-section .single-company,
  .companies-section .box {
    width: 100%;
  }

  /* spacing fix */
  .companies-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* text readability */
  .companies-section p {
    font-size: 14px;
    line-height: 1.7;
  }
}

@media (max-width: 768px) {

  #companies-list .row {
    display: flex;
    flex-wrap: wrap;
  }

  #companies-list .col-lg-4 {
    width: 100%;
    max-width: 100%;
  }

  /* spacing fix */
  #companies-list {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* improve readability */
  #companies-list p {
    font-size: 14px;
    line-height: 1.7;
  }
}

@media (max-width: 768px) {

  #services .services-item>div {
    flex-direction: column;
    gap: 10px;
  }

  #services .services-item span {
    font-size: 16px;
  }

  #services {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* MOBILE RESPONSIVENESS ONLY */
@media (max-width: 768px) {

  /* Cards spacing */
  #companies-list .row {
    margin-left: 0;
    margin-right: 0;
  }

  #companies-list .col-lg-3,
  #companies-list .col-md-6 {
    padding-left: 8px;
    padding-right: 8px;
  }

  /* Card padding adjust */
  #companies-list .col-lg-3>div {
    padding: 28px 16px !important;
  }

  /* Numbers size slightly smaller */
  #companies-list .count {
    font-size: 36px !important;
  }

  /* Heading text */
  #companies-list h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  /* Industries section padding */
  #companies-list .wow.fadeInUp[style*="margin-top:40px"] {
    padding: 20px 16px !important;
  }

  /* Industry tags wrap nicely */
  #companies-list span {
    font-size: 11px !important;
    padding: 6px 14px !important;
  }

  /* Section side spacing */
  #companies-list {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {

  /* Stack properly */
  #awards .row {
    margin-left: 0;
    margin-right: 0;
  }

  #awards .col-xl-6,
  #awards .col-lg-6,
  #awards .col-md-6 {
    width: 100%;
    max-width: 100%;
  }

  /* Section padding */
  #awards {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Title + button spacing */
  #awards .section-title-area {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  /* Button full width on mobile */
  #awards .theme-btn {
    width: 100%;
    text-align: center;
  }

  /* Image spacing */
  #awards .project-items {
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {

  /* STACK EXPERIENCE ITEMS */
  #skills .experience-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 15px 0;
  }

  /* NUMBER spacing */
  #skills .experience-items span {
    font-size: 16px;
  }

  /* TITLE */
  #skills .experience-items h4 {
    font-size: 18px;
    line-height: 1.4;
  }

  /* SUBTEXT */
  #skills .experience-items h6 {
    font-size: 13px;
    line-height: 1.6;
  }

  /* SECTION SIDE SPACING */
  #skills {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* CLIENT GRID FIX */
  #skills .client-wrapper .client-items {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }

  #skills .client-item {
    width: 45%;
    text-align: center;
  }
}

@media (max-width: 768px) {

  /* Stack layout */
  #awards .row,
  .awards-section .row {
    margin-left: 0;
    margin-right: 0;
  }

  .awards-section .col-md-6 {
    width: 100%;
    max-width: 100%;
  }

  /* Section spacing */
  .awards-section {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Fix title alignment */
  .awards-section .section-title {
    text-align: left;
  }

  /* Stack award item content */
  .awards-item .content {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* Icon spacing */
  .awards-item .icon {
    margin-top: 10px;
  }
}

@media (max-width: 768px) {

  /* FULL WIDTH CARDS */
  #companies-list .col-lg-4,
  #companies-list .col-md-6 {
    width: 100%;
    max-width: 100%;
  }

  /* SECTION PADDING */
  #companies-list {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* CARD SPACING */
  #companies-list .row {
    margin-left: 0;
    margin-right: 0;
  }

  /* TITLE FIX */
  #companies-list h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  /* SMALL TEXT READABILITY */
  #companies-list p {
    font-size: 13px;
    line-height: 1.7;
  }

  /* ICON + TITLE STACK */
  #companies-list div[style*="display:flex;align-items:center;gap:12px"] {
    align-items: flex-start;
  }
}

@media (max-width: 768px) {

  /* TESTIMONIALS STACK */
  #testimonials .row {
    flex-direction: column;
  }

  #testimonials .col-lg-6 {
    width: 100%;
    max-width: 100%;
  }

  /* TEXT READABILITY */
  #testimonials p {
    font-size: 14px;
    line-height: 1.7;
  }

  /* REVIEW BOX CENTER FIX */
  #testimonials .reviews {
    justify-content: flex-start;
  }

  /* SLIDER FIX */
  #testimonials .testimonial-box-items {
    padding: 20px;
  }

  /* CONNECT SECTION */
  #journey .col-lg-3,
  #journey .col-md-6 {
    width: 100%;
    max-width: 100%;
  }

  #journey {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* CTA SECTION */
  .section-padding .row.align-items-center {
    flex-direction: column;
    text-align: left;
  }

  .section-padding .col-lg-8,
  .section-padding .col-lg-4 {
    width: 100%;
    max-width: 100%;
  }

  /* CTA BUTTON FULL WIDTH */
  .section-padding .theme-btn {
    width: 100%;
    justify-content: center;
  }
}

/* 🔥 REMOVE LINES COMPLETELY */
.footer-widget-wrapper .row,
.footer-widget-wrapper .row>div {
  border: none !important;
}

.footer-social {
  border-top: none !important;
}

/* 🔥 BETTER SPACING */
.single-footer-widget {
  margin-bottom: 25px;
}

.footer-widget-wrapper {
  padding-bottom: 20px;
}

/* 🔥 TYPOGRAPHY IMPROVEMENT */
.widget-head h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.single-footer-widget p,
.single-footer-widget a {
  font-size: 14px;
  line-height: 1.7;
  color: #cfcfcf;
}

/* 🔥 SOCIAL ICON STYLE */
.footer-social h4 {
  margin-bottom: 10px;
}

.socials-icon {
  display: flex;
  gap: 12px;
  padding-left: 0;
}

.socials-icon li a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}

.socials-icon li a:hover {
  background: #22c55e;
  color: #fff;
  transform: translateY(-3px);
}

/* 🔥 FOOTER BOTTOM CLEAN ALIGN */
.footer-bottom-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 15px;
  margin-top: 10px;
  gap: 10px;
}

/* 🔥 LINK STYLE */
.footer-list li {
  cursor: pointer;
  transition: 0.3s;
}

.footer-list li:hover {
  color: #22c55e;
}

/* 🔥 MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .footer-widget-wrapper {
    text-align: center;
  }

  .footer-social {
    text-align: center;
  }

  .socials-icon {
    justify-content: center;
  }

  .footer-bottom-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .footer-logo {
    margin: 10px 0;
  }
}

.marquee-container {
  overflow: hidden;
  width: 100%;
}

.marquee-wrapper {
  display: flex;
  width: max-content;
}

.marquee-content {
  display: flex;
  flex-wrap: nowrap;
}

| html,
body {
  overflow-x: hidden;
}

/* 🔥 Reduce form container height */
.contact-form-box {
  padding: 18px 18px 12px !important;
  /* reduced bottom space */
  max-width: 500px;
  margin-left: auto;
}

/* Reduce heading spacing */
.contact-form-box h3 {
  margin-bottom: 12px !important;
  font-size: 20px;
}

/* Reduce input height */
.contact-box input,
.contact-box textarea {
  padding: 9px 14px !important;
  font-size: 14px;
}

/* Reduce gap between fields */
.contact-box .row {
  row-gap: 8px !important;
}

/* 🔥 Reduce textarea height MORE */
.contact-box textarea {
  height: 80px !important;
  resize: none;
  margin-bottom: 5px !important;
  /* removes extra gap before button */
}

/* 🔥 Move button UP */
.contact-box .col-12:last-child {
  margin-top: -5px;
}

/* 🔥 Button design + alignment */
.contact-box button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 10px 16px !important;
  font-size: 14px;
  font-weight: 500;

  border-radius: 30px;
  width: 100%;

  transition: all 0.3s ease;
}

/* Hover effect */
.contact-box button:hover {
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  .contact-form-box {
    max-width: 100%;
    padding: 16px 12px !important;
  }
}

.footer-map iframe {
  width: 100%;
  height: 250px;
  border-radius: 12px;
}

/* Mobile fix */
@media (max-width: 768px) {
  .footer-map iframe {
    height: 200px;
    margin-top: 20px;
  }
}

/* CARD WRAPPER */
.contact-map-card {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* MAP */
.contact-map {
  width: 100%;
  height: 220px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* INFO BELOW MAP */
.map-info {
  margin-top: 12px;
  padding: 10px 4px;
}

.map-info h5 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 4px;
}

.map-info p {
  color: #aaa;
  font-size: 13px;
  margin-bottom: 6px;
}

.map-info a {
  color: #22c55e;
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
}

.map-info a:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 991px) {
  .contact-map-card {
    max-width: 100%;
    margin-top: 25px;
  }
}

.contact-map-card {
  margin: 0 auto;
}

/* TEAM STORY GRID */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* BIG IMAGE */
.team-grid .big {
  grid-column: span 2;
  height: 240px;
}

/* NORMAL IMAGE */
.team-img {
  height: 150px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.4s;
}

/* HOVER EFFECT */
.team-img:hover img {
  transform: scale(1.08);
}

/* MOBILE */
@media (max-width: 991px) {
  .team-grid {
    margin-top: 30px;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

/* BIG IMAGE */
.team-grid .big {
  grid-column: span 2;
  height: 240px;
}

/* WIDE IMAGE */
.team-grid .wide {
  grid-column: span 2;
  height: 160px;
}

/* NORMAL IMAGE */
.team-img {
  height: 140px;
  border-radius: 16px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

/* HOVER EFFECT */
.team-img:hover img {
  transform: scale(1.08);
}

html {
  scroll-behavior: smooth;
}

/* 📱 PHONE NUMBER MOBILE FIX */
@media (max-width: 768px) {

  .about-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .about-button .phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }

  .about-button .phone .text span {
    display: block;
    font-size: 13px;
    color: #888;
  }

  .about-button .phone .text h6 {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    color: #111;
  }

  .about-button .phone .icon img {
    width: 28px;
    height: 28px;
  }
}

/* 📱 GLOBAL SECTION TEXT JUSTIFY FIX */
@media (max-width: 768px) {

  #global p {
    text-align: justify !important;
    line-height: 1.8;
    padding: 0 10px;
  }

  #global h4 {
    text-align: left;
  }

}


/* 📱 GLOBAL SECTION SPACING FIX */
@media (max-width: 768px) {

  #global h2 {
    margin-bottom: 20px !important;
  }

  #global h4 {
    margin-top: 20px !important;
  }

}

/* 📱 TESTIMONIAL SECTION SPACING - CLEAN FIX */
@media (max-width: 768px) {

  /* 1. Space after title */
  #testimonials .section-title h2 {
    margin-bottom: 20px !important;
  }

  /* 2. Space after subtitle paragraph */
  #testimonials .section-title p {
    margin-bottom: 20px !important;
    line-height: 1.7;
  }

  /* 3. Space before cards */
  #testimonials .testimonial-wrapper {
    margin-top: 20px;
  }

  /* 4. Each testimonial card spacing */
  #testimonials .testimonial-item {
    margin-bottom: 18px;
    padding: 18px !important;
  }

  /* 5. Improve text readability */
  #testimonials .testimonial-item p {
    line-height: 1.7;
  }

}

/* 📱 SPACE AFTER "FOLLOW MY JOURNEY" */
@media (max-width: 768px) {

  #journey .section-title h2 {
    margin-bottom: 20px !important;
  }

}

.hero-content {
  text-align: left;
  /* keeps heading normal */
}

.hero-content p {
  text-align: justify;
  line-height: 1.8;
}

#global p {
  text-align: justify;
  line-height: 1.8;
}

.team-1,
.team {
  color: #bbbcbd !important;
}

.test {
  color: #111 !important;
}

@media (min-width: 992px) {

  .header-main {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header-main .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 60px;
  }

  .header-right {
    margin-left: auto;
  }

}

/* Card */
/* ===== GROWTH GRAPH - ALL DEVICES ===== */
.growth-card {
  width: 100%;
  max-width: 100%;
  background: #0f172a;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transform: none;
  margin-bottom: 0;
}

.growth-title {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 600;
}

.growth-graph {
  position: relative;
  width: 100%;
  height: auto;
}

.growth-scale {
  display: none;
}

.growth-axis-x,
.growth-axis-y {
  display: none;
}

.growth-svg {
  display: block;
  width: 100%;
  height: auto;
  position: static;
  aspect-ratio: 560 / 280;
}

.growth-line {
  fill: none;
  stroke: #22c55e;
  stroke-width: 3;
}

.growth-dot {
  fill: #22c55e;
}

.growth-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  flex-wrap: nowrap;
}

.growth-labels span {
  color: #fff;
  font-size: 11px;
  text-align: center;
  flex: 1;
  white-space: nowrap;
}

.growth-labels span:first-child {
  flex: 0 0 62px;
  max-width: 62px;
  min-width: 62px;
}

@media (max-width: 575px) {
  .growth-card {
    padding: 16px;
  }

  .growth-labels span {
    font-size: 9px;
  }

  .growth-labels span:first-child {
    flex: 0 0 44px;
    max-width: 44px;
    min-width: 44px;
  }
}

/* ============================================================
   CUSTOM STYLES EXTRACTED FROM index.php INLINE STYLES
   Add this to your main.css
   ============================================================ */


/* ──────────────────────────────────────────────
   GLOBAL: Section Divider
────────────────────────────────────────────── */
.section-divider {
  height: 6px;
  background: linear-gradient(90deg, transparent, #22c55e, transparent);
  opacity: 0.4;
}


/* ──────────────────────────────────────────────
   HERO SECTION
────────────────────────────────────────────── */
.hero-bg {
  padding-bottom: 100px;
}

.hero-tagline {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 18px;
  line-height: 1.4;
}

.hero-para-gap {
  margin-top: 10px;
}

.hero-btn-center {
  justify-content: center;
}

.hero-stats-bar {
  display: flex;
  gap: 28px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 26px;
  font-weight: 800;
  color: #22c55e;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  color: #888;
  margin-top: 3px;
  letter-spacing: 1px;
  text-transform: uppercase;
}


/* ──────────────────────────────────────────────
   MARQUEE SECTION
────────────────────────────────────────────── */
.marquee-heading {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
}


/* ──────────────────────────────────────────────
   ABOUT SECTION
────────────────────────────────────────────── */
.about-pb {
  padding-bottom: 80px;
}

.about-para-gap {
  margin-top: 12px;
}


/* ──────────────────────────────────────────────
   GLOBAL PRESENCE SECTION
────────────────────────────────────────────── */
.global-section {
  background: linear-gradient(135deg, #0b0f19, #111827);
}

.global-title-wrap {
  margin-bottom: 60px;
}

.global-span {
  color: #fff !important;
}

.global-heading {
  color: #22c55e;
}

.global-desc {
  max-width: 700px;
  margin: 20px auto 0;
  color: #9ca3af;
  text-align: justify;
  line-height: 1.8;
}

.global-left-title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.global-left-para {
  color: #9ca3af;
  line-height: 1.8;
  text-align: justify;
}

.global-left-para-gap {
  margin-top: 10px;
}

.global-locations {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.global-tag {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.global-tag--green,
.global-tag--blue,
.global-tag--orange {
  background: transparent;
  border: 1px solid #22c55e;
  color: #22c55e !important;
}

.global-tag--green:hover,
.global-tag--blue:hover,
.global-tag--orange:hover {
  background: #22c55e;
  color: #fff !important;
}







.global-stats {
  display: flex;
  gap: 40px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.global-stat-num {
  color: #22c55e;
  margin: 0;
  font-size: 28px;
}

.global-stat-label {
  color: #fff !important;
  font-size: 13px;
}


/* ──────────────────────────────────────────────
   PHILOSOPHY / JOURNEY SECTION
────────────────────────────────────────────── */
.philosophy-section {
  background: #fff;
}

.philosophy-title-wrap {
  margin-bottom: 50px;
}

.philosophy-card {
  background: #f8fffe;
  border: 1.5px solid #e0f7ec;
  border-radius: 20px;
  padding: 36px 28px;
  height: 100%;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.philosophy-icon-box {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.philosophy-icon {
  color: #fff;
  font-size: 22px;
}

.philosophy-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.philosophy-card-text {
  color: #666;
  font-size: 14px;
  line-height: 1.7;
  text-align: justify;
  flex-grow: 1;
}

.philosophy-quote-block {
  margin-top: 50px;
  background: linear-gradient(135deg, #0d1117, #1a2332);
  border-radius: 20px;
  padding: 44px 48px;
  position: relative;
  overflow: hidden;
}

.philosophy-quote-bg {
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 120px;
  color: #22c55e;
  opacity: 0.08;
  font-family: Georgia, serif;
  line-height: 1;
}

.philosophy-quote-text {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 1;
  font-style: italic;
  text-align: justify;
}

.philosophy-quote-footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.philosophy-quote-line {
  width: 40px;
  height: 2px;
  background: #22c55e;
}

.philosophy-quote-author {
  color: #22c55e;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
}


/* ──────────────────────────────────────────────
   VENTURES / COMPANIES SECTION
────────────────────────────────────────────── */
.ventures-title-wrap {
  margin-bottom: 50px;
}

.ventures-sub {
  max-width: 600px;
  margin: 0 auto;
  color: #fff;
}

.venture-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.venture-card__top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.venture-card__top-bar--green {
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

.venture-card__top-bar--blue {
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.venture-card__top-bar--orange {
  background: linear-gradient(90deg, #f97316, #ea580c);
}

.venture-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.venture-card__logo {
  width: 73px;
  height: 49px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  font-family: sans-serif;
}

.venture-card__logo--green {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.venture-card__logo--blue {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.venture-card__logo--orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.venture-card__name {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  color: #111;
}

.venture-card__meta {
  font-size: 12px;
  font-weight: 600;
}

.venture-card__meta--green {
  color: #22c55e;
}

.venture-card__meta--blue {
  color: #3b82f6;
}

.venture-card__meta--orange {
  color: #f97316;
}

.venture-card__desc {
  color: #555;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.venture-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.venture-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 13px;
  color: #444;
}

.venture-card__check {
  font-size: 11px;
}

.venture-card__check--green {
  color: #22c55e;
}

.venture-card__check--blue {
  color: #3b82f6;
}

.venture-card__check--orange {
  color: #f97316;
}

.venture-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  border: 1.5px solid;
  padding: 8px 18px;
  border-radius: 8px;
  transition: all 0.3s;
}

.venture-card__link--green {
  color: #22c55e;
  border-color: #22c55e;
}

.venture-card__link--blue {
  color: #3b82f6;
  border-color: #3b82f6;
}

.venture-card__link--orange {
  color: #f97316;
  border-color: #f97316;
}


/* ──────────────────────────────────────────────
   SERVICES SECTION
────────────────────────────────────────────── */
.services-white-bg {
  background: #fff;
}

.services-item-custom {
  padding: 28px 32px;
  border-radius: 18px;
  border: 1px solid #eee;
  margin-bottom: 20px;
  background: #fff;
}

.services-item-inner {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.services-num {
  font-weight: 700;
  font-size: 18px;
  color: #999;
}

.services-item-title {
  margin: 0 0 6px 0;
  font-size: 20px;
}

.services-item-title a {
  color: #111;
  text-decoration: none;
}

.services-item-text {
  margin: 0;
  color: #555;
  line-height: 1.7;
  text-align: justify;
}


/* ──────────────────────────────────────────────
   IMPACT NUMBERS SECTION
────────────────────────────────────────────── */
.impact-title-wrap {
  margin-bottom: 50px;
}

.impact-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.impact-number {
  font-size: 52px;
  font-weight: 900;
  color: #22c55e;
  line-height: 1;
}

.impact-label {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-top: 10px;
}

.impact-sub {
  font-size: 12px;
  color: #888;
  margin-top: 6px;
}

.industries-strip {
  margin-top: 40px;
  background: #fff;
  border-radius: 16px;
  padding: 28px 36px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.industries-strip__title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #888;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.industries-strip__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.industry-tag {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
  transition: all 0.3s ease;
  cursor: default;
}


/* ──────────────────────────────────────────────
   AWARDS SECTION
────────────────────────────────────────────── */
.awards-sub {
  color: #888;
  font-size: 14px;
  margin-top: 12px;
  text-align: justify;
}

.awards-span-justify {
  display: block;
  text-align: justify;
}


/* ──────────────────────────────────────────────
   EXPERIENCE / SKILLS SECTION
────────────────────────────────────────────── */
.exp-justify {
  text-align: justify;
}

.skill-icon {
  font-size: 42px;
}

.skill-icon--blue {
  color: #4285F4;
}

.skill-icon--pink {
  color: #E1306C;
}

.skill-icon--red {
  color: #EA4335;
}

.skill-icon--purple {
  color: #9B59B6;
}

.skill-icon--cyan {
  color: #00BCD4;
}


/* ──────────────────────────────────────────────
   CASE STUDIES SECTION
────────────────────────────────────────────── */
.case-title-wrap {
  margin-bottom: 50px;
}

.case-sub {
  max-width: 580px;
  margin: 0 auto;
  color: #888;
}

.case-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.case-card__bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.case-card__bar--green {
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

.case-card__bar--blue {
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

.case-card__bar--orange {
  background: linear-gradient(90deg, #f97316, #ea580c);
}

.case-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.case-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-card__icon--green {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.case-card__icon--blue {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.case-card__icon--orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.case-card__icon-i {
  color: #fff;
  font-size: 18px;
}

.case-card__name {
  font-weight: 700;
  font-size: 14px;
  color: #111;
}

.case-card__sub {
  font-size: 12px;
  color: #888;
}

.case-card__stat {
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  text-align: center;
}

.case-card__stat--green {
  background: #f0fdf4;
}

.case-card__stat--blue {
  background: #eff6ff;
}

.case-card__stat--orange {
  background: #fff7ed;
}

.case-card__stat-num {
  font-size: 32px;
  font-weight: 900;
}

.case-card__stat-num--green {
  color: #22c55e;
}

.case-card__stat-num--blue {
  color: #3b82f6;
}

.case-card__stat-num--orange {
  color: #f97316;
}

.case-card__stat-label {
  font-size: 12px;
  color: #555;
  font-weight: 600;
}

.case-card__text {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  text-align: justify;
}


/* ──────────────────────────────────────────────
   TESTIMONIALS SECTION
────────────────────────────────────────────── */
.testimonials-no-border {
  border-bottom: none;
}

.testi-intro {
  color: #888;
  font-size: 14px;
  max-width: 380px;
  line-height: 1.7;
}

.testi-text {
  text-align: justify;
}

.testi-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-avatar--green {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.testi-avatar--blue {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.testi-avatar--orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.testi-avatar--purple {
  background: linear-gradient(135deg, #9B59B6, #6d28d9);
}

.testi-avatar--teal {
  background: linear-gradient(135deg, #22c55e, #0ea5e9);
}

.testi-avatar--amber {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.testi-avatar__initials {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  font-family: sans-serif;
  letter-spacing: 1px;
}


/* ──────────────────────────────────────────────
   TEAM SECTION
────────────────────────────────────────────── */
.team-dark-section {
  background: #0d1117;
}

.team-para {
  color: #bbbcbd;
  text-align: justify;
  line-height: 1.8;
}

.team-para-gap {
  margin-top: 10px;
}


/* ──────────────────────────────────────────────
   CONNECT / SOCIAL SECTION
────────────────────────────────────────────── */
.connect-white-section {
  background: #fff;
}

.connect-title-wrap {
  margin-bottom: 50px;
}

.connect-sub {
  max-width: 500px;
  margin: 0 auto;
  color: #888;
  text-align: justify;
}

.social-card-link {
  text-decoration: none;
}

.social-card {
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  color: #fff;
  transition: transform 0.3s;
  display: block;
}

.social-card--instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-card--linkedin {
  background: linear-gradient(135deg, #0077b5, #00a0dc);
}

.social-card--phone {
  background: linear-gradient(135deg, #22c55e, #16a34a);
}

.social-card__icon {
  font-size: 42px;
  margin-bottom: 14px;
  display: block;
}

.social-card__handle {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
}

.social-card__sub {
  font-size: 12px;
  opacity: 0.85;
}


/* ──────────────────────────────────────────────
   CTA SECTION
────────────────────────────────────────────── */
.cta-dark-section {
  background: linear-gradient(135deg, #0d1117 0%, #1a2332 100%);
}

.cta-desc {
  color: #9ca3af;
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
  margin-top: 10px;
  text-align: justify;
}

.contact-form-title {
  color: #0d1117;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ──────────────────────────────────────────────
   DARK SECTION TEXT → WHITE
   (global-section, team-dark-section, cta-dark-section,
    philosophy-quote-block, growth-card)
────────────────────────────────────────────── */

/* GLOBAL PRESENCE SECTION */
.global-section h2,
.global-section h3,
.global-section h4,
.global-section h5,
.global-section h6 {
  color: #fff !important;
}

.global-section .global-heading {
  color: #22c55e !important;
}

.global-section p {
  color: #ffffff !important;
}

.global-stat-num .count {
  color: #22c55e !important;
}

.global-section span {
  color: #ffffff !important;
}

.global-section .global-span {
  color: #fff !important;
}

.global-section .global-stat-label {
  color: #fff !important;
}

/* TEAM DARK SECTION */
.team-dark-section h2 {
  color: #22c55e !important;
}

.team-dark-section h3,
.team-dark-section h4,
.team-dark-section h5,
.team-dark-section h6 {
  color: #fff !important;
}

.team-dark-section p {
  color: #bbbcbd !important;
}

.team-dark-section span.team-1 {
  color: #fff !important;
}

/* CTA DARK SECTION */
.cta-dark-section h2,
.cta-dark-section h3,
.cta-dark-section h4,
.cta-dark-section h5,
.cta-dark-section h6 {
  color: #fff !important;
}

.cta-dark-section p {
  color: #9ca3af !important;
}

.cta-dark-section span.team-1 {
  color: #fff !important;
}

/* Contact form box is WHITE background inside dark section */
.cta-dark-section .contact-form-box h3 {
  color: #111 !important;
}

.cta-dark-section .contact-form-box p {
  color: #555 !important;
}

/* PHILOSOPHY QUOTE BLOCK (dark bg inside white section) */
.philosophy-quote-block p,
.philosophy-quote-block .philosophy-quote-text {
  color: #fff !important;
}

.philosophy-quote-block .philosophy-quote-author {
  color: #22c55e !important;
}

/* GROWTH CARD (dark card inside global dark section) */
.growth-card .growth-title {
  color: #fff !important;
}

.growth-scale span,
.growth-labels span {
  color: #fff !important;
}

/* MARQUEE (dark bg) */
.marquee-container .marquee-text h3,
.marquee-container .marquee-heading {
  color: #fff !important;
}

/* TESTIMONIAL CARDS (dark bg) */
.testimonial-box-items h5 {
  color: #fff !important;
}

.testimonial-box-items .client-content p {
  color: #bbbcbd !important;
}

.testimonial-box-items .testi-content p,
.testimonial-box-items .testi-text {
  color: #e5e7eb !important;
}


/* ──────────────────────────────────────────────
   WHITE SECTION TEXT → BLACK
   (philosophy-section, connect-white-section,
    services-white-bg, about-section, impact section,
    ventures, case studies, awards, skills)
────────────────────────────────────────────── */

/* PHILOSOPHY / JOURNEY (white bg) */
.philosophy-section h2,
.philosophy-section h3,
.philosophy-section h4,
.philosophy-section h5,
.philosophy-section h6 {
  color: #111 !important;
}

.philosophy-section p {
  color: #666 !important;
}

.philosophy-section .section-title span {
  color: #111 !important;
}

/* span inside h2 stays green */
.philosophy-section .section-title h2 span {
  color: #22c55e !important;
}

/* CONNECT / SOCIAL (white bg) */
.connect-white-section h2,
.connect-white-section h3,
.connect-white-section h4,
.connect-white-section h5,
.connect-white-section h6 {
  color: #111 !important;
}

.connect-white-section p {
  color: #888 !important;
}

.connect-white-section .section-title span {
  color: #111 !important;
}

.connect-white-section .section-title h2 span {
  color: #22c55e !important;
}

/* Social cards are coloured — keep their text white */
.social-card h2,
.social-card h3,
.social-card h4,
.social-card h5,
.social-card h6,
.social-card p,
.social-card div {
  color: #fff !important;
}

/* SERVICES (white bg) */
.services-white-bg h2,
.services-white-bg h3,
.services-white-bg h4,
.services-white-bg h5,
.services-white-bg h6 {
  color: #111 !important;
}

.services-white-bg .section-title span {
  color: #111 !important;
}

.services-white-bg .section-title h2 span {
  color: #22c55e !important;
}

.services-white-bg p,
.services-item-text {
  color: #555 !important;
}

.services-num {
  color: #999 !important;
}

.services-item-title a {
  color: #111 !important;
}

.services-item-title a:hover {
  color: #22c55e !important;
}

/* ABOUT SECTION (white bg) */
.about-section h2,
.about-section h3,
.about-section h4,
.about-section h5,
.about-section h6 {
  color: #111 !important;
}

.about-section p {
  color: #555 !important;
}

.about-section .section-title span {
  color: #111 !important;
}

.about-section .section-title h2 span {
  color: #22c55e !important;
}

/* IMPACT SECTION (section-bg-2 — light gray) */
#impact h2,
#impact h3,
#impact h4,
#impact h5,
#impact h6 {
  color: #fff !important;
}

#impact .section-title span {
  color: #fff !important;
}

#impact .section-title h2 span {
  color: #22c55e !important;
}

#impact p {
  color: #555 !important;
}

.impact-number {
  color: #22c55e !important;
}

.impact-label {
  color: #111 !important;
}

.impact-sub {
  color: #888 !important;
}

.industries-strip__title {
  color: #888 !important;
}

/* VENTURES SECTION (section-bg-2 — light gray) */
#ventures h2,
#ventures h3,
#ventures h4,
#ventures h5,
#ventures h6 {
  color: #fff !important;
}

#ventures .section-title span {
  color: #fff !important;
}

#ventures .section-title h2 span {
  color: #22c55e !important;
}

#ventures p {
  color: #555 !important;
}

#ventures .ventures-sub {
  color: #fff !important;
}

.ventures-sub {
  color: #fff !important;
}

/* CASE STUDIES (section-bg-2 — light gray) */
#case-studies h2,
#case-studies h3,
#case-studies h4,
#case-studies h5,
#case-studies h6 {
  color: #fff !important;
}

#case-studies .section-title span {
  color: #fff !important;
}

#case-studies .section-title h2 span {
  color: #22c55e !important;
}

#case-studies p {
  color: #fff !important;
}

.case-sub {
  color: #888 !important;
}

.case-card__name {
  color: #111 !important;
}

.case-card__sub {
  color: #888 !important;
}

.case-card__stat-label {
  color: #555 !important;
}

#case-studies .case-card__text {
  color: #111111 !important;
}

/* AWARDS IMAGE SECTION (white bg) */
#awards h2,
#awards h3,
#awards h4,
#awards h5,
#awards h6 {
  color: #111 !important;
}

#awards .section-title span {
  color: #111 !important;
}

#awards .section-title h2 span {
  color: #22c55e !important;
}

/* AWARDS LIST SECTION (white bg) */
.awards-section h2,
.awards-section h3,
.awards-section h4,
.awards-section h5,
.awards-section h6 {
  color: #111 !important;
}

.awards-section .section-title span {
  color: #111 !important;
}

.awards-section .section-title h2 span {
  color: #22c55e !important;
}

.awards-sub {
  color: #888 !important;
}

.awards-span-justify {
  color: #555 !important;
}

/* SKILLS SECTION (section-bg-2 — light gray) */
#skills .section-title h2 {
  color: #22c55e !important;
}

#skills h2,
#skills h3,
#skills h4,
#skills h5,
#skills h6 {
  color: #fff !important;
}

#skills .client-item .number {
  color: #22c55e !important;
}

#skills .section-title span {
  color: #fff !important;
}

#skills .section-title h2 span {
  color: #22c55e !important;
}

#skills .experience-items h4 {
  color: #fff !important;
}

#skills .experience-items h6 {
  color: #bbbcbd !important;
}

#skills .experience-items span {
  color: #999 !important;
}

/* TESTIMONIALS SECTION (white bg) */
.testimonials-section h2,
.testimonials-section h3,
.testimonials-section h4,
.testimonials-section h5,
.testimonials-section h6 {
  color: #e5e7eb !important;
}

.testimonials-section .section-title-1 span {
  color: #111 !important;
}

.testimonials-section .section-title h2 span {
  color: #22c55e !important;
}

.testi-intro {
  color: #555 !important;
}

/* reviews box */
.testimonials-section .reviews h2 {
  color: #111 !important;
}

.testimonials-section .reviews span {
  color: #333 !important;
}

/* VENTURE CARD internals (white card) */
.venture-card__name {
  color: #111 !important;
}

.venture-card__desc {
  color: #555 !important;
}

.venture-card__list li {
  color: #444 !important;
}

/* PHILOSOPHY CARD internals (light card) */
.philosophy-card-title {
  color: #111 !important;
}

.philosophy-card-text {
  color: #666 !important;
}

/* TEAM IMAGE LIGHTBOX */
.team-img a.img-popup {
  display: block;
}

.team-img a.img-popup img {
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: zoom-in;
}

.team-img a.img-popup:hover img {
  transform: scale(1.04);
  opacity: 0.9;
}

/* TEAM IMAGE LIGHTBOX - big display */
.mfp-container .mfp-img {
  max-height: 90vh !important;
  max-width: 90vw !important;
  width: auto !important;
}

.mfp-figure figure {
  background: transparent;
}

/* ===== TEAM GRID RESPONSIVE ===== */

/* Base - large desktop */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: 100%;
}

.team-grid .big {
  grid-column: span 2;
  height: 260px;
}

.team-img {
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
}

.team-img a.team-img-popup,
.team-img a.img-popup {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-img:hover img {
  transform: scale(1.06);
}

/* Tablet landscape */
@media (max-width: 1199px) {
  .team-grid {
    gap: 12px;
  }

  .team-grid .big {
    height: 220px;
  }

  .team-img {
    height: 130px;
  }
}

/* Tablet portrait */
@media (max-width: 991px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 30px;
    gap: 12px;
  }

  .team-grid .big {
    grid-column: span 3;
    height: 220px;
  }

  .team-img {
    height: 130px;
  }
}

/* Mobile large */
@media (max-width: 767px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .team-grid .big {
    grid-column: span 2;
    height: 180px;
  }

  .team-img {
    height: 120px;
    border-radius: 10px;
  }
}

/* Mobile small */
@media (max-width: 480px) {
  .team-grid {
    gap: 8px;
  }

  .team-grid .big {
    height: 150px;
  }

  .team-img {
    height: 100px;
    border-radius: 8px;
  }
}


/* ===== THEME-BTN ALIGNMENT ===== */
.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.theme-btn i {
  line-height: 1;
  flex-shrink: 0;
}

/* ===== HEADER ===== */
@media (max-width: 991px) {
  .header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  .header-main .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    flex: none;
  }

  .header-main .logo a:nth-child(1) img {
    height: 10px;
  }

  .header-main .logo a:nth-child(2) img {
    height: 22px;
  }

  .header-main .logo a:nth-child(3) img {
    height: 9px;
  }

  .header-right .theme-btn {
    display: none;
  }

  .header-right {
    flex-shrink: 0;
    margin-left: auto;
    position: relative;
    z-index: 1;
  }

  .header__hamburger {
    display: block;
    margin-left: 0;
  }
}

/* ===== MOBILE OFFCANVAS MENU ===== */
@media (max-width: 991px) {
  .fix-area .offcanvas__info {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: right 0.35s ease;
    overflow-y: auto;
  }

  .fix-area .offcanvas__info.info-open {
    right: 0;
  }

  .offcanvas__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9998;
    display: none;
  }

  .offcanvas__overlay.overlay-open {
    display: block;
  }

  .menu-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #22c55e;
    padding: 0 20px 10px;
  }

  .menu-grid {
    list-style: none;
    margin: 0;
    padding: 0 12px 20px;
  }

  .menu-grid li a.menu-item {
    display: block;
    color: #111111;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .menu-grid li:last-child a.menu-item {
    border-bottom: none;
  }

  .menu-grid li a.menu-item:hover,
  .menu-grid li a.menu-item:focus {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
  }
}

/* ===== HERO STATS - MOBILE 2x2 ===== */
@media (max-width: 991px) {
  .hero-stats-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    margin-top: 25px;
  }

  .stat-divider {
    display: none;
  }

  .stat-number {
    font-size: 22px;
  }

  .stat-label {
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .hero-stats-bar {
    gap: 16px;
  }

  .stat-number {
    font-size: 20px;
  }

  .stat-label {
    font-size: 11px;
  }
}

/* ===== ABOUT SECTION MOBILE ===== */
@media (max-width: 991px) {
  .about-wrapper-1 .about-content .client-reviews {
    margin-top: 35px;
    margin-bottom: 35px;
    gap: 35px;
  }

  .about-wrapper-1 .about-content .about-button .phone {
    justify-content: center;
  }

  .about-wrapper-1 .about-content .about-button .phone .text {
    text-align: center;
  }
}

/* ===== GLOBAL PRESENCE ===== */
.global-span {
  color: #fff;
}

.global-left-title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.global-stat-label {
  color: #fff;
  font-size: 13px;
}

.global-stat-num {
  color: #22c55e;
}

.global-tag--green,
.global-tag--blue,
.global-tag--orange {
  background: transparent;
  border: 1px solid #22c55e;
  color: #22c55e;
}

.global-tag--green:hover,
.global-tag--blue:hover,
.global-tag--orange:hover {
  background: #22c55e;
  color: #fff;
}

@media (max-width: 991px) {
  .global-stats {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    display: flex;
  }

  .global-stat-num {
    font-size: 22px;
    white-space: nowrap;
  }

  .global-stat-label {
    font-size: 12px;
    white-space: nowrap;
  }
}

@media (max-width: 575px) {
  .global-stats {
    gap: 12px;
  }

  .global-stat-num {
    font-size: 18px;
  }

  .global-stat-label {
    font-size: 11px;
  }
}


/* ===== VENTURES SECTION ===== */
.ventures-title-wrap {
  margin-bottom: 50px;
}

.ventures-sub {
  max-width: 600px;
  margin: 0 auto;
  color: #fff;
  font-size: 13px;
}

.ventures-title-wrap h2 {
  margin-bottom: 30px;
  line-height: 1.3;
}

.venture-card__name {
  color: #111;
}

.venture-card__desc {
  color: #555;
}

.venture-card__list li {
  color: #444;
}

@media (max-width: 991px) {
  .venture-card {
    padding: 24px 18px;
  }

  .venture-card__logo {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    font-size: 14px;
  }

  .venture-card__name {
    font-size: 15px;
    margin: 0 0 3px 0;
  }

  .venture-card__meta {
    font-size: 11px;
  }

  .venture-card__desc {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .venture-card__list li {
    font-size: 12px;
    padding: 3px 0;
  }
}

/* ===== MY PHILOSOPHY ===== */
.philosophy-card-title {
  color: #111;
}

.philosophy-card-text {
  color: #666;
}

.philosophy-icon {
  color: #fff;
  font-size: 22px;
}

@media (max-width: 991px) {
  .philosophy-card {
    padding: 24px 18px;
  }

  .philosophy-icon-box {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
  }

  .philosophy-icon {
    font-size: 18px;
  }

  .philosophy-card-title {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .philosophy-card-text {
    font-size: 13px;
    line-height: 1.6;
  }

  .philosophy-quote-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .philosophy-quote-bg {
    font-size: 80px;
  }
}

@media (max-width: 575px) {
  .philosophy-card-title {
    font-size: 14px;
  }

  .philosophy-quote-text {
    font-size: 13px;
  }
}

/* ===== MY SERVICES MOBILE ===== */
@media (max-width: 991px) {
  .services-item-custom {
    padding: 18px;
  }

  .services-num {
    font-size: 14px;
  }

  .services-item-title {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .services-item-text {
    font-size: 13px;
    line-height: 1.6;
  }
}

@media (max-width: 575px) {
  .services-item-title {
    font-size: 14px;
  }
}

/* ===== MY IMPACT ===== */
#impact .section-title span {
  color: #fff;
}

#impact .section-title h2 span {
  color: #22c55e;
}

/* ===== AWARDS IMAGE SECTION ===== */
#awards h2,
#awards h3,
#awards h4,
#awards h5,
#awards h6 {
  color: #111;
}

#awards .section-title span {
  color: #111;
}

#awards .section-title h2 span {
  color: #22c55e;
}

/* ===== AWARDS / RECOGNITION SECTION ===== */
.awards-section h2,
.awards-section h3,
.awards-section h4,
.awards-section h5,
.awards-section h6 {
  color: #111;
}

.awards-section .section-title span {
  color: #111;
}

.awards-section .section-title h2 span {
  color: #22c55e;
}

.awards-sub {
  color: #888;
}

.awards-span-justify {
  color: #555;
}

.awards-wrapper .awards-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px;
  margin-bottom: 16px;
}

.awards-wrapper .awards-item .content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.awards-wrapper .awards-item .content .icon,
.awards-wrapper .awards-item>.icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.awards-wrapper .awards-item .content .icon img,
.awards-wrapper .awards-item>.icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.awards-wrapper .awards-item .content .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

@media (max-width: 991px) {
  .awards-wrapper .awards-item {
    gap: 10px;
    padding: 16px;
    margin-bottom: 12px;
  }

  .awards-wrapper .awards-item .content {
    gap: 10px;
  }

  .awards-wrapper .awards-item .content .icon,
  .awards-wrapper .awards-item>.icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .awards-wrapper .awards-item .content .icon img,
  .awards-wrapper .awards-item>.icon img {
    width: 36px;
    height: 36px;
  }

  .awards-wrapper .awards-item .content .text h4 {
    font-size: 13px;
    margin-bottom: 3px;
    line-height: 1.3;
  }

  .awards-wrapper .awards-item .content .text span {
    font-size: 12px;
    line-height: 1.4;
  }

  .awards-section .section-title h2 {
    font-size: 24px;
  }

  .awards-sub {
    font-size: 13px;
    margin-top: 12px;
  }
}

@media (max-width: 575px) {
  .awards-wrapper .awards-item .content .text h4 {
    font-size: 12px;
  }
}

/* ===== MY EXPERTISE - DESKTOP ===== */
@media (min-width: 992px) {
  #skills .experience-wrapper .experience-items {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 20px 0;
  }

  #skills .experience-wrapper .experience-items span {
    flex-shrink: 0;
    font-size: 18px;
  }

  #skills .experience-wrapper .experience-items h4 {
    flex: 1;
    white-space: normal;
    word-break: normal;
    margin: 0;
    font-size: 20px;
  }

  #skills .experience-wrapper .experience-items h6 {
    flex-shrink: 0;
    text-align: right;
    margin: 0;
    font-size: 15px;
  }

  #skills .client-wrapper .client-items {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
  }

  #skills .client-wrapper .client-items .client-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 10px;
  }

  #skills .client-wrapper .client-items .client-item .icon {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #skills .client-wrapper .client-items .client-item h4.number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 0;
    font-size: 22px;
  }

  .skill-icon {
    font-size: 48px;
  }
}

/* ===== MY EXPERTISE - MOBILE ===== */
@media (max-width: 991px) {
  #skills .experience-wrapper .experience-items {
    display: grid;
    grid-template-columns: 30px 1fr;
    grid-template-rows: auto auto;
    gap: 2px 8px;
    padding: 14px 0;
    align-items: start;
  }

  #skills .experience-wrapper .experience-items span {
    grid-column: 1;
    grid-row: 1;
    font-size: 13px;
    line-height: 1.5;
  }

  #skills .experience-wrapper .experience-items h4 {
    grid-column: 2;
    grid-row: 1;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    white-space: normal;
    word-break: normal;
  }

  #skills .experience-wrapper .experience-items h6 {
    grid-column: 2;
    grid-row: 2;
    font-size: 12px;
    margin: 0;
    text-align: left;
  }

  #skills .client-wrapper {
    padding: 20px;
    box-sizing: border-box;
  }

  #skills .client-wrapper .client-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    justify-items: center;
  }

  #skills .client-wrapper .client-items .client-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    width: 100%;
  }

  #skills .client-wrapper .client-items .client-item:not(:last-child)::before {
    display: none;
  }

  #skills .client-wrapper .client-items .client-item:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: 50%;
  }

  #skills .client-wrapper .client-items .client-item h4.number {
    font-size: 14px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex-wrap: wrap;
  }

  .skill-icon {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  #skills .experience-wrapper .experience-items h4 {
    font-size: 13px;
  }

  #skills .experience-wrapper .experience-items h6 {
    font-size: 11px;
  }

  .skill-icon {
    font-size: 24px;
  }

  #skills .client-wrapper .client-items {
    gap: 14px;
  }

  #skills .client-wrapper .client-items .client-item h4.number {
    font-size: 13px;
  }
}

/* ===== CASE STUDIES ===== */
.case-title-wrap {
  margin-bottom: 50px;
}

.case-sub {
  max-width: 580px;
  margin: 0 auto;
  color: #888;
}

.case-title-wrap h2 {
  margin-bottom: 30px;
  line-height: 1.3;
}

.case-card__name {
  color: #111;
}

.case-card__sub {
  color: #888;
}

.case-card__stat-label {
  color: #555;
}

#case-studies .case-card__text {
  color: #111111;
}

#case-studies .section-title span {
  color: #fff;
}

#case-studies .section-title h2 span {
  color: #22c55e;
}

#case-studies p {
  color: #fff;
}

/* ===== SKILLS SECTION COLORS ===== */
#skills .section-title h2 {
  color: #22c55e;
}

#skills .section-title span {
  color: #fff;
}

#skills .section-title h2 span {
  color: #22c55e;
}

#skills .experience-items h4 {
  color: #fff;
}

#skills .experience-items h6 {
  color: #bbbcbd;
}

#skills .experience-items span {
  color: #999;
}

#skills .client-item .number {
  color: #22c55e;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section .section-title-1 span {
  color: #111;
}

.testimonials-section .section-title h2 span {
  color: #22c55e;
}

.testi-intro {
  color: #555;
}

.testimonials-section .reviews h2 {
  color: #111;
}

.testimonials-section .reviews span {
  color: #333;
}

@media (max-width: 991px) {
  .testimonials-wrapper .testimonial-box-items {
    display: flex;
    flex-direction: column;
    padding: 22px;
    margin: 0 auto;
    max-width: 300px;
    width: 100%;
    height: auto;
    overflow: visible;
    box-sizing: border-box;
  }

  .testimonials-wrapper .testimonial-box-items .client-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
  }

  .testimonials-wrapper .testimonial-box-items .client-info .testi-avatar {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .testimonials-wrapper .testimonial-box-items .client-info .client-content h5 {
    margin: 0 0 3px 0;
    font-size: 14px;
  }

  .testimonials-wrapper .testimonial-box-items .client-info .client-content p {
    margin: 0;
    font-size: 12px;
  }

  .testimonials-wrapper .testimonial-box-items .testi-content {
    display: flex;
    gap: 12px;
    align-items: flex-start;
  }

  .testimonials-wrapper .testimonial-box-items .testi-content p,
  .testimonials-wrapper .testimonial-box-items .testi-text {
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
  }

  .testimonials-wrapper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .testimonials-wrapper {
    padding: 0 20px;
  }
}

/* ===== TEAM SECTION ===== */
.team-dark-section span.team-1 {
  color: #fff;
}

.team-dark-section .section-title h2.team {
  margin-bottom: 20px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  width: 100%;
}

.team-grid .big {
  grid-column: span 2;
  height: 260px;
}

.team-img {
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
}

.team-img a.team-img-popup,
.team-img a.img-popup {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-img:hover img {
  transform: scale(1.06);
}

.mfp-container .mfp-img {
  max-height: 90vh;
  max-width: 90vw;
  width: auto;
}

.mfp-figure figure {
  background: transparent;
}

@media (max-width: 1199px) {
  .team-grid {
    gap: 12px;
  }

  .team-grid .big {
    height: 220px;
  }

  .team-img {
    height: 130px;
  }
}

@media (max-width: 991px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 30px;
    gap: 12px;
  }

  .team-grid .big {
    grid-column: span 3;
    height: 220px;
  }

  .team-img {
    height: 130px;
  }

  .team-dark-section .section-title,
  .cta-dark-section .section-title {
    text-align: center;
  }

  .team-dark-section .section-title span.team-1,
  .cta-dark-section .section-title span.team-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }

  .team-dark-section .section-title h2,
  .cta-dark-section .section-title h2 {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .team-grid .big {
    grid-column: span 2;
    height: 180px;
  }

  .team-img {
    height: 120px;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .team-grid {
    gap: 8px;
  }

  .team-grid .big {
    height: 150px;
  }

  .team-img {
    height: 100px;
    border-radius: 8px;
  }
}

/* ===== CTA SECTION ===== */
.cta-dark-section span.team-1 {
  color: #fff;
}

/* ===== CONNECT SECTION ===== */
.connect-white-section .section-title h2 {
  margin-bottom: 20px;
}

.social-card--facebook {
  background: linear-gradient(135deg, #1877f2, #0a5dc2);
}

/* ===== FOOTER ===== */
.footer-widget-wrapper .footer-social {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-widget-wrapper .footer-social h4 {
  text-align: center;
  margin-bottom: 12px;
  width: 100%;
}

.footer-widget-wrapper .footer-social .socials-icon {
  justify-content: center;
}

/* ===== SUB TEXT FONT SIZE INCREASE ===== */
.ventures-sub,
.awards-sub,
.testi-intro {
  font-size: 17px;
  line-height: 1.7;
}

/* ===== FOOTER LOGO CENTER ===== */
.footer-bottom-wrapper {
  position: relative;
}

.footer-bottom-wrapper .footer-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 991px) {
  .footer-bottom-wrapper .footer-logo {
    position: static;
    transform: none;
  }
}

/* ===== INSTAGRAM VIDEOS SECTION ===== */
.insta-videos-section {
  background: #f9f9f9;
}

.insta-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.insta-video-item {
  border-radius: 12px;
  overflow: hidden;
}

.insta-video-item .instagram-media {
  border-radius: 12px !important;
  width: 100% !important;
}

.insta-follow-btn {
  margin-top: 10px;
}

.insta-follow-btn .theme-btn {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border: none;
}

@media (max-width: 991px) {
  .insta-videos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 575px) {
  .insta-videos-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ===== INSTAGRAM VIDEOS SECTION ===== */
.insta-videos-section {
  background: #f9f9f9;
}

.insta-section-sub {
  color: #666;
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}

.insta-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
  margin-bottom: 10px;
}

.insta-video-item {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.insta-video-wrap {
  position: relative;
  width: 100%;
  padding-top: 177%;
}

.insta-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 14px;
}

.insta-follow-btn {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  border: none;
}

@media (max-width: 991px) {
  .insta-videos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 575px) {
  .insta-videos-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ===== CONNECT SECTION → DARK THEME ===== */
.connect-white-section {
  background: linear-gradient(135deg, #0d1117 0%, #1a2332 100%) !important;
}

.connect-white-section h2,
.connect-white-section h3,
.connect-white-section h4,
.connect-white-section h5,
.connect-white-section h6 {
  color: #fff !important;
}

.connect-white-section p {
  color: #9ca3af !important;
}

.connect-white-section .section-title span {
  color: #fff !important;
}

.connect-white-section .section-title h2 span {
  color: #22c55e !important;
}

.connect-white-section .section-title h2 {
  margin-bottom: 20px;
}

/* ===== CTA / READY TO GROW SECTION → WHITE THEME ===== */
.cta-dark-section {
  background: #fff !important;
}

.cta-dark-section h2,
.cta-dark-section h3,
.cta-dark-section h4,
.cta-dark-section h5,
.cta-dark-section h6 {
  color: #111 !important;
}

.cta-dark-section p {
  color: #555 !important;
}

.cta-dark-section span.team-1 {
  color: #111 !important;
}

.cta-dark-section .section-title h2 span {
  color: #22c55e !important;
}

.cta-desc {
  color: #555 !important;
}

/* ===== INSTAGRAM FOLLOW BUTTON ICON FIX ===== */
.insta-follow-btn i {
  transform: none !important;
  rotate: none !important;
  font-size: 18px;
  vertical-align: middle;
}

/* ===== MY VIDEOS HEADING SPACING ===== */
.insta-videos-section .section-title h2 {
  margin-bottom: 20px;
}

/* ===== VIDEO TAG FIX ===== */
.insta-video-wrap {
  position: relative;
  width: 100%;
  padding-top: 0;
  border-radius: 14px;
  overflow: hidden;
}

.insta-video-wrap video {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  background: #000;
}

@media (max-width: 991px) {
  .insta-video-wrap video {
    height: 320px;
  }
}

@media (max-width: 575px) {
  .insta-video-wrap video {
    height: 260px;
  }
}

/* ===== VIDEO PLAY OVERLAY ===== */
.insta-video-item {
  cursor: pointer;
  position: relative;
}

.insta-video-wrap {
  position: relative;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 14px;
  transition: background 0.2s;
}

.video-play-overlay i {
  font-size: 52px;
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: transform 0.2s;
}

.insta-video-item:hover .video-play-overlay {
  background: rgba(0, 0, 0, 0.45);
}

.insta-video-item:hover .video-play-overlay i {
  transform: scale(1.12);
}

/* ===== VIDEO LIGHTBOX MODAL ===== */
.video-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

.video-modal-overlay.active {
  display: flex;
}

.video-modal-box {
  position: relative;
  width: 90vw;
  max-width: 960px;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.video-modal-box video {
  width: 100%;
  max-height: 85vh;
  display: block;
  background: #000;
}

.video-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #22c55e;
  border: none;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.video-modal-close:hover {
  background: #16a34a;
  transform: scale(1.1);
}

/* ===== VIDEO MODAL FIX ===== */
.video-modal-box {
  width: auto !important;
  max-width: 90vw !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 16px !important;
}

.video-modal-box video {
  width: auto !important;
  max-width: 90vw !important;
  max-height: 85vh !important;
  height: auto !important;
  border-radius: 16px !important;
  background: transparent !important;
  display: block !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
}

.video-modal-overlay {
  background: rgba(0, 0, 0, 0.75) !important;
}

/* ===== VIDEO MODAL FINAL ===== */
.video-modal-overlay {
  background: rgba(0, 0, 0, 0.95) !important;
}

.video-modal-box {
  width: 75vw !important;
  max-width: 75vw !important;
  background: #000 !important;
  border-radius: 16px !important;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8) !important;
}

.video-modal-box video {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 80vh !important;
  border-radius: 16px !important;
  background: #000 !important;
  display: block !important;
}










/* ===== EXPERTISE ICONS MOBILE ===== */
@media (max-width: 991px) {

  #skills .client-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 20px;
    margin-top: 30px;
    box-sizing: border-box;
  }

  #skills .client-wrapper .client-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }

  #skills .client-wrapper .client-items .client-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 0;
    max-width: none;
    width: 100%;
  }

  #skills .client-wrapper .client-items .client-item:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: 50%;
  }

  #skills .client-wrapper .client-items .client-item:not(:last-child)::before {
    display: none;
  }

  #skills .client-wrapper .client-items .client-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .skill-icon {
    font-size: 36px;
  }

  #skills .client-wrapper .client-items .client-item h4.number {
    font-size: 22px;
    font-weight: 700;
    color: #22c55e;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    line-height: 1;
  }

  #skills .client-wrapper .client-items .client-item h4.number .text {
    font-size: 14px;
    font-weight: 600;
    color: #bbbcbd;
  }
}

@media (max-width: 575px) {
  #skills .client-wrapper {
    padding: 24px 16px;
  }

  #skills .client-wrapper .client-items {
    gap: 24px 16px;
  }

  .skill-icon {
    font-size: 30px;
  }

  #skills .client-wrapper .client-items .client-item h4.number {
    font-size: 19px;
  }

  #skills .client-wrapper .client-items .client-item h4.number .text {
    font-size: 12px;
  }

  #skills .client-wrapper .client-items .client-item:last-child {
    width: 60%;
  }
}



/* ===== HEADER LOGO SMALL - MOBILE ONLY ===== */
@media (max-width: 991px) {
  .header-main .logo a:nth-child(1) img {
    height: 14px !important;
  }

  .header-main .logo a:nth-child(2) img {
    height: 24px !important;
  }

  .header-main .logo a:nth-child(3) img {
    height: 12px !important;
  }
}

/* ===== HEADER LOGO SMALLER + CENTER ===== */
@media (max-width: 991px) {
  .header-main .logo a:nth-child(1) img {
    height: 10px !important;
  }

  .header-main .logo a:nth-child(2) img {
    height: 18px !important;
  }

  .header-main .logo a:nth-child(3) img {
    height: 9px !important;
  }

  .header-main .logo {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    gap: 8px !important;
  }
}

/* ===== HEADER Z6 LOGO EQUAL SIZE ===== */
@media (max-width: 991px) {
  .header-main .logo a:nth-child(2) img {
    height: 11px !important;
  }
}

/* ===== HEADER LOGO VISIBLE SIZE ===== */
@media (max-width: 991px) {
  .header-main .logo a:nth-child(1) img {
    height: 16px !important;
  }

  .header-main .logo a:nth-child(2) img {
    height: 16px !important;
  }

  .header-main .logo a:nth-child(3) img {
    height: 16px !important;
  }
}

/* ===== INF + RAW6 SMALLER MOBILE ===== */
@media (max-width: 991px) {
  .header-main .logo a:nth-child(1) img {
    height: 13px !important;
  }

  .header-main .logo a:nth-child(3) img {
    height: 12px !important;
  }
}


/* ===== GRAPH LABELS 4-ITEM DESKTOP ===== */
@media (min-width: 992px) {
  .growth-labels {
    justify-content: space-between;
  }

  .growth-labels span:first-child {
    flex: 0 0 62px;
    min-width: 62px;
    max-width: 62px;
  }

  .growth-labels span:not(:first-child) {
    flex: 1;
    text-align: center;
  }

  .growth-labels span:last-child {
    text-align: right;
  }
}




/* MOBILE: hide header when menu is open */
@media (max-width: 767px) {
  body.offcanvas-open .header-1 {
    display: none !important;
  }
}

/* MOBILE: smaller menu panel */
@media (max-width: 767px) {
  .offcanvas__info {
    width: 260px !important;
  }

  .offcanvas__wrapper {
    padding: 15px !important;
  }

  .menu-item {
    padding: 9px 12px !important;
    font-size: 13px !important;
  }

  .menu-label {
    font-size: 11px !important;
    margin-bottom: 10px !important;
  }

  .menu-grid {
    gap: 7px !important;
  }
}

/* TESTIMONIALS: all device responsive fix */

/* Tablet landscape (992px - 1199px) */
@media (max-width: 1199px) {
  .testimonials-section .testimonials-wrapper {
    margin-top: 30px;
  }

  .testimonials-wrapper .testimonial-box-items {
    margin: 0 10px;
    padding: 25px !important;
  }
}

/* Tablet portrait (768px - 991px) */
@media (max-width: 991px) {
  .testimonials-section .row {
    flex-direction: column !important;
  }

  .testimonials-section .col-lg-6 {
    width: 100% !important;
    max-width: 100% !important;
  }

  .testimonials-section .reviews {
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .testimonials-wrapper .testimonial-box-items {
    margin: 0 5px;
    padding: 20px !important;
  }

  .testimonials-wrapper .testimonial-box-items .testi-content p {
    font-size: 14px !important;
  }

  .testimonials-wrapper .testimonial-box-items .client-info h5 {
    font-size: 15px !important;
  }
}

/* Mobile (max 767px) */
@media (max-width: 767px) {
  .testimonials-wrapper .testimonial-box-items {
    margin: 0 !important;
    padding: 18px !important;
  }

  .testimonials-wrapper .testimonial-box-items .testi-content {
    flex-direction: column;
    gap: 10px;
  }

  .testimonials-wrapper .testimonial-box-items .testi-content p {
    font-size: 13px !important;
    line-height: 1.6 !important;
  }

  .testimonials-section .reviews h2 {
    font-size: 28px !important;
  }
}


/* TESTIMONIALS: medium device fix */
@media (max-width: 991px) {
  #testimonials .col-lg-6 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    text-align: center !important;
  }

  #testimonials .section-title {
    text-align: center !important;
  }

  #testimonials .testi-intro {
    max-width: 100% !important;
    text-align: center !important;
    margin: 0 auto !important;
  }

  #testimonials .reviews {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    margin: 20px auto 0 !important;
    padding: 16px 24px !important;
    width: auto !important;
  }

  #testimonials .reviews h2 {
    font-size: 32px !important;
    margin: 0 !important;
    line-height: 1 !important;
  }

  #testimonials .reviews .item {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }

  #testimonials .testimonials-wrapper {
    margin-top: 30px !important;
  }
}

/* --- COMPREHENSIVE HEADER RESPONSIVENESS FIX --- */
.header-main .logo {
  display: flex !important;
  align-items: center !important;
  gap: 25px !important;
}

.header-main .logo a {
  display: flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;
}

/* Base Balanced Sizes */
.header-main .logo a:nth-child(1) img {
  height: 22px !important;
}

/* inf - smaller */
.header-main .logo a:nth-child(2) img {
  height: 32px !important;
}

/* z6 - smaller */
.header-main .logo a:nth-child(3) img {
  height: 20px !important;
}

/* raw6 - smaller */

.header-main .logo a img {
  width: auto !important;
  transition: all 0.3s ease !important;
  display: block !important;
}

/* Mid-size Desktop / Large Tablet (Up to 1199px) */
@media (max-width: 1199px) {
  .header-main .logo a:nth-child(1) img {
    height: 18px !important;
  }

  .header-main .logo a:nth-child(2) img {
    height: 26px !important;
  }

  .header-main .logo a:nth-child(3) img {
    height: 16px !important;
  }
}

/* Tablet (Up to 991px) */
@media (max-width: 991px) {
  .header-main .logo {
    gap: 15px !important;
  }

  .header-main .logo a:nth-child(1) img {
    height: 18px !important;
  }

  .header-main .logo a:nth-child(2) img {
    height: 26px !important;
  }

  .header-main .logo a:nth-child(3) img {
    height: 17px !important;
  }
}

/* Mobile (Up to 480px) */
@media (max-width: 480px) {
  .header-1 .container-fluid {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .header-main .logo {
    gap: 10px !important;
  }

  .header-main .logo a:nth-child(1) img {
    height: 15px !important;
  }

  .header-main .logo a:nth-child(2) img {
    height: 22px !important;
  }

  .header-main .logo a:nth-child(3) img {
    height: 14px !important;
  }
}

/* Very Small Devices (Up to 360px) */
@media (max-width: 360px) {
  .header-1 .container-fluid {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }

  .header-main .logo {
    gap: 8px !important;
  }

  .header-main .logo a:nth-child(1) img {
    height: 13px !important;
  }

  .header-main .logo a:nth-child(2) img {
    height: 20px !important;
  }

  .header-main .logo a:nth-child(3) img {
    height: 12px !important;
  }
}

/* --- GLOBAL STATS RESPONSIVENESS FIX (NEW & BIG) --- */
.global-stats {
  display: flex !important;
  justify-content: center !important;
  gap: 40px !important;
  margin-top: 30px !important;
  flex-wrap: nowrap !important;
}

.global-stats .global-stat-num {
  font-size: 34px !important;
  color: #22c55e !important;
  font-weight: 800 !important;
}

.global-stats .global-stat-label {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #fff !important;
}

@media (max-width: 991px) {
  .global-stats {
    gap: 25px !important;
    flex-wrap: wrap !important;
  }

  .global-stats .global-stat-num {
    font-size: 28px !important;
  }

  .global-stats .global-stat-label {
    font-size: 11.5px !important;
  }
}

@media (max-width: 575px) {
  .global-stats {
    gap: 15px !important;
  }

  .global-stats .global-stat-num {
    font-size: 24px !important;
  }
}

@media (max-width: 360px) {
  .global-stats .global-stat-num {
    font-size: 20px !important;
  }
}

/* --- EXPERTISE & SKILLS RESPONSIVENESS FIX (NEW) --- */
@media (min-width: 992px) {
  #skills .experience-wrapper .experience-items {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    padding: 24px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  #skills .experience-wrapper .experience-items h4 {
    flex: 1;
    min-width: 250px;
  }

  #skills .experience-wrapper .experience-items h6 {
    min-width: 200px;
    text-align: right;
  }
}

@media (max-width: 991px) {
  #skills .experience-wrapper .experience-items {
    display: grid !important;
    grid-template-columns: 35px 1fr !important;
    gap: 6px 12px !important;
    padding: 20px 0 !important;
  }

  #skills .experience-wrapper .experience-items span {
    grid-row: 1 / span 2;
    font-size: 14px !important;
    color: #22c55e !important;
  }

  #skills .experience-wrapper .experience-items h4 {
    font-size: 16px !important;
    line-height: 1.3 !important;
  }

  #skills .experience-wrapper .experience-items h6 {
    font-size: 13px !important;
    opacity: 0.8;
  }

  #skills .client-wrapper {
    margin-top: 40px;
  }

  #skills .client-wrapper .client-items {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px 20px !important;
  }

  .skill-icon {
    font-size: 32px !important;
  }
}

@media (max-width: 480px) {
  #skills .experience-wrapper .experience-items {
    grid-template-columns: 28px 1fr !important;
    padding: 16px 0 !important;
  }

  #skills .experience-wrapper .experience-items h4 {
    font-size: 14px !important;
  }

  #skills .experience-wrapper .experience-items h6 {
    font-size: 12px !important;
  }

  #skills .client-wrapper .client-items .client-item h4.number {
    font-size: 16px !important;
  }

  .skill-icon {
    font-size: 28px !important;
  }
}

/* --- AWARDS SECTION SIZE & VISIBILITY FIX (NEW) --- */
.awards-wrapper .awards-item {
  padding: 28px !important;
  /* Increased from 20px */
  gap: 20px !important;
  border-radius: 16px !important;
  transition: all 0.3s ease !important;
}

/* Remove Left Side Icon */
.awards-wrapper .awards-item .content .icon {
  display: none !important;
}

@media (max-width: 991px) {
  .awards-wrapper .awards-item {
    padding: 24px !important;
    /* Increased from 16px */
    gap: 15px !important;
    margin-bottom: 18px !important;
  }

  .awards-wrapper .awards-item .content .icon,
  .awards-wrapper .awards-item>.icon {
    width: 48px !important;
    height: 48px !important;
  }

  .awards-wrapper .awards-item .content .text h4 {
    font-size: 16px !important;
    margin-bottom: 5px !important;
  }

  .awards-wrapper .awards-item .content .text span {
    font-size: 13px !important;
  }
}

@media (max-width: 575px) {
  .awards-wrapper .awards-item {
    padding: 20px 16px !important;
    gap: 12px !important;
  }

  .awards-wrapper .awards-item .content .text h4 {
    font-size: 14px !important;
  }
}

/* --- HERO STATS BAR RESPONSIVENESS FIX (NEW) --- */
.hero-stats-bar {
  display: flex !important;
  flex-wrap: nowrap !important;
  /* Force single row on desktop */
  justify-content: center !important;
  gap: 40px !important;
  /* Increased from 28px */
  margin-top: 40px !important;
}

.stat-item .stat-number {
  font-size: 34px !important;
  /* Increased from 26px */
}

.stat-item .stat-label {
  font-size: 13px !important;
  /* Increased from 11px */
  font-weight: 600 !important;
}

/* TABLET (UP TO 991px) */
@media (max-width: 991px) {
  .hero-stats-bar {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px 20px !important;
    flex-wrap: wrap !important;
  }

  .stat-item .stat-number {
    font-size: 30px !important;
  }

  .stat-item .stat-label {
    font-size: 12px !important;
  }
}

/* MOBILE (UP TO 575px) */
@media (max-width: 575px) {
  .hero-stats-bar {
    gap: 20px 15px !important;
  }

  .stat-item .stat-number {
    font-size: 26px !important;
  }
}

/* --- SERVICES SECTION HEADER COLOR FIX --- */
#services .section-title h2 span {
  color: #22c55e !important;
}

/* --- FLOATING CONTACT BUTTONS --- */
.floating-contact-wrap {
  position: fixed;
  right: 20px;
  bottom: 140px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.floating-contact-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  background-color: #333;
}

@media (hover: hover) {
  .floating-contact-btn:hover {
    transform: scale(1.15) translateX(-8px);
  }
}

.floating-contact-btn:focus,
.floating-contact-btn:active {
  outline: none !important;
  transform: none !important;
}

.btn-whatsapp {
  background-color: #25D366;
}

.btn-whatsapp:hover {
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
}

.btn-call {
  background-color: #3b82f6;
}

.btn-call:hover {
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.btn-insta {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.btn-insta:hover {
  box-shadow: 0 0 15px rgba(214, 36, 159, 0.4);
}

/* Responsive Scaling */
@media (max-width: 991px) {
  .floating-contact-wrap {
    right: 15px;
    bottom: 120px;
    gap: 12px;
  }

  .floating-contact-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .floating-contact-wrap {
    right: 5px;
    bottom: 120px;
    gap: 6px;
  }

  .floating-contact-btn {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  /* Scale down Back to Top button */
  .back-to-top {
    width: 34px !important;
    height: 34px !important;
    line-height: 34px !important;
    font-size: 14px !important;
    right: 12px !important;
    bottom: 24px !important;
  }
}

/* --- SWEETALERT RESPONSIVE FIX --- */
@media (max-width: 480px) {
  div.swal2-popup {
    width: 280px !important;
    padding: 20px 10px !important;
  }

  h2.swal2-title {
    font-size: 22px !important;
  }

  div.swal2-html-container {
    font-size: 14px !important;
    margin: 10px 0 0 !important;
  }

  button.swal2-confirm {
    padding: 8px 24px !important;
    font-size: 14px !important;
  }
}

/* Disable custom cursor on touch devices to prevent "stuck" green circles */
@media (max-width: 1199px) {
  .mouse-cursor {
    display: none !important;
  }
}