html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Adjust this value based on your navbar height */
}

*{
  
  font-family: 'Roboto', sans-serif;
}
body{
  background-color: #ffffff;

}
.wrapper{
  width: 100%;
 margin: 0px;
 padding: 0px;
}
h3{
    font-size: 22px;
}

h1{
    font-size: 32px;
}
h5{
    font-size: 13px;
}
p{
    font-size: 18px;
}
.hero-title{
  max-width: 1000px;
  font-weight: bolder;
  font-size: 90px;
  color: white;
  }
.stepp{

color: #4B5563;
}
.details{
  max-width: 900px;
  border-radius: 16px;
}
.button{
background-color: #F79220;
padding: 10px 20px;
border-radius: 10px;
text-decoration: none;
color: white;
font-size: 16px;
font-weight: 500;
border: none;

}
.button:hover{
  background-color: #e88a00;
  color: white;
}
.txtcolor{
color: #F79220;
}
.bgcolor{
background-color: #F79220;
}


.navbar {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.nav-pills .nav-link.active {
  background-color: #F79220 !important;
  color: white !important;
}
.nav-pills .nav-link{
  background-color: white;
  border: 1px solid #F0F0F0;
  color: #5e5f60;
}
.nav-pills .nav-link:hover{
  background-color: white;
  color: #5e5f60;
}
.nav-pills .nav-link.active {
  color: #F79220 !important;
}

.hero-subtitle {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
}


.step1-pos{
  margin-left: 400px;
}
.join-team1{
 margin: auto;
 display: flex;
 justify-content: space-around;
 align-items: center;
 text-align: center;
}
.folded-bg-section {
  position: relative;
  width: 100vw;
  height: 200px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 2rem;
}

.rect-bg {
  position: absolute;
  left: 0;
  width: 100vw;
  height: 100px; /* Adjust as needed */
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.rect-top {
  top: 0;
  /* Optionally add transform for perspective effect */
}

.rect-bottom {
  bottom: 0;
  /* Optionally add transform for perspective effect */
}

.logos-center {
  position: relative;
  z-index: 2;
  width: 80vw;
  display: flex;
  justify-content: center;
  align-items: center;
}


/* Remove the old work1 class as it's no longer used */
/* .work1{
  display: flex;
  justify-content: space-around;
  align-items: center;
} */

.icon{
  border-radius: 24px;
  padding: 6px;
}

.movestep{
    position: relative;
    top: 140px;
}
.movestep2{
    position: relative;
    top: 74px;
}


.btn-orange {
  background: #ff9900;
  color: #fff;
  font-weight: 500;
  border: none;
}

.btn-orange:hover {
  background: #e88a00;
  color: #fff;
}

/* Responsive font sizes */
@media (max-width: 768px) {
  .wrapper{
    width: 100%;
    overflow-x: hidden;
  }
  .details{
    margin: 0px;
  }
  .hero-title {
    padding:20px 0;
    font-size: 27px !important;
  }
  /* Remove the old work12 class */
  /* .work12{
    height: 100%;
  } */
  
  /* Add responsive styles for work cards */
  .work-card {
    padding: 1rem;
  }
  
  .work-card h3 {
    font-size: 18px;
    line-height: 1.3;
  }
  
  .work-card p {
    font-size: 14px;
    line-height: 1.4;
  }
}

@media (max-width: 992px) {
  .work-card {
    margin-bottom: 1rem;
  }
  
  .work-card h3 {
    font-size: 20px;
    white-space: normal;
  }
  
  .work-card .d-flex {
    align-items: flex-start;
  }
  
  .work-card .me-3 {
    margin-right: 0 !important;
    margin-bottom: 1rem;
  }
}

/* Sidebar Stepper Full Height and Vertical Line */
.sidebar-stepper {
  max-width: 314px;
  max-height: 666px;
  background-color: #FFE7CD;
  border-radius: 12px;
}

.stepper-list {
  position: relative;
  padding-left: 0.5rem;
  margin-top: 1rem;
}

.stepper-list li {
  min-height: 100px;
}

.vertical-line {
  position: absolute;
  left: 10px;
  top: 70px;
  width: 4px;
  height: 80px;
  background: #F79220;
  border-radius: 2px;
  z-index: 0;
}

.vertical-line:not(.active) {
  background:white;
}

.stepper-list li:last-child .vertical-line {
  display: none;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 140px);
    grid-template-rows: repeat(2, 140px);
    gap: 20px;
    justify-content: center;
    align-items: center;
  }
  
  .grid-img {
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Positioning for asymmetrical layout */
  .image-grid img:nth-child(1) { grid-column: 1; grid-row: 1; }
  .image-grid img:nth-child(2) { grid-column: 1; grid-row: 2; }
  .image-grid img:nth-child(3) { grid-column: 3; grid-row: 1; }
  .image-grid img:nth-child(4) { grid-column: 2; grid-row: 1 / span 1; }
  .image-grid img:nth-child(5) { grid-column: 3; grid-row: 2; }
  
.avatar{
  height: 400px;
  width: 400px;
}

.val1{
  height: 200px;
  width: 600px;
}
.val2{
  height: 200px;
  width: 600px;
  border-radius: 10px 10px 160px 160px;
}
.val3{
  height: 200px;
  width: 600px;
  border-radius: 140px 10px 10px 140px;
}
.val4{
  height: 200px;
  width: 600px;
  border-radius: 4px 100px 4px 100px;
}
.bgcolor:hover {
  background-color: #F79220; 
  color: white;              
}
.step1g{
height: 190px;
}
.specialty-section{
 margin: auto;
 display: flex;
 justify-content: space-evenly;
 align-items: center;

}
.job-opening{
 display: flex;
 margin: auto;
 flex-direction: column;  
 justify-content: space-around;
 align-items: center;
 text-align: start;
 
}
.contact-btn{
  background-color: #F79220;
  padding: 3px 16px;
  border-radius: 8px;
  color: white;
  font-size: 16px;
}
.contact-btn:hover{
  background-color: #F79220;
  color: white;
}
  .iconss{
    height: 40px;
    width: 44px;
    border-radius: 24px;
padding: 6px;
  }
.speciality-img{
  width: 400px;
  height: auto;
}
.grid-img1{
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.grid-img2{
  width: 300px;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.grid-img3{
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.grid-img4{
  width: 140px;
  height: 173px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.grid-img5{
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.section-background {
  background-image: url('../assets/Rectangle.png'), url('../assets/Rectangle\ \(1\).png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  bottom: 30px;
}

.logos-img {
  max-width: 180px;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  image-rendering: -webkit-optimize-contrast;
}

@media (max-width: 768px) {
  .section-background {
    padding: 30px;
    position: relative;
    bottom: 40px;
  }
  
  .logos-img {
    max-width: 140px;
    margin: 10px;
  }
}

@media (max-width: 576px) {
  .section-background {
    padding: 20px;
  }
  
  .logos-img {
    max-width: 110px;
    margin: 8px;
  }
}

/* Remove any filter or opacity effects that might cause blur */
.logos-img:hover {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .work-card {
    margin-bottom: 1rem;
  }
  
  .work-card h3 {
    font-size: 20px;
    white-space: normal;
  }
  
  .work-card .d-flex {
    align-items: flex-start;
  }
  
  .work-card .me-3 {
    margin-right: 0 !important;
    margin-bottom: 1rem;
  }
}

/* Sidebar Stepper Full Height and Vertical Line */
.sidebar-stepper {
  max-width: 314px;
  max-height: 666px;
  background-color: #FFE7CD;
  border-radius: 12px;
}

.stepper-list {
  position: relative;
  padding-left: 0.5rem;
  margin-top: 1rem;
}

.stepper-list li {
  min-height: 100px;
}

.vertical-line {
  position: absolute;
  left: 10px;
  top: 70px;
  width: 4px;
  height: 80px;
  background: #F79220;
  border-radius: 2px;
  z-index: 0;
}

.vertical-line:not(.active) {
  background:white;
}

.stepper-list li:last-child .vertical-line {
  display: none;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 140px);
    grid-template-rows: repeat(2, 140px);
    gap: 20px;
    justify-content: center;
    align-items: center;
  }
  
  .grid-img {
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  /* Positioning for asymmetrical layout */
  .image-grid img:nth-child(1) { grid-column: 1; grid-row: 1; }
  .image-grid img:nth-child(2) { grid-column: 1; grid-row: 2; }
  .image-grid img:nth-child(3) { grid-column: 3; grid-row: 1; }
  .image-grid img:nth-child(4) { grid-column: 2; grid-row: 1 / span 1; }
  .image-grid img:nth-child(5) { grid-column: 3; grid-row: 2; }
  
.avatar{
  height: 400px;
  width: 400px;
}

.val1{
  height: 200px;
  width: 600px;
}
.val2{
  height: 200px;
  width: 600px;
  border-radius: 10px 10px 160px 160px;
}
.val3{
  height: 200px;
  width: 600px;
  border-radius: 140px 10px 10px 140px;
}
.val4{
  height: 200px;
  width: 600px;
  border-radius: 4px 100px 4px 100px;
}
.bgcolor:hover {
  background-color: #F79220; 
  color: white;              
}
.step1g{
height: 190px;
}
.specialty-section{
 margin: auto;
 display: flex;
 justify-content: space-evenly;
 align-items: center;

}
.job-opening{
 display: flex;
 margin: auto;
 flex-direction: column;  
 justify-content: space-around;
 align-items: center;
 text-align: start;
 
}
.contact-btn{
  background-color: #F79220;
  padding: 3px 16px;
  border-radius: 8px;
  color: white;
  font-size: 16px;
}
.contact-btn:hover{
  background-color: #F79220;
  color: white;
}
  .iconss{
    height: 40px;
    width: 44px;
    border-radius: 24px;
padding: 6px;
  }
.speciality-img{
  width: 400px;
  height: auto;
}
.grid-img1{
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.grid-img2{
  width: 300px;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.grid-img3{
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.grid-img4{
  width: 140px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.grid-img5{
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.section-background {
  background-image: url('../assets/Rectangle.png'), url('../assets/Rectangle\ \(1\).png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; /* or use specific sizes */
 position: relative;
bottom: 30px;
}

@media (max-width: 768px) {
  .sidebar-stepper {
    max-width: 100%;
    min-height: auto;
    height: auto;
  }
  .vertical-line {
    height: 36px;
    left: 18px;
    top: 32px;
  }
  .avatar{
    height: 300px;
    width: 300px;
  }
 .specialty-section{
  padding: 20px 0;
 } 
  .val1{
    height: 200px;
    width: 400px;
  }
  .speciality-img{
    width: 300px;
    height: auto;
  }
  .step1{
    height: 1000px;
  }
  .section-background {
   position: relative;
  bottom: 40px;
  } 
  
  .vertical-line {
    position: absolute;
    left: 10px;
    top:56px;
    width: 2px;
    height: 100px;
    z-index: 0;
  }
  .featured-logos {
    display: flex;
    flex-direction: column;  
  padding: 1rem 0;
  text-align: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.logos-img{
  width: 20px !important;
}
.image-grid {
  display: flex;
  flex-direction: column;
 align-items: flex-start;

}
.grid-img1,.grid-img2,.grid-img3,.grid-img4,.grid-img5{
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.step1g{
  height: 100px; 
  }
  .logos-img{
    width: 100px;
  }
}


.left-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.right-col {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 140px 140px 1fr;
  gap: 24px;
  position: relative;
}

.grid-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.grid-img-large {
  width: 200px;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.grid-img-tall {
  width: 200px;
  height: 304px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  grid-row: 1 / span 2;
  margin-top: 24px;
}



/* lg (≥992px) */
@media (max-width: 992px) {
    .wrapper{
      width: 100%;
      overflow-x: hidden;
    }
    .logos-img{
      width: 215px !important;
    }
  .hero-title{
    font-size: 90px;
    text-align: center;
    max-width: 600px; 
  }
  .hero-img-fixed {
    width: 150px !important;
    height: 150px !important;
    left: 15% !important;
    top: 10% !important;
  }
  .hero-img-bottom-left {  
    width: 220px !important;
    height: 220px !important;
    left: 10% !important;
    bottom: 25% !important;
  }
  .hero-img-bottom-right {
    width: 150px !important;
    height: 150px !important;
    right: 2% !important;
    bottom: 15% !important;
  }
  .hero-img-behind-left {
    width: 140px;
    height: 140px;
    left: 25%;
    top: 75%;
  }
  .hero-img-behind-right {
    width: 140px;
    height: 140px;
    right: 27%;
    bottom: 0;
  }
}

/* xl (≥1200px) */
@media (min-width: 1200px) {
  .hero-img-fixed {
    width: 200px !important;
    height: 180px !important;
    left: 14% !important;
    top: 16% !important;
  }
  .hero-img-bottom-left {
    width: 260px;
    height: 260px;
    left: 10%;
    bottom: 25%;
  }
  .hero-img-bottom-right {
    width: 200px !important;
  height: 200px !important;
    right: 6% !important;
    bottom: 24% !important;
  }
  .hero-img-behind-left {
    width: 180px;
    height: 180px;
    left: 25%;
    top: 75%;
  }
  .hero-img-behind-right {
    width: 180px;
    height: 180px;
    right: 27%;
    bottom: 0;
  }
}

.hero-img-bottom-left{
  position: absolute ;
  width: 200px ;
  height: 200px ;
  left: 7% ;
  bottom: 22% ;
  z-index: 0;
}
.hero-img-behind-left{
  position: absolute;
  top: 80%;
  left: 25%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  z-index: 0; 
}
.hero-img-fixed{
  position: absolute !important;
  width: 140px !important;
  height: 140px !important;
  left: 15% !important;
  top: 0% !important;
}
.hero-img-behind-right{
  position: absolute;
  width: 100px;
  height: 100px;
  right: 22%;
  bottom: 16%;
  z-index: 0;
}
.hero-img-bottom-right{
  position: absolute;
  width: 150px;
  height: 150px;
  right: 20%;
  bottom: 20%;
  z-index: 0;
}

/* Work Section Styles */
.work-card {
  background: white;
  border: 1px solid rgba(243, 244, 246, 1);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.3s ease;
}

.work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.work-icon {
  height: 44px;
  width: 44px;
  border-radius: 14px;
  padding: 6px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.work-small-icon {
  height: 24px;
  width: 24px;
  flex-shrink: 0;
}

.stat-item {
  text-align: center;
  min-width: 80px;
}

/* Responsive styles for work section */
@media (max-width: 991.98px) {
  .work-card {
    padding: 1.25rem;
  }

  .work-card h3 {
    font-size: 1.25rem !important;
  }

  .work-card p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .stat-item {
    min-width: 70px;
  }
}

@media (max-width: 575.98px) {
  .work-card {
    padding: 1rem;
  }

  .work-icon {
    height: 36px;
    width: 36px;
    padding: 4px;
  }

  .work-small-icon {
    height: 20px;
    width: 20px;
  }

  .work-card h3 {
    font-size: 1.1rem !important;
  }

  .work-card p {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }

  .stat-item {
    min-width: 60px;
  }
}

/* Mobile Header Styles */
@media (max-width: 991.98px) {
  /* Reset default navbar styles */
  .navbar {
    padding: 10px 15px;
  }

  /* Mobile Header Base Styles */
  .mobile-header {
    position: fixed;
    top: 0;
    left: -100%; /* Start off-screen to the left */
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    z-index: 1050;
    overflow-y: auto;
    transition: left 0.3s ease-in-out;
    max-width: 100%; /* Changed from 320px to 100% */
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
  }

  /* Slide in from left when show class is added */
  .mobile-header.show {
    left: 0;
  }

  /* Mobile Header Container */
  .mobile-header-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 0 20px; /* Added padding */
  }

  /* Top Section with Logo and Close Button */
  .mobile-header-top {
    position: relative;
    padding: 20px 0; /* Adjusted padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #eee; /* Added border */
  }

  .mobile-header-top .navbar-brand {
    position: static;
    margin: 0; /* Removed auto margin */
  }

  .mobile-header-top .navbar-brand img {
    max-height: 40px;
  }

  /* Close Button Styling */
  .mobile-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    outline: none;
  }

  .mobile-close-btn::before,
  .mobile-close-btn::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: #333;
    transition: transform 0.3s ease;
  }

  .mobile-close-btn::before {
    transform: rotate(45deg);
  }

  .mobile-close-btn::after {
    transform: rotate(-45deg);
  }

  .mobile-close-btn:hover {
    background-color: #e0e0e0;
    transform: rotate(90deg);
  }

  .mobile-close-btn:hover::before,
  .mobile-close-btn:hover::after {
    background-color: #000;
  }

  /* Navigation Menu Styles */
  .mobile-header-menu {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 30px 0; /* Adjusted padding */
    overflow-y: auto;
  }

  .mobile-header-menu .navbar-nav {
    margin-bottom: 30px;
    width: 100%; /* Added full width */
  }

  .mobile-header-menu .nav-item {
    margin-bottom: 10px;
    width: 100%; /* Added full width */
  }

  .mobile-header-menu .nav-link {
    font-size: 18px;
    color: #333;
    padding: 12px 0; /* Adjusted padding */
    transition: background-color 0.2s ease;
    display: block;
    width: 100%; /* Added full width */
  }

  /* Authentication Buttons */
  .mobile-header-auth {
    width: 100%; /* Added full width */
    padding: 20px 0; /* Added padding */
  }

  .mobile-header-auth .btn {
    width: 100%; /* Make buttons full width */
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.2s ease;
  }

  .mobile-header-auth .btn-link {
    color: #5e5f60;
    text-decoration: none;
    border: 1px solid #e0e0e0;
  }

  .mobile-header-auth .btn-orange {
    background-color: #ff6b00;
    color: white;
  }

  .mobile-header-auth .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  /* Overlay effect when mobile header is open */
  body.mobile-menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  body.mobile-menu-open::before {
    opacity: 1;
    pointer-events: all;
  }

  html {
    scroll-padding-top: 60px; /* Smaller padding for mobile */
  }
}

/* Mobile Toggle Button Styles */
@media (max-width: 991.98px) {
  .mobile-toggle {
    border: none;
    background: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

.mobile-header-menu .nav-link:hover {
  background-color: #f5f5f5;
  padding-left: 10px;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
  border: none;
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
}

.mobile-menu-overlay.show {
  display: block;
}

@media (max-width: 991.98px) {
  .mobile-header-menu .nav-link {
    border-bottom: 1px solid #eee;
  }
  
  .mobile-close-btn {
    width: 32px;
    height: 32px;
  }
}

/* Our Values Section Responsive Styles */
.our-values {
  width: 100%;
  overflow-x: hidden;
}

.our-values h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.our-values p {
  font-size: 1rem;
}

/* Value cards base styles */
.our-values .bg-white {
  transition: all 0.3s ease;
}

.our-values .bg-white:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Value images responsive styles */
.val1, .val2, .val3, .val4 {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
}

/* Large screens (≥1200px) */
@media (min-width: 1200px) {
  .our-values h2 {
    font-size: 2.5rem;
  }
  
  .val1, .val2, .val3, .val4 {
    max-height: 200px;
  }
}

/* Medium screens (≥992px and <1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .our-values h2 {
    font-size: 2.25rem;
  }
  
  .val1, .val2, .val3, .val4 {
    max-height: 180px;
  }
  
  .our-values .bg-white {
    padding: 1.25rem !important;
  }
}

/* Small screens (≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .our-values h2 {
    font-size: 2rem;
  }
  
  .val1, .val2, .val3, .val4 {
    max-height: 160px;
  }
  
  .our-values .bg-white {
    padding: 1rem !important;
    max-width: 300px !important;
  }
  
  .our-values h4 {
    font-size: 1.25rem;
  }
  
  .our-values p {
    font-size: 0.875rem;
  }
}

/* Extra small screens (<768px) */
@media (max-width: 767.98px) {
  .our-values {
    padding: 2rem 1rem !important;
  }
  
  .our-values h2 {
    font-size: 1.75rem;
  }
  
  .val1, .val2, .val3, .val4 {
    max-height: 140px;
  }
  
  .our-values .bg-white {
    padding: 1rem !important;
    margin-bottom: 1.5rem;
    max-width: 100% !important;
  }
  
  .our-values h4 {
    font-size: 1.2rem;
  }
  
  .our-values p {
    font-size: 0.875rem;
  }
  
  .our-values .d-flex.flex-column.flex-md-row {
    gap: 1rem !important;
  }
}

/* Very small screens (<576px) */
@media (max-width: 575.98px) {
  .our-values h2 {
    font-size: 1.5rem;
  }
  
  .val1, .val2, .val3, .val4 {
    max-height: 120px;
  }
  
  .our-values .bg-white {
    padding: 0.875rem !important;
  }
  
  .our-values h4 {
    font-size: 1.1rem;
  }
  
  .our-values p {
    font-size: 0.8125rem;
  }
}





/* Large screens (≥1200px) */
@media (min-width: 1200px) {
  .job-opening h2 {
    font-size: 2.5rem;
  }
  
  .job-opening .card-body {
    padding: 1.5rem;
  }
  
  .job-opening .card-title {
    font-size: 1.25rem;
  }
}

/* Medium screens (≥992px and <1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .job-opening h2 {
    font-size: 2.25rem;
  }
  
  .job-opening .card-body {
    padding: 1.25rem;
  }
  
  .job-opening .card-title {
    font-size: 1.2rem;
  }
}

/* Small screens (≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .job-opening h2 {
    font-size: 2rem;
  }
  
  .job-opening .card-body {
    padding: 1rem;
  }
  
  .job-opening .card-title {
    font-size: 1.1rem;
  }
  
  #jobTabs .nav-link {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
  
  .job-opening .badge {
    font-size: 10px !important;
  }
}

/* Extra small screens (<768px) */
@media (max-width: 767.98px) {
  .job-opening {
    padding: 2rem 0.5rem !important;
  }
  
  .job-opening h2 {
    font-size: 1.75rem;
  }
  
  .job-opening p {
    font-size: 0.9rem;
  }
  
  .job-opening .card {
    margin-bottom: 1rem;
  }
  
  .job-opening .card-body {
    padding: 1rem;
  }
  
  .job-opening .card-title {
    font-size: 1.1rem;
  }
  
  #jobTabs {
    padding: 0.5rem 0;
    margin: 0 -0.5rem;
    width: calc(100% + 1rem);
  }
  
  #jobTabs .nav-link {
    padding: 6px 12px;
    font-size: 0.8rem;
    margin: 0 2px;
  }
  
  .job-opening .badge {
    font-size: 10px !important;
  }
  
  .job-opening .card-text {
    font-size: 0.85rem;
  }
}

/* Very small screens (<576px) */
@media (max-width: 575.98px) {
  .job-opening h2 {
    font-size: 1.5rem;
    padding: 0 1rem;
  }
  
  .job-opening p {
    font-size: 0.85rem;
  }
  
  .job-opening .card-body {
    padding: 0.875rem;
  }
  
  .job-opening .card-title {
    font-size: 1rem;
  }
  
  #jobTabs .nav-link {
    padding: 4px 10px;
    font-size: 0.75rem;
  }
  
  .job-opening .badge {
    font-size: 9px !important;
  }
  
  .job-opening .btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }
}

/* Fix for tab content */
.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

/* Job Opening Section Responsive Styles */
.job-opening {
  width: 100%;
  overflow-x: hidden;
}

/* Tab Navigation */
#jobTabs {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#jobTabs::-webkit-scrollbar {
  display: none;
}

#jobTabs .nav-item {
  flex: 0 0 auto;
}

#jobTabs .nav-link {
  white-space: nowrap;
  color: #5e5f60;
  border-radius: 10px;
  padding: 8px 16px;
  transition: all 0.3s ease;
}

#jobTabs .nav-link.active {
  background-color: #F79220 !important;
  color: white !important;
}

/* Job Cards */
.job-opening .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(243, 244, 246, 1);
  border-radius: 16px;
}

.job-opening .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1) !important;
}

/* Tab Content */
.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

/* Responsive Breakpoints */
@media (min-width: 1200px) {
  .job-opening .card-body {
    padding: 1.5rem;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .job-opening .card-body {
    padding: 1.25rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  #jobTabs .nav-link {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
  
  .job-opening .card-body {
    padding: 1rem;
  }
  
  .job-opening .card-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 767.98px) {
  .job-opening {
    padding: 1rem !important;
  }
  
  #jobTabs {
    gap: 0.5rem !important;
  }
  
  #jobTabs .nav-link {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .job-opening .card {
    margin-bottom: 1rem;
  }
  
  .job-opening .card-title {
    font-size: 1rem;
  }
  
  .job-opening .badge {
    font-size: 10px !important;
  }
}

@media (max-width: 575.98px) {
  .job-opening {
    padding: 0.5rem !important;
  }
  
  #jobTabs {
    padding: 0.5rem 0;
  }
  
  #jobTabs .nav-link {
    padding: 4px 10px;
    font-size: 0.75rem;
  }
  
  .job-opening .card-body {
    padding: 0.875rem;
  }
  
  .job-opening .card-title {
    font-size: 0.95rem;
  }
  
  .job-opening .badge {
    font-size: 9px !important;
  }
  
  .job-opening .btn {
    font-size: 0.875rem;
    padding: 0.5rem;
  }
  
  .job-opening .card-text,
  .job-opening .text-muted.small {
    font-size: 0.8rem;
  }
}

/* Specialty Section Base Styles */
.specialty-section {
  margin: auto;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.speciality-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
}

.specialty-number {
  font-size: 3rem;
  line-height: 1;
}

/* Extra Large screens (≥1200px) */
@media (min-width: 1200px) {
  .specialty-section {
    gap: 4rem;
  }
  
  .speciality-img {
    max-width: 500px;
  }
  
  .specialty-number {
    font-size: 3.5rem;
  }
}

/* Large screens (≥992px and <1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .specialty-section {
    gap: 3rem;
  }
  
  .speciality-img {
    max-width: 450px;
  }
  
  .specialty-number {
    font-size: 3rem;
  }
}

/* Medium screens (≥768px and <992px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .specialty-section {
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .speciality-img {
    max-width: 380px;
  }
  
  .specialty-number {
    font-size: 2.75rem;
  }
}

/* Small screens (<768px) */
@media (max-width: 767.98px) {
  .specialty-section {
    flex-direction: column;
    text-align: center;
    padding: 0 1rem;
    gap: 2rem;
  }
  
  .specialty-section .col-md-5 {
    width: 100%;
  }
  
  .specialty-section h2 {
    font-size: 2rem;
  }
  
  .specialty-section p {
    font-size: 1rem;
    margin: 0 auto 1.5rem;
  }
  
  .specialty-section .d-flex.align-items-center {
    justify-content: center;
    gap: 1.5rem;
  }
  
  .speciality-img {
    max-width: 320px;
    margin: 0 auto;
  }
  
  .specialty-number {
    font-size: 2.5rem;
  }
}

/* Extra small screens (<576px) */
@media (max-width: 575.98px) {
  .specialty-section {
    padding: 0 0.5rem;
  }
  
  .specialty-section h2 {
    font-size: 1.75rem;
  }
  
  .specialty-section p {
    font-size: 0.9rem;
  }
  
  .speciality-img {
    max-width: 280px;
  }
  
  .specialty-number {
    font-size: 2.25rem;
  }
  
  .specialty-section .d-flex.align-items-center {
    gap: 1rem;
  }
  
  .specialty-section .ms-2 {
    font-size: 0.9rem;
  }
}