.section-label {
  color: #000000;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 0;
  padding-left: 18px;
  position: relative;
}
.section-label::after {
  background: #FF0000;
  width: 13px;
  height: 13px;
  position: absolute;
  content: "";
  border-radius: 20px;
  left: 0;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

h1 {
  font-family: "Google Sans Flex", sans-serif;
  text-transform: capitalize;
}

body.sticky-scrolling {
  overflow: hidden;
}

html,
body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  color: #333333;
  overflow-x: hidden;
  width: 100%;
}
html.no-scroll,
body.no-scroll {
  overflow: hidden !important;
  height: 100vh !important;
}

.w100 {
  width: 100%;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
}

/* Navigation */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  visibility: hidden;
  opacity: 0;
}
.navbar .nav-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 0;
}
.navbar .logo img {
  width: auto;
  height: 80px;
}
@media (max-width: 1024px) {
  .navbar .logo img {
    height: 60px;
  }
}
.navbar .nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 6px;
  background: rgba(15, 15, 15, 0.26);
  backdrop-filter: blur(10px);
  padding: 4px 8px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}
.navbar .nav-menu li {
  margin: 0;
}
.navbar .nav-menu a {
  cursor: pointer;
  color: #ffffff;
  font-weight: 300;
  padding: 4px 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
  font-size: 14px;
  font-weight: 400;
}
.navbar .nav-menu a:hover, .navbar .nav-menu a.active {
  background: #ffffff;
  color: #000;
}
@media (max-width: 768px) {
  .navbar .nav-menu {
    display: none;
  }
}
.navbar .hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 101;
}
.navbar .hamburger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .navbar .hamburger-menu {
    display: flex;
  }
}
.navbar .mobile-nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #0b0b0b;
  z-index: 1000;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
  transform: translateX(100%);
  display: none;
  padding: 20px;
}
.navbar .mobile-nav-panel.active {
  display: flex;
}
.navbar .mobile-nav-panel .mobile-nav-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 0;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar .mobile-nav-panel .mobile-nav-header .logo img {
  height: 40px;
  width: auto;
}
.navbar .mobile-nav-panel .mobile-nav-header .close-menu-btn {
  font-size: 30px;
  color: #ffffff;
  cursor: pointer;
  line-height: 1;
}
.navbar .mobile-nav-panel .mobile-nav-items {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.navbar .mobile-nav-panel .mobile-nav-items li {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.navbar .mobile-nav-panel .mobile-nav-items li a {
  font-size: 24px;
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  display: block;
}
.navbar .mobile-nav-panel .mobile-nav-items li a:hover {
  color: #f4a261;
}
.navbar .mobile-nav-panel.active .mobile-nav-items li {
  opacity: 1;
  transform: translateY(0);
}
.navbar .mobile-nav-panel.active .mobile-nav-items li:nth-child(1) {
  transition-delay: 0.2s;
}
.navbar .mobile-nav-panel.active .mobile-nav-items li:nth-child(2) {
  transition-delay: 0.3s;
}
.navbar .mobile-nav-panel.active .mobile-nav-items li:nth-child(3) {
  transition-delay: 0.4s;
}
.navbar .mobile-nav-panel.active .mobile-nav-items li:nth-child(4) {
  transition-delay: 0.5s;
}
.navbar .mobile-nav-panel.active .mobile-nav-items li:nth-child(5) {
  transition-delay: 0.6s;
}

/* Footer Section */
.footer {
  background-color: #111111;
  color: #ffffff;
  padding: 100px 0 40px;
  font-family: "Inter", sans-serif;
}
.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 60px;
  margin-bottom: 60px;
}
.footer-top .footer-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 0;
}
@media (max-width: 768px) {
  .footer-top .footer-top-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}
