@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
  --default-font: "Poppins", sans-serif;
  --heading-font: 'Brother', sans-serif;
  --subheading-font: 'Brother', sans-serif;
}


:root {
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #222222;
  --accent-color: #106eea;
  --border: 5px;
  --radius: 75vh;
  --border-hover: rgba(255, 255, 255, 0.28);
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.45);
  --input-bg: rgba(255, 255, 255, 0.04);
  --input-border: rgba(255, 255, 255, 0.12);
  --input-focus: rgba(255, 255, 255, 0.3);
  --glow: rgba(255, 255, 255, 0.06);
}

:root {
  --nav-color: #222222;
  --nav-hover-color: #106eea;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #222222;
  --nav-dropdown-hover-color: #106eea;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/* Brother Font */
@font-face {
  font-family: 'Brother';
  src: url('../fonts/07-brother1816-regular.otf') format('opentype');
  font-weight: 400;
}

/* Cera Regular */
@font-face {
  font-family: 'Cera';
  src: url('../fonts/cera-130.otf') format('opentype');
  font-weight: 400;
}

/* Cera Basic (agar alag style hai) */
@font-face {
  font-family: 'Cera';
  src: url('../fonts/cera-basic.otf') format('opentype');
  font-weight: 300;
}

/* Poppins Medium */
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium_1.otf') format('opentype');
  font-weight: 500;
}


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: #000000;
  font-family: var(--default-font);
  overflow-x: hidden;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: 'Brother';
}

p {
  font-family: var(--default-font);
}

section {
  padding: 30px 0;
}

.container {
  max-width: 88%;
  padding: 0 5px;
}


img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  z-index: 99999;
  background-color: #000000;
  padding: 30px 0;
  transition: all 0.4s ease-in-out !important;
}

.header .topbar {
  background-color: var(--accent-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-width: 100%;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
}

.header .logo span {
  color: #565656;
  font-size: 16px;
  font-weight: bold;
  margin-top: 8px;
}

.scrolled .header {
  box-shadow: 0px 0 18px color-mix(in srgb, var(--default-color), transparent 85%);
  position: static;
}

.bottom-header .navmenu {
  background-color: #162f6a;
  padding: 0;
}


.scrolled .header .bottom-header {
  transition: all 0.4s ease-in-out;
}

.scrolled .header .bottom-header {
  position: fixed;
  top: 0;
  z-index: 99999;
  left: 0;
  right: 0;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding-top: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    position: relative;
  }

  .navmenu li {
    position: static;
  }

  .navmenu>.container>ul>li+li {
    margin-left: 10px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #989898;
    padding: 15px 12px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }



  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }


  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ffffff;
    border-radius: 0;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding-bottom: 10px;
    background: var(--nav-dropdown-background-color);
    display: block;
    /* position: absolute; */
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 8px;
    font-size: 15px;
    text-transform: none;
    color: #6d6e71;
    white-space: pre-wrap;
    line-height: 20px;
    font-family: "Montserrat", serif;
    font-weight: 400;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #02164f;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 103%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: auto;
    visibility: hidden;
    right: -90%;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    right: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #ffffff;
    font-size: 36px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: fixed;
    padding: 50px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #000000;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px color-mix(in srgb, var(--default-color), transparent 90%);
    width: 100%;
    height: 100%;
    transition: all 0.4s ease-in-out;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media(max-width:1300px) {

  .navmenu a,
  .navmenu a:focus {
    color: #ffffff;
    padding: 15px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }
}



/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/* ===========================custom================= */
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.theme-change ul li {
  margin: 0 0.5rem;
}

.theme-change ul li .theme-item {
  height: 16px;
  width: 18px;
  display: flex;
  border: 1px solid #e4e4e4;
  cursor: pointer;
}

.theme-change ul li .theme-item:before,
.theme-change ul li .theme-item:after {
  width: 50%;
  content: "";
}

.theme-change ul li .theme-item.theme-1:before {
  background-color: #797979;
}

