@font-face {
    font-family: 'times';
    src: url('../fonts/times');
}

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@700&family=Times+New+Roman&family=Helvetica+Neue&display=swap');

@font-face {
    font-family: 'Cal Bodoni Palazzo';
    src: url('../fonts/CalBodoniPalazzo-Regular.woff2') format('woff2'),
        url('../fonts/CalBodoniPalazzo-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5rem;
    box-sizing: border-box;
}


html,
body {
    width: 100%;
    overflow-x: hidden;
    font-family: sans-serif;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.content h2{
  font-family: 'Helvetica Neue', Arial, sans-serif !important;
}


.main-menu1 li a.active {
  color: #FF8F2A;
}


.nav-menu li.open > .sub-menu,
.nav-menu li .sub-menu li.open > ul,
.nav-menu li .sub-menu li ul li.open > ul {
  max-height: 1000px;
}

.main-menu1 .sub-menu {
 display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(252, 248, 248, 0.15);
  backdrop-filter: blur(15px);
  min-width: 200px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  z-index: 999;
  flex-direction: column;
  margin: 5px 0 0 0;      
  padding: 5px 0;         
  opacity: 0;
  pointer-events: auto;
  transition: all 0.4s ease;
}

.main-menu1 li:hover > .sub-menu {
 opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.main-menu1 li {
  position: relative;
}

.main-menu1 li a {
  display: block;
  padding: 8px 15px;      
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.main-menu1 .sub-menu li a:hover {
  background: rgba(255, 143, 42, 0.08);
  color: #FF8F2A;
  padding-left: 25px;
  border-radius: 8px;
}

.main-menu1 .sub-menu li ul {
  position: absolute;
  margin-left: 0px;
  top: 0;
  left: 100%;
  transform: translateX(20px);
  background: rgba(252, 248, 248, 0.15);
  backdrop-filter: blur(15px);
  min-width: 220px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  z-index: 999;
  padding: 5px 0;      
  list-style: none;
  opacity: 0;
  pointer-events: auto;
  transition: all 0.4s ease;
}

.main-menu1 .sub-menu li:hover > ul {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  /* background: #00000080; */
  border-radius: 12px;
}

.main-menu1 .sub-menu li ul li ul li a {
    background: #00000070;
}


.main-menu1 .sub-menu li ul li a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease;
}

.main-menu1 .sub-menu li ul li a:hover {
  padding: 8px 15px;       
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  background: rgba(255, 143, 42, 0.08);
  color: #FF8F2A;
  
}

.container {
  max-width: 1750px;
  margin: 0 auto;
  padding: 0 5rem;
  box-sizing: border-box;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-section {
  position: relative;
  z-index: 1000;
  padding: 10px 0;
}

.head-img img {
  width: 190px;
}

.hamburger {
  font-size: 26px;
  cursor: pointer;
  display: none;
  z-index: 1100;
  color: #fff;
}

.nav-menu {
  display: flex;
  gap: 20px;
}

.nav-menu ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu ul li {
  position: relative;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 1px;
  padding: 8px 15px;         
  line-height: 1.3;
}

.nav-menu ul li a:hover,
.nav-menu ul li a:active {
  color: #FF8F2A;
}

/* .dropdown > a::after,
.dropdown-sub > a::after {
  content: "▸";
  float: right;
  transition: transform 0.3s;
}

.dropdown.open > a::after,
.dropdown-sub.open > a::after {
  transform: rotate(90deg);
} */

.nav-menu ul li .sub-menu li ul {
  position: absolute;
  top: 0;
  left: 100%;
  transform: translateX(20px);
  background: rgba(252, 248, 248, 0.15);
  backdrop-filter: blur(15px);
  min-width: 190px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  z-index: 999;
  padding: 0px 0;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  color: #000;
}


@media (max-width: 1024px) {

.nav-menu ul li a.active,
.nav-menu ul li .sub-menu li a.active,
.nav-menu ul li .sub-menu li ul li a.active {
  color: #FF8F2A;
}

.nav-menu ul li .sub-menu li ul {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  transform: none !important;
  background: #000;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  border-width: 80%;
  padding-left: 10px;
  color: #ffffff;
}

.nav-menu ul li .sub-menu li.open > ul {
  max-height: 1000px;
  background: #000;
  width: 100%;
  margin: 0;
  border-radius: 0px;
}

.nav-menu ul li .sub-menu li ul li a {
  font-size: 14px;
  background: #000;
}

.main-menu1 .sub-menu li a:hover {
  border-radius: 0;
}

.nav-menu ul li .sub-menu li.open > ul {
  margin-left: 15px;
}

.nav-menu ul li.open > .sub-menu {
  max-height: 1000px;
  overflow: visible;
  margin-left: 15px;
  box-shadow: none;
}

.nav-menu ul li .sub-menu {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  transform: none !important;
  background: #000;
}

.hamburger {
  display: block;
  font-size: 28px;
  padding: 10px 15px;
  color: #fff;
  cursor: pointer;
  z-index: 1100;
}

.nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  color: white;
  z-index: 999;
  display: none;
  flex-direction: column;
  overflow-y: auto;
  transition: transform 0.3s ease;
  padding-top: 60px;
}

.nav-menu.active {
  display: flex;
}

.nav-menu ul{
  gap: 15px;
}

.nav-menu ul {
  flex-direction: column;
  width: 100%;
  list-style: none;
  padding: 25px;
  margin: 0;
}

.nav-menu ul li {
  position: relative;
  width: 100%;
  border-width: 40%;
}

.nav-menu ul li.has-submenu > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 8px 15px;
  font-size: 20px;
  color: #ffffff;
  font-weight: 500;
  position: relative;
}

/* .nav-menu ul li.has-submenu > a::after {
  content: "+";
  font-size: 22px;
  color: #FF8F2A;
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.3s ease, content 0.3s ease;
}

  .nav-menu ul li.open > a::after {
    content: "|";
    transform: rotate(0deg);
    font-size: 12px;
  } */

  .nav-menu ul li .sub-menu {
    background: #000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: #ffffff;
  }

  .nav-menu ul li.open > .sub-menu {
    max-height: 1000px;
    width: 90%;
    padding: 10px 25px;
  }

  .nav-menu ul li .sub-menu li a {
    padding: 12px;
    font-size: 15px;
    color: #ffffff;
    background: #000;
  }

  .nav-menu ul li .sub-menu li ul {
    background: #000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav-menu ul li .sub-menu li.open > ul {
    max-height: 1200px;
    width: 85%;
    padding: 2px;
  }

  .nav-menu ul li .sub-menu li ul li a {
    font-size: 14px;
    color: #ffffff;
    background: #000;
  }

  .nav-menu ul li .sub-menu li a,
  .nav-menu ul li .sub-menu li ul li a {
    line-height: 1.3;
  }

  #closeBtn {
    display: block !important;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    color: #ffffff;
    cursor: pointer;
    z-index: 2000;
  }

  .nav-menu.active {
    display: flex !important;
  }

  .nav-menu {
    width: 100vw !important;
    height: 100vh;
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    flex-direction: column;
    overflow-y: auto;
    padding-top: 60px;
    z-index: 1500;
  }

  .nav-menu ul li {
    border-width: 40%;
  }

  .nav-menu ul li .sub-menu li {
    border-width: 40%;
  }

  .nav-menu {
    background: radial-gradient(circle at top, #000, #000);
    transition: all 0.4s ease;
  }

  .nav-menu.active {
    animation: slideInMenu 0.4s ease forwards;
  }

  @keyframes slideInMenu {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-menu ul li {
    transition: all 0.3s ease;
  }

  .nav-menu ul li a {
    color: #ffffff;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }

  .nav-menu ul li a:hover {
    color: #FF8F2A;
  }

  .nav-menu ul li.has-submenu > a::after {
    color: #FF8F2A;
  }

  .nav-menu ul li.open > a::after {
    transform: rotate(90deg);
  }

  .nav-menu ul li .sub-menu {
    background: #000;
    transition: max-height 0.5s ease, opacity 0.3s ease;
    opacity: 0;
    margin-left: 10px;
    border-radius: 0 0 12px 12px;
  }

  .nav-menu ul li.open > .sub-menu {
    max-height: 1500px;
    opacity: 1;
    padding: 1px 0;
  }

  .nav-menu ul li .sub-menu li a {
    padding: 12px 25px;
    background: transparent;
    display: block;
    transition: all 0.3s ease;
  }

  .nav-menu ul li .sub-menu li a:hover {
    color: #FF8F2A;
    border-radius: 6px;
    padding-left: 35px;
  }

  .nav-menu ul li .sub-menu li ul {
    margin-left: 20px;
  }

  .nav-menu ul li .sub-menu li.open > ul {
    max-height: 1100px;
    border-bottom: 1px solid #333232;
  }

  .nav-menu ul li .sub-menu li ul li a {
    padding: 10px 35px;
    transition: all 0.3s ease;
  }

  .nav-menu ul li .sub-menu li ul li a:hover {
    color: #FF8F2A;
  }

  #closeBtn {
    transition: transform 0.3s ease, color 0.3s ease;
  }

  #closeBtn:hover {
    color: #FF8F2A;
    transform: rotate(90deg);
  }

  
  .nav-menu ul li .sub-menu li.has-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 25px;
    font-size: 17px;
    color: #ffffff;
    background: transparent;
    position: relative;
  }

  /* .nav-menu ul li .sub-menu li.has-submenu > a::after {
    content: "+";
    font-size: 18px;
    color: #FF8F2A;
    margin-left: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease, content 0.3s ease;
  }

  .nav-menu ul li .sub-menu li.open > a::after {
    content: "|";
    font-size: 12px;
  } */

  .nav-menu ul li {
  margin: 0;
  padding: 0;
}


.nav-menu ul li .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  /* background: rgba(252, 248, 248, 0.15); */
  backdrop-filter: blur(15px);
  min-width: 220px;
  border-radius: 12px;
  /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25); */
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  padding: 0;  
  margin: 0;  
}


