.enhanced-about-section {
    background-color: #f9f9f9;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.enhanced-about-section .title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    color: #222;
}

.enhanced-about-section .title .highlight {
    color: #e67e22; /* Change to your brand color if needed */
}

.about-text {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.enhanced-about-section strong {
    color: #333;
}

@media (max-width: 767px) {
    .enhanced-about-section {
        padding: 50px 20px;
    }

    .enhanced-about-section .title {
        font-size: 28px;
    }
}


.enhanced-features-section {
    background-color: #f5f5f5;
    padding: 80px 0;
    font-family: 'Helvetica Neue', sans-serif;
}

.features__item {
    background-color: #fff;
    padding: 40px 25px;
    margin: 10px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.features__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features__icon {
    font-size: 40px;
    color: #e67e22; /* Use brand color */
    margin-bottom: 20px;
}

.features__content .title {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
}

.features__content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.features__content a {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 767px) {
    .features__item {
        padding: 30px 15px;
    }

    .features__icon {
        font-size: 30px;
    }

    .features__content .title {
        font-size: 18px;
    }

    .features__content p {
        font-size: 15px;
    }
}




/* Limit height of slider section */
.reduced-slider-height {
    height: 400px;
    overflow: hidden;
    position: relative;
}

/* Each slide also respects the max height */
.reduced-slider-height .slider__single {
    height: 100%;
    position: relative;
}

/* Background image styles */
.reduced-slider-height .slider__bg {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Optional: Hide shapes or overlays if still in DOM */
.reduced-slider-height .slider__shape,
.reduced-slider-height .slider__content {
    display: none !important;
}





/* Remove top and bottom margin of the feature boxes */
/* Ensures uniform small margin for spacing */
.features__item {
    margin: 10px; /* Small uniform spacing */
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Ensures no extra spacing from row */
.features__item-wrap .row {
    margin: 0;
}

/* Optional container spacing */
.features__area.enhanced-features-section {
    padding: 40px 0;
}

/* Equal height cards using Bootstrap utility */
.col-lg-3.col-md-6.d-flex {
    align-items: stretch;
}





/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

.enhanced-about-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    color: #333;
}

.enhanced-about-section .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
}

.enhanced-about-section .sub-title {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    color: #e67e22;
    margin-bottom: 10px;
    display: inline-block;
}

.enhanced-about-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.list-wrap {
    list-style: none;
    padding-left: 0;
}

.list-wrap li {
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.list-wrap i {
    font-size: 18px;
    color: #e67e22;
}

/* Experience Box */
.experience-box-modern {
    display: flex;
    align-items: center;
    background: #e67e22;
    color: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    max-width: 350px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Poppins', sans-serif;
    margin-top: 20px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    transition: all 0.3s ease;
}

.experience-box-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.experience-box-modern .years {
    text-align: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.experience-box-modern .years h2 {
    font-size: 48px;
    margin: 0;
    font-weight: 700;
    line-height: 1;
}

.experience-box-modern .years span {
    font-size: 16px;
    font-weight: 500;
    display: block;
    margin-top: 4px;
}

.experience-box-modern .tagline p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

/* CTA Button */
.btn.btn-two {
    background-color: #e67e22;
    color: #fff;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    text-decoration: none;
}

.btn.btn-two:hover {
    background-color: #c95e0d;
    color: #fff;
}

/* Responsive Tweaks */
@media (max-width: 767.98px) {
    .experience-box-modern {
        position: static;
        margin: 20px auto 0;
    }
}




.new-services-section {
  background-color: #2979F2;
  padding: 80px 0;
}

.new-services-section .service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.new-services-section .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.new-services-section .icon {
  font-size: 40px;
  color: #ffb400;
  margin-bottom: 20px;
}

.new-services-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.new-services-section p {
  color: #555;
  font-size: 15px;
  margin-bottom: 15px;
}

.new-services-section ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 20px;
}

.new-services-section ul li {
  font-size: 14px;
  color: #333;
  margin-bottom: 5px;
}

.new-services-section .read-more {
  display: inline-block;
  background: #2979F2;
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.new-services-section .read-more:hover {
  background: #004dbf;
}


<!--------------- Manpower Service Page ------------------->

.custom-service-section {
  background-color: #f7f9fc;
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-title .title {
  font-size: 32px;
  font-weight: 700;
  color: #001a72;
}

.highlight {
  color: #2979F2;
}

.subtitle {
  font-size: 16px;
  color: #555;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.service-icon {
  font-size: 24px;
  color: #ffb400;
  flex-shrink: 0;
  margin: 0;
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #001a72;
}

.service-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}


.error-area {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh; /* Full height of the screen */
  background-color: #f9f9f9; /* optional background */
  text-align: center;
  padding: 40px 20px;
}

.error-content {
  max-width: 600px;
  width: 100%;
}

.error-content img {
  max-width: 100%;
  height: auto;
  margin-bottom: 30px;
}


<!----- Breadcum CSS---------->

.simple-breadcrumb {
  padding: 25px 0;
  margin: 20px 0;
  border-top: 1px solid #1C213F;
  border-bottom: 1px solid #1C213F;
  background-color: #1C213F;
}

.simple-breadcrumb .container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0;
  margin-right: 0;
}

.breadcrumb-nav {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  background-color: #1C213F;
}

.breadcrumb-nav li {
  margin: 10px;
  color: #888;
}

.breadcrumb-nav a {
  text-decoration: none;
  color: #FFF;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb-nav a:hover {
  color: #0056b3;
}

.breadcrumb-nav .active {
  color: #FC0;
  font-weight: 700;
  pointer-events: none;
}

.breadcrumb-nav span {
  color: #bbb;
  font-weight: normal;
}