.footer-logo img {
  height: 70px;
}
.footer-brand-desc {
  max-width: 280px;
}
.footer-brand-desc p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
}
@media (max-width: 768px) {
  .footer-brand-desc p {
    text-align: center;
  }
}
.footer-main {
  margin-bottom: 80px;
}
.footer-main .footer-main-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  align-items: stretch;
  grid-template-columns: 1fr 3.5fr 1.6fr;
}
@media (max-width: 1024px) {
  .footer-main .footer-main-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .footer-main .footer-main-inner {
    grid-template-columns: 1fr;
  }
}
.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #ffffff;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.footer-col ul li a:hover {
  color: #ffffff;
}
@media (max-width: 768px) {
  .footer-col {
    grid-column: span 1;
  }
}
.footer .business-subgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: stretch;
}
@media (max-width: 480px) {
  .footer .business-subgrid {
    grid-template-columns: 1fr;
  }
}
.footer .follow-us {
  background: #191919;
  padding: 20px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  height: 45px;
}
@media (max-width: 1024px) {
  .footer .follow-us {
    justify-content: space-between;
  }
}
.footer .follow-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #D6D6D6;
  font-weight: 400;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .footer .follow-col {
    grid-column: span 2;
  }
}
@media (max-width: 768px) {
  .footer .follow-col {
    grid-column: span 1;
  }
}
.footer .social-icons {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  gap: 20px;
}
.footer .social-icons a img {
  width: 20px;
  height: 20px;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.footer .social-icons a:hover img {
  opacity: 1;
  transform: translateY(-3px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}
.footer-bottom .footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 0;
}
@media (max-width: 768px) {
  .footer-bottom .footer-bottom-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
.footer .copyright p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-legal {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 30px;
}
.footer-legal a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-legal a:hover {
  color: #ffffff;
}
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 40px;
  }
}