.nav-menu ul li:hover > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0); 
}
}

span#closeBtn {
  display: none;
}


/* career hero section */

/* .career-hero {
    z-index: 0; 
}
.career-hero::before {
    z-index: 0; 
} */


.career-hero {
    position: relative;
    width: 100%;
    height: 450px;
    background-image: url("../images/career-hero-image.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    /* overflow: hidden; */
}

.career-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

.career-hero > * {
    position: relative;
    z-index: 2;
}

.header-section,
.career-navbar,
.nav-menu,
.main-menu1 .sub-menu {
    z-index: 9999 !important; /* force above hero */
}


.career-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 160px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.career-logo {
    font-size: 22px;
    color: #fff;
    font-weight: 600;
}

.career-logo img {
    width: 180px;
}

.career-nav-links {
    display: flex;
    gap: 30px;
    /* background-color: #ffffff;
    padding: 15px 25px;
    border-radius: 20px; */
    list-style-type: none;
}

.career-nav-links a {
    transition: 0.3s;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 1px;
}

.career-nav-links a:hover {
    color: #f57c00;
}

.career-nav-links a.active {
    color: #FF8F2A;
}



/* Hamburger Button */

.career-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.career-hamburger span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px 0;
    transition: 0.3s;
}


/* Centered Heading */