.theme-change ul li .theme-item.theme-1:after {
  background-color: #030303;
}

.theme-change ul li .theme-item.theme-2:before {
  background-color: #df1a14;
}

.theme-change ul li .theme-item.theme-2:after {
  background-color: #fff;
}

.topnav-list li+li a {
  padding-left: 10px;
  margin-left: 10px;
}


.topnav-list li a,
.font-adjust a {
  font-size: 15px;
  font-weight: 500;
  color: #02164f;
}

.topnav {
  margin-bottom: 10px;
}

.top-search form {
  width: 40%;
  margin-left: auto;
}

.logo-img {
  margin: 0;
}

li.dropdown.lang-dropdown a {
  color: #02164f;
  margin: 0 5px;
}

.banner-wrapper {
  position: relative;
}

.banner-section {
  padding: 0;
  padding-bottom: 0;
  position: relative;
}

.social-links {
  justify-content: end;
  display: flex;
  gap: 15px;
}

.social-links a {
  color: #000000;
  font-size: 18px;
  width: 35px;
  height: 35px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  background: #ffffff;
}

.headermenus {
  width: 100%;
}

nav#navmenu {
  margin: auto;
}


/* ===== GRID CONTAINER ===== */
.letter-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: -10px;
}

/* ===== GRID ITEMS ===== */
.grid-col {
  position: relative;
}

/* Overlay */
.grid-col::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: 0.4s;
  opacity: 1;
  z-index: 1;
}

/* Letter */
.grid-letter {
  position: relative;
  color: #fff;
  font-size: 11rem;
  font-weight: bold;
  z-index: 2;
  letter-spacing: 4px;
}

/* Hover Expand Effect (Grid Trick) */
.grid-col:hover::before {
  opacity: 0;
}

.wrapperimg {
  position: relative;
}

.grid-letter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-family: var(--heading-font);
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 992px) {
  .letter-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 40vh);
  }

  .grid-letter {
    font-size: 10vw;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .letter-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .grid-col {
    height: auto;
  }

  .grid-letter {
    font-size: 10rem;
  }
}

section.innovate-section {
  background: #000;
  padding: 80px 0;
  overflow: hidden;
}

.sliderwrapper {
  --mask-color: #fff;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(15%, var(--mask-color)), color-stop(85%, var(--mask-color)), to(transparent));
  -webkit-mask-image: linear-gradient(90deg, transparent, var(--mask-color) 15%, var(--mask-color) 85%, transparent);
  mask-image: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(15%, var(--mask-color)), color-stop(85%, var(--mask-color)), to(transparent));
  mask-image: linear-gradient(90deg, transparent, var(--mask-color) 15%, var(--mask-color) 80%, #00000000);
  overflow: hidden;
}


.heading-wrapper {
  text-align: center;
  color: #ffffff;
  margin-bottom: 50px;
}

.heading-wrapper h1 {
  font-size: 60px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 15px;
}

.heading-wrapper p {
  font-family: 'Cera', sans-serif;
  line-height: 1.6;
  font-weight: 300;
}

.innovate-section {
  position: relative;
}

.shapbox.shap1 {
  position: absolute;
  bottom: -11%;
  left: -4%;
}

.shapbox.shap2 {
  position: absolute;
  top: -10%;
  display: flex;
  right: -4%;
  justify-content: end;
}

.shapbox.shap2::before {
  position: absolute;
  content: "";
  top: 5%;
  right: 21%;
  background: url(../img/shap/bg1.png);
  width: 185px;
  height: 121px;
}

.shapbox.shap2::after {
  position: absolute;
  content: "";
  bottom: -25%;
  right: 21%;
  background: url(../img/shap/bg2.png);
  width: 164px;
  height: 284px;
}

.shapbox.shap1::before {
  position: absolute;
  content: "";
  top: -13%;
  right: 34%;
  background: url(../img/shap/bg-3.png);
  width: 133px;
  height: 230px;
}

