@property --clip-vertical {
  syntax: "<percentage>";
  initial-value: 95%;
  inherits: false;
}
@property --clip-horizontal {
  syntax: "<percentage>";
  initial-value: 100%;
  inherits: false;
}
@property --intro-radial {
  syntax: "<percentage>";
  initial-value: 0%;
  inherits: false;
}
@font-face {
  src: url("../assets/fonts/HelveticaNowDisplay-Regular.woff2") format("woff2"), url("../assets/fonts/HelveticaNowDisplay-Regular.woff") format("woff");
  font-family: "HNdisplay";
  font-style: normal;
  font-weight: normal;
}
@font-face {
  src: url("../assets/fonts/HelveticaNowText-Regular.woff2") format("woff2"), url("../assets/fonts/HelveticaNowText-Regular.woff") format("woff");
  font-family: "HNtext";
  font-style: normal;
  font-weight: normal;
}
@font-face {
  src: url("../assets/fonts/HelveticaNowDisplay-ExtBlk.woff2") format("woff2"), url("../assets/fonts/HelveticaNowDisplay-ExtBlk.woff") format("woff");
  font-family: "HNdisplay-Xbold";
  font-style: normal;
  font-weight: normal;
}
/* keyframes */
@keyframes popIn {
  0% {
    scale: 0;
  }
  60% {
    scale: 1.2;
  }
}
@keyframes moveGradient {
  to {
    --intro-radial: 100%;
  }
}
@keyframes showLine {
  0% {
    --clip-horizontal: 100%;
    --clip-vertical: 95%;
  }
  60% {
    --clip-horizontal: 0%;
    --clip-vertical: 95%;
  }
  100% {
    --clip-horizontal: 0%;
    --clip-vertical: 0%;
  }
}
@keyframes slideIn {
  0% {
    opacity: 0;
    translate: 0 50%;
  }
  100% {
    opacity: 1;
    translate: 0 3%;
  }
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

p,
a {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  background-color: #022446;
  color: #f3f3f3;
  font-family: "HNtext";
  margin: 0;
  scroll-behavior: smooth;
}
body .section-title {
  font-size: clamp(3rem, 5vw, 4rem);
  font-family: "HNdisplay";
  margin-bottom: 3rem;
  margin-top: 0;
  color: #f3f3f3;
  letter-spacing: 0.1rem;
  text-transform: capitalize;
}
body .section-title span {
  color: #4db6ac;
}
@media screen and (width >= 1900px) {
  body .section-title {
    font-size: clamp(3rem, 5vw, 5rem);
  }
}
body .section-text {
  font-size: clamp(1rem, 3vw, 1.2rem);
  font-family: "HNtext";
  color: #f3f3f3;
  line-height: 1.75;
  margin-bottom: 2rem;
}
body .section-text span {
  color: #4db6ac;
}
@media screen and (width >= 1900px) {
  body .section-text {
    font-size: clamp(1rem, 3vw, 1.5rem);
  }
}

.section-padding {
  padding: 7rem 3rem 0;
}

.container {
  max-width: 1400px;
  margin: auto;
}

main {
  position: relative;
  z-index: 1;
}

/***********Header***********/
header {
  width: 100%;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  z-index: 2;
}
header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo {
  width: 6rem;
}
header .nav-connect {
  background-color: #4db6ac;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  color: #f3f3f3;
  font-size: 1rem;
  text-align: center;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
header .nav-connect:hover {
  background-color: #3c948b;
  transform: scale(1.05);
}
header.scrolled {
  background: rgba(1, 12, 24, 0.2392156863);
  backdrop-filter: blur(20px);
}

/***********Hero***********/
.hero-section {
  position: relative;
  height: 100vh;
  background: url("../assets/images/hero-image.jpg") no-repeat center top/cover;
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  grid-template-rows: repeat(30, 1fr);
  text-align: right;
}
.hero-section .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, rgba(2, 42, 82, 0), rgba(1, 130, 130, 0.6196078431));
  z-index: 1;
}
.hero-section .hero-text-wrap {
  position: relative;
  z-index: 2;
  grid-area: 6/13/26/24;
}
.hero-section .hero-text-wrap .hero-text {
  margin: 0;
  align-self: center;
  color: #f3f3f3;
  font-size: clamp(2rem, 10vw, 8rem);
  font-family: "HNdisplay-Xbold";
  color: #022446;
  line-height: 1;
  display: inline-block;
}
.hero-section .hero-text-wrap .hero-text span {
  color: #4db6ac;
}
.hero-section .hero-sub {
  position: relative;
  z-index: 2;
  grid-area: 27/13/26/24;
  margin: 0;
  align-self: center;
  font-family: "HNdisplay";
  color: #f3f3f3;
  line-height: 1;
}
.hero-section .hero-sub .subtext {
  font-size: clamp(1rem, 3vw, 1.85rem);
  margin: 0;
}
.hero-section .hero-sub .subtext span {
  color: #022446;
}

