* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-size: 14px;
  color: white;
  background-color: black;
  font-family: "Nunito", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
span,
p {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  display: inline-block;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: top;
}

section,
.future_wrapper {
  padding: 80px 0;
}

.gradient_text {
  /* background: -webkit-linear-gradient(
    0deg,
    #004666 0%,
    #024a65 25%,
    #075560 48%,
    #0f6859 71%,
    #1b824f 93%,
    #1f8c4b 100%
  ); */
  background: linear-gradient(90deg, #fff, #fafafa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-heading-wrapper {
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
}

.common_text {
  font-weight: 400;
  font-family: "Bebas Neue", sans-serif;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
  position: relative;
  padding-left: 20px;
}

.common_text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.5) 40%, transparent 100%);
  border-radius: 50px;
}

.common_description {
  font-size: 20px;
  letter-spacing: -0.4px;
  font-weight: 400;
}

@media (max-width: 1299px) {

  section,
  .future_wrapper {
    padding: 60px 0;
  }
}

@media (max-width: 991px) {

  section,
  .future_wrapper {
    padding: 40px 0;
  }

  .section-heading-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    margin-bottom: 25px;
    gap: 15px;
  }

  .common_text {
    width: fit-content;
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  br {
    display: none;
  }

  .common_text {
    font-size: 35px;
  }

  .common_description {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 18px;
  }

  section,
  .future_wrapper {
    padding: 30px 0;
  }

  .common_text {
    font-size: 28px;
  }

  .common_description {
    font-size: 16px;
  }
}

/* =============== HEADER START =============== */
header {
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

header.fixed {
  position: fixed;
  top: 0;
  padding: 15px 0;
  background-color: black;
  /* background-color: black; */
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  z-index: 999;
}

header .header_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

header .header_wrapper .logo {
  max-width: 162px;
  max-height: 48px;
}

header .header_wrapper .social_icon_wrapper {
  display: flex;
  align-items: center;
  gap: 32px;
}

header .header_wrapper .social_icon_app_btn_wrapper,
header .header_wrapper .social_icon_btn_wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

header .header_wrapper .social_icon_wrapper .social_icon {
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

header .header_wrapper .social_icon_btn_wrapper .social_icon:hover {
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
}

@media (max-width: 991px) {

  header,
  header.fixed {
    position: relative;
    top: 0;
    padding: 15px 0;
    background-color: black;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
}

@media (max-width: 480px) {

  header,
  header.fixed {
    padding: 10px 0;
  }
}

header .header_wrapper .social_icon_wrapper .app_button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 8px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  font-size: 14px;
  line-height: 100%;
  font-weight: 700;
  gap: 8px;
  min-width: 150px;
  min-height: 44px;
  transition: all 300ms ease-in-out;
}

header .header_wrapper .social_icon_wrapper .app_button.solid-btn,
header .header_wrapper .social_icon_wrapper .app_button.outline-btn:hover {
  background-color: #D8D8D8;
  border: 1px solid #D8D8D8;
  color: #000000;
}

header .header_wrapper .social_icon_wrapper .app_button.solid-btn:hover,
header .header_wrapper .social_icon_wrapper .app_button.outline-btn {
  background-color: #000000;
  border: 1px solid #515151;
  color: #D8D8D8;
}

@media (max-width: 767px) {

  header .header_wrapper .social_icon_wrapper .social_icon_btn_wrapper,
  header .header_wrapper .social_icon_wrapper .social_icon {
    display: none !important;
  }
}

@media (max-width: 360px) {
  header .header_wrapper .social_icon_wrapper .app_button {
    padding: 10px 4px;
    font-size: 12px;
    min-width: 120px;
    min-height: 36px;
  }
}

/* =============== HEADER END =============== */
/* =============== HERO START =============== */
/* Hero Section */
#hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  text-align: center;
}

/* Blurred ellipse background */
.ellipse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vw;
  max-width: 466px;
  max-height: 466px;
  background: #f2f2f243;
  /* background: #292929; */
  /* border : 1px solid #e0e0e0; */
  border-radius: 50%;
  filter: blur(250px);
  z-index: 0;
  backdrop-filter: blur(382.6000061035156px);
}

