
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    color: #000000;
	overflow-x: hidden;
  width: 100%;
}
header nav.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background: #d1d1d1;
  padding: 10px 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo-container {
  margin-right: 20px;
  flex-shrink: 0;
}

header .logo {
  height: 50px;
  max-width: 100%;
}

header nav.sticky ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  flex-grow: 1;
  justify-content: space-around;
}

header nav.sticky ul li {
  position: relative;
  padding: 10px 0;
  white-space: nowrap;
}

header nav.sticky ul li a {
  color: #030303;
  text-decoration: none;
  padding: 5px 5px;
  display: inline-block;
  font-weight: normal;
  font-size: 1rem;
  transition: all 0.3s ease;
}

header nav.sticky ul li a:hover {
  color: red;
  font-weight: bold;
}

header nav.sticky ul li a::after {
  content: '';
  display: block;
  height: 2px;
  background: red;
  width: 0;
  transition: width 0.3s;
}

header nav.sticky ul li a:hover::after {
  width: 100%;
}

header nav.sticky ul li.special a {
  border: 2px solid #FF0000;
  padding: 8px 20px;
  border-radius: 15px;
  background-color: #ff0000;
  color: #000;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 0.85rem;
}

header nav.sticky ul li.special a:hover {
  background-color: #FF0000;
  color: #ffffff;
}

nav.sticky ul li a.active {
  position: relative;
}

nav.sticky ul li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background-color: red;
}

@media only screen and (min-width: 769px) {
  .dropdown {
    position: relative;
  }

  .dropdown-content {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #c7c7c7;
    min-width: 180px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    padding: 5px 0;
    z-index: 1000;
    flex-direction: column;
  }

  .dropdown-content li {
    list-style: none;
  }

  .dropdown-content a {
    display: block;
    width: 100%;
    padding: 14px 20px;
    text-align: left;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    color: black;
    text-decoration: none;
    letter-spacing: 0.6px;
    line-height: 26px;
    transition: background-color 0.3s ease;
  }

  .dropdown-content a:hover {
    background-color: #f1f1f1;
  }

  .dropdown:hover .dropdown-content {
    display: flex !important;
  }
}
.dropdown-content a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dropdown-content svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  padding: 6px 42px;
  background: none;
  border: none;
}