.shapbox.shap1::after {
  position: absolute;
  content: "";
  bottom: 14%;
  right: -11%;
  background: url(../img/shap/bg4.png);
  width: 262px;
  height: 110px;
}


.shapbox.shap1 img,
.shapbox.shap2 img {
  width: 65%;
}

section.activation {
  padding: 0;
  background: #000000;
}

.activation-contant {
  padding: 0 198px 0 100px;
}

.activation-contant h3 {
  font-size: 40px;
  color: #fff;
  font-family: 'Cera';
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.activation-contant p {
  font-size: 14px;
  color: #ffffff;
  font-family: 'Poppins';
  font-weight: 300;
}


.bottomsection {
  background: #000000;
  padding: 30px 0 0 0;
}

.heading a {
  text-decoration: none;
  color: #e5e5e5;
  font-size: 7.6vw;
  font-family: 'Brother';
  font-weight: bold;
  display: inline-block;
  line-height: 1;
}

.footer-logo img {
  max-width: 290px;
}

.footer-wrapper {
  display: flex;
  align-items: end;
  gap: 85px;
}

footer.footer {
  padding: 50px 0;
  background: #E5E5E5;
}

.footersocial {
  margin-top: 35px;
}

.footersocial .social-links {
  justify-content: center;
}

.footersocial .social-links a {
  color: #fff;
  background: #989898;
  font-size: 20px;
  width: 40px;
  height: 40px;
}

.footer-content ul li a {
  color: #989898;
  font-family: 'Poppins';
  font-weight: 500;
  transition: all 0.4s ease-in-out;
}

.footer-content ul li a:hover {
  color: #000;
}

.footer-content ul li+li {
  margin-top: 5px;
}

footer.footer p {
  color: #989898;
  font-weight: 400;
  margin-bottom: 0;
  font-family: 'Poppins';
}

.hk-button {
  padding: 25px 60px;
  background: #000;
  color: #fff;
  font-family: monospace;
  border-radius: 0;
  border: none;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.hk-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 1/1;
  width: 200%;
  height: auto;
  border-radius: 50%;
  background: conic-gradient(#fff 0%, #000 3%, #000000 60%, #fff 100%);
  animation: spin linear 2s infinite;
  transform: translate(-50%, -50%);
}

.hk-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - var(--border));
  height: calc(100% - var(--border));
  background: #000000;
  transform: translate(-50%, -50%);
  border-radius: 0;
  backdrop-filter: blur(10vh);
}

.hk-button span {
  display: block;
  position: absolute;
  text-wrap: nowrap;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-family: 'Poppins';
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}


