/* Font Faces */
@font-face {
  font-family: 'Akrobat';
  src: url('../fonts/Akrobat-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Akrobat';
  src: url('../fonts/Akrobat-ExtraLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Akrobat';
  src: url('../fonts/Akrobat-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Akrobat';
  src: url('../fonts/Akrobat-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Akrobat';
  src: url('../fonts/Akrobat-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Akrobat';
  src: url('../fonts/Akrobat-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Akrobat';
  src: url('../fonts/Akrobat-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Akrobat';
  src: url('../fonts/Akrobat-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

:root {
  --bg-color: #212121;
  --theme-color: #151515;
  --main-color: #b5f740;
  --font-family: 'Akrobat', sans-serif;
}

/* Global Font Application */
* {
  font-family: var(--font-family);
}

body {
  font-family: var(--font-family);
  font-weight: 400;
}

h1,
.caption h1 {
  font-family: var(--font-family);
  font-weight: 900;
}

h2 {
  font-family: var(--font-family);
  font-weight: 800;
}

h3 {
  font-family: var(--font-family);
  font-weight: 700;
}

h4,
h5,
h6 {
  font-family: var(--font-family);
  font-weight: 700;
}

strong,
.bold {
  font-weight: 700;
}

/* --------------- Video Section --------------- */
.video-section {
  border-radius: 12px;
  overflow: hidden;
  margin: 40px 0;
}

.video-section video {
  border-radius: 12px;
  width: 100%;
  height: auto;
  display: block;
}

/* --------------- Clients --------------- */
.left-side {
  height: 100vh;
  width: 350px !important;
  padding: 20px 40px 40px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  color: #fff;
  gap: 0;
}

.left-side>div:first-child {
  flex: 0 0 auto;
}

.left-side .info {
  margin-top: 40px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.left-side>div:last-child {
  flex: 0 0 auto;
}

/* Wrapper for logo and button to apply relative positioning */
.nav-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo */
.nav-container .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 40px;
  padding: 0;
}

/* Work With Us Button */
.nav-container .topnav {
  position: absolute;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* For mobile view */
@media (max-width: 767px) {
  .navbar {
    position: fixed;
    /* Keeps navbar at the top */
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    width: 100%;
    background: transparent;
    /* Transparent background for blur effect */
    padding: 30px 0;
    /* Adjust padding for mobile */
  }

  /* Apply the blur effect on scroll or fixed navbar */
  .navbar.nav-scroll {
    backdrop-filter: blur(10px);
    /* Adds blur effect */
    -webkit-backdrop-filter: blur(10px);
    /* For Safari compatibility */
    transition: backdrop-filter 0.3s ease;
    /* Smooth transition */
  }

  .nav-container .logo {
    left: 20px;
    transform: none;
    padding-left: 0;
    width: 50px;
  }

  .nav-container .topnav {
    position: absolute;
    top: 5px;
    right: 20px;
    height: 20px;
    width: 60px;
    left: auto;
  }
}

@media (min-width: 992px) {
  .mobile-menu-wrapper {
    display: none !important;
  }

  .desktop-menu-wrapper {
    display: flex !important;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 991px) {
  .mobile-menu-wrapper {
    display: block !important;
  }

  .desktop-menu-wrapper {
    display: none !important;
  }
}

/* Styling for the circle text alignment */
.left-side .info .circle-text {
  width: 220px;
  height: 220px;
  background: #212121;
  border-radius: 50%;
  position: relative;
  margin: auto;
}

.left-side .info .circle-text .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 60px;
}

.left-side .info .cont li {
  font-size: 18px;
}

.left-side .info .cont span {
  color: #808080;
  font-size: 14px;
}

.left-side .info .cont .social-icon a {
  font-size: 14px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin: 0 2px;
}

.left-side .butn {
  text-align: center;
  width: 100%;
  padding: 12px 0;
  font-size: 14px;
  margin: 0;
}

.left-side .md-hide {
  margin-bottom: 0;
  margin-top: 0;
  padding-top: 0;
}

.left-side .md-hide:nth-child(2),
.left-side .md-hide:nth-child(3),
.left-side .md-hide:nth-child(4) {
  margin-bottom: 8px;
}

.left-side>div>.md-hide:nth-child(2) {
  margin-top: 80px;
}

.left-side .butn.pt-5 {
  padding-top: 0 !important;
}

.left-side .butn.mt-10 {
  margin-top: 0 !important;
}

.left-side .butn.butn-md {
  font-size: 14px;
  padding: 12px 20px;
}

.left-side .butn.butn-bord {
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.left-side .butn.butn-bord:hover {
  background: #fff;
  color: #212121;
}

.left-side .butn>div {
  margin: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

/* Button spacing for desktop */
.left-side .butn+.butn {
  margin-top: 12px;
}

.right-side {
  width: calc(100% - 350px);
}

/* --------------- header --------------- */
.header-ca .main-box {
  color: #fff;
  height: 870px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.header-ca .main-box:after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -20%;
  width: 100%;
  height: 100%;
  ;
}

.header-ca .caption h1 {
  font-size: 120px;
  line-height: 128px;
  font-weight: 500;
}

.regular-font {
  font-weight: 300;
  /* Regular font weight */
  font-family: inherit;
  /* Keeps the same font family */
}

.header-ca .text {
  position: relative;
  z-index: 3;
  margin-top: 60px;
}

.header-ca .text h6 {
  font-size: 20px;
}

.header-ca .gl-rate {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: rgba(0, 0, 0, 0.08);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 60px;
  padding: 10px 20px;
  z-index: 3;
}

.header-ca .gl-rate .icon {
  width: 35px;
}

.header-ca .gl-rate .cont {
  padding-left: 30px;
}

.header-ca .gl-rate .cont h6 {
  line-height: 1;
  font-weight: 600;
  font-size: 18px;
}

.header-ca .gl-rate .cont .stars {
  font-size: 13px;
  color: #FFA826;
  margin-left: 10px;
}

.header-ca .gl-rate .cont p {
  color: #eee;
  font-size: 12px;
  margin-top: 2px;
}

.header-ca .right-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-ca .serv {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  overflow: hidden;
}

.header-ca .serv .content {
  position: relative;
  height: 300px;
}

.header-ca .serv .content .item {
  position: absolute;
  top: 0;
  left: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: inline-block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: auto;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.header-ca .serv .content .item span {
  font-size: 16px;
  padding: 8px 24px;
  background: #EFF0FA;
  border-radius: 30px;
}

.header-ca .serv .content .item span.bdark {
  background: #151515;
  color: #fff;
}

.header-ca .serv .content .item span.bred {
  background: var(--main-color);
  color: #fff;
}

.header-ca .serv .content .item img {
  width: 50px;
}

.header-ca .serv .content .item .icon1 img {
  width: 70px;
}

.header-ca .awards {
  background: var(--main-color);
  color: black;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  padding: 0 30px 30px 30px;
  position: relative;
}

.header-ca .awards .awards-swiper {
  height: 100%;
}

.header-ca .awards .awards-swiper .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-ca .awards .item {
  width: 100%;
  flex-direction: column;
  height: 100%;
}

.header-ca .awards .item .img {
  width: 140px;
  margin: auto;
}

.header-ca .awards .swiper-slide {
  height: 100%;
}

.header-ca .awards .item .img {
  margin: auto;
  padding-top: 25%;
}

.header-ca .awards .item span {
  margin-top: auto;
  padding-bottom: 35px;
  font-size: 16px;
}

.header-ca .awards .awards-swiper p {
  padding-top: 15px;
}

.header-ca .awards .controls {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-ca .awards .controls .btns {
  display: flex;
}

.header-ca .awards .controls .swiper-button-next,
.header-ca .awards .controls .swiper-button-prev {
  position: static;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 12px;
  color: black;
  border: 1px solid black;
  border-radius: 50%;
  margin: 0 2px;
}

.header-ca .awards .controls .swiper-button-next:hover,
.header-ca .awards .controls .swiper-button-prev:hover {
  background: black;
  color: var(--main-color);
}

.header-ca .awards .controls .swiper-button-next:after,
.header-ca .awards .controls .swiper-button-prev:after {
  display: none;
}


@media (max-width: 767px) {
  .mobile-portfolio-btn {
    display: block !important;
    text-align: center;
    margin: 10px 0;
  }
}


/* --------------- Works --------------- */
.works-ca .item .img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.works-ca .item .img .tags {
  position: absolute;
  left: 15px;
  bottom: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.works-ca .item .img .tags a {
  font-size: 14px;
  padding: 7px 15px;
  line-height: 1.5;
  border-radius: 30px;
  background: #fff;
}

.works-ca .item .img .tags a:hover {
  background: var(--main-color);
  color: #fff;
}

.works-ca .item h6 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 15px;
}

.works-ca .item:hover .img .tags {
  opacity: 1;
  visibility: visible;
}

.mobile-portfolio-btn {
  display: none;
}

/* --------------- Services --------------- */
.process-step {
  color: white;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 18px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* icon goes right */
  cursor: pointer;
  transition: 0.3s;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

/* ACTIVE ICON COLOR */
.process-step.active .step-icon {
  background-color: var(--main-color);
  opacity: 1;
}

.step-title {
  font-weight: 800;
  font-size: 24px;
}

.process-two-col {
  padding: 50px;
  background: #333333;
  border: 1px solid rgba(175, 255, 120, 0.06);
  border-radius: 12px;
}

.process-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}


.process-ca .img {
  width: 80%;
  /* This will make the image stretch to the full width of its container */
  margin: auto;
}

.process-ca .accordion-item {
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
}

.process-ca .accordion-item.active {
  border-color: var(--main-color);
}

.process-ca .accordion-item.active button {
  color: var(--main-color) !important;
}

.process-ca .accordion-item .accordion-header {
  background: transparent;
}

.process-ca .accordion-item .accordion-header button {
  background: transparent;
  color: inherit;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  padding: 15px 0;
  -webkit-box-shadow: none;
  box-shadow: none;

}

.process-ca .accordion-item .accordion-header button span {
  font-size: 14px;
  margin-right: 80px;
}

.process-ca .accordion-item .accordion-header button:after {
  background-image: url(../imgs/icon/plus-solid.svg);
  -webkit-filter: invert(1);
  filter: invert(1);
}

.process-ca .accordion-item .accordion-header button:not(.collapsed):after {
  background-image: url(../imgs/icon/minus-solid.svg);
}

.process-ca .accordion-item .accordion-body {
  padding: 0 0 15px 90px;
}

.process-ca .accordion-item .accordion-body p {
  font-size: 14px;
}

.process-step .step-num {
  font-size: 14px;
  font-weight: 600;
  min-width: 30px;
}

.process-right {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 40px;
}

.process-content {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.process-content.active {
  display: block;
}

.process-content p {
  font-size: 17px;
  line-height: 26px;
  margin: 0;
  opacity: 0.85;

}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* Responsive */
@media (max-width: 991px) {
  .process-right {
    padding-left: 0;
    margin-top: 30px;
  }
}

/* --------------- Numbers --------------- */
.numbers-ca {
  padding: 100px 40px 60px;
  background: var(--main-color);
  margin-top: -40px;
  border-radius: 0 0 20px 20px;
}

.numbers-ca .item h2 {
  margin-bottom: 30px;
}

.numbers-ca .item span {
  font-size: 14px;
  line-height: 1.5;
}

/* --------------- Testimonials --------------- */
.testimonials-ca {
  /* background: #333333; */
  color: #fff;
}

.testimonials-ca .sec-head .gl-rate {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: #151515;
  border-radius: 60px;
  padding: 10px 20px;
  z-index: 3;
}

.testimonials-ca .sec-head .gl-rate .icon {
  width: 35px;
}

.testimonials-ca .sec-head .gl-rate .cont {
  padding-left: 30px;
}

.testimonials-ca .sec-head .gl-rate .cont h6 {
  line-height: 1;
  font-size: 16px;
  color: #FFA826;
}

.testimonials-ca .sec-head .gl-rate .cont h6 span {
  color: #fff;
  margin-left: 10px;
}

.testimonials-ca .sec-head .gl-rate .cont h6 span a {
  text-decoration: underline;
}

.testimonials-ca .item {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonials-ca .item .info .img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonials-ca .item .info .cont {
  padding-left: 15px;
}

.testimonials-ca .item .info .cont h6 {
  font-size: 16px;
  line-height: 1.3;
}

.testimonials-ca .item .info .cont span {
  font-size: 14px;
  color: #b1b1b1;
}

.testimonials-ca .item .text {
  text-wrap: pretty;
}

.testimonials-ca .butn-bord {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

/* --------------- Services --------------- */
.about-ca .main-box {
  color: #fff;
  height: 644px;
  padding: 40px;
  background-image: url(../imgs/Sensi-Arriving.webp);
  background-size: cover;
  border-radius: 20px;
  background-position: center;
  /* Keeps the image centered */
  background-repeat: no-repeat;
  /* Prevents repetition of the image */
  overflow: hidden;
  position: relative;
}



/* Mobile View (Phones: up to 767px) */
@media (max-width: 767px) {
  .about-ca .main-box {
    height: 380px;
    /* Correct mobile height */
    background-position: center center;
  }

  .about-ca .team {
    height: 400px;
  }
}

/* iPad View (Tablets: 768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .about-ca .main-box {
    height: 765px;
    /* Correct iPad height */
    background-position: center center;
  }
}

/* iPad Portrait Mode (768px - 820px) */
@media (min-width: 768px) and (max-width: 820px) {
  .about-ca .main-box {
    height: 765px;
  }
}

/* iPad Landscape Mode (821px - 1023px) */
@media (min-width: 821px) and (max-width: 1023px) {
  .about-ca .main-box {
    height: 765px;
  }
}

/* Additional Mobile & Tablet Adjustments (Optional) */
@media (max-width: 1023px) {

  .header-ca .caption h1,
  .about-ca .main-box .caption h1 {
    font-size: 65px;
    line-height: 65px;
  }
}



.about-ca .main-box .caption h1 {
  font-size: 128px;
  line-height: 128px;
  font-weight: 600;
}

.about-ca .main-box .text {
  position: relative;
  z-index: 3;
  margin-top: 60px;
}

.about-ca .main-box .text h6 {
  font-size: 20px;
}

.about-ca .main-box .states {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 3;
}

.about-ca .main-box .states span {
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 15px;
}

.about-ca .right-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about-ca .team {
  position: relative;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  height: 644px;
}

.about-ca .team .team-swiper {
  padding: 50px 30px 30px;
}

.about-ca .team .team-swiper .swiper-slide {
  width: 100%;
  height: auto;
  display: block;
}

.about-ca .team .img {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  overflow: hidden;
  background-color: white;
  /* White background */
  margin: auto;
  margin-bottom: 15px;
  border: 2px solid var(--main-color);
  /* Adds border with theme color */
}

.about-ca .team .cont h6 {
  font-size: 22px;
  color: black;
  font-weight: bold;
}

.about-ca .team .cont span {
  font-size: 14px;
  margin-top: 5px;
}

.about-ca .team .cont .social-icon {
  margin-top: 30px;
}

.about-ca .team .cont .social-icon a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  font-size: 14px;
  color: black;
}

.about-ca .team .botom {
  margin-top: 40px;
}

.about-ca .team .title {
  font-weight: 750;
  color: black;
}

.about-ca .team .controls {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.about-ca .team .controls .swiper-button-next,
.about-ca .team .controls .swiper-button-prev {
  position: static;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 12px;
  color: #151515;
  background: #D6D8E8;
  border-radius: 50%;
  margin: 0 2px;
}

.about-ca .team .controls .swiper-button-next:hover,
.about-ca .team .controls .swiper-button-prev:hover {
  background: #151515;
  color: #fff;
}

.about-ca .team .controls .swiper-button-next:after,
.about-ca .team .controls .swiper-button-prev:after {
  display: none;
}

@media (max-width: 768px) {
  .team-section {
    padding-top: 10px;
  }
}

.about-ca .join {
  background: var(--main-color);
  color: black;
  border-radius: 20px;
  overflow: hidden;
  height: 350px;
  padding: 30px 20px;
  position: relative;
}

.about-ca .join:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  pointer-events: none;
}

.about-ca .join .ontop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

.about-ca .join .jon-link span {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.about-ca .join .jon-link .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: #fff;
}

.about-ca .join .jon-link .icon img {
  width: 15px;
}

.about-ca .join .cont span {
  font-size: 14px;
  margin-top: 10px;
}

/* --------------- Blogs --------------- */
.blog-ca .row-bord {
  position: relative;
}

.blog-ca .row-bord:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.blog-ca .mitem .info .author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.blog-ca .mitem .info .author-info,
.blog-ca .mitem .info .date {
  font-size: 13px;
  text-transform: uppercase;
}

.blog-ca .mitem .info .author-info span,
.blog-ca .mitem .info .date span {
  display: block;
  line-height: 22px;
}

.blog-ca .mitem .img {
  border-radius: 15px;
  height: 285px;
  overflow: hidden;
}

.blog-ca .mitem:hover h5 {
  color: var(--main-color);
}

.blog-ca .item .date {
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.blog-ca .item h6 {
  text-wrap: pretty;
}

.blog-ca .item:hover {
  border-color: var(--main-color);
}

.blog-ca .item:hover h6 {
  color: var(--main-color);
}

/* --------------- Contact --------------- */
.contact-ca {
  background: #333333;
  color: #fff;
}

.contact-ca p {
  color: white;
}

.contact-ca .contact-form label {
  font-size: 14px;
  margin-bottom: 5px;
}

.contact-ca .contact-form label .star {
  color: red;
  padding-left: 5px;
}

.contact-ca .contact-form input,
.contact-ca .contact-form textarea {
  color: #fff;
  background: transparent;
  width: 100%;
  padding: 0 0 10px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 18px;
}

.contact-ca .contact-form button {
  background: var(--main-color);
}

.contact-ca .contact-form button:hover {
  background: #fff;
  color: black;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: #000;
  background-color: var(--theme-color);
}

.container-xxl {
  max-width: 1500px !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  margin: 0;
}

h1 {
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -3px;
}

h2 {
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -3px;
  font-weight: 650;
}

h3 {
  font-size: 40px;
  line-height: 52px;
  letter-spacing: -2px;
}

h4 {
  font-size: 36px;
  line-height: 48px;
  letter-spacing: -2px;
}

h5 {
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -1px;
}

h6 {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -.7px;
}

.sub-color {
  color: #494949;
}

.sub-head {
  font-size: 20px;
  line-height: 28px;
}

p {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.sec-head {
  text-wrap: pretty;
}

.section-padding {
  padding: 60px 40px;
}

.loader-wrap svg {
  fill: #1d1d1d;
}

.butn.butn-bord {
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.butn.butn-bord:hover {
  background: var(--bg-color);
  color: #fff;
}

.butn.butn-bg {
  border: 1px solid var(--main-color);
  background: var(--main-color);
  color: #fff;
}

.butn.butn-bg:hover {
  background: transparent;
  color: inherit;
}

.icon.invert img {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.butn .icon {
  width: 18px;
}

.butn:hover .icon.invert img {
  -webkit-filter: invert(0);
  filter: invert(0);
}

/* ====================== [ Start Responsive ] ====================== */
@media screen and (max-width: 992px) {
  .main-container {
    position: relative;
  }

  .left-side {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: auto;
    display: block !important;
    padding: 20px 30px !important;
    z-index: 9999;
  }

  .left-side .butn {
    margin-bottom: 8px;
  }

  .left-side .butn.pt-5 {
    padding-top: 10px !important;
  }

  .left-side .butn.mt-10 {
    margin-top: 0 !important;
  }

  .left-side .info {
    display: none;
  }

  .right-side {
    width: 100%;
  }

  .header-ca .main-box {
    padding-top: 140px;
  }

  .header-ca .serv {
    margin-top: 10px;
  }

  .header-ca .awards .awards-swiper {
    height: 300px;
  }

  .testimonials-ca .sec-head .gl-rate {
    margin-left: 0;
  }

  .header-ca .awards .item .img {
    padding-top: 0 !important;
  }

  .header-ca .awards .item .img img {
    padding-bottom: 25%;
  }

}

@media screen and (max-width: 768px) {

  .header-ca .caption h1,
  .about-ca .main-box .caption h1 {
    font-size: 65px;
    line-height: 65px;
  }

}


.footer-sa .call-action h2 {
  font-size: 100px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  position: relative;
}

.footer-sa .call-action h2 .buton {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: var(--main-color);
  position: absolute;
  top: -80px;
  right: 8%;
  font-size: 32px;
  color: #212121;
}

.footer-sa .call-action h2 .buton img {
  width: 30px;
}

.footer-sa .logo {
  width: 160px;
}

.footer-sa .contact-info .item {
  margin-bottom: 50px;
}

.footer-sa .contact-info .item span {
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-sa .contact-info .social-icon a {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 14px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.footer-sa .contact-info .social-icon a:hover {
  border-color: #fff;
}

.footer-sa .sub-footer .copy p {
  font-size: 14px;
}

.footer-sa .sub-footer .copy p a {
  color: #fff;
}

.footer-sa .sub-footer .links {
  width: 100%;
}

.footer-sa .sub-footer .links a {
  font-size: 14px;
}

.footer-sa .sub-footer .links .active {
  color: #fff;
}


.footer-sa .call-action h2 {
  font-size: 70px;
}

.footer-sa .call-action h2 .buton {
  display: none !important;
}

.footer-sa .call-action h2 {
  font-size: 35px;
  line-height: 1.4;
}

/* --------------- Testimonials Carousel --------------- */
.testimonials-carousel {
  margin: 40px 0;
}


.testimonials-carousel .swiper-slide {
  height: auto;
  display: flex;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(181, 247, 64, 0.2);
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 300px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(181, 247, 64, 0.5);
  transform: translateY(-5px);
}

.card-content {
  margin-bottom: 20px;
}

.testimonial-text h6 {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  color: #ccc;
  margin: 0;
  letter-spacing: normal;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-img {
  flex-shrink: 0;
}

.testimonial-img img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-info {
  flex: 1;
}

.testimonial-info h6 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 5px 0;
  letter-spacing: normal;
}

.testimonial-info span {
  font-size: 12px;
  color: #999;
  display: block;
}

/* Carousel controls */
.testimonials-carousel .controls {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}

.testimonials-carousel .swiper-button-next,
.testimonials-carousel .swiper-button-prev {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(181, 247, 64, 0.1);
  border: 1px solid rgba(181, 247, 64, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #b5f740;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  transform: none !important;
}

.testimonials-carousel .swiper-button-next:hover,
.testimonials-carousel .swiper-button-prev:hover {
  background: rgba(181, 247, 64, 0.2);
  border-color: #b5f740;
}

/* Responsive - 3 items per row on desktop */

@media (max-width: 768px) {
  .testimonial-card {
    padding: 20px;
    min-height: 250px;
  }

  .testimonial-text h6 {
    font-size: 13px;
  }
}


.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures the video covers the area */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  /* Lower z-index so text is above */
}

/* ============ About Carousel ============ */
.about-carousel {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 20px;
  height: 350px;
}

.about-carousel .about-carousel-swiper {
  width: 100%;
  height: 100%;
}

.about-carousel .swiper-slide {
  width: 100%;
  height: 350px;
  align-items: center;
  justify-content: center;
}

.carousel-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.carousel-card {
  background: #f5f5f5;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.carousel-card .card-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.carousel-card .card-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.carousel-card .card-content {
  padding: 15px;
  text-align: center;
}

.carousel-card .card-content h5 {
  font-size: 16px;
  font-weight: 600;
  color: black;
  margin-bottom: 8px;
}

.carousel-card .card-content p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.about-carousel .carousel-controls {
  margin-top: 20px;
  gap: 10px;
  justify-content: center;
}

.about-carousel .carousel-controls .swiper-button-next,
.about-carousel .carousel-controls .swiper-button-prev {
  position: static;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 12px;
  color: #151515;
  background: #D6D8E8;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.about-carousel .carousel-controls .swiper-button-next:hover,
.about-carousel .carousel-controls .swiper-button-prev:hover {
  background: #151515;
  color: #fff;
}

.about-carousel .carousel-controls .swiper-button-next:after,
.about-carousel .carousel-controls .swiper-button-prev:after {
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .carousel-cards-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .carousel-card .card-image {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .carousel-cards-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .carousel-card .card-image {
    height: auto;
    /* height: 150px; */
  }

  .section-padding {
    padding: 40px 20px;
  }
}

/* Hide default Swiper pseudo-element icons reliably */
.about-carousel .carousel-controls .swiper-button-next::after,
.about-carousel .carousel-controls .swiper-button-prev::after,
.swiper-button-next::after,
.swiper-button-prev::after {
  display: none !important;
  content: none !important;
}

/* Bottom carousel styles (mirrors about-carousel) */
.bottom-carousel {
  border-radius: 20px;
  overflow: hidden;
  /* padding: 20px; */
  /* background: #fff; */
}

.bottom-carousel .bottom-carousel-swiper {
  width: 100%;
}

.bottom-carousel .swiper-slide {
  width: 100%;
  height: auto;
}

.bottom-carousel .carousel-controls {
  margin-top: 20px;
  gap: 10px;
  justify-content: center;
}

.bottom-carousel .carousel-controls .swiper-button-next,
.bottom-carousel .carousel-controls .swiper-button-prev {
  position: static;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 12px;
  color: #151515;
  background: #D6D8E8;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bottom-carousel .carousel-controls .swiper-button-next:hover,
.bottom-carousel .carousel-controls .swiper-button-prev:hover {
  background: #151515;
  color: #fff;
}

.bottom-carousel .carousel-controls .swiper-button-next:after,
.bottom-carousel .carousel-controls .swiper-button-prev:after {
  display: none;
}






.work-card {
  background: #212121;
  border-radius: 16px;
  padding: 30px;
  height: 100%;
  border: 1px solid rgba(181, 247, 64, 0.25);
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(181, 247, 64, 0.18);
}

/* Heading */
.work-card h4 {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #b5f740;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  /* FIXES CHARACTER CROWDING */
  margin-bottom: 16px;
}

/* Step Number */
.step-number {
  font-size: 0.9rem;
  font-weight: 600;
  color: #151515;
  background: #b5f740;
  padding: 4px 10px;
  border-radius: 6px;
}

/* Text */
.work-card p {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 14px;
  opacity: 0.9;
}


.work-card ul li {
  color: #ffffff;
  font-size: 0.9rem;
  margin-bottom: 10px;
  opacity: 0.85;
}

/* Dark neon About styles (appended) */
.about-dark {
  background: #0f0f11;
  color: white;
}

.about-dark .sec-head h2 {
  color: var(--main-color);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.about-dark .lead {
  max-width: 900px;
  margin: 0 auto 18px;
}

.about-dark .how-we-think {
  border: 1px solid rgba(175, 255, 120, 0.06);
  border-radius: 12px;
  background: #333333;
}

.about-dark .how-we-think h5 {
  color: var(--main-color);
  margin-bottom: 8px;
  letter-spacing: normal;
  font-weight: 800;
  font-size: 24px;
}

.about-dark .observe-box {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border-radius: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.about-dark .observe-box ul {
  margin: 8px 0 0 18px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 30px;
}

.about-dark .card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px
}

.about-dark .card-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.00));
  border: 1px solid rgba(134, 255, 59, 0.08);
  padding: 22px;
  border-radius: 12px;
  min-height: 160px
}

.about-dark .card-head {
  color: #b6ff63;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
  display: flex;
  align-items: center
}

.about-dark .card-body {
  font-size: 16px;
  line-height: 1.5
}

@media(max-width:992px) {
  .about-dark .card-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:576px) {
  .about-dark .card-grid {
    grid-template-columns: 1fr
  }

  .about-dark .sec-head h2 {
    font-size: 22px
  }
}

@media (max-width: 768px) {
  .about-dark .observe-box ul {
    grid-template-columns: repeat(1, 1fr);
  }

  .about-dark .card-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Enhancements: typography, hover, small animations */
.about-dark .display-head {
  font-size: 36px;
  line-height: 1.05;
  margin-bottom: 12px;
  font-weight: 800
}

.about-dark .lead {
  font-size: 15px
}

.about-dark .observe-list li {
  margin-bottom: 8px
}

.about-dark .card-item {
  transition: transform .35s ease, box-shadow .35s ease;
  cursor: default
}

.about-dark .card-item:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.6)
}

.about-dark .plus {
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #86ff3b;
  color: #86ff3b;
  text-align: center;
  line-height: 29px;
  margin-right: 10px;
  font-weight: 700
}


/* small responsive tweaks */
@media(max-width:1200px) {
  .about-dark .display-head {
    font-size: 38px
  }
}

@media (max-width: 768px) {

  /* Adjust breakpoint as needed */
  .observe-box.p-3 ul.observe-list {
    grid-template-columns: 1fr !;
    /* Stack items vertically on mobile */
  }
}


/* Scale-up: larger typography and spacing */
.about-dark .display-head {
  font-size: 44px
}

.about-dark .lead {
  font-size: 17px
}

.about-dark .how-we-think {
  padding: 32px
}

.about-dark .how-we-think .small {
  font-size: 18px
}

.about-dark .observe-box {
  padding: 22px
}

.about-dark .card-grid {
  gap: 13px
}

.about-dark .card-item {
  padding: 36px;
  border-radius: 16px
}

.about-dark .card-head .plus {
  width: 48px;
  height: 48px;
  line-height: 42px;
  font-size: 18px;
  margin-right: 12px
}

/* Readability & alignment improvements */
.about-dark .container {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px
}

.about-dark .sec-head {
  text-align: center
}

.about-dark .sec-head .lead {
  max-width: 600px;
  margin: 8px auto 22px;
  line-height: 1.6;
}

.about-dark .how-we-think {
  padding: 22px
}


.about-dark .observe-box {
  padding: 18px
}

.about-dark .observe-list {
  list-style: none;
  margin: 6px 0 0 0;
  padding: 0;
  display: block
}

.about-dark .observe-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: #d8ffd4
}

.about-dark .observe-list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #86ff3b;
  box-shadow: 0 0 8px rgba(134, 255, 59, 0.12)
}

/* Grid: 3 columns desktop, 2 tablet, 1 mobile */
.about-dark .card-grid {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr
}

.about-dark .card-grid {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr
}

@media(max-width:1100px) {
  .about-dark .card-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {
  .about-dark .card-grid {
    grid-template-columns: 1fr
  }
}

.about-dark .card-item {
  padding: 26px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0.00));
  backdrop-filter: blur(6px)
}


/* Decorative accents for unique look */
.about-dark .card-item:before {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(134, 255, 59, 0.12), rgba(134, 255, 59, 0.02));
  transform: rotate(10deg);
  pointer-events: none
}

.about-dark .card-item:after {
  content: '';
  position: absolute;
  left: -30%;
  bottom: -50px;
  width: 140%;
  height: 40%;
  background: linear-gradient(120deg, rgba(134, 255, 59, 0.02), rgba(255, 255, 255, 0));
  transform: skewY(-6deg);
  opacity: 0.6;
  pointer-events: none
}

.about-dark .card-item .card-head .plus {
  border-color: #8cff44;
  color: #8cff44;
  background: rgba(140, 255, 68, 0.04)
}

.about-dark .card-item .card-head {
  z-index: 2
}

.about-dark .card-item .card-body {
  z-index: 2;
  position: relative
}

/* Curve top to match above section */
.about-dark.curve-top {
  position: relative;
  border-radius: 20px;
  margin-top: -36px;
  padding-top: 56px;
  box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.25)
}

.about-dark.curve-top:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -56px;
  height: 56px;
  background: transparent
}

.about-dark .card-body ul {
  padding-left: 18px;
  margin: 8px 0
}


.about-dark .card-head .plus {
  width: 36px;
  height: 36px;
  line-height: 32px;
  font-size: 16px
}

/* Improve overall line-length and readable paragraphs */
.about-dark p {
  margin: 0 0 12px;
  font-size: 18px;
}