.career-hero-heading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5.2rem;
    color: #fff;
    /* font-weight: 600; */
    text-align: center;
    font-family: "Libre Bodoni", serif;
}

.career-highlight {
    color: #FF8F2A;
    font-weight: 510;
    font-style: italic;
    font-family: 'times-italic';
}

/* Responsive Navbar */

@media (max-width: 768px) {

    .career-hamburger {
        display: flex;
    }

    .career-nav-links {
        display: none;
        position: absolute;
        top: 80px;
        right: 60px;
        flex-direction: column;
        gap: 20px;
        background-color: #fff;
        padding: 15px 25px;
        border-radius: 20px;
        z-index: 999;
    }

    .career-nav-links.active {
        display: flex;
    }
}


/* video-section */

.video-heading {
    font-size: 4.5em;
    font-weight: 600;
    line-height: 1.4;
    color: #0f2d2f;
    margin-bottom: 50px;
    margin-top: 150px;
    max-width: 1380px;
    font-family: "Libre Bodoni", serif;
}

.video-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    height: 625px;
}

video {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-overlay:hover {
    transform: translate(-50%, -50%) scale(1.15);
}

.play-overlay::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 20px solid #000;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}


.video-description {
    font-size: 1.3em;
    line-height: 1.6;
    color: #A6A6A6;
    max-width: 950px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* our core section */

.our-core-section h2 {
    font-size: 4.2rem;
    text-align: left;
    margin-bottom: 50px;
    line-height: 1.3;
    margin-top: 150px;
    color: #00262C;
    font-family: "Libre Bodoni", serif;
}

.core-values {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 150px;
}

.left,
.right {
    width: 48%;
}

.image-box {
    position: relative;
    width: 100%;
}

.team-img {
    width: 100%;
    border-radius: 20px;
}

.badge {
    position: absolute;
    bottom: 80px;
    right: -50px;
    background: white;
    padding: 15px 22px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.badge p {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 22px;
}

.avatars {
    display: flex;
    align-items: center;
    gap: 5px;
}

.avatars img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid white;
}

.avatars span {
    font-size: 12px;
    font-weight: 600;
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 12px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px 50px;
    padding: 60px 50px;
}

.value-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.value-card .icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.value-card .icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
}

.value-card .icon:hover {
    transform: scale(1.1);
}

.value-card .icon img {
    width: 40px;
    height: 40px;
    z-index: 2;
}

.value-card h4 {
    font-size: 24px;
    /* font-weight: bold; */
    margin: 10px 0 0;
    color: #00262C;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.value-card p {
    font-size: 16px;
    color: #A6A6A6;
    max-width: 200px;
    line-height: 1.3;
    font-weight: 500;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 1px;
}

/* Background Colors */
.orange .icon {
    background-color: #fdd9b0;
}

.green .icon {
    background-color: #c4f2d1;
}

.blue .icon {
    background-color: #c3e8fc;
}

.purple .icon {
    background-color: #e5dcfa;
}

/* Glow Effects on Hover (Slower + Darker) */

.orange .icon:hover::after {
    animation: sonarOrange 1.5s ease-out;
    opacity: 1;
}

.green .icon:hover::after {
    animation: sonarGreen 1.5s ease-out;
    opacity: 1;
}

.blue .icon:hover::after {
    animation: sonarBlue 1.5s ease-out;
    opacity: 1;
}

.purple .icon:hover::after {
    animation: sonarPurple 1.5s ease-out;
    opacity: 1;
}

/* Keyframes */
@keyframes sonarOrange {
    0% {
        opacity: 0.3;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(253, 155, 50, 0.4);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 20px 20px rgba(253, 155, 50, 0.5);
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
        box-shadow: 0 0 40px 40px rgba(253, 155, 50, 0);
    }
}

@keyframes sonarGreen {
    0% {
        opacity: 0.3;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 20px 20px rgba(46, 204, 113, 0.5);
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
        box-shadow: 0 0 40px 40px rgba(46, 204, 113, 0);
    }
}

@keyframes sonarBlue {
    0% {
        opacity: 0.3;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 20px 20px rgba(52, 152, 219, 0.5);
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
        box-shadow: 0 0 40px 40px rgba(52, 152, 219, 0);
    }
}

@keyframes sonarPurple {
    0% {
        opacity: 0.3;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(155, 89, 182, 0.4);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 20px 20px rgba(155, 89, 182, 0.5);
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
        box-shadow: 0 0 40px 40px rgba(155, 89, 182, 0);
    }
}

@media (max-width: 768px) {
    .values {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .core-values {
        flex-direction: column;
    }

    .left,
    .right {
        width: 100%;
    }

    .values {
        grid-template-columns: 1fr;
    }
}

/* <!-- Opportunities-section --> */

.opportunities {
    background-color: #F2F4F0;
    margin-bottom: 20px;
}

.job-section {
    padding-top: 150px;
    padding-bottom: 150px;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.job-header h2 {
    font-size: 4.1rem;
    font-weight: 700;
    color: #00262C;
    font-family: "Libre Bodoni", serif;
}

.job-subtitle {
    font-size: 22px;
    color: #A6A6A6;
    max-width: 500px;
    line-height: 1.4;
    margin-top: 5px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.job-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 50px 0;
    padding: 15px 15px;
}

.tab {
    padding: 18px 32px;
    border-radius: 30px;
    border: none;
    background: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #A6A6A6;
}

.tab.active {
    background-color: #f57c00;
    color: #fff;
}

.job-listings {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.job-card {
    background: rgb(255, 255, 255);
    border-radius: 14px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

.job-card-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1px 25px;
    font-size: 1.5rem;
    /* font-weight: 500; */
    gap: 40px;
    cursor: pointer;
    color: #00262C;
}

.job-card-header span {
    flex: 1;
}

.job-type {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #00262C;
}

.arrow {
    font-size: 50px;
    transition: transform 0.3s ease;
}

.arrow.rotate {
    transform: rotate(180deg);
}

.job-card.open .job-details {
    display: block;
}

@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.job-details {
    padding: 10px 25px;
    font-size: 1.2rem;
    color: #555;
    background: #F9F9F9;
    border-top: 1px solid #ddd;
    display: none;
    animation: slideDown 0.3s ease forwards;
    line-height: 1.8;
    margin-top: 10px;
}


.job-details span {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}


.job-details span:first-child {
    font-weight: bold;
    font-size: 1rem;
    color: #444;
}

.job-card.open .job-details {
    display: block;
}


.job-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}



/* cards-section */

.benefits-section {
    padding-top: 150px;
    padding-bottom: 150px;
}

.benefits-section h1 {
    font-size: 4.1rem;
    font-weight: 600;
    line-height: 1.2;
    color: #072A2D;
    margin-bottom: 70px;
    font-family: "Libre Bodoni", serif;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.benefit-card {
    border-radius: 20px;
    overflow: visible;
    text-align: left;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h4 {
    font-size: 25px;
    font-weight: 700;
    padding: 20px 20px 4px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.benefit-card p {
    font-size: 18px;
    color: #A6A6A6;
    padding: 10px 20px 20px;
    line-height: 1.5;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}


.image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 50px;
}

.image-grid {
    width: 90vw;
    max-width: 300px;
    aspect-ratio: 1 / 1;
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    grid-template-rows: repeat(20, 1fr);
    overflow: hidden;
    position: relative;
}

.pixel {
    width: 100%;
    height: 100%;
    background-size: calc(20 * 100%) calc(20 * 100%);
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(0.5);
    transition: all 1s ease;
}


.pixel.show {
    opacity: 1;
    transform: scale(1);
}


/* form-section */

.join-team-section {
    max-width: 1200px;
    margin: auto;
    padding: 40px 0;

}

.join-team-heading {
    background-color: #F2F4F0;
    padding-bottom: 300px;
    padding-top: 50px;
    font-family: "Libre Bodoni", serif;
    margin-top: 80px;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 30px;
    align-items: center;
}

.content h2 {
    font-size: 4.1rem;
    font-weight: 600;
    line-height: 1.2;
    color: #072A2D;
    font-family: "Libre Bodoni", serif;
}

.content p {
    font-size: 18px;
    color: #A6A6A6;
    line-height: 1.5;
    text-align: end;
    align-items: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.application-form {
    background: #fff;
    border-radius: 22px;
    padding: 70px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-top: -350px;
}

.form-row {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.application-form input[type="text"],
.application-form input[type="tel"],
.application-form input[type="email"],
.application-form textarea {
    flex: 1;
    padding: 25px 30px;
    border-radius: 8px;
    font-size: 18px;
    width: 100%;
    background-color: #F2F2F2;
    border: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.file-upload {
    display: flex;
    align-items: center;
    position: relative;
    width: 50%;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 10px;
}

.file-upload input[type="file"] {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-label {
    padding: 18px 35px;
    background-color: #f8e8da;
    border: 1px solid #ff9f43;
    color: #072A2D;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    white-space: nowrap;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

textarea {
    width: 100%;
    border: 1px solid #ccc;
    resize: none;
    margin-bottom: 20px;
    font-size: 18px;
    border-radius: 8px;
    padding: 25px 30px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

button[type="submit"] {
    background-color: #ff9f43;
    border: none;
    padding: 15px 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

button[type="submit"]:hover {
    background-color: #fb8c00;
}

.application-form input[type="text"]:hover,
.application-form input[type="tel"]:hover,
.application-form input[type="email"]:hover,
.application-form textarea:hover,
.application-form input[type="text"]:focus,
.application-form input[type="tel"]:focus,
.application-form input[type="email"]:focus,
.application-form textarea:focus {
    outline: none;
    border: 1px solid #ff9f43;
    background-color: #fff;
    box-shadow: 0 0 0 5px rgba(255, 159, 67, 0.3);
    transition: all 0.3s ease;
}

.input-field {
    position: relative;
    flex: 1;
}

.input-field label {
    position: absolute;
    left: 30px;
    top: 27px;
    color: #a6a6a6;
    pointer-events: none;
    transition: all 0.3s ease;
    background-color: transparent;
    font-size: 18px;
}

.application-form input:focus+label,
.application-form input:valid+label,
.application-form textarea:focus+label,
.application-form textarea:valid+label {
    top: -10px;
    left: 25px;
    font-size: 14px;
    background-color: #fff;
    padding: 0 8px;
    color: #ff9f43;
    font-weight: bold;
    border-radius: 50px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Optional: if textarea overlaps label */
.input-field textarea+label {
    top: 30px;
}



/* inquiry-section */

.inquiry {
    margin: 0;
    background-color: #F2F4F0;
    color: #062b2f;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 850px;
    margin-top: 100px;
}

.inquiry-section {
    text-align: center;
}

.inquiry-section h2 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 500;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 1px;
    overflow: visible;
    max-width: 1550px;
}

.inquiry-section p {
    font-size: 1.2rem;
    color: #00262C;
    margin-bottom: 25px;
    line-height: 1.6rem;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    max-width: 1200px;
  margin: 0 auto 25px; 
  text-align: center;
}

.glow-button {
    position: relative;
    font-size: 14px;
    color: white;
    background: #FF8F2B;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
    width: 130px;
    text-align: center;
    height: 48px;
    justify-content: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 1px;
}

.glow-button span {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease, filter 0.3s ease;
}

.glow-button .icon {
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
}

/* .glow-button::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 999px;
    background: conic-gradient(from 0deg,
            #FF8F2B 0%,
            #ffc382 25%,
            #FF8F2B 50%,
            #ffbc7a 75%,
            #FF8F2B 100%);
    z-index: 0;
    opacity: 0;
    transform: rotate(0deg);
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.glow-button::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
    background: #FF8F2B;
    border-radius: 999px;
    z-index: 1;
    pointer-events: none;
}

.glow-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px #FF8F2Baa;
}

.glow-button:hover::before {
    opacity: 1;
    animation: spinBorder 3s linear infinite, pulseGlow 1.5s ease-in-out infinite;
}

.glow-button:hover span {
    filter: brightness(1.3);
}

@keyframes spinBorder {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        filter: brightness(1.1) drop-shadow(0 0 6px #FF8F2B);
    }

    50% {
        filter: brightness(1.6) drop-shadow(0 0 16px #ffc382);
    }
} */

@media (max-width: 500px) {
    .glow-button {
        padding: 0.8em 1.4em;
        font-size: 14px;
    }
}




/* footer section */

.footer-section {
    background-color: #f8f8f8;
    padding: 60px 0 20px;
    font-family: sans-serif;
}

.footer-grid {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    padding-bottom: 60px;
}

.footer-box {
    width: 20%;
}

.footer-box.footer-logo-box {
    width: 30%;
}

.footer-box.footer-logo-box a {
    color: #fff;
}

.footer-logo-box img {
    width: 140px;
    margin-bottom: 15px;
}

.footer-box h4 {
    font-size: 20px;
    margin: 12px 0;
    color: #1c1c1c;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: 1px;
}

.footer-box p,
.footer-box ul li a {
    font-size: 18px;
    text-decoration: none;
    line-height: 1.6;
}

.footer-box.footer-logo-box p {
    color: #A6A6A6;
    max-width: 280px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    padding-bottom: 20px;
}

.footer-box p,
.footer-box ul li a,
.footer-box a {
    color: #A6A6A6;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 8px;
}

/* .inquiry-btn {
    display: inline-block;
    background: orange;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    margin-top: 15px;
    text-decoration: none;
    font-weight: 500;
    font-family: 'SaansTRIAL-Medium';
} */

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

/* Social Icons With Effects */

.social-icons {
    display: flex;
    gap: 15px;
    padding: 0;
    margin-bottom: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    /* background-color: #fff; */
    text-align: center;
    line-height: 40px;
    font-size: 22px;
    display: block;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    /* border: 2px solid #fff; */
    z-index: 1;
    transition: all 0.3s ease;
}

.social-icons a i {
    position: relative;
    color: #262626;
    transition: 0.5s;
    z-index: 3;
}

.social-icons a:hover i {
    color: #fff;
    transform: rotateY(360deg);
}

.social-icons a::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    z-index: 2;
}

.social-icons a:hover::before {
    top: 0;
}

/* Specific icon backgrounds */
/* .social-icons a:nth-child(1)::before {
    background: #55acee;
    Twitter
} */

.social-icons a:nth-child(1)::before {
    background: #3b5999;
    /* Facebook */
}

.social-icons a:nth-child(2)::before {
    background: #0077b5;
    /* LinkedIn */
}

.social-icons a:nth-child(3)::before {
    background: #ff0000;
    /* YouTube */
}

.social-icons a:nth-child(4)::before {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    /* Instagram */
}

.copyright {
    text-align: center;
    font-size: 15px;
    color: #999;
    margin-top: 30px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid #eee;
  flex-wrap: wrap;
}

.footer-spacer {
  flex: 1;
} /* Left side empty */

.footer-center {
  flex: 1;
  text-align: center;
}

.footer-center p {
  margin: 0;
  font-size: 18px;
  color: #A6A6A6;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.footer-right {
  flex: 1;
  text-align: right;
}

.footer-right a {
  margin-left: 20px;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 18px;
  color: #A6A6A6;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.footer-right a:hover {
  color: #ff9f43;
}

/* Responsive: Stack vertically on mobile */
@media (max-width: 768px) {
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    margin-top: 10px;
    text-align: center;
  }

  .footer-right a {
    margin: 0 10px;
  }

  .footer-spacer {
    display: none;
  }
}

@media (max-width: 768px){
  .footer-right{
    display: flex;
  }
}

/* responsive */

/* laptop-responsive */

@media (max-width: 1024px) {


    .career-hero {
        height: 450px;
    }

    .career-hero-heading {
        font-size: 3.8rem;
    }

    /* video-section */

    .video-heading {
        font-size: 3.1rem;
        margin-top: 100px;
        line-height: 1.2;
    }

    .video-description {
        font-size: 1.1rem;
        max-width: 700px;
    }

    .video-wrapper {
        height: 450px;
    }


    /* our core section */

    .our-core-section h2 {
        font-size: 4.0rem;
        margin-top: 100px;
        line-height: 1.2;
    }

    .core-values {
        flex-wrap: nowrap;
    }

    .badge {
        padding: 10px 15px;
    }

    .badge p {
        font-size: 18px;
    }

    .values {
        gap: 15px;
        padding-top: 25px;
        padding-left: 25px;
    }

    .value-card .icon {
        width: 60px;
        height: 60px;
    }

    .value-card h4 {
        font-size: 22px;
    }

    .value-card p {
        font-size: 15px;
        color: #A6A6A6;
        max-width: 230px;
        line-height: 1.4;
        margin-top: 5px;
    }

    /* cards-section */

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
        gap: 25px;
    }

    .benefit-card h4 {
        font-size: 20px;
        font-weight: 700;
        padding: 12px 15px 5px;
    }

    .benefit-card p {
        font-size: 15px;
        padding: 7px 20px 20px;
        line-height: 1.5;
    }

    /* form-section */

    .join-team-section {
        max-width: 800px;
    }

    .content h2 {
        font-size: 3.1rem;
    }

    /* inquiry-section */

    .inquiry {
        height: 800px;
    }

    .inquiry-section h2 {
        font-size: 4.1rem;
    }

    /* footer section */

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        gap: 20px;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 10px;
        width: 125%;
    }

}

/* tablet-responsive */

@media (max-width: 768px) {


    /* hero-section */

    .career-hero {
        height: 300px;
    }

    .career-hero-heading {
        font-size: 45px;
        padding: 0 20px;
    }

    /* video-section */

    .video-heading {
        font-size: 2rem;
        margin-top: 100px;
        line-height: 1.2;
        max-width: 550px;
    }

    .video-description {
        font-size: 0.8rem;
        max-width: 500px;
    }

    .video-wrapper {
        height: auto;
    }

    .play-overlay {
        width: 50px;
        height: 50px;
    }

    .play-overlay::before {
        border-left: 18px solid #000;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
    }




    /* our core section */

    .our-core-section h2 {
        font-size: 3.0rem;
        margin-top: 100px;
        line-height: 1.2;
    }

    .team-img {
        width: 100%;
    }


    .badge {
        padding: 30px 25px;
        right: -30px;
    }

    .value-card h4 {
        font-size: 25px;
    }

    .value-card p {
        font-size: 18px;
    }

    .values {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px 25px;
        padding-top: 35px;
    }

    .value-card .icon {
        width: 90px;
        height: 90px;
    }

    .core-values {
        margin-bottom: 100px;
    }

    /* <!-- Opportunities-section --> */

    .job-header h2 {
        font-size: 3.1rem;
        text-align: left;
    }

    .job-subtitle {
        font-size: 18px;
    }

    .job-header {
        flex-direction: column;
        align-items: start;
    }

    .job-tabs {
        display: flex;
        flex-wrap: wrap;
        margin: 35px 0;
        padding: 10px 10px;
    }

    .job-card-header {
        flex-direction: none;
        align-items: flex-start;
        gap: 8px;
    }

    .job-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .job-details {
        font-size: 1rem;
        margin-top: 10px;
    }

    /* cards-section */

    .benefits-section {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .benefits-section h1 {
        font-size: 3.1rem;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(290px, 0fr));
        gap: 50px;
    }

    /* form-section */

    .join-team-section {
        max-width: 600px;
    }

    .content h2 {
        font-size: 2.8rem;
    }

    .content p {
        font-size: 20px;
        text-align: start;
        padding-top: 20px;
    }

    .file-label {
        padding: 15px 15px;
        font-size: 15px;
        white-space: nowrap;
    }

    .inquiry-section {
        margin-top: 50px;
    }

    /* inquiry-section */

    .inquiry {
        height: 550px;
    }

    .inquiry-section h2 {
        font-size: 3.1rem;
    }


    /* footer-section */

    .footer-box p,
    .footer-box ul li a {
        font-size: 15px;
    }

    .footer-box {
        width: 32%;
    }

    .footer-box.footer-logo-box p {
        margin: 0 auto;
    }

    .social-icons {
        text-align: center;
    }

    .footer-grid {
        gap: 10px;
    }

    .footer-box.footer-logo-box {
        margin-bottom: 30px;
        width: 100%;
        text-align: center;
    }

    .footer-logo-bottom img {
        width: 120px;
    }

    .footer-box.footer-logo-box p {
        max-width: 100%;
        text-align: center;
    }

}

/* mobile-responsive */

@media (max-width: 560px) {

    .container {
        padding: 0 20px;
    }

    /* hero-section */

    .career-hero {
        height: 200px;
    }

    .career-hero-heading {
        font-size: 2.0rem;
    }

    .career-navbar {
        padding: 15px;
    }

    .career-logo img {
        width: 90px;
    }


    /* video-section */

    .video-heading {
        font-size: 1.8rem;
        margin-top: 50px;
        margin-bottom: 30px;
        max-width: 323px;
    }

    .video-wrapper {
        height: auto;
    }

    .play-overlay {
        width: 30px;
        height: 30px;
    }

    .play-overlay::before {
        border-left: 13px solid #000;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
    }

    /* our core section */

    .our-core-section h2 {
        font-size: 1.8rem;
        margin-top: 50px;
        line-height: 1.2;
        margin-bottom: 30px;
    }

    .badge {
        bottom: 40px;
        right: -15px;
        background: white;
        padding: 10px;
    }

    .badge p {
        font-size: 15px;
    }

    .avatars img {
        width: 20px;
        height: 20px;
    }

    .avatars {
        gap: 2px;
    }

    .core-values {
        gap: 10px;
        margin-bottom: 70px;
    }

    .values {
        padding-left: 1px;
    }

    .value-card h4 {
        font-size: 18px;
        margin-top: 8px;
    }

    .value-card p {
        font-size: 12px;
    }


    .value-card .icon {
        width: 50px;
        height: 52px;

    }

    .value-card .icon img {
        width: 25px;
        height: 25px;
        z-index: 2;
    }


    /* opportunities-section */

    .job-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .job-header h2 {
        font-size: 1.8rem;
    }

    .job-subtitle {
        font-size: 14px;
        max-width: 300px;
    }

    .tab {
        padding: 15px 15px;
        font-size: 13px;
    }

    .job-card-header {
        padding: 15px;
        font-size: 0.8rem;
        align-items: center;
    }

    .arrow {
        font-size: 25px;
    }

    /* cards-section */

    .benefits-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .benefits-section h1 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(80px, fr));
        gap: 20px;
        justify-content: center;
    }

    .benefit-card h4 {
        font-size: 15px;
        padding: 1px 12px;
        margin-top: 15px;
    }

    .benefit-card p {
        font-size: 12px;
        padding: 12px;
        padding-top: 3px;
        text-align: center;
        max-width: 200px;
    }

    .image-grid {
        width: 60vw;
        max-width: 250px;
    }

    .benefit-card {
        border-radius: 20px;
        overflow: hidden;
        text-align: left;
        transition: transform 0.3s ease;
        align-items: center;
        justify-items: center;
    }


    /* form-section */

    .join-team-section {
        max-width: 350px;
        padding: 25px 0;
    }

    .join-team-heading {
        padding-top: 30px;
    }

    .content h2 {
        font-size: 2.0rem;
    }

    .content p {
        font-size: 12px;
    }

    .application-form {
        padding: 25px;
    }

    .form-row {
        flex-direction: column;
    }

    .application-form input[type="text"],
    .application-form input[type="tel"],
    .application-form input[type="email"],
    .application-form textarea {
        /* padding: 20px 20px; */
        border-radius: 8px;
        font-size: 15px;
    }

    .file-upload {
        width: 100%;
    }

    /* inquiry-section */

    .inquiry {
        margin-top: 50px;
    }

    .inquiry {
        height: 350px;
    }

    .inquiry-section {
        padding: 25px;
        margin-top: 5px;
    }

    .inquiry-section h2 {
        font-size: 1.7rem;
    }

    .inquiry-section p {
        font-size: 0.8rem;
    }

    .inquiry-section .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* footer section */

    .footer-grid {
        flex-direction: column;
        text-align: center;
    }

    .footer-box,
    .footer-box.footer-logo-box {
        margin-bottom: 30px;
        width: 100%;
        text-align: center;
    }

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

    .inquiry-btn {
        width: 33%;
        padding: 10px;
    }

    .copyright {
        font-size: 12px;
    }

    .social-icons {
        width: 100%;
    }


}

@media (max-width: 500px) {
    .glow-button {
        width: 110px;
        text-align: center;
        height: 35px;
        font-size: 12px;
    }
}


/* animation-heading */

/* animation-css */

.split-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.split-visible .split-word {
    opacity: 1;
    transform: translateY(0);
}

h1,
h2,
h3 {
    overflow: hidden;
}

.split-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.split-visible .split-word {
    opacity: 1;
    transform: translateY(0);
}

h1,
h2,
h3 {
    overflow: hidden;
    line-height: 1.4;
}

.word {
    display: inline-block;
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.6s ease;
    /* margin-right: 6px; */
}

.word.visible {
    opacity: 1;
    transform: translateY(0);
}

.line {
    display: block;
}


/* === Inquiry Popup Styles === */
.inquiry-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  display: flex; /* ✅ use flex for centering */
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.inquiry-popup.active {
  opacity: 1;
  pointer-events: auto;
}

.inquiry-popup-content {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: scaleIn 0.3s ease;
}

.inquiry-popup-content h2 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.8rem;
  color: #222;
}

.inquiry-popup-content label {
  display: block;
  margin-bottom: 5px;
  color: #333;
  font-weight: 500;
}

.inquiry-popup-content input,
.inquiry-popup-content textarea {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease;
}

.inquiry-popup-content input:focus,
.inquiry-popup-content textarea:focus {
  border-color: #ff9f43;
}

.submit-btn {
  background: #ff9f43;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #e7892c;
}

.close-popup {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  color: #333;
  cursor: pointer;
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}







/* Career Motto & Current Openings Section */
.career-motto {
    padding: 80px 20px;
    text-align: center;
    background-color: #F2F4F0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-top: 50px;
}

.career-motto .motto-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
}

.career-motto .motto-content .motto-paragraphs p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.current-openings {
    margin-top: 60px;
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    display: inline-block;
    text-align: center;
}

.current-openings h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #222;
}

.current-openings p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.6;
    max-width: 750px;
}

.current-openings .glow-button {
    padding: 14px 35px;
    background: linear-gradient(90deg, #ff6600, #ff9966);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.current-openings .glow-button:hover {
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.7);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .career-motto .motto-content h2 {
        font-size: 1.6rem;
    }

    .current-openings h3 {
        font-size: 1.5rem;
    }

    .current-openings .glow-button {
        padding: 12px 25px;
    }
}

@media (max-width: 500px) {
     .career-motto .motto-content .motto-paragraphs p{
        font-size: 1rem;
    }

    .current-openings h3 {
        font-size: 1.4rem;
    }
}




/* ---------- NEW Submenu Toggle System ---------- */

/* Remove old arrow icons completely */
.nav-menu ul li.has-submenu > a::after,
.nav-menu ul li.open > a::after,
.nav-menu ul li .sub-menu li.has-submenu > a::after,
.nav-menu ul li .sub-menu li.open > a::after {
  content: none !important;
}

/* Toggle icon base style */
.submenu-toggle {
  display: none;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  margin-left: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, color 0.3s ease;
  user-select: none;
}

/* Show toggle on mobile */
@media (max-width: 1024px) {
  .submenu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 22px;
  }

  /* Rotate or change color when submenu is open */
  .nav-menu li.open > .submenu-toggle {
    color: #FF8F2A;
    transform: translateY(-50%) rotate(180deg);
  }

  /* Mobile submenu animation */
  .nav-menu li .sub-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    background: #000;
    /* border-left: 1px solid #333; */
  }

  .nav-menu li.open > .sub-menu {
    max-height: 800px;
    opacity: 1;
    padding: 5px 0;
  }

  .nav-menu li .sub-menu li a {
    color: #fff;
    font-size: 15px;
    padding: 10px 25px;
    display: block;
    transition: all 0.3s ease;
  }

  .nav-menu li .sub-menu li a:hover {
    color: #FF8F2A;
    padding-left: 35px;
  }
}