/***********About***********/
.the-brain {
  background: #022446;
}
.the-brain .section-text {
  margin-bottom: 0;
}

/***********Highlights***********/
.highlights {
  background: #022446;
  padding-bottom: 5rem;
}
.highlights .highlight-inner-container .highlight-grid {
  display: grid;
  grid-gap: 2rem 5rem;
  grid-template-columns: repeat(2, 1fr);
}
.highlights .highlight-inner-container .highlight-grid .highlight-grid-inner {
  display: grid;
  grid-template-columns: 1fr 6fr;
  grid-template-rows: repeat(3, 1fr);
  grid-gap: 1rem 3rem;
}
.highlights .highlight-inner-container .highlight-grid .highlight-grid-inner .section-text {
  margin: 0;
}
.highlights .highlight-inner-container .highlight-grid .highlight-grid-inner .year {
  color: #607d8b;
}

/***********what i do***********/
.what-i-do.highlights .highlight-grid {
  grid-template-columns: repeat(3, 1fr);
}
.what-i-do.highlights .highlight-grid .highlight-grid-inner {
  grid-template-columns: 1fr 5fr;
  grid-row-gap: 2rem;
  align-items: center;
}
.what-i-do.highlights .highlight-grid .highlight-grid-inner .section-text:nth-child(2) {
  color: #607d8b;
  font-size: 1rem;
  line-height: 1.25;
}
.what-i-do.highlights .highlight-grid .highlight-grid-inner img {
  width: 100%;
}

/***********boxes***********/
.boxes {
  background: #022446;
}
.boxes .boxes-inner-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.boxes .boxes-inner-container .box {
  background: rgba(1, 12, 24, 0.2392156863);
  padding: 0 2rem;
  border-radius: 1rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0 13px 27px -5px, rgba(0, 0, 0, 0.3) 0 8px 16px -8px;
  z-index: 0;
  overflow: hidden;
  position: relative;
}
.boxes .boxes-inner-container .box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.25rem;
  height: 100%;
  border-radius: 1rem 0 0 1rem;
  background: linear-gradient(to bottom, #00d0ff, #00ffb8);
  z-index: 1;
}
.boxes .boxes-inner-container .box .box-title {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: "HNDisplay";
  color: #4db6ac;
  font-size: clamp(1.5rem, 3vw, 1.75rem);
}

/***********fixed bg***********/
.fixed-bg {
  height: 100vh;
  background: url("../assets/images/fixed-bg.jpg") no-repeat center center/cover;
  background-attachment: fixed;
}

/***********Experience***********/
.experience {
  padding-bottom: 5rem;
  background: radial-gradient(150vw circle at var(--intro-radial) var(--intro-radial) in oklab, #4db6ac 0%, #022446 85%), url("../assets/images/exp-bg.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-blend-mode: difference;
  background-position-x: center;
  animation: moveGradient linear both;
  animation-timeline: view(block);
  animation-range: contain 0% cover 100%;
}
.experience .section-title {
  margin-bottom: 6rem;
}
.experience .section-title span {
  color: #022446;
}
.experience .experience-inner-container {
  --timeline-width: 100%;
  position: relative;
  margin-inline: auto;
}
.experience .experience-inner-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  margin-left: -2px;
  border-right: 2px solid #022446;
}
.experience .experience-inner-container .stop {
  --clip-horizontal: 100%;
  --clip-vertical: 93%;
  position: relative;
  width: calc(var(--timeline-width) / 2);
  padding: 15vh 50px 0 0;
}
.experience .experience-inner-container .stop::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #4db6ac;
  border: 2px solid #022446;
  translate: 50% 0;
  transform-origin: center;
  animation: popIn linear both;
  animation-timeline: view(block);
  animation-range: cover 5% contain 22%;
}
.experience .experience-inner-container .stop::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 40px;
  width: 80%;
  height: calc(15vh - 20px);
  border: 2px solid #022446;
  border-width: 2px 0 0 2px;
  clip-path: inset(0 0 var(--clip-vertical) var(--clip-horizontal));
  transform-origin: center;
  animation: showLine linear both;
  animation-timeline: view(block);
  animation-range: cover 10% contain 40%;
}
.experience .experience-inner-container .stop:nth-child(even) {
  margin-left: calc(var(--timeline-width) / 2);
  padding-left: 50px;
  padding-right: 0;
}
.experience .experience-inner-container .stop:nth-child(even)::before {
  left: 0;
  right: auto;
  translate: -50% 0;
}
.experience .experience-inner-container .stop:nth-child(even)::after {
  left: 40px;
  right: auto;
  border-width: 2px 2px 0 0;
  clip-path: inset(0 var(--clip-horizontal) var(--clip-vertical) 0);
}
.experience .experience-inner-container .text {
  background: rgba(1, 12, 24, 0.2392156863);
  backdrop-filter: blur(4px);
  padding: 2rem;
  border-radius: 0.6rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0 13px 27px -5px, rgba(0, 0, 0, 0.3) 0 8px 16px -8px;
  animation: slideIn linear both;
  animation-timeline: view(block);
  animation-range: cover 0% contain 12%;
}
.experience .experience-inner-container .text .timeline-title-wrap {
  margin-bottom: 1rem;
}
.experience .experience-inner-container .text .timeline-title-wrap .timeline-title {
  margin: 0;
  font-family: "HNDisplay";
}
.experience .experience-inner-container .text .timeline-title-wrap .title-sub-title {
  color: #6cf8ea;
}
.experience .experience-inner-container .text .timeline-list {
  padding: 0;
  list-style-position: inside;
}
.experience .experience-inner-container .text .timeline-list li {
  margin: 0;
}