.video {
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

@media (max-width:768px) {
  .fst-small {
    padding: 10px 0;
    font-size: 13px;
  }
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.logo img {
  width: auto;
  height: auto;
}

.logo-client img {
  width: auto;
}

.owl-carousel.activation-carousel .owl-dots button {
  background: #000000 !important;
  padding: 7px !important;
  margin: 0 5px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.owl-carousel.activation-carousel .owl-dots button.active {
  background: #ffffff !important;
  padding: 6px 15px !important;
  border-radius: 10px;
}

.owl-carousel.activation-carousel .owl-dots {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  margin: auto;
  text-align: center;
}


.navmenu ul li+li {
  margin-left: 12px;
}

/* small dot */
.cursor-dot {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
  display: none;
}

/* blur glow */
.cursor-blur {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  filter: blur(25px);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  will-change: transform;
  display: none;
}

section.bottomsection {
  padding-top: 70px;
}

/* =================career page================= */

/* â”€â”€â”€ SECTION WRAPPER â”€â”€â”€ */
.careers-section {
  position: relative;
  min-height: 100vh;
  padding: 100px 0 100px;
  overflow: hidden;
  background: var(--black);
}

/* â”€â”€â”€ DECORATIVE CORNER LINES â”€â”€â”€ */
.corner-svg {
  position: absolute;
  pointer-events: none;
  opacity: 0.18;
}

.corner-tl {
  top: 0;
  left: 0;
}

.corner-tr {
  top: 0;
  right: 0;
  transform: scaleX(-1);
}

.corner-bl {
  bottom: 0;
  left: 0;
  transform: scaleY(-1);
}

.corner-br {
  bottom: 0;
  right: 0;
  transform: scale(-1, -1);
}

/* subtle grain overlay */
.careers-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.careers-section>.container {
  position: relative;
  z-index: 1;
}

/* â”€â”€â”€ HEADER â”€â”€â”€ */
.careers-heading {
  font-family: 'Brother';
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.25rem;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.careers-sub {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgb(255 255 255);
  max-width: 700px;
  margin: 0 auto 60px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

/* â”€â”€â”€ JOB CARDS â”€â”€â”€ */
.jobs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.job-card {
  background: #000000;
  border: 1px solid #fff;
  border-radius: 16px;
  padding: 28px 24px 22px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  opacity: 0;
  transform: translateY(30px);
}

.job-card.animate-in {
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.job-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: inherit;
}

.job-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 255, 255, 0.03);
}

.job-card:hover::before {
  opacity: 1;
}

.job-title {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: 'Brother';
}

.job-desc {
  font-size: 0.825rem;
  line-height: 1.65;
  color: #fff;
  margin-bottom: 28px;
}

.job-arrow {
  width: 34px;
  height: 34px;
  border: 1px solid #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  margin-left: auto;
}

.job-card:hover .job-arrow {
  background: var(--white);
  border-color: var(--white);
  transform: rotate(-45deg) scale(1.05);
}

.job-arrow svg {
  transition: stroke 0.25s ease;
}

.job-card:hover .job-arrow svg {
  stroke: #000;
}

/* â”€â”€â”€ FORM SIDE â”€â”€â”€ */

.form-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 8px;
  display: block;
}

.form-label span {
  color: #fff;
  margin-left: 2px;
  font-size: 0.7rem;
}

.form-control,
.form-select {
  background: transparent;
  border: none;
  border-radius: 0 !important;
  color: #fff !important;
  font-size: 0.9rem !important;
  padding: 13px 16px !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease !important;
  outline: none !important;
  width: 100%;
  position: relative;
}

.input-group {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 55%) !important;
  /* width: 100%; */
  z-index: 1;
}

.input-group::before {
  content: '';
  position: absolute;
  top: 60%;
  left: 0;
  width: 100%;
  height: 650px;
  background: url(../img/input-bg.png);
  transform: translateY(-50%) scale(1.3);
  right: 0;
  z-index: -1;
  background-size: cover;
}


.form-control::placeholder {
  color: rgba(255, 255, 255, 0.18) !important;
}

.form-select option {
  background: #111;
  color: #fff;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--input-focus) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.04) !important;
}

/* custom file upload */
.file-upload-wrapper {
  position: relative;
}

.file-upload-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  padding: 13px 16px;
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.52);
  width: 100%;
}

.file-upload-btn:hover {
  border-color: var(--input-focus);
  background: rgba(255, 255, 255, 0.06);
}

.file-upload-btn.has-file {
  color: var(--white);
}

.file-upload-btn .chevron {
  width: 18px;
  height: 18px;
  opacity: 0.5;
  flex-shrink: 0;
}

input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  border-radius: 0;
  outline: none;
  z-index: 3;
}

.mb-form {
  margin-bottom: 22px;
}

/* â”€â”€â”€ SEND BUTTON â”€â”€â”€ */
.btn-send {
  background: var(--white);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 38px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  float: right;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
}

.btn-send::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-send:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.12);
}

.btn-send:hover::after {
  opacity: 1;
}

.btn-send:active {
  transform: translateY(0);
}


/* â”€â”€â”€ KEYFRAMES â”€â”€â”€ */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 991px) {
  .careers-section {
    padding: 80px 0 80px;
  }

  .v-divider {
    display: none;
  }

  .form-panel {
    margin-top: 40px;
  }
}