/* Logo */
.hero-logo {
  width: clamp(160px, 25vw, 256px);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

/* Tie SVG (default: desktop/tablet positioning) */
.hero_shape {
  position: absolute;
  top: 40%;
  /* adjust so only bottom part is visible under search box */
  left: 23%;
  transform: translate(-50%, -20%);
  width: 131px;
  /* responsive sizing */
  opacity: 0.5;
  z-index: 1;
}

.search-input {
  width: 100%;
  height: auto;
  padding: 24px 20px 20px 24px;
  background: #000000;
  border-radius: 20px;
  outline: none;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0;
  color: #fff;
  border: 1px solid #515151;
  resize: none;
  min-height: 140px;
}

.search-input::placeholder {
  color: #fff;
  opacity: 1;
}

/* Button stays aligned at bottom-right of textarea */
.search-btn {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  background: #D8D8D8;
  color: #000000;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}


/* Search Bar */
.search-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.search-btn:hover {
  background: #ffffff;
}

/* Arrow Navigate */
.hero-navigate {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* Responsive */
@media (max-width: 991px) {
  #hero {
    height: calc(100dvh - 78px);
  }

  .hero_shape {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .hero-navigate {
    bottom: 100px;
  }
}

@media (max-width: 768px) {
  .ellipse {
    width: 80vw;
    height: 80vw;
  }

  .search-btn {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    width: 150px;
  }

  .ellipse {
    filter: blur(180px);
  }
}

/* =============== HERO END =============== */
/* =============== CAREER START =============== */
#career {
  /* background-color: #f5f8f9; */
  padding: 0;
}

#career .career-content-wrapper {
  position: relative;
  padding: 56px 0 80px;
}

#career .career-content-wrapper::before {
  content: '';
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(45deg, #FFFFFF 0%, rgba(255, 255, 255, 0.5) 40%, transparent 100%);
  border-radius: 50px;
}

.career_text_detail,
#career .career_detail_wrapper {
  margin-left: auto;
  max-width: 436px;
}

#career .career_detail_wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

#career .career_detail_wrapper .career_detail {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

#career .career_detail_wrapper .career_detail .career_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 56px;
  min-height: 56px;
  background-color: #4B4B4B;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
}

#career .career_detail_wrapper .career_detail span {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.3px;
}

#career .career_btn {
  font-weight: 700;
  font-size: 14px;
  font-family: "Bebas Neue", sans-serif;
  padding: 18px 40px;
  background-color: white;
  /* background-color: #004767; */
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  text-transform: capitalize;
  color: black;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  margin-top: 36px;
}

#career .career_btn:hover {
  background-color: black;
  color: white;
  outline: 1px solid white;
  /* background-color: #1f8c4b; */
}

@media (max-width: 1299px) {
  #career .career-content-wrapper {
    padding: 56px 0 60px;
  }
}

@media (max-width: 991px) {
  #career {
    text-align: center;
  }

  #career .career-content-wrapper {
    padding: 40px 0;
  }

  #career .career_img {
    margin: 0 0 35px;
  }

  .career_text_detail {
    margin: 0 auto;
  }

  #career .career_detail_wrapper {
    margin: 0 auto;
    width: fit-content;
  }

  #career .career_detail_wrapper .career_detail span {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .career_text_detail {
    width: 100%;
  }

  #career .career_detail_wrapper {
    gap: 20px;
  }
}

@media (max-width: 575px) {
  #career .career_detail_wrapper .career_detail {
    width: 100%;
  }
}

@media (max-width: 480px) {

  #career .career-content-wrapper {
    padding: 30px 0;
  }

  #career .career_img {
    margin: 0 0 25px;
  }

  #career .career_detail_wrapper {
    gap: 15px;
  }

  #career .career_btn {
    margin-top: 25px;
  }
}

/* =============== CAREER END =============== */
/* =============== REIMAGINED START =============== */
#reimagined .reimagined_text .reimagined_top_text_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
  margin-bottom: 100px;
}