@media only screen and (max-width: 768px) {
  header nav.sticky {
    flex-wrap: wrap;
    padding: 8px 10px;
  }

  .menu-toggle {
    display: block;
  }

  header .logo {
    height: 32px;
    max-width: 100px;
  }

  header nav.sticky ul {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #d1d1d1;
    width: 100%;
    padding: 10px;
  }

  header nav.sticky ul.active {
    display: flex;
  }

  header nav.sticky ul li {
    width: 100%;
    text-align: left;
    padding: 8px 0;
  }

  header nav.sticky ul li a {
    font-size: 0.9rem;
    padding: 8px 0;
    width: 100%;
  }

  header nav.sticky ul li.special a {
    text-align: center;
    width: 80%;
    display: block;
  }

  .dropdown-content {
    display: block !important;
    position: static;
    background: none;
    box-shadow: none;
    padding-left: 20px;
    margin-top: 4px;
    flex-direction: column;
  }

  .dropdown-content li {
    list-style: none;
  }

  .dropdown-content a {
    display: block;
    padding: 6px 0;
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
    color: black;
    text-decoration: none;
    line-height: 1.4;
  }

  .dropdown:hover .dropdown-content {
    display: block !important;
  }
}
.background-section {
    background-image: url('photos/Employment1-min.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    padding-top: 100px;
    padding-bottom: 600px;
    overflow: hidden;
}

.background-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}
.dark-background-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding: 120px 0;
    text-align: center;
    color: white;
}
.background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.45),
        rgba(0, 0, 0, 0.55)
    );
    z-index: 1;
}
.header-image {
    display: flex;
    width: 100%;
    height: 350px; 
    overflow: hidden;
    margin-top: 80px; 
    position: relative; 
}
.gray-section {
    background: linear-gradient(135deg, #1e1e1e 0%, #4b4b4b 50%, #1e1e1e 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    text-align: center;
    padding: 30px;
    height: 120px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.gray-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}
.gray-section h1 {
    color: white;
    font-size: 56px;
    font-weight: 900;
    margin: 0;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.image-section {
     background: linear-gradient(to right, #1e1e1e, #4b4b4b);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px; 
}

#first-image {
    width: 800px;
    display: block;
}
.content-section {
    padding: 20px;
    text-align: center; 
}

.logo-centered {
    margin: 0 auto; 
    padding: 0; 
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.employment-section {
  background-color: transparent;
  text-align: center;
  padding: 20px 20px 40px;
  font-family: 'Open Sans', Arial, sans-serif;
  position: relative; 
  z-index: 2; 
}

.positions-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  margin-top: 20px;
}

.employment-section h1 {
    margin-top: -20px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    width: 70%;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.buttons button {
    padding: 18px 40px;
    margin: 10px;
    font-size: 18px;
    background: linear-gradient(135deg, #fe0b0b, #cc0000);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(254, 11, 11, 0.4);
    transition: all 0.3s ease;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}

.buttons button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.buttons button:hover::before {
    width: 300px;
    height: 300px;
}

.buttons button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(254, 11, 11, 0.6);
}

@media only screen and (max-width: 768px) {
  .job-layout {
    flex-direction: column;
    align-items: center;
  }

  .side-positions {
    flex: 1 1 100%;
    max-width: 90%;
    align-items: center;
  }

  .employment-section h1 {
    font-size: 18px;
    width: 90%;
  }
}


@media only screen and (max-width: 768px) {
  .background-section {
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
    padding-top: 60px;
    padding-bottom: 120px; 
    min-height: 30vh;     
    position: relative;
  }

  .background-section::before {
    background: rgba(0, 0, 0, 0.5); 
  }

  .image-section {
    padding: 10px;
  }

  #first-image {
    width: 100%;
    max-width: 95vw;
    height: auto;
  }

  .dark-background-wrapper {
    background-attachment: scroll;
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
  }

  .employment-section {
    padding: 20px 15px;
  }

  .employment-section h1 {
    font-size: 15px;
    width: 90%;
    margin: 0 auto 20px;
  }

  .buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .buttons button {
    width: 100%;
    max-width: 300px;
    font-size: 16px;
    padding: 12px 20px;
  }

  .logo-centered {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 30px auto 0;
    width: 80%;
    max-width: 180px;
  }

  .logo-centered img {
    width: 100%;
    height: auto;
    display: block;
  }
}

.benefits-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

.benefits-section h2 {
    font-size: 48px;
    margin-bottom: 60px;
    color: #222;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}
.benefits-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #fe0b0b, #cc0000);
    border-radius: 3px;
}
.benefits-grid {
  display: flex;
  flex-wrap: nowrap; 
  gap: 30px;
  justify-content: center;
  max-width: 1400px; 
  margin: 0 auto;
}
.benefit-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 280px;
    flex: 1 1 220px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.benefit-card:hover::before {
    left: 100%;
}
.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(254, 11, 11, 0.2);
    border-color: rgba(254, 11, 11, 0.3);
}


.benefit-card img {
  width: 50px;
  margin-bottom: 20px;
}

.benefit-card:hover img {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    font-size: 22px;
    color: #222;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.benefit-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

@media screen and (max-width: 768px) {
  .benefits-section {
    padding: 60px 20px;
  }
  
  .benefits-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    letter-spacing: 1px;
  }
  
  .benefits-section h2::after {
    width: 60px;
    height: 4px;
    bottom: -12px;
  }
  
  .benefits-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .benefit-card {
    max-width: 100%;
    width: 100%;
    padding: 35px 25px;
  }
  
  .benefit-card img {
    width: 45px;
    margin-bottom: 15px;
  }
  
  .benefit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .benefit-card p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .background-video {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  
  .video-section {
    height: auto;
    min-height: 300px;
  }
}

@media screen and (max-width: 480px) {
  .benefits-section {
    padding: 50px 15px;
  }
  
  .benefits-section h2 {
    font-size: 28px;
    margin-bottom: 35px;
  }
  
  .benefit-card {
    padding: 30px 20px;
  }
  
  .benefit-card h3 {
    font-size: 18px;
  }
  
  .benefit-card p {
    font-size: 13px;
  }
  
  .video-section {
    min-height: 250px;
  }
}
.modal {
    display: none; 
    position: fixed; 
    z-index: 1000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.4); 
}
.modal-content {
    background: linear-gradient(to bottom, #1e1e1e 0%, #2a2a2a 100%);
    margin: 2% auto;
    padding: 40px;
    border: none;
    width: 85%;
    max-width: 1400px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    border-radius: 16px;
    transform: translateZ(0);
    max-height: 90vh;
    overflow-y: auto;
}
.modal-content h2 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin: 0 0 30px 0;
    padding: 20px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 12px;
    position: relative;
}
.currency-input {
  display: flex;
  align-items: center;
  background: #2a2a2a;
  border: 2px solid #4b4b4b;
  border-radius: 8px;
  padding: 10px 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.currency-input span {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  margin-right: 8px;
}

.currency-input input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 15px;
  font-family: 'Open Sans', Arial, sans-serif;
}

.currency-input:focus-within {
  border-color: #fe0b0b;
  box-shadow: 0 0 8px rgba(254, 11, 11, 0.4);
}



@media (max-width: 768px) {
    .modal-content h2 {
        font-size: 28px;
        padding: 15px;
        letter-spacing: 1px;
    }
}
.section-header {
    background: linear-gradient(135deg, #fe0b0b 0%, #cc0000 100%);
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    padding: 16px 0;
    width: 100%;
    grid-column: 1 / -1;
    margin-top: 30px;
    margin-bottom: 25px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(254, 11, 11, 0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.close {
    color: #ffffff;
    float: right;
    font-size: 32px;
    font-weight: 300;
    line-height: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10000;
    position: relative;
    pointer-events: auto !important; 
}

.close:hover,
.close:focus {
    color: #fe0b0b;
    transform: rotate(90deg);
    text-decoration: none;
    cursor: pointer;
}

#onlineApplicationForm {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 30px;
    padding: 30px;
    background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.personal-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.personal-form-group label {
    font-size: 15px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 4px;
    transition: color 0.3s ease;
    font-family: 'Open Sans', Arial, sans-serif;
}

.personal-form-group:focus-within label {
    color: #fe0b0b;
}

.personal-form-group div {
    display: flex;
    align-items: center;
    gap: 20px;
}

.personal-form-group div label {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 0;
    color: #e0e0e0;
}
.personal-form-row {
    display: flex;
    gap: 15px;
    grid-column: 1 / -1;
    width: 100%;
}
.personal-form-group-full {
    grid-column: 1 / -1;
    width: 100%;
}
.personal-form-group-small {
    flex: 0 0 100px;
}
.personal-form-group-medium {
    flex: 0 0 150px;
}
.personal-form-group-grow {
    flex: 1;
}
.personal-form-row .personal-form-group {
    flex: 1;
    min-width: 0;
}
.personal-form-group input[type="radio"] {
    display: none;
}
.personal-form-row-radio .personal-form-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.personal-form-row-radio .personal-form-group label:first-child {
    text-align: center;
    width: 100%;
}
.personal-form-row-radio .personal-form-group div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: auto;
}
.personal-form-group input[type="radio"] + label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border: 2px solid #4b4b4b;
    border-radius: 8px;
    background-color: #3a3a3a;
    color: #e0e0e0;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}
.personal-form-group input[type="radio"]:checked + label {
    background: linear-gradient(135deg, #fe0b0b, #cc0000);
    border-color: #fe0b0b;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(254, 11, 11, 0.4);
    transform: translateY(-2px);
}
.personal-form-group input[type="radio"] + label:hover {
    border-color: #fe0b0b;
    background-color: #2a2a2a;
    transform: translateY(-1px);
}
.personal-form-group label[for] {
    position: relative;
}

.personal-form-group input[required] + label::after,
.personal-form-group label:has(+ input[required])::after {
    content: '*';
    color: #fe0b0b;
    margin-left: 4px;
    font-weight: bold;
    font-size: 16px;
}

.personal-form-group:has(input[type="radio"][required]) > label:first-child::after {
    content: '*';
    color: #fe0b0b;
    margin-left: 4px;
    font-weight: bold;
    font-size: 16px;
}

.personal-form-group input[type="radio"] + label::after {
    content: none !important;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
select {
    padding: 12px 16px;
    margin-bottom: 0;
    border: 2px solid #4b4b4b;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #3a3a3a;
    color: #ffffff;
    font-family: 'Open Sans', Arial, sans-serif;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #fe0b0b;
    background-color: #2a2a2a;
    box-shadow: 0 0 0 3px rgba(254, 11, 11, 0.2);
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
    color: #888;
}

input[type="radio"] {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #fe0b0b;
    vertical-align: middle;
}

input[type="checkbox"] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #fe0b0b;
    vertical-align: middle;
}

textarea {
    height: 100px;
    resize: vertical;
    font-family: 'Open Sans', Arial, sans-serif;
}

button[type="submit"] {
    grid-column: 1 / -1;
    width: auto;
    padding: 18px 40px;
    background: linear-gradient(135deg, #fe0b0b, #cc0000);
    color: white;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(254, 11, 11, 0.4);
    margin: 30px auto 10px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

button[type="submit"]:hover::before {
    width: 300px;
    height: 300px;
}

button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(254, 11, 11, 0.6);
}

button[type="submit"]:active {
    transform: translateY(-1px);
}

.last-group {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 25px;
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    border-radius: 12px;
    border: 2px solid #4b4b4b;
}

.last-group label {
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    padding-bottom: 12px;
    font-family: 'Open Sans', Arial, sans-serif;
}

.last-group textarea {
    width: 100%;
    height: 120px;
    padding: 12px 16px;
    margin-top: 0;
    border: 2px solid #4b4b4b;
    border-radius: 8px;
    background-color: #3a3a3a;
    color: #ffffff;
}
.personal-form-row-radio .personal-form-group div {
	justify-content: flex-start;
	gap: 12px;
}

.personal-form-row-radio .personal-form-group div label {
	margin: 0;
	padding: 8px 0;
}

.personal-form-row-radio input[type="radio"] {
	margin-right: 6px;
}

.modal-content::-webkit-scrollbar {
    width: 10px;
}

.modal-content::-webkit-scrollbar-track {
    background: #1e1e1e;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #fe0b0b, #cc0000);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #cc0000, #fe0b0b);
}

@media (max-width: 1024px) {
    #onlineApplicationForm {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modal-content {
        width: 95%;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .modal-content {
        margin: 1% auto;
        padding: 20px;
        width: 98%;
    }
    
    #onlineApplicationForm {
        padding: 15px;
        gap: 15px;
    }
    
    .section-header {
        font-size: 20px;
        padding: 12px 0;
        letter-spacing: 0.5px;
    }
    
    button[type="submit"] {
        width: 100%;
        padding: 14px 30px;
        font-size: 16px;
    }
    
    .personal-form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .personal-form-group-small,
    .personal-form-group-medium,
    .personal-form-group-grow {
        flex: 1;
    }
}
.body-no-scroll {
    overflow: hidden; 
    height: 100%; 
}
.work-experience-container {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
	grid-column: 1 / -1;
}

.work-experience-column {
	flex: 1;
	min-width: 0;
	padding: 20px;
	background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.3);
	border: 2px solid #4b4b4b;
}

.work-experience-column h3 {
	margin-bottom: 20px;
	color: #ffffff;
	font-size: 1.2em;
	text-align: center;
	padding: 12px;
	background: linear-gradient(135deg, #fe0b0b, #cc0000);
	border-radius: 8px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 4px 12px rgba(254, 11, 11, 0.3);
}

.work-form-row {
	display: flex;
	gap: 12px;
	margin-bottom: 15px;
}

.work-form-row .work-form-group {
	flex: 1;
	min-width: 0;
}

.work-form-group-small {
	flex: 0 0 80px;
}

.work-form-group-medium {
	flex: 0 0 120px;
}

.work-form-group-grow {
	flex: 1;
}

.work-experience-column .work-form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 15px;
}

.work-experience-column .work-form-group label {
	font-size: 15px;
	color: #ffffff;
	font-weight: 600;
	font-family: 'Open Sans', Arial, sans-serif;
}

.work-experience-column .work-form-group input[type="text"],
.work-experience-column .work-form-group input[type="tel"],
.work-experience-column .work-form-group input[type="date"] {
	padding: 12px 16px;
	border: 2px solid #4b4b4b;
	border-radius: 8px;
	width: 100%;
	box-sizing: border-box;
	background-color: #3a3a3a;
	color: #ffffff;
	font-size: 15px;
	transition: all 0.3s ease;
	font-family: 'Open Sans', Arial, sans-serif;
}

.work-experience-column .work-form-group input[type="text"]:focus,
.work-experience-column .work-form-group input[type="tel"]:focus,
.work-experience-column .work-form-group input[type="date"]:focus {
	outline: none;
	border-color: #fe0b0b;
	background-color: #2a2a2a;
	box-shadow: 0 0 0 3px rgba(254, 11, 11, 0.2);
}

.work-form-radio-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.work-form-radio-group > label:first-child {
	text-align: center;
	width: 100%;
	margin-bottom: 8px;
}

.work-form-radio-group div {
	display: flex;
	justify-content: center;
	gap: 12px;
}

.work-form-radio-group input[type="radio"] {
	display: none;
}

.work-form-radio-group input[type="radio"] + label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 24px;
	border: 2px solid #4b4b4b;
	border-radius: 8px;
	background-color: #3a3a3a;
	color: #e0e0e0;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 80px;
}

.work-form-radio-group input[type="radio"]:checked + label {
	background: linear-gradient(135deg, #fe0b0b, #cc0000);
	border-color: #fe0b0b;
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(254, 11, 11, 0.4);
	transform: translateY(-2px);
}

.work-form-radio-group input[type="radio"] + label:hover {
	border-color: #fe0b0b;
	background-color: #2a2a2a;
	transform: translateY(-1px);
}
.date-current-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.current-label {
  color: #e0e0e0;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.current-label input[type="checkbox"] {
  accent-color: #fe0b0b;
  width: 16px;
  height: 16px;
}

@media (max-width: 768px) {
	.work-experience-container {
		flex-direction: column;
		gap: 15px;
	}
	
	.work-experience-column {
		width: 100%;
		padding: 15px;
	}
	
	.work-form-row {
		flex-direction: column;
		gap: 15px;
	}
	
	.work-form-group-small,
	.work-form-group-medium,
	.work-form-group-grow {
		flex: 1;
	}
}
.education-container {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 20px;
}

.education-subsection {
	padding: 20px;
	background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.3);
	border: 2px solid #4b4b4b;
}

.education-subsection-full {
	grid-column: 1 / -1;
}

.education-subsection h3 {
	padding: 12px;
	background: linear-gradient(135deg, #fe0b0b, #cc0000);
	color: #ffffff;
	text-align: center;
	border-radius: 8px;
	margin-bottom: 20px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 1.1em;
	box-shadow: 0 4px 12px rgba(254, 11, 11, 0.3);
}

.education-form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 15px;
}

.education-form-row {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
}

.education-form-row .education-form-group {
	flex: 1;
}

.education-form-group label {
	font-size: 15px;
	color: #ffffff;
	font-weight: 600;
	font-family: 'Open Sans', Arial, sans-serif;
}

.education-form-group input[type="text"],
.education-form-group textarea {
	padding: 12px 16px;
	border: 2px solid #4b4b4b;
	border-radius: 8px;
	background-color: #3a3a3a;
	color: #ffffff;
	font-size: 15px;
	transition: all 0.3s ease;
	font-family: 'Open Sans', Arial, sans-serif;
}

.education-form-group input[type="text"]:focus,
.education-form-group textarea:focus {
	outline: none;
	border-color: #fe0b0b;
	background-color: #2a2a2a;
	box-shadow: 0 0 0 3px rgba(254, 11, 11, 0.2);
}

.education-form-group textarea {
	height: 120px;
	resize: vertical;
}

.education-radio-options {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.education-radio-options input[type="radio"] {
	display: none;
}

.education-radio-options input[type="radio"] + label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	border: 2px solid #4b4b4b;
	border-radius: 8px;
	background-color: #3a3a3a;
	color: #e0e0e0;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 50px;
}

.education-radio-options input[type="radio"]:checked + label {
	background: linear-gradient(135deg, #fe0b0b, #cc0000);
	border-color: #fe0b0b;
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(254, 11, 11, 0.4);
	transform: translateY(-2px);
}

.education-radio-options input[type="radio"] + label:hover {
	border-color: #fe0b0b;
	background-color: #2a2a2a;
	transform: translateY(-1px);
}
.education-subsection:nth-child(3) {
	grid-column: 1 / -1;
	justify-self: center;
	width: calc(50% - 10px);
}
@media (max-width: 768px) {
	.education-subsection:nth-child(3) {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.education-container {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.education-form-row {
		flex-direction: column;
	}
	
	.education-subsection {
		padding: 15px;
	}
}
.references-container {
    display: flex;
    justify-content: space-between;
    padding: 0;
    margin-top: 0;
    gap: 20px;
    grid-column: 1 / -1;
}

.reference-column {
    flex: 1;
    padding: 20px;
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border: 2px solid #4b4b4b;
    display: flex;
    flex-direction: column;
}

.reference-column h3 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 1.2em;
    text-align: center;
    padding: 12px;
    background: linear-gradient(135deg, #fe0b0b, #cc0000);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(254, 11, 11, 0.3);
}

.reference-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 15px;
}

.reference-form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.reference-form-row .reference-form-group {
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
}

.reference-form-group-small {
    flex: 0 0 80px;
}

.reference-form-group-medium {
    flex: 0 0 120px;
}

.reference-form-group-grow {
    flex: 1;
}

.reference-form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Open Sans', Arial, sans-serif;
}

.reference-form-group input[type="text"],
.reference-form-group input[type="tel"] {
    padding: 12px 16px;
    border: 2px solid #4b4b4b;
    border-radius: 8px;
    width: 100%;
    box-sizing: border-box;
    background-color: #3a3a3a;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Open Sans', Arial, sans-serif;
}

.reference-form-group input[type="text"]:focus,
.reference-form-group input[type="tel"]:focus {
    outline: none;
    border-color: #fe0b0b;
    background-color: #2a2a2a;
    box-shadow: 0 0 0 3px rgba(254, 11, 11, 0.2);
}

@media (max-width: 768px) {
    .references-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .reference-column {
        width: 100%;
        padding: 15px;
    }
    
    .reference-form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .reference-form-group-small,
    .reference-form-group-medium,
    .reference-form-group-grow {
        flex: 1;
    }
}

.legal-section {
	grid-column: 1 / -1;
	padding: 25px;
	background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.3);
	border: 2px solid #4b4b4b;
	margin-bottom: 20px;
}

.legal-section h3 {
	color: #ffffff;
	font-size: 1.3em;
	margin-bottom: 15px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	text-align: center;
	padding: 12px;
	background: linear-gradient(135deg, #fe0b0b, #cc0000);
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(254, 11, 11, 0.3);
}

.legal-text {
	font-size: 15px;
	line-height: 1.8;
	color: #e0e0e0;
	text-align: justify;
	font-family: 'Open Sans', Arial, sans-serif;
}

.mvr-section {
	grid-column: 1 / -1;
	padding: 25px;
	background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.3);
	border: 2px solid #4b4b4b;
	margin-bottom: 20px;
}

.mvr-section h3 {
	color: #ffffff;
	font-size: 1.3em;
	margin-bottom: 15px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	text-align: center;
	padding: 12px;
	background: linear-gradient(135deg, #fe0b0b, #cc0000);
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(254, 11, 11, 0.3);
}

.mvr-section > p {
	font-size: 15px;
	line-height: 1.7;
	color: #e0e0e0;
	margin-bottom: 20px;
	text-align: center;
	font-family: 'Open Sans', Arial, sans-serif;
}

.mvr-form-row {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
}

.mvr-form-row .mvr-form-group {
	flex: 1;
}

.mvr-form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 15px;
}

.mvr-form-group label {
	font-size: 15px;
	color: #ffffff;
	font-weight: 600;
	font-family: 'Open Sans', Arial, sans-serif;
}

.mvr-form-group input[type="text"],
.mvr-form-group input[type="date"] {
	padding: 12px 16px;
	border: 2px solid #4b4b4b;
	border-radius: 8px;
	background-color: #3a3a3a;
	color: #ffffff;
	font-size: 15px;
	transition: all 0.3s ease;
	font-family: 'Open Sans', Arial, sans-serif;
}

.mvr-form-group input[type="text"]:focus,
.mvr-form-group input[type="date"]:focus {
	outline: none;
	border-color: #fe0b0b;
	background-color: #2a2a2a;
	box-shadow: 0 0 0 3px rgba(254, 11, 11, 0.2);
}

.consent-section {
	grid-column: 1 / -1;
	display: flex;
	gap: 20px;
	padding: 0;
	border: none;
	margin-bottom: 20px;
}

.consent-box {
	flex: 1;
	padding: 25px;
	background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.3);
	border: 2px solid #4b4b4b;
}

.consent-box label {
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
	font-size: 16px;
	color: #ffffff;
	font-family: 'Montserrat', sans-serif;
}

.consent-box input[type="checkbox"] {
	width: 22px;
	height: 22px;
	cursor: pointer;
	accent-color: #fe0b0b;
}

.consent-box p {
	font-size: 14px;
	color: #e0e0e0;
	line-height: 1.7;
	text-align: justify;
	font-family: 'Open Sans', Arial, sans-serif;
}

@media (max-width: 768px) {
	.mvr-form-row {
		flex-direction: column;
		gap: 15px;
	}
	
	.consent-section {
		flex-direction: column;
		gap: 15px;
	}
	
	.consent-box {
		padding: 20px;
	}
	
	.legal-section,
	.mvr-section {
		padding: 20px;
	}
}
.footer {
    background-image: url('https://img1.wsimg.com/isteam/ip/afc3fe12-7cf9-41c3-9d2f-315aa1391cb0/Turkc.png/:/rs=w:1440,h:1440');
    background-size: cover;
    background-position: center 75%;
    background-attachment: fixed;
    position: relative;
    color: white;
    padding: 80px 40px 0;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(20, 20, 20, 0.9) 100%);
    z-index: 1;
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-logo {
    width: 280px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(255, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-line {
    font-size: 1.1em;
    color: #ddd;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-phone {
    font-size: 1.8em;
    font-weight: bold;
    color: #ff0000;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(255, 0, 0, 0.4);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    padding: 8px;
}
.social-icon svg,
.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.social-icon:hover {
    background: #ff0000;
    border-color: #ff0000;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
}

.social-icon:hover svg,
.social-icon:hover img {
    filter: brightness(0) invert(1);
}
.footer-nav {
    text-align: left;
}

.footer-nav h4 {
    font-size: 1.4em;
    margin: 0 0 25px 0;
    color: #fff;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer-nav h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, transparent);
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95em;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-nav ul li a::before {
    content: '›';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #ff0000;
}

.footer-nav ul li a:hover {
    color: #ff0000;
    padding-left: 15px;
}

.footer-nav ul li a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-info {
    text-align: left;
}

.footer-info h4 {
    font-size: 1.4em;
    margin: 0 0 25px 0;
    color: #fff;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

.footer-info h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, transparent);
}

.footer-info-item {
    margin-bottom: 15px;
    color: #ccc;
    font-size: 0.95em;
    line-height: 1.6;
}

.footer-info-item strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.footer-legal {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 25px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-legal-text {
    color: #aaa;
    font-size: 0.9em;
}

.footer-legal-links {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #ff0000;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo-section {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
}
@media only screen and (max-width: 768px) {
  .footer {
    padding: 120px 20px 0;
    background-size: cover;
    background-position: center 75%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    min-height: 600px;
    overflow: hidden;
  }

  .footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
  }

  .footer-logo {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 160px;
    margin: 0 auto 10px auto;
    display: block;
    z-index: 2;
  }

  .footer-contact {
    margin-bottom: 20px;
    z-index: 2;
    font-size: 1.1em;
    font-weight: bold;
    color: white;
    line-height: 1.4;
    text-align: center;
  }

  .footer-nav {
    position: relative !important;    
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 30px;
    z-index: 2;
    text-align: left;
    align-self: flex-start;
  }

  .footer-nav h4 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: white;
  }

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

  .footer-nav ul li {
    margin-bottom: 10px;
  }

  .footer-nav ul li a {
    font-size: 0.95em;
    color: white;
    text-decoration: none;
  }

  .footer-legal {
    position: relative;
    font-size: 0.85em;
    padding: 12px 0;
    background-color: #222;
    color: #ccc;
    width: 100%;
    text-align: center;
    z-index: 2;
    margin-top: auto;
  }

  .footer-legal a {
    color: #a9d5de;
    text-decoration: none;
    margin-left: 10px;
  }
}


