:root {
  --primary-red: #da1a26;
  --primary-green: #10b981;
  --text-light: #f8fafc;
  --text-gray: #AEAEAE;
  --bg-dark: #2b2b2b;
  --bg-darker: #030303;
  --bg-black: #000000;
}
html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg-darker);
  color: var(--text-light);
  min-height: 100vh;
  overflow-x: hidden;
}
.navbar-nav .nav-link {
  font-family: 'Staatliches', cursive;
  font-size: 20px;
  font-weight: normal;
}
.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
  position: relative;
  background: transparent;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.hamburger {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--text-light);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 0px;
}
.hamburger span:nth-child(2),
.hamburger span:nth-child(3) {
  top: 10px;
}
.hamburger span:nth-child(4) {
  top: 20px;
}
.hamburger.open span:nth-child(1) {
  top: 10px;
  width: 0%;
  left: 50%;
}
.hamburger.open span:nth-child(2) {
  transform: rotate(45deg);
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.hamburger.open span:nth-child(4) {
  top: 10px;
  width: 0%;
  left: 50%;
}
/* Header Styles */
.navbar {
  background: transparent !important;
  padding: 0.5rem 1rem;
  transition: background 0.3s ease;
}
.navbar.scrolled {
  background: var(--bg-black) !important;
}
.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 600;
  margin: 0 1rem;
  transition: color 0.3s ease;
  font-family: 'Roboto Condensed', sans-serif;
}
.navbar-nav .nav-link{
  position: relative;
  display: inline-block;
}
.navbar-nav .nav-link:hover {
  color: var(--primary-red)!important;
}
.navbar-nav .nav-link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 6px; 
  background: url("../images/underline.png") no-repeat center;
  background-size: cover; /
}
/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 140px;
}
/* Construction Banner */
.construction-banner {
     background: repeating-linear-gradient(
    -45deg,          /* Diagonal forward slash direction */
    #EE212E,         /* Base red (gap background) */
    #EE212E 20px,    /* Gap thickness */
    #DA1A26 20px,    /* Start slash color */
    #DA1A26 40px     /* Slash thickness = 20px */
  );
  color: white;
  overflow: hidden;
  transform: rotate(-2deg);
  white-space: nowrap;
  margin-left: -20%;
  position: absolute;
  margin-top: -21px;
  overflow: hidden;
  width: calc(100% + 190px);
}
.construction-text {
  display: inline-block;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: scroll 15s linear infinite;
  white-space: nowrap;
  font-family: 'Roboto Condensed', sans-serif;
}
.banner-text {
  margin: 0 30px;
}
.banner-separator {
  margin: 0 30px;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.smiley-icon {
  height: 30px;
  margin: 0 30px;
}
/* Arrow */
.arrow-section {
  text-align: center;
  margin: 40px 0;
}
.arrow-down {
  height: 40px;
  animation: bounce-arrow 2s infinite;
}
@keyframes bounce-arrow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
}
/* Content Section */
.content-section {
  padding: 4rem 0;
  position: relative;
}
.section-title {
  font-size: 36px;
  margin-bottom: 1rem;
  font-family: 'Roboto Condensed', sans-serif;
}
.section-subtitle {
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
}
/* Form Styles */
.form-control {
  background: var(--bg-dark);
  border: 1px solid var(--bg-dark);
  color: var(--text-light);
  padding: 0.8rem;
  border-radius: 0;
  transition: all 0.3s ease;
}
.form-control:focus {
  background: rgba(30, 30, 30, 1);
  box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
  color: var(--text-light);
}
.form-control::placeholder {
  color: var(--text-gray);
}
.btn-send {
  background: var(--primary-red);
  border: none;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  border-radius: 0;
}
.btn-send:hover {
  background-color: var(--text-light);
  color: var(--primary-red)!important;
  transform: translateY(-2px);
}
/* Contact Info */
.contact-info {
  padding: 0 0 0 3rem;
  position: relative;
}
.contact-info h3 {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 1.5rem;
}
.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 18px;
  gap: 1rem;
}
.contact-item a{
  color: var(--text-light);
  text-decoration: none;
}
.content-image{
  place-self: self-start;
  margin-top: 5px;
}
.contact-icon {
  position: absolute;
  right: 50px;
  margin-top: -150px;
}
/* Decorative Elements */
.star-icon {
  position: absolute;
  right: 80px;
  margin-top: -50px;
  animation: twinkle 6s infinite ease-in-out;
}
@keyframes twinkle {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  25% {
    opacity: 0.7;
    transform: scale(1.05);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.95);
  }
  75% {
    opacity: 0.8;
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.smiley {
  position: absolute;
  right: 160px;
  margin-top: -69px;
}
.smiley img {
  width: 70px;
}
/* Career page */
.kh-card {
  background-color: var(--bg-darker)!important;
}
.kh-d-flex.kh-align-items-center.kh-mb-1.kh-flex-wrap,
.kh-d-flex.kh-text-secondary.kh-align-items-center.mt-auto {
    font-family: 'Poppins', sans-serif;
    color: var(--text-light)!important;
}
.kh-form-control{
  color: var(--text-light)!important;
}
.kh-accordion-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
}
h4.kh-job-title.kch-text-black.kh-text-truncate-1.kh-font-weight-600.kh-mb-0.kh-mt-0.kh-mr-2 {
    font-size: 20px!important;
}
span.kh-font-large.kh-text-capitalize.text-nowrap.kh-text-truncate-1 {
    font-size: 13px!important;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.ty-sec h4{
  font-family: 'Roboto Condensed', sans-serif;
  font-style: italic;
  font-size: 36px;
}
.ty-sec p{
  color: #888888;
  font-size: 18px;
}
/* Footer */
.footer {
  text-align: center;
  padding: 2rem 0;
  color: var(--text-gray);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
/* Error Styles */
.error {
  color: var(--primary-red);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
/* Responsive Design */
@media (max-width: 768px) {
  .navbar-nav {
    width: 50%;
    padding: 0 10px;
    background: var(--bg-black);
  }
  .navbar {
    padding: 0;
  }
  .navbar-brand img {
    width: 230px;
  }
  .banner {
    margin-top: 10rem;
  }
  .construction-banner {
    margin-top: 5rem;
  }
  .arrow-section {
    margin-top: 7rem;
  }
  .content-section {
    padding-top: 6rem;
  }
  .star-icon {
    right: 10px;
    margin-top: -99px;
  }
  .contact-icon {
    position: initial;
    float: inline-end;
    padding-right: 30px;
    margin-top: 0;
  }
}
@media only screen and (max-width: 991px) and (min-width: 577px) {
  .contact-info {
    padding: 20px 0 0 0;
  }
}
@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .contact-form {
    padding: 1.5rem;
  }
  .contact-info {
    padding: 0 0 0 1.5rem;
  }
  .section-title,
  .section-subtitle {
    padding: 0 1.5rem;
  }
}