#reimagined .reimagined_text .reimagined_top_text_wrapper .common_description {
  max-width: 484px;
  margin-left: auto;
}

#reimagined .reimagined_text .reimagined_bottom_text_wrapper {
  margin: 0 auto;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0;
  text-align: center;
}

#reimagined .reimagined_text .reimagined_bottom_text_wrapper p span {
  font-weight: 700;
}

#reimagined .video_content {
  position: relative;
  margin-bottom: 42px;
  text-align: center;
}

#reimagined .video_content .video_btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.38);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  padding: 0 0 0 10px;
}

#reimagined .video_content .video_btn svg {
  transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
}

#reimagined .reimagined_btn {
  margin: 30px 0 0;
  background-color: #D8D8D8;
  border: 1px solid #D8D8D8;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  padding: 17px 45px;
  font-weight: 700;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: -0.3px;
  color: black;
  position: relative;
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}

#reimagined .reimagined_btn::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -75px;
  background-image: url("../image/shape.svg");
  width: 45px;
  height: 56px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#reimagined .reimagined_btn:hover {
  background-color: #000000;
  border: 1px solid #515151;
  color: #D8D8D8;
}

@media (max-width: 1299px) {
  #reimagined .reimagined_text .reimagined_top_text_wrapper {
    margin-bottom: 80px;
  }
}

@media (max-width: 1199px) {
  #reimagined .reimagined_text .reimagined_top_text_wrapper {
    margin-bottom: 60px;
  }
}

@media (max-width: 991px) {
  #reimagined .reimagined_text .reimagined_top_text_wrapper {
    margin-bottom: 40px;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 15px;
  }

  #reimagined .reimagined_text .reimagined_top_text_wrapper .common_description {
    margin: 0 auto;
  }

  #reimagined .video_content {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  #reimagined .reimagined_text .reimagined_bottom_text_wrapper {
    font-size: 18px;
    line-height: 26px;
  }
}

@media (max-width: 480px) {
  #reimagined .reimagined_text .reimagined_top_text_wrapper {
    margin-bottom: 30px;
  }

  #reimagined .reimagined_text .reimagined_bottom_text_wrapper {
    font-size: 16px;
  }

  #reimagined .reimagined_btn::before {
    top: -25px;
    left: -58px;
  }
}

@media (max-width: 360px) {
  #reimagined .reimagined_btn::before {
    display: none;
  }
}

/* =============== REIMAGINED END =============== */
/* =============== CUSTOMER START =============== */
#customer {
  padding-left: 15px;
}

.customer-wrapper {
  --spacing: calc((100dvw - 100%) / 2 - 15px);
  padding-left: var(--spacing);
}


#customer .customer_card {
  display: flex;
  align-items: center;
}

#customer .customer_card .customer_img {
  min-width: 88px;
  min-height: 88px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  background-color: #fff;
  border: 2px solid #fff;
  padding: 2px;
  margin: 0 -44px 0 0;
  position: relative;
  z-index: 1;
}

#customer .customer_card .customer_img img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

#customer .customer_card .customer_info {
  background-color: #fff;
  color: #000000;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
  padding: 24px 24px 44px 64px;
}

#customer .customer_card .customer_info .customer_detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 8px;
}

#customer .customer_card .customer_info .customer_detail h5 {
  font-weight: 800;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0;
}

#customer .customer_card .customer_info .customer_detail span,
#customer .customer_card .customer_info p {
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0;
}

#customer .owl-theme .owl-nav {
  margin: 0;
  display: flex;
  gap: 30px;
  transition: all 300ms ease-in-out;
  position: absolute;
  top: -85px;
  right: var(--spacing);
  padding-right: 15px;
}

#customer .owl-theme .owl-nav [class*=owl-]:hover {
  background: transparent;
}


@media (min-width: 576px) {
  .customer-wrapper {
    --spacing: calc((100dvw - 540px) / 2 - 15px);
  }
}

@media (min-width: 768px) {

  .customer-wrapper {
    --spacing: calc((100dvw - 720px) / 2 - 15px);
  }
}

