@font-face {
  font-family: 'Maleah';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/maleah/Maleah-Light.otf') format('opentype');
}

@font-face {
  font-family: 'Maleah';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/maleah/Maleah-Regular.otf') format('opentype');
}
@font-face {
  font-family: 'Maleah';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/maleah/Maleah-Bold.otf') format('opentype');
}


@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/montserrat/Montserrat-Light.ttf') format('truetype');
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/montserrat/Montserrat-Regular.ttf') format('truetype');
}
/**----------------------------------------
START: Theme Default CSS
----------------------------------------*/
:root {
  /**
  @Font-Family Declaration
  */
  --tj-ff-body: 'Montserrat', sans-serif;
  --tj-ff-heading: 'Maleah', sans-serif;
  --tj-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @Font-weight Declaration
  */
  --tj-fw-normal: normal;
  --tj-fw-thin: 100;
  --tj-fw-elight: 200;
  --tj-fw-light: 300;
  --tj-fw-regular: 400;
  --tj-fw-medium: 500;
  --tj-fw-sbold: 600;
  --tj-fw-bold: 700;
  --tj-fw-ebold: 800;
  --tj-fw-black: 900;
  /**
  @Font-Size Declaration
  */
  --tj-fs-body: 16px;
  --tj-fs-p: 16px;
  --tj-fs-h1: 74px;
  --tj-fs-h2: 36px;
  --tj-fs-h3: 28px;
  --tj-fs-h4: 24px;
  --tj-fs-h5: 20px;
  --tj-fs-h6: 18px;
  /**
  @Color Declaration
  */
  --tj-color-common-white: #ffffff;
  --tj-color-common-black: #000000;
  --tj-color-heading-primary: #000;
  --tj-color-text-body: #000;
  --tj-color-text-body-2: #a9b8b8;
  --tj-color-text-body-3: #67787a;
  --tj-color-text-body-4: #18292c;
  --tj-color-text-body-5: rgba(255, 255, 255, 0.8);
  --tj-color-theme-primary: #064322;
  --tj-color-theme-bg: #d8e5e5;
  --tj-color-theme-bg-2: #cee0e0;
  --tj-color-theme-bg-3: #202e30;
  --tj-color-theme-dark: #0c1e21;
  --tj-color-theme-dark-2: #18292c;
  --tj-color-theme-dark-3: #364e52;
  --tj-color-theme-dark-4: #67787a;
  --tj-color-theme-dark-5: #676e7a;
  --tj-color-red-1: #ff0000;
  --tj-color-grey-1: #ecf0f0;
  --tj-color-grey-2: #a9b8b8;
  --tj-color-grey-3: rgba(255, 255, 255, 0.1019607843);
  --tj-color-border-1: #c9d1d1;
  --tj-color-border-2: #313d3d;
  --tj-color-border-3: rgba(255, 255, 255, 0.1490196078);
  --tj-color-border-4: rgba(255, 255, 255, 0.2);
  --tj-color-border-5: rgba(30, 138, 138, 0.1490196078);
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.site-main {
  position: relative;
}

body {
  font-family: var(--tj-ff-body);
  font-size: var(--tj-fs-body);
  font-weight: 300;
  color: var(--tj-color-text-body);
  /* background-color: var(--tj-color-grey-1); */
  line-height: 1.5;
}

a {
  text-decoration: none;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--tj-ff-heading);
  color: var(--tj-color-heading-primary);
  margin-top: 0px;
  font-weight: var(--tj-fw-medium);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

h1 {
  font-size: var(--tj-fs-h1);
  line-height: 1.108;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  h1 {
    font-size: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  h1 {
    font-size: 45px;
  }
}

h2 {
  font-size: var(--tj-fs-h2);
  line-height: 1.125;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  h2 {
    font-size: 32px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  h2 {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 25px;
  }
}

h3 {
  font-size: var(--tj-fs-h3);
  line-height: 1.25;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h3 {
    font-size: 28px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  h3 {
    font-size: 25px;
  }
}

h4 {
  font-size: var(--tj-fs-h4);
  line-height: 1.333;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h4 {
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: var(--tj-fs-h5);
  line-height: 1.4;
}

ul {
  margin: 0px;
  padding: 0px;
}

a,
button,
span,
p,
input,
textarea,
li,
svg path,
h1,
h2,
h3,
h4,
h5 {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

a:focus,
button:focus,
button:focus-visible {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: var(--tj-color-theme-primary);
  outline: none;
  border: none;
  background: transparent;
  padding: 0;
}

input[type=tel],
input[type=text],
input[type=email],
textarea {
  outline: none;
  background-color: var(--tj-color-common-white);
  height: auto;
  width: 100%;
  font-size: var(--tj-fs-body);
  border: 1px solid var(--tj-color-border-1);
  color: var(--tj-color-text-body);
  padding: 10px 15px;
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
}

*::-moz-selection {
  background: var(--tj-color-common-black);
  color: var(--tj-color-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--tj-color-common-black);
  color: var(--tj-color-common-white);
  text-shadow: none;
}

::selection {
  background: var(--tj-color-common-black);
  color: var(--tj-color-common-white);
  text-shadow: none;
}

*::-webkit-input-placeholder {
  color: var(--tj-color-text-body);
  font-size: var(--tj-fs-body);
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
*::-moz-placeholder {
  color: var(--tj-color-text-body);
  font-size: var(--tj-fs-body);
  opacity: 1;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
*:-ms-input-placeholder {
  color: var(--tj-color-text-body);
  font-size: var(--tj-fs-body);
  opacity: 1;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
*::-ms-input-placeholder {
  color: var(--tj-color-text-body);
  font-size: var(--tj-fs-body);
  opacity: 1;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}

/**
Common Classes CSS
*/

img {
  max-width: 100%;
}

.section-gap {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-gap {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.section-gap-x {
  -webkit-margin-start: 15px;
  margin-inline-start: 15px;
  -webkit-margin-end: 15px;
  margin-inline-end: 15px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-gap-x {
    -webkit-margin-start: 12px;
    margin-inline-start: 12px;
    -webkit-margin-end: 12px;
    margin-inline-end: 12px;
  }
}

.gap-0 {
  --bs-gutter-x: 0;
}
.gap-0 .row {
  --bs-gutter-x: 0;
}

.wow {
  visibility: hidden;
}

#smooth-content {
  padding-bottom: 15px;
  will-change: transform;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  #smooth-content {
    padding-bottom: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  [data-speed=".8"] {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
  }
}

/**
Buttons CSS
*/
.tj-primary-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  background-color: var(--tj-color-theme-primary);
  font-size: 16px;
  font-weight: var(--tj-fw-sbold);
  padding: 15px 20px 15px 20px;
  text-align: center;
  /* border-radius: 50px; */
  line-height: 1;
  z-index: 2;
  overflow: hidden;
  white-space: nowrap;
}
.tj-primary-btn .btn-text {
  color: var(--tj-color-common-white);
  overflow: hidden;
}
.tj-primary-btn .btn-text span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  text-shadow: 0 30px 0;
  color: #fff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.tj-primary-btn .btn-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  border-radius: 50%;
}
.tj-primary-btn .btn-icon i {
  color: var(--tj-color-common-white);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tj-primary-btn.transparent-btn {
  background-color: transparent;
  border: 1px solid var(--tj-color-border-1);
  text-transform: uppercase;
}
.tj-primary-btn.transparent-btn .btn-text {
  color: var(--tj-color-heading-primary);
}
.tj-primary-btn.transparent-btn:hover {
  border-color: var(--tj-color-common-white);
}
.tj-primary-btn:hover .btn-text span {
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
}
.tj-primary-btn:hover .btn-icon i {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.header-area {
  background-color: var(--tj-color-common-white);
  border-end-start-radius: 12px;
  border-end-end-radius: 12px;
  position: relative;
  z-index: 99;
}
.header-area.header-2.header-absolute {
  position: relative;
  top: 30px;
  /* width: 100%; */
  z-index: 999;
  background-color: transparent;
  border-radius: 0;
}
.header-area.header-2.header-absolute > .container-fluid {
  --bs-gutter-x: 0;
}
.header-area.header-2.header-absolute > .container-fluid > .row {
  --bs-gutter-x: 0;
}
/* .header-area.header-2.header-absolute .header-wrapper {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 10px 24px;
  border-radius: 14px;
} */
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-area.header-2.header-absolute {
    padding: 0 15px;
    top: 15px !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area.header-2.header-absolute .header-wrapper {
    padding: 10px 16px;
  }
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  z-index: 99;
  position: relative;
  align-items: center;
}

@media (min-width: 1024px){
  .header-wrapper {
    margin: 0 35px;
  }
}

.site_logo .logo {
  display: inline-block;
  max-width: 150px;
  width: 100%;
}

.header-contact {
  font-size: 20px;
  line-height: 1;
  color: #fff;
  gap: 8px;
}

.header-contact:hover {
  color: #fff;
}

.header-contact .call-text {
  font-weight: var(--tj-fw-sbold);
  position: relative;
}
.header-contact .call-text::after {
  content: "";
  position: absolute;
  bottom: -1px;
  inset-inline-end: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}
.header-contact:hover .call-text::after {
  -webkit-animation: linehover 0.8s linear;
  animation: linehover 0.8s linear;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-contact {
    font-size: 18px;
  }
}
.header-right-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-wrapper:has(.mega-menu) {
  position: static;
}

.mainmenu ul > li:has(.mega-menu),
.mobile_menu ul > li:has(.mega-menu) {
  position: static;
}
.mainmenu ul > li > .mega-menu-pages .mega-menu-list a:has(.mega-menu-badge),
.mobile_menu ul > li > .mega-menu-pages .mega-menu-list a:has(.mega-menu-badge) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hamburger_menu .mean-container .mean-nav ul li:has(.tj-demo-thumb) > a {
  border-bottom: 0;
}
.hamburger_menu .mean-container .mean-nav ul li .mega-menu li a:has(.mega-menu-badge),
.hamburger_menu .mean-container .mean-nav ul li .mega-menu-service a:has(.mega-menu-badge) {
  gap: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/**----------------------------------------
START: Theme Footer CSS
----------------------------------------*/
.tj-footer-section {
  background-color: var(--tj-color-theme-bg);
  position: relative;
  z-index: 1;
  /* padding-top: 195px; */
  overflow: hidden;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-footer-section {
    margin-bottom: 0;
    border-end-start-radius: 0;
    border-end-end-radius: 0;
  }
}
.copyright-content-area .copyright-text p {
  margin: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .copyright-content-area .copyright-text {
    width: 100%;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .copyright-content-area {
    gap: 18px;
  }
}

.tj-footer-section.footer-2 {
  background-color: var(--tj-color-theme-dark);
}

.tj-copyright-area-2 .copyright-content-area {
  padding: 25px 0;
}
.tj-copyright-area-2 .copyright-text p {
  color: var(--tj-color-text-body-2);
  text-align: center;
  font-size: 14px;
}

.body-overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  inset-inline-start: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  backdrop-filter: blur(10px);
}

/**----------------------------------------
START: Heading CSS
----------------------------------------*/
.sec-heading {
  -webkit-margin-start: auto;
  margin-inline-start: auto;
  -webkit-margin-end: auto;
  margin-inline-end: auto;
  width: 100%;
  margin-bottom: 30px;
}
.sec-heading-centered {
  max-width: 550px;
  text-align: center;
}
.sec-heading .sec-title {
  margin-bottom: 0;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sec-heading {
    margin-bottom: 35px;
  }
}

.line {
  position: relative;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  --highlight-offset: 0%;
  background-image: -webkit-gradient(linear, left top, right top, from(var(--tj-color-heading-primary)), to(var(--tj-color-text-body-2)));
  background-image: linear-gradient(90deg, var(--tj-color-heading-primary) var(--highlight-offset), var(--tj-color-text-body-2) var(--highlight-offset));
}

/**----------------------------------------
START: About CSS
----------------------------------------*/
.about-img-area {
  position: relative;
  -webkit-margin-end: -8px;
  margin-inline-end: -8px;
}
.about-img-area .about-img {
  width: 100%;
  height: 100%;
  position: relative;
}
.about-img-area .about-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
/* @media (max-width: 575px) {
.about-img-area .box-area {
max-width: 230px;
}
} */
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about-img-area {
    margin-top: 15px;
    -webkit-margin-end: 0;
    margin-inline-end: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-img-area {
    height: 100%;
  }
}

.bg-shape-2, .bg-shape-1 {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  max-width: 370px;
  width: 100%;
  z-index: -1;
  mix-blend-mode: difference;
  pointer-events: none;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bg-shape-2, .bg-shape-1 {
    max-width: 260px;
  }
}
.bg-shape-2 {
  top: inherit;
  inset-inline-start: inherit;
  bottom: 0;
  inset-inline-end: 0;
}

.bg-shape-4 {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  max-width: 915px;
  z-index: -1;
}

.bg-shape-4 {
  bottom: auto;
  inset-inline-start: auto;
  top: 0;
  inset-inline-end: 0;
  -webkit-transform: scale(-1);
  -ms-transform: scale(-1);
  transform: scale(-1);
}

.tj-project-section-2 {
  overflow: hidden;
}
.tj-project-section-2 .container-fluid,
.tj-project-section-2 .project-wrapper {
  padding: 0;
}

.project-wrapper {
  padding: 0 15px;
}
@media (max-width: 575px) {
  .project-wrapper {
    padding: 0;
  }
}

.project-item {
  background-color: var(--tj-color-common-white);
  position: relative;
  overflow: hidden;
}
.project-item .project-img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.project-item .project-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.project-slider .project-item {
  position: relative;
  /* min-height: 550px; */
  overflow: hidden;
}
.project-slider .project-item .project-img {
  position: relative;
  width: 100%;
  height: 482px;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
@media (max-width: 768px) {
  .project-slider .project-item .project-img {
    height: 250px !important;
  }
}
.testimonial-wrapper {
  position: relative;
  height: 100%;
}
@media (max-width: 575px) {
  .testimonial-wrapper {
    -webkit-margin-end: -12px;
    margin-inline-end: -12px;
  }
}
.testimonial-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 30px;
  border-top: 1px dashed var(--tj-color-border-1);
}
.testimonial-author .author-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.testimonial-author .author-img {
  width: 59px;
  height: 59px;
  border-radius: 50%;
  overflow: hidden;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-author .author-img {
    width: 50px;
    height: 50px;
  }
}
.testimonial-author .title {
  margin-bottom: 0;
  line-height: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-author {
    padding-top: 20px;
  }
}

.star-ratings {
  font-size: 17px;
  line-height: 1;
  position: relative;
  width: 100% !important;
}
.star-ratings .fill-ratings {
  color: var(--tj-color-theme-primary);
  padding: 0;
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
  color: #f2ae31;
}

.review-source img {
  width: 65px;
}

.swiper-pagination-area {
  text-align: center;
  line-height: 0;
  margin-top: 55px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .swiper-pagination-area {
    margin-top: 30px;
  }
}

.slider-navigation {
  gap: 13px;
}

.slider-next,
.slider-prev {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 24px;
  background-color: transparent;
  border: 1px solid var(--tj-color-border-1);
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.slider-next .anim-icon,
.slider-prev .anim-icon {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.slider-next .anim-icon i,
.slider-prev .anim-icon i {
  position: relative;
  top: 0;
  color: var(--tj-color-common-black);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.slider-next .anim-icon i:last-child,
.slider-prev .anim-icon i:last-child {
  position: absolute;
  -webkit-transform: translateX(150%);
  -ms-transform: translateX(150%);
  transform: translateX(150%);
  color: var(--tj-color-common-white);
}
.slider-next:hover,
.slider-prev:hover {
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
}
.slider-next:hover .anim-icon i:first-child,
.slider-prev:hover .anim-icon i:first-child {
  -webkit-transform: translateX(-150%);
  -ms-transform: translateX(-150%);
  transform: translateX(-150%);
}
.slider-next:hover .anim-icon i:last-child,
.slider-prev:hover .anim-icon i:last-child {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-next,
  .slider-prev {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

.slider-next .anim-icon i:last-child {
  -webkit-transform: translateX(-150%);
  -ms-transform: translateX(-150%);
  transform: translateX(-150%);
}
.slider-next:hover .anim-icon i:first-child {
  -webkit-transform: translateX(150%);
  -ms-transform: translateX(150%);
  transform: translateX(150%);
}

.swiper-pagination-area {
  text-align: center;
  line-height: 0;
  margin-top: 55px;
}
.swiper-pagination-area.white-pagination .swiper-pagination-bullet {
  background-color: var(--tj-color-common-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .swiper-pagination-area {
    margin-top: 30px;
  }
}
.swiper-pagination-bullet {
  width: 12px;
  height: 8px;
  background-color: var(--tj-color-theme-primary);
  border-radius: 30px;
  opacity: 0.15;
  position: relative;
  margin: 5px;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.swiper-pagination-bullet-active {
  width: 64px;
  opacity: 1;
}

.awards {
  position: absolute;
  inset-inline-start: 15px;
  top: 15px;
  background: #fff;
  padding: 5px;
  font-size: 14px;
  z-index: 2;
}

.tj-contact-section {
  background-color: var(--tj-color-theme-dark);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.tj-contact-section .sec-heading {
  -webkit-margin-start: 0;
  margin-inline-start: 0;
  -webkit-margin-end: 0;
  margin-inline-end: 0;
  margin-bottom: 35px;
}
.tj-contact-section .sec-heading .sec-title {
  color: var(--tj-color-common-white);
}

.contact-form.style-2 .sec-title {
  font-size: 21px;
}
.contact-form .form-input {
  margin-bottom: 27px;
  position: relative;
}
.contact-form .form-input textarea,
.contact-form .form-input input[type=tel],
.contact-form .form-input input[type=text],
.contact-form .form-input input[type=email] {
  background-color: transparent;
  color: var(--tj-color-text-body-3);
  padding: 11px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.contact-form .form-input textarea::-webkit-input-placeholder,
.contact-form .form-input input[type=tel]::-webkit-input-placeholder,
.contact-form .form-input input[type=text]::-webkit-input-placeholder,
.contact-form .form-input input[type=email]::-webkit-input-placeholder {
  color: var(--tj-color-text-body-3);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-form .form-input textarea::-moz-placeholder,
.contact-form .form-input input[type=tel]::-moz-placeholder,
.contact-form .form-input input[type=text]::-moz-placeholder,
.contact-form .form-input input[type=email]::-moz-placeholder {
  color: var(--tj-color-text-body-3);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-form .form-input textarea:-ms-input-placeholder,
.contact-form .form-input input[type=tel]:-ms-input-placeholder,
.contact-form .form-input input[type=text]:-ms-input-placeholder,
.contact-form .form-input input[type=email]:-ms-input-placeholder {
  color: var(--tj-color-text-body-3);
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-form .form-input textarea::-webkit-input-placeholder, .contact-form .form-input input[type=tel]::-webkit-input-placeholder, .contact-form .form-input input[type=text]::-webkit-input-placeholder, .contact-form .form-input input[type=email]::-webkit-input-placeholder {
  color: var(--tj-color-text-body-3);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-form .form-input textarea::-moz-placeholder, .contact-form .form-input input[type=tel]::-moz-placeholder, .contact-form .form-input input[type=text]::-moz-placeholder, .contact-form .form-input input[type=email]::-moz-placeholder {
  color: var(--tj-color-text-body-3);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-form .form-input textarea:-ms-input-placeholder, .contact-form .form-input input[type=tel]:-ms-input-placeholder, .contact-form .form-input input[type=text]:-ms-input-placeholder, .contact-form .form-input input[type=email]:-ms-input-placeholder {
  color: var(--tj-color-text-body-3);
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-form .form-input textarea::-ms-input-placeholder, .contact-form .form-input input[type=tel]::-ms-input-placeholder, .contact-form .form-input input[type=text]::-ms-input-placeholder, .contact-form .form-input input[type=email]::-ms-input-placeholder {
  color: var(--tj-color-text-body-3);
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-form .form-input textarea,
  .contact-form .form-input input[type=tel],
  .contact-form .form-input input[type=text],
  .contact-form .form-input input[type=email] {
    padding: 6px 0 10px;
  }
}
.contact-form .form-input textarea {
  height: 130px;
  resize: none;
  padding-top: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-form .form-input {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-form {
    max-width: 100%;
  }
}
.contact-form.style-2 {
  /* max-width: 610px; */
  /* background-color: rgba(255, 255, 255, 0.1); */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 2;
  border-radius: 0;
  padding: 40px 50px;
}
.contact-form.style-2 .form-input {
  margin-bottom: 20px;
  position: relative;
}
.contact-form.style-2 .form-input textarea,
.contact-form.style-2 .form-input input[type=tel],
.contact-form.style-2 .form-input input[type=text],
.contact-form.style-2 .form-input input[type=email] {
  color: #fff;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.contact-form.style-2 .form-input textarea::-webkit-input-placeholder,
.contact-form.style-2 .form-input input[type=tel]::-webkit-input-placeholder,
.contact-form.style-2 .form-input input[type=text]::-webkit-input-placeholder,
.contact-form.style-2 .form-input input[type=email]::-webkit-input-placeholder {
  color: var(--tj-color-text-body-2);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-form.style-2 .form-input textarea::-moz-placeholder,
.contact-form.style-2 .form-input input[type=tel]::-moz-placeholder,
.contact-form.style-2 .form-input input[type=text]::-moz-placeholder,
.contact-form.style-2 .form-input input[type=email]::-moz-placeholder {
  color: var(--tj-color-text-body-2);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-form.style-2 .form-input textarea:-ms-input-placeholder,
.contact-form.style-2 .form-input input[type=tel]:-ms-input-placeholder,
.contact-form.style-2 .form-input input[type=text]:-ms-input-placeholder,
.contact-form.style-2 .form-input input[type=email]:-ms-input-placeholder {
  color: var(--tj-color-text-body-2);
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-form.style-2 .form-input textarea::-webkit-input-placeholder, .contact-form.style-2 .form-input input[type=tel]::-webkit-input-placeholder, .contact-form.style-2 .form-input input[type=text]::-webkit-input-placeholder, .contact-form.style-2 .form-input input[type=email]::-webkit-input-placeholder {
  color: var(--tj-color-text-body-2);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-form.style-2 .form-input textarea::-moz-placeholder, .contact-form.style-2 .form-input input[type=tel]::-moz-placeholder, .contact-form.style-2 .form-input input[type=text]::-moz-placeholder, .contact-form.style-2 .form-input input[type=email]::-moz-placeholder {
  color: var(--tj-color-text-body-2);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-form.style-2 .form-input textarea:-ms-input-placeholder, .contact-form.style-2 .form-input input[type=tel]:-ms-input-placeholder, .contact-form.style-2 .form-input input[type=text]:-ms-input-placeholder, .contact-form.style-2 .form-input input[type=email]:-ms-input-placeholder {
  color: var(--tj-color-text-body-2);
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-form.style-2 .form-input textarea::-ms-input-placeholder, .contact-form.style-2 .form-input input[type=tel]::-ms-input-placeholder, .contact-form.style-2 .form-input input[type=text]::-ms-input-placeholder, .contact-form.style-2 .form-input input[type=email]::-ms-input-placeholder {
  color: var(--tj-color-text-body-2);
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-form.style-2 .form-input textarea:focus,
.contact-form.style-2 .form-input input[type=tel]:focus,
.contact-form.style-2 .form-input input[type=text]:focus,
.contact-form.style-2 .form-input input[type=email]:focus {
  border-color: rgb(255, 255, 255);
}
.contact-form.style-2 .form-input textarea {
  height: 90px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-form.style-2 {
    max-width: 100%;
    -webkit-margin-end: 0;
    margin-inline-end: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-form.style-2 {
    padding: 35px 20px 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-form {
    -webkit-margin-end: 0;
    margin-inline-end: 0;
  }
}

/**----------------------------------------
START: Animate CSS
----------------------------------------*/
@-webkit-keyframes linehover {
  0% {
    width: 100%;
  }
  50% {
    width: 0;
    inset-inline-end: 0;
  }
  100% {
    width: 100%;
    inset-inline-start: 0;
  }
}
@keyframes linehover {
  0% {
    width: 100%;
  }
  50% {
    width: 0;
    inset-inline-end: 0;
  }
  100% {
    width: 100%;
    inset-inline-start: 0;
  }
}

.project-item.h4-project-item {
  padding: 30px;
}
/* .project-item.h4-project-item .project-img {
height: 445px;
border-radius: 10px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
.project-item.h4-project-item .project-img {
height: 345px;
}
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
.project-item.h4-project-item .project-img {
height: 300px;
}
} */
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .project-item.h4-project-item {
    padding: 20px;
  }
}

.contact-form.style-3 {
  max-width: 610px;
  background-color: transparent;
  padding: 0;
}
.contact-form.style-3 .form-input {
  margin-bottom: 12px;
  position: relative;
}
.contact-form.style-3 .form-input textarea,
.contact-form.style-3 .form-input input[type=tel],
.contact-form.style-3 .form-input input[type=text],
.contact-form.style-3 .form-input input[type=email] {
  color: var(--tj-color-text-body);
  padding: 10px 0;
  /* background-color: rgba(0, 0, 0, 0.1); */
  border-bottom: 1px solid var(--tj-color-border-1);
  /* backdrop-filter: blur(10px); */
  border-radius: 0;
}
.contact-form.style-3 .form-input textarea::-webkit-input-placeholder,
.contact-form.style-3 .form-input input[type=tel]::-webkit-input-placeholder,
.contact-form.style-3 .form-input input[type=text]::-webkit-input-placeholder,
.contact-form.style-3 .form-input input[type=email]::-webkit-input-placeholder {
  color: var(--tj-color-text-body);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-form.style-3 .form-input textarea::-moz-placeholder,
.contact-form.style-3 .form-input input[type=tel]::-moz-placeholder,
.contact-form.style-3 .form-input input[type=text]::-moz-placeholder,
.contact-form.style-3 .form-input input[type=email]::-moz-placeholder {
  color: var(--tj-color-text-body);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-form.style-3 .form-input textarea:-ms-input-placeholder,
.contact-form.style-3 .form-input input[type=tel]:-ms-input-placeholder,
.contact-form.style-3 .form-input input[type=text]:-ms-input-placeholder,
.contact-form.style-3 .form-input input[type=email]:-ms-input-placeholder {
  color: var(--tj-color-text-body);
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-form.style-3 .form-input textarea::-webkit-input-placeholder, .contact-form.style-3 .form-input input[type=tel]::-webkit-input-placeholder, .contact-form.style-3 .form-input input[type=text]::-webkit-input-placeholder, .contact-form.style-3 .form-input input[type=email]::-webkit-input-placeholder {
  color: var(--tj-color-text-body-3);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 14px;
}
.contact-form.style-3 .form-input textarea::-moz-placeholder, .contact-form.style-3 .form-input input[type=tel]::-moz-placeholder, .contact-form.style-3 .form-input input[type=text]::-moz-placeholder, .contact-form.style-3 .form-input input[type=email]::-moz-placeholder {
  color: var(--tj-color-text-body-3);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 14px;
}
.contact-form.style-3 .form-input textarea:-ms-input-placeholder, .contact-form.style-3 .form-input input[type=tel]:-ms-input-placeholder, .contact-form.style-3 .form-input input[type=text]:-ms-input-placeholder, .contact-form.style-3 .form-input input[type=email]:-ms-input-placeholder {
  color: var(--tj-color-text-body-3);
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 14px;
}
.contact-form.style-3 .form-input textarea::-ms-input-placeholder, .contact-form.style-3 .form-input input[type=tel]::-ms-input-placeholder, .contact-form.style-3 .form-input input[type=text]::-ms-input-placeholder, .contact-form.style-3 .form-input input[type=email]::-ms-input-placeholder {
  color: var(--tj-color-text-body-3);
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 14px;
}
.contact-form.style-3 .form-input textarea:focus,
.contact-form.style-3 .form-input input[type=tel]:focus,
.contact-form.style-3 .form-input input[type=text]:focus,
.contact-form.style-3 .form-input input[type=email]:focus {
  border-color: var(--tj-color-theme-primary);
}
.contact-form.style-3 .form-input textarea {
  height: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-form.style-3 {
    max-width: 100%;
    margin-bottom: 60px;
  }
}

/**----------------------------------------
START: Hero CSS
----------------------------------------*/
.h5-banner-section {
  background-color: #000;
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 100vh;
  display: flex;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.h5-banner-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #000 -150%, #fff0 100%);
  z-index: 1;
  pointer-events: none;
  /* content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1; */
}

.h5-banner-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, #000 -60%, #fff0 100%);
  z-index: 1;
  pointer-events: none;
}
.h5-banner-area {
  width: 100%;
  position: relative;
  z-index: 2;
  padding-top: 250px;
  /* padding-bottom: 80px;  */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h5-banner-area {
    min-height: 700px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h5-banner-area {
    -webkit-padding-start: 30px;
    padding-inline-start: 30px;
    -webkit-padding-end: 30px;
    padding-inline-end: 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h5-banner-area {
    padding-top: 190px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h5-banner-area {
    padding-top: 160px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h5-banner-area {
    padding: 120px 12px 15px;
    /* min-height: 58vh; */
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h5-banner-area {
    min-height: 700px;
  }
}
.h5-banner-content .banner-title {
  max-width: 715px;
  color: var(--tj-color-common-white);
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 500;
} 
.h5-banner-content img {
  width: 250px;
  margin-bottom: 20px;
}

.h5-banner-section .banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.85;
}

.h5-banner-section .container {
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h5-banner-content .banner-title {
    /* max-width: 560px; */
    font-size: 38px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h5-banner-content .banner-title {
    font-size: 34px;
  }
}
@media (max-width: 575px) {
  .h5-banner-content .banner-title {
    font-size: 28px;
  }
  .h5-banner-content img {
    width: 200px !important;
  }
}

.wow {
  visibility: hidden;
}

/**----------------------------------------
START: Working process CSS
----------------------------------------*/
.sec-heading-centered {
  max-width: 550px;
  -webkit-margin-start: auto;
  margin-inline-start: auto;
  -webkit-margin-end: auto;
  margin-inline-end: auto;
  width: 100%;
  text-align: center;
}

.h5-working-process {
  background-color: var(--tj-color-theme-dark);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/**----------------------------------------
START: Theme Footer CSS
----------------------------------------*/
.tj-footer-section.h5-footer .h5-footer-copyright {
  border-top: 1px dashed var(--tj-color-border-2);
}

/**----------------------------------------
START: Service CSS
----------------------------------------*/
.h6-service-item {
  height: 100%;
  /* padding: 15px; */
  padding-bottom: 0;
  background-color: var(--tj-color-common-white);
  overflow: hidden;
}
.h6-service-item .h6-service-thumb {
  min-height: 280px;
  overflow: hidden;
  position: relative;
}
.h6-service-item .h6-service-thumb img {
  width: 100%;
  min-height: 280px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 500ms;
  transition: -webkit-transform 500ms;
  transition: transform 500ms;
  transition: transform 500ms, -webkit-transform 500ms;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: perspective(0) rotateX(0) rotateY(0) scaleX(1) scaleY(1);
  transform: perspective(0) rotateX(0) rotateY(0) scaleX(1) scaleY(1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .h6-service-item .h6-service-thumb {
    min-height: 240px;
  }
  .h6-service-item .h6-service-thumb img {
    min-height: 240px;
  }
}
.h6-service-item .h6-service-content {
  padding: 25px 15px 30px;
  height: 100%;
}
.h6-service-item .h6-service-content .title {
  font-weight: 400;
  margin: 0;
  font-size: 18px;
}
.h6-service-item .h6-service-index {
  color: var(--tj-color-text-body-3);
  font-size: 16px;
  margin-bottom: 12px;
}
.h6-service-item:hover .h6-service-thumb img {
  -webkit-transform: perspective(400px) rotateX(0.09deg) rotateY(0) scale(1.1);
  transform: perspective(400px) rotateX(0.09deg) rotateY(0) scale(1.1);
}
.h6-service-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.tj-award-wrapper:has(.tj-award-item:hover) .active-bg {
  opacity: 1;
}

/**----------------------------------------
START: Hero CSS
----------------------------------------*/
.h7-hero-content .h7-hero-title span:has(img) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 10px;
}
.h7-hero-content .h7-hero-title span:has(img) img {
  width: 104px;
  height: 104px;
  -o-object-fit: cover;
  object-fit: cover;
  padding: 20px 19px 18px;
  background: linear-gradient(135deg, rgba(30, 138, 138, 0.3) 0%, rgba(30, 138, 138, 0) 50%, rgba(30, 138, 138, 0.3) 100%);
  border: 3px solid var(--tj-color-theme-primary);
  border: 2px solid var(--tj-color-border-5);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 100%;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-hero-content .h7-hero-title span:has(img) img {
    width: 70px;
    height: 70px;
    padding: 15px 14px 13px;
  }
}

/* START: Case Study CSS */
.h7-project {
  position: relative;
  overflow: hidden;
}
.h7-project .sec-heading.style-2 .tj-primary-btn {
  margin-top: 30px;
}
.h7-project-wrapper {
  padding: 0;
}

.h7-project-wrapper .h4-project-item {
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h7-project-wrapper .h4-project-item {
    padding: 0 0 15px 0;
    margin-bottom: 0;
  }
}

/**----------------------------------------
START: Hero CSS
----------------------------------------*/
.h8-hero-content .h8-hero-title span:has(img) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 10px;
}
.h8-hero-content .h8-hero-title span:has(img) img {
  width: 104px;
  height: 104px;
  -o-object-fit: cover;
  object-fit: cover;
  padding: 20px 19px 18px;
  background: linear-gradient(135deg, rgba(30, 138, 138, 0.3) 0%, rgba(30, 138, 138, 0) 50%, rgba(30, 138, 138, 0.3) 100%);
  border: 3px solid var(--tj-color-theme-primary);
  border: 2px solid var(--tj-color-border-5);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 100%;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h8-hero-content .h8-hero-title span:has(img) img {
    width: 70px;
    height: 70px;
    padding: 15px 14px 13px;
  }
}

/**----------------------------------------
START: Testimonial CSS
----------------------------------------*/
.h8-testimonial {
  overflow: hidden;
  position: relative;
  background-color: #fafafa;
}
.h8-testimonial-wrapper {
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(30.6%, var(--tj-color-grey-1)), color-stop(69.4%, var(--tj-color-grey-1)), to(rgba(255, 255, 255, 0)));
  -webkit-mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, var(--tj-color-grey-1) 30.6%, var(--tj-color-grey-1) 69.4%, rgba(255, 255, 255, 0) 100%);
  mask-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(30.6%, var(--tj-color-grey-1)), color-stop(69.4%, var(--tj-color-grey-1)), to(rgba(255, 255, 255, 0)));
  mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, var(--tj-color-grey-1) 30.6%, var(--tj-color-grey-1) 69.4%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 575px) {
  .h8-testimonial-wrapper {
    -webkit-mask-image: none;
    mask-image: none;
    -webkit-margin-start: 12px;
    margin-inline-start: 12px;
    -webkit-margin-end: 12px;
    margin-inline-end: 12px;
  }
}
.h8-testimonial-wrapper .testimonial-item {
  background-color: var(--tj-color-common-white);
  border: 2px solid var(--tj-color-common-white);
  padding: 40px 30px 35px;
  height: 100%;
  border-radius: 8px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h8-testimonial-wrapper .testimonial-item {
    padding: 35px 23px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h8-testimonial-wrapper .testimonial-item {
    padding: 30px 20px;
  }
}
.h8-testimonial-wrapper .testimonial-item .desc {
  font-size: 18px;
  line-height: 1.444;
  padding-top: 23px;
  padding-bottom: 22px;
}
.h8-testimonial-wrapper .testimonial-item .desc p {
  margin-bottom: 0;
  font-size: 16px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h8-testimonial-wrapper .testimonial-item .desc {
    font-size: 17px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h8-testimonial-wrapper .testimonial-item .desc {
    font-size: 16px;
  }
}
.h8-testimonial-wrapper .testimonial-item .testimonial-author .author-img {
  width: 50px;
  height: 50px;
}
.h8-testimonial-wrapper .testimonial-item .testimonial-author .title {
  font-weight: 500;
  margin-bottom: 3px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h9-service .pin-spacer:has(.sec-heading.style-8) {
    height: auto !important;
  }
}

/**----------------------------------------
START: Home 10 About CSS
----------------------------------------*/
.h10-about-content-wrapper {
  max-width: 644px;
  -webkit-margin-start: auto;
  margin-inline-start: auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h10-about-content-wrapper {
    max-width: 629px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h10-about-content-wrapper {
    max-width: 524px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h10-about-content-wrapper {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h10-about-content-wrapper {
    margin-bottom: 30px;
  }
}
.h10-about-content .desc {
  line-height: 1.444;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h10-about-banner {
    height: 100%;
  }
}

/**----------------------------------------
START: Process CSS
----------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h10-process .pin-spacer:has(.sec-heading.style-3) {
    height: auto !important;
  }
}

.amenities-wrapper {
  position: relative;
}

.amenities-container {
  overflow: hidden;
}

.amenities-grid {
  /* display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
  transition: transform 0.3s ease; */
  display: grid;
  grid-template-columns: repeat(7, 1fr); /* 8 per row */
  gap: 30px; /* adjust spacing between items */
  justify-content: center; /* center align the grid */
  align-items: center;
  margin: 0 auto;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 8px;
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.08); */
  margin-bottom: 5px;
  position: relative;
}

.amenity-icon {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  margin: 0 auto;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenity-name {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #2c2c2c;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .amenity-item {
    padding: 15px;
  }
  
  .amenity-icon {
    width: 50px;
    height: 50px;
  }
}

.amenity-item:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 40px;
  background: rgba(0, 0, 0, 0.1);
  top: 50%;
  left: -0.8em;
  transform: translateY(-50%);
}


.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.timeline-column {
  padding: 0 30px;
  position: relative;
}

.timeline-column:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.timeline-item {
  margin-bottom: 45px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.timeline-number {
  font-size: 18px;
  font-weight: 600;
  color: #b8a04c;
  min-width: 35px;
  padding-top: 2px;
}

.timeline-content {
  flex: 1;
}

.timeline-year {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.timeline-title {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .timeline-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .timeline-grid {
    display: flex;
    flex-direction: column;
  }
  
  .timeline-column {
    padding: 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .timeline-column::after {
    display: none;
  }
  
  /* Reorder items for mobile chronological order */
  .timeline-column:nth-child(1) .timeline-item:nth-child(1) { order: 1; }  /* 01 */
  .timeline-column:nth-child(2) .timeline-item:nth-child(1) { order: 2; }  /* 05 */
  .timeline-column:nth-child(1) .timeline-item:nth-child(2) { order: 3; }  /* 02 */
  .timeline-column:nth-child(2) .timeline-item:nth-child(2) { order: 4; }  /* 06 */
  .timeline-column:nth-child(1) .timeline-item:nth-child(3) { order: 5; }  /* 03 */
  .timeline-column:nth-child(2) .timeline-item:nth-child(3) { order: 6; }  /* 07 */
  .timeline-column:nth-child(1) .timeline-item:nth-child(4) { order: 7; }  /* 04 */
  .timeline-column:nth-child(2) .timeline-item:nth-child(4) { order: 8; }  /* 08 */
  .timeline-column:nth-child(3) .timeline-item:nth-child(1) { order: 9; }  /* 09 */
  .timeline-column:nth-child(4) .timeline-item:nth-child(1) { order: 10; } /* 13 */
  .timeline-column:nth-child(3) .timeline-item:nth-child(2) { order: 11; } /* 10 */
  .timeline-column:nth-child(4) .timeline-item:nth-child(2) { order: 12; } /* 14 */
  .timeline-column:nth-child(3) .timeline-item:nth-child(3) { order: 13; } /* 11 */
  .timeline-column:nth-child(4) .timeline-item:nth-child(3) { order: 14; } /* 15 */
  .timeline-column:nth-child(3) .timeline-item:nth-child(4) { order: 15; } /* 12 */
}

@media (max-width: 600px) {
  .timeline-grid {
    display: flex;
    flex-direction: column;
  }
  
  .timeline-column {
    display: grid;
    /* grid-template-columns: 1fr; */
    padding: 0;
  }
  
  .timeline-column::after {
    display: none;
  }
  
  .timeline-item {
    margin-bottom: 20px;
  }
  .timeline-item {
    gap: 5px;
  }
  .timeline-year {
    font-size: 16px;
  }
}

.hero-list {
  padding-bottom: 30px;
}

.position-absolute {
  position: absolute;
}

.hero-list-items {
  display: flex;
}
.hero-list.web span {
  color: #fff;
}

.hero-list-items > div {
  position: relative;
}

.hero-list.mobile li {
  position: relative;
  padding: 5px 5px 5px 30px;
  /* font-size: 18px;
  font-weight: 400; */
  width: 100%;
  /* color: var(--bs-body-color); */
}

.hero-list.mobile li:before {
  position: absolute;
  left: 0;
  top: 8px;
  /* font-family: "Font Awesome 5 Free";
  font-weight: 900; */
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  content: "";
  width: 20px;
  height: 20px;
  background-size: contain;
  /* filter: brightness(1) invert(1); */
  background-image: url(../images/icons/check.webp);
}

li {
  list-style: none;
}


.hero-list-items > div:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -33px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background-color: rgba(255, 255, 255, 0.5); /* Adjust color as needed */
}

/* Remove dividers on mobile screens */
@media (max-width: 575px) {
  .hero-list.web .hero-list-items { 
    display: block;
    text-align: center;
  }
  .hero-list.mobile .hero-list-items {
    display: block;
  }
  .hero-list-items > div {
    padding-bottom: 10px;
  }
  .hero-list-items > div:not(:last-child)::after {
    display: none;
  }
  .h5-banner-section {
    height: 56vh;
    align-items: end;
    padding-bottom: 20px;
  }
  .header-contact .call-text {
    font-size: 14px;
  }
}

.tj-contact-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
/* Contact Details Styles */
.contact-details-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-details {
  /* background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08); */
  /* padding: 40px; */
  backdrop-filter: blur(10px);
}

.contact-item {
  display: flex;
  gap: 20px;
  padding: 10px 0;
  align-items: center;  
}

@media (max-width: 575px) {
  .contact-item {
    gap: 10px !important;
  }
}

.contact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-item:first-child {
  padding-top: 0;
}

.contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.contact-info p {
  font-size: 15px;
  font-weight: 300;
  color: #fff;
  margin: 0;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Map Styles */
.map-container {
  overflow: hidden;
  height: 252px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  display: none;
  background-color: rgb(0 0 0 / .6);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.popup-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 745px;
  width: 100%;
  background: white;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.popup-image {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.popup-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  background: white;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #333;
  transition: all 0.3s ease;
  z-index: 10;
}

.close-btn:hover {
  transform: rotate(90deg);
}

.popup-logo {
  text-align: center;
  margin-bottom: 20px;
}

@media (max-width: 968px) {
  .popup-container {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
  
  .popup-image {
    min-height: 300px;
    max-height: 300px;
  }
  
  .popup-content {
    padding: 40px 30px;
  }
  
  .close-btn {
    background: white;
    border-radius: 50%;
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .popup-content {
    padding: 30px 20px;
  }
}




.contact-container {
  position: fixed;
  right: 0;
  bottom: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.call-us, .whatsapp-us {
  background-color: #f2f2f2;
  border: 1px solid #eee;
  border-radius: 18px 0 0 18px;
  max-width: 60px;
  margin-bottom: 10px;
  text-align: center;
  padding: 5px 6px;
  transition: max-width 0.5s ease-in-out, opacity 0.5s ease-in-out;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.call-us a, .whatsapp-us a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #707070;
}

.whatsapp-us svg {
  width: 35px;
  height: 35px;
  margin-right: 10px;
  margin-left: 5px;
}

.call-us:hover, .whatsapp-us:hover {
  max-width: 255px;
}

.chat-with-us p {
  margin-bottom: 0;
  line-height: 20px;
  font-weight: 500;
  color: #000;
}

@media (max-width: 575px) {
  .call-us:hover, .whatsapp-us:hover{
    max-width: 50px !important;
  }
}

.call-us svg {
  width: 45px !important;
  margin-right: 15px;
}

.error {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}
.iti {
  width: 100%;
}

.contact-form .footer .iti--separate-dial-code .iti__selected-dial-code {
  color: #fff !important;
}

.iti__country-list {
  z-index: 9 !important;
}

@media (max-width: 575px) {
  .map-container {
    margin-bottom: 20px;
  }
  .popup-image {
    display: none;
  }
}