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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #1a1a1a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #4CAF50;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #4CAF50;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Career Section */
.career-section {
    background-color: white;
    padding: 2rem 0;
    min-height: 80vh;
}

.career-header {
    text-align: center;
    margin-bottom: 3rem;
}

.career-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    /* margin-bottom: 1rem; */
    letter-spacing: 2px;
}

.career-description {
    font-size: 0.9rem;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.career-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Job Listings */
.job-listings {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.job-item {
    border-bottom: 1px solid #e9ecef;
}

.job-item:last-child {
    border-bottom: none;
}

.job-header {
    background-color: #1a1a1a;
    color: white;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.job-header:hover {
    background-color: #333;
}

.job-header h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.job-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: white;
}

.job-content.active {
    padding: 1rem 1.5rem;
    max-height: 500px;
}

.job-content p {
    margin-bottom: 0.5rem;
    color: #666;
    line-height: 1.6;
    font-size: 0.8rem;
}

.job-content ul {
    list-style: none;
    padding-left: 0;
    font-size: 0.8rem;
}

.job-content li {
    padding: 0.3rem 0;
    color: #555;
    position: relative;
    padding-left: 1.2rem;
}

.job-content li::before {
    content: '•';
    color: #4CAF50;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Application Form */
.application-form {
    background-color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: fit-content;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.6rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    /* font-size: 1rem; */
    transition: border-color 0.3s ease;
    background-color: #f8f9fa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
    background-color: white;
}

.form-group textarea {
    resize: vertical;
    /* min-height: 100px; */
}

.file-upload-row {
    align-items: end;
}

.file-upload-group {
    flex: 1;
}

.file-upload-label {
    display: block;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-label:hover {
    background-color: #e9ecef;
}

.upload-btn {
    background-color: #1a1a1a;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.upload-btn:hover {
    background-color: #333;
}

.form-submit {
    text-align: center;
    margin-top: 1rem;
}

.submit-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 0.5rem 1.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: #45a049;
}

/* Contact Section */
.contact-section {
    background-color: #f8f9fa;
    padding: 3rem 0;
    text-align: center;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .career-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .career-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .career-title {
        font-size: 2rem;
    }
    
    .career-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .file-upload-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .application-form {
        padding: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .career-section {
        padding: 2rem 0;
    }
    
    .career-title {
        font-size: 1.8rem;
    }
    
    .job-header {
        padding: 1rem;
    }
    
    .job-content.active {
        padding: 1rem;
    }
    
    .application-form {
        padding: 1rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
}

/* Animation for smooth transitions */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.career-content {
    animation: fadeIn 0.6s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}




/* ===== NAVBAR SECTION ===== */
.navbar {
    display: flex;
    height: 7rem;
    padding: 2.5rem 4.375rem 2.5625rem 4.6875rem;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    background: #000;
    width: 100%;
    position: relative;
    z-index: 1000;
  }
  
  .nav-logo-wrapper {
    flex-shrink: 0;
  }
  
  .nav-logo {
    width: 8.08944rem;
    height: 2.875rem;
    flex-shrink: 0;
    aspect-ratio: 129.43/46;
    object-fit: contain;
  }
  
  .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
  }
  
  .nav-link-items {
    color: #fff;
    text-align: center;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
    position: relative;
  }
  
  /* .nav-link-items:hover {
    color: #ccc;
    transform: translateY(-2px);
  } */
  
  .nav-link-items::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
  }
  
  .nav-link-items:hover::after {
    width: 100%;
  }
  
  .nav-link-contact {
    width: 10.5rem;
    height: 3.4375rem;
    flex-shrink: 0;
    border-radius: 2.34375rem;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .nav-link-contact:hover {
    background-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
  }
  
  .nav-link-contact:hover .nav-link-items-contact {
    color: #000;
  }
  
  .nav-link-items-contact {
    color: #fff;
    text-align: center;
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  /* Hide mobile elements on desktop */
  .mobile-contact {
    display: none;
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    transition: transform 0.3s ease;
  }
  
  .hamburger:hover {
    transform: scale(1.1);
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
  }
  
  /* ===== TABLET RESPONSIVE ===== */
  @media screen and (max-width: 1024px) and (min-width: 769px) {
    .navbar {
      height: 8rem;
      padding: 3rem 2rem;
    }
  
    .nav-logo {
      width: 7rem;
      height: 2.5rem;
    }
  
    .nav-links {
      gap: 2.5rem;
    }
  
    .nav-link-items {
      font-size: 0.9rem;
      letter-spacing: 0.08rem;
    }
  
    .nav-link-contact {
      width: 9rem;
      height: 3rem;
    }
  }
  
  /* ===== MOBILE RESPONSIVE ===== */
  @media screen and (max-width: 768px) {
    .navbar {
      height: 6rem;
      padding: 1.5rem 1rem;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
  
    .nav-logo {
      width: 6rem;
      height: 2rem;
    }
  
    /* Show hamburger menu */
    .hamburger {
      display: flex;
    }
  
    /* Hide desktop contact button */
    .desktop-contact {
      display: none;
    }
  
    /* Mobile menu styles */
    .nav-links {
      display: flex;
      position: fixed;
      top: 6rem;
      left: 0;
      width: 100%;
      height: calc(100vh - 6rem);
      background: rgba(0, 0, 0, 0.98);
      backdrop-filter: blur(10px);
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      padding: 3rem 1rem 2rem 1rem;
      gap: 2rem;
      transform: translateX(-100%);
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      overflow-y: auto;
    }
  
    .nav-links.active {
      transform: translateX(0);
      opacity: 1;
      visibility: visible;
    }
  
    .nav-link-items {
      font-size: 1.2rem;
      padding: 1rem 0;
      width: 100%;
      text-align: center;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
      letter-spacing: 0.15rem;
    }
  
    .nav-link-items:hover {
      color: #fff;
      background: rgba(255, 255, 255, 0.1);
      transform: translateX(10px);
    }
  
    .nav-link-items::after {
      display: none;
    }
  
    /* Show mobile contact button */
    .mobile-contact {
      display: flex;
      margin-top: 2rem;
      width: 80%;
      max-width: 300px;
      height: 3.5rem;
      border: 2px solid #fff;
      border-radius: 25px;
      background: transparent;
      transition: all 0.3s ease;
    }
  
    .mobile-contact:hover {
      background: #fff;
      transform: translateY(-2px);
      box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
    }
  
    .mobile-contact:hover .nav-link-items-contact {
      color: #000;
    }
  
    .mobile-contact .nav-link-items-contact {
      font-size: 1.1rem;
      letter-spacing: 0.12rem;
      font-weight: 600;
    }
  
    /* Hamburger animation */
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
  
    .hamburger.active span:nth-child(2) {
      opacity: 0;
      transform: translateX(-20px);
    }
  
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }
  
    /* Prevent body scroll when menu is open */
    body.menu-open {
      overflow: hidden;
    }
  }
  
  /* ===== SMALL MOBILE ===== */
  @media screen and (max-width: 480px) {
    .navbar {
      height: 5rem;
      padding: 1rem 0.8rem;
    }
  
    .nav-logo {
      width: 5rem;
      height: 1.8rem;
    }
  
    .nav-links {
      top: 5rem;
      height: calc(100vh - 5rem);
      padding: 2rem 1rem;
    }
  
    .nav-link-items {
      font-size: 1.1rem;
      padding: 0.8rem 0;
    }
  
    .hamburger span {
      width: 22px;
      height: 2.5px;
      margin: 2.5px 0;
    }
  }
  
  /* ===== SMOOTH SCROLLING OFFSET FOR FIXED NAVBAR ===== */
  @media screen and (max-width: 768px) {
    html {
      scroll-padding-top: 6rem;
    }
  
    /* Add top margin to first section to account for fixed navbar */
    .hero-section {
      margin-top: 6rem;
    }
  }
  
  @media screen and (max-width: 480px) {
    html {
      scroll-padding-top: 5rem;
    }
  
    .hero-section {
      margin-top: 5rem;
    }
  }
  


  
/* Footer */

.footer {
    width: 100%;
    /* height: 27.125rem; */
    flex-shrink: 0;
    background-color: #000;
    background-image: url(./Images/footer-background.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: -1rem;
  }
  .footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4.5rem 12rem;
    gap: 9rem;
  }
  .footer-logo-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .footer-logo {
    width: 11.9375rem;
    height: 4.25rem;
    flex-shrink: 0;
    aspect-ratio: 191/68;
  }
  .footer-address-wrapper {
    gap: 1.38rem;
  }
  .footer-address {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .footer-address-title {
    color: #fff;
    font-family: Inter;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 300;
    line-height: 2rem;
    letter-spacing: 0.0625rem;
    text-transform: uppercase;
    width: 17.375rem;
  }
  .footer-address-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-family: Inter;
    font-size: 0.5625rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 17.375rem;
  }
  .footer-links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-links-title {
    color: #fff;
    font-family: Inter;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 300;
    line-height: 2rem;
    letter-spacing: 0.0625rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
  }
  .footer-links {
    color: #d3d6d3;
    font-family: Inter;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
  }
  .footer-social-media-wrapper {
    display: flex;
    gap: 0.75rem;
  }
  .footer-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.81rem;
  }
  .footer-form-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.34rem;
  }
  .footer-form-title {
    color: #fff;
    font-family: Inter;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 3.75rem; 
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    width: 26.0625rem;
  }
  .footer-form-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-feature-settings: "liga" off, "clig" off;
    font-family: Inter;
    font-size: 0.5625rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1rem; 
    width: 16.5625rem;
  }
  .footer-form {
    display: flex;
    flex-direction: column;
    gap: 0.37rem;
  }
  .footer-form-input {
    display: flex;
    height: 2.5rem;
    padding: 1rem 1.5rem;
    align-items: center;
    gap: 0.5rem;
    flex: 1 0 0;
    border: 1px solid #d0d5dd;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
    background-color: transparent;
    color: white;
    }
  .footer-form-button {
    margin-top: 1.19rem;
    background: #fff;
    box-shadow: 0px 1px 2px 0px rgba(255, 255, 255, 0.05);
    color: #000;
    font-family: Poppins;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem 1.25rem;
    width: 9rem;
    height: 3rem;
  }
  .footer-copyright {
    display: flex;
    width: 100%;
    margin-bottom: 1rem;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    text-align: center;
  }
  .footer-copyright-text {
    color: #d3d6d3;
    font-family: Inter;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
  }
  





  /* ===== TABLET MEDIA QUERIES (768px - 1024px) ===== */
@media screen and (max-width: 1024px) and (min-width: 769px) {  
  /* Footer */
  .footer-wrapper {
    margin: 3rem 4rem;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-logo {
    width: 10rem;
    height: 3.5rem;
}

.footer-address-title,
.footer-links-title,
.footer-form-title {
    font-size: 1.1rem;
    width: auto;
}

.footer-form-title {
    width: 22rem;
}
}

/* ===== MOBILE MEDIA QUERIES (320px - 768px) ===== */
@media screen and (max-width: 768px) {
      /* Footer */
  .footer-wrapper {
    flex-direction: column;
    margin: 2rem 1rem;
    gap: 2rem;
    text-align: center;
}

.footer-logo-wrapper {
    align-items: center;
}

.footer-logo {
    width: 8rem;
    height: 3rem;
}

.footer-address-wrapper {
    gap: 1rem;
}

.footer-address-title,
.footer-links-title {
    font-size: 1rem;
    width: auto;
}

.footer-address-subtitle {
    font-size: 0.7rem;
    width: auto;
}

.footer-links-wrapper {
    gap: 0.8rem;
}

.footer-links {
    font-size: 0.9rem;
}

.footer-form-wrapper {
    gap: 1.5rem;
}

.footer-form-title {
    font-size: 1rem;
    line-height: 2rem;
    width: auto;
}

.footer-form-subtitle {
    font-size: 0.7rem;
    width: auto;
}

.footer-form-input {
    height: 2.2rem;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
}

.footer-form-button {
    width: 100%;
    height: 2.8rem;
    font-size: 0.7rem;
    margin-top: 1rem;
}

.footer-copyright-text {
    font-size: 0.7rem;
}
}
.form-title{
    color: black;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1rem;
}