@media (max-width: 575px) {
  .jobs-grid {
    grid-template-columns: 1fr;
  }

  .form-panel {
    padding: 0;
  }

  .careers-heading {
    font-size: 2.6rem;
  }
}

/* stagger delays for cards */
.job-card:nth-child(1) {
  animation-delay: 0.4s;
}

.job-card:nth-child(2) {
  animation-delay: 0.52s;
}

.job-card:nth-child(3) {
  animation-delay: 0.64s;
}

.job-card:nth-child(4) {
  animation-delay: 0.76s;
}

section.innovate-section.career .shapbox.shap2 {
  top: 0;
}

section.innovate-section.career .shapbox.shap2 img {
  width: 100%;
}

section.innovate-section.career .shapbox.shap2::before {
  right: 0;
}

section.innovate-section.career .shapbox.shap1 {
  bottom: 0%;
}

section.innovate-section.career .shapbox.shap1 img {
  width: 100%;
  transform: rotate(180deg);
}

section.innovate-section.career .shapbox.shap1::before {
  left: 10%;
  right: auto;
  top: -90%;
  z-index: 1;
}

section.innovate-section.career .shapbox.shap1::after {
  bottom: -150%;
  right: -65%;
  z-index: 1;
  background: url(../img/shap/bg-6.png);
  width: 453px;
  height: 453px;
}


/* ============================team-section================= */

/* ── TEAM STRIP ── */
.team-strip {
  display: flex;
  width: 100%;
}

.member {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex .55s cubic-bezier(.77, 0, .18, 1);
  border-right: 1px solid rgba(255, 255, 255, .07);
  height: 800px;
  display: flex;
  align-items: end;
}

.member:last-child {
  border-right: none
}

.member:hover {
  flex: 1.55
}

/* dummy photo via picsum – unique person per card */
.member-img {
  height: 600px;
  object-fit: cover;
  object-position: right;
  filter: grayscale(100%) contrast(1.08) brightness(.92);
  transition: filter .55s ease, transform .55s ease;
  transform: scale(1.1);
}

.member:hover .member-img {
  filter: grayscale(0%) contrast(1.05) brightness(1);
  transform: scale(1.2);
}

/* dark-to-bottom overlay */
.member::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url(../img/team/teambg.png) no-repeat left/cover;
  transition: background .5s ease;
  z-index: -1;
}


/* gold top border reveal */
.member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.77, 0, .18, 1);
  z-index: 4;
}

.member:hover::before {
  transform: scaleX(1);
}

/* vertical name */
.v-name {
  position: absolute;
  top: 50%;
  right: -40%;
  transform: translateY(-50%) rotate(-90deg);
  z-index: 3;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  transition: color .4s, letter-spacing .4s;
  font-family: 'Brother';
  font-size: 50px;
  line-height: 1;
  width: 100%;
}

.member:hover .v-name {
  color: #ffffff;
  right: -35%;
}

/* role at bottom */
.v-role {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, .95);
  padding: 0;
  transition: color .4s;
  text-shadow: -4px 2px 6px black;
}

/* stagger load */
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.member {
  animation: riseIn .7s ease both
}

.member:nth-child(1) {
  animation-delay: .05s
}

.member:nth-child(2) {
  animation-delay: .15s
}

.member:nth-child(3) {
  animation-delay: .25s
}

.member:nth-child(4) {
  animation-delay: .35s
}

.member:nth-child(5) {
  animation-delay: .45s
}

/* ── JOIN BAND ── */
.join-band {
  padding: 52px 0;
  display: flex;
  align-items: flex-start;
  gap: 0;
  animation: riseIn .7s .55s ease both;
}

.join-content {
  max-width: 560px
}

.join-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.join-title span {
  color: #ffffff;
}

.join-body {
  font-size: .88rem;
  line-height: 1.85;
  color: #ffffff;
  font-weight: 300;
  margin-bottom: 30px;
  max-width: 460px;
}

/* Apply button */
.btn-apply {
  display: inline-block;
  padding: 12px 38px;
  background: #0d0d0d;
  color: #f5f1eb;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color .35s;
}