/***********Testimonials***********/
.testimonials {
  background-color: #022446;
  padding-bottom: 5rem;
}
.testimonials .testimonial-box {
  margin: 2rem auto;
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  position: relative;
}
.testimonials .testimonial-box .quote-icon {
  font-size: 20rem;
  color: #607d8b;
  opacity: 0.3;
  position: absolute;
  top: -11%;
  left: 0%;
  font-weight: bold;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}
.testimonials .testimonial-box .name {
  margin: 2rem 0 0;
  color: #607d8b;
  text-align: right;
  font-style: italic;
}
.testimonials .testimonial-box .scroll-container {
  overflow-y: auto;
  scroll-behavior: smooth;
  height: 15rem;
  mask-image: linear-gradient(to bottom, #022446 80%, transparent 100%);
  scrollbar-width: thin; /* for Firefox */
  scrollbar-color: #607d8b transparent; /* for Firefox */
  -webkit-overflow-scrolling: touch;
}
.testimonials .testimonial-box .quote {
  padding: 2rem;
  margin: 0;
}
.testimonials .swiper {
  width: 80%;
}
.testimonials .swiper-button-next,
.testimonials .swiper-button-prev {
  color: #607d8b;
  transition: 0.2s ease;
}
.testimonials .swiper-button-next:hover,
.testimonials .swiper-button-prev:hover {
  color: #4db6ac;
}
.testimonials .swiper-pagination-bullet {
  background: #607d8b;
  opacity: 0.3;
}
.testimonials .swiper-pagination-bullet-active {
  background: #4db6ac;
  opacity: 1;
  transform: scale(1.3);
}

/***********Expertise***********/
.expertise {
  background-color: #022446;
  padding-bottom: 5rem;
}
.expertise .tabs-block {
  display: flex;
  align-items: center;
  justify-content: center;
}
.expertise .tabs {
  overflow: hidden;
  display: flex;
}
.expertise .tabs > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background: linear-gradient(216deg, rgba(23, 71, 70, 0.3215686275) 10%, rgba(1, 12, 24, 0.2392156863) 30%, rgba(21, 71, 105, 0.4588235294) 90%);
  height: max-content;
  border-radius: 1rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0 13px 27px -5px, rgba(0, 0, 0, 0.3) 0 8px 16px -8px;
}
.expertise .tabs > ul li {
  border-bottom: 1px solid #022446;
  position: relative;
}
.expertise .tabs > ul li:has(a.active)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 4px;
  border-radius: 4px;
  background-color: #4db6ac;
}
.expertise .tabs > ul li a {
  display: flex;
  margin-bottom: 0;
  flex-wrap: wrap;
  color: #f3f3f3;
  padding: 1rem;
  transition: all 0.2s ease-in-out;
  opacity: 0.6;
}
.expertise .tabs > ul li a:hover:not(.active) {
  color: #f3f3f3;
  opacity: 1;
}
.expertise .tabs > ul li a.active {
  color: #4db6ac;
  opacity: 1;
}
.expertise .tabs section {
  width: 80vw;
  height: 100%;
  overflow-y: auto;
  padding: 0 2rem;
  display: none;
}
.expertise .tabs section.active {
  display: block;
}
.expertise .tabs section ul {
  list-style: disc;
  padding-left: 1rem;
}
.expertise .tabs section ul li {
  list-style: circle;
  margin-bottom: 0.75rem;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.expertise .tabs section.active-content ul li {
  transform: translateY(0);
  opacity: 1;
}
.expertise .tabs section.active-content ul li:nth-child(1) {
  transition-delay: 0.1s;
}
.expertise .tabs section.active-content ul li:nth-child(2) {
  transition-delay: 0.2s;
}
.expertise .tabs section.active-content ul li:nth-child(3) {
  transition-delay: 0.3s;
}
.expertise .tabs section.active-content ul li:nth-child(4) {
  transition-delay: 0.4s;
}
.expertise .tabs section.active-content ul li:nth-child(5) {
  transition-delay: 0.5s;
}
.expertise .tabs section.active-content ul li:nth-child(6) {
  transition-delay: 0.6s;
}
.expertise .tabs section.active-content ul li:nth-child(7) {
  transition-delay: 0.7s;
}

/***********Footer***********/
footer {
  background: linear-gradient(to bottom, rgba(45, 149, 122, 0.9), rgb(4, 66, 114));
  position: sticky;
  z-index: 0;
  bottom: 0;
  text-align: center;
}
footer .footer-grid {
  display: flex;
}
footer .footer-grid img {
  width: 25vw;
  object-fit: cover;
}
footer .footer-text-wrap {
  padding-block: 6rem;
}
footer .footer-text-wrap .lets-talk {
  margin: 0;
}
footer .footer-text-wrap .footer-email {
  display: block;
  font-family: "HNdisplay-Xbold";
  font-size: clamp(1.5rem, 4vw, 7rem);
  color: #f3f3f3;
  text-decoration: underline;
  text-decoration-color: #4db6ac;
  transition: 0.2s ease-in-out;
}
footer .footer-text-wrap .footer-email:hover {
  color: #4db6ac;
  text-decoration-color: #022446;
}
footer .padath {
  padding: 1rem;
}
footer .padath img {
  width: 4rem;
  vertical-align: middle;
}

@media screen and (width <= 600px) {
  .container {
    max-width: 500px;
  }
  .hero-section {
    height: 50vh;
  }
  .hero-section .hero-text-wrap {
    grid-area: 6/8/26/24;
  }
  .hero-section .hero-text-wrap .hero-text {
    font-size: clamp(4rem, 10vw, 8rem);
  }
  .hero-section .hero-sub {
    grid-area: 20/8/26/24;
  }
  .hero-section .hero-sub .subtext {
    font-size: clamp(1.25rem, 3vw, 1.85rem);
  }
  .experience .experience-inner-container::before {
    left: 30px;
    margin-left: 0;
  }
  .experience .experience-inner-container .stop,
  .experience .experience-inner-container .stop:nth-child(even) {
    justify-content: flex-end;
    text-align: end;
    margin-bottom: 30px;
    margin-left: 33px;
    width: calc(var(--timeline-width) - 33px);
    padding-inline: 30px 8px;
  }
  .experience .experience-inner-container .stop::before,
  .experience .experience-inner-container .stop:nth-child(even)::before {
    right: auto;
    left: 0;
    translate: -50% 0;
  }
  .experience .experience-inner-container .stop::after,
  .experience .experience-inner-container .stop:nth-child(even)::after {
    width: 60%;
    right: auto;
    left: 40px;
    border-width: 2px 2px 0 0;
    clip-path: inset(0 var(--clip-horizontal) var(--clip-vertical) 0);
  }
  .experience .experience-inner-container .stop .text,
  .experience .experience-inner-container .stop:nth-child(even) .text {
    text-align: left;
  }
  .boxes .boxes-inner-container {
    grid-template-columns: 1fr;
  }
  .highlights .highlight-inner-container .highlight-grid {
    grid-template-columns: 1fr;
  }
  .what-i-do.highlights .highlight-grid .highlight-grid-inner {
    grid-template-rows: auto;
  }
  .testimonials {
    padding: 5rem 0;
  }
  .testimonials .section-title {
    padding: 0 3rem;
  }
  .testimonials .swiper {
    width: 100%;
  }
  .testimonials .testimonial-box .scroll-container {
    height: 25rem;
  }
  .expertise {
    padding-right: 0;
    padding-left: 0;
  }
  .expertise .section-title {
    padding: 0 3rem;
  }
  .expertise .tabs {
    flex-direction: column;
  }
  .expertise .tabs > ul {
    display: flex;
    flex: 1 1 0;
  }
  .expertise .tabs section {
    width: 100%;
    padding: 0 2rem 1rem;
  }
}
@media screen and (width >= 1900px) {
  .hero-section .hero-text-wrap .hero-text {
    font-size: clamp(2rem, 10vw, 11rem);
  }
  .hero-section .hero-sub {
    grid-area: 24/13/26/24;
  }
  .hero-section .hero-sub .subtext {
    font-size: clamp(1rem, 3vw, 3rem);
  }
  .boxes .boxes-inner-container .box .box-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
  }
  .what-i-do.highlights .highlight-grid .highlight-grid-inner .section-text:nth-child(2) {
    font-size: 1.25rem;
  }
  footer .footer-text-wrap {
    padding-block: 10rem;
  }
}

/*# sourceMappingURL=style.css.map */
