* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}
:root {
  --white: white;
  --border-radius: 10px;
  --text: #30303c;
  --black: #000;
  --grey: #52525d;
  --footer-text: #adb7c5;
  --border: #e2e3e4;
  --background: #f8f8f8;
  --linear: linear-gradient(#02b9ef, #002d78 50%, #752886);
}
body {
  color: var(--text);
  background-color: #fff;
  min-height: 100%;
  font-family: "poppins", sans-serif;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}
.lightbox-section {
  padding: 20px;
  text-align: center;
}

.lightbox-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.lightbox-item {
  display: inline-block;
  cursor: pointer;
}

.lightbox-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Lightbox Modal Styles */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox-modal .lightbox-content {
  position: relative;
  max-height: 90%;
  max-width: 800px;
  width: 800px;
  aspect-ratio: 16/9;
  margin: 20px;
}

.lightbox-video,
.lightbox-image {
  width: 100%;
  height: auto;
  display: none;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.lightbox-modal iframe {
  width: 100%;
  height: 100%;
}

-------------------------------------------- strong {
  font-weight: bold;
}
img {
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  display: inline-block;
  width: 100%;
  height: 100%;
}
input {
  color: inherit;
  font: inherit;
  margin: 0;
}
input {
  line-height: normal;
}
ul {
  list-style-type: none;
}
a {
  text-decoration: none;
}

.logo {
  float: left;
  position: relative;
}
.logo-image {
  max-width: 200px;
  max-height: 45px;
}
.navbar {
  z-index: 20;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100vw;
  padding-top: 12px;
  padding-bottom: 12px;
  position: fixed;
  top: 0;
  backdrop-filter: blur(5px);
}
nav {
  justify-content: space-between;
  align-items: center;
  display: flex;
}
nav ul {
  justify-content: space-between;
  align-items: center;
  display: flex;
  gap: 30px;
}
nav ul li a {
  color: var(--white);
  letter-spacing: 0.25px;
  font-weight: 500;
  transition: color 0.3s;
}
.nav ul li a:hover {
  background-image: var(--linear);
  background-clip: text;
}
.menu-icon {
  display: none;
}

.container {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 0px 20px;
}
section {
  display: block;
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}
section.footer {
  background-color: #140e3d;
  padding-top: 30px;
  padding-bottom: 30px;
}
section.header-section {
  background-image: url("img/header-img.jpg");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 0;
}
section.pt-0 {
  margin-top: -120px;
}
section.bg {
  background-color: var(--background);
}
section.contact {
  background-image: url("img/contact-bg.png");
  background-position: 50% 90%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
}
section.book-section {
  background-image: url("img/book-bg.png");
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.social-link-block {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 12px;
  transition: box-shadow 0.3s;
  display: flex;
}
.border-radius {
  border-radius: var(--border-radius);
}
.center {
  text-align: center;
}
.title-wrapper {
  margin-bottom: 20px;
}
h1 {
  font-size: 20px;
  color: var(--border);
  line-height: 27px;
  text-transform: capitalize;
  font-weight: 400;
  opacity: 60%;
}
.title-wrapper > div {
  width: 50px;
  height: 2px;
  margin-top: 10px;
  background-color: rgba(255, 255, 255, 0.473);
}
h2 {
  text-align: center;
  font-size: 46px;
  font-weight: 600;
  line-height: 55px;
}
h3 {
  font-size: 26px;
  font-weight: 600;
  line-height: 32px;
}
.align-start {
  text-align: left;
}
.element-wrapper {
  margin-top: 60px;
}
.mb-0 {
  margin-bottom: 0;
}
.linear-color {
  -webkit-text-fill-color: transparent;
  background-image: var(--linear);
  background-clip: text;
}
.row {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.social-icon-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.social-link-block:hover {
  box-shadow: 0 6px 9px rgba(0, 0, 0, 0.2);
}
.time-duration {
  color: var(--text);
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
}
.project-list {
  margin-top: 30px;
  margin-bottom: 30px;
}
.project-list.mb-0 {
  margin-bottom: 0;
}
.list-item {
  background-image: url("img/listicon.svg");
  background-position: 0 5px;
  background-repeat: no-repeat;
  background-size: auto 15px;
  margin-bottom: 10px;
  padding-left: 30px;
  line-height: 26px;
}
.number {
  color: var(--black);
  font-size: 26px;
  font-weight: 500;
  line-height: 110%;
}
.card-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  border-right: 1px solid #e0e0e0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 25vw;
  padding-left: 45px;
  padding-right: 45px;
  display: flex;
}
.overlap {
  background-color: rgba(0, 0, 0, 0.85);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.video-overlap {
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
.play-icon {
  backdrop-filter: blur(1px);
  background-image: linear-gradient(
    rgba(255, 255, 255, 0.6) 30%,
    rgba(255, 255, 255, 0.4) 70%
  );
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 50px;
  height: 50px;
  padding: 18px 12px 18px 17px;
  display: flex;
  box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.25);
}
.skill-icon {
  border-radius: 100%;
  width: 50px;
  height: 50px;
}
.hero-wrapper {
  justify-content: space-between;
  height: 100%;
  display: flex;
  position: relative;
}
.text-tricker-mask {
  height: 85px;
  margin-bottom: 20px;
  overflow: hidden;
  padding-top: 10px;
  margin-top: -10px;
  position: relative;
}
.text-triker-wrapper {
  animation: text-tricker 12s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
}
.header-title {
  height: 85px;
  margin-bottom: 15px;
  font-size: 62px;
  font-weight: 600;
  line-height: 85px;
  color: var(--white);
}
/*@keyframes text-tricker {
  0% { margin-top: 0px; }
  5% { margin-top: -100px; }
  16% { margin-top: -100px; }
  21% { margin-top: -200px; }
  32% { margin-top: -200px; }
  37% { margin-top: -300px; }
  48% { margin-top: -300px; }
  53% { margin-top: -400px; }
  64% { margin-top: -400px; }
  69% { margin-top: -500px; }
  80% { margin-top: -500px; }
  85% { margin-top: -600px; }
  99.99% { margin-top: -600px; }
  100% { margin-top: 0px; } 
}*/
@keyframes text-tricker {
  0% {
    margin-top: -600px;
  }
  10% {
    margin-top: -500px;
  }
  15% {
    margin-top: -500px;
  }
  25% {
    margin-top: -400px;
  }
  35% {
    margin-top: -400px;
  }
  40% {
    margin-top: -300px;
  }
  50% {
    margin-top: -300px;
  }
  55% {
    margin-top: -200px;
  }
  65% {
    margin-top: -200px;
  }
  70% {
    margin-top: -100px;
  }
  80% {
    margin-top: -100px;
  }
  85% {
    margin-top: 0px;
  }
  99.99% {
    margin-top: 0px;
  }
  100% {
    margin-top: -600px;
  }
}
@keyframes flip {
  0% {
    margin-top: -450px;
  }
  5% {
    margin-top: -360px;
  }
  20% {
    margin-top: -360px;
  }
  25% {
    margin-top: -270px;
  }
  40% {
    margin-top: -270px;
  }
  45% {
    margin-top: -180px;
  }
  60% {
    margin-top: -180px;
  }
  65% {
    margin-top: -90px;
  }
  80% {
    margin-top: -90px;
  }
  85% {
    margin-top: 0px;
  }
  99.99% {
    margin-top: 0px;
  }
  100% {
    margin-top: -450px;
  }
}
.book-row {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  perspective: 1000px;
  justify-content: space-around;
  display: flex;
}
.book-image {
  max-height: 400px;
}
.book-wrapper {
  transform-style: preserve-3d;
  transition: transform 0.3s;
}
.book-wrapper:hover {
  transform: translate3d(0, 0, 20px);
}
.footer-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--footer-text);
  text-align: center;
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.card-text {
  font-size: 16px;
}
.video-title {
  text-align: center;
  margin-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 24px;
}
.jt-sir-image {
  width: auto;
  max-height: 650px;
}
.hero-title-wrapper {
  flex-direction: column;
  justify-content: center;
  display: flex;
}
.hero-image-block {
  justify-content: center;
  align-items: center;
  width: 40%;
  max-height: 600px;
  display: flex;
}
.featured-wrapper {
  grid-column-gap: 10px;
  flex: none;
  display: flex;
}
.featured-card {
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 4px;
}
.feature-thumbnail {
  border-radius: 6px;
}
.hero-section-overlap {
  background-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.65) 50%,
    rgba(0, 0, 0, 0.5)
  );
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}
.header-pera {
  color: var(--white);
  font-size: 20px;
}
.mockup {
  max-width: 40%;
}
.mockup._2 {
  max-width: 34%;
  margin-right: -30px;
}
.mockup._3 {
  max-width: 34%;
  margin-left: -30px;
}
.button-block {
  grid-column-gap: 20px;
  align-items: center;
  display: flex;
}
.comman-buttton {
  max-width: 200px;
  height: 40px;
  max-height: 40px;
  transition: all 0.3s;
}
.button-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.picture-wrapper {
  grid-column-gap: 8px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}
.picture-wrapper.left-wrapper {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  margin-bottom: 4px;
  animation: photoleft 30s linear infinite;
}
.picture-wrapper.right-wrapper {
  justify-content: flex-end;
  animation: photoright 30s linear infinite;
}
.d-flex {
  grid-column-gap: 4px;
  flex: none;
  display: flex;
}
@keyframes photoleft {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-170%, 0);
  }
}
@keyframes photoright {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(170%, 0);
  }
}
.about-block {
  grid-column-gap: 50px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.lightbox-2 {
  width: 100%;
  max-width: 332px;
}
.full-height {
  object-fit: cover;
}
.flex-block,
.right {
  width: 50%;
}
.skill-card-wrapper {
  display: flex;
}
.skill-card {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  border-right: 1px solid #e0e0e0;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 20%;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}
.skill-card.last {
  border-right-style: none;
}
.project-image {
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  display: flex;
}
.project-detail {
  width: 50%;
}
.project-row {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 100px;
  display: flex;
  gap: 70px;
}
.card-flex {
  flex: none;
  display: flex;
}
.card-flex-wrapper {
  width: 100%;
  display: flex;
}
.video-gallery {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto auto;
  grid-template-columns: 1.2fr 1.2fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}
.roadmap-wrapper {
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr 5px 1fr;
  grid-auto-columns: 1fr;
  position: relative;
}
.line-card {
  background-color: #f0f0f0;
  border-radius: 10px;
  width: 75%;
  padding: 30px;
}
.line-card-block {
  justify-content: flex-start;
  align-items: center;
  width: 50%;
  display: flex;
}
.line-card-block.right {
  margin-left: auto;
}
.line {
  background-color: #e0e0e0;
  width: 100%;
  height: 2px;
  position: relative;
}
.center-line {
  background-color: #e0e0e0;
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 50%;
}
.circle {
  background-image: linear-gradient(130deg, #02b9ef, #002d78 50%, #752886);
  border-radius: 100%;
  flex: none;
  padding: 3px;
  position: relative;
}
.circle.small {
  width: 15px;
  height: 15px;
}
.circle.big {
  width: 20px;
  height: 20px;
}
.circle-inner {
  background-color: var(--white);
  border-radius: 100%;
  width: 100%;
  height: 100%;
}
.connector {
  justify-content: flex-start;
  align-items: center;
  width: 30%;
  display: flex;
}
.connector.left {
  margin-left: -10px;
  margin-right: -7.5px;
}
.connector.right {
  margin-left: -7.5px;
  margin-right: -10px;
}
.row-block {
  max-width: 50%;
}
.cta-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  margin-top: 50px;
  display: flex;
}
.cta-block {
  border-radius: var(--border-radius);
  color: var(--black);
  background-color: #fff;
  width: 250px;
  max-width: 250px;
  padding: 20px;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.cta-header {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  display: flex;
}
.cta-bottom {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  display: flex;
  align-items: center;
}
.cta-arrow {
  width: 15px;
}
.contact-wrapper {
  border-radius: var(--border-radius);
  color: var(--black);
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 20px;
}
.contact-title {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 500;
}
.contact-block {
  margin-top: 35px;
}
.link {
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
}
.contact-post {
  font-size: 14px;
  line-height: 22px;
}
.mobile-card {
  display: none;
}

@media screen and (max-width: 991px) {
  .element-wrapper {
    margin-top: 50px;
  }

  .video-gallery {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  .element-wrapper {
    margin-top: 40px;
  }
}

@media screen and (max-width: 479px) {
  .element-wrapper {
    margin-top: 30px;
  }

  .play-icon {
    max-width: 40px;
    height: 40px;
    padding: 10px 10px 10px 15px;
  }

  .video-gallery {
    grid-template-columns: 1fr;
  }
}

#video-1 {
  grid-area: span 2 / span 2 / span 2 / span 2;
}

@media screen and (max-width: 991px) {
  #video-1 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #video-2,
  #video-3,
  #video-4,
  #video-5 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #video-1,
  #video-2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.lightbox .play-icon {
  position: absolute;
  z-index: 100px;
}

.video-container img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  border-radius: 10px;
}

.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}

.image-container img {
  width: 100%;
  max-width: 200px;
  cursor: pointer;
  border: 2px solid #ccc;
  border-radius: 8px;
}

.play-icon-parent {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
#play-icon-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  cursor: pointer;
}