.nav-head {
  background-color: #fff;
  padding: 0px 2px;
  color: #0C0F26;
  font-size: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.innovation-section {
  position: relative;
  height: 90vh;
  min-height: 600px;
  background-image: url("../images/about/award.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 0;
  padding-left: 0;
}
.innovation-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.innovation-section .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.innovation-section .innov-content {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  height: 85vh;
}
.innovation-section .innov-content p {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.4;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .innovation-section .innov-content p {
    font-size: 1.35rem;
  }
}
@media (max-width: 768px) {
  .innovation-section .innov-content p {
    font-size: 1.2rem;
  }
}
.innovation-section .innov-content .btn-connect1 {
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  color: #000;
  padding: 15px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.innovation-section .innov-content .btn-connect1:hover {
  transform: translateY(-2px);
}
.innovation-section .innov-content .btn-connect1 .icon-arrow {
  margin-left: 10px;
  display: flex;
  align-items: center;
}
.innovation-section .innov-content .btn-connect1 .icon-arrow svg {
  width: 14px;
  height: 14px;
}

.cmn_btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 0;
  display: inline-flex;
  background: transparent;
  color: #0a1128;
  padding: 0;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: gap 0.3s ease;
  width: fit-content;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .cmn_btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }
}
.cmn_btn span:first-child {
  background: #ffffff;
  padding: 14px 28px;
  height: 47px;
  border-radius: 5px;
  border: 1px solid #F6F6F6;
  line-height: 1;
}
.cmn_btn .arrow {
  background: #ffffff;
  border: 1px solid #F6F6F6;
  width: 44px;
  height: 47px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  border-radius: 5px;
  font-size: 1.5rem;
}
.cmn_btn .arrow .arrow-icon {
  transform: rotate(-45deg);
  display: block;
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* Life at Akbar Section */
.life-at-akbar {
  padding: 60px 0;
}
@media (max-width: 768px) {
  .life-at-akbar {
    padding: 20px 0;
  }
}
.life-at-akbar .life-bg-container {
  margin: 0 auto;
  padding: 80px 60px;
  background: #0D0C32;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}
.life-at-akbar .life-bg-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/life-bg-noise.png");
  background-repeat: repeat;
  background-size: 380px 194px;
  background-position: top left;
  opacity: 0.33;
  pointer-events: none;
}
@media (max-width: 768px) {
  .life-at-akbar .life-bg-container {
    padding: 55px 28px;
    margin: 0 5px;
  }
}
.life-at-akbar .life-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  align-items: center;
  grid-template-columns: 1fr 1.2fr 1fr;
}
@media (max-width: 1200px) {
  .life-at-akbar .life-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .life-at-akbar .life-content {
    gap: 0;
  }
}
.life-at-akbar .life-text {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: column;
  gap: 20px;
}
.life-at-akbar .life-text .txt {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 768px) {
  .life-at-akbar .life-text .txt {
    order: 1;
    gap: 31px;
  }
}
.life-at-akbar .life-text .txt .section-label {
  font-size: 14px;
  letter-spacing: 2px;
  color: #ffffff;
  font-weight: 500;
  padding-left: 0;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .life-at-akbar .life-text .txt .section-label {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 10px;
  }
}
.life-at-akbar .life-text .txt .section-label::after {
  display: none;
}
.life-at-akbar .life-text .txt h2 {
  font-size: 64px;
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
  font-weight: 400;
}
@media (max-width: 1200px) {
  .life-at-akbar .life-text .txt h2 {
    font-size: 50px;
  }
  .life-at-akbar .life-text .txt h2 br {
    display: none;
  }
}
@media (max-width: 768px) {
  .life-at-akbar .life-text .txt h2 {
    font-size: 64px;
    line-height: 0.94;
  }
  .life-at-akbar .life-text .txt h2 br {
    display: block;
  }
}
@media (max-width: 480px) {
  .life-at-akbar .life-text .txt h2 {
    font-size: 48px;
  }
}
.life-at-akbar .life-text .txt h2 .highlight {
  background: linear-gradient(69.3deg, #b5b4ff 38.225%, #6063ff 62.906%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@media (max-width: 1200px) {
  .life-at-akbar .life-text .cmn_btn {
    margin-top: 0px;
  }
}
@media (max-width: 768px) {
  .life-at-akbar .life-text .cmn_btn {
    order: 4;
    margin-top: 40px;
    padding: 0;
    font-size: 1rem;
  }
}
@media (max-width: 1200px) {
  .life-at-akbar .life-text {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 0;
  }
}
@media (max-width: 768px) {
  .life-at-akbar .life-text {
    flex-wrap: wrap;
    display: contents;
  }
}
.life-at-akbar .life-image {
  position: relative;
}
@media (max-width: 1200px) {
  .life-at-akbar .life-image {
    max-width: 600px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .life-at-akbar .life-image {
    order: 2;
    max-width: 100%;
    margin: 0;
    margin-top: 66px;
  }
}
.life-at-akbar .life-image-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: stretch;
  grid-template-columns: repeat(4, 104px);
  grid-template-rows: repeat(2, 118px);
}
.life-at-akbar .life-image-grid img,
.life-at-akbar .life-image-grid video {
  width: 104px;
  height: 118px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.life-at-akbar .life-image-grid > :nth-child(n+1):nth-child(-n+4) {
  border-radius: 8px 8px 0 0;
}
.life-at-akbar .life-image-grid > :nth-child(n+5):nth-child(-n+8) {
  border-radius: 0 0 8px 8px;
}
.life-at-akbar .life-image-grid .empty-space {
  width: 104px;
  height: 118px;
  background: transparent;
}
@media (max-width: 768px) {
  .life-at-akbar .life-image-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 95px);
  }
  .life-at-akbar .life-image-grid img,
  .life-at-akbar .life-image-grid video {
    width: 100%;
    height: 95px;
  }
  .life-at-akbar .life-image-grid .empty-space {
    width: 100%;
    height: 95px;
  }
  .life-at-akbar .life-image-grid > :nth-child(n+1):nth-child(-n+4) {
    border-radius: 4px 4px 0 0;
  }
  .life-at-akbar .life-image-grid > :nth-child(n+5):nth-child(-n+8) {
    border-radius: 0 0 4px 4px;
  }
}
.life-at-akbar .life-description {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .life-at-akbar .life-description {
    order: 3;
    font-size: 14px;
    line-height: 2;
    margin-top: 80px;
  }
}
.life-at-akbar .life-description p {
  margin: 0;
}

@media (hover: none), (pointer: coarse) {
  .cmn_btn,
  .btn-connect,
  .btn-apply,
  .cta-button {
    transform: none !important;
  }
}
.form-status {
  display: none;
  padding: 16px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  align-items: center;
  gap: 14px;
  animation: formStatusReveal 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  width: 100%;
}
.form-status.success {
  display: flex;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  color: #166534;
  border: 1px solid rgba(34, 197, 94, 0.25);
  box-shadow: 0 2px 12px rgba(34, 197, 94, 0.08);
}
.form-status.error {
  display: flex;
  background: linear-gradient(135deg, #fef2f2 0%, #fff1f2 100%);
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.2);
  box-shadow: 0 2px 12px rgba(239, 68, 68, 0.06);
}
.form-status .status-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.form-status .status-icon svg {
  width: 18px;
  height: 18px;
}
.form-status.success .status-icon {
  background: rgba(34, 197, 94, 0.12);
}
.form-status.error .status-icon {
  background: rgba(239, 68, 68, 0.1);
}
.form-status span:not(.status-icon) {
  flex: 1;
}

@keyframes formStatusReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.inner-banner {
  background-image: url("../images/blubg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  min-height: 480px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .inner-banner {
    height: 50vh;
  }
}
.inner-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.75) 100%);
  pointer-events: none;
}
.inner-banner .container {
  position: relative;
  z-index: 5;
}
.inner-banner .banner-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0;
  gap: 18px;
}
.inner-banner .section-label {
  color: #ffffff;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  padding-left: 0;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.inner-banner .section-label::after {
  display: none;
}
.inner-banner .section-label::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #FF0000;
  border-radius: 50%;
  margin-right: 10px;
}
.inner-banner h1 {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.05;
  margin: 0;
  color: #ffffff;
  text-transform: none;
}
@media (max-width: 1300px) {
  .inner-banner h1 {
    font-size: 3.5rem;
  }
}
@media (max-width: 1024px) {
  .inner-banner h1 {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .inner-banner h1 {
    font-size: 2.4rem;
  }
}
.inner-banner .banner-chips {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
}
.inner-banner .banner-chips .chip {
  position: absolute;
  width: 75px;
  height: 90px;
  background: #ffffff;
  border-radius: 14px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: row;
  gap: 0;
  overflow: hidden;
  transform: translateY(-50%);
  transition: 0.3s;
  opacity: 0;
}
.inner-banner .banner-chips .chip img {
  width: 65px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.inner-banner .banner-chips .chip-1 {
  left: -25%;
  top: 22%;
}
.inner-banner .banner-chips .chip-2 {
  left: -40%;
  top: 80%;
}
.inner-banner .banner-chips .chip-3 {
  right: -40%;
  top: 80%;
}
.inner-banner .banner-chips .chip-4 {
  right: -22%;
  top: 22%;
}
@media (max-width: 1024px) {
  .inner-banner .banner-chips .chip {
    width: 64px;
    height: 64px;
  }
  .inner-banner .banner-chips .chip img {
    width: 100%;
    height: 100%;
  }
  .inner-banner .banner-chips .chip-1 {
    left: -22%;
    top: 42%;
  }
  .inner-banner .banner-chips .chip-2 {
    left: -32%;
    top: 100%;
  }
  .inner-banner .banner-chips .chip-3 {
    right: -37%;
    top: 100%;
  }
  .inner-banner .banner-chips .chip-4 {
    right: -27%;
    top: 42%;
  }
}
@media (max-width: 768px) {
  .inner-banner .banner-chips {
    display: none;
  }
}

.career-opportunities {
  padding: 100px 0;
  overflow: hidden;
  background: #ffffff;
}
@media (max-width: 1024px) {
  .career-opportunities {
    padding: 60px 0;
  }
}
.career-opportunities .career-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  gap: 0;
  margin-bottom: 60px;
  gap: 60px;
}
@media (max-width: 1024px) {
  .career-opportunities .career-header {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
}
.career-opportunities .career-header h2 {
  font-size: 38px;
  font-weight: 500;
  color: #0C0F26;
  line-height: 1.1;
  flex: 1;
  margin: 0;
}
@media (max-width: 768px) {
  .career-opportunities .career-header h2 {
    font-size: 32px;
  }
}
.career-opportunities .career-header .header-desc {
  flex: 1;
  max-width: 500px;
  padding-top: 10px;
}
.career-opportunities .career-header .header-desc p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #0C0F26;
  margin: 0;
}
.career-opportunities .career-swiper {
  overflow: visible;
  padding: 20px 0;
}
.career-opportunities .career-card {
  background: #ffffff;
  border: 1px solid #EFEFEF;
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  height: 420px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  gap: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 768px) {
  .career-opportunities .career-card {
    height: auto;
    min-height: 380px;
  }
}
.career-opportunities .career-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #0C0F26;
  line-height: 1.3;
  margin: 0 0 20px 0;
}
.career-opportunities .career-card .badge {
  display: inline-block;
  background: #F6EFD3;
  color: #333;
  padding: 3px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 30px;
  align-self: flex-start;
}
.career-opportunities .career-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #0C0F26;
  margin: 0 0 40px 0;
  flex: 1;
  font-weight: 400;
}
.career-opportunities .career-card .card-footer {
  margin-top: auto;
  width: 100%;
}
.career-opportunities .career-card .location {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 10px;
}
.career-opportunities .career-card .location .location-text {
  font-size: 15px;
  color: #333;
  font-weight: 500;
}
.career-opportunities .career-card .career-cta-btn {
  display: flex;
  position: absolute;
  height: 70px;
  width: 70px;
  border-radius: 45px 0px 0px 0px;
  bottom: -1px;
  right: -1px;
  background: #ffffff;
  border-top: 1px solid #EFEFEF;
  border-left: 1px solid #EFEFEF;
  z-index: 5;
}
.career-opportunities .career-card .top-border {
  height: 40px;
  width: 30px;
  top: -40px;
  border-radius: 0px 0px 20px 0px;
  box-shadow: 0px 20px 0px 0px #ffffff;
  right: -1px;
  position: absolute;
  z-index: 4;
  border-bottom: 1px solid #EFEFEF;
  border-right: 1px solid #EFEFEF;
}
.career-opportunities .career-card .left-border {
  height: 30px;
  width: 40px;
  border-radius: 0px 0px 20px 0px;
  box-shadow: 20px 0px 0px 0px #ffffff;
  position: absolute;
  left: -40px;
  bottom: -1px;
  z-index: 4;
  border-bottom: 1px solid #EFEFEF;
  border-right: 1px solid #EFEFEF;
}
.career-opportunities .career-card .career-cta {
  width: 50px;
  height: 50px;
  background: #D12E2E;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 10;
}
.career-opportunities .career-card .career-cta span {
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 300;
  margin-bottom: 2px;
}
.career-opportunities .career-card .career-cta:hover {
  transform: scale(1.1);
  background: #b01c1c;
}

