html, body {
  overflow-x: hidden;
  font-family: 'Outfit', sans-serif;
}

.navbar-transparent {
  background-color: transparent !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  box-shadow: none;
  padding: 10px 0;
}

.navbar-logo {
  width: 150px;
  height: auto;
  margin-left: 20px;
}

.navbar-nav {
  margin-left: auto;
}

.navbar-nav .nav-item {
  margin-left: 10px;
}

.navbar-nav .nav-item .nav-link {
  color: white;
  font-size: 1.2rem;
  padding-left: 15px;
}

.navbar-nav .nav-item .contact-link {
  background-color: rgba(30, 144, 255, 0.2);
  color: white;
  padding: 8px 15px;  
  border-radius: 20px;
  margin-left: 5px;
  transition: all 0.3s ease;
  font-size: 1rem;
  border: 1px solid rgba(30, 144, 255, 0.5);
  position: relative;  
  top: 2px;  
}
.navbar-nav .nav-item .contact-link:hover {
  background-color: #1e90ff;
  color: white;
  transform: translateY(-2px);
}

.navbar-toggler {
  background-color: rgba(30, 144, 255, 0.2); 
  color: white;
  border: 1px solid rgba(30, 144, 255, 0.5);
  border-radius: 20px; 
  transition: all 0.3s ease;
  padding: 8px 15px;
  margin-right: 10px;
}

.navbar-toggler:hover {
  background-color: #1e90ff; 
  transform: translateY(-2px); 
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;

}


.hero-section {
  position: relative;
  background-image: url('');
  background-size: cover;
  background-color: white;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  color: white;
  padding: 20px;
}

.job-hero {
  background-image: url('../img/bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 120px 0 180px;
  color: white;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.job-hero .hero-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(13,110,253,0.75) 100%);
}

.hero-text {
  position: relative;
  z-index: 2;
  font-size: 4rem;
  font-family: outfit;
  line-height: 1.2;
}

.job-hero .hero-text {
  padding-right: 20px;
}

.hero-text p {
  margin: 0;
}

.hero-badge {
  display: inline-block;
  background-color: #0d6efd;
  color: white;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(13,110,253,0.3);
}

.job-hero .hero-text h1 {
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
  letter-spacing: -0.5px;
}

.text-highlight {
  color: #ffffff;
  font-weight: 900;
}

.highlight-underline {
  position: absolute;
  bottom: -5px;
  left: 0;
  z-index: -1;
  animation: wave 3s infinite linear;
}

@keyframes wave {
  0% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  100% { transform: translateX(-5px); }
}

.btn-custom {
  background-color: #1e90ff;
  color: white;
  border-radius: 25px;
  padding: 10px 20px;
  font-size: 1.2rem;
  position: relative;
  z-index: 1;
}

.hero-buttons {
  margin-top: 35px;
  position: relative;
  z-index: 5;
}

.hero-buttons .btn {
  padding: 12px 28px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 10;
}

.hero-buttons .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.hero-buttons .btn-outline-light {
  background-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255,255,255,0.3);
  position: relative;
  z-index: 10;
}

.hero-buttons .btn-outline-light:hover {
  background-color: rgba(255,255,255,0.2);
}

.hero-shape {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
  pointer-events: none;
}