.btn-apply::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #c9a96e;
  transform: translateX(-101%);
  transition: transform .38s cubic-bezier(.77, 0, .18, 1);
}

.btn-apply:hover {
  color: #0d0d0d
}

.btn-apply:hover::before {
  transform: translateX(0)
}

.btn-apply span {
  position: relative;
  z-index: 1
}

@media(max-width:640px) {
  .team-strip {
    flex-wrap: wrap;
    height: auto;
    max-height: none
  }

  .member {
    flex: inherit;
    height: auto;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }

  .member:nth-child(5) {
    flex: 0 0 100%
  }

  .join-band {
    padding: 36px 0 0;
    text-align: center;
  }
}

.shapbox.shap5 {
  position: absolute;
  top: 5%;
  right: -8%;
}

.shapbox.shap5::before {
  position: absolute;
  content: "";
  top: -20%;
  left: -25%;
  background: url(../img/shap/bg-7.png);
  width: 230px;
  height: 230px;
}

.shapbox.shap5::after {
  position: absolute;
  content: "";
  bottom: -25%;
  right: 8%;
  background: url(../img/shap/bg-8.png);
  width: 200px;
  height: 200px;
}



section.innovate-section.career.our-tem .shapbox.shap2 {
  left: 0;
  right: auto;
  transform: rotate(180deg);
  top: 16%;
}

section.innovate-section.career.our-tem .shapbox.shap2::after {
  bottom: -200%;
  left: -38%;
  background: url(../img/shap/bg-6.png);
  width: 453px;
  height: 453px;
}

section.innovate-section.career.our-tem .shapbox.shap2::before {
  width: 116px;
  height: 123px;
  right: 0;
}

section.innovate-section.career.our-tem .shapbox.shap1::after {
  bottom: -300%;
  right: -45%;
  background: url(../img/shap/bg-6.png);
  width: 453px;
  height: 453px;
}

section.innovate-section.career .shapbox.shap2::after {
  right: auto;
  left: -60%;
  bottom: -100%;
  background: url(../img/shap/bg-6.png);
  width: 453px;
  height: 453px;
}

.heading {
  margin-bottom: -1.8%;
}

.team-carousel .owl-stage-outer {
  overflow: hidden;
}

/* .team-carousel .owl-stage {
  display: flex !important;
  transform: none !important;
  width: 100% !important;
} */

.team-carousel .owl-item {
  flex: 1 1 0;
  min-width: 0;
  /* prevents flex blowout */
  transition: flex .55s cubic-bezier(.77, 0, .18, 1) !important;
  will-change: flex;
}


/* Let Owl slide normally */
.team-carousel .owl-stage {
  display: flex;
}

/* Active items share space equally by default */
.team-carousel .owl-item.active {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  transition: flex 0.55s cubic-bezier(0.77, 0, 0.18, 1);
}

/* Inactive items stay at Owl's calculated width — don't touch them */
.team-carousel .owl-item:not(.active) {
  overflow: hidden;
}

.owl-carousel.team-carousel .owl-nav {
  text-align: end;
  margin-top: 20px;
  margin-right: 20px;
}

.owl-carousel.team-carousel .owl-nav button {
  padding: 10px 15px !important;
  margin-left: 15px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  border-radius: 5px;
}

.phone-wrapper {
  display: flex;
  width: 100%;
  align-items: center;
}

.phone-wrapper select {
  width: 60px;
  border-right: 1px solid #fff;
  padding: 5px !important;
  height: 30px;
}

.ci-heading {
  font-size: 28px;
  font-weight: 600;
  color: #f0f0f0;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.ci-sub {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: #ffffff;
  margin: 0 0 40px;
}

.ci-divider {
  height: 1px;
  background: #1e1e1e;
  margin: 0 0 36px;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 32px;
}

.ci-icon-box {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
}

.ci-label {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 6px;
}

.ci-value {
  font-size: 15px;
  font-weight: 300;
  color: #ccc;
  margin: 0;
}