.job-application {
  padding: 100px 0;
  background: #ffffff;
  scroll-margin-top: 100px;
}
@media (max-width: 1024px) {
  .job-application {
    padding: 60px 0;
  }
}
.job-application .application-header {
  margin-bottom: 60px;
}
.job-application .application-header h2 {
  font-size: 48px;
  font-weight: 500;
  color: #0C0F26;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .job-application .application-header h2 {
    font-size: 32px;
  }
}
.job-application .application-header p {
  font-size: 14px;
  color: #888;
  max-width: 600px;
  line-height: 1.6;
}
.job-application .application-form {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: row;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}
@media (max-width: 1024px) {
  .job-application .application-form {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }
}
.job-application .application-form .form-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 30px;
  width: calc(60% - 15px);
}
@media (max-width: 1024px) {
  .job-application .application-form .form-row {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .job-application .application-form .form-row {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
}
.job-application .application-form .form-row .form-group {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  width: calc(50% - 15px);
}
@media (max-width: 768px) {
  .job-application .application-form .form-row .form-group {
    width: 100%;
  }
}
.job-application .application-form .form-row .form-group label {
  font-size: 20px;
  color: #515151;
}
.job-application .application-form .form-row .form-group label .required {
  color: #FF5722;
  margin-left: 4px;
}
.job-application .application-form .form-row .form-group input {
  font-size: 16px;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #E0E0E0;
  outline: none;
  color: #333;
  width: 100%;
}
.job-application .application-form .form-row .form-group input::placeholder {
  color: #B0B0B0;
  font-weight: 300;
}
.job-application .application-form .form-row .form-group input:focus {
  border-bottom-color: #333;
}
.job-application .application-form .form-row .form-group .error-msg {
  color: #D12E2E;
  font-size: 12px;
  display: block;
  position: absolute;
  bottom: -20px;
}
.job-application .application-form .form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 30px;
  width: calc(40% - 15px);
}
@media (max-width: 1024px) {
  .job-application .application-form .form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 20px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .job-application .application-form .form-actions {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }
}
.job-application .application-form .form-actions .file-upload {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
}
.job-application .application-form .form-actions .file-upload .file-upload-trigger {
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  color: #515151;
  min-width: 0;
  max-width: 100%;
}
.job-application .application-form .form-actions .file-upload .file-upload-trigger .icon-clip {
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
  flex-shrink: 0;
}
.job-application .application-form .form-actions .file-upload .file-upload-trigger .text {
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .job-application .application-form .form-actions .file-upload .file-upload-trigger .text {
    font-size: 13px;
  }
}
.job-application .application-form .form-actions .file-upload .file-upload-trigger:hover {
  opacity: 0.8;
}
.job-application .application-form .form-actions .file-upload .file-name-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  background: #F5F5F5;
  padding: 8px 12px;
  border-radius: 4px;
  margin-left: 0;
  flex: 0 1 auto;
  min-width: 0;
  max-width: 100%;
}
.job-application .application-form .form-actions .file-upload .file-name-container .file-icon {
  margin-right: 5px;
  flex-shrink: 0;
}
.job-application .application-form .form-actions .file-upload .file-name-container .file-name-text {
  font-size: 14px;
  color: #333;
  max-width: 180px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .job-application .application-form .form-actions .file-upload .file-name-container .file-name-text {
    max-width: none;
  }
}
.job-application .application-form .form-actions .file-upload .file-name-container .remove-file-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #999;
  margin-left: auto;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
}
.job-application .application-form .form-actions .file-upload .file-name-container .remove-file-btn:hover {
  color: #ff0000;
}
.job-application .application-form .form-actions .btn-apply {
  background: #000000;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  min-width: 140px;
  height: 48px;
  transition: background 0.3s;
  flex-shrink: 0;
}
.job-application .application-form .form-actions .btn-apply .arrow {
  font-size: 18px;
}
.job-application .application-form .form-actions .btn-apply:hover {
  background: #333333;
}
.job-application .application-form .form-status {
  flex-basis: 100%;
  margin-top: 0;
}