.hero-card-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-card {
  background-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

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

.hero-card-icon {
  background-color: rgba(13,110,253,0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.hero-card-icon i {
  font-size: 24px;
  color: white;
}

.hero-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
  opacity: 0.9;
}

.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: 60px;
}

.stat-item {
  background-color: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 20px 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.job-card {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  overflow: hidden;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.job-header {
  background-color: #f8f9fa;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.job-icon {
  background-color: rgba(13, 110, 253, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.apply-btn {
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.sectionheader {
  font-size: 2.2rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.job-location {
  color: #6c757d;
  font-size: 0.95rem;
}

.job-type {
  display: inline-block;
  padding: 5px 15px;
  background-color: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-top: 10px;
}

.btn {
  position: relative;
  z-index: 10;
  cursor: pointer;
}

.btn-primary, .btn-outline-light {
  position: relative;
  z-index: 10;
}

.image-text-section {
  position: relative;
  background-image: url('img/bg2.png');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: white;
  background-color: rgba(255, 255, 255, 0.0);
  z-index: 1;
}

.image-container {
  flex: 1;
}

.section-image {
  width: 80%;
  height: 80%;
  z-index: 3;
}

.text-container {
  flex: 1;
  padding: 20px;
  color: black;
  z-index: 2;
  font-family: outfit;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: lighter;
  color: #1e90ff;
  margin-bottom: 20px;
  font-family: outfit;
}

.section-text {
  font-size: 1.2rem;
}

.services-section {
  background-image: url('img/bg3.png');
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  font-family: outfit;
}

.services-section .section-heading {
  font-size: 2.5rem;
  font-weight: lighter;
  color: #1e90ff;
  margin-bottom: 1px;
}

.services-section .p2 {
  text-align: center;
  font-size: 1.2rem;
  font-weight: lighter;
  margin-bottom: 40px;
  color: white;
}

.service-item {
  margin-bottom: 30px;
}

.service-box {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.service-image {
  max-width: 20%;
  height: auto;
  margin-bottom: 20px;
  margin-left: auto;
  margin-top: 30px;
  margin-right: auto;
}

.service-title {
  font-size: 1.3rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.service-description {
  font-size: 1.1rem;
  color: #666;
  margin-top: auto;
}

.contact-section {
  background-color: #f4f4f4;
  padding: 80px 0;
}

.contact-section .section-heading {
  font-size: 2.2rem;
  font-weight: lighter;
  color: #1e90ff;
  margin-bottom: 40px;
  text-align: center;
}

.contact-box {
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background-color: rgba(17, 25, 40, 0.75);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.125);
  padding: 30px;
  text-align: center;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.company-name {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.contact-box p {
  font-size: 1.1rem;
  color: #555;
}

.contact-box a {
  color: #1e90ff;
  text-decoration: none;
}

.contact-box a:hover {
  text-decoration: underline;
}

.footer-section {
  background-color: #343a40;
  color: #f8f9fa;
  padding: 60px 0 30px;
  font-family: 'Outfit', sans-serif;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-logo {
  width: 130px;
  height: auto;
}

.footer-heading {
  color: #1e90ff;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.25rem;
}

.footer-links, .footer-contact {
  list-style: none;
  padding-left: 0;
}

.footer-links li, .footer-contact li {
  margin-bottom: 10px;
}

.footer-links a, .footer-contact a {
  color: #f8f9fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover, .footer-contact a:hover {
  color: #1e90ff;
  text-decoration: none;
}

.footer-contact i {
  margin-right: 10px;
  color: #1e90ff;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

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

.footer-link {
  color: #f8f9fa;
  text-decoration: none;
  transition: color 0.3s ease;
  margin: 0 5px;
}

.footer-link:hover {
  color: #1e90ff;
  text-decoration: none;
}

a {
  text-decoration: none;
}

.kbd {
  font-family: Freescpt;
  font-style: oblique;
  color: #1e90ff;
}

@media (max-width: 992px) {
  .job-hero {
      padding: 100px 0 120px;
  }
  
  .hero-stats {
      margin-top: 40px;
  }
  
  .stat-number {
      font-size: 2rem;
  }
}

@media (max-width: 768px) {
.navbar-nav {
  margin-left: 0;
  text-align: center;
}

.navbar-nav .nav-item {
  margin-left: 0;
}

.navbar-nav .nav-item .contact-link {
  margin-left: 0;
  margin-top: 8px;
  display: inline-block;
}

.navbar-logo {
  margin-left: 0;
}

.navbar-collapse {
  background-color: #343a40;
  color: white;
}

.navbar-collapse .nav-link {
  color: white;
}

.navbar-collapse .nav-link:hover {
  color: #dcdcdc;
}

  .hero-section {
      height: auto;
      padding: 80px 20px;
      text-align: center;
  }

  .hero-text {
      font-size: 1.8rem;
      line-height: 1.3;
  }

  .btn-custom {
      font-size: 1rem;
      padding: 8px 16px;
  }
  
  .job-hero {
      text-align: center;
      padding: 80px 0 100px;
  }
  
  .job-hero .hero-text {
      padding-right: 0;
  }
  
  .job-hero .hero-text h1 {
      font-size: 2.5rem;
  }
  
  .hero-buttons .btn {
      margin-bottom: 15px;
  }
  
  .hero-stats {
      margin-top: 30px;
  }
  
  .stat-item {
      margin-bottom: 15px;
  }

  .image-text-section {
      padding: 20px 0;
  }

  .section-heading {
      font-size: 1.5rem;
  }

  .section-text {
      font-size: 1rem;
      line-height: 1.5;
  }

  .image-container {
      display: none;
  }

  .text-container {
      text-align: center;
      margin: auto;
      padding: 0 15px;
      word-wrap: break-word;
  }

  .service-item {
      margin-bottom: 20px;
  }

  .services-section .section-heading {
      font-size: 2rem;
  }

  .service-description {
      font-size: 1rem;
  }

  .service-image {
      width: 80%;
      margin-bottom: 20px;
  }

  .service-box {
      height: auto;
  }

  .contact-section .section-heading {
      font-size: 2rem;
  }

  .contact-box {
      margin-bottom: 20px;
  }

  .footer-section {
      text-align: center;
  }
  
  .footer-bottom {
      text-align: center;
  }
  
  .col-md-6.text-md-end {
      text-align: center !important;
      margin-top: 15px;
  }
}