.stats-section {
  padding: 40px;
  display: flex;
  justify-content: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 900px;
}

.stat-card {
  border: 1px solid #ffffff;
  border-radius: 14px;
  padding: 40px 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.odometer {
  font-family: 'Syne', sans-serif !important;
  font-size: 80px !important;
  font-weight: 700 !important;
  color: #e8187a !important;
  line-height: 1 !important;
  background: transparent !important;
}

.odometer.odometer-theme-minimal .odometer-digit {
  background: transparent !important;
  box-shadow: none !important;
}

.stat-plus {
  font-family: 'Syne', sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: #e8187a;
  line-height: 1;
}

.stat-label {
  font-size: 21px;
  color: #ffffff;
  font-family: 'Brother';
}

.stat-number-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.letter-text {
  position: absolute;
  top: 95%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 9;
  font-size: 16px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}

.wrapperimg:hover .letter-text {
  top: 90%;
  opacity: 1;
  font-size: 21px;
}

.video-mobile {
  width: 100%;
}

/* responsive========================== */

@media (max-width:568px) {

  .owl-carousel.team-carousel .owl-nav {
    text-align: center;
  }

  .pin-spacer {
    padding-bottom: 0 !important;
    height: auto !important;
  }

  .shapbox.shap1::before {
    right: 55%;
    background: url(../img/shap/bg-3.png);
  }

  .shapbox.shap1 img,
  .shapbox.shap2 img {
    width: 35%;
  }

  .shapbox.shap2::after {
    right: 0;
  }

  .heading-wrapper p {
    font-size: 14px;
  }

  .heading-wrapper h1 {
    font-size: 28px;
  }

  .activation-contant {
    padding: 25px 15px;
  }

  .activation-contant h3 {
    font-size: 24px;
  }

  .activation-contant p {
    font-size: 12px;
    line-height: 22px;
  }

  section#retail .row,
  section#event .row {
    flex-direction: column-reverse;
  }

  .owl-carousel.activation-carousel .owl-dots button {
    padding: 5px !important;
  }

  .owl-carousel.activation-carousel .owl-dots button.active {
    padding: 5px 12px !important;
  }

  .heading a {
    font-size: 3rem;
    text-align: center;
    display: block;
  }

  .heading {
    margin-bottom: -8px;
  }

  .footer-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-direction: column;
  }

  footer.footer .row {
    margin-bottom: 20px;
  }

  nav#navmenu {
    margin: 5px;
    margin-left: auto;
  }

  .search-formbox {
    display: none;
  }

  .navmenu ul li+li {
    margin-left: 0;
    border-top: 1px solid #ffffff1a;
    width: 63%;
  }

  .navmenu a,
  .navmenu a:focus {
    font-size: 30px;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: auto;
  }

  section.innovate-section {
    padding: 30px 0;
  }

  section.innovate-section.career .shapbox.shap1 {
    display: none;
  }

  .logo-client img {
    height: 150px;
  }

  .shapbox {
    display: none !important
  }

  .shapbox {
    display: none !important
  }

  footer.footer .connect-btn {
    text-align: center;
    margin-top: 30px;
  }

  footer.footer {
    padding: 20px 0;
  }

  .letter-text {
    opacity: 1;
    top: 80%;
    font-size: 20px;
  }

  .connect-btn.text-end {
    text-align: center !important;
  }
}

/* responsive========================== */

.preloader {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #000000;
  z-index: 9999;
}

.preloader img {
  max-width: 350px;
  object-fit: contain;
}

.loading-text {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;
  animation: pulse 1.5s ease-in-out infinite;
  font-family: 'Brother';
}

.loading-text .dots::after {
  content: "";
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

@keyframes dots {
  0% {
    content: "";
  }

  25% {
    content: ".";
  }

  50% {
    content: "..";
  }

  75% {
    content: "...";
  }

  100% {
    content: "";
  }
}

/* Optional: fade out when content is ready */
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}