@media (min-width: 992px) {
  .customer-wrapper {
    --spacing: calc((100dvw - 960px) / 2 - 15px);
  }
}

@media (min-width: 1200px) {
  .customer-wrapper {
    --spacing: calc((100dvw - 1128px) / 2 - 15px);
  }

  #customer .owl-theme .owl-nav svg {
    width: 50px;
  }
}

@media (max-width: 991px) {
  #customer .customer_card .customer_info .customer_detail {
    align-items: start;
    flex-direction: column;
    gap: 5px;
  }

  #customer .owl-theme .owl-nav {
    position: static;
    justify-content: center;
    margin-top: 25px;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  #customer .customer_card {
    flex-direction: column;
  }

  #customer .customer_card .customer_img {
    margin: 0 0 -44px;
  }

  #customer .customer_card .customer_info {
    padding: 55px 24px 24px;
  }

  #customer .owl-theme .owl-nav {
    margin-top: 15px;
    gap: 15px;
  }

  #customer .owl-theme .owl-nav svg {
    width: 40px;
  }
}

/* =============== CUSTOMER END =============== */
/* =============== FUTURE START =============== */
#future {
  padding: 0;
}

#future .future_wrapper {
  position: relative;
}

#future .future_wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  width: 100%;
  height: 2px;
  background: linear-gradient(45deg, #FFFFFF 0%, rgba(255, 255, 255, 0.5) 40%, transparent 100%);
  border-radius: 50px;
}

#future .future_text .common_description {
  max-width: 440px;
  margin-left: auto;
}

#future .future_content {
  max-width: 820px;
  margin: 0 auto;
}

#future .future_btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#future .future_btns a {
  transition: all 400ms ease-in-out;
}

#future .future_btns a:hover {
  transform: scale(0.98);
  -webkit-transform: scale(0.98);
  -moz-transform: scale(0.98);
  -ms-transform: scale(0.98);
  -o-transform: scale(0.98);
}

@media (max-width: 991px) {
  #future .future_text .common_description {
    max-width: 440px;
    margin: 0 auto;
  }

  #future .future_btns {
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 25px;
    justify-content: center;
  }

  .future_btns a {
    max-width: 180px;
  }
}

@media (max-width: 480px) {
  #future .future_btns {
    gap: 10px;
  }

  .future_btns a {
    max-width: 150px;
  }
}

/* =============== FUTURE END =============== */
/* =============== FOOTER START =============== */
footer {
  padding: 68px 0 8px;
  background: #4B4B4B;
  color: white;
}

footer .footer_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 40px;
}

footer .footer_wrapper .footer_logo {
  max-width: 216px;
  max-height: 64px;
}

footer .footer_wrapper ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 40px;
}

footer .footer_wrapper ul li a {
  color: white;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0;
  transition: all 300ms ease-in-out;
}

footer p,
footer p a {
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0;
  color: white;
  transition: all 300ms ease-in-out;
}
footer .footer_wrapper ul li a:hover,
footer p a:hover {
  color: rgb(221, 221, 221);
}

@media (max-width: 1299px) {
  footer {
    padding: 50px 0 12px;
  }

  footer .footer_wrapper ul li a {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  footer {
    padding: 40px 0 12px;
  }

  footer .footer_wrapper {
    margin: 0 0 30px;
  }

  footer .footer_wrapper ul {
    gap: 30px;
  }
}

@media (max-width: 767px) {
  footer {
    padding: 30px 0 12px;
  }

  footer .footer_wrapper {
    flex-direction: column;
    gap: 18px;
    margin: 0 0 20px;
  }

  footer .footer_wrapper ul li a {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  footer .footer_wrapper .footer_logo {
    max-width: 180px;
    max-height: 54px;
  }
}

@media (max-width: 480px) {
  footer .footer_wrapper ul {
    gap: 4px;
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  footer .footer_wrapper .footer_logo {
    max-width: 160px;
    max-height: 50px;
  }
}

footer .app_button_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

@media (min-width: 769px) {
  footer .app_button_wrapper .social_icon {
    display: none !important;
  }
}

/* =============== FOOTER END